Fix cba2f0a
[org-mode/org-tableheadings.git] / lisp / org.el
blob87f17251b806d41d7f3cd90dcc4a9b1f3b33c812
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
1465 stars). The following issues are influenced by this variable:
1467 - The indentation is increased by one space in a demotion
1468 command, and decreased by one in a promotion command. However,
1469 in the latter case, if shifting some line in the entry body
1470 would alter document structure (e.g., insert a new headline),
1471 indentation is not changed at all.
1473 - Property drawers and planning information is inserted indented
1474 when this variable is set. When nil, they will not be indented.
1476 - TAB indents a line relative to current level. The lines below
1477 a headline will be indented when this variable is set.
1479 Note that this is all about true indentation, by adding and
1480 removing space characters. See also `org-indent.el' which does
1481 level-dependent indentation in a virtual way, i.e. at display
1482 time in Emacs."
1483 :group 'org-edit-structure
1484 :type 'boolean)
1486 (defcustom org-special-ctrl-a/e nil
1487 "Non-nil means `C-a' and `C-e' behave specially in headlines and items.
1489 When t, `C-a' will bring back the cursor to the beginning of the
1490 headline text, i.e. after the stars and after a possible TODO
1491 keyword. In an item, this will be the position after bullet and
1492 check-box, if any. When the cursor is already at that position,
1493 another `C-a' will bring it to the beginning of the line.
1495 `C-e' will jump to the end of the headline, ignoring the presence
1496 of tags in the headline. A second `C-e' will then jump to the
1497 true end of the line, after any tags. This also means that, when
1498 this variable is non-nil, `C-e' also will never jump beyond the
1499 end of the heading of a folded section, i.e. not after the
1500 ellipses.
1502 When set to the symbol `reversed', the first `C-a' or `C-e' works
1503 normally, going to the true line boundary first. Only a directly
1504 following, identical keypress will bring the cursor to the
1505 special positions.
1507 This may also be a cons cell where the behavior for `C-a' and
1508 `C-e' is set separately."
1509 :group 'org-edit-structure
1510 :type '(choice
1511 (const :tag "off" nil)
1512 (const :tag "on: after stars/bullet and before tags first" t)
1513 (const :tag "reversed: true line boundary first" reversed)
1514 (cons :tag "Set C-a and C-e separately"
1515 (choice :tag "Special C-a"
1516 (const :tag "off" nil)
1517 (const :tag "on: after stars/bullet first" t)
1518 (const :tag "reversed: before stars/bullet first" reversed))
1519 (choice :tag "Special C-e"
1520 (const :tag "off" nil)
1521 (const :tag "on: before tags first" t)
1522 (const :tag "reversed: after tags first" reversed)))))
1523 (org-defvaralias 'org-special-ctrl-a 'org-special-ctrl-a/e)
1525 (defcustom org-special-ctrl-k nil
1526 "Non-nil means `C-k' will behave specially in headlines.
1527 When nil, `C-k' will call the default `kill-line' command.
1528 When t, the following will happen while the cursor is in the headline:
1530 - When the cursor is at the beginning of a headline, kill the entire
1531 line and possible the folded subtree below the line.
1532 - When in the middle of the headline text, kill the headline up to the tags.
1533 - When after the headline text, kill the tags."
1534 :group 'org-edit-structure
1535 :type 'boolean)
1537 (defcustom org-ctrl-k-protect-subtree nil
1538 "Non-nil means, do not delete a hidden subtree with C-k.
1539 When set to the symbol `error', simply throw an error when C-k is
1540 used to kill (part-of) a headline that has hidden text behind it.
1541 Any other non-nil value will result in a query to the user, if it is
1542 OK to kill that hidden subtree. When nil, kill without remorse."
1543 :group 'org-edit-structure
1544 :version "24.1"
1545 :type '(choice
1546 (const :tag "Do not protect hidden subtrees" nil)
1547 (const :tag "Protect hidden subtrees with a security query" t)
1548 (const :tag "Never kill a hidden subtree with C-k" error)))
1550 (defcustom org-special-ctrl-o t
1551 "Non-nil means, make `C-o' insert a row in tables."
1552 :group 'org-edit-structure
1553 :type 'boolean)
1555 (defcustom org-catch-invisible-edits nil
1556 "Check if in invisible region before inserting or deleting a character.
1557 Valid values are:
1559 nil Do not check, so just do invisible edits.
1560 error Throw an error and do nothing.
1561 show Make point visible, and do the requested edit.
1562 show-and-error Make point visible, then throw an error and abort the edit.
1563 smart Make point visible, and do insertion/deletion if it is
1564 adjacent to visible text and the change feels predictable.
1565 Never delete a previously invisible character or add in the
1566 middle or right after an invisible region. Basically, this
1567 allows insertion and backward-delete right before ellipses.
1568 FIXME: maybe in this case we should not even show?"
1569 :group 'org-edit-structure
1570 :version "24.1"
1571 :type '(choice
1572 (const :tag "Do not check" nil)
1573 (const :tag "Throw error when trying to edit" error)
1574 (const :tag "Unhide, but do not do the edit" show-and-error)
1575 (const :tag "Show invisible part and do the edit" show)
1576 (const :tag "Be smart and do the right thing" smart)))
1578 (defcustom org-yank-folded-subtrees t
1579 "Non-nil means when yanking subtrees, fold them.
1580 If the kill is a single subtree, or a sequence of subtrees, i.e. if
1581 it starts with a heading and all other headings in it are either children
1582 or siblings, then fold all the subtrees. However, do this only if no
1583 text after the yank would be swallowed into a folded tree by this action."
1584 :group 'org-edit-structure
1585 :type 'boolean)
1587 (defcustom org-yank-adjusted-subtrees nil
1588 "Non-nil means when yanking subtrees, adjust the level.
1589 With this setting, `org-paste-subtree' is used to insert the subtree, see
1590 this function for details."
1591 :group 'org-edit-structure
1592 :type 'boolean)
1594 (defcustom org-M-RET-may-split-line '((default . t))
1595 "Non-nil means M-RET will split the line at the cursor position.
1596 When nil, it will go to the end of the line before making a
1597 new line.
1598 You may also set this option in a different way for different
1599 contexts. Valid contexts are:
1601 headline when creating a new headline
1602 item when creating a new item
1603 table in a table field
1604 default the value to be used for all contexts not explicitly
1605 customized"
1606 :group 'org-structure
1607 :group 'org-table
1608 :type '(choice
1609 (const :tag "Always" t)
1610 (const :tag "Never" nil)
1611 (repeat :greedy t :tag "Individual contexts"
1612 (cons
1613 (choice :tag "Context"
1614 (const headline)
1615 (const item)
1616 (const table)
1617 (const default))
1618 (boolean)))))
1621 (defcustom org-insert-heading-respect-content nil
1622 "Non-nil means insert new headings after the current subtree.
1623 When nil, the new heading is created directly after the current line.
1624 The commands \\[org-insert-heading-respect-content] and \\[org-insert-todo-heading-respect-content] turn
1625 this variable on for the duration of the command."
1626 :group 'org-structure
1627 :type 'boolean)
1629 (defcustom org-blank-before-new-entry '((heading . auto)
1630 (plain-list-item . auto))
1631 "Should `org-insert-heading' leave a blank line before new heading/item?
1632 The value is an alist, with `heading' and `plain-list-item' as CAR,
1633 and a boolean flag as CDR. The cdr may also be the symbol `auto', in
1634 which case Org will look at the surrounding headings/items and try to
1635 make an intelligent decision whether to insert a blank line or not.
1637 For plain lists, if `org-list-empty-line-terminates-plain-lists' is set,
1638 the setting here is ignored and no empty line is inserted to avoid breaking
1639 the list structure."
1640 :group 'org-edit-structure
1641 :type '(list
1642 (cons (const heading)
1643 (choice (const :tag "Never" nil)
1644 (const :tag "Always" t)
1645 (const :tag "Auto" auto)))
1646 (cons (const plain-list-item)
1647 (choice (const :tag "Never" nil)
1648 (const :tag "Always" t)
1649 (const :tag "Auto" auto)))))
1651 (defcustom org-insert-heading-hook nil
1652 "Hook being run after inserting a new heading."
1653 :group 'org-edit-structure
1654 :type 'hook)
1656 (defcustom org-enable-fixed-width-editor t
1657 "Non-nil means lines starting with \":\" are treated as fixed-width.
1658 This currently only means they are never auto-wrapped.
1659 When nil, such lines will be treated like ordinary lines."
1660 :group 'org-edit-structure
1661 :type 'boolean)
1663 (defcustom org-goto-auto-isearch t
1664 "Non-nil means typing characters in `org-goto' starts incremental search.
1665 When nil, you can use these keybindings to navigate the buffer:
1667 q Quit the org-goto interface
1668 n Go to the next visible heading
1669 p Go to the previous visible heading
1670 f Go one heading forward on same level
1671 b Go one heading backward on same level
1672 u Go one heading up"
1673 :group 'org-edit-structure
1674 :type 'boolean)
1676 (defgroup org-sparse-trees nil
1677 "Options concerning sparse trees in Org-mode."
1678 :tag "Org Sparse Trees"
1679 :group 'org-structure)
1681 (defcustom org-highlight-sparse-tree-matches t
1682 "Non-nil means highlight all matches that define a sparse tree.
1683 The highlights will automatically disappear the next time the buffer is
1684 changed by an edit command."
1685 :group 'org-sparse-trees
1686 :type 'boolean)
1688 (defcustom org-remove-highlights-with-change t
1689 "Non-nil means any change to the buffer will remove temporary highlights.
1690 Such highlights are created by `org-occur' and `org-clock-display'.
1691 When nil, `C-c C-c' needs to be used to get rid of the highlights.
1692 The highlights created by `org-toggle-latex-fragment' always need
1693 `C-c C-x C-l' to be removed."
1694 :group 'org-sparse-trees
1695 :group 'org-time
1696 :type 'boolean)
1699 (defcustom org-occur-hook '(org-first-headline-recenter)
1700 "Hook that is run after `org-occur' has constructed a sparse tree.
1701 This can be used to recenter the window to show as much of the structure
1702 as possible."
1703 :group 'org-sparse-trees
1704 :type 'hook)
1706 (defgroup org-imenu-and-speedbar nil
1707 "Options concerning imenu and speedbar in Org-mode."
1708 :tag "Org Imenu and Speedbar"
1709 :group 'org-structure)
1711 (defcustom org-imenu-depth 2
1712 "The maximum level for Imenu access to Org-mode headlines.
1713 This also applied for speedbar access."
1714 :group 'org-imenu-and-speedbar
1715 :type 'integer)
1717 (defgroup org-table nil
1718 "Options concerning tables in Org-mode."
1719 :tag "Org Table"
1720 :group 'org)
1722 (defcustom org-enable-table-editor 'optimized
1723 "Non-nil means lines starting with \"|\" are handled by the table editor.
1724 When nil, such lines will be treated like ordinary lines.
1726 When equal to the symbol `optimized', the table editor will be optimized to
1727 do the following:
1728 - Automatic overwrite mode in front of whitespace in table fields.
1729 This makes the structure of the table stay in tact as long as the edited
1730 field does not exceed the column width.
1731 - Minimize the number of realigns. Normally, the table is aligned each time
1732 TAB or RET are pressed to move to another field. With optimization this
1733 happens only if changes to a field might have changed the column width.
1734 Optimization requires replacing the functions `self-insert-command',
1735 `delete-char', and `backward-delete-char' in Org-mode buffers, with a
1736 slight (in fact: unnoticeable) speed impact for normal typing. Org-mode is
1737 very good at guessing when a re-align will be necessary, but you can always
1738 force one with \\[org-ctrl-c-ctrl-c].
1740 If you would like to use the optimized version in Org-mode, but the
1741 un-optimized version in OrgTbl-mode, see the variable `orgtbl-optimized'.
1743 This variable can be used to turn on and off the table editor during a session,
1744 but in order to toggle optimization, a restart is required.
1746 See also the variable `org-table-auto-blank-field'."
1747 :group 'org-table
1748 :type '(choice
1749 (const :tag "off" nil)
1750 (const :tag "on" t)
1751 (const :tag "on, optimized" optimized)))
1753 (defcustom org-self-insert-cluster-for-undo (or (featurep 'xemacs)
1754 (version<= emacs-version "24.1"))
1755 "Non-nil means cluster self-insert commands for undo when possible.
1756 If this is set, then, like in the Emacs command loop, 20 consecutive
1757 characters will be undone together.
1758 This is configurable, because there is some impact on typing performance."
1759 :group 'org-table
1760 :type 'boolean)
1762 (defcustom org-table-tab-recognizes-table.el t
1763 "Non-nil means TAB will automatically notice a table.el table.
1764 When it sees such a table, it moves point into it and - if necessary -
1765 calls `table-recognize-table'."
1766 :group 'org-table-editing
1767 :type 'boolean)
1769 (defgroup org-link nil
1770 "Options concerning links in Org-mode."
1771 :tag "Org Link"
1772 :group 'org)
1774 (defvar org-link-abbrev-alist-local nil
1775 "Buffer-local version of `org-link-abbrev-alist', which see.
1776 The value of this is taken from the #+LINK lines.")
1777 (make-variable-buffer-local 'org-link-abbrev-alist-local)
1779 (defcustom org-link-abbrev-alist nil
1780 "Alist of link abbreviations.
1781 The car of each element is a string, to be replaced at the start of a link.
1782 The cdrs are replacement values, like (\"linkkey\" . REPLACE). Abbreviated
1783 links in Org-mode buffers can have an optional tag after a double colon, e.g.
1785 [[linkkey:tag][description]]
1787 The 'linkkey' must be a word word, starting with a letter, followed
1788 by letters, numbers, '-' or '_'.
1790 If REPLACE is a string, the tag will simply be appended to create the link.
1791 If the string contains \"%s\", the tag will be inserted there. If the string
1792 contains \"%h\", it will cause a url-encoded version of the tag to be inserted
1793 at that point (see the function `url-hexify-string'). If the string contains
1794 the specifier \"%(my-function)\", then the custom function `my-function' will
1795 be invoked: this function takes the tag as its only argument and must return
1796 a string.
1798 REPLACE may also be a function that will be called with the tag as the
1799 only argument to create the link, which should be returned as a string.
1801 See the manual for examples."
1802 :group 'org-link
1803 :type '(repeat
1804 (cons
1805 (string :tag "Protocol")
1806 (choice
1807 (string :tag "Format")
1808 (function)))))
1810 (defcustom org-descriptive-links t
1811 "Non-nil means Org will display descriptive links.
1812 E.g. [[http://orgmode.org][Org website]] will be displayed as
1813 \"Org Website\", hiding the link itself and just displaying its
1814 description. When set to `nil', Org will display the full links
1815 literally.
1817 You can interactively set the value of this variable by calling
1818 `org-toggle-link-display' or from the menu Org>Hyperlinks menu."
1819 :group 'org-link
1820 :type 'boolean)
1822 (defcustom org-link-file-path-type 'adaptive
1823 "How the path name in file links should be stored.
1824 Valid values are:
1826 relative Relative to the current directory, i.e. the directory of the file
1827 into which the link is being inserted.
1828 absolute Absolute path, if possible with ~ for home directory.
1829 noabbrev Absolute path, no abbreviation of home directory.
1830 adaptive Use relative path for files in the current directory and sub-
1831 directories of it. For other files, use an absolute path."
1832 :group 'org-link
1833 :type '(choice
1834 (const relative)
1835 (const absolute)
1836 (const noabbrev)
1837 (const adaptive)))
1839 (defvaralias 'org-activate-links 'org-highlight-links)
1840 (defcustom org-highlight-links '(bracket angle plain radio tag date footnote)
1841 "Types of links that should be highlighted in Org-mode files.
1843 This is a list of symbols, each one of them leading to the
1844 highlighting of a certain link type.
1846 You can still open links that are not highlighted.
1848 In principle, it does not hurt to turn on highlighting for all
1849 link types. There may be a small gain when turning off unused
1850 link types. The types are:
1852 bracket The recommended [[link][description]] or [[link]] links with hiding.
1853 angle Links in angular brackets that may contain whitespace like
1854 <bbdb:Carsten Dominik>.
1855 plain Plain links in normal text, no whitespace, like http://google.com.
1856 radio Text that is matched by a radio target, see manual for details.
1857 tag Tag settings in a headline (link to tag search).
1858 date Time stamps (link to calendar).
1859 footnote Footnote labels.
1861 If you set this variable during an Emacs session, use `org-mode-restart'
1862 in the Org buffer so that the change takes effect."
1863 :group 'org-link
1864 :group 'org-appearance
1865 :type '(set :greedy t
1866 (const :tag "Double bracket links" bracket)
1867 (const :tag "Angular bracket links" angle)
1868 (const :tag "Plain text links" plain)
1869 (const :tag "Radio target matches" radio)
1870 (const :tag "Tags" tag)
1871 (const :tag "Timestamps" date)
1872 (const :tag "Footnotes" footnote)))
1874 (defcustom org-make-link-description-function nil
1875 "Function to use for generating link descriptions from links.
1876 When nil, the link location will be used. This function must take
1877 two parameters: the first one is the link, the second one is the
1878 description generated by `org-insert-link'. The function should
1879 return the description to use."
1880 :group 'org-link
1881 :type '(choice (const nil) (function)))
1883 (defgroup org-link-store nil
1884 "Options concerning storing links in Org-mode."
1885 :tag "Org Store Link"
1886 :group 'org-link)
1888 (defcustom org-url-hexify-p t
1889 "When non-nil, hexify URL when creating a link."
1890 :type 'boolean
1891 :version "24.3"
1892 :group 'org-link-store)
1894 (defcustom org-email-link-description-format "Email %c: %.30s"
1895 "Format of the description part of a link to an email or usenet message.
1896 The following %-escapes will be replaced by corresponding information:
1898 %F full \"From\" field
1899 %f name, taken from \"From\" field, address if no name
1900 %T full \"To\" field
1901 %t first name in \"To\" field, address if no name
1902 %c correspondent. Usually \"from NAME\", but if you sent it yourself, it
1903 will be \"to NAME\". See also the variable `org-from-is-user-regexp'.
1904 %s subject
1905 %d date
1906 %m message-id.
1908 You may use normal field width specification between the % and the letter.
1909 This is for example useful to limit the length of the subject.
1911 Examples: \"%f on: %.30s\", \"Email from %f\", \"Email %c\""
1912 :group 'org-link-store
1913 :type 'string)
1915 (defcustom org-from-is-user-regexp
1916 (let (r1 r2)
1917 (when (and user-mail-address (not (string= user-mail-address "")))
1918 (setq r1 (concat "\\<" (regexp-quote user-mail-address) "\\>")))
1919 (when (and user-full-name (not (string= user-full-name "")))
1920 (setq r2 (concat "\\<" (regexp-quote user-full-name) "\\>")))
1921 (if (and r1 r2) (concat r1 "\\|" r2) (or r1 r2)))
1922 "Regexp matched against the \"From:\" header of an email or usenet message.
1923 It should match if the message is from the user him/herself."
1924 :group 'org-link-store
1925 :type 'regexp)
1927 (defcustom org-context-in-file-links t
1928 "Non-nil means file links from `org-store-link' contain context.
1929 A search string will be added to the file name with :: as separator and
1930 used to find the context when the link is activated by the command
1931 `org-open-at-point'. When this option is t, the entire active region
1932 will be placed in the search string of the file link. If set to a
1933 positive integer, only the first n lines of context will be stored.
1935 Using a prefix arg to the command \\[org-store-link] (`org-store-link')
1936 negates this setting for the duration of the command."
1937 :group 'org-link-store
1938 :type '(choice boolean integer))
1940 (defcustom org-keep-stored-link-after-insertion nil
1941 "Non-nil means keep link in list for entire session.
1943 The command `org-store-link' adds a link pointing to the current
1944 location to an internal list. These links accumulate during a session.
1945 The command `org-insert-link' can be used to insert links into any
1946 Org-mode file (offering completion for all stored links). When this
1947 option is nil, every link which has been inserted once using \\[org-insert-link]
1948 will be removed from the list, to make completing the unused links
1949 more efficient."
1950 :group 'org-link-store
1951 :type 'boolean)
1953 (defgroup org-link-follow nil
1954 "Options concerning following links in Org-mode."
1955 :tag "Org Follow Link"
1956 :group 'org-link)
1958 (defcustom org-link-translation-function nil
1959 "Function to translate links with different syntax to Org syntax.
1960 This can be used to translate links created for example by the Planner
1961 or emacs-wiki packages to Org syntax.
1962 The function must accept two parameters, a TYPE containing the link
1963 protocol name like \"rmail\" or \"gnus\" as a string, and the linked path,
1964 which is everything after the link protocol. It should return a cons
1965 with possibly modified values of type and path.
1966 Org contains a function for this, so if you set this variable to
1967 `org-translate-link-from-planner', you should be able follow many
1968 links created by planner."
1969 :group 'org-link-follow
1970 :type '(choice (const nil) (function)))
1972 (defcustom org-follow-link-hook nil
1973 "Hook that is run after a link has been followed."
1974 :group 'org-link-follow
1975 :type 'hook)
1977 (defcustom org-tab-follows-link nil
1978 "Non-nil means on links TAB will follow the link.
1979 Needs to be set before org.el is loaded.
1980 This really should not be used, it does not make sense, and the
1981 implementation is bad."
1982 :group 'org-link-follow
1983 :type 'boolean)
1985 (defcustom org-return-follows-link nil
1986 "Non-nil means on links RET will follow the link.
1987 In tables, the special behavior of RET has precedence."
1988 :group 'org-link-follow
1989 :type 'boolean)
1991 (defcustom org-mouse-1-follows-link
1992 (if (boundp 'mouse-1-click-follows-link) mouse-1-click-follows-link t)
1993 "Non-nil means mouse-1 on a link will follow the link.
1994 A longer mouse click will still set point. Does not work on XEmacs.
1995 Needs to be set before org.el is loaded."
1996 :group 'org-link-follow
1997 :version "24.4"
1998 :package-version '(Org . "8.3")
1999 :type '(choice
2000 (const :tag "A double click follows the link" double)
2001 (const :tag "Unconditionally follow the link with mouse-1" t)
2002 (integer :tag "mouse-1 click does not follow the link if longer than N ms" 450)))
2004 (defcustom org-mark-ring-length 4
2005 "Number of different positions to be recorded in the ring.
2006 Changing this requires a restart of Emacs to work correctly."
2007 :group 'org-link-follow
2008 :type 'integer)
2010 (defcustom org-link-search-must-match-exact-headline 'query-to-create
2011 "Non-nil means internal links in Org files must exactly match a headline.
2012 When nil, the link search tries to match a phrase with all words
2013 in the search text."
2014 :group 'org-link-follow
2015 :version "24.1"
2016 :type '(choice
2017 (const :tag "Use fuzzy text search" nil)
2018 (const :tag "Match only exact headline" t)
2019 (const :tag "Match exact headline or query to create it"
2020 query-to-create)))
2022 (defcustom org-link-frame-setup
2023 '((vm . vm-visit-folder-other-frame)
2024 (vm-imap . vm-visit-imap-folder-other-frame)
2025 (gnus . org-gnus-no-new-news)
2026 (file . find-file-other-window)
2027 (wl . wl-other-frame))
2028 "Setup the frame configuration for following links.
2029 When following a link with Emacs, it may often be useful to display
2030 this link in another window or frame. This variable can be used to
2031 set this up for the different types of links.
2032 For VM, use any of
2033 `vm-visit-folder'
2034 `vm-visit-folder-other-window'
2035 `vm-visit-folder-other-frame'
2036 For Gnus, use any of
2037 `gnus'
2038 `gnus-other-frame'
2039 `org-gnus-no-new-news'
2040 For FILE, use any of
2041 `find-file'
2042 `find-file-other-window'
2043 `find-file-other-frame'
2044 For Wanderlust use any of
2045 `wl'
2046 `wl-other-frame'
2047 For the calendar, use the variable `calendar-setup'.
2048 For BBDB, it is currently only possible to display the matches in
2049 another window."
2050 :group 'org-link-follow
2051 :type '(list
2052 (cons (const vm)
2053 (choice
2054 (const vm-visit-folder)
2055 (const vm-visit-folder-other-window)
2056 (const vm-visit-folder-other-frame)))
2057 (cons (const vm-imap)
2058 (choice
2059 (const vm-visit-imap-folder)
2060 (const vm-visit-imap-folder-other-window)
2061 (const vm-visit-imap-folder-other-frame)))
2062 (cons (const gnus)
2063 (choice
2064 (const gnus)
2065 (const gnus-other-frame)
2066 (const org-gnus-no-new-news)))
2067 (cons (const file)
2068 (choice
2069 (const find-file)
2070 (const find-file-other-window)
2071 (const find-file-other-frame)))
2072 (cons (const wl)
2073 (choice
2074 (const wl)
2075 (const wl-other-frame)))))
2077 (defcustom org-display-internal-link-with-indirect-buffer nil
2078 "Non-nil means use indirect buffer to display infile links.
2079 Activating internal links (from one location in a file to another location
2080 in the same file) normally just jumps to the location. When the link is
2081 activated with a \\[universal-argument] prefix (or with mouse-3), the link \
2082 is displayed in
2083 another window. When this option is set, the other window actually displays
2084 an indirect buffer clone of the current buffer, to avoid any visibility
2085 changes to the current buffer."
2086 :group 'org-link-follow
2087 :type 'boolean)
2089 (defcustom org-open-non-existing-files nil
2090 "Non-nil means `org-open-file' will open non-existing files.
2091 When nil, an error will be generated.
2092 This variable applies only to external applications because they
2093 might choke on non-existing files. If the link is to a file that
2094 will be opened in Emacs, the variable is ignored."
2095 :group 'org-link-follow
2096 :type 'boolean)
2098 (defcustom org-open-directory-means-index-dot-org nil
2099 "Non-nil means a link to a directory really means to index.org.
2100 When nil, following a directory link will run dired or open a finder/explorer
2101 window on that directory."
2102 :group 'org-link-follow
2103 :type 'boolean)
2105 (defcustom org-confirm-shell-link-function 'yes-or-no-p
2106 "Non-nil means ask for confirmation before executing shell links.
2107 Shell links can be dangerous: just think about a link
2109 [[shell:rm -rf ~/*][Google Search]]
2111 This link would show up in your Org-mode document as \"Google Search\",
2112 but really it would remove your entire home directory.
2113 Therefore we advise against setting this variable to nil.
2114 Just change it to `y-or-n-p' if you want to confirm with a
2115 single keystroke rather than having to type \"yes\"."
2116 :group 'org-link-follow
2117 :type '(choice
2118 (const :tag "with yes-or-no (safer)" yes-or-no-p)
2119 (const :tag "with y-or-n (faster)" y-or-n-p)
2120 (const :tag "no confirmation (dangerous)" nil)))
2121 (put 'org-confirm-shell-link-function
2122 'safe-local-variable
2123 (lambda (x) (member x '(yes-or-no-p y-or-n-p))))
2125 (defcustom org-confirm-shell-link-not-regexp ""
2126 "A regexp to skip confirmation for shell links."
2127 :group 'org-link-follow
2128 :version "24.1"
2129 :type 'regexp)
2131 (defcustom org-confirm-elisp-link-function 'yes-or-no-p
2132 "Non-nil means ask for confirmation before executing Emacs Lisp links.
2133 Elisp links can be dangerous: just think about a link
2135 [[elisp:(shell-command \"rm -rf ~/*\")][Google Search]]
2137 This link would show up in your Org-mode document as \"Google Search\",
2138 but really it would remove your entire home directory.
2139 Therefore we advise against setting this variable to nil.
2140 Just change it to `y-or-n-p' if you want to confirm with a
2141 single keystroke rather than having to type \"yes\"."
2142 :group 'org-link-follow
2143 :type '(choice
2144 (const :tag "with yes-or-no (safer)" yes-or-no-p)
2145 (const :tag "with y-or-n (faster)" y-or-n-p)
2146 (const :tag "no confirmation (dangerous)" nil)))
2147 (put 'org-confirm-shell-link-function
2148 'safe-local-variable
2149 (lambda (x) (member x '(yes-or-no-p y-or-n-p))))
2151 (defcustom org-confirm-elisp-link-not-regexp ""
2152 "A regexp to skip confirmation for Elisp links."
2153 :group 'org-link-follow
2154 :version "24.1"
2155 :type 'regexp)
2157 (defconst org-file-apps-defaults-gnu
2158 '((remote . emacs)
2159 (system . mailcap)
2160 (t . mailcap))
2161 "Default file applications on a UNIX or GNU/Linux system.
2162 See `org-file-apps'.")
2164 (defconst org-file-apps-defaults-macosx
2165 '((remote . emacs)
2166 (t . "open %s")
2167 (system . "open %s")
2168 ("ps.gz" . "gv %s")
2169 ("eps.gz" . "gv %s")
2170 ("dvi" . "xdvi %s")
2171 ("fig" . "xfig %s"))
2172 "Default file applications on a MacOS X system.
2173 The system \"open\" is known as a default, but we use X11 applications
2174 for some files for which the OS does not have a good default.
2175 See `org-file-apps'.")
2177 (defconst org-file-apps-defaults-windowsnt
2178 (list
2179 '(remote . emacs)
2180 (cons t
2181 (list (if (featurep 'xemacs)
2182 'mswindows-shell-execute
2183 'w32-shell-execute)
2184 "open" 'file))
2185 (cons 'system
2186 (list (if (featurep 'xemacs)
2187 'mswindows-shell-execute
2188 'w32-shell-execute)
2189 "open" 'file)))
2190 "Default file applications on a Windows NT system.
2191 The system \"open\" is used for most files.
2192 See `org-file-apps'.")
2194 (defcustom org-file-apps
2195 '((auto-mode . emacs)
2196 ("\\.mm\\'" . default)
2197 ("\\.x?html?\\'" . default)
2198 ("\\.pdf\\'" . default))
2199 "External applications for opening `file:path' items in a document.
2200 Org-mode uses system defaults for different file types, but
2201 you can use this variable to set the application for a given file
2202 extension. The entries in this list are cons cells where the car identifies
2203 files and the cdr the corresponding command. Possible values for the
2204 file identifier are
2205 \"string\" A string as a file identifier can be interpreted in different
2206 ways, depending on its contents:
2208 - Alphanumeric characters only:
2209 Match links with this file extension.
2210 Example: (\"pdf\" . \"evince %s\")
2211 to open PDFs with evince.
2213 - Regular expression: Match links where the
2214 filename matches the regexp. If you want to
2215 use groups here, use shy groups.
2217 Example: (\"\\.x?html\\'\" . \"firefox %s\")
2218 (\"\\(?:xhtml\\|html\\)\" . \"firefox %s\")
2219 to open *.html and *.xhtml with firefox.
2221 - Regular expression which contains (non-shy) groups:
2222 Match links where the whole link, including \"::\", and
2223 anything after that, matches the regexp.
2224 In a custom command string, %1, %2, etc. are replaced with
2225 the parts of the link that were matched by the groups.
2226 For backwards compatibility, if a command string is given
2227 that does not use any of the group matches, this case is
2228 handled identically to the second one (i.e. match against
2229 file name only).
2230 In a custom lisp form, you can access the group matches with
2231 (match-string n link).
2233 Example: (\"\\.pdf::\\(\\d+\\)\\'\" . \"evince -p %1 %s\")
2234 to open [[file:document.pdf::5]] with evince at page 5.
2236 `directory' Matches a directory
2237 `remote' Matches a remote file, accessible through tramp or efs.
2238 Remote files most likely should be visited through Emacs
2239 because external applications cannot handle such paths.
2240 `auto-mode' Matches files that are matched by any entry in `auto-mode-alist',
2241 so all files Emacs knows how to handle. Using this with
2242 command `emacs' will open most files in Emacs. Beware that this
2243 will also open html files inside Emacs, unless you add
2244 (\"html\" . default) to the list as well.
2245 t Default for files not matched by any of the other options.
2246 `system' The system command to open files, like `open' on Windows
2247 and Mac OS X, and mailcap under GNU/Linux. This is the command
2248 that will be selected if you call `C-c C-o' with a double
2249 \\[universal-argument] \\[universal-argument] prefix.
2251 Possible values for the command are:
2252 `emacs' The file will be visited by the current Emacs process.
2253 `default' Use the default application for this file type, which is the
2254 association for t in the list, most likely in the system-specific
2255 part.
2256 This can be used to overrule an unwanted setting in the
2257 system-specific variable.
2258 `system' Use the system command for opening files, like \"open\".
2259 This command is specified by the entry whose car is `system'.
2260 Most likely, the system-specific version of this variable
2261 does define this command, but you can overrule/replace it
2262 here.
2263 string A command to be executed by a shell; %s will be replaced
2264 by the path to the file.
2265 sexp A Lisp form which will be evaluated. The file path will
2266 be available in the Lisp variable `file'.
2267 For more examples, see the system specific constants
2268 `org-file-apps-defaults-macosx'
2269 `org-file-apps-defaults-windowsnt'
2270 `org-file-apps-defaults-gnu'."
2271 :group 'org-link-follow
2272 :type '(repeat
2273 (cons (choice :value ""
2274 (string :tag "Extension")
2275 (const :tag "System command to open files" system)
2276 (const :tag "Default for unrecognized files" t)
2277 (const :tag "Remote file" remote)
2278 (const :tag "Links to a directory" directory)
2279 (const :tag "Any files that have Emacs modes"
2280 auto-mode))
2281 (choice :value ""
2282 (const :tag "Visit with Emacs" emacs)
2283 (const :tag "Use default" default)
2284 (const :tag "Use the system command" system)
2285 (string :tag "Command")
2286 (sexp :tag "Lisp form")))))
2288 (defcustom org-doi-server-url "http://dx.doi.org/"
2289 "The URL of the DOI server."
2290 :type 'string
2291 :version "24.3"
2292 :group 'org-link-follow)
2294 (defgroup org-refile nil
2295 "Options concerning refiling entries in Org-mode."
2296 :tag "Org Refile"
2297 :group 'org)
2299 (defcustom org-directory "~/org"
2300 "Directory with org files.
2301 This is just a default location to look for Org files. There is no need
2302 at all to put your files into this directory. It is only used in the
2303 following situations:
2305 1. When a capture template specifies a target file that is not an
2306 absolute path. The path will then be interpreted relative to
2307 `org-directory'
2308 2. When a capture note is filed away in an interactive way (when exiting the
2309 note buffer with `C-1 C-c C-c'. The user is prompted for an org file,
2310 with `org-directory' as the default path."
2311 :group 'org-refile
2312 :group 'org-capture
2313 :type 'directory)
2315 (defcustom org-default-notes-file (convert-standard-filename "~/.notes")
2316 "Default target for storing notes.
2317 Used as a fall back file for org-capture.el, for templates that
2318 do not specify a target file."
2319 :group 'org-refile
2320 :group 'org-capture
2321 :type '(choice
2322 (const :tag "Default from remember-data-file" nil)
2323 file))
2325 (defcustom org-goto-interface 'outline
2326 "The default interface to be used for `org-goto'.
2327 Allowed values are:
2328 outline The interface shows an outline of the relevant file
2329 and the correct heading is found by moving through
2330 the outline or by searching with incremental search.
2331 outline-path-completion Headlines in the current buffer are offered via
2332 completion. This is the interface also used by
2333 the refile command."
2334 :group 'org-refile
2335 :type '(choice
2336 (const :tag "Outline" outline)
2337 (const :tag "Outline-path-completion" outline-path-completion)))
2339 (defcustom org-goto-max-level 5
2340 "Maximum target level when running `org-goto' with refile interface."
2341 :group 'org-refile
2342 :type 'integer)
2344 (defcustom org-reverse-note-order nil
2345 "Non-nil means store new notes at the beginning of a file or entry.
2346 When nil, new notes will be filed to the end of a file or entry.
2347 This can also be a list with cons cells of regular expressions that
2348 are matched against file names, and values."
2349 :group 'org-capture
2350 :group 'org-refile
2351 :type '(choice
2352 (const :tag "Reverse always" t)
2353 (const :tag "Reverse never" nil)
2354 (repeat :tag "By file name regexp"
2355 (cons regexp boolean))))
2357 (defcustom org-log-refile nil
2358 "Information to record when a task is refiled.
2360 Possible values are:
2362 nil Don't add anything
2363 time Add a time stamp to the task
2364 note Prompt for a note and add it with template `org-log-note-headings'
2366 This option can also be set with on a per-file-basis with
2368 #+STARTUP: nologrefile
2369 #+STARTUP: logrefile
2370 #+STARTUP: lognoterefile
2372 You can have local logging settings for a subtree by setting the LOGGING
2373 property to one or more of these keywords.
2375 When bulk-refiling from the agenda, the value `note' is forbidden and
2376 will temporarily be changed to `time'."
2377 :group 'org-refile
2378 :group 'org-progress
2379 :version "24.1"
2380 :type '(choice
2381 (const :tag "No logging" nil)
2382 (const :tag "Record timestamp" time)
2383 (const :tag "Record timestamp with note." note)))
2385 (defcustom org-refile-targets nil
2386 "Targets for refiling entries with \\[org-refile].
2387 This is a list of cons cells. Each cell contains:
2388 - a specification of the files to be considered, either a list of files,
2389 or a symbol whose function or variable value will be used to retrieve
2390 a file name or a list of file names. If you use `org-agenda-files' for
2391 that, all agenda files will be scanned for targets. Nil means consider
2392 headings in the current buffer.
2393 - A specification of how to find candidate refile targets. This may be
2394 any of:
2395 - a cons cell (:tag . \"TAG\") to identify refile targets by a tag.
2396 This tag has to be present in all target headlines, inheritance will
2397 not be considered.
2398 - a cons cell (:todo . \"KEYWORD\") to identify refile targets by
2399 todo keyword.
2400 - a cons cell (:regexp . \"REGEXP\") with a regular expression matching
2401 headlines that are refiling targets.
2402 - a cons cell (:level . N). Any headline of level N is considered a target.
2403 Note that, when `org-odd-levels-only' is set, level corresponds to
2404 order in hierarchy, not to the number of stars.
2405 - a cons cell (:maxlevel . N). Any headline with level <= N is a target.
2406 Note that, when `org-odd-levels-only' is set, level corresponds to
2407 order in hierarchy, not to the number of stars.
2409 Each element of this list generates a set of possible targets.
2410 The union of these sets is presented (with completion) to
2411 the user by `org-refile'.
2413 You can set the variable `org-refile-target-verify-function' to a function
2414 to verify each headline found by the simple criteria above.
2416 When this variable is nil, all top-level headlines in the current buffer
2417 are used, equivalent to the value `((nil . (:level . 1))'."
2418 :group 'org-refile
2419 :type '(repeat
2420 (cons
2421 (choice :value org-agenda-files
2422 (const :tag "All agenda files" org-agenda-files)
2423 (const :tag "Current buffer" nil)
2424 (function) (variable) (file))
2425 (choice :tag "Identify target headline by"
2426 (cons :tag "Specific tag" (const :value :tag) (string))
2427 (cons :tag "TODO keyword" (const :value :todo) (string))
2428 (cons :tag "Regular expression" (const :value :regexp) (regexp))
2429 (cons :tag "Level number" (const :value :level) (integer))
2430 (cons :tag "Max Level number" (const :value :maxlevel) (integer))))))
2432 (defcustom org-refile-target-verify-function nil
2433 "Function to verify if the headline at point should be a refile target.
2434 The function will be called without arguments, with point at the
2435 beginning of the headline. It should return t and leave point
2436 where it is if the headline is a valid target for refiling.
2438 If the target should not be selected, the function must return nil.
2439 In addition to this, it may move point to a place from where the search
2440 should be continued. For example, the function may decide that the entire
2441 subtree of the current entry should be excluded and move point to the end
2442 of the subtree."
2443 :group 'org-refile
2444 :type '(choice
2445 (const nil)
2446 (function)))
2448 (defcustom org-refile-use-cache nil
2449 "Non-nil means cache refile targets to speed up the process.
2450 The cache for a particular file will be updated automatically when
2451 the buffer has been killed, or when any of the marker used for flagging
2452 refile targets no longer points at a live buffer.
2453 If you have added new entries to a buffer that might themselves be targets,
2454 you need to clear the cache manually by pressing `C-0 C-c C-w' or, if you
2455 find that easier, `C-u C-u C-u C-c C-w'."
2456 :group 'org-refile
2457 :version "24.1"
2458 :type 'boolean)
2460 (defcustom org-refile-use-outline-path nil
2461 "Non-nil means provide refile targets as paths.
2462 So a level 3 headline will be available as level1/level2/level3.
2464 When the value is `file', also include the file name (without directory)
2465 into the path. In this case, you can also stop the completion after
2466 the file name, to get entries inserted as top level in the file.
2468 When `full-file-path', include the full file path."
2469 :group 'org-refile
2470 :type '(choice
2471 (const :tag "Not" nil)
2472 (const :tag "Yes" t)
2473 (const :tag "Start with file name" file)
2474 (const :tag "Start with full file path" full-file-path)))
2476 (defcustom org-outline-path-complete-in-steps t
2477 "Non-nil means complete the outline path in hierarchical steps.
2478 When Org-mode uses the refile interface to select an outline path
2479 \(see variable `org-refile-use-outline-path'), the completion of
2480 the path can be done is a single go, or if can be done in steps down
2481 the headline hierarchy. Going in steps is probably the best if you
2482 do not use a special completion package like `ido' or `icicles'.
2483 However, when using these packages, going in one step can be very
2484 fast, while still showing the whole path to the entry."
2485 :group 'org-refile
2486 :type 'boolean)
2488 (defcustom org-refile-allow-creating-parent-nodes nil
2489 "Non-nil means allow to create new nodes as refile targets.
2490 New nodes are then created by adding \"/new node name\" to the completion
2491 of an existing node. When the value of this variable is `confirm',
2492 new node creation must be confirmed by the user (recommended).
2493 When nil, the completion must match an existing entry.
2495 Note that, if the new heading is not seen by the criteria
2496 listed in `org-refile-targets', multiple instances of the same
2497 heading would be created by trying again to file under the new
2498 heading."
2499 :group 'org-refile
2500 :type '(choice
2501 (const :tag "Never" nil)
2502 (const :tag "Always" t)
2503 (const :tag "Prompt for confirmation" confirm)))
2505 (defcustom org-refile-active-region-within-subtree nil
2506 "Non-nil means also refile active region within a subtree.
2508 By default `org-refile' doesn't allow refiling regions if they
2509 don't contain a set of subtrees, but it might be convenient to
2510 do so sometimes: in that case, the first line of the region is
2511 converted to a headline before refiling."
2512 :group 'org-refile
2513 :version "24.1"
2514 :type 'boolean)
2516 (defgroup org-todo nil
2517 "Options concerning TODO items in Org-mode."
2518 :tag "Org TODO"
2519 :group 'org)
2521 (defgroup org-progress nil
2522 "Options concerning Progress logging in Org-mode."
2523 :tag "Org Progress"
2524 :group 'org-time)
2526 (defvar org-todo-interpretation-widgets
2527 '((:tag "Sequence (cycling hits every state)" sequence)
2528 (:tag "Type (cycling directly to DONE)" type))
2529 "The available interpretation symbols for customizing `org-todo-keywords'.
2530 Interested libraries should add to this list.")
2532 (defcustom org-todo-keywords '((sequence "TODO" "DONE"))
2533 "List of TODO entry keyword sequences and their interpretation.
2534 \\<org-mode-map>This is a list of sequences.
2536 Each sequence starts with a symbol, either `sequence' or `type',
2537 indicating if the keywords should be interpreted as a sequence of
2538 action steps, or as different types of TODO items. The first
2539 keywords are states requiring action - these states will select a headline
2540 for inclusion into the global TODO list Org-mode produces. If one of
2541 the \"keywords\" is the vertical bar, \"|\", the remaining keywords
2542 signify that no further action is necessary. If \"|\" is not found,
2543 the last keyword is treated as the only DONE state of the sequence.
2545 The command \\[org-todo] cycles an entry through these states, and one
2546 additional state where no keyword is present. For details about this
2547 cycling, see the manual.
2549 TODO keywords and interpretation can also be set on a per-file basis with
2550 the special #+SEQ_TODO and #+TYP_TODO lines.
2552 Each keyword can optionally specify a character for fast state selection
2553 \(in combination with the variable `org-use-fast-todo-selection')
2554 and specifiers for state change logging, using the same syntax that
2555 is used in the \"#+TODO:\" lines. For example, \"WAIT(w)\" says that
2556 the WAIT state can be selected with the \"w\" key. \"WAIT(w!)\"
2557 indicates to record a time stamp each time this state is selected.
2559 Each keyword may also specify if a timestamp or a note should be
2560 recorded when entering or leaving the state, by adding additional
2561 characters in the parenthesis after the keyword. This looks like this:
2562 \"WAIT(w@/!)\". \"@\" means to add a note (with time), \"!\" means to
2563 record only the time of the state change. With X and Y being either
2564 \"@\" or \"!\", \"X/Y\" means use X when entering the state, and use
2565 Y when leaving the state if and only if the *target* state does not
2566 define X. You may omit any of the fast-selection key or X or /Y,
2567 so WAIT(w@), WAIT(w/@) and WAIT(@/@) are all valid.
2569 For backward compatibility, this variable may also be just a list
2570 of keywords. In this case the interpretation (sequence or type) will be
2571 taken from the (otherwise obsolete) variable `org-todo-interpretation'."
2572 :group 'org-todo
2573 :group 'org-keywords
2574 :type '(choice
2575 (repeat :tag "Old syntax, just keywords"
2576 (string :tag "Keyword"))
2577 (repeat :tag "New syntax"
2578 (cons
2579 (choice
2580 :tag "Interpretation"
2581 ;;Quick and dirty way to see
2582 ;;`org-todo-interpretations'. This takes the
2583 ;;place of item arguments
2584 :convert-widget
2585 (lambda (widget)
2586 (widget-put widget
2587 :args (mapcar
2588 (lambda (x)
2589 (widget-convert
2590 (cons 'const x)))
2591 org-todo-interpretation-widgets))
2592 widget))
2593 (repeat
2594 (string :tag "Keyword"))))))
2596 (defvar org-todo-keywords-1 nil
2597 "All TODO and DONE keywords active in a buffer.")
2598 (make-variable-buffer-local 'org-todo-keywords-1)
2599 (defvar org-todo-keywords-for-agenda nil)
2600 (defvar org-done-keywords-for-agenda nil)
2601 (defvar org-todo-keyword-alist-for-agenda nil)
2602 (defvar org-tag-alist-for-agenda nil
2603 "Alist of all tags from all agenda files.")
2604 (defvar org-tag-groups-alist-for-agenda nil
2605 "Alist of all groups tags from all current agenda files.")
2606 (defvar org-tag-groups-alist nil)
2607 (make-variable-buffer-local 'org-tag-groups-alist)
2608 (defvar org-agenda-contributing-files nil)
2609 (defvar org-not-done-keywords nil)
2610 (make-variable-buffer-local 'org-not-done-keywords)
2611 (defvar org-done-keywords nil)
2612 (make-variable-buffer-local 'org-done-keywords)
2613 (defvar org-todo-heads nil)
2614 (make-variable-buffer-local 'org-todo-heads)
2615 (defvar org-todo-sets nil)
2616 (make-variable-buffer-local 'org-todo-sets)
2617 (defvar org-todo-log-states nil)
2618 (make-variable-buffer-local 'org-todo-log-states)
2619 (defvar org-todo-kwd-alist nil)
2620 (make-variable-buffer-local 'org-todo-kwd-alist)
2621 (defvar org-todo-key-alist nil)
2622 (make-variable-buffer-local 'org-todo-key-alist)
2623 (defvar org-todo-key-trigger nil)
2624 (make-variable-buffer-local 'org-todo-key-trigger)
2626 (defcustom org-todo-interpretation 'sequence
2627 "Controls how TODO keywords are interpreted.
2628 This variable is in principle obsolete and is only used for
2629 backward compatibility, if the interpretation of todo keywords is
2630 not given already in `org-todo-keywords'. See that variable for
2631 more information."
2632 :group 'org-todo
2633 :group 'org-keywords
2634 :type '(choice (const sequence)
2635 (const type)))
2637 (defcustom org-use-fast-todo-selection t
2638 "Non-nil means use the fast todo selection scheme with C-c C-t.
2639 This variable describes if and under what circumstances the cycling
2640 mechanism for TODO keywords will be replaced by a single-key, direct
2641 selection scheme.
2643 When nil, fast selection is never used.
2645 When the symbol `prefix', it will be used when `org-todo' is called
2646 with a prefix argument, i.e. `C-u C-c C-t' in an Org-mode buffer, and
2647 `C-u t' in an agenda buffer.
2649 When t, fast selection is used by default. In this case, the prefix
2650 argument forces cycling instead.
2652 In all cases, the special interface is only used if access keys have
2653 actually been assigned by the user, i.e. if keywords in the configuration
2654 are followed by a letter in parenthesis, like TODO(t)."
2655 :group 'org-todo
2656 :type '(choice
2657 (const :tag "Never" nil)
2658 (const :tag "By default" t)
2659 (const :tag "Only with C-u C-c C-t" prefix)))
2661 (defcustom org-provide-todo-statistics t
2662 "Non-nil means update todo statistics after insert and toggle.
2663 ALL-HEADLINES means update todo statistics by including headlines
2664 with no TODO keyword as well, counting them as not done.
2665 A list of TODO keywords means the same, but skip keywords that are
2666 not in this list.
2667 When set to a list of two lists, the first list contains keywords
2668 to consider as TODO keywords, the second list contains keywords
2669 to consider as DONE keywords.
2671 When this is set, todo statistics is updated in the parent of the
2672 current entry each time a todo state is changed."
2673 :group 'org-todo
2674 :type '(choice
2675 (const :tag "Yes, only for TODO entries" t)
2676 (const :tag "Yes, including all entries" all-headlines)
2677 (repeat :tag "Yes, for TODOs in this list"
2678 (string :tag "TODO keyword"))
2679 (list :tag "Yes, for TODOs and DONEs in these lists"
2680 (repeat (string :tag "TODO keyword"))
2681 (repeat (string :tag "DONE keyword")))
2682 (other :tag "No TODO statistics" nil)))
2684 (defcustom org-hierarchical-todo-statistics t
2685 "Non-nil means TODO statistics covers just direct children.
2686 When nil, all entries in the subtree are considered.
2687 This has only an effect if `org-provide-todo-statistics' is set.
2688 To set this to nil for only a single subtree, use a COOKIE_DATA
2689 property and include the word \"recursive\" into the value."
2690 :group 'org-todo
2691 :type 'boolean)
2693 (defcustom org-after-todo-state-change-hook nil
2694 "Hook which is run after the state of a TODO item was changed.
2695 The new state (a string with a TODO keyword, or nil) is available in the
2696 Lisp variable `org-state'."
2697 :group 'org-todo
2698 :type 'hook)
2700 (defvar org-blocker-hook nil
2701 "Hook for functions that are allowed to block a state change.
2703 Functions in this hook should not modify the buffer.
2704 Each function gets as its single argument a property list,
2705 see `org-trigger-hook' for more information about this list.
2707 If any of the functions in this hook returns nil, the state change
2708 is blocked.")
2710 (defvar org-trigger-hook nil
2711 "Hook for functions that are triggered by a state change.
2713 Each function gets as its single argument a property list with at
2714 least the following elements:
2716 (:type type-of-change :position pos-at-entry-start
2717 :from old-state :to new-state)
2719 Depending on the type, more properties may be present.
2721 This mechanism is currently implemented for:
2723 TODO state changes
2724 ------------------
2725 :type todo-state-change
2726 :from previous state (keyword as a string), or nil, or a symbol
2727 'todo' or 'done', to indicate the general type of state.
2728 :to new state, like in :from")
2730 (defcustom org-enforce-todo-dependencies nil
2731 "Non-nil means undone TODO entries will block switching the parent to DONE.
2732 Also, if a parent has an :ORDERED: property, switching an entry to DONE will
2733 be blocked if any prior sibling is not yet done.
2734 Finally, if the parent is blocked because of ordered siblings of its own,
2735 the child will also be blocked."
2736 :set (lambda (var val)
2737 (set var val)
2738 (if val
2739 (add-hook 'org-blocker-hook
2740 'org-block-todo-from-children-or-siblings-or-parent)
2741 (remove-hook 'org-blocker-hook
2742 'org-block-todo-from-children-or-siblings-or-parent)))
2743 :group 'org-todo
2744 :type 'boolean)
2746 (defcustom org-enforce-todo-checkbox-dependencies nil
2747 "Non-nil means unchecked boxes will block switching the parent to DONE.
2748 When this is nil, checkboxes have no influence on switching TODO states.
2749 When non-nil, you first need to check off all check boxes before the TODO
2750 entry can be switched to DONE.
2751 This variable needs to be set before org.el is loaded, and you need to
2752 restart Emacs after a change to make the change effective. The only way
2753 to change is while Emacs is running is through the customize interface."
2754 :set (lambda (var val)
2755 (set var val)
2756 (if val
2757 (add-hook 'org-blocker-hook
2758 'org-block-todo-from-checkboxes)
2759 (remove-hook 'org-blocker-hook
2760 'org-block-todo-from-checkboxes)))
2761 :group 'org-todo
2762 :type 'boolean)
2764 (defcustom org-treat-insert-todo-heading-as-state-change nil
2765 "Non-nil means inserting a TODO heading is treated as state change.
2766 So when the command \\[org-insert-todo-heading] is used, state change
2767 logging will apply if appropriate. When nil, the new TODO item will
2768 be inserted directly, and no logging will take place."
2769 :group 'org-todo
2770 :type 'boolean)
2772 (defcustom org-treat-S-cursor-todo-selection-as-state-change t
2773 "Non-nil means switching TODO states with S-cursor counts as state change.
2774 This is the default behavior. However, setting this to nil allows a
2775 convenient way to select a TODO state and bypass any logging associated
2776 with that."
2777 :group 'org-todo
2778 :type 'boolean)
2780 (defcustom org-todo-state-tags-triggers nil
2781 "Tag changes that should be triggered by TODO state changes.
2782 This is a list. Each entry is
2784 (state-change (tag . flag) .......)
2786 State-change can be a string with a state, and empty string to indicate the
2787 state that has no TODO keyword, or it can be one of the symbols `todo'
2788 or `done', meaning any not-done or done state, respectively."
2789 :group 'org-todo
2790 :group 'org-tags
2791 :type '(repeat
2792 (cons (choice :tag "When changing to"
2793 (const :tag "Not-done state" todo)
2794 (const :tag "Done state" done)
2795 (string :tag "State"))
2796 (repeat
2797 (cons :tag "Tag action"
2798 (string :tag "Tag")
2799 (choice (const :tag "Add" t) (const :tag "Remove" nil)))))))
2801 (defcustom org-log-done nil
2802 "Information to record when a task moves to the DONE state.
2804 Possible values are:
2806 nil Don't add anything, just change the keyword
2807 time Add a time stamp to the task
2808 note Prompt for a note and add it with template `org-log-note-headings'
2810 This option can also be set with on a per-file-basis with
2812 #+STARTUP: nologdone
2813 #+STARTUP: logdone
2814 #+STARTUP: lognotedone
2816 You can have local logging settings for a subtree by setting the LOGGING
2817 property to one or more of these keywords."
2818 :group 'org-todo
2819 :group 'org-progress
2820 :type '(choice
2821 (const :tag "No logging" nil)
2822 (const :tag "Record CLOSED timestamp" time)
2823 (const :tag "Record CLOSED timestamp with note." note)))
2825 ;; Normalize old uses of org-log-done.
2826 (cond
2827 ((eq org-log-done t) (setq org-log-done 'time))
2828 ((and (listp org-log-done) (memq 'done org-log-done))
2829 (setq org-log-done 'note)))
2831 (defcustom org-log-reschedule nil
2832 "Information to record when the scheduling date of a tasks is modified.
2834 Possible values are:
2836 nil Don't add anything, just change the date
2837 time Add a time stamp to the task
2838 note Prompt for a note and add it with template `org-log-note-headings'
2840 This option can also be set with on a per-file-basis with
2842 #+STARTUP: nologreschedule
2843 #+STARTUP: logreschedule
2844 #+STARTUP: lognotereschedule"
2845 :group 'org-todo
2846 :group 'org-progress
2847 :type '(choice
2848 (const :tag "No logging" nil)
2849 (const :tag "Record timestamp" time)
2850 (const :tag "Record timestamp with note." note)))
2852 (defcustom org-log-redeadline nil
2853 "Information to record when the deadline date of a tasks is modified.
2855 Possible values are:
2857 nil Don't add anything, just change the date
2858 time Add a time stamp to the task
2859 note Prompt for a note and add it with template `org-log-note-headings'
2861 This option can also be set with on a per-file-basis with
2863 #+STARTUP: nologredeadline
2864 #+STARTUP: logredeadline
2865 #+STARTUP: lognoteredeadline
2867 You can have local logging settings for a subtree by setting the LOGGING
2868 property to one or more of these keywords."
2869 :group 'org-todo
2870 :group 'org-progress
2871 :type '(choice
2872 (const :tag "No logging" nil)
2873 (const :tag "Record timestamp" time)
2874 (const :tag "Record timestamp with note." note)))
2876 (defcustom org-log-note-clock-out nil
2877 "Non-nil means record a note when clocking out of an item.
2878 This can also be configured on a per-file basis by adding one of
2879 the following lines anywhere in the buffer:
2881 #+STARTUP: lognoteclock-out
2882 #+STARTUP: nolognoteclock-out"
2883 :group 'org-todo
2884 :group 'org-progress
2885 :type 'boolean)
2887 (defcustom org-log-done-with-time t
2888 "Non-nil means the CLOSED time stamp will contain date and time.
2889 When nil, only the date will be recorded."
2890 :group 'org-progress
2891 :type 'boolean)
2893 (defcustom org-log-note-headings
2894 '((done . "CLOSING NOTE %t")
2895 (state . "State %-12s from %-12S %t")
2896 (note . "Note taken on %t")
2897 (reschedule . "Rescheduled from %S on %t")
2898 (delschedule . "Not scheduled, was %S on %t")
2899 (redeadline . "New deadline from %S on %t")
2900 (deldeadline . "Removed deadline, was %S on %t")
2901 (refile . "Refiled on %t")
2902 (clock-out . ""))
2903 "Headings for notes added to entries.
2904 The value is an alist, with the car being a symbol indicating the note
2905 context, and the cdr is the heading to be used. The heading may also be the
2906 empty string.
2907 %t in the heading will be replaced by a time stamp.
2908 %T will be an active time stamp instead the default inactive one
2909 %d will be replaced by a short-format time stamp.
2910 %D will be replaced by an active short-format time stamp.
2911 %s will be replaced by the new TODO state, in double quotes.
2912 %S will be replaced by the old TODO state, in double quotes.
2913 %u will be replaced by the user name.
2914 %U will be replaced by the full user name.
2916 In fact, it is not a good idea to change the `state' entry, because
2917 agenda log mode depends on the format of these entries."
2918 :group 'org-todo
2919 :group 'org-progress
2920 :type '(list :greedy t
2921 (cons (const :tag "Heading when closing an item" done) string)
2922 (cons (const :tag
2923 "Heading when changing todo state (todo sequence only)"
2924 state) string)
2925 (cons (const :tag "Heading when just taking a note" note) string)
2926 (cons (const :tag "Heading when rescheduling" reschedule) string)
2927 (cons (const :tag "Heading when an item is no longer scheduled" delschedule) string)
2928 (cons (const :tag "Heading when changing deadline" redeadline) string)
2929 (cons (const :tag "Heading when deleting a deadline" deldeadline) string)
2930 (cons (const :tag "Heading when refiling" refile) string)
2931 (cons (const :tag "Heading when clocking out" clock-out) string)))
2933 (unless (assq 'note org-log-note-headings)
2934 (push '(note . "%t") org-log-note-headings))
2936 (defcustom org-log-into-drawer nil
2937 "Non-nil means insert state change notes and time stamps into a drawer.
2938 When nil, state changes notes will be inserted after the headline and
2939 any scheduling and clock lines, but not inside a drawer.
2941 The value of this variable should be the name of the drawer to use.
2942 LOGBOOK is proposed as the default drawer for this purpose, you can
2943 also set this to a string to define the drawer of your choice.
2945 A value of t is also allowed, representing \"LOGBOOK\".
2947 A value of t or nil can also be set with on a per-file-basis with
2949 #+STARTUP: logdrawer
2950 #+STARTUP: nologdrawer
2952 If this variable is set, `org-log-state-notes-insert-after-drawers'
2953 will be ignored.
2955 You can set the property LOG_INTO_DRAWER to overrule this setting for
2956 a subtree."
2957 :group 'org-todo
2958 :group 'org-progress
2959 :type '(choice
2960 (const :tag "Not into a drawer" nil)
2961 (const :tag "LOGBOOK" t)
2962 (string :tag "Other")))
2964 (org-defvaralias 'org-log-state-notes-into-drawer 'org-log-into-drawer)
2966 (defun org-log-into-drawer ()
2967 "Return the value of `org-log-into-drawer', but let properties overrule.
2968 If the current entry has or inherits a LOG_INTO_DRAWER property, it will be
2969 used instead of the default value."
2970 (let ((p (org-entry-get nil "LOG_INTO_DRAWER" 'inherit t)))
2971 (cond
2972 ((not p) org-log-into-drawer)
2973 ((equal p "nil") nil)
2974 ((equal p "t") "LOGBOOK")
2975 (t p))))
2977 (defcustom org-log-state-notes-insert-after-drawers nil
2978 "Non-nil means insert state change notes after any drawers in entry.
2979 Only the drawers that *immediately* follow the headline and the
2980 deadline/scheduled line are skipped.
2981 When nil, insert notes right after the heading and perhaps the line
2982 with deadline/scheduling if present.
2984 This variable will have no effect if `org-log-into-drawer' is
2985 set."
2986 :group 'org-todo
2987 :group 'org-progress
2988 :type 'boolean)
2990 (defcustom org-log-states-order-reversed t
2991 "Non-nil means the latest state note will be directly after heading.
2992 When nil, the state change notes will be ordered according to time.
2994 This option can also be set with on a per-file-basis with
2996 #+STARTUP: logstatesreversed
2997 #+STARTUP: nologstatesreversed"
2998 :group 'org-todo
2999 :group 'org-progress
3000 :type 'boolean)
3002 (defcustom org-todo-repeat-to-state nil
3003 "The TODO state to which a repeater should return the repeating task.
3004 By default this is the first task in a TODO sequence, or the previous state
3005 in a TODO_TYP set. But you can specify another task here.
3006 alternatively, set the :REPEAT_TO_STATE: property of the entry."
3007 :group 'org-todo
3008 :version "24.1"
3009 :type '(choice (const :tag "Head of sequence" nil)
3010 (string :tag "Specific state")))
3012 (defcustom org-log-repeat 'time
3013 "Non-nil means record moving through the DONE state when triggering repeat.
3014 An auto-repeating task is immediately switched back to TODO when
3015 marked DONE. If you are not logging state changes (by adding \"@\"
3016 or \"!\" to the TODO keyword definition), or set `org-log-done' to
3017 record a closing note, there will be no record of the task moving
3018 through DONE. This variable forces taking a note anyway.
3020 nil Don't force a record
3021 time Record a time stamp
3022 note Prompt for a note and add it with template `org-log-note-headings'
3024 This option can also be set with on a per-file-basis with
3026 #+STARTUP: nologrepeat
3027 #+STARTUP: logrepeat
3028 #+STARTUP: lognoterepeat
3030 You can have local logging settings for a subtree by setting the LOGGING
3031 property to one or more of these keywords."
3032 :group 'org-todo
3033 :group 'org-progress
3034 :type '(choice
3035 (const :tag "Don't force a record" nil)
3036 (const :tag "Force recording the DONE state" time)
3037 (const :tag "Force recording a note with the DONE state" note)))
3040 (defgroup org-priorities nil
3041 "Priorities in Org-mode."
3042 :tag "Org Priorities"
3043 :group 'org-todo)
3045 (defcustom org-enable-priority-commands t
3046 "Non-nil means priority commands are active.
3047 When nil, these commands will be disabled, so that you never accidentally
3048 set a priority."
3049 :group 'org-priorities
3050 :type 'boolean)
3052 (defcustom org-highest-priority ?A
3053 "The highest priority of TODO items. A character like ?A, ?B etc.
3054 Must have a smaller ASCII number than `org-lowest-priority'."
3055 :group 'org-priorities
3056 :type 'character)
3058 (defcustom org-lowest-priority ?C
3059 "The lowest priority of TODO items. A character like ?A, ?B etc.
3060 Must have a larger ASCII number than `org-highest-priority'."
3061 :group 'org-priorities
3062 :type 'character)
3064 (defcustom org-default-priority ?B
3065 "The default priority of TODO items.
3066 This is the priority an item gets if no explicit priority is given.
3067 When starting to cycle on an empty priority the first step in the cycle
3068 depends on `org-priority-start-cycle-with-default'. The resulting first
3069 step priority must not exceed the range from `org-highest-priority' to
3070 `org-lowest-priority' which means that `org-default-priority' has to be
3071 in this range exclusive or inclusive the range boundaries. Else the
3072 first step refuses to set the default and the second will fall back
3073 to (depending on the command used) the highest or lowest priority."
3074 :group 'org-priorities
3075 :type 'character)
3077 (defcustom org-priority-start-cycle-with-default t
3078 "Non-nil means start with default priority when starting to cycle.
3079 When this is nil, the first step in the cycle will be (depending on the
3080 command used) one higher or lower than the default priority.
3081 See also `org-default-priority'."
3082 :group 'org-priorities
3083 :type 'boolean)
3085 (defcustom org-get-priority-function nil
3086 "Function to extract the priority from a string.
3087 The string is normally the headline. If this is nil Org computes the
3088 priority from the priority cookie like [#A] in the headline. It returns
3089 an integer, increasing by 1000 for each priority level.
3090 The user can set a different function here, which should take a string
3091 as an argument and return the numeric priority."
3092 :group 'org-priorities
3093 :version "24.1"
3094 :type '(choice
3095 (const nil)
3096 (function)))
3098 (defgroup org-time nil
3099 "Options concerning time stamps and deadlines in Org-mode."
3100 :tag "Org Time"
3101 :group 'org)
3103 (defcustom org-insert-labeled-timestamps-at-point nil
3104 "Non-nil means SCHEDULED and DEADLINE timestamps are inserted at point.
3105 When nil, these labeled time stamps are forces into the second line of an
3106 entry, just after the headline. When scheduling from the global TODO list,
3107 the time stamp will always be forced into the second line."
3108 :group 'org-time
3109 :type 'boolean)
3111 (defcustom org-time-stamp-rounding-minutes '(0 5)
3112 "Number of minutes to round time stamps to.
3113 These are two values, the first applies when first creating a time stamp.
3114 The second applies when changing it with the commands `S-up' and `S-down'.
3115 When changing the time stamp, this means that it will change in steps
3116 of N minutes, as given by the second value.
3118 When a setting is 0 or 1, insert the time unmodified. Useful rounding
3119 numbers should be factors of 60, so for example 5, 10, 15.
3121 When this is larger than 1, you can still force an exact time stamp by using
3122 a double prefix argument to a time stamp command like `C-c .' or `C-c !',
3123 and by using a prefix arg to `S-up/down' to specify the exact number
3124 of minutes to shift."
3125 :group 'org-time
3126 :get (lambda (var) ; Make sure both elements are there
3127 (if (integerp (default-value var))
3128 (list (default-value var) 5)
3129 (default-value var)))
3130 :type '(list
3131 (integer :tag "when inserting times")
3132 (integer :tag "when modifying times")))
3134 ;; Normalize old customizations of this variable.
3135 (when (integerp org-time-stamp-rounding-minutes)
3136 (setq org-time-stamp-rounding-minutes
3137 (list org-time-stamp-rounding-minutes
3138 org-time-stamp-rounding-minutes)))
3140 (defcustom org-display-custom-times nil
3141 "Non-nil means overlay custom formats over all time stamps.
3142 The formats are defined through the variable `org-time-stamp-custom-formats'.
3143 To turn this on on a per-file basis, insert anywhere in the file:
3144 #+STARTUP: customtime"
3145 :group 'org-time
3146 :set 'set-default
3147 :type 'sexp)
3148 (make-variable-buffer-local 'org-display-custom-times)
3150 (defcustom org-time-stamp-custom-formats
3151 '("<%m/%d/%y %a>" . "<%m/%d/%y %a %H:%M>") ; american
3152 "Custom formats for time stamps. See `format-time-string' for the syntax.
3153 These are overlaid over the default ISO format if the variable
3154 `org-display-custom-times' is set. Time like %H:%M should be at the
3155 end of the second format. The custom formats are also honored by export
3156 commands, if custom time display is turned on at the time of export."
3157 :group 'org-time
3158 :type 'sexp)
3160 (defun org-time-stamp-format (&optional long inactive)
3161 "Get the right format for a time string."
3162 (let ((f (if long (cdr org-time-stamp-formats)
3163 (car org-time-stamp-formats))))
3164 (if inactive
3165 (concat "[" (substring f 1 -1) "]")
3166 f)))
3168 (defcustom org-time-clocksum-format
3169 '(:days "%dd " :hours "%d" :require-hours t :minutes ":%02d" :require-minutes t)
3170 "The format string used when creating CLOCKSUM lines.
3171 This is also used when Org mode generates a time duration.
3173 The value can be a single format string containing two
3174 %-sequences, which will be filled with the number of hours and
3175 minutes in that order.
3177 Alternatively, the value can be a plist associating any of the
3178 keys :years, :months, :weeks, :days, :hours or :minutes with
3179 format strings. The time duration is formatted using only the
3180 time components that are needed and concatenating the results.
3181 If a time unit in absent, it falls back to the next smallest
3182 unit.
3184 The keys :require-years, :require-months, :require-days,
3185 :require-weeks, :require-hours, :require-minutes are also
3186 meaningful. A non-nil value for these keys indicates that the
3187 corresponding time component should always be included, even if
3188 its value is 0.
3191 For example,
3193 \(:days \"%dd\" :hours \"%d\" :require-hours t :minutes \":%02d\"
3194 :require-minutes t)
3196 means durations longer than a day will be expressed in days,
3197 hours and minutes, and durations less than a day will always be
3198 expressed in hours and minutes (even for durations less than an
3199 hour).
3201 The value
3203 \(:days \"%dd\" :minutes \"%dm\")
3205 means durations longer than a day will be expressed in days and
3206 minutes, and durations less than a day will be expressed entirely
3207 in minutes (even for durations longer than an hour)."
3208 :group 'org-time
3209 :group 'org-clock
3210 :version "24.4"
3211 :package-version '(Org . "8.0")
3212 :type '(choice (string :tag "Format string")
3213 (set :tag "Plist"
3214 (group :inline t (const :tag "Years" :years)
3215 (string :tag "Format string"))
3216 (group :inline t
3217 (const :tag "Always show years" :require-years)
3218 (const t))
3219 (group :inline t (const :tag "Months" :months)
3220 (string :tag "Format string"))
3221 (group :inline t
3222 (const :tag "Always show months" :require-months)
3223 (const t))
3224 (group :inline t (const :tag "Weeks" :weeks)
3225 (string :tag "Format string"))
3226 (group :inline t
3227 (const :tag "Always show weeks" :require-weeks)
3228 (const t))
3229 (group :inline t (const :tag "Days" :days)
3230 (string :tag "Format string"))
3231 (group :inline t
3232 (const :tag "Always show days" :require-days)
3233 (const t))
3234 (group :inline t (const :tag "Hours" :hours)
3235 (string :tag "Format string"))
3236 (group :inline t
3237 (const :tag "Always show hours" :require-hours)
3238 (const t))
3239 (group :inline t (const :tag "Minutes" :minutes)
3240 (string :tag "Format string"))
3241 (group :inline t
3242 (const :tag "Always show minutes" :require-minutes)
3243 (const t)))))
3245 (defcustom org-time-clocksum-use-fractional nil
3246 "When non-nil, \\[org-clock-display] uses fractional times.
3247 See `org-time-clocksum-format' for more on time clock formats."
3248 :group 'org-time
3249 :group 'org-clock
3250 :version "24.3"
3251 :type 'boolean)
3253 (defcustom org-time-clocksum-use-effort-durations nil
3254 "When non-nil, \\[org-clock-display] uses effort durations.
3255 E.g. by default, one day is considered to be a 8 hours effort,
3256 so a task that has been clocked for 16 hours will be displayed
3257 as during 2 days in the clock display or in the clocktable.
3259 See `org-effort-durations' on how to set effort durations
3260 and `org-time-clocksum-format' for more on time clock formats."
3261 :group 'org-time
3262 :group 'org-clock
3263 :version "24.4"
3264 :package-version '(Org . "8.0")
3265 :type 'boolean)
3267 (defcustom org-time-clocksum-fractional-format "%.2f"
3268 "The format string used when creating CLOCKSUM lines,
3269 or when Org mode generates a time duration, if
3270 `org-time-clocksum-use-fractional' is enabled.
3272 The value can be a single format string containing one
3273 %-sequence, which will be filled with the number of hours as
3274 a float.
3276 Alternatively, the value can be a plist associating any of the
3277 keys :years, :months, :weeks, :days, :hours or :minutes with
3278 a format string. The time duration is formatted using the
3279 largest time unit which gives a non-zero integer part. If all
3280 specified formats have zero integer part, the smallest time unit
3281 is used."
3282 :group 'org-time
3283 :type '(choice (string :tag "Format string")
3284 (set (group :inline t (const :tag "Years" :years)
3285 (string :tag "Format string"))
3286 (group :inline t (const :tag "Months" :months)
3287 (string :tag "Format string"))
3288 (group :inline t (const :tag "Weeks" :weeks)
3289 (string :tag "Format string"))
3290 (group :inline t (const :tag "Days" :days)
3291 (string :tag "Format string"))
3292 (group :inline t (const :tag "Hours" :hours)
3293 (string :tag "Format string"))
3294 (group :inline t (const :tag "Minutes" :minutes)
3295 (string :tag "Format string")))))
3297 (defcustom org-deadline-warning-days 14
3298 "Number of days before expiration during which a deadline becomes active.
3299 This variable governs the display in sparse trees and in the agenda.
3300 When 0 or negative, it means use this number (the absolute value of it)
3301 even if a deadline has a different individual lead time specified.
3303 Custom commands can set this variable in the options section."
3304 :group 'org-time
3305 :group 'org-agenda-daily/weekly
3306 :type 'integer)
3308 (defcustom org-scheduled-delay-days 0
3309 "Number of days before a scheduled item becomes active.
3310 This variable governs the display in sparse trees and in the agenda.
3311 The default value (i.e. 0) means: don't delay scheduled item.
3312 When negative, it means use this number (the absolute value of it)
3313 even if a scheduled item has a different individual delay time
3314 specified.
3316 Custom commands can set this variable in the options section."
3317 :group 'org-time
3318 :group 'org-agenda-daily/weekly
3319 :version "24.4"
3320 :package-version '(Org . "8.0")
3321 :type 'integer)
3323 (defcustom org-read-date-prefer-future t
3324 "Non-nil means assume future for incomplete date input from user.
3325 This affects the following situations:
3326 1. The user gives a month but not a year.
3327 For example, if it is April and you enter \"feb 2\", this will be read
3328 as Feb 2, *next* year. \"May 5\", however, will be this year.
3329 2. The user gives a day, but no month.
3330 For example, if today is the 15th, and you enter \"3\", Org-mode will
3331 read this as the third of *next* month. However, if you enter \"17\",
3332 it will be considered as *this* month.
3334 If you set this variable to the symbol `time', then also the following
3335 will work:
3337 3. If the user gives a time.
3338 If the time is before now, it will be interpreted as tomorrow.
3340 Currently none of this works for ISO week specifications.
3342 When this option is nil, the current day, month and year will always be
3343 used as defaults.
3345 See also `org-agenda-jump-prefer-future'."
3346 :group 'org-time
3347 :type '(choice
3348 (const :tag "Never" nil)
3349 (const :tag "Check month and day" t)
3350 (const :tag "Check month, day, and time" time)))
3352 (defcustom org-agenda-jump-prefer-future 'org-read-date-prefer-future
3353 "Should the agenda jump command prefer the future for incomplete dates?
3354 The default is to do the same as configured in `org-read-date-prefer-future'.
3355 But you can also set a deviating value here.
3356 This may t or nil, or the symbol `org-read-date-prefer-future'."
3357 :group 'org-agenda
3358 :group 'org-time
3359 :version "24.1"
3360 :type '(choice
3361 (const :tag "Use org-read-date-prefer-future"
3362 org-read-date-prefer-future)
3363 (const :tag "Never" nil)
3364 (const :tag "Always" t)))
3366 (defcustom org-read-date-force-compatible-dates t
3367 "Should date/time prompt force dates that are guaranteed to work in Emacs?
3369 Depending on the system Emacs is running on, certain dates cannot
3370 be represented with the type used internally to represent time.
3371 Dates between 1970-1-1 and 2038-1-1 can always be represented
3372 correctly. Some systems allow for earlier dates, some for later,
3373 some for both. One way to find out it to insert any date into an
3374 Org buffer, putting the cursor on the year and hitting S-up and
3375 S-down to test the range.
3377 When this variable is set to t, the date/time prompt will not let
3378 you specify dates outside the 1970-2037 range, so it is certain that
3379 these dates will work in whatever version of Emacs you are
3380 running, and also that you can move a file from one Emacs implementation
3381 to another. WHenever Org is forcing the year for you, it will display
3382 a message and beep.
3384 When this variable is nil, Org will check if the date is
3385 representable in the specific Emacs implementation you are using.
3386 If not, it will force a year, usually the current year, and beep
3387 to remind you. Currently this setting is not recommended because
3388 the likelihood that you will open your Org files in an Emacs that
3389 has limited date range is not negligible.
3391 A workaround for this problem is to use diary sexp dates for time
3392 stamps outside of this range."
3393 :group 'org-time
3394 :version "24.1"
3395 :type 'boolean)
3397 (defcustom org-read-date-display-live t
3398 "Non-nil means display current interpretation of date prompt live.
3399 This display will be in an overlay, in the minibuffer."
3400 :group 'org-time
3401 :type 'boolean)
3403 (defcustom org-read-date-popup-calendar t
3404 "Non-nil means pop up a calendar when prompting for a date.
3405 In the calendar, the date can be selected with mouse-1. However, the
3406 minibuffer will also be active, and you can simply enter the date as well.
3407 When nil, only the minibuffer will be available."
3408 :group 'org-time
3409 :type 'boolean)
3410 (org-defvaralias 'org-popup-calendar-for-date-prompt
3411 'org-read-date-popup-calendar)
3413 (make-obsolete-variable
3414 'org-read-date-minibuffer-setup-hook
3415 "Set `org-read-date-minibuffer-local-map' instead." "24.4")
3416 (defcustom org-read-date-minibuffer-setup-hook nil
3417 "Hook to be used to set up keys for the date/time interface.
3418 Add key definitions to `minibuffer-local-map', which will be a
3419 temporary copy.
3421 WARNING: This option is obsolete, you should use
3422 `org-read-date-minibuffer-local-map' to set up keys."
3423 :group 'org-time
3424 :type 'hook)
3426 (defcustom org-extend-today-until 0
3427 "The hour when your day really ends. Must be an integer.
3428 This has influence for the following applications:
3429 - When switching the agenda to \"today\". It it is still earlier than
3430 the time given here, the day recognized as TODAY is actually yesterday.
3431 - When a date is read from the user and it is still before the time given
3432 here, the current date and time will be assumed to be yesterday, 23:59.
3433 Also, timestamps inserted in capture templates follow this rule.
3435 IMPORTANT: This is a feature whose implementation is and likely will
3436 remain incomplete. Really, it is only here because past midnight seems to
3437 be the favorite working time of John Wiegley :-)"
3438 :group 'org-time
3439 :type 'integer)
3441 (defcustom org-use-effective-time nil
3442 "If non-nil, consider `org-extend-today-until' when creating timestamps.
3443 For example, if `org-extend-today-until' is 8, and it's 4am, then the
3444 \"effective time\" of any timestamps between midnight and 8am will be
3445 23:59 of the previous day."
3446 :group 'org-time
3447 :version "24.1"
3448 :type 'boolean)
3450 (defcustom org-use-last-clock-out-time-as-effective-time nil
3451 "When non-nil, use the last clock out time for `org-todo'.
3452 Note that this option has precedence over the combined use of
3453 `org-use-effective-time' and `org-extend-today-until'."
3454 :group 'org-time
3455 :version "24.4"
3456 :package-version '(Org . "8.0")
3457 :type 'boolean)
3459 (defcustom org-edit-timestamp-down-means-later nil
3460 "Non-nil means S-down will increase the time in a time stamp.
3461 When nil, S-up will increase."
3462 :group 'org-time
3463 :type 'boolean)
3465 (defcustom org-calendar-follow-timestamp-change t
3466 "Non-nil means make the calendar window follow timestamp changes.
3467 When a timestamp is modified and the calendar window is visible, it will be
3468 moved to the new date."
3469 :group 'org-time
3470 :type 'boolean)
3472 (defgroup org-tags nil
3473 "Options concerning tags in Org-mode."
3474 :tag "Org Tags"
3475 :group 'org)
3477 (defcustom org-tag-alist nil
3478 "List of tags allowed in Org-mode files.
3479 When this list is nil, Org-mode will base TAG input on what is already in the
3480 buffer.
3481 The value of this variable is an alist, the car of each entry must be a
3482 keyword as a string, the cdr may be a character that is used to select
3483 that tag through the fast-tag-selection interface.
3484 See the manual for details."
3485 :group 'org-tags
3486 :type '(repeat
3487 (choice
3488 (cons (string :tag "Tag name")
3489 (character :tag "Access char"))
3490 (list :tag "Start radio group"
3491 (const :startgroup)
3492 (option (string :tag "Group description")))
3493 (list :tag "Group tags delimiter"
3494 (const :grouptags))
3495 (list :tag "End radio group"
3496 (const :endgroup)
3497 (option (string :tag "Group description")))
3498 (const :tag "New line" (:newline)))))
3500 (defcustom org-tag-persistent-alist nil
3501 "List of tags that will always appear in all Org-mode files.
3502 This is in addition to any in buffer settings or customizations
3503 of `org-tag-alist'.
3504 When this list is nil, Org-mode will base TAG input on `org-tag-alist'.
3505 The value of this variable is an alist, the car of each entry must be a
3506 keyword as a string, the cdr may be a character that is used to select
3507 that tag through the fast-tag-selection interface.
3508 See the manual for details.
3509 To disable these tags on a per-file basis, insert anywhere in the file:
3510 #+STARTUP: noptag"
3511 :group 'org-tags
3512 :type '(repeat
3513 (choice
3514 (cons (string :tag "Tag name")
3515 (character :tag "Access char"))
3516 (const :tag "Start radio group" (:startgroup))
3517 (const :tag "Group tags delimiter" (:grouptags))
3518 (const :tag "End radio group" (:endgroup))
3519 (const :tag "New line" (:newline)))))
3521 (defcustom org-complete-tags-always-offer-all-agenda-tags nil
3522 "If non-nil, always offer completion for all tags of all agenda files.
3523 Instead of customizing this variable directly, you might want to
3524 set it locally for capture buffers, because there no list of
3525 tags in that file can be created dynamically (there are none).
3527 (add-hook 'org-capture-mode-hook
3528 (lambda ()
3529 (set (make-local-variable
3530 'org-complete-tags-always-offer-all-agenda-tags)
3531 t)))"
3532 :group 'org-tags
3533 :version "24.1"
3534 :type 'boolean)
3536 (defvar org-file-tags nil
3537 "List of tags that can be inherited by all entries in the file.
3538 The tags will be inherited if the variable `org-use-tag-inheritance'
3539 says they should be.
3540 This variable is populated from #+FILETAGS lines.")
3542 (defcustom org-use-fast-tag-selection 'auto
3543 "Non-nil means use fast tag selection scheme.
3544 This is a special interface to select and deselect tags with single keys.
3545 When nil, fast selection is never used.
3546 When the symbol `auto', fast selection is used if and only if selection
3547 characters for tags have been configured, either through the variable
3548 `org-tag-alist' or through a #+TAGS line in the buffer.
3549 When t, fast selection is always used and selection keys are assigned
3550 automatically if necessary."
3551 :group 'org-tags
3552 :type '(choice
3553 (const :tag "Always" t)
3554 (const :tag "Never" nil)
3555 (const :tag "When selection characters are configured" auto)))
3557 (defcustom org-fast-tag-selection-single-key nil
3558 "Non-nil means fast tag selection exits after first change.
3559 When nil, you have to press RET to exit it.
3560 During fast tag selection, you can toggle this flag with `C-c'.
3561 This variable can also have the value `expert'. In this case, the window
3562 displaying the tags menu is not even shown, until you press C-c again."
3563 :group 'org-tags
3564 :type '(choice
3565 (const :tag "No" nil)
3566 (const :tag "Yes" t)
3567 (const :tag "Expert" expert)))
3569 (defvar org-fast-tag-selection-include-todo nil
3570 "Non-nil means fast tags selection interface will also offer TODO states.
3571 This is an undocumented feature, you should not rely on it.")
3573 (defcustom org-tags-column (if (featurep 'xemacs) -76 -77)
3574 "The column to which tags should be indented in a headline.
3575 If this number is positive, it specifies the column. If it is negative,
3576 it means that the tags should be flushright to that column. For example,
3577 -80 works well for a normal 80 character screen.
3578 When 0, place tags directly after headline text, with only one space in
3579 between."
3580 :group 'org-tags
3581 :type 'integer)
3583 (defcustom org-auto-align-tags t
3584 "Non-nil keeps tags aligned when modifying headlines.
3585 Some operations (i.e. demoting) change the length of a headline and
3586 therefore shift the tags around. With this option turned on, after
3587 each such operation the tags are again aligned to `org-tags-column'."
3588 :group 'org-tags
3589 :type 'boolean)
3591 (defcustom org-use-tag-inheritance t
3592 "Non-nil means tags in levels apply also for sublevels.
3593 When nil, only the tags directly given in a specific line apply there.
3594 This may also be a list of tags that should be inherited, or a regexp that
3595 matches tags that should be inherited. Additional control is possible
3596 with the variable `org-tags-exclude-from-inheritance' which gives an
3597 explicit list of tags to be excluded from inheritance, even if the value of
3598 `org-use-tag-inheritance' would select it for inheritance.
3600 If this option is t, a match early-on in a tree can lead to a large
3601 number of matches in the subtree when constructing the agenda or creating
3602 a sparse tree. If you only want to see the first match in a tree during
3603 a search, check out the variable `org-tags-match-list-sublevels'."
3604 :group 'org-tags
3605 :type '(choice
3606 (const :tag "Not" nil)
3607 (const :tag "Always" t)
3608 (repeat :tag "Specific tags" (string :tag "Tag"))
3609 (regexp :tag "Tags matched by regexp")))
3611 (defcustom org-tags-exclude-from-inheritance nil
3612 "List of tags that should never be inherited.
3613 This is a way to exclude a few tags from inheritance. For way to do
3614 the opposite, to actively allow inheritance for selected tags,
3615 see the variable `org-use-tag-inheritance'."
3616 :group 'org-tags
3617 :type '(repeat (string :tag "Tag")))
3619 (defun org-tag-inherit-p (tag)
3620 "Check if TAG is one that should be inherited."
3621 (cond
3622 ((member tag org-tags-exclude-from-inheritance) nil)
3623 ((eq org-use-tag-inheritance t) t)
3624 ((not org-use-tag-inheritance) nil)
3625 ((stringp org-use-tag-inheritance)
3626 (string-match org-use-tag-inheritance tag))
3627 ((listp org-use-tag-inheritance)
3628 (member tag org-use-tag-inheritance))
3629 (t (error "Invalid setting of `org-use-tag-inheritance'"))))
3631 (defcustom org-tags-match-list-sublevels t
3632 "Non-nil means list also sublevels of headlines matching a search.
3633 This variable applies to tags/property searches, and also to stuck
3634 projects because this search is based on a tags match as well.
3636 When set to the symbol `indented', sublevels are indented with
3637 leading dots.
3639 Because of tag inheritance (see variable `org-use-tag-inheritance'),
3640 the sublevels of a headline matching a tag search often also match
3641 the same search. Listing all of them can create very long lists.
3642 Setting this variable to nil causes subtrees of a match to be skipped.
3644 This variable is semi-obsolete and probably should always be true. It
3645 is better to limit inheritance to certain tags using the variables
3646 `org-use-tag-inheritance' and `org-tags-exclude-from-inheritance'."
3647 :group 'org-tags
3648 :type '(choice
3649 (const :tag "No, don't list them" nil)
3650 (const :tag "Yes, do list them" t)
3651 (const :tag "List them, indented with leading dots" indented)))
3653 (defcustom org-tags-sort-function nil
3654 "When set, tags are sorted using this function as a comparator."
3655 :group 'org-tags
3656 :type '(choice
3657 (const :tag "No sorting" nil)
3658 (const :tag "Alphabetical" string<)
3659 (const :tag "Reverse alphabetical" string>)
3660 (function :tag "Custom function" nil)))
3662 (defvar org-tags-history nil
3663 "History of minibuffer reads for tags.")
3664 (defvar org-last-tags-completion-table nil
3665 "The last used completion table for tags.")
3666 (defvar org-after-tags-change-hook nil
3667 "Hook that is run after the tags in a line have changed.")
3669 (defgroup org-properties nil
3670 "Options concerning properties in Org-mode."
3671 :tag "Org Properties"
3672 :group 'org)
3674 (defcustom org-property-format "%-10s %s"
3675 "How property key/value pairs should be formatted by `indent-line'.
3676 When `indent-line' hits a property definition, it will format the line
3677 according to this format, mainly to make sure that the values are
3678 lined-up with respect to each other."
3679 :group 'org-properties
3680 :type 'string)
3682 (defcustom org-properties-postprocess-alist nil
3683 "Alist of properties and functions to adjust inserted values.
3684 Elements of this alist must be of the form
3686 ([string] [function])
3688 where [string] must be a property name and [function] must be a
3689 lambda expression: this lambda expression must take one argument,
3690 the value to adjust, and return the new value as a string.
3692 For example, this element will allow the property \"Remaining\"
3693 to be updated wrt the relation between the \"Effort\" property
3694 and the clock summary:
3696 ((\"Remaining\" (lambda(value)
3697 (let ((clocksum (org-clock-sum-current-item))
3698 (effort (org-duration-string-to-minutes
3699 (org-entry-get (point) \"Effort\"))))
3700 (org-minutes-to-clocksum-string (- effort clocksum))))))"
3701 :group 'org-properties
3702 :version "24.1"
3703 :type '(alist :key-type (string :tag "Property")
3704 :value-type (function :tag "Function")))
3706 (defcustom org-use-property-inheritance nil
3707 "Non-nil means properties apply also for sublevels.
3709 This setting is chiefly used during property searches. Turning it on can
3710 cause significant overhead when doing a search, which is why it is not
3711 on by default.
3713 When nil, only the properties directly given in the current entry count.
3714 When t, every property is inherited. The value may also be a list of
3715 properties that should have inheritance, or a regular expression matching
3716 properties that should be inherited.
3718 However, note that some special properties use inheritance under special
3719 circumstances (not in searches). Examples are CATEGORY, ARCHIVE, COLUMNS,
3720 and the properties ending in \"_ALL\" when they are used as descriptor
3721 for valid values of a property.
3723 Note for programmers:
3724 When querying an entry with `org-entry-get', you can control if inheritance
3725 should be used. By default, `org-entry-get' looks only at the local
3726 properties. You can request inheritance by setting the inherit argument
3727 to t (to force inheritance) or to `selective' (to respect the setting
3728 in this variable)."
3729 :group 'org-properties
3730 :type '(choice
3731 (const :tag "Not" nil)
3732 (const :tag "Always" t)
3733 (repeat :tag "Specific properties" (string :tag "Property"))
3734 (regexp :tag "Properties matched by regexp")))
3736 (defun org-property-inherit-p (property)
3737 "Check if PROPERTY is one that should be inherited."
3738 (cond
3739 ((eq org-use-property-inheritance t) t)
3740 ((not org-use-property-inheritance) nil)
3741 ((stringp org-use-property-inheritance)
3742 (string-match org-use-property-inheritance property))
3743 ((listp org-use-property-inheritance)
3744 (member property org-use-property-inheritance))
3745 (t (error "Invalid setting of `org-use-property-inheritance'"))))
3747 (defcustom org-columns-default-format "%25ITEM %TODO %3PRIORITY %TAGS"
3748 "The default column format, if no other format has been defined.
3749 This variable can be set on the per-file basis by inserting a line
3751 #+COLUMNS: %25ITEM ....."
3752 :group 'org-properties
3753 :type 'string)
3755 (defcustom org-columns-ellipses ".."
3756 "The ellipses to be used when a field in column view is truncated.
3757 When this is the empty string, as many characters as possible are shown,
3758 but then there will be no visual indication that the field has been truncated.
3759 When this is a string of length N, the last N characters of a truncated
3760 field are replaced by this string. If the column is narrower than the
3761 ellipses string, only part of the ellipses string will be shown."
3762 :group 'org-properties
3763 :type 'string)
3765 (defcustom org-columns-modify-value-for-display-function nil
3766 "Function that modifies values for display in column view.
3767 For example, it can be used to cut out a certain part from a time stamp.
3768 The function must take 2 arguments:
3770 column-title The title of the column (*not* the property name)
3771 value The value that should be modified.
3773 The function should return the value that should be displayed,
3774 or nil if the normal value should be used."
3775 :group 'org-properties
3776 :type '(choice (const nil) (function)))
3778 (defconst org-global-properties-fixed
3779 '(("VISIBILITY_ALL" . "folded children content all")
3780 ("CLOCK_MODELINE_TOTAL_ALL" . "current today repeat all auto"))
3781 "List of property/value pairs that can be inherited by any entry.
3783 These are fixed values, for the preset properties. The user variable
3784 that can be used to add to this list is `org-global-properties'.
3786 The entries in this list are cons cells where the car is a property
3787 name and cdr is a string with the value. If the value represents
3788 multiple items like an \"_ALL\" property, separate the items by
3789 spaces.")
3791 (defcustom org-global-properties nil
3792 "List of property/value pairs that can be inherited by any entry.
3794 This list will be combined with the constant `org-global-properties-fixed'.
3796 The entries in this list are cons cells where the car is a property
3797 name and cdr is a string with the value.
3799 You can set buffer-local values for the same purpose in the variable
3800 `org-file-properties' this by adding lines like
3802 #+PROPERTY: NAME VALUE"
3803 :group 'org-properties
3804 :type '(repeat
3805 (cons (string :tag "Property")
3806 (string :tag "Value"))))
3808 (defvar org-file-properties nil
3809 "List of property/value pairs that can be inherited by any entry.
3810 Valid for the current buffer.
3811 This variable is populated from #+PROPERTY lines.")
3812 (make-variable-buffer-local 'org-file-properties)
3814 (defgroup org-agenda nil
3815 "Options concerning agenda views in Org-mode."
3816 :tag "Org Agenda"
3817 :group 'org)
3819 (defvar org-category nil
3820 "Variable used by org files to set a category for agenda display.
3821 Such files should use a file variable to set it, for example
3823 # -*- mode: org; org-category: \"ELisp\"
3825 or contain a special line
3827 #+CATEGORY: ELisp
3829 If the file does not specify a category, then file's base name
3830 is used instead.")
3831 (make-variable-buffer-local 'org-category)
3832 (put 'org-category 'safe-local-variable (lambda (x) (or (symbolp x) (stringp x))))
3834 (defcustom org-agenda-files nil
3835 "The files to be used for agenda display.
3836 Entries may be added to this list with \\[org-agenda-file-to-front] and removed with
3837 \\[org-remove-file]. You can also use customize to edit the list.
3839 If an entry is a directory, all files in that directory that are matched by
3840 `org-agenda-file-regexp' will be part of the file list.
3842 If the value of the variable is not a list but a single file name, then
3843 the list of agenda files is actually stored and maintained in that file, one
3844 agenda file per line. In this file paths can be given relative to
3845 `org-directory'. Tilde expansion and environment variable substitution
3846 are also made."
3847 :group 'org-agenda
3848 :type '(choice
3849 (repeat :tag "List of files and directories" file)
3850 (file :tag "Store list in a file\n" :value "~/.agenda_files")))
3852 (defcustom org-agenda-file-regexp "\\`[^.].*\\.org\\'"
3853 "Regular expression to match files for `org-agenda-files'.
3854 If any element in the list in that variable contains a directory instead
3855 of a normal file, all files in that directory that are matched by this
3856 regular expression will be included."
3857 :group 'org-agenda
3858 :type 'regexp)
3860 (defcustom org-agenda-text-search-extra-files nil
3861 "List of extra files to be searched by text search commands.
3862 These files will be searched in addition to the agenda files by the
3863 commands `org-search-view' (`C-c a s') and `org-occur-in-agenda-files'.
3864 Note that these files will only be searched for text search commands,
3865 not for the other agenda views like todo lists, tag searches or the weekly
3866 agenda. This variable is intended to list notes and possibly archive files
3867 that should also be searched by these two commands.
3868 In fact, if the first element in the list is the symbol `agenda-archives',
3869 then all archive files of all agenda files will be added to the search
3870 scope."
3871 :group 'org-agenda
3872 :type '(set :greedy t
3873 (const :tag "Agenda Archives" agenda-archives)
3874 (repeat :inline t (file))))
3876 (org-defvaralias 'org-agenda-multi-occur-extra-files
3877 'org-agenda-text-search-extra-files)
3879 (defcustom org-agenda-skip-unavailable-files nil
3880 "Non-nil means to just skip non-reachable files in `org-agenda-files'.
3881 A nil value means to remove them, after a query, from the list."
3882 :group 'org-agenda
3883 :type 'boolean)
3885 (defcustom org-calendar-to-agenda-key [?c]
3886 "The key to be installed in `calendar-mode-map' for switching to the agenda.
3887 The command `org-calendar-goto-agenda' will be bound to this key. The
3888 default is the character `c' because then `c' can be used to switch back and
3889 forth between agenda and calendar."
3890 :group 'org-agenda
3891 :type 'sexp)
3893 (defcustom org-calendar-insert-diary-entry-key [?i]
3894 "The key to be installed in `calendar-mode-map' for adding diary entries.
3895 This option is irrelevant until `org-agenda-diary-file' has been configured
3896 to point to an Org-mode file. When that is the case, the command
3897 `org-agenda-diary-entry' will be bound to the key given here, by default
3898 `i'. In the calendar, `i' normally adds entries to `diary-file'. So
3899 if you want to continue doing this, you need to change this to a different
3900 key."
3901 :group 'org-agenda
3902 :type 'sexp)
3904 (defcustom org-agenda-diary-file 'diary-file
3905 "File to which to add new entries with the `i' key in agenda and calendar.
3906 When this is the symbol `diary-file', the functionality in the Emacs
3907 calendar will be used to add entries to the `diary-file'. But when this
3908 points to a file, `org-agenda-diary-entry' will be used instead."
3909 :group 'org-agenda
3910 :type '(choice
3911 (const :tag "The standard Emacs diary file" diary-file)
3912 (file :tag "Special Org file diary entries")))
3914 (eval-after-load "calendar"
3915 '(progn
3916 (org-defkey calendar-mode-map org-calendar-to-agenda-key
3917 'org-calendar-goto-agenda)
3918 (add-hook 'calendar-mode-hook
3919 (lambda ()
3920 (unless (eq org-agenda-diary-file 'diary-file)
3921 (define-key calendar-mode-map
3922 org-calendar-insert-diary-entry-key
3923 'org-agenda-diary-entry))))))
3925 (defgroup org-latex nil
3926 "Options for embedding LaTeX code into Org-mode."
3927 :tag "Org LaTeX"
3928 :group 'org)
3930 (defcustom org-format-latex-options
3931 '(:foreground default :background default :scale 1.0
3932 :html-foreground "Black" :html-background "Transparent"
3933 :html-scale 1.0 :matchers ("begin" "$1" "$" "$$" "\\(" "\\["))
3934 "Options for creating images from LaTeX fragments.
3935 This is a property list with the following properties:
3936 :foreground the foreground color for images embedded in Emacs, e.g. \"Black\".
3937 `default' means use the foreground of the default face.
3938 `auto' means use the foreground from the text face.
3939 :background the background color, or \"Transparent\".
3940 `default' means use the background of the default face.
3941 `auto' means use the background from the text face.
3942 :scale a scaling factor for the size of the images, to get more pixels
3943 :html-foreground, :html-background, :html-scale
3944 the same numbers for HTML export.
3945 :matchers a list indicating which matchers should be used to
3946 find LaTeX fragments. Valid members of this list are:
3947 \"begin\" find environments
3948 \"$1\" find single characters surrounded by $.$
3949 \"$\" find math expressions surrounded by $...$
3950 \"$$\" find math expressions surrounded by $$....$$
3951 \"\\(\" find math expressions surrounded by \\(...\\)
3952 \"\\=\\[\" find math expressions surrounded by \\=\\[...\\]"
3953 :group 'org-latex
3954 :type 'plist)
3956 (defcustom org-format-latex-signal-error t
3957 "Non-nil means signal an error when image creation of LaTeX snippets fails.
3958 When nil, just push out a message."
3959 :group 'org-latex
3960 :version "24.1"
3961 :type 'boolean)
3963 (defcustom org-latex-to-mathml-jar-file nil
3964 "Value of\"%j\" in `org-latex-to-mathml-convert-command'.
3965 Use this to specify additional executable file say a jar file.
3967 When using MathToWeb as the converter, specify the full-path to
3968 your mathtoweb.jar file."
3969 :group 'org-latex
3970 :version "24.1"
3971 :type '(choice
3972 (const :tag "None" nil)
3973 (file :tag "JAR file" :must-match t)))
3975 (defcustom org-latex-to-mathml-convert-command nil
3976 "Command to convert LaTeX fragments to MathML.
3977 Replace format-specifiers in the command as noted below and use
3978 `shell-command' to convert LaTeX to MathML.
3979 %j: Executable file in fully expanded form as specified by
3980 `org-latex-to-mathml-jar-file'.
3981 %I: Input LaTeX file in fully expanded form
3982 %o: Output MathML file
3983 This command is used by `org-create-math-formula'.
3985 When using MathToWeb as the converter, set this to
3986 \"java -jar %j -unicode -force -df %o %I\"."
3987 :group 'org-latex
3988 :version "24.1"
3989 :type '(choice
3990 (const :tag "None" nil)
3991 (string :tag "\nShell command")))
3993 (defcustom org-latex-create-formula-image-program 'dvipng
3994 "Program to convert LaTeX fragments with.
3996 dvipng Process the LaTeX fragments to dvi file, then convert
3997 dvi files to png files using dvipng.
3998 This will also include processing of non-math environments.
3999 imagemagick Convert the LaTeX fragments to pdf files and use imagemagick
4000 to convert pdf files to png files"
4001 :group 'org-latex
4002 :version "24.1"
4003 :type '(choice
4004 (const :tag "dvipng" dvipng)
4005 (const :tag "imagemagick" imagemagick)))
4007 (defcustom org-latex-preview-ltxpng-directory "ltxpng/"
4008 "Path to store latex preview images.
4009 A relative path here creates many directories relative to the
4010 processed org files paths. An absolute path puts all preview
4011 images at the same place."
4012 :group 'org-latex
4013 :version "24.3"
4014 :type 'string)
4016 (defun org-format-latex-mathml-available-p ()
4017 "Return t if `org-latex-to-mathml-convert-command' is usable."
4018 (save-match-data
4019 (when (and (boundp 'org-latex-to-mathml-convert-command)
4020 org-latex-to-mathml-convert-command)
4021 (let ((executable (car (split-string
4022 org-latex-to-mathml-convert-command))))
4023 (when (executable-find executable)
4024 (if (string-match
4025 "%j" org-latex-to-mathml-convert-command)
4026 (file-readable-p org-latex-to-mathml-jar-file)
4027 t))))))
4029 (defcustom org-format-latex-header "\\documentclass{article}
4030 \\usepackage[usenames]{color}
4031 \[PACKAGES]
4032 \[DEFAULT-PACKAGES]
4033 \\pagestyle{empty} % do not remove
4034 % The settings below are copied from fullpage.sty
4035 \\setlength{\\textwidth}{\\paperwidth}
4036 \\addtolength{\\textwidth}{-3cm}
4037 \\setlength{\\oddsidemargin}{1.5cm}
4038 \\addtolength{\\oddsidemargin}{-2.54cm}
4039 \\setlength{\\evensidemargin}{\\oddsidemargin}
4040 \\setlength{\\textheight}{\\paperheight}
4041 \\addtolength{\\textheight}{-\\headheight}
4042 \\addtolength{\\textheight}{-\\headsep}
4043 \\addtolength{\\textheight}{-\\footskip}
4044 \\addtolength{\\textheight}{-3cm}
4045 \\setlength{\\topmargin}{1.5cm}
4046 \\addtolength{\\topmargin}{-2.54cm}"
4047 "The document header used for processing LaTeX fragments.
4048 It is imperative that this header make sure that no page number
4049 appears on the page. The package defined in the variables
4050 `org-latex-default-packages-alist' and `org-latex-packages-alist'
4051 will either replace the placeholder \"[PACKAGES]\" in this
4052 header, or they will be appended."
4053 :group 'org-latex
4054 :type 'string)
4056 (defun org-set-packages-alist (var val)
4057 "Set the packages alist and make sure it has 3 elements per entry."
4058 (set var (mapcar (lambda (x)
4059 (if (and (consp x) (= (length x) 2))
4060 (list (car x) (nth 1 x) t)
4062 val)))
4064 (defun org-get-packages-alist (var)
4065 "Get the packages alist and make sure it has 3 elements per entry."
4066 (mapcar (lambda (x)
4067 (if (and (consp x) (= (length x) 2))
4068 (list (car x) (nth 1 x) t)
4070 (default-value var)))
4072 (defcustom org-latex-default-packages-alist
4073 '(("AUTO" "inputenc" t)
4074 ("T1" "fontenc" t)
4075 ("" "fixltx2e" nil)
4076 ("" "graphicx" t)
4077 ("" "longtable" nil)
4078 ("" "float" nil)
4079 ("" "wrapfig" nil)
4080 ("" "rotating" nil)
4081 ("normalem" "ulem" t)
4082 ("" "amsmath" t)
4083 ("" "textcomp" t)
4084 ("" "marvosym" t)
4085 ("" "wasysym" t)
4086 ("" "amssymb" t)
4087 ("" "capt-of" nil)
4088 ("" "hyperref" nil)
4089 "\\tolerance=1000")
4090 "Alist of default packages to be inserted in the header.
4092 Change this only if one of the packages here causes an
4093 incompatibility with another package you are using.
4095 The packages in this list are needed by one part or another of
4096 Org mode to function properly:
4098 - inputenc, fontenc: for basic font and character selection
4099 - fixltx2e: Important patches of LaTeX itself
4100 - graphicx: for including images
4101 - longtable: For multipage tables
4102 - float, wrapfig: for figure placement
4103 - rotating: for sideways figures and tables
4104 - ulem: for underline and strike-through
4105 - amsmath: for subscript and superscript and math environments
4106 - textcomp, marvosymb, wasysym, amssymb: for various symbols used
4107 for interpreting the entities in `org-entities'. You can skip
4108 some of these packages if you don't use any of their symbols.
4109 - capt-of: for captions outside of floats
4110 - hyperref: for cross references
4112 Therefore you should not modify this variable unless you know
4113 what you are doing. The one reason to change it anyway is that
4114 you might be loading some other package that conflicts with one
4115 of the default packages. Each element is either a cell or
4116 a string.
4118 A cell is of the format:
4120 \( \"options\" \"package\" SNIPPET-FLAG).
4122 If SNIPPET-FLAG is non-nil, the package also needs to be included
4123 when compiling LaTeX snippets into images for inclusion into
4124 non-LaTeX output.
4126 A string will be inserted as-is in the header of the document."
4127 :group 'org-latex
4128 :group 'org-export-latex
4129 :set 'org-set-packages-alist
4130 :get 'org-get-packages-alist
4131 :version "24.1"
4132 :type '(repeat
4133 (choice
4134 (list :tag "options/package pair"
4135 (string :tag "options")
4136 (string :tag "package")
4137 (boolean :tag "Snippet"))
4138 (string :tag "A line of LaTeX"))))
4140 (defcustom org-latex-packages-alist nil
4141 "Alist of packages to be inserted in every LaTeX header.
4143 These will be inserted after `org-latex-default-packages-alist'.
4144 Each element is either a cell or a string.
4146 A cell is of the format:
4148 \(\"options\" \"package\" SNIPPET-FLAG)
4150 SNIPPET-FLAG, when non-nil, indicates that this package is also
4151 needed when turning LaTeX snippets into images for inclusion into
4152 non-LaTeX output.
4154 A string will be inserted as-is in the header of the document.
4156 Make sure that you only list packages here which:
4158 - you want in every file;
4159 - do not conflict with the setup in `org-format-latex-header';
4160 - do not conflict with the default packages in
4161 `org-latex-default-packages-alist'."
4162 :group 'org-latex
4163 :group 'org-export-latex
4164 :set 'org-set-packages-alist
4165 :get 'org-get-packages-alist
4166 :type '(repeat
4167 (choice
4168 (list :tag "options/package pair"
4169 (string :tag "options")
4170 (string :tag "package")
4171 (boolean :tag "Snippet"))
4172 (string :tag "A line of LaTeX"))))
4174 (defgroup org-appearance nil
4175 "Settings for Org-mode appearance."
4176 :tag "Org Appearance"
4177 :group 'org)
4179 (defcustom org-level-color-stars-only nil
4180 "Non-nil means fontify only the stars in each headline.
4181 When nil, the entire headline is fontified.
4182 Changing it requires restart of `font-lock-mode' to become effective
4183 also in regions already fontified."
4184 :group 'org-appearance
4185 :type 'boolean)
4187 (defcustom org-hide-leading-stars nil
4188 "Non-nil means hide the first N-1 stars in a headline.
4189 This works by using the face `org-hide' for these stars. This
4190 face is white for a light background, and black for a dark
4191 background. You may have to customize the face `org-hide' to
4192 make this work.
4193 Changing it requires restart of `font-lock-mode' to become effective
4194 also in regions already fontified.
4195 You may also set this on a per-file basis by adding one of the following
4196 lines to the buffer:
4198 #+STARTUP: hidestars
4199 #+STARTUP: showstars"
4200 :group 'org-appearance
4201 :type 'boolean)
4203 (defcustom org-hidden-keywords nil
4204 "List of symbols corresponding to keywords to be hidden the org buffer.
4205 For example, a value '(title) for this list will make the document's title
4206 appear in the buffer without the initial #+TITLE: keyword."
4207 :group 'org-appearance
4208 :version "24.1"
4209 :type '(set (const :tag "#+AUTHOR" author)
4210 (const :tag "#+DATE" date)
4211 (const :tag "#+EMAIL" email)
4212 (const :tag "#+TITLE" title)))
4214 (defcustom org-custom-properties nil
4215 "List of properties (as strings) with a special meaning.
4216 The default use of these custom properties is to let the user
4217 hide them with `org-toggle-custom-properties-visibility'."
4218 :group 'org-properties
4219 :group 'org-appearance
4220 :version "24.3"
4221 :type '(repeat (string :tag "Property Name")))
4223 (defcustom org-fontify-done-headline nil
4224 "Non-nil means change the face of a headline if it is marked DONE.
4225 Normally, only the TODO/DONE keyword indicates the state of a headline.
4226 When this is non-nil, the headline after the keyword is set to the
4227 `org-headline-done' as an additional indication."
4228 :group 'org-appearance
4229 :type 'boolean)
4231 (defcustom org-fontify-emphasized-text t
4232 "Non-nil means fontify *bold*, /italic/ and _underlined_ text.
4233 Changing this variable requires a restart of Emacs to take effect."
4234 :group 'org-appearance
4235 :type 'boolean)
4237 (defcustom org-fontify-whole-heading-line nil
4238 "Non-nil means fontify the whole line for headings.
4239 This is useful when setting a background color for the
4240 org-level-* faces."
4241 :group 'org-appearance
4242 :type 'boolean)
4244 (defcustom org-highlight-latex-and-related nil
4245 "Non-nil means highlight LaTeX related syntax in the buffer.
4246 When non nil, the value should be a list containing any of the
4247 following symbols:
4248 `latex' Highlight LaTeX snippets and environments.
4249 `script' Highlight subscript and superscript.
4250 `entities' Highlight entities."
4251 :group 'org-appearance
4252 :version "24.4"
4253 :package-version '(Org . "8.0")
4254 :type '(choice
4255 (const :tag "No highlighting" nil)
4256 (set :greedy t :tag "Highlight"
4257 (const :tag "LaTeX snippets and environments" latex)
4258 (const :tag "Subscript and superscript" script)
4259 (const :tag "Entities" entities))))
4261 (defcustom org-hide-emphasis-markers nil
4262 "Non-nil mean font-lock should hide the emphasis marker characters."
4263 :group 'org-appearance
4264 :type 'boolean)
4266 (defcustom org-hide-macro-markers nil
4267 "Non-nil mean font-lock should hide the brackets marking macro calls."
4268 :group 'org-appearance
4269 :type 'boolean)
4271 (defcustom org-pretty-entities nil
4272 "Non-nil means show entities as UTF8 characters.
4273 When nil, the \\name form remains in the buffer."
4274 :group 'org-appearance
4275 :version "24.1"
4276 :type 'boolean)
4278 (defcustom org-pretty-entities-include-sub-superscripts t
4279 "Non-nil means, pretty entity display includes formatting sub/superscripts."
4280 :group 'org-appearance
4281 :version "24.1"
4282 :type 'boolean)
4284 (defvar org-emph-re nil
4285 "Regular expression for matching emphasis.
4286 After a match, the match groups contain these elements:
4287 0 The match of the full regular expression, including the characters
4288 before and after the proper match
4289 1 The character before the proper match, or empty at beginning of line
4290 2 The proper match, including the leading and trailing markers
4291 3 The leading marker like * or /, indicating the type of highlighting
4292 4 The text between the emphasis markers, not including the markers
4293 5 The character after the match, empty at the end of a line")
4294 (defvar org-verbatim-re nil
4295 "Regular expression for matching verbatim text.")
4296 (defvar org-emphasis-regexp-components) ; defined just below
4297 (defvar org-emphasis-alist) ; defined just below
4298 (defun org-set-emph-re (var val)
4299 "Set variable and compute the emphasis regular expression."
4300 (set var val)
4301 (when (and (boundp 'org-emphasis-alist)
4302 (boundp 'org-emphasis-regexp-components)
4303 org-emphasis-alist org-emphasis-regexp-components)
4304 (let* ((e org-emphasis-regexp-components)
4305 (pre (car e))
4306 (post (nth 1 e))
4307 (border (nth 2 e))
4308 (body (nth 3 e))
4309 (nl (nth 4 e))
4310 (body1 (concat body "*?"))
4311 (markers (mapconcat 'car org-emphasis-alist ""))
4312 (vmarkers (mapconcat
4313 (lambda (x) (if (eq (nth 2 x) 'verbatim) (car x) ""))
4314 org-emphasis-alist "")))
4315 ;; make sure special characters appear at the right position in the class
4316 (if (string-match "\\^" markers)
4317 (setq markers (concat (replace-match "" t t markers) "^")))
4318 (if (string-match "-" markers)
4319 (setq markers (concat (replace-match "" t t markers) "-")))
4320 (if (string-match "\\^" vmarkers)
4321 (setq vmarkers (concat (replace-match "" t t vmarkers) "^")))
4322 (if (string-match "-" vmarkers)
4323 (setq vmarkers (concat (replace-match "" t t vmarkers) "-")))
4324 (if (> nl 0)
4325 (setq body1 (concat body1 "\\(?:\n" body "*?\\)\\{0,"
4326 (int-to-string nl) "\\}")))
4327 ;; Make the regexp
4328 (setq org-emph-re
4329 (concat "\\([" pre "]\\|^\\)"
4330 "\\("
4331 "\\([" markers "]\\)"
4332 "\\("
4333 "[^" border "]\\|"
4334 "[^" border "]"
4335 body1
4336 "[^" border "]"
4337 "\\)"
4338 "\\3\\)"
4339 "\\([" post "]\\|$\\)"))
4340 (setq org-verbatim-re
4341 (concat "\\([" pre "]\\|^\\)"
4342 "\\("
4343 "\\([" vmarkers "]\\)"
4344 "\\("
4345 "[^" border "]\\|"
4346 "[^" border "]"
4347 body1
4348 "[^" border "]"
4349 "\\)"
4350 "\\3\\)"
4351 "\\([" post "]\\|$\\)")))))
4353 ;; This used to be a defcustom (Org <8.0) but allowing the users to
4354 ;; set this option proved cumbersome. See this message/thread:
4355 ;; http://article.gmane.org/gmane.emacs.orgmode/68681
4356 (defvar org-emphasis-regexp-components
4357 '(" \t('\"{" "- \t.,:!?;'\")}\\[" " \t\r\n,\"'" "." 1)
4358 "Components used to build the regular expression for emphasis.
4359 This is a list with five entries. Terminology: In an emphasis string
4360 like \" *strong word* \", we call the initial space PREMATCH, the final
4361 space POSTMATCH, the stars MARKERS, \"s\" and \"d\" are BORDER characters
4362 and \"trong wor\" is the body. The different components in this variable
4363 specify what is allowed/forbidden in each part:
4365 pre Chars allowed as prematch. Beginning of line will be allowed too.
4366 post Chars allowed as postmatch. End of line will be allowed too.
4367 border The chars *forbidden* as border characters.
4368 body-regexp A regexp like \".\" to match a body character. Don't use
4369 non-shy groups here, and don't allow newline here.
4370 newline The maximum number of newlines allowed in an emphasis exp.
4372 You need to reload Org or to restart Emacs after customizing this.")
4374 (defcustom org-emphasis-alist
4375 `(("*" bold)
4376 ("/" italic)
4377 ("_" underline)
4378 ("=" org-verbatim verbatim)
4379 ("~" org-code verbatim)
4380 ("+" ,(if (featurep 'xemacs) 'org-table '(:strike-through t))))
4381 "Alist of characters and faces to emphasize text.
4382 Text starting and ending with a special character will be emphasized,
4383 for example *bold*, _underlined_ and /italic/. This variable sets the
4384 marker characters and the face to be used by font-lock for highlighting
4385 in Org-mode Emacs buffers.
4387 You need to reload Org or to restart Emacs after customizing this."
4388 :group 'org-appearance
4389 :set 'org-set-emph-re
4390 :version "24.4"
4391 :package-version '(Org . "8.0")
4392 :type '(repeat
4393 (list
4394 (string :tag "Marker character")
4395 (choice
4396 (face :tag "Font-lock-face")
4397 (plist :tag "Face property list"))
4398 (option (const verbatim)))))
4400 (defvar org-protecting-blocks
4401 '("src" "example" "latex" "ascii" "html" "ditaa" "dot" "r" "R")
4402 "Blocks that contain text that is quoted, i.e. not processed as Org syntax.
4403 This is needed for font-lock setup.")
4405 ;;; Miscellaneous options
4407 (defgroup org-completion nil
4408 "Completion in Org-mode."
4409 :tag "Org Completion"
4410 :group 'org)
4412 (defcustom org-completion-use-ido nil
4413 "Non-nil means use ido completion wherever possible.
4414 Note that `ido-mode' must be active for this variable to be relevant.
4415 If you decide to turn this variable on, you might well want to turn off
4416 `org-outline-path-complete-in-steps'.
4417 See also `org-completion-use-iswitchb'."
4418 :group 'org-completion
4419 :type 'boolean)
4421 (defcustom org-completion-use-iswitchb nil
4422 "Non-nil means use iswitchb completion wherever possible.
4423 Note that `iswitchb-mode' must be active for this variable to be relevant.
4424 If you decide to turn this variable on, you might well want to turn off
4425 `org-outline-path-complete-in-steps'.
4426 Note that this variable has only an effect if `org-completion-use-ido' is nil."
4427 :group 'org-completion
4428 :type 'boolean)
4430 (defcustom org-completion-fallback-command 'hippie-expand
4431 "The expansion command called by \\[pcomplete] in normal context.
4432 Normal means, no org-mode-specific context."
4433 :group 'org-completion
4434 :type 'function)
4436 ;;; Functions and variables from their packages
4437 ;; Declared here to avoid compiler warnings
4439 ;; XEmacs only
4440 (defvar outline-mode-menu-heading)
4441 (defvar outline-mode-menu-show)
4442 (defvar outline-mode-menu-hide)
4443 (defvar zmacs-regions) ; XEmacs regions
4445 ;; Emacs only
4446 (defvar mark-active)
4448 ;; Various packages
4449 (declare-function calendar-absolute-from-iso "cal-iso" (date))
4450 (declare-function calendar-forward-day "cal-move" (arg))
4451 (declare-function calendar-goto-date "cal-move" (date))
4452 (declare-function calendar-goto-today "cal-move" ())
4453 (declare-function calendar-iso-from-absolute "cal-iso" (date))
4454 (defvar calc-embedded-close-formula)
4455 (defvar calc-embedded-open-formula)
4456 (declare-function cdlatex-tab "ext:cdlatex" ())
4457 (declare-function cdlatex-compute-tables "ext:cdlatex" ())
4458 (declare-function dired-get-filename "dired" (&optional localp no-error-if-not-filep))
4459 (defvar font-lock-unfontify-region-function)
4460 (declare-function iswitchb-read-buffer "iswitchb"
4461 (prompt &optional default require-match start matches-set))
4462 (defvar iswitchb-temp-buflist)
4463 (declare-function org-gnus-follow-link "org-gnus" (&optional group article))
4464 (defvar org-agenda-tags-todo-honor-ignore-options)
4465 (declare-function org-agenda-skip "org-agenda" ())
4466 (declare-function
4467 org-agenda-format-item "org-agenda"
4468 (extra txt &optional level category tags dotime noprefix remove-re habitp))
4469 (declare-function org-agenda-new-marker "org-agenda" (&optional pos))
4470 (declare-function org-agenda-change-all-lines "org-agenda"
4471 (newhead hdmarker &optional fixface just-this))
4472 (declare-function org-agenda-set-restriction-lock "org-agenda" (&optional type))
4473 (declare-function org-agenda-maybe-redo "org-agenda" ())
4474 (declare-function org-agenda-save-markers-for-cut-and-paste "org-agenda"
4475 (beg end))
4476 (declare-function org-agenda-copy-local-variable "org-agenda" (var))
4477 (declare-function org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
4478 "org-agenda" (&optional end))
4479 (declare-function org-inlinetask-remove-END-maybe "org-inlinetask" ())
4480 (declare-function org-inlinetask-in-task-p "org-inlinetask" ())
4481 (declare-function org-inlinetask-goto-beginning "org-inlinetask" ())
4482 (declare-function org-inlinetask-goto-end "org-inlinetask" ())
4483 (declare-function org-indent-mode "org-indent" (&optional arg))
4484 (declare-function parse-time-string "parse-time" (string))
4485 (declare-function org-attach-reveal "org-attach" (&optional if-exists))
4486 (declare-function orgtbl-send-table "org-table" (&optional maybe))
4487 (defvar remember-data-file)
4488 (defvar texmathp-why)
4489 (declare-function speedbar-line-directory "speedbar" (&optional depth))
4490 (declare-function table--at-cell-p "table" (position &optional object at-column))
4491 (declare-function calc-eval "calc" (str &optional separator &rest args))
4493 ;;;###autoload
4494 (defun turn-on-orgtbl ()
4495 "Unconditionally turn on `orgtbl-mode'."
4496 (require 'org-table)
4497 (orgtbl-mode 1))
4499 (defun org-at-table-p (&optional table-type)
4500 "Return t if the cursor is inside an org-type table.
4501 If TABLE-TYPE is non-nil, also check for table.el-type tables."
4502 (if org-enable-table-editor
4503 (save-excursion
4504 (beginning-of-line 1)
4505 (looking-at (if table-type org-table-any-line-regexp
4506 org-table-line-regexp)))
4507 nil))
4508 (defsubst org-table-p () (org-at-table-p))
4510 (defun org-at-table.el-p ()
4511 "Return t if and only if we are at a table.el table."
4512 (and (org-at-table-p 'any)
4513 (save-excursion
4514 (goto-char (org-table-begin 'any))
4515 (looking-at org-table1-hline-regexp))))
4517 (defun org-table-recognize-table.el ()
4518 "If there is a table.el table nearby, recognize it and move into it."
4519 (if org-table-tab-recognizes-table.el
4520 (if (org-at-table.el-p)
4521 (progn
4522 (beginning-of-line 1)
4523 (if (looking-at org-table-dataline-regexp)
4525 (if (looking-at org-table1-hline-regexp)
4526 (progn
4527 (beginning-of-line 2)
4528 (if (looking-at org-table-any-border-regexp)
4529 (beginning-of-line -1)))))
4530 (if (re-search-forward "|" (org-table-end t) t)
4531 (progn
4532 (require 'table)
4533 (if (table--at-cell-p (point))
4535 (message "recognizing table.el table...")
4536 (table-recognize-table)
4537 (message "recognizing table.el table...done")))
4538 (error "This should not happen"))
4540 nil)
4541 nil))
4543 (defun org-at-table-hline-p ()
4544 "Return t if the cursor is inside a hline in a table."
4545 (if org-enable-table-editor
4546 (save-excursion
4547 (beginning-of-line 1)
4548 (looking-at org-table-hline-regexp))
4549 nil))
4551 (defun org-table-map-tables (function &optional quietly)
4552 "Apply FUNCTION to the start of all tables in the buffer."
4553 (save-excursion
4554 (save-restriction
4555 (widen)
4556 (goto-char (point-min))
4557 (while (re-search-forward org-table-any-line-regexp nil t)
4558 (unless quietly
4559 (message "Mapping tables: %d%%" (/ (* 100.0 (point)) (buffer-size))))
4560 (beginning-of-line 1)
4561 (when (and (looking-at org-table-line-regexp)
4562 ;; Exclude tables in src/example/verbatim/clocktable blocks
4563 (not (org-in-block-p '("src" "example" "verbatim" "clocktable"))))
4564 (save-excursion (funcall function))
4565 (or (looking-at org-table-line-regexp)
4566 (forward-char 1)))
4567 (re-search-forward org-table-any-border-regexp nil 1))))
4568 (unless quietly (message "Mapping tables: done")))
4570 (declare-function org-clock-save-markers-for-cut-and-paste "org-clock" (beg end))
4571 (declare-function org-clock-update-mode-line "org-clock" ())
4572 (declare-function org-resolve-clocks "org-clock"
4573 (&optional also-non-dangling-p prompt last-valid))
4575 (defun org-at-TBLFM-p (&optional pos)
4576 "Return t when point (or POS) is in #+TBLFM line."
4577 (save-excursion
4578 (let ((pos pos)))
4579 (goto-char (or pos (point)))
4580 (beginning-of-line 1)
4581 (looking-at org-TBLFM-regexp)))
4583 (defvar org-clock-start-time)
4584 (defvar org-clock-marker (make-marker)
4585 "Marker recording the last clock-in.")
4586 (defvar org-clock-hd-marker (make-marker)
4587 "Marker recording the last clock-in, but the headline position.")
4588 (defvar org-clock-heading ""
4589 "The heading of the current clock entry.")
4590 (defun org-clock-is-active ()
4591 "Return the buffer where the clock is currently running.
4592 Return nil if no clock is running."
4593 (marker-buffer org-clock-marker))
4595 (defun org-check-running-clock ()
4596 "Check if the current buffer contains the running clock.
4597 If yes, offer to stop it and to save the buffer with the changes."
4598 (when (and (equal (marker-buffer org-clock-marker) (current-buffer))
4599 (y-or-n-p (format "Clock-out in buffer %s before killing it? "
4600 (buffer-name))))
4601 (org-clock-out)
4602 (when (y-or-n-p "Save changed buffer?")
4603 (save-buffer))))
4605 (defun org-clocktable-try-shift (dir n)
4606 "Check if this line starts a clock table, if yes, shift the time block."
4607 (when (org-match-line "^[ \t]*#\\+BEGIN:[ \t]+clocktable\\>")
4608 (org-clocktable-shift dir n)))
4610 ;;;###autoload
4611 (defun org-clock-persistence-insinuate ()
4612 "Set up hooks for clock persistence."
4613 (require 'org-clock)
4614 (add-hook 'org-mode-hook 'org-clock-load)
4615 (add-hook 'kill-emacs-hook 'org-clock-save))
4617 (defgroup org-archive nil
4618 "Options concerning archiving in Org-mode."
4619 :tag "Org Archive"
4620 :group 'org-structure)
4622 (defcustom org-archive-location "%s_archive::"
4623 "The location where subtrees should be archived.
4625 The value of this variable is a string, consisting of two parts,
4626 separated by a double-colon. The first part is a filename and
4627 the second part is a headline.
4629 When the filename is omitted, archiving happens in the same file.
4630 %s in the filename will be replaced by the current file
4631 name (without the directory part). Archiving to a different file
4632 is useful to keep archived entries from contributing to the
4633 Org-mode Agenda.
4635 The archived entries will be filed as subtrees of the specified
4636 headline. When the headline is omitted, the subtrees are simply
4637 filed away at the end of the file, as top-level entries. Also in
4638 the heading you can use %s to represent the file name, this can be
4639 useful when using the same archive for a number of different files.
4641 Here are a few examples:
4642 \"%s_archive::\"
4643 If the current file is Projects.org, archive in file
4644 Projects.org_archive, as top-level trees. This is the default.
4646 \"::* Archived Tasks\"
4647 Archive in the current file, under the top-level headline
4648 \"* Archived Tasks\".
4650 \"~/org/archive.org::\"
4651 Archive in file ~/org/archive.org (absolute path), as top-level trees.
4653 \"~/org/archive.org::* From %s\"
4654 Archive in file ~/org/archive.org (absolute path), under headlines
4655 \"From FILENAME\" where file name is the current file name.
4657 \"~/org/datetree.org::datetree/* Finished Tasks\"
4658 The \"datetree/\" string is special, signifying to archive
4659 items to the datetree. Items are placed in either the CLOSED
4660 date of the item, or the current date if there is no CLOSED date.
4661 The heading will be a subentry to the current date. There doesn't
4662 need to be a heading, but there always needs to be a slash after
4663 datetree. For example, to store archived items directly in the
4664 datetree, use \"~/org/datetree.org::datetree/\".
4666 \"basement::** Finished Tasks\"
4667 Archive in file ./basement (relative path), as level 3 trees
4668 below the level 2 heading \"** Finished Tasks\".
4670 You may set this option on a per-file basis by adding to the buffer a
4671 line like
4673 #+ARCHIVE: basement::** Finished Tasks
4675 You may also define it locally for a subtree by setting an ARCHIVE property
4676 in the entry. If such a property is found in an entry, or anywhere up
4677 the hierarchy, it will be used."
4678 :group 'org-archive
4679 :type 'string)
4681 (defcustom org-agenda-skip-archived-trees t
4682 "Non-nil means the agenda will skip any items located in archived trees.
4683 An archived tree is a tree marked with the tag ARCHIVE. The use of this
4684 variable is no longer recommended, you should leave it at the value t.
4685 Instead, use the key `v' to cycle the archives-mode in the agenda."
4686 :group 'org-archive
4687 :group 'org-agenda-skip
4688 :type 'boolean)
4690 (defcustom org-columns-skip-archived-trees t
4691 "Non-nil means ignore archived trees when creating column view."
4692 :group 'org-archive
4693 :group 'org-properties
4694 :type 'boolean)
4696 (defcustom org-cycle-open-archived-trees nil
4697 "Non-nil means `org-cycle' will open archived trees.
4698 An archived tree is a tree marked with the tag ARCHIVE.
4699 When nil, archived trees will stay folded. You can still open them with
4700 normal outline commands like `show-all', but not with the cycling commands."
4701 :group 'org-archive
4702 :group 'org-cycle
4703 :type 'boolean)
4705 (defcustom org-sparse-tree-open-archived-trees nil
4706 "Non-nil means sparse tree construction shows matches in archived trees.
4707 When nil, matches in these trees are highlighted, but the trees are kept in
4708 collapsed state."
4709 :group 'org-archive
4710 :group 'org-sparse-trees
4711 :type 'boolean)
4713 (defcustom org-sparse-tree-default-date-type 'scheduled-or-deadline
4714 "The default date type when building a sparse tree.
4715 When this is nil, a date is a scheduled or a deadline timestamp.
4716 Otherwise, these types are allowed:
4718 all: all timestamps
4719 active: only active timestamps (<...>)
4720 inactive: only inactive timestamps (<...)
4721 scheduled: only scheduled timestamps
4722 deadline: only deadline timestamps"
4723 :type '(choice (const :tag "Scheduled or deadline" scheduled-or-deadline)
4724 (const :tag "All timestamps" all)
4725 (const :tag "Only active timestamps" active)
4726 (const :tag "Only inactive timestamps" inactive)
4727 (const :tag "Only scheduled timestamps" scheduled)
4728 (const :tag "Only deadline timestamps" deadline)
4729 (const :tag "Only closed timestamps" closed))
4730 :version "24.3"
4731 :group 'org-sparse-trees)
4733 (defun org-cycle-hide-archived-subtrees (state)
4734 "Re-hide all archived subtrees after a visibility state change."
4735 (when (and (not org-cycle-open-archived-trees)
4736 (not (memq state '(overview folded))))
4737 (save-excursion
4738 (let* ((globalp (memq state '(contents all)))
4739 (beg (if globalp (point-min) (point)))
4740 (end (if globalp (point-max) (org-end-of-subtree t))))
4741 (org-hide-archived-subtrees beg end)
4742 (goto-char beg)
4743 (if (looking-at (concat ".*:" org-archive-tag ":"))
4744 (message "%s" (substitute-command-keys
4745 "Subtree is archived and stays closed. Use \\[org-force-cycle-archived] to cycle it anyway.")))))))
4747 (defun org-force-cycle-archived ()
4748 "Cycle subtree even if it is archived."
4749 (interactive)
4750 (setq this-command 'org-cycle)
4751 (let ((org-cycle-open-archived-trees t))
4752 (call-interactively 'org-cycle)))
4754 (defun org-hide-archived-subtrees (beg end)
4755 "Re-hide all archived subtrees after a visibility state change."
4756 (save-excursion
4757 (let* ((re (concat ":" org-archive-tag ":")))
4758 (goto-char beg)
4759 (while (re-search-forward re end t)
4760 (when (org-at-heading-p)
4761 (org-flag-subtree t)
4762 (org-end-of-subtree t))))))
4764 (declare-function outline-end-of-heading "outline" ())
4765 (declare-function outline-flag-region "outline" (from to flag))
4766 (defun org-flag-subtree (flag)
4767 (save-excursion
4768 (org-back-to-heading t)
4769 (outline-end-of-heading)
4770 (outline-flag-region (point)
4771 (progn (org-end-of-subtree t) (point))
4772 flag)))
4774 (defalias 'org-advertized-archive-subtree 'org-archive-subtree)
4776 ;; Declare Column View Code
4778 (declare-function org-columns-number-to-string "org-colview" (n fmt &optional printf))
4779 (declare-function org-columns-get-format-and-top-level "org-colview" ())
4780 (declare-function org-columns-compute "org-colview" (property))
4782 ;; Declare ID code
4784 (declare-function org-id-store-link "org-id")
4785 (declare-function org-id-locations-load "org-id")
4786 (declare-function org-id-locations-save "org-id")
4787 (defvar org-id-track-globally)
4789 ;;; Variables for pre-computed regular expressions, all buffer local
4791 (defvar org-todo-regexp nil
4792 "Matches any of the TODO state keywords.")
4793 (make-variable-buffer-local 'org-todo-regexp)
4794 (defvar org-not-done-regexp nil
4795 "Matches any of the TODO state keywords except the last one.")
4796 (make-variable-buffer-local 'org-not-done-regexp)
4797 (defvar org-not-done-heading-regexp nil
4798 "Matches a TODO headline that is not done.")
4799 (make-variable-buffer-local 'org-not-done-regexp)
4800 (defvar org-todo-line-regexp nil
4801 "Matches a headline and puts TODO state into group 2 if present.")
4802 (make-variable-buffer-local 'org-todo-line-regexp)
4803 (defvar org-complex-heading-regexp nil
4804 "Matches a headline and puts everything into groups:
4805 group 1: the stars
4806 group 2: The todo keyword, maybe
4807 group 3: Priority cookie
4808 group 4: True headline
4809 group 5: Tags")
4810 (make-variable-buffer-local 'org-complex-heading-regexp)
4811 (defvar org-complex-heading-regexp-format nil
4812 "Printf format to make regexp to match an exact headline.
4813 This regexp will match the headline of any node which has the
4814 exact headline text that is put into the format, but may have any
4815 TODO state, priority and tags.")
4816 (make-variable-buffer-local 'org-complex-heading-regexp-format)
4817 (defvar org-todo-line-tags-regexp nil
4818 "Matches a headline and puts TODO state into group 2 if present.
4819 Also put tags into group 4 if tags are present.")
4820 (make-variable-buffer-local 'org-todo-line-tags-regexp)
4822 (defconst org-plain-time-of-day-regexp
4823 (concat
4824 "\\(\\<[012]?[0-9]"
4825 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4826 "\\(--?"
4827 "\\(\\<[012]?[0-9]"
4828 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4829 "\\)?")
4830 "Regular expression to match a plain time or time range.
4831 Examples: 11:45 or 8am-13:15 or 2:45-2:45pm. After a match, the following
4832 groups carry important information:
4833 0 the full match
4834 1 the first time, range or not
4835 8 the second time, if it is a range.")
4837 (defconst org-plain-time-extension-regexp
4838 (concat
4839 "\\(\\<[012]?[0-9]"
4840 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4841 "\\+\\([0-9]+\\)\\(:\\([0-5][0-9]\\)\\)?")
4842 "Regular expression to match a time range like 13:30+2:10 = 13:30-15:40.
4843 Examples: 11:45 or 8am-13:15 or 2:45-2:45pm. After a match, the following
4844 groups carry important information:
4845 0 the full match
4846 7 hours of duration
4847 9 minutes of duration")
4849 (defconst org-stamp-time-of-day-regexp
4850 (concat
4851 "<\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} +\\sw+ +\\)"
4852 "\\([012][0-9]:[0-5][0-9]\\(-\\([012][0-9]:[0-5][0-9]\\)\\)?[^\n\r>]*?\\)>"
4853 "\\(--?"
4854 "<\\1\\([012][0-9]:[0-5][0-9]\\)>\\)?")
4855 "Regular expression to match a timestamp time or time range.
4856 After a match, the following groups carry important information:
4857 0 the full match
4858 1 date plus weekday, for back referencing to make sure both times are on the same day
4859 2 the first time, range or not
4860 4 the second time, if it is a range.")
4862 (defconst org-startup-options
4863 '(("fold" org-startup-folded t)
4864 ("overview" org-startup-folded t)
4865 ("nofold" org-startup-folded nil)
4866 ("showall" org-startup-folded nil)
4867 ("showeverything" org-startup-folded showeverything)
4868 ("content" org-startup-folded content)
4869 ("indent" org-startup-indented t)
4870 ("noindent" org-startup-indented nil)
4871 ("hidestars" org-hide-leading-stars t)
4872 ("showstars" org-hide-leading-stars nil)
4873 ("odd" org-odd-levels-only t)
4874 ("oddeven" org-odd-levels-only nil)
4875 ("align" org-startup-align-all-tables t)
4876 ("noalign" org-startup-align-all-tables nil)
4877 ("inlineimages" org-startup-with-inline-images t)
4878 ("noinlineimages" org-startup-with-inline-images nil)
4879 ("latexpreview" org-startup-with-latex-preview t)
4880 ("nolatexpreview" org-startup-with-latex-preview nil)
4881 ("customtime" org-display-custom-times t)
4882 ("logdone" org-log-done time)
4883 ("lognotedone" org-log-done note)
4884 ("nologdone" org-log-done nil)
4885 ("lognoteclock-out" org-log-note-clock-out t)
4886 ("nolognoteclock-out" org-log-note-clock-out nil)
4887 ("logrepeat" org-log-repeat state)
4888 ("lognoterepeat" org-log-repeat note)
4889 ("logdrawer" org-log-into-drawer t)
4890 ("nologdrawer" org-log-into-drawer nil)
4891 ("logstatesreversed" org-log-states-order-reversed t)
4892 ("nologstatesreversed" org-log-states-order-reversed nil)
4893 ("nologrepeat" org-log-repeat nil)
4894 ("logreschedule" org-log-reschedule time)
4895 ("lognotereschedule" org-log-reschedule note)
4896 ("nologreschedule" org-log-reschedule nil)
4897 ("logredeadline" org-log-redeadline time)
4898 ("lognoteredeadline" org-log-redeadline note)
4899 ("nologredeadline" org-log-redeadline nil)
4900 ("logrefile" org-log-refile time)
4901 ("lognoterefile" org-log-refile note)
4902 ("nologrefile" org-log-refile nil)
4903 ("fninline" org-footnote-define-inline t)
4904 ("nofninline" org-footnote-define-inline nil)
4905 ("fnlocal" org-footnote-section nil)
4906 ("fnauto" org-footnote-auto-label t)
4907 ("fnprompt" org-footnote-auto-label nil)
4908 ("fnconfirm" org-footnote-auto-label confirm)
4909 ("fnplain" org-footnote-auto-label plain)
4910 ("fnadjust" org-footnote-auto-adjust t)
4911 ("nofnadjust" org-footnote-auto-adjust nil)
4912 ("constcgs" constants-unit-system cgs)
4913 ("constSI" constants-unit-system SI)
4914 ("noptag" org-tag-persistent-alist nil)
4915 ("hideblocks" org-hide-block-startup t)
4916 ("nohideblocks" org-hide-block-startup nil)
4917 ("beamer" org-startup-with-beamer-mode t)
4918 ("entitiespretty" org-pretty-entities t)
4919 ("entitiesplain" org-pretty-entities nil))
4920 "Variable associated with STARTUP options for org-mode.
4921 Each element is a list of three items: the startup options (as written
4922 in the #+STARTUP line), the corresponding variable, and the value to set
4923 this variable to if the option is found. An optional forth element PUSH
4924 means to push this value onto the list in the variable.")
4926 (defcustom org-group-tags t
4927 "When non-nil (the default), use group tags.
4928 This can be turned on/off through `org-toggle-tags-groups'."
4929 :group 'org-tags
4930 :group 'org-startup
4931 :type 'boolean)
4933 (defvar org-inhibit-startup nil) ; Dynamically-scoped param.
4935 (defun org-toggle-tags-groups ()
4936 "Toggle support for group tags.
4937 Support for group tags is controlled by the option
4938 `org-group-tags', which is non-nil by default."
4939 (interactive)
4940 (setq org-group-tags (not org-group-tags))
4941 (cond ((and (derived-mode-p 'org-agenda-mode)
4942 org-group-tags)
4943 (org-agenda-redo))
4944 ((derived-mode-p 'org-mode)
4945 (let ((org-inhibit-startup t)) (org-mode))))
4946 (message "Groups tags support has been turned %s"
4947 (if org-group-tags "on" "off")))
4949 (defun org-set-regexps-and-options (&optional tags-only)
4950 "Precompute regular expressions used in the current buffer.
4951 When optional argument TAGS-ONLY is non-nil, only compute tags
4952 related expressions."
4953 (when (derived-mode-p 'org-mode)
4954 (let ((alist (org--setup-collect-keywords
4955 (org-make-options-regexp
4956 (append '("FILETAGS" "TAGS" "SETUPFILE")
4957 (and (not tags-only)
4958 '("ARCHIVE" "CATEGORY" "COLUMNS" "CONSTANTS"
4959 "LINK" "PRIORITIES" "PROPERTY" "SEQ_TODO"
4960 "STARTUP" "TODO" "TYP_TODO")))))))
4961 (org--setup-process-tags
4962 (cdr (assq 'tags alist)) (cdr (assq 'filetags alist)))
4963 (unless tags-only
4964 ;; File properties.
4965 (org-set-local 'org-file-properties (cdr (assq 'property alist)))
4966 ;; Archive location.
4967 (let ((archive (cdr (assq 'archive alist))))
4968 (when archive (org-set-local 'org-archive-location archive)))
4969 ;; Category.
4970 (let ((cat (org-string-nw-p (cdr (assq 'category alist)))))
4971 (when cat
4972 (org-set-local 'org-category (intern cat))
4973 (org-set-local 'org-file-properties
4974 (org--update-property-plist
4975 "CATEGORY" cat org-file-properties))))
4976 ;; Columns.
4977 (let ((column (cdr (assq 'columns alist))))
4978 (when column (org-set-local 'org-columns-default-format column)))
4979 ;; Constants.
4980 (setq org-table-formula-constants-local (cdr (assq 'constants alist)))
4981 ;; Link abbreviations.
4982 (let ((links (cdr (assq 'link alist))))
4983 (when links (setq org-link-abbrev-alist-local (nreverse links))))
4984 ;; Priorities.
4985 (let ((priorities (cdr (assq 'priorities alist))))
4986 (when priorities
4987 (org-set-local 'org-highest-priority (nth 0 priorities))
4988 (org-set-local 'org-lowest-priority (nth 1 priorities))
4989 (org-set-local 'org-default-priority (nth 2 priorities))))
4990 ;; Startup options.
4991 (let ((startup (cdr (assq 'startup alist))))
4992 (dolist (option startup)
4993 (let ((entry (assoc-string option org-startup-options t)))
4994 (when entry
4995 (let ((var (nth 1 entry))
4996 (val (nth 2 entry)))
4997 (if (not (nth 3 entry)) (org-set-local var val)
4998 (unless (listp (symbol-value var))
4999 (org-set-local var nil))
5000 (add-to-list var val)))))))
5001 ;; TODO keywords.
5002 (org-set-local 'org-todo-kwd-alist nil)
5003 (org-set-local 'org-todo-key-alist nil)
5004 (org-set-local 'org-todo-key-trigger nil)
5005 (org-set-local 'org-todo-keywords-1 nil)
5006 (org-set-local 'org-done-keywords nil)
5007 (org-set-local 'org-todo-heads nil)
5008 (org-set-local 'org-todo-sets nil)
5009 (org-set-local 'org-todo-log-states nil)
5010 (let ((todo-sequences
5011 (reverse
5012 (or (cdr (assq 'todo alist))
5013 (let ((d (default-value 'org-todo-keywords)))
5014 (if (not (stringp (car d))) d
5015 ;; XXX: Backward compatibility code.
5016 (list (cons org-todo-interpretation d))))))))
5017 (dolist (sequence todo-sequences)
5018 (let* ((sequence (or (run-hook-with-args-until-success
5019 'org-todo-setup-filter-hook sequence)
5020 sequence))
5021 (sequence-type (car sequence))
5022 (keywords (cdr sequence))
5023 (sep (member "|" keywords))
5024 names alist)
5025 (dolist (k (remove "|" keywords))
5026 (unless (string-match "^\\(.*?\\)\\(?:(\\([^!@/]\\)?.*?)\\)?$"
5028 (error "Invalid TODO keyword %s" k))
5029 (let ((name (match-string 1 k))
5030 (key (match-string 2 k))
5031 (log (org-extract-log-state-settings k)))
5032 (push name names)
5033 (push (cons name (and key (string-to-char key))) alist)
5034 (when log (push log org-todo-log-states))))
5035 (let* ((names (nreverse names))
5036 (done (if sep (org-remove-keyword-keys (cdr sep))
5037 (last names)))
5038 (head (car names))
5039 (tail (list sequence-type head (car done) (org-last done))))
5040 (add-to-list 'org-todo-heads head 'append)
5041 (push names org-todo-sets)
5042 (setq org-done-keywords (append org-done-keywords done nil))
5043 (setq org-todo-keywords-1 (append org-todo-keywords-1 names nil))
5044 (setq org-todo-key-alist
5045 (append org-todo-key-alist
5046 (and alist
5047 (append '((:startgroup))
5048 (nreverse alist)
5049 '((:endgroup))))))
5050 (dolist (k names) (push (cons k tail) org-todo-kwd-alist))))))
5051 (setq org-todo-sets (nreverse org-todo-sets)
5052 org-todo-kwd-alist (nreverse org-todo-kwd-alist)
5053 org-todo-key-trigger (delq nil (mapcar #'cdr org-todo-key-alist))
5054 org-todo-key-alist (org-assign-fast-keys org-todo-key-alist))
5055 ;; Compute the regular expressions and other local variables.
5056 ;; Using `org-outline-regexp-bol' would complicate them much,
5057 ;; because of the fixed white space at the end of that string.
5058 (if (not org-done-keywords)
5059 (setq org-done-keywords
5060 (and org-todo-keywords-1 (last org-todo-keywords-1))))
5061 (setq org-not-done-keywords
5062 (org-delete-all org-done-keywords
5063 (copy-sequence org-todo-keywords-1))
5064 org-todo-regexp (regexp-opt org-todo-keywords-1 t)
5065 org-not-done-regexp (regexp-opt org-not-done-keywords t)
5066 org-not-done-heading-regexp
5067 (format org-heading-keyword-regexp-format org-not-done-regexp)
5068 org-todo-line-regexp
5069 (format org-heading-keyword-maybe-regexp-format org-todo-regexp)
5070 org-complex-heading-regexp
5071 (concat "^\\(\\*+\\)"
5072 "\\(?: +" org-todo-regexp "\\)?"
5073 "\\(?: +\\(\\[#.\\]\\)\\)?"
5074 "\\(?: +\\(.*?\\)\\)??"
5075 (org-re "\\(?:[ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)?")
5076 "[ \t]*$")
5077 org-complex-heading-regexp-format
5078 (concat "^\\(\\*+\\)"
5079 "\\(?: +" org-todo-regexp "\\)?"
5080 "\\(?: +\\(\\[#.\\]\\)\\)?"
5081 "\\(?: +"
5082 ;; Stats cookies can be stuck to body.
5083 "\\(?:\\[[0-9%%/]+\\] *\\)*"
5084 "\\(%s\\)"
5085 "\\(?: *\\[[0-9%%/]+\\]\\)*"
5086 "\\)"
5087 (org-re "\\(?:[ \t]+\\(:[[:alnum:]_@#%%:]+:\\)\\)?")
5088 "[ \t]*$")
5089 org-todo-line-tags-regexp
5090 (concat "^\\(\\*+\\)"
5091 "\\(?: +" org-todo-regexp "\\)?"
5092 "\\(?: +\\(.*?\\)\\)??"
5093 (org-re "\\(?:[ \t]+\\(:[[:alnum:]:_@#%]+:\\)\\)?")
5094 "[ \t]*$"))
5095 (org-compute-latex-and-related-regexp)))))
5097 (defun org--setup-collect-keywords (regexp &optional files alist)
5098 "Return setup keywords values as an alist.
5100 REGEXP matches a subset of setup keywords. FILES is a list of
5101 file names already visited. It is used to avoid circular setup
5102 files. ALIST, when non-nil, is the alist computed so far.
5104 Return value contains the following keys: `archive', `category',
5105 `columns', `constants', `filetags', `link', `priorities',
5106 `property', `startup', `tags' and `todo'."
5107 (org-with-wide-buffer
5108 (goto-char (point-min))
5109 (let ((case-fold-search t))
5110 (while (re-search-forward regexp nil t)
5111 (let ((element (org-element-at-point)))
5112 (when (eq (org-element-type element) 'keyword)
5113 (let ((key (org-element-property :key element))
5114 (value (org-element-property :value element)))
5115 (cond
5116 ((equal key "ARCHIVE")
5117 (when (org-string-nw-p value)
5118 (push (cons 'archive value) alist)))
5119 ((equal key "CATEGORY") (push (cons 'category value) alist))
5120 ((equal key "COLUMNS") (push (cons 'columns value) alist))
5121 ((equal key "CONSTANTS")
5122 (let* ((constants (assq 'constants alist))
5123 (store (cdr constants)))
5124 (dolist (pair (org-split-string value))
5125 (when (string-match "^\\([a-zA-Z0][_a-zA-Z0-9]*\\)=\\(.*\\)"
5126 pair)
5127 (let* ((name (match-string 1 pair))
5128 (value (match-string 2 pair))
5129 (old (assoc name store)))
5130 (if old (setcdr old value)
5131 (push (cons name value) store)))))
5132 (if constants (setcdr constants store)
5133 (push (cons 'constants store) alist))))
5134 ((equal key "FILETAGS")
5135 (when (org-string-nw-p value)
5136 (let ((old (assq 'filetags alist))
5137 (new (apply #'nconc
5138 (mapcar (lambda (x) (org-split-string x ":"))
5139 (org-split-string value)))))
5140 (if old (setcdr old (append new (cdr old)))
5141 (push (cons 'filetags new) alist)))))
5142 ((equal key "LINK")
5143 (when (string-match "\\`\\(\\S-+\\)[ \t]+\\(.+\\)" value)
5144 (let ((links (assq 'link alist))
5145 (pair (cons (org-match-string-no-properties 1 value)
5146 (org-match-string-no-properties 2 value))))
5147 (if links (push pair (cdr links))
5148 (push (list 'link pair) alist)))))
5149 ((equal key "PRIORITIES")
5150 (push (cons 'priorities
5151 (let ((prio (org-split-string value)))
5152 (if (< (length prio) 3) '(?A ?C ?B)
5153 (mapcar #'string-to-char prio))))
5154 alist))
5155 ((equal key "PROPERTY")
5156 (when (string-match "\\(\\S-+\\)[ \t]+\\(.*\\)" value)
5157 (let* ((property (assq 'property alist))
5158 (value (org--update-property-plist
5159 (org-match-string-no-properties 1 value)
5160 (org-match-string-no-properties 2 value)
5161 (cdr property))))
5162 (if property (setcdr property value)
5163 (push (cons 'property value) alist)))))
5164 ((equal key "STARTUP")
5165 (let ((startup (assq 'startup alist)))
5166 (if startup
5167 (setcdr startup
5168 (append (cdr startup) (org-split-string value)))
5169 (push (cons 'startup (org-split-string value)) alist))))
5170 ((equal key "TAGS")
5171 (let ((tag-cell (assq 'tags alist)))
5172 (if tag-cell
5173 (setcdr tag-cell
5174 (append (cdr tag-cell)
5175 '("\\n")
5176 (org-split-string value)))
5177 (push (cons 'tags (org-split-string value)) alist))))
5178 ((member key '("TODO" "SEQ_TODO" "TYP_TODO"))
5179 (let ((todo (assq 'todo alist))
5180 (value (cons (if (equal key "TYP_TODO") 'type 'sequence)
5181 (org-split-string value))))
5182 (if todo (push value (cdr todo))
5183 (push (list 'todo value) alist))))
5184 ((equal key "SETUPFILE")
5185 (unless buffer-read-only ; Do not check in Gnus messages.
5186 (let ((f (and (org-string-nw-p value)
5187 (expand-file-name
5188 (org-remove-double-quotes value)))))
5189 (when (and f (file-readable-p f) (not (member f files)))
5190 (with-temp-buffer
5191 (insert-file-contents f)
5192 (setq alist
5193 ;; Fake Org mode to benefit from cache
5194 ;; without recurring needlessly.
5195 (let ((major-mode 'org-mode))
5196 (org--setup-collect-keywords
5197 regexp (cons f files) alist)))))))))))))))
5198 alist)
5200 (defun org--setup-process-tags (tags filetags)
5201 "Precompute variables used for tags.
5202 TAGS is a list of tags and tag group symbols, as strings.
5203 FILETAGS is a list of tags, as strings."
5204 ;; Process the file tags.
5205 (org-set-local 'org-file-tags
5206 (mapcar #'org-add-prop-inherited filetags))
5207 ;; Provide default tags if no local tags are found.
5208 (when (and (not tags) org-tag-alist)
5209 (setq tags
5210 (mapcar (lambda (tag)
5211 (case (car tag)
5212 (:startgroup "{")
5213 (:endgroup "}")
5214 (:grouptags ":")
5215 (:newline "\\n")
5216 (otherwise (concat (car tag)
5217 (and (characterp (cdr tag))
5218 (format "(%c)" (cdr tag)))))))
5219 org-tag-alist)))
5220 ;; Process the tags.
5221 (org-set-local 'org-tag-groups-alist nil)
5222 (org-set-local 'org-tag-alist nil)
5223 (let (group-flag)
5224 (while tags
5225 (let ((e (car tags)))
5226 (setq tags (cdr tags))
5227 (cond
5228 ((equal e "{")
5229 (push '(:startgroup) org-tag-alist)
5230 (when (equal (nth 1 tags) ":") (setq group-flag t)))
5231 ((equal e "}")
5232 (push '(:endgroup) org-tag-alist)
5233 (setq group-flag nil))
5234 ((equal e ":")
5235 (push '(:grouptags) org-tag-alist)
5236 (setq group-flag 'append))
5237 ((equal e "\\n") (push '(:newline) org-tag-alist))
5238 ((string-match
5239 (org-re "\\`\\([[:alnum:]_@#%]+\\)\\(?:(\\(.\\))\\)?\\'") e)
5240 (let ((tag (match-string 1 e))
5241 (key (and (match-beginning 2)
5242 (string-to-char (match-string 2 e)))))
5243 (cond ((eq group-flag 'append)
5244 (setcar org-tag-groups-alist
5245 (append (car org-tag-groups-alist) (list tag))))
5246 (group-flag (push (list tag) org-tag-groups-alist)))
5247 (unless (assoc tag org-tag-alist)
5248 (push (cons tag key) org-tag-alist))))))))
5249 (setq org-tag-alist (nreverse org-tag-alist)))
5251 (defun org-file-contents (file &optional noerror)
5252 "Return the contents of FILE, as a string."
5253 (if (and file (file-readable-p file))
5254 (with-temp-buffer
5255 (insert-file-contents file)
5256 (buffer-string))
5257 (funcall (if noerror 'message 'error)
5258 "Cannot read file \"%s\"%s"
5259 file
5260 (let ((from (buffer-file-name (buffer-base-buffer))))
5261 (if from (concat " (referenced in file \"" from "\")") "")))))
5263 (defun org-extract-log-state-settings (x)
5264 "Extract the log state setting from a TODO keyword string.
5265 This will extract info from a string like \"WAIT(w@/!)\"."
5266 (let (kw key log1 log2)
5267 (when (string-match "^\\(.*?\\)\\(?:(\\([^!@/]\\)?\\([!@]\\)?\\(?:/\\([!@]\\)\\)?)\\)?$" x)
5268 (setq kw (match-string 1 x)
5269 key (and (match-end 2) (match-string 2 x))
5270 log1 (and (match-end 3) (match-string 3 x))
5271 log2 (and (match-end 4) (match-string 4 x)))
5272 (and (or log1 log2)
5273 (list kw
5274 (and log1 (if (equal log1 "!") 'time 'note))
5275 (and log2 (if (equal log2 "!") 'time 'note)))))))
5277 (defun org-remove-keyword-keys (list)
5278 "Remove a pair of parenthesis at the end of each string in LIST."
5279 (mapcar (lambda (x)
5280 (if (string-match "(.*)$" x)
5281 (substring x 0 (match-beginning 0))
5283 list))
5285 (defun org-assign-fast-keys (alist)
5286 "Assign fast keys to a keyword-key alist.
5287 Respect keys that are already there."
5288 (let (new e (alt ?0))
5289 (while (setq e (pop alist))
5290 (if (or (memq (car e) '(:newline :grouptags :endgroup :startgroup))
5291 (cdr e)) ;; Key already assigned.
5292 (push e new)
5293 (let ((clist (string-to-list (downcase (car e))))
5294 (used (append new alist)))
5295 (when (= (car clist) ?@)
5296 (pop clist))
5297 (while (and clist (rassoc (car clist) used))
5298 (pop clist))
5299 (unless clist
5300 (while (rassoc alt used)
5301 (incf alt)))
5302 (push (cons (car e) (or (car clist) alt)) new))))
5303 (nreverse new)))
5305 ;;; Some variables used in various places
5307 (defvar org-window-configuration nil
5308 "Used in various places to store a window configuration.")
5309 (defvar org-selected-window nil
5310 "Used in various places to store a window configuration.")
5311 (defvar org-finish-function nil
5312 "Function to be called when `C-c C-c' is used.
5313 This is for getting out of special buffers like capture.")
5316 ;; FIXME: Occasionally check by commenting these, to make sure
5317 ;; no other functions uses these, forgetting to let-bind them.
5318 (org-no-warnings (defvar entry)) ;; unprefixed, from calendar.el
5319 (defvar org-last-state)
5320 (org-no-warnings (defvar date)) ;; unprefixed, from calendar.el
5322 ;; Defined somewhere in this file, but used before definition.
5323 (defvar org-entities) ;; defined in org-entities.el
5324 (defvar org-struct-menu)
5325 (defvar org-org-menu)
5326 (defvar org-tbl-menu)
5328 ;;;; Define the Org-mode
5330 ;; We use a before-change function to check if a table might need
5331 ;; an update.
5332 (defvar org-table-may-need-update t
5333 "Indicates that a table might need an update.
5334 This variable is set by `org-before-change-function'.
5335 `org-table-align' sets it back to nil.")
5336 (defun org-before-change-function (beg end)
5337 "Every change indicates that a table might need an update."
5338 (setq org-table-may-need-update t))
5339 (defvar org-mode-map)
5340 (defvar org-inhibit-startup-visibility-stuff nil) ; Dynamically-scoped param.
5341 (defvar org-agenda-keep-modes nil) ; Dynamically-scoped param.
5342 (defvar org-inhibit-logging nil) ; Dynamically-scoped param.
5343 (defvar org-inhibit-blocking nil) ; Dynamically-scoped param.
5344 (defvar org-table-buffer-is-an nil)
5346 (defvar bidi-paragraph-direction)
5347 (defvar buffer-face-mode-face)
5349 (require 'outline)
5350 (if (and (not (keymapp outline-mode-map)) (featurep 'allout))
5351 (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"))
5352 (require 'noutline "noutline" 'noerror) ;; stock XEmacs does not have it
5354 ;; Other stuff we need.
5355 (require 'time-date)
5356 (unless (fboundp 'time-subtract) (defalias 'time-subtract 'subtract-time))
5357 (require 'easymenu)
5358 (require 'overlay)
5360 ;; (require 'org-macs) moved higher up in the file before it is first used
5361 (require 'org-entities)
5362 ;; (require 'org-compat) moved higher up in the file before it is first used
5363 (require 'org-faces)
5364 (require 'org-list)
5365 (require 'org-pcomplete)
5366 (require 'org-src)
5367 (require 'org-footnote)
5368 (require 'org-macro)
5370 ;; babel
5371 (require 'ob)
5373 ;;;###autoload
5374 (define-derived-mode org-mode outline-mode "Org"
5375 "Outline-based notes management and organizer, alias
5376 \"Carsten's outline-mode for keeping track of everything.\"
5378 Org-mode develops organizational tasks around a NOTES file which
5379 contains information about projects as plain text. Org-mode is
5380 implemented on top of outline-mode, which is ideal to keep the content
5381 of large files well structured. It supports ToDo items, deadlines and
5382 time stamps, which magically appear in the diary listing of the Emacs
5383 calendar. Tables are easily created with a built-in table editor.
5384 Plain text URL-like links connect to websites, emails (VM), Usenet
5385 messages (Gnus), BBDB entries, and any files related to the project.
5386 For printing and sharing of notes, an Org-mode file (or a part of it)
5387 can be exported as a structured ASCII or HTML file.
5389 The following commands are available:
5391 \\{org-mode-map}"
5393 ;; Get rid of Outline menus, they are not needed
5394 ;; Need to do this here because define-derived-mode sets up
5395 ;; the keymap so late. Still, it is a waste to call this each time
5396 ;; we switch another buffer into org-mode.
5397 (if (featurep 'xemacs)
5398 (when (boundp 'outline-mode-menu-heading)
5399 ;; Assume this is Greg's port, it uses easymenu
5400 (easy-menu-remove outline-mode-menu-heading)
5401 (easy-menu-remove outline-mode-menu-show)
5402 (easy-menu-remove outline-mode-menu-hide))
5403 (define-key org-mode-map [menu-bar headings] 'undefined)
5404 (define-key org-mode-map [menu-bar hide] 'undefined)
5405 (define-key org-mode-map [menu-bar show] 'undefined))
5407 (org-load-modules-maybe)
5408 (easy-menu-add org-org-menu)
5409 (easy-menu-add org-tbl-menu)
5410 (org-install-agenda-files-menu)
5411 (if org-descriptive-links (add-to-invisibility-spec '(org-link)))
5412 (add-to-invisibility-spec '(org-cwidth))
5413 (add-to-invisibility-spec '(org-hide-block . t))
5414 (when (featurep 'xemacs)
5415 (org-set-local 'line-move-ignore-invisible t))
5416 (org-set-local 'outline-regexp org-outline-regexp)
5417 (org-set-local 'outline-level 'org-outline-level)
5418 (setq bidi-paragraph-direction 'left-to-right)
5419 (when (and org-ellipsis
5420 (fboundp 'set-display-table-slot) (boundp 'buffer-display-table)
5421 (fboundp 'make-glyph-code))
5422 (unless org-display-table
5423 (setq org-display-table (make-display-table)))
5424 (set-display-table-slot
5425 org-display-table 4
5426 (vconcat (mapcar
5427 (lambda (c) (make-glyph-code c (and (not (stringp org-ellipsis))
5428 org-ellipsis)))
5429 (if (stringp org-ellipsis) org-ellipsis "..."))))
5430 (setq buffer-display-table org-display-table))
5431 (org-set-regexps-and-options)
5432 (org-set-font-lock-defaults)
5433 (when (and org-tag-faces (not org-tags-special-faces-re))
5434 ;; tag faces set outside customize.... force initialization.
5435 (org-set-tag-faces 'org-tag-faces org-tag-faces))
5436 ;; Calc embedded
5437 (org-set-local 'calc-embedded-open-mode "# ")
5438 ;; Modify a few syntax entries
5439 (modify-syntax-entry ?@ "w")
5440 (modify-syntax-entry ?\" "\"")
5441 (modify-syntax-entry ?\\ "_")
5442 (modify-syntax-entry ?~ "_")
5443 (if org-startup-truncated (setq truncate-lines t))
5444 (when org-startup-indented (require 'org-indent) (org-indent-mode 1))
5445 (org-set-local 'font-lock-unfontify-region-function
5446 'org-unfontify-region)
5447 ;; Activate before-change-function
5448 (org-set-local 'org-table-may-need-update t)
5449 (org-add-hook 'before-change-functions 'org-before-change-function nil
5450 'local)
5451 ;; Check for running clock before killing a buffer
5452 (org-add-hook 'kill-buffer-hook 'org-check-running-clock nil 'local)
5453 ;; Initialize macros templates.
5454 (org-macro-initialize-templates)
5455 ;; Initialize radio targets.
5456 (org-update-radio-target-regexp)
5457 ;; Indentation.
5458 (org-set-local 'indent-line-function 'org-indent-line)
5459 (org-set-local 'indent-region-function 'org-indent-region)
5460 ;; Filling and auto-filling.
5461 (org-setup-filling)
5462 ;; Comments.
5463 (org-setup-comments-handling)
5464 ;; Initialize cache.
5465 (org-element-cache-reset)
5466 ;; Beginning/end of defun
5467 (org-set-local 'beginning-of-defun-function 'org-backward-element)
5468 (org-set-local 'end-of-defun-function
5469 (lambda ()
5470 (if (not (org-at-heading-p))
5471 (org-forward-element)
5472 (org-forward-element)
5473 (forward-char -1))))
5474 ;; Next error for sparse trees
5475 (org-set-local 'next-error-function 'org-occur-next-match)
5476 ;; Make sure dependence stuff works reliably, even for users who set it
5477 ;; too late :-(
5478 (if org-enforce-todo-dependencies
5479 (add-hook 'org-blocker-hook
5480 'org-block-todo-from-children-or-siblings-or-parent)
5481 (remove-hook 'org-blocker-hook
5482 'org-block-todo-from-children-or-siblings-or-parent))
5483 (if org-enforce-todo-checkbox-dependencies
5484 (add-hook 'org-blocker-hook
5485 'org-block-todo-from-checkboxes)
5486 (remove-hook 'org-blocker-hook
5487 'org-block-todo-from-checkboxes))
5489 ;; Align options lines
5490 (org-set-local
5491 'align-mode-rules-list
5492 '((org-in-buffer-settings
5493 (regexp . "^[ \t]*#\\+[A-Z_]+:\\(\\s-*\\)\\S-+")
5494 (modes . '(org-mode)))))
5496 ;; Imenu
5497 (org-set-local 'imenu-create-index-function
5498 'org-imenu-get-tree)
5500 ;; Make isearch reveal context
5501 (if (or (featurep 'xemacs)
5502 (not (boundp 'outline-isearch-open-invisible-function)))
5503 ;; Emacs 21 and XEmacs make use of the hook
5504 (org-add-hook 'isearch-mode-end-hook 'org-isearch-end 'append 'local)
5505 ;; Emacs 22 deals with this through a special variable
5506 (org-set-local 'outline-isearch-open-invisible-function
5507 (lambda (&rest ignore) (org-show-context 'isearch))))
5509 ;; Setup the pcomplete hooks
5510 (set (make-local-variable 'pcomplete-command-completion-function)
5511 'org-pcomplete-initial)
5512 (set (make-local-variable 'pcomplete-command-name-function)
5513 'org-command-at-point)
5514 (set (make-local-variable 'pcomplete-default-completion-function)
5515 'ignore)
5516 (set (make-local-variable 'pcomplete-parse-arguments-function)
5517 'org-parse-arguments)
5518 (set (make-local-variable 'pcomplete-termination-string) "")
5519 (when (>= emacs-major-version 23)
5520 (set (make-local-variable 'buffer-face-mode-face) 'org-default))
5522 ;; If empty file that did not turn on org-mode automatically, make it to.
5523 (if (and org-insert-mode-line-in-empty-file
5524 (org-called-interactively-p 'any)
5525 (= (point-min) (point-max)))
5526 (insert "# -*- mode: org -*-\n\n"))
5527 (unless org-inhibit-startup
5528 (org-unmodified
5529 (and org-startup-with-beamer-mode (org-beamer-mode))
5530 (when org-startup-align-all-tables
5531 (org-table-map-tables 'org-table-align 'quietly))
5532 (when org-startup-with-inline-images
5533 (org-display-inline-images))
5534 (when org-startup-with-latex-preview
5535 (org-toggle-latex-fragment))
5536 (unless org-inhibit-startup-visibility-stuff
5537 (org-set-startup-visibility))
5538 (org-refresh-effort-properties)))
5539 ;; Try to set org-hide correctly
5540 (let ((foreground (org-find-invisible-foreground)))
5541 (if foreground
5542 (set-face-foreground 'org-hide foreground))))
5544 ;; Update `customize-package-emacs-version-alist'
5545 (add-to-list 'customize-package-emacs-version-alist
5546 '(Org ("6.21b" . "23.1") ("6.33x" . "23.2")
5547 ("7.8.11" . "24.1") ("7.9.4" . "24.3")
5548 ("8.2.6" . "24.4") ("8.3" . "25.1")))
5550 (defvar org-mode-transpose-word-syntax-table
5551 (let ((st (make-syntax-table text-mode-syntax-table)))
5552 (mapc (lambda(c) (modify-syntax-entry
5553 (string-to-char (car c)) "w p" st))
5554 org-emphasis-alist)
5555 st))
5557 (when (fboundp 'abbrev-table-put)
5558 (abbrev-table-put org-mode-abbrev-table
5559 :parents (list text-mode-abbrev-table)))
5561 (defun org-find-invisible-foreground ()
5562 (let ((candidates (remove
5563 "unspecified-bg"
5564 (nconc
5565 (list (face-background 'default)
5566 (face-background 'org-default))
5567 (mapcar
5568 (lambda (alist)
5569 (when (boundp alist)
5570 (cdr (assoc 'background-color (symbol-value alist)))))
5571 '(default-frame-alist initial-frame-alist window-system-default-frame-alist))
5572 (list (face-foreground 'org-hide))))))
5573 (car (remove nil candidates))))
5575 (defun org-current-time (&optional rounding-minutes past)
5576 "Current time, possibly rounded to ROUNDING-MINUTES.
5577 When ROUNDING-MINUTES is not an integer, fall back on the car of
5578 `org-time-stamp-rounding-minutes'. When PAST is non-nil, ensure
5579 the rounding returns a past time."
5580 (let ((r (or (and (integerp rounding-minutes) rounding-minutes)
5581 (car org-time-stamp-rounding-minutes)))
5582 (time (decode-time)) res)
5583 (if (< r 1)
5584 (current-time)
5585 (setq res
5586 (apply 'encode-time
5587 (append (list 0 (* r (floor (+ .5 (/ (float (nth 1 time)) r)))))
5588 (nthcdr 2 time))))
5589 (if (and past (< (org-float-time (time-subtract (current-time) res)) 0))
5590 (seconds-to-time (- (org-float-time res) (* r 60)))
5591 res))))
5593 (defun org-today ()
5594 "Return today date, considering `org-extend-today-until'."
5595 (time-to-days
5596 (time-subtract (current-time)
5597 (list 0 (* 3600 org-extend-today-until) 0))))
5599 ;;;; Font-Lock stuff, including the activators
5601 (defvar org-mouse-map (make-sparse-keymap))
5602 (org-defkey org-mouse-map [mouse-2] 'org-open-at-mouse)
5603 (org-defkey org-mouse-map [mouse-3] 'org-find-file-at-mouse)
5604 (when org-mouse-1-follows-link
5605 (org-defkey org-mouse-map [follow-link] 'mouse-face))
5606 (when org-tab-follows-link
5607 (org-defkey org-mouse-map [(tab)] 'org-open-at-point)
5608 (org-defkey org-mouse-map "\C-i" 'org-open-at-point))
5610 (require 'font-lock)
5612 (defconst org-non-link-chars "]\t\n\r<>")
5613 (defvar org-link-types '("http" "https" "ftp" "mailto" "file" "file+emacs"
5614 "file+sys" "news" "shell" "elisp" "doi" "message"
5615 "help"))
5616 (defvar org-link-types-re nil
5617 "Matches a link that has a url-like prefix like \"http:\"")
5618 (defvar org-link-re-with-space nil
5619 "Matches a link with spaces, optional angular brackets around it.")
5620 (defvar org-link-re-with-space2 nil
5621 "Matches a link with spaces, optional angular brackets around it.")
5622 (defvar org-link-re-with-space3 nil
5623 "Matches a link with spaces, only for internal part in bracket links.")
5624 (defvar org-angle-link-re nil
5625 "Matches link with angular brackets, spaces are allowed.")
5626 (defvar org-plain-link-re nil
5627 "Matches plain link, without spaces.")
5628 (defvar org-bracket-link-regexp nil
5629 "Matches a link in double brackets.")
5630 (defvar org-bracket-link-analytic-regexp nil
5631 "Regular expression used to analyze links.
5632 Here is what the match groups contain after a match:
5633 1: http:
5634 2: http
5635 3: path
5636 4: [desc]
5637 5: desc")
5638 (defvar org-bracket-link-analytic-regexp++ nil
5639 "Like `org-bracket-link-analytic-regexp', but include coderef internal type.")
5640 (defvar org-any-link-re nil
5641 "Regular expression matching any link.")
5643 (defconst org-match-sexp-depth 3
5644 "Number of stacked braces for sub/superscript matching.")
5646 (defun org-create-multibrace-regexp (left right n)
5647 "Create a regular expression which will match a balanced sexp.
5648 Opening delimiter is LEFT, and closing delimiter is RIGHT, both given
5649 as single character strings.
5650 The regexp returned will match the entire expression including the
5651 delimiters. It will also define a single group which contains the
5652 match except for the outermost delimiters. The maximum depth of
5653 stacked delimiters is N. Escaping delimiters is not possible."
5654 (let* ((nothing (concat "[^" left right "]*?"))
5655 (or "\\|")
5656 (re nothing)
5657 (next (concat "\\(?:" nothing left nothing right "\\)+" nothing)))
5658 (while (> n 1)
5659 (setq n (1- n)
5660 re (concat re or next)
5661 next (concat "\\(?:" nothing left next right "\\)+" nothing)))
5662 (concat left "\\(" re "\\)" right)))
5664 (defconst org-match-substring-regexp
5665 (concat
5666 "\\(\\S-\\)\\([_^]\\)\\("
5667 "\\(?:" (org-create-multibrace-regexp "{" "}" org-match-sexp-depth) "\\)"
5668 "\\|"
5669 "\\(?:" (org-create-multibrace-regexp "(" ")" org-match-sexp-depth) "\\)"
5670 "\\|"
5671 "\\(?:\\*\\|[+-]?[[:alnum:].,\\]*[[:alnum:]]\\)\\)")
5672 "The regular expression matching a sub- or superscript.")
5674 (defconst org-match-substring-with-braces-regexp
5675 (concat
5676 "\\(\\S-\\)\\([_^]\\)"
5677 "\\(" (org-create-multibrace-regexp "{" "}" org-match-sexp-depth) "\\)")
5678 "The regular expression matching a sub- or superscript, forcing braces.")
5680 (defun org-make-link-regexps ()
5681 "Update the link regular expressions.
5682 This should be called after the variable `org-link-types' has changed."
5683 (let ((types-re (regexp-opt org-link-types t)))
5684 (setq org-link-types-re
5685 (concat "\\`" types-re ":")
5686 org-link-re-with-space
5687 (concat "<?" types-re ":"
5688 "\\([^" org-non-link-chars " ]"
5689 "[^" org-non-link-chars "]*"
5690 "[^" org-non-link-chars " ]\\)>?")
5691 org-link-re-with-space2
5692 (concat "<?" types-re ":"
5693 "\\([^" org-non-link-chars " ]"
5694 "[^\t\n\r]*"
5695 "[^" org-non-link-chars " ]\\)>?")
5696 org-link-re-with-space3
5697 (concat "<?" types-re ":"
5698 "\\([^" org-non-link-chars " ]"
5699 "[^\t\n\r]*\\)")
5700 org-angle-link-re
5701 (concat "<" types-re ":"
5702 "\\([^" org-non-link-chars " ]"
5703 "[^" org-non-link-chars "]*"
5704 "\\)>")
5705 org-plain-link-re
5706 (concat
5707 "\\<" types-re ":"
5708 (org-re "\\([^ \t\n()<>]+\\(?:([[:word:]0-9_]+)\\|\\([^[:punct:] \t\n]\\|/\\)\\)\\)"))
5709 ;; "\\([^]\t\n\r<>() ]+[^]\t\n\r<>,.;() ]\\)")
5710 org-bracket-link-regexp
5711 "\\[\\[\\([^][]+\\)\\]\\(\\[\\([^][]+\\)\\]\\)?\\]"
5712 org-bracket-link-analytic-regexp
5713 (concat
5714 "\\[\\["
5715 "\\(" types-re ":\\)?"
5716 "\\([^]]+\\)"
5717 "\\]"
5718 "\\(\\[" "\\([^]]+\\)" "\\]\\)?"
5719 "\\]")
5720 org-bracket-link-analytic-regexp++
5721 (concat
5722 "\\[\\["
5723 "\\(" (regexp-opt (cons "coderef" org-link-types) t) ":\\)?"
5724 "\\([^]]+\\)"
5725 "\\]"
5726 "\\(\\[" "\\([^]]+\\)" "\\]\\)?"
5727 "\\]")
5728 org-any-link-re
5729 (concat "\\(" org-bracket-link-regexp "\\)\\|\\("
5730 org-angle-link-re "\\)\\|\\("
5731 org-plain-link-re "\\)"))))
5733 (org-make-link-regexps)
5735 (defvar org-emph-face nil)
5737 (defun org-do-emphasis-faces (limit)
5738 "Run through the buffer and emphasize strings."
5739 (let (rtn a)
5740 (while (and (not rtn) (re-search-forward org-emph-re limit t))
5741 (let* ((border (char-after (match-beginning 3)))
5742 (bre (regexp-quote (char-to-string border))))
5743 (if (and (not (= border (char-after (match-beginning 4))))
5744 (not (save-match-data
5745 (string-match (concat bre ".*" bre)
5746 (replace-regexp-in-string
5747 "\n" " "
5748 (substring (match-string 2) 1 -1))))))
5749 (progn
5750 (setq rtn t)
5751 (setq a (assoc (match-string 3) org-emphasis-alist))
5752 (font-lock-prepend-text-property (match-beginning 2) (match-end 2)
5753 'face
5754 (nth 1 a))
5755 (and (nth 2 a)
5756 (org-remove-flyspell-overlays-in
5757 (match-beginning 0) (match-end 0)))
5758 (add-text-properties (match-beginning 2) (match-end 2)
5759 '(font-lock-multiline t org-emphasis t))
5760 (when org-hide-emphasis-markers
5761 (add-text-properties (match-end 4) (match-beginning 5)
5762 '(invisible org-link))
5763 (add-text-properties (match-beginning 3) (match-end 3)
5764 '(invisible org-link))))))
5765 (goto-char (1+ (match-beginning 0))))
5766 rtn))
5768 (defun org-emphasize (&optional char)
5769 "Insert or change an emphasis, i.e. a font like bold or italic.
5770 If there is an active region, change that region to a new emphasis.
5771 If there is no region, just insert the marker characters and position
5772 the cursor between them.
5773 CHAR should be the marker character. If it is a space, it means to
5774 remove the emphasis of the selected region.
5775 If CHAR is not given (for example in an interactive call) it will be
5776 prompted for."
5777 (interactive)
5778 (let ((erc org-emphasis-regexp-components)
5779 (prompt "")
5780 (string "") beg end move c s)
5781 (if (org-region-active-p)
5782 (setq beg (region-beginning) end (region-end)
5783 string (buffer-substring beg end))
5784 (setq move t))
5786 (unless char
5787 (message "Emphasis marker or tag: [%s]"
5788 (mapconcat (lambda(e) (car e)) org-emphasis-alist ""))
5789 (setq char (read-char-exclusive)))
5790 (if (equal char ?\ )
5791 (setq s "" move nil)
5792 (unless (assoc (char-to-string char) org-emphasis-alist)
5793 (user-error "No such emphasis marker: \"%c\"" char))
5794 (setq s (char-to-string char)))
5795 (while (and (> (length string) 1)
5796 (equal (substring string 0 1) (substring string -1))
5797 (assoc (substring string 0 1) org-emphasis-alist))
5798 (setq string (substring string 1 -1)))
5799 (setq string (concat s string s))
5800 (if beg (delete-region beg end))
5801 (unless (or (bolp)
5802 (string-match (concat "[" (nth 0 erc) "\n]")
5803 (char-to-string (char-before (point)))))
5804 (insert " "))
5805 (unless (or (eobp)
5806 (string-match (concat "[" (nth 1 erc) "\n]")
5807 (char-to-string (char-after (point)))))
5808 (insert " ") (backward-char 1))
5809 (insert string)
5810 (and move (backward-char 1))))
5812 (defconst org-nonsticky-props
5813 '(mouse-face highlight keymap invisible intangible help-echo org-linked-text htmlize-link))
5815 (defsubst org-rear-nonsticky-at (pos)
5816 (add-text-properties (1- pos) pos (list 'rear-nonsticky org-nonsticky-props)))
5818 (defun org-activate-plain-links (limit)
5819 "Add link properties for plain links."
5820 (let (f hl)
5821 (when (and (re-search-forward (concat org-plain-link-re) limit t)
5822 (not (member 'org-tag
5823 (get-text-property (1- (match-beginning 0)) 'face)))
5824 (not (org-in-src-block-p)))
5825 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5826 (setq f (get-text-property (match-beginning 0) 'face))
5827 (setq hl (org-match-string-no-properties 0))
5828 (if (or (eq f 'org-tag)
5829 (and (listp f) (memq 'org-tag f)))
5831 (add-text-properties (match-beginning 0) (match-end 0)
5832 (list 'mouse-face 'highlight
5833 'face 'org-link
5834 'htmlize-link `(:uri ,hl)
5835 'keymap org-mouse-map))
5836 (org-rear-nonsticky-at (match-end 0)))
5837 t)))
5839 (defun org-activate-code (limit)
5840 (if (re-search-forward "^[ \t]*\\(:\\(?: .*\\|$\\)\n?\\)" limit t)
5841 (progn
5842 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5843 (remove-text-properties (match-beginning 0) (match-end 0)
5844 '(display t invisible t intangible t))
5845 t)))
5847 (defcustom org-src-fontify-natively t
5848 "When non-nil, fontify code in code blocks."
5849 :type 'boolean
5850 :version "24.4"
5851 :package-version '(Org . "8.3")
5852 :group 'org-appearance
5853 :group 'org-babel)
5855 (defcustom org-allow-promoting-top-level-subtree nil
5856 "When non-nil, allow promoting a top level subtree.
5857 The leading star of the top level headline will be replaced
5858 by a #."
5859 :type 'boolean
5860 :version "24.1"
5861 :group 'org-appearance)
5863 (defun org-fontify-meta-lines-and-blocks (limit)
5864 (condition-case nil
5865 (org-fontify-meta-lines-and-blocks-1 limit)
5866 (error (message "org-mode fontification error"))))
5868 (defun org-fontify-meta-lines-and-blocks-1 (limit)
5869 "Fontify #+ lines and blocks."
5870 (let ((case-fold-search t))
5871 (if (re-search-forward
5872 "^\\([ \t]*#\\(\\(\\+[a-zA-Z]+:?\\| \\|$\\)\\(_\\([a-zA-Z]+\\)\\)?\\)[ \t]*\\(\\([^ \t\n]*\\)[ \t]*\\(.*\\)\\)\\)"
5873 limit t)
5874 (let ((beg (match-beginning 0))
5875 (block-start (match-end 0))
5876 (block-end nil)
5877 (lang (match-string 7))
5878 (beg1 (line-beginning-position 2))
5879 (dc1 (downcase (match-string 2)))
5880 (dc3 (downcase (match-string 3)))
5881 end end1 quoting block-type ovl)
5882 (cond
5883 ((member dc1 '("+html:" "+ascii:" "+latex:"))
5884 ;; a single line of backend-specific content
5885 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5886 (remove-text-properties (match-beginning 0) (match-end 0)
5887 '(display t invisible t intangible t))
5888 (add-text-properties (match-beginning 1) (match-end 3)
5889 '(font-lock-fontified t face org-meta-line))
5890 (add-text-properties (match-beginning 6) (+ (match-end 6) 1)
5891 '(font-lock-fontified t face org-block))
5892 ; for backend-specific code
5894 ((and (match-end 4) (equal dc3 "+begin"))
5895 ;; Truly a block
5896 (setq block-type (downcase (match-string 5))
5897 quoting (member block-type org-protecting-blocks))
5898 (when (re-search-forward
5899 (concat "^[ \t]*#\\+end" (match-string 4) "\\>.*")
5900 nil t) ;; on purpose, we look further than LIMIT
5901 (setq end (min (point-max) (match-end 0))
5902 end1 (min (point-max) (1- (match-beginning 0))))
5903 (setq block-end (match-beginning 0))
5904 (when quoting
5905 (org-remove-flyspell-overlays-in beg1 end1)
5906 (remove-text-properties beg end
5907 '(display t invisible t intangible t)))
5908 (add-text-properties
5909 beg end '(font-lock-fontified t font-lock-multiline t))
5910 (add-text-properties beg beg1 '(face org-meta-line))
5911 (org-remove-flyspell-overlays-in beg beg1)
5912 (add-text-properties ; For end_src
5913 end1 (min (point-max) (1+ end)) '(face org-meta-line))
5914 (org-remove-flyspell-overlays-in end1 end)
5915 (cond
5916 ((and lang (not (string= lang "")) org-src-fontify-natively)
5917 (org-src-font-lock-fontify-block lang block-start block-end)
5918 (add-text-properties beg1 block-end '(src-block t)))
5919 (quoting
5920 (add-text-properties beg1 (min (point-max) (1+ end1))
5921 '(face org-block))) ; end of source block
5922 ((not org-fontify-quote-and-verse-blocks))
5923 ((string= block-type "quote")
5924 (add-text-properties beg1 (min (point-max) (1+ end1)) '(face org-quote)))
5925 ((string= block-type "verse")
5926 (add-text-properties beg1 (min (point-max) (1+ end1)) '(face org-verse))))
5927 (add-text-properties beg beg1 '(face org-block-begin-line))
5928 (add-text-properties (min (point-max) (1+ end)) (min (point-max) (1+ end1))
5929 '(face org-block-end-line))
5931 ((member dc1 '("+title:" "+author:" "+email:" "+date:"))
5932 (org-remove-flyspell-overlays-in
5933 (match-beginning 0)
5934 (if (equal "+title:" dc1) (match-end 2) (match-end 0)))
5935 (add-text-properties
5936 beg (match-end 3)
5937 (if (member (intern (substring dc1 1 -1)) org-hidden-keywords)
5938 '(font-lock-fontified t invisible t)
5939 '(font-lock-fontified t face org-document-info-keyword)))
5940 (add-text-properties
5941 (match-beginning 6) (min (point-max) (1+ (match-end 6)))
5942 (if (string-equal dc1 "+title:")
5943 '(font-lock-fontified t face org-document-title)
5944 '(font-lock-fontified t face org-document-info))))
5945 ((or (equal dc1 "+results")
5946 (member dc1 '("+begin:" "+end:" "+caption:" "+label:"
5947 "+orgtbl:" "+tblfm:" "+tblname:" "+results:"
5948 "+call:" "+header:" "+headers:" "+name:"))
5949 (and (match-end 4) (equal dc3 "+attr")))
5950 (org-remove-flyspell-overlays-in
5951 (match-beginning 0)
5952 (if (equal "+caption:" dc1) (match-end 2) (match-end 0)))
5953 (add-text-properties
5954 beg (match-end 0)
5955 '(font-lock-fontified t face org-meta-line))
5957 ((member dc3 '(" " ""))
5958 (org-remove-flyspell-overlays-in beg (match-end 0))
5959 (add-text-properties
5960 beg (match-end 0)
5961 '(font-lock-fontified t face font-lock-comment-face)))
5962 (t ;; just any other in-buffer setting, but not indented
5963 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5964 (add-text-properties
5965 beg (match-end 0)
5966 '(font-lock-fontified t face org-meta-line))
5967 t))))))
5969 (defun org-fontify-drawers (limit)
5970 "Fontify drawers."
5971 (when (re-search-forward org-drawer-regexp limit t)
5972 (add-text-properties
5973 (match-beginning 0) (match-end 0)
5974 '(font-lock-fontified t face org-special-keyword))
5975 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5978 (defun org-fontify-macros (limit)
5979 "Fontify macros."
5980 (when (re-search-forward "\\({{{\\).+?\\(}}}\\)" limit t)
5981 (add-text-properties
5982 (match-beginning 0) (match-end 0)
5983 '(font-lock-fontified t face org-macro))
5984 (when org-hide-macro-markers
5985 (add-text-properties (match-end 2) (match-beginning 2)
5986 '(invisible t))
5987 (add-text-properties (match-beginning 1) (match-end 1)
5988 '(invisible t)))
5989 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5992 (defun org-activate-angle-links (limit)
5993 "Add text properties for angle links."
5994 (if (and (re-search-forward org-angle-link-re limit t)
5995 (not (org-in-src-block-p)))
5996 (progn
5997 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5998 (add-text-properties (match-beginning 0) (match-end 0)
5999 (list 'mouse-face 'highlight
6000 'keymap org-mouse-map))
6001 (org-rear-nonsticky-at (match-end 0))
6002 t)))
6004 (defun org-activate-footnote-links (limit)
6005 "Add text properties for footnotes."
6006 (let ((fn (org-footnote-next-reference-or-definition limit)))
6007 (when fn
6008 (let* ((beg (nth 1 fn))
6009 (end (nth 2 fn))
6010 (label (car fn))
6011 (referencep (/= (line-beginning-position) beg)))
6012 (when (and referencep (nth 3 fn))
6013 (save-excursion
6014 (goto-char beg)
6015 (search-forward (or label "fn:"))
6016 (org-remove-flyspell-overlays-in beg (match-end 0))))
6017 (add-text-properties beg end
6018 (list 'mouse-face 'highlight
6019 'keymap org-mouse-map
6020 'help-echo
6021 (if referencep "Footnote reference"
6022 "Footnote definition")
6023 'font-lock-fontified t
6024 'font-lock-multiline t
6025 'face 'org-footnote))))))
6027 (defun org-activate-bracket-links (limit)
6028 "Add text properties for bracketed links."
6029 (if (and (re-search-forward org-bracket-link-regexp limit t)
6030 (not (org-in-src-block-p)))
6031 (let* ((hl (org-match-string-no-properties 1))
6032 (help (concat "LINK: " (save-match-data (org-link-unescape hl))))
6033 (ip (org-maybe-intangible
6034 (list 'invisible 'org-link
6035 'keymap org-mouse-map 'mouse-face 'highlight
6036 'font-lock-multiline t 'help-echo help
6037 'htmlize-link `(:uri ,hl))))
6038 (vp (list 'keymap org-mouse-map 'mouse-face 'highlight
6039 'font-lock-multiline t 'help-echo help
6040 'htmlize-link `(:uri ,hl))))
6041 ;; We need to remove the invisible property here. Table narrowing
6042 ;; may have made some of this invisible.
6043 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6044 (remove-text-properties (match-beginning 0) (match-end 0)
6045 '(invisible nil))
6046 (if (match-end 3)
6047 (progn
6048 (add-text-properties (match-beginning 0) (match-beginning 3) ip)
6049 (org-rear-nonsticky-at (match-beginning 3))
6050 (add-text-properties (match-beginning 3) (match-end 3) vp)
6051 (org-rear-nonsticky-at (match-end 3))
6052 (add-text-properties (match-end 3) (match-end 0) ip)
6053 (org-rear-nonsticky-at (match-end 0)))
6054 (add-text-properties (match-beginning 0) (match-beginning 1) ip)
6055 (org-rear-nonsticky-at (match-beginning 1))
6056 (add-text-properties (match-beginning 1) (match-end 1) vp)
6057 (org-rear-nonsticky-at (match-end 1))
6058 (add-text-properties (match-end 1) (match-end 0) ip)
6059 (org-rear-nonsticky-at (match-end 0)))
6060 t)))
6062 (defun org-activate-dates (limit)
6063 "Add text properties for dates."
6064 (if (and (re-search-forward org-tsr-regexp-both limit t)
6065 (not (equal (char-before (match-beginning 0)) 91)))
6066 (progn
6067 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6068 (add-text-properties (match-beginning 0) (match-end 0)
6069 (list 'mouse-face 'highlight
6070 'keymap org-mouse-map))
6071 (org-rear-nonsticky-at (match-end 0))
6072 (when org-display-custom-times
6073 (if (match-end 3)
6074 (org-display-custom-time (match-beginning 3) (match-end 3)))
6075 (org-display-custom-time (match-beginning 1) (match-end 1)))
6076 t)))
6078 (defvar org-target-link-regexp nil
6079 "Regular expression matching radio targets in plain text.")
6080 (make-variable-buffer-local 'org-target-link-regexp)
6082 (defconst org-target-regexp (let ((border "[^<>\n\r \t]"))
6083 (format "<<\\(%s\\|%s[^<>\n\r]*%s\\)>>"
6084 border border border))
6085 "Regular expression matching a link target.")
6087 (defconst org-radio-target-regexp (format "<%s>" org-target-regexp)
6088 "Regular expression matching a radio target.")
6090 (defconst org-any-target-regexp
6091 (format "%s\\|%s" org-radio-target-regexp org-target-regexp)
6092 "Regular expression matching any target.")
6094 (defun org-activate-target-links (limit)
6095 "Add text properties for target matches."
6096 (when org-target-link-regexp
6097 (let ((case-fold-search t))
6098 (if (re-search-forward org-target-link-regexp limit t)
6099 (progn
6100 (org-remove-flyspell-overlays-in (match-beginning 1) (match-end 1))
6101 (add-text-properties (match-beginning 1) (match-end 1)
6102 (list 'mouse-face 'highlight
6103 'keymap org-mouse-map
6104 'help-echo "Radio target link"
6105 'org-linked-text t))
6106 (org-rear-nonsticky-at (match-end 1))
6107 t)))))
6109 (defun org-update-radio-target-regexp ()
6110 "Find all radio targets in this file and update the regular expression.
6111 Also refresh fontification if needed."
6112 (interactive)
6113 (let ((old-regexp org-target-link-regexp)
6114 (before-re "\\(?:^\\|[^[:alnum:]]\\)\\(")
6115 (after-re "\\)\\(?:$\\|[^[:alnum:]]\\)")
6116 (targets
6117 (org-with-wide-buffer
6118 (goto-char (point-min))
6119 (let (rtn)
6120 (while (re-search-forward org-radio-target-regexp nil t)
6121 ;; Make sure point is really within the object.
6122 (backward-char)
6123 (let ((obj (org-element-context)))
6124 (when (eq (org-element-type obj) 'radio-target)
6125 (add-to-list 'rtn (org-element-property :value obj)))))
6126 rtn))))
6127 (setq org-target-link-regexp
6128 (and targets
6129 (concat before-re
6130 (mapconcat
6131 (lambda (x)
6132 (replace-regexp-in-string
6133 " +" "\\s-+" (regexp-quote x) t t))
6134 targets
6135 "\\|")
6136 after-re)))
6137 (unless (equal old-regexp org-target-link-regexp)
6138 ;; Clean-up cache.
6139 (let ((regexp (cond ((not old-regexp) org-target-link-regexp)
6140 ((not org-target-link-regexp) old-regexp)
6142 (concat before-re
6143 (mapconcat
6144 (lambda (re)
6145 (substring re (length before-re)
6146 (- (length after-re))))
6147 (list old-regexp org-target-link-regexp)
6148 "\\|")
6149 after-re)))))
6150 (org-with-wide-buffer
6151 (goto-char (point-min))
6152 (while (re-search-forward regexp nil t)
6153 (org-element-cache-refresh (match-beginning 1)))))
6154 ;; Re fontify buffer.
6155 (when (memq 'radio org-highlight-links)
6156 (org-restart-font-lock)))))
6158 (defun org-hide-wide-columns (limit)
6159 (let (s e)
6160 (setq s (text-property-any (point) (or limit (point-max))
6161 'org-cwidth t))
6162 (when s
6163 (setq e (next-single-property-change s 'org-cwidth))
6164 (add-text-properties s e (org-maybe-intangible '(invisible org-cwidth)))
6165 (goto-char e)
6166 t)))
6168 (defvar org-latex-and-related-regexp nil
6169 "Regular expression for highlighting LaTeX, entities and sub/superscript.")
6171 (defun org-compute-latex-and-related-regexp ()
6172 "Compute regular expression for LaTeX, entities and sub/superscript.
6173 Result depends on variable `org-highlight-latex-and-related'."
6174 (org-set-local
6175 'org-latex-and-related-regexp
6176 (let* ((re-sub
6177 (cond ((not (memq 'script org-highlight-latex-and-related)) nil)
6178 ((eq org-use-sub-superscripts '{})
6179 (list org-match-substring-with-braces-regexp))
6180 (org-use-sub-superscripts (list org-match-substring-regexp))))
6181 (re-latex
6182 (when (memq 'latex org-highlight-latex-and-related)
6183 (let ((matchers (plist-get org-format-latex-options :matchers)))
6184 (delq nil
6185 (mapcar (lambda (x)
6186 (and (member (car x) matchers) (nth 1 x)))
6187 org-latex-regexps)))))
6188 (re-entities
6189 (when (memq 'entities org-highlight-latex-and-related)
6190 (list "\\\\\\(there4\\|sup[123]\\|frac[13][24]\\|[a-zA-Z]+\\)\\($\\|{}\\|[^[:alpha:]]\\)"))))
6191 (mapconcat 'identity (append re-latex re-entities re-sub) "\\|"))))
6193 (defun org-do-latex-and-related (limit)
6194 "Highlight LaTeX snippets and environments, entities and sub/superscript.
6195 LIMIT bounds the search for syntax to highlight. Stop at first
6196 highlighted object, if any. Return t if some highlighting was
6197 done, nil otherwise."
6198 (when (org-string-nw-p org-latex-and-related-regexp)
6199 (catch 'found
6200 (while (re-search-forward org-latex-and-related-regexp limit t)
6201 (unless (memq (car-safe (get-text-property (1+ (match-beginning 0))
6202 'face))
6203 '(org-code org-verbatim underline))
6204 (let ((offset (if (memq (char-after (1+ (match-beginning 0)))
6205 '(?_ ?^))
6207 0)))
6208 (font-lock-prepend-text-property
6209 (+ offset (match-beginning 0)) (match-end 0)
6210 'face 'org-latex-and-related)
6211 (add-text-properties (+ offset (match-beginning 0)) (match-end 0)
6212 '(font-lock-multiline t)))
6213 (throw 'found t)))
6214 nil)))
6216 (defun org-restart-font-lock ()
6217 "Restart `font-lock-mode', to force refontification."
6218 (when (and (boundp 'font-lock-mode) font-lock-mode)
6219 (font-lock-mode -1)
6220 (font-lock-mode 1)))
6222 (defun org-activate-tags (limit)
6223 (if (re-search-forward (org-re "^\\*+.*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \r\n]") limit t)
6224 (progn
6225 (org-remove-flyspell-overlays-in (match-beginning 1) (match-end 1))
6226 (add-text-properties (match-beginning 1) (match-end 1)
6227 (list 'mouse-face 'highlight
6228 'keymap org-mouse-map))
6229 (org-rear-nonsticky-at (match-end 1))
6230 t)))
6232 (defun org-outline-level ()
6233 "Compute the outline level of the heading at point.
6234 If this is called at a normal headline, the level is the number of stars.
6235 Use `org-reduced-level' to remove the effect of `org-odd-levels'."
6236 (save-excursion
6237 (if (not (ignore-errors (org-back-to-heading t)))
6239 (looking-at org-outline-regexp)
6240 (1- (- (match-end 0) (match-beginning 0))))))
6242 (defvar org-font-lock-keywords nil)
6244 (defsubst org-re-property (property &optional literal allow-null)
6245 "Return a regexp matching a PROPERTY line.
6247 When optional argument LITERAL is non-nil, do not quote PROPERTY.
6248 This is useful when PROPERTY is a regexp. When ALLOW-NULL is
6249 non-nil, match properties even without a value.
6251 Match group 3 is set to the value when it exists. If there is no
6252 value and ALLOW-NULL is non-nil, it is set to the empty string."
6253 (concat
6254 "^\\(?4:[ \t]*\\)"
6255 (format "\\(?1::\\(?2:%s\\):\\)"
6256 (if literal property (regexp-quote property)))
6257 (if allow-null
6258 "\\(?:\\(?3:$\\)\\|[ \t]+\\(?3:.*?\\)\\)\\(?5:[ \t]*\\)$"
6259 "[ \t]+\\(?3:[^ \r\t\n]+.*?\\)\\(?5:[ \t]*\\)$")))
6261 (defconst org-property-re
6262 (org-re-property "\\S-+" 'literal t)
6263 "Regular expression matching a property line.
6264 There are four matching groups:
6265 1: :PROPKEY: including the leading and trailing colon,
6266 2: PROPKEY without the leading and trailing colon,
6267 3: PROPVAL without leading or trailing spaces,
6268 4: the indentation of the current line,
6269 5: trailing whitespace.")
6271 (defvar org-font-lock-hook nil
6272 "Functions to be called for special font lock stuff.")
6274 (defvar org-font-lock-set-keywords-hook nil
6275 "Functions that can manipulate `org-font-lock-extra-keywords'.
6276 This is called after `org-font-lock-extra-keywords' is defined, but before
6277 it is installed to be used by font lock. This can be useful if something
6278 needs to be inserted at a specific position in the font-lock sequence.")
6280 (defun org-font-lock-hook (limit)
6281 "Run `org-font-lock-hook' within LIMIT."
6282 (run-hook-with-args 'org-font-lock-hook limit))
6284 (defun org-set-font-lock-defaults ()
6285 "Set font lock defaults for the current buffer."
6286 (let* ((em org-fontify-emphasized-text)
6287 (lk org-highlight-links)
6288 (org-font-lock-extra-keywords
6289 (list
6290 ;; Call the hook
6291 '(org-font-lock-hook)
6292 ;; Headlines
6293 `(,(if org-fontify-whole-heading-line
6294 "^\\(\\**\\)\\(\\* \\)\\(.*\n?\\)"
6295 "^\\(\\**\\)\\(\\* \\)\\(.*\\)")
6296 (1 (org-get-level-face 1))
6297 (2 (org-get-level-face 2))
6298 (3 (org-get-level-face 3)))
6299 ;; Table lines
6300 '("^[ \t]*\\(\\(|\\|\\+-[-+]\\).*\\S-\\)"
6301 (1 'org-table t))
6302 ;; Table internals
6303 '("^[ \t]*|\\(?:.*?|\\)? *\\(:?=[^|\n]*\\)" (1 'org-formula t))
6304 '("^[ \t]*| *\\([#*]\\) *|" (1 'org-formula t))
6305 '("^[ \t]*|\\( *\\([$!_^/]\\) *|.*\\)|" (1 'org-formula t))
6306 '("| *\\(<[lrc]?[0-9]*>\\)" (1 'org-formula t))
6307 ;; Drawers
6308 '(org-fontify-drawers)
6309 ;; Properties
6310 (list org-property-re
6311 '(1 'org-special-keyword t)
6312 '(3 'org-property-value t))
6313 ;; Links
6314 (if (memq 'tag lk) '(org-activate-tags (1 'org-tag prepend)))
6315 (if (memq 'angle lk) '(org-activate-angle-links (0 'org-link t)))
6316 (if (memq 'plain lk) '(org-activate-plain-links (0 'org-link t)))
6317 (if (memq 'bracket lk) '(org-activate-bracket-links (0 'org-link t)))
6318 (if (memq 'radio lk) '(org-activate-target-links (1 'org-link t)))
6319 (if (memq 'date lk) '(org-activate-dates (0 'org-date t)))
6320 (if (memq 'footnote lk) '(org-activate-footnote-links))
6321 ;; Targets.
6322 (list org-any-target-regexp '(0 'org-target t))
6323 ;; Diary sexps.
6324 '("^&?%%(.*\\|<%%([^>\n]*?>" (0 'org-sexp-date t))
6325 ;; Macro
6326 '(org-fontify-macros)
6327 '(org-hide-wide-columns (0 nil append))
6328 ;; TODO keyword
6329 (list (format org-heading-keyword-regexp-format
6330 org-todo-regexp)
6331 '(2 (org-get-todo-face 2) t))
6332 ;; DONE
6333 (if org-fontify-done-headline
6334 (list (format org-heading-keyword-regexp-format
6335 (concat
6336 "\\(?:"
6337 (mapconcat 'regexp-quote org-done-keywords "\\|")
6338 "\\)"))
6339 '(2 'org-headline-done t))
6340 nil)
6341 ;; Priorities
6342 '(org-font-lock-add-priority-faces)
6343 ;; Tags
6344 '(org-font-lock-add-tag-faces)
6345 ;; Tags groups
6346 (if (and org-group-tags org-tag-groups-alist)
6347 (list (concat org-outline-regexp-bol ".+\\(:"
6348 (regexp-opt (mapcar 'car org-tag-groups-alist))
6349 ":\\).*$")
6350 '(1 'org-tag-group prepend)))
6351 ;; Special keywords
6352 (list (concat "\\<" org-comment-string) '(0 'org-special-keyword t))
6353 (list (concat "\\<" org-deadline-string) '(0 'org-special-keyword t))
6354 (list (concat "\\<" org-scheduled-string) '(0 'org-special-keyword t))
6355 (list (concat "\\<" org-closed-string) '(0 'org-special-keyword t))
6356 (list (concat "\\<" org-clock-string) '(0 'org-special-keyword t))
6357 ;; Emphasis
6358 (if em
6359 (if (featurep 'xemacs)
6360 '(org-do-emphasis-faces (0 nil append))
6361 '(org-do-emphasis-faces)))
6362 ;; Checkboxes
6363 '("^[ \t]*\\(?:[-+*]\\|[0-9]+[.)]\\)[ \t]+\\(?:\\[@\\(?:start:\\)?[0-9]+\\][ \t]*\\)?\\(\\[[- X]\\]\\)"
6364 1 'org-checkbox prepend)
6365 (if (cdr (assq 'checkbox org-list-automatic-rules))
6366 '("\\[\\([0-9]*%\\)\\]\\|\\[\\([0-9]*\\)/\\([0-9]*\\)\\]"
6367 (0 (org-get-checkbox-statistics-face) t)))
6368 ;; Description list items
6369 '("^[ \t]*[-+*][ \t]+\\(.*?[ \t]+::\\)\\([ \t]+\\|$\\)"
6370 1 'org-list-dt prepend)
6371 ;; ARCHIVEd headings
6372 (list (concat
6373 org-outline-regexp-bol
6374 "\\(.*:" org-archive-tag ":.*\\)")
6375 '(1 'org-archived prepend))
6376 ;; Specials
6377 '(org-do-latex-and-related)
6378 '(org-fontify-entities)
6379 '(org-raise-scripts)
6380 ;; Code
6381 '(org-activate-code (1 'org-code t))
6382 ;; COMMENT
6383 (list (format
6384 "^\\*\\(?: +%s\\)?\\(?: +\\[#[A-Z0-9]\\]\\)? +\\(?9:%s\\)\\(?: \\|$\\)"
6385 org-todo-regexp
6386 org-comment-string)
6387 '(9 'org-special-keyword t))
6388 ;; Blocks and meta lines
6389 '(org-fontify-meta-lines-and-blocks))))
6390 (setq org-font-lock-extra-keywords (delq nil org-font-lock-extra-keywords))
6391 (run-hooks 'org-font-lock-set-keywords-hook)
6392 ;; Now set the full font-lock-keywords
6393 (org-set-local 'org-font-lock-keywords org-font-lock-extra-keywords)
6394 (org-set-local 'font-lock-defaults
6395 '(org-font-lock-keywords t nil nil backward-paragraph))
6396 (kill-local-variable 'font-lock-keywords) nil))
6398 (defun org-toggle-pretty-entities ()
6399 "Toggle the composition display of entities as UTF8 characters."
6400 (interactive)
6401 (org-set-local 'org-pretty-entities (not org-pretty-entities))
6402 (org-restart-font-lock)
6403 (if org-pretty-entities
6404 (message "Entities are now displayed as UTF8 characters")
6405 (save-restriction
6406 (widen)
6407 (org-decompose-region (point-min) (point-max))
6408 (message "Entities are now displayed as plain text"))))
6410 (defvar org-custom-properties-overlays nil
6411 "List of overlays used for custom properties.")
6412 (make-variable-buffer-local 'org-custom-properties-overlays)
6414 (defun org-toggle-custom-properties-visibility ()
6415 "Display or hide properties in `org-custom-properties'."
6416 (interactive)
6417 (if org-custom-properties-overlays
6418 (progn (mapc #'delete-overlay org-custom-properties-overlays)
6419 (setq org-custom-properties-overlays nil))
6420 (when org-custom-properties
6421 (org-with-wide-buffer
6422 (goto-char (point-min))
6423 (let ((regexp (org-re-property (regexp-opt org-custom-properties) t t)))
6424 (while (re-search-forward regexp nil t)
6425 (let ((end (cdr (save-match-data (org-get-property-block)))))
6426 (when (and end (< (point) end))
6427 ;; Hide first custom property in current drawer.
6428 (let ((o (make-overlay (match-beginning 0) (1+ (match-end 0)))))
6429 (overlay-put o 'invisible t)
6430 (overlay-put o 'org-custom-property t)
6431 (push o org-custom-properties-overlays))
6432 ;; Hide additional custom properties in the same drawer.
6433 (while (re-search-forward regexp end t)
6434 (let ((o (make-overlay (match-beginning 0) (1+ (match-end 0)))))
6435 (overlay-put o 'invisible t)
6436 (overlay-put o 'org-custom-property t)
6437 (push o org-custom-properties-overlays)))))
6438 ;; Each entry is limited to a single property drawer.
6439 (outline-next-heading)))))))
6441 (defun org-fontify-entities (limit)
6442 "Find an entity to fontify."
6443 (let (ee)
6444 (when org-pretty-entities
6445 (catch 'match
6446 (while (re-search-forward
6447 "\\\\\\(there4\\|sup[123]\\|frac[13][24]\\|[a-zA-Z]+\\)\\($\\|{}\\|[^[:alpha:]\n]\\)"
6448 limit t)
6449 (if (and (not (org-at-comment-p))
6450 (setq ee (org-entity-get (match-string 1)))
6451 (= (length (nth 6 ee)) 1))
6452 (let*
6453 ((end (if (equal (match-string 2) "{}")
6454 (match-end 2)
6455 (match-end 1))))
6456 (add-text-properties
6457 (match-beginning 0) end
6458 (list 'font-lock-fontified t))
6459 (compose-region (match-beginning 0) end
6460 (nth 6 ee) nil)
6461 (backward-char 1)
6462 (throw 'match t))))
6463 nil))))
6465 (defun org-fontify-like-in-org-mode (s &optional odd-levels)
6466 "Fontify string S like in Org-mode."
6467 (with-temp-buffer
6468 (insert s)
6469 (let ((org-odd-levels-only odd-levels))
6470 (org-mode)
6471 (font-lock-ensure)
6472 (buffer-string))))
6474 (defvar org-m nil)
6475 (defvar org-l nil)
6476 (defvar org-f nil)
6477 (defun org-get-level-face (n)
6478 "Get the right face for match N in font-lock matching of headlines."
6479 (setq org-l (- (match-end 2) (match-beginning 1) 1))
6480 (if org-odd-levels-only (setq org-l (1+ (/ org-l 2))))
6481 (if org-cycle-level-faces
6482 (setq org-f (nth (% (1- org-l) org-n-level-faces) org-level-faces))
6483 (setq org-f (nth (1- (min org-l org-n-level-faces)) org-level-faces)))
6484 (cond
6485 ((eq n 1) (if org-hide-leading-stars 'org-hide org-f))
6486 ((eq n 2) org-f)
6487 (t (if org-level-color-stars-only nil org-f))))
6490 (defun org-get-todo-face (kwd)
6491 "Get the right face for a TODO keyword KWD.
6492 If KWD is a number, get the corresponding match group."
6493 (if (numberp kwd) (setq kwd (match-string kwd)))
6494 (or (org-face-from-face-or-color
6495 'todo 'org-todo (cdr (assoc kwd org-todo-keyword-faces)))
6496 (and (member kwd org-done-keywords) 'org-done)
6497 'org-todo))
6499 (defun org-face-from-face-or-color (context inherit face-or-color)
6500 "Create a face list that inherits INHERIT, but sets the foreground color.
6501 When FACE-OR-COLOR is not a string, just return it."
6502 (if (stringp face-or-color)
6503 (list :inherit inherit
6504 (cdr (assoc context org-faces-easy-properties))
6505 face-or-color)
6506 face-or-color))
6508 (defun org-font-lock-add-tag-faces (limit)
6509 "Add the special tag faces."
6510 (when (and org-tag-faces org-tags-special-faces-re)
6511 (while (re-search-forward org-tags-special-faces-re limit t)
6512 (add-text-properties (match-beginning 1) (match-end 1)
6513 (list 'face (org-get-tag-face 1)
6514 'font-lock-fontified t))
6515 (backward-char 1))))
6517 (defun org-font-lock-add-priority-faces (limit)
6518 "Add the special priority faces."
6519 (while (re-search-forward "\\[#\\([A-Z0-9]\\)\\]" limit t)
6520 (when (save-match-data (org-at-heading-p))
6521 (add-text-properties
6522 (match-beginning 0) (match-end 0)
6523 (list 'face (or (org-face-from-face-or-color
6524 'priority 'org-priority
6525 (cdr (assoc (char-after (match-beginning 1))
6526 org-priority-faces)))
6527 'org-priority)
6528 'font-lock-fontified t)))))
6530 (defun org-get-tag-face (kwd)
6531 "Get the right face for a TODO keyword KWD.
6532 If KWD is a number, get the corresponding match group."
6533 (if (numberp kwd) (setq kwd (match-string kwd)))
6534 (or (org-face-from-face-or-color
6535 'tag 'org-tag (cdr (assoc kwd org-tag-faces)))
6536 'org-tag))
6538 (defun org-unfontify-region (beg end &optional maybe_loudly)
6539 "Remove fontification and activation overlays from links."
6540 (font-lock-default-unfontify-region beg end)
6541 (let* ((buffer-undo-list t)
6542 (inhibit-read-only t) (inhibit-point-motion-hooks t)
6543 (inhibit-modification-hooks t)
6544 deactivate-mark buffer-file-name buffer-file-truename)
6545 (org-decompose-region beg end)
6546 (remove-text-properties beg end
6547 '(mouse-face t keymap t org-linked-text t
6548 invisible t intangible t
6549 org-emphasis t))
6550 (org-remove-font-lock-display-properties beg end)))
6552 (defconst org-script-display '(((raise -0.3) (height 0.7))
6553 ((raise 0.3) (height 0.7))
6554 ((raise -0.5))
6555 ((raise 0.5)))
6556 "Display properties for showing superscripts and subscripts.")
6558 (defun org-remove-font-lock-display-properties (beg end)
6559 "Remove specific display properties that have been added by font lock.
6560 The will remove the raise properties that are used to show superscripts
6561 and subscripts."
6562 (let (next prop)
6563 (while (< beg end)
6564 (setq next (next-single-property-change beg 'display nil end)
6565 prop (get-text-property beg 'display))
6566 (if (member prop org-script-display)
6567 (put-text-property beg next 'display nil))
6568 (setq beg next))))
6570 (defun org-raise-scripts (limit)
6571 "Add raise properties to sub/superscripts."
6572 (when (and org-pretty-entities org-pretty-entities-include-sub-superscripts)
6573 (if (re-search-forward
6574 (if (eq org-use-sub-superscripts t)
6575 org-match-substring-regexp
6576 org-match-substring-with-braces-regexp)
6577 limit t)
6578 (let* ((pos (point)) table-p comment-p
6579 (mpos (match-beginning 3))
6580 (emph-p (get-text-property mpos 'org-emphasis))
6581 (link-p (get-text-property mpos 'mouse-face))
6582 (keyw-p (eq 'org-special-keyword (get-text-property mpos 'face))))
6583 (goto-char (point-at-bol))
6584 (setq table-p (org-looking-at-p org-table-dataline-regexp)
6585 comment-p (org-looking-at-p "^[ \t]*#[ +]"))
6586 (goto-char pos)
6587 ;; Handle a_b^c
6588 (if (member (char-after) '(?_ ?^)) (goto-char (1- pos)))
6589 (if (or comment-p emph-p link-p keyw-p)
6591 (put-text-property (match-beginning 3) (match-end 0)
6592 'display
6593 (if (equal (char-after (match-beginning 2)) ?^)
6594 (nth (if table-p 3 1) org-script-display)
6595 (nth (if table-p 2 0) org-script-display)))
6596 (add-text-properties (match-beginning 2) (match-end 2)
6597 (list 'invisible t
6598 'org-dwidth t 'org-dwidth-n 1))
6599 (if (and (eq (char-after (match-beginning 3)) ?{)
6600 (eq (char-before (match-end 3)) ?}))
6601 (progn
6602 (add-text-properties
6603 (match-beginning 3) (1+ (match-beginning 3))
6604 (list 'invisible t 'org-dwidth t 'org-dwidth-n 1))
6605 (add-text-properties
6606 (1- (match-end 3)) (match-end 3)
6607 (list 'invisible t 'org-dwidth t 'org-dwidth-n 1))))
6608 t)))))
6610 ;;;; Visibility cycling, including org-goto and indirect buffer
6612 ;;; Cycling
6614 (defvar org-cycle-global-status nil)
6615 (make-variable-buffer-local 'org-cycle-global-status)
6616 (put 'org-cycle-global-status 'org-state t)
6617 (defvar org-cycle-subtree-status nil)
6618 (make-variable-buffer-local 'org-cycle-subtree-status)
6619 (put 'org-cycle-subtree-status 'org-state t)
6621 (defvar org-inlinetask-min-level)
6623 (defun org-unlogged-message (&rest args)
6624 "Display a message, but avoid logging it in the *Messages* buffer."
6625 (let ((message-log-max nil))
6626 (apply 'message args)))
6628 ;;;###autoload
6629 (defun org-cycle (&optional arg)
6630 "TAB-action and visibility cycling for Org-mode.
6632 This is the command invoked in Org-mode by the TAB key. Its main purpose
6633 is outline visibility cycling, but it also invokes other actions
6634 in special contexts.
6636 - When this function is called with a prefix argument, rotate the entire
6637 buffer through 3 states (global cycling)
6638 1. OVERVIEW: Show only top-level headlines.
6639 2. CONTENTS: Show all headlines of all levels, but no body text.
6640 3. SHOW ALL: Show everything.
6641 When called with two `C-u C-u' prefixes, switch to the startup visibility,
6642 determined by the variable `org-startup-folded', and by any VISIBILITY
6643 properties in the buffer.
6644 When called with three `C-u C-u C-u' prefixed, show the entire buffer,
6645 including any drawers.
6647 - When inside a table, re-align the table and move to the next field.
6649 - When point is at the beginning of a headline, rotate the subtree started
6650 by this line through 3 different states (local cycling)
6651 1. FOLDED: Only the main headline is shown.
6652 2. CHILDREN: The main headline and the direct children are shown.
6653 From this state, you can move to one of the children
6654 and zoom in further.
6655 3. SUBTREE: Show the entire subtree, including body text.
6656 If there is no subtree, switch directly from CHILDREN to FOLDED.
6658 - When point is at the beginning of an empty headline and the variable
6659 `org-cycle-level-after-item/entry-creation' is set, cycle the level
6660 of the headline by demoting and promoting it to likely levels. This
6661 speeds up creation document structure by pressing TAB once or several
6662 times right after creating a new headline.
6664 - When there is a numeric prefix, go up to a heading with level ARG, do
6665 a `show-subtree' and return to the previous cursor position. If ARG
6666 is negative, go up that many levels.
6668 - When point is not at the beginning of a headline, execute the global
6669 binding for TAB, which is re-indenting the line. See the option
6670 `org-cycle-emulate-tab' for details.
6672 - Special case: if point is at the beginning of the buffer and there is
6673 no headline in line 1, this function will act as if called with prefix arg
6674 (C-u TAB, same as S-TAB) also when called without prefix arg.
6675 But only if also the variable `org-cycle-global-at-bob' is t."
6676 (interactive "P")
6677 (org-load-modules-maybe)
6678 (unless (or (run-hook-with-args-until-success 'org-tab-first-hook)
6679 (and org-cycle-level-after-item/entry-creation
6680 (or (org-cycle-level)
6681 (org-cycle-item-indentation))))
6682 (let* ((limit-level
6683 (or org-cycle-max-level
6684 (and (boundp 'org-inlinetask-min-level)
6685 org-inlinetask-min-level
6686 (1- org-inlinetask-min-level))))
6687 (nstars (and limit-level
6688 (if org-odd-levels-only
6689 (and limit-level (1- (* limit-level 2)))
6690 limit-level)))
6691 (org-outline-regexp
6692 (if (not (derived-mode-p 'org-mode))
6693 outline-regexp
6694 (concat "\\*" (if nstars (format "\\{1,%d\\} " nstars) "+ "))))
6695 (bob-special (and org-cycle-global-at-bob (not arg) (bobp)
6696 (not (looking-at org-outline-regexp))))
6697 (org-cycle-hook
6698 (if bob-special
6699 (delq 'org-optimize-window-after-visibility-change
6700 (copy-sequence org-cycle-hook))
6701 org-cycle-hook))
6702 (pos (point)))
6704 (if (or bob-special (equal arg '(4)))
6705 ;; special case: use global cycling
6706 (setq arg t))
6708 (cond
6710 ((equal arg '(16))
6711 (setq last-command 'dummy)
6712 (org-set-startup-visibility)
6713 (org-unlogged-message "Startup visibility, plus VISIBILITY properties"))
6715 ((equal arg '(64))
6716 (show-all)
6717 (org-unlogged-message "Entire buffer visible, including drawers"))
6719 ;; Try cdlatex TAB completion
6720 ((org-try-cdlatex-tab))
6722 ;; Table: enter it or move to the next field.
6723 ((org-at-table-p 'any)
6724 (if (org-at-table.el-p)
6725 (message "Use C-c ' to edit table.el tables")
6726 (if arg (org-table-edit-field t)
6727 (org-table-justify-field-maybe)
6728 (call-interactively 'org-table-next-field))))
6730 ((run-hook-with-args-until-success
6731 'org-tab-after-check-for-table-hook))
6733 ;; Global cycling: delegate to `org-cycle-internal-global'.
6734 ((eq arg t) (org-cycle-internal-global))
6736 ;; Drawers: delegate to `org-flag-drawer'.
6737 ((save-excursion
6738 (beginning-of-line 1)
6739 (looking-at org-drawer-regexp))
6740 (org-flag-drawer ; toggle block visibility
6741 (not (get-char-property (match-end 0) 'invisible))))
6743 ;; Show-subtree, ARG levels up from here.
6744 ((integerp arg)
6745 (save-excursion
6746 (org-back-to-heading)
6747 (outline-up-heading (if (< arg 0) (- arg)
6748 (- (funcall outline-level) arg)))
6749 (org-show-subtree)))
6751 ;; Inline task: delegate to `org-inlinetask-toggle-visibility'.
6752 ((and (featurep 'org-inlinetask)
6753 (org-inlinetask-at-task-p)
6754 (or (bolp) (not (eq org-cycle-emulate-tab 'exc-hl-bol))))
6755 (org-inlinetask-toggle-visibility))
6757 ;; At an item/headline: delegate to `org-cycle-internal-local'.
6758 ((and (or (and org-cycle-include-plain-lists (org-at-item-p))
6759 (save-excursion (beginning-of-line 1)
6760 (looking-at org-outline-regexp)))
6761 (or (bolp) (not (eq org-cycle-emulate-tab 'exc-hl-bol))))
6762 (org-cycle-internal-local))
6764 ;; From there: TAB emulation and template completion.
6765 (buffer-read-only (org-back-to-heading))
6767 ((run-hook-with-args-until-success
6768 'org-tab-after-check-for-cycling-hook))
6770 ((org-try-structure-completion))
6772 ((run-hook-with-args-until-success
6773 'org-tab-before-tab-emulation-hook))
6775 ((and (eq org-cycle-emulate-tab 'exc-hl-bol)
6776 (or (not (bolp))
6777 (not (looking-at org-outline-regexp))))
6778 (call-interactively (global-key-binding "\t")))
6780 ((if (and (memq org-cycle-emulate-tab '(white whitestart))
6781 (save-excursion (beginning-of-line 1) (looking-at "[ \t]*"))
6782 (or (and (eq org-cycle-emulate-tab 'white)
6783 (= (match-end 0) (point-at-eol)))
6784 (and (eq org-cycle-emulate-tab 'whitestart)
6785 (>= (match-end 0) pos))))
6787 (eq org-cycle-emulate-tab t))
6788 (call-interactively (global-key-binding "\t")))
6790 (t (save-excursion
6791 (org-back-to-heading)
6792 (org-cycle)))))))
6794 (defun org-cycle-internal-global ()
6795 "Do the global cycling action."
6796 ;; Hack to avoid display of messages for .org attachments in Gnus
6797 (let ((ga (string-match "\\*fontification" (buffer-name))))
6798 (cond
6799 ((and (eq last-command this-command)
6800 (eq org-cycle-global-status 'overview))
6801 ;; We just created the overview - now do table of contents
6802 ;; This can be slow in very large buffers, so indicate action
6803 (run-hook-with-args 'org-pre-cycle-hook 'contents)
6804 (unless ga (org-unlogged-message "CONTENTS..."))
6805 (org-content)
6806 (unless ga (org-unlogged-message "CONTENTS...done"))
6807 (setq org-cycle-global-status 'contents)
6808 (run-hook-with-args 'org-cycle-hook 'contents))
6810 ((and (eq last-command this-command)
6811 (eq org-cycle-global-status 'contents))
6812 ;; We just showed the table of contents - now show everything
6813 (run-hook-with-args 'org-pre-cycle-hook 'all)
6814 (show-all)
6815 (unless ga (org-unlogged-message "SHOW ALL"))
6816 (setq org-cycle-global-status 'all)
6817 (run-hook-with-args 'org-cycle-hook 'all))
6820 ;; Default action: go to overview
6821 (run-hook-with-args 'org-pre-cycle-hook 'overview)
6822 (org-overview)
6823 (unless ga (org-unlogged-message "OVERVIEW"))
6824 (setq org-cycle-global-status 'overview)
6825 (run-hook-with-args 'org-cycle-hook 'overview)))))
6827 (defvar org-called-with-limited-levels nil
6828 "Non-nil when `org-with-limited-levels' is currently active.")
6830 (defun org-cycle-internal-local ()
6831 "Do the local cycling action."
6832 (let ((goal-column 0) eoh eol eos has-children children-skipped struct)
6833 ;; First, determine end of headline (EOH), end of subtree or item
6834 ;; (EOS), and if item or heading has children (HAS-CHILDREN).
6835 (save-excursion
6836 (if (org-at-item-p)
6837 (progn
6838 (beginning-of-line)
6839 (setq struct (org-list-struct))
6840 (setq eoh (point-at-eol))
6841 (setq eos (org-list-get-item-end-before-blank (point) struct))
6842 (setq has-children (org-list-has-child-p (point) struct)))
6843 (org-back-to-heading)
6844 (setq eoh (save-excursion (outline-end-of-heading) (point)))
6845 (setq eos (save-excursion (org-end-of-subtree t t)
6846 (when (bolp) (backward-char)) (point)))
6847 (setq has-children
6848 (or (save-excursion
6849 (let ((level (funcall outline-level)))
6850 (outline-next-heading)
6851 (and (org-at-heading-p t)
6852 (> (funcall outline-level) level))))
6853 (save-excursion
6854 (org-list-search-forward (org-item-beginning-re) eos t)))))
6855 ;; Determine end invisible part of buffer (EOL)
6856 (beginning-of-line 2)
6857 ;; XEmacs doesn't have `next-single-char-property-change'
6858 (if (featurep 'xemacs)
6859 (while (and (not (eobp)) ;; this is like `next-line'
6860 (get-char-property (1- (point)) 'invisible))
6861 (beginning-of-line 2))
6862 (while (and (not (eobp)) ;; this is like `next-line'
6863 (get-char-property (1- (point)) 'invisible))
6864 (goto-char (next-single-char-property-change (point) 'invisible))
6865 (and (eolp) (beginning-of-line 2))))
6866 (setq eol (point)))
6867 ;; Find out what to do next and set `this-command'
6868 (cond
6869 ((= eos eoh)
6870 ;; Nothing is hidden behind this heading
6871 (unless (org-before-first-heading-p)
6872 (run-hook-with-args 'org-pre-cycle-hook 'empty))
6873 (org-unlogged-message "EMPTY ENTRY")
6874 (setq org-cycle-subtree-status nil)
6875 (save-excursion
6876 (goto-char eos)
6877 (outline-next-heading)
6878 (if (outline-invisible-p) (org-flag-heading nil))))
6879 ((and (or (>= eol eos)
6880 (not (string-match "\\S-" (buffer-substring eol eos))))
6881 (or has-children
6882 (not (setq children-skipped
6883 org-cycle-skip-children-state-if-no-children))))
6884 ;; Entire subtree is hidden in one line: children view
6885 (unless (org-before-first-heading-p)
6886 (run-hook-with-args 'org-pre-cycle-hook 'children))
6887 (if (org-at-item-p)
6888 (org-list-set-item-visibility (point-at-bol) struct 'children)
6889 (org-show-entry)
6890 (org-with-limited-levels (show-children))
6891 ;; FIXME: This slows down the func way too much.
6892 ;; How keep drawers hidden in subtree anyway?
6893 ;; (when (memq 'org-cycle-hide-drawers org-cycle-hook)
6894 ;; (org-cycle-hide-drawers 'subtree))
6896 ;; Fold every list in subtree to top-level items.
6897 (when (eq org-cycle-include-plain-lists 'integrate)
6898 (save-excursion
6899 (org-back-to-heading)
6900 (while (org-list-search-forward (org-item-beginning-re) eos t)
6901 (beginning-of-line 1)
6902 (let* ((struct (org-list-struct))
6903 (prevs (org-list-prevs-alist struct))
6904 (end (org-list-get-bottom-point struct)))
6905 (mapc (lambda (e) (org-list-set-item-visibility e struct 'folded))
6906 (org-list-get-all-items (point) struct prevs))
6907 (goto-char (if (< end eos) end eos)))))))
6908 (org-unlogged-message "CHILDREN")
6909 (save-excursion
6910 (goto-char eos)
6911 (outline-next-heading)
6912 (if (outline-invisible-p) (org-flag-heading nil)))
6913 (setq org-cycle-subtree-status 'children)
6914 (unless (org-before-first-heading-p)
6915 (run-hook-with-args 'org-cycle-hook 'children)))
6916 ((or children-skipped
6917 (and (eq last-command this-command)
6918 (eq org-cycle-subtree-status 'children)))
6919 ;; We just showed the children, or no children are there,
6920 ;; now show everything.
6921 (unless (org-before-first-heading-p)
6922 (run-hook-with-args 'org-pre-cycle-hook 'subtree))
6923 (outline-flag-region eoh eos nil)
6924 (org-unlogged-message
6925 (if children-skipped "SUBTREE (NO CHILDREN)" "SUBTREE"))
6926 (setq org-cycle-subtree-status 'subtree)
6927 (unless (org-before-first-heading-p)
6928 (run-hook-with-args 'org-cycle-hook 'subtree)))
6930 ;; Default action: hide the subtree.
6931 (run-hook-with-args 'org-pre-cycle-hook 'folded)
6932 (outline-flag-region eoh eos t)
6933 (org-unlogged-message "FOLDED")
6934 (setq org-cycle-subtree-status 'folded)
6935 (unless (org-before-first-heading-p)
6936 (run-hook-with-args 'org-cycle-hook 'folded))))))
6938 ;;;###autoload
6939 (defun org-global-cycle (&optional arg)
6940 "Cycle the global visibility. For details see `org-cycle'.
6941 With \\[universal-argument] prefix arg, switch to startup visibility.
6942 With a numeric prefix, show all headlines up to that level."
6943 (interactive "P")
6944 (let ((org-cycle-include-plain-lists
6945 (if (derived-mode-p 'org-mode) org-cycle-include-plain-lists nil)))
6946 (cond
6947 ((integerp arg)
6948 (show-all)
6949 (hide-sublevels arg)
6950 (setq org-cycle-global-status 'contents))
6951 ((equal arg '(4))
6952 (org-set-startup-visibility)
6953 (org-unlogged-message "Startup visibility, plus VISIBILITY properties."))
6955 (org-cycle '(4))))))
6957 (defun org-set-startup-visibility ()
6958 "Set the visibility required by startup options and properties."
6959 (cond
6960 ((eq org-startup-folded t)
6961 (org-overview))
6962 ((eq org-startup-folded 'content)
6963 (org-content))
6964 ((or (eq org-startup-folded 'showeverything)
6965 (eq org-startup-folded nil))
6966 (show-all)))
6967 (unless (eq org-startup-folded 'showeverything)
6968 (if org-hide-block-startup (org-hide-block-all))
6969 (org-set-visibility-according-to-property 'no-cleanup)
6970 (org-cycle-hide-archived-subtrees 'all)
6971 (org-cycle-hide-drawers 'all)
6972 (org-cycle-show-empty-lines t)))
6974 (defun org-set-visibility-according-to-property (&optional no-cleanup)
6975 "Switch subtree visibilities according to :VISIBILITY: property."
6976 (interactive)
6977 (let (org-show-entry-below state)
6978 (save-excursion
6979 (goto-char (point-min))
6980 (while (re-search-forward
6981 "^[ \t]*:VISIBILITY:[ \t]+\\([a-z]+\\)"
6982 nil t)
6983 (setq state (match-string 1))
6984 (save-excursion
6985 (org-back-to-heading t)
6986 (hide-subtree)
6987 (org-reveal)
6988 (cond
6989 ((equal state '("fold" "folded"))
6990 (hide-subtree))
6991 ((equal state "children")
6992 (org-show-hidden-entry)
6993 (show-children))
6994 ((equal state "content")
6995 (save-excursion
6996 (save-restriction
6997 (org-narrow-to-subtree)
6998 (org-content))))
6999 ((member state '("all" "showall"))
7000 (show-subtree)))))
7001 (unless no-cleanup
7002 (org-cycle-hide-archived-subtrees 'all)
7003 (org-cycle-hide-drawers 'all)
7004 (org-cycle-show-empty-lines 'all)))))
7006 ;; This function uses outline-regexp instead of the more fundamental
7007 ;; org-outline-regexp so that org-cycle-global works outside of Org
7008 ;; buffers, where outline-regexp is needed.
7009 (defun org-overview ()
7010 "Switch to overview mode, showing only top-level headlines.
7011 This shows all headlines with a level equal or greater than the level
7012 of the first headline in the buffer. This is important, because if the
7013 first headline is not level one, then (hide-sublevels 1) gives confusing
7014 results."
7015 (interactive)
7016 (save-excursion
7017 (let ((level
7018 (save-excursion
7019 (goto-char (point-min))
7020 (if (re-search-forward (concat "^" outline-regexp) nil t)
7021 (progn
7022 (goto-char (match-beginning 0))
7023 (funcall outline-level))))))
7024 (and level (hide-sublevels level)))))
7026 (defun org-content (&optional arg)
7027 "Show all headlines in the buffer, like a table of contents.
7028 With numerical argument N, show content up to level N."
7029 (interactive "P")
7030 (org-overview)
7031 (save-excursion
7032 ;; Visit all headings and show their offspring
7033 (and (integerp arg) (org-overview))
7034 (goto-char (point-max))
7035 (catch 'exit
7036 (while (and (progn (condition-case nil
7037 (outline-previous-visible-heading 1)
7038 (error (goto-char (point-min))))
7040 (looking-at org-outline-regexp))
7041 (if (integerp arg)
7042 (show-children (1- arg))
7043 (show-branches))
7044 (if (bobp) (throw 'exit nil))))))
7046 (defun org-optimize-window-after-visibility-change (state)
7047 "Adjust the window after a change in outline visibility.
7048 This function is the default value of the hook `org-cycle-hook'."
7049 (when (get-buffer-window (current-buffer))
7050 (cond
7051 ((eq state 'content) nil)
7052 ((eq state 'all) nil)
7053 ((eq state 'folded) nil)
7054 ((eq state 'children) (or (org-subtree-end-visible-p) (recenter 1)))
7055 ((eq state 'subtree) (or (org-subtree-end-visible-p) (recenter 1))))))
7057 (defun org-remove-empty-overlays-at (pos)
7058 "Remove outline overlays that do not contain non-white stuff."
7059 (mapc
7060 (lambda (o)
7061 (and (eq 'outline (overlay-get o 'invisible))
7062 (not (string-match "\\S-" (buffer-substring (overlay-start o)
7063 (overlay-end o))))
7064 (delete-overlay o)))
7065 (overlays-at pos)))
7067 (defun org-clean-visibility-after-subtree-move ()
7068 "Fix visibility issues after moving a subtree."
7069 ;; First, find a reasonable region to look at:
7070 ;; Start two siblings above, end three below
7071 (let* ((beg (save-excursion
7072 (and (org-get-last-sibling)
7073 (org-get-last-sibling))
7074 (point)))
7075 (end (save-excursion
7076 (and (org-get-next-sibling)
7077 (org-get-next-sibling)
7078 (org-get-next-sibling))
7079 (if (org-at-heading-p)
7080 (point-at-eol)
7081 (point))))
7082 (level (looking-at "\\*+"))
7083 (re (if level (concat "^" (regexp-quote (match-string 0)) " "))))
7084 (save-excursion
7085 (save-restriction
7086 (narrow-to-region beg end)
7087 (when re
7088 ;; Properly fold already folded siblings
7089 (goto-char (point-min))
7090 (while (re-search-forward re nil t)
7091 (if (and (not (outline-invisible-p))
7092 (save-excursion
7093 (goto-char (point-at-eol)) (outline-invisible-p)))
7094 (hide-entry))))
7095 (org-cycle-show-empty-lines 'overview)
7096 (org-cycle-hide-drawers 'overview)))))
7098 (defun org-cycle-show-empty-lines (state)
7099 "Show empty lines above all visible headlines.
7100 The region to be covered depends on STATE when called through
7101 `org-cycle-hook'. Lisp program can use t for STATE to get the
7102 entire buffer covered. Note that an empty line is only shown if there
7103 are at least `org-cycle-separator-lines' empty lines before the headline."
7104 (when (not (= org-cycle-separator-lines 0))
7105 (save-excursion
7106 (let* ((n (abs org-cycle-separator-lines))
7107 (re (cond
7108 ((= n 1) "\\(\n[ \t]*\n\\*+\\) ")
7109 ((= n 2) "^[ \t]*\\(\n[ \t]*\n\\*+\\) ")
7110 (t (let ((ns (number-to-string (- n 2))))
7111 (concat "^\\(?:[ \t]*\n\\)\\{" ns "," ns "\\}"
7112 "[ \t]*\\(\n[ \t]*\n\\*+\\) ")))))
7113 beg end b e)
7114 (cond
7115 ((memq state '(overview contents t))
7116 (setq beg (point-min) end (point-max)))
7117 ((memq state '(children folded))
7118 (setq beg (point) end (progn (org-end-of-subtree t t)
7119 (beginning-of-line 2)
7120 (point)))))
7121 (when beg
7122 (goto-char beg)
7123 (while (re-search-forward re end t)
7124 (unless (get-char-property (match-end 1) 'invisible)
7125 (setq e (match-end 1))
7126 (if (< org-cycle-separator-lines 0)
7127 (setq b (save-excursion
7128 (goto-char (match-beginning 0))
7129 (org-back-over-empty-lines)
7130 (if (save-excursion
7131 (goto-char (max (point-min) (1- (point))))
7132 (org-at-heading-p))
7133 (1- (point))
7134 (point))))
7135 (setq b (match-beginning 1)))
7136 (outline-flag-region b e nil)))))))
7137 ;; Never hide empty lines at the end of the file.
7138 (save-excursion
7139 (goto-char (point-max))
7140 (outline-previous-heading)
7141 (outline-end-of-heading)
7142 (if (and (looking-at "[ \t\n]+")
7143 (= (match-end 0) (point-max)))
7144 (outline-flag-region (point) (match-end 0) nil))))
7146 (defun org-show-empty-lines-in-parent ()
7147 "Move to the parent and re-show empty lines before visible headlines."
7148 (save-excursion
7149 (let ((context (if (org-up-heading-safe) 'children 'overview)))
7150 (org-cycle-show-empty-lines context))))
7152 (defun org-files-list ()
7153 "Return `org-agenda-files' list, plus all open org-mode files.
7154 This is useful for operations that need to scan all of a user's
7155 open and agenda-wise Org files."
7156 (let ((files (mapcar 'expand-file-name (org-agenda-files))))
7157 (dolist (buf (buffer-list))
7158 (with-current-buffer buf
7159 (if (and (derived-mode-p 'org-mode) (buffer-file-name))
7160 (let ((file (expand-file-name (buffer-file-name))))
7161 (unless (member file files)
7162 (push file files))))))
7163 files))
7165 (defsubst org-entry-beginning-position ()
7166 "Return the beginning position of the current entry."
7167 (save-excursion (outline-back-to-heading t) (point)))
7169 (defsubst org-entry-end-position ()
7170 "Return the end position of the current entry."
7171 (save-excursion (outline-next-heading) (point)))
7173 (defun org-cycle-hide-drawers (state &optional exceptions)
7174 "Re-hide all drawers after a visibility state change.
7175 When non-nil, optional argument EXCEPTIONS is a list of strings
7176 specifying which drawers should not be hidden."
7177 (when (and (derived-mode-p 'org-mode)
7178 (not (memq state '(overview folded contents))))
7179 (save-excursion
7180 (let* ((globalp (memq state '(contents all)))
7181 (beg (if globalp (point-min) (point)))
7182 (end (if globalp (point-max)
7183 (if (eq state 'children)
7184 (save-excursion (outline-next-heading) (point))
7185 (org-end-of-subtree t)))))
7186 (goto-char beg)
7187 (while (re-search-forward org-drawer-regexp (max end (point)) t)
7188 (unless (member-ignore-case (match-string 1) exceptions)
7189 (let ((drawer (org-element-at-point)))
7190 (when (memq (org-element-type drawer) '(drawer property-drawer))
7191 (org-flag-drawer t drawer)
7192 ;; Make sure to skip drawer entirely or we might flag
7193 ;; it another time when matching its ending line with
7194 ;; `org-drawer-regexp'.
7195 (goto-char (org-element-property :end drawer))))))))))
7197 (defun org-cycle-hide-inline-tasks (state)
7198 "Re-hide inline tasks when switching to 'contents or 'children
7199 visibility state."
7200 (case state
7201 (contents
7202 (when (org-bound-and-true-p org-inlinetask-min-level)
7203 (hide-sublevels (1- org-inlinetask-min-level))))
7204 (children
7205 (when (featurep 'org-inlinetask)
7206 (save-excursion
7207 (while (and (outline-next-heading)
7208 (org-inlinetask-at-task-p))
7209 (org-inlinetask-toggle-visibility)
7210 (org-inlinetask-goto-end)))))))
7212 (defun org-flag-drawer (flag &optional element)
7213 "When FLAG is non-nil, hide the drawer we are at.
7214 Otherwise make it visible. When optional argument ELEMENT is
7215 a parsed drawer, as returned by `org-element-at-point', hide or
7216 show that drawer instead."
7217 (when (save-excursion
7218 (beginning-of-line)
7219 (org-looking-at-p org-drawer-regexp))
7220 (let ((drawer (or element (org-element-at-point))))
7221 (when (memq (org-element-type drawer) '(drawer property-drawer))
7222 (let ((post (org-element-property :post-affiliated drawer)))
7223 (save-excursion
7224 (outline-flag-region
7225 (progn (goto-char post) (line-end-position))
7226 (progn (goto-char (org-element-property :end drawer))
7227 (skip-chars-backward " \r\t\n")
7228 (line-end-position))
7229 flag))
7230 ;; When the drawer is hidden away, make sure point lies in
7231 ;; a visible part of the buffer.
7232 (when (and flag (> (line-beginning-position) post))
7233 (goto-char post)))))))
7235 (defun org-subtree-end-visible-p ()
7236 "Is the end of the current subtree visible?"
7237 (pos-visible-in-window-p
7238 (save-excursion (org-end-of-subtree t) (point))))
7240 (defun org-first-headline-recenter ()
7241 "Move cursor to the first headline and recenter the headline."
7242 (goto-char (point-min))
7243 (when (re-search-forward (concat "^\\(" org-outline-regexp "\\)") nil t)
7244 (set-window-start (selected-window) (point-at-bol))))
7246 ;;; Saving and restoring visibility
7248 (defun org-outline-overlay-data (&optional use-markers)
7249 "Return a list of the locations of all outline overlays.
7250 These are overlays with the `invisible' property value `outline'.
7251 The return value is a list of cons cells, with start and stop
7252 positions for each overlay.
7253 If USE-MARKERS is set, return the positions as markers."
7254 (let (beg end)
7255 (save-excursion
7256 (save-restriction
7257 (widen)
7258 (delq nil
7259 (mapcar (lambda (o)
7260 (when (eq (overlay-get o 'invisible) 'outline)
7261 (setq beg (overlay-start o)
7262 end (overlay-end o))
7263 (and beg end (> end beg)
7264 (if use-markers
7265 (cons (copy-marker beg)
7266 (copy-marker end t))
7267 (cons beg end)))))
7268 (overlays-in (point-min) (point-max))))))))
7270 (defun org-set-outline-overlay-data (data)
7271 "Create visibility overlays for all positions in DATA.
7272 DATA should have been made by `org-outline-overlay-data'."
7273 (let (o)
7274 (save-excursion
7275 (save-restriction
7276 (widen)
7277 (show-all)
7278 (mapc (lambda (c)
7279 (outline-flag-region (car c) (cdr c) t))
7280 data)))))
7282 ;;; Folding of blocks
7284 (defvar org-hide-block-overlays nil
7285 "Overlays hiding blocks.")
7286 (make-variable-buffer-local 'org-hide-block-overlays)
7288 (defun org-block-map (function &optional start end)
7289 "Call FUNCTION at the head of all source blocks in the current buffer.
7290 Optional arguments START and END can be used to limit the range."
7291 (let ((start (or start (point-min)))
7292 (end (or end (point-max))))
7293 (save-excursion
7294 (goto-char start)
7295 (while (and (< (point) end) (re-search-forward org-block-regexp end t))
7296 (save-excursion
7297 (save-match-data
7298 (goto-char (match-beginning 0))
7299 (funcall function)))))))
7301 (defun org-hide-block-toggle-all ()
7302 "Toggle the visibility of all blocks in the current buffer."
7303 (org-block-map 'org-hide-block-toggle))
7305 (defun org-hide-block-all ()
7306 "Fold all blocks in the current buffer."
7307 (interactive)
7308 (org-show-block-all)
7309 (org-block-map 'org-hide-block-toggle-maybe))
7311 (defun org-show-block-all ()
7312 "Unfold all blocks in the current buffer."
7313 (interactive)
7314 (mapc 'delete-overlay org-hide-block-overlays)
7315 (setq org-hide-block-overlays nil))
7317 (defun org-hide-block-toggle-maybe ()
7318 "Toggle visibility of block at point.
7319 Unlike to `org-hide-block-toggle', this function does not throw
7320 an error. Return a non-nil value when toggling is successful."
7321 (interactive)
7322 (ignore-errors (org-hide-block-toggle)))
7324 (defun org-hide-block-toggle (&optional force)
7325 "Toggle the visibility of the current block.
7326 When optional argument FORCE is `off', make block visible. If it
7327 is non-nil, hide it unconditionally. Throw an error when not at
7328 a block. Return a non-nil value when toggling is successful."
7329 (interactive)
7330 (let ((element (org-element-at-point)))
7331 (unless (memq (org-element-type element)
7332 '(center-block comment-block dynamic-block example-block
7333 export-block quote-block special-block
7334 src-block verse-block))
7335 (user-error "Not at a block"))
7336 (let* ((start (save-excursion
7337 (goto-char (org-element-property :post-affiliated element))
7338 (line-end-position)))
7339 (end (save-excursion
7340 (goto-char (org-element-property :end element))
7341 (skip-chars-backward " \r\t\n")
7342 (line-end-position)))
7343 (overlays (overlays-at start)))
7344 (cond
7345 ;; Do nothing when not before or at the block opening line or
7346 ;; at the block closing line.
7347 ((let ((eol (line-end-position))) (and (> eol start) (/= eol end))) nil)
7348 ((and (not (eq force 'off))
7349 (not (memq t (mapcar
7350 (lambda (o)
7351 (eq (overlay-get o 'invisible) 'org-hide-block))
7352 overlays))))
7353 (let ((ov (make-overlay start end)))
7354 (overlay-put ov 'invisible 'org-hide-block)
7355 ;; Make the block accessible to `isearch'.
7356 (overlay-put
7357 ov 'isearch-open-invisible
7358 (lambda (ov)
7359 (when (memq ov org-hide-block-overlays)
7360 (setq org-hide-block-overlays (delq ov org-hide-block-overlays)))
7361 (when (eq (overlay-get ov 'invisible) 'org-hide-block)
7362 (delete-overlay ov))))
7363 (push ov org-hide-block-overlays)
7364 ;; When the block is hidden away, make sure point is left in
7365 ;; a visible part of the buffer.
7366 (when (> (line-beginning-position) start)
7367 (goto-char start)
7368 (beginning-of-line))
7369 ;; Signal successful toggling.
7371 ((or (not force) (eq force 'off))
7372 (dolist (ov overlays t)
7373 (when (memq ov org-hide-block-overlays)
7374 (setq org-hide-block-overlays (delq ov org-hide-block-overlays)))
7375 (when (eq (overlay-get ov 'invisible) 'org-hide-block)
7376 (delete-overlay ov))))))))
7378 ;; org-tab-after-check-for-cycling-hook
7379 (add-hook 'org-tab-first-hook 'org-hide-block-toggle-maybe)
7380 ;; Remove overlays when changing major mode
7381 (add-hook 'org-mode-hook
7382 (lambda () (org-add-hook 'change-major-mode-hook
7383 'org-show-block-all 'append 'local)))
7385 ;;; Org-goto
7387 (defvar org-goto-window-configuration nil)
7388 (defvar org-goto-marker nil)
7389 (defvar org-goto-map)
7390 (defun org-goto-map ()
7391 "Set the keymap `org-goto'."
7392 (setq org-goto-map
7393 (let ((map (make-sparse-keymap)))
7394 (let ((cmds '(isearch-forward isearch-backward kill-ring-save set-mark-command
7395 mouse-drag-region universal-argument org-occur))
7396 cmd)
7397 (while (setq cmd (pop cmds))
7398 (substitute-key-definition cmd cmd map global-map)))
7399 (suppress-keymap map)
7400 (org-defkey map "\C-m" 'org-goto-ret)
7401 (org-defkey map [(return)] 'org-goto-ret)
7402 (org-defkey map [(left)] 'org-goto-left)
7403 (org-defkey map [(right)] 'org-goto-right)
7404 (org-defkey map [(control ?g)] 'org-goto-quit)
7405 (org-defkey map "\C-i" 'org-cycle)
7406 (org-defkey map [(tab)] 'org-cycle)
7407 (org-defkey map [(down)] 'outline-next-visible-heading)
7408 (org-defkey map [(up)] 'outline-previous-visible-heading)
7409 (if org-goto-auto-isearch
7410 (if (fboundp 'define-key-after)
7411 (define-key-after map [t] 'org-goto-local-auto-isearch)
7412 nil)
7413 (org-defkey map "q" 'org-goto-quit)
7414 (org-defkey map "n" 'outline-next-visible-heading)
7415 (org-defkey map "p" 'outline-previous-visible-heading)
7416 (org-defkey map "f" 'outline-forward-same-level)
7417 (org-defkey map "b" 'outline-backward-same-level)
7418 (org-defkey map "u" 'outline-up-heading))
7419 (org-defkey map "/" 'org-occur)
7420 (org-defkey map "\C-c\C-n" 'outline-next-visible-heading)
7421 (org-defkey map "\C-c\C-p" 'outline-previous-visible-heading)
7422 (org-defkey map "\C-c\C-f" 'outline-forward-same-level)
7423 (org-defkey map "\C-c\C-b" 'outline-backward-same-level)
7424 (org-defkey map "\C-c\C-u" 'outline-up-heading)
7425 map)))
7427 (defconst org-goto-help
7428 "Browse buffer copy, to find location or copy text.%s
7429 RET=jump to location C-g=quit and return to previous location
7430 \[Up]/[Down]=next/prev headline TAB=cycle visibility [/] org-occur")
7432 (defvar org-goto-start-pos) ; dynamically scoped parameter
7434 (defun org-goto (&optional alternative-interface)
7435 "Look up a different location in the current file, keeping current visibility.
7437 When you want look-up or go to a different location in a
7438 document, the fastest way is often to fold the entire buffer and
7439 then dive into the tree. This method has the disadvantage, that
7440 the previous location will be folded, which may not be what you
7441 want.
7443 This command works around this by showing a copy of the current
7444 buffer in an indirect buffer, in overview mode. You can dive
7445 into the tree in that copy, use org-occur and incremental search
7446 to find a location. When pressing RET or `Q', the command
7447 returns to the original buffer in which the visibility is still
7448 unchanged. After RET it will also jump to the location selected
7449 in the indirect buffer and expose the headline hierarchy above.
7451 With a prefix argument, use the alternative interface: e.g. if
7452 `org-goto-interface' is 'outline use 'outline-path-completion."
7453 (interactive "P")
7454 (org-goto-map)
7455 (let* ((org-refile-targets `((nil . (:maxlevel . ,org-goto-max-level))))
7456 (org-refile-use-outline-path t)
7457 (org-refile-target-verify-function nil)
7458 (interface
7459 (if (not alternative-interface)
7460 org-goto-interface
7461 (if (eq org-goto-interface 'outline)
7462 'outline-path-completion
7463 'outline)))
7464 (org-goto-start-pos (point))
7465 (selected-point
7466 (if (eq interface 'outline)
7467 (car (org-get-location (current-buffer) org-goto-help))
7468 (let ((pa (org-refile-get-location "Goto" nil nil t)))
7469 (org-refile-check-position pa)
7470 (nth 3 pa)))))
7471 (if selected-point
7472 (progn
7473 (org-mark-ring-push org-goto-start-pos)
7474 (goto-char selected-point)
7475 (if (or (outline-invisible-p) (org-invisible-p2))
7476 (org-show-context 'org-goto)))
7477 (message "Quit"))))
7479 (defvar org-goto-selected-point nil) ; dynamically scoped parameter
7480 (defvar org-goto-exit-command nil) ; dynamically scoped parameter
7481 (defvar org-goto-local-auto-isearch-map) ; defined below
7483 (defun org-get-location (buf help)
7484 "Let the user select a location in the Org-mode buffer BUF.
7485 This function uses a recursive edit. It returns the selected position
7486 or nil."
7487 (org-no-popups
7488 (let ((isearch-mode-map org-goto-local-auto-isearch-map)
7489 (isearch-hide-immediately nil)
7490 (isearch-search-fun-function
7491 (lambda () 'org-goto-local-search-headings))
7492 (org-goto-selected-point org-goto-exit-command))
7493 (save-excursion
7494 (save-window-excursion
7495 (delete-other-windows)
7496 (and (get-buffer "*org-goto*") (kill-buffer "*org-goto*"))
7497 (org-pop-to-buffer-same-window
7498 (condition-case nil
7499 (make-indirect-buffer (current-buffer) "*org-goto*")
7500 (error (make-indirect-buffer (current-buffer) "*org-goto*"))))
7501 (with-output-to-temp-buffer "*Org Help*"
7502 (princ (format help (if org-goto-auto-isearch
7503 " Just type for auto-isearch."
7504 " n/p/f/b/u to navigate, q to quit."))))
7505 (org-fit-window-to-buffer (get-buffer-window "*Org Help*"))
7506 (setq buffer-read-only nil)
7507 (let ((org-startup-truncated t)
7508 (org-startup-folded nil)
7509 (org-startup-align-all-tables nil))
7510 (org-mode)
7511 (org-overview))
7512 (setq buffer-read-only t)
7513 (if (and (boundp 'org-goto-start-pos)
7514 (integer-or-marker-p org-goto-start-pos))
7515 (let ((org-show-hierarchy-above t)
7516 (org-show-siblings t)
7517 (org-show-following-heading t))
7518 (goto-char org-goto-start-pos)
7519 (and (outline-invisible-p) (org-show-context)))
7520 (goto-char (point-min)))
7521 (let (org-special-ctrl-a/e) (org-beginning-of-line))
7522 (message "Select location and press RET")
7523 (use-local-map org-goto-map)
7524 (recursive-edit)))
7525 (kill-buffer "*org-goto*")
7526 (cons org-goto-selected-point org-goto-exit-command))))
7528 (defvar org-goto-local-auto-isearch-map (make-sparse-keymap))
7529 (set-keymap-parent org-goto-local-auto-isearch-map isearch-mode-map)
7530 ;; `isearch-other-control-char' was removed in Emacs 24.4.
7531 (if (fboundp 'isearch-other-control-char)
7532 (progn
7533 (define-key org-goto-local-auto-isearch-map "\C-i" 'isearch-other-control-char)
7534 (define-key org-goto-local-auto-isearch-map "\C-m" 'isearch-other-control-char))
7535 (define-key org-goto-local-auto-isearch-map "\C-i" nil)
7536 (define-key org-goto-local-auto-isearch-map "\C-m" nil)
7537 (define-key org-goto-local-auto-isearch-map [return] nil))
7539 (defun org-goto-local-search-headings (string bound noerror)
7540 "Search and make sure that any matches are in headlines."
7541 (catch 'return
7542 (while (if isearch-forward
7543 (search-forward string bound noerror)
7544 (search-backward string bound noerror))
7545 (when (let ((context (mapcar 'car (save-match-data (org-context)))))
7546 (and (member :headline context)
7547 (not (member :tags context))))
7548 (throw 'return (point))))))
7550 (defun org-goto-local-auto-isearch ()
7551 "Start isearch."
7552 (interactive)
7553 (goto-char (point-min))
7554 (let ((keys (this-command-keys)))
7555 (when (eq (lookup-key isearch-mode-map keys) 'isearch-printing-char)
7556 (isearch-mode t)
7557 (isearch-process-search-char (string-to-char keys)))))
7559 (defun org-goto-ret (&optional arg)
7560 "Finish `org-goto' by going to the new location."
7561 (interactive "P")
7562 (setq org-goto-selected-point (point)
7563 org-goto-exit-command 'return)
7564 (throw 'exit nil))
7566 (defun org-goto-left ()
7567 "Finish `org-goto' by going to the new location."
7568 (interactive)
7569 (if (org-at-heading-p)
7570 (progn
7571 (beginning-of-line 1)
7572 (setq org-goto-selected-point (point)
7573 org-goto-exit-command 'left)
7574 (throw 'exit nil))
7575 (user-error "Not on a heading")))
7577 (defun org-goto-right ()
7578 "Finish `org-goto' by going to the new location."
7579 (interactive)
7580 (if (org-at-heading-p)
7581 (progn
7582 (setq org-goto-selected-point (point)
7583 org-goto-exit-command 'right)
7584 (throw 'exit nil))
7585 (user-error "Not on a heading")))
7587 (defun org-goto-quit ()
7588 "Finish `org-goto' without cursor motion."
7589 (interactive)
7590 (setq org-goto-selected-point nil)
7591 (setq org-goto-exit-command 'quit)
7592 (throw 'exit nil))
7594 ;;; Indirect buffer display of subtrees
7596 (defvar org-indirect-dedicated-frame nil
7597 "This is the frame being used for indirect tree display.")
7598 (defvar org-last-indirect-buffer nil)
7600 (defun org-tree-to-indirect-buffer (&optional arg)
7601 "Create indirect buffer and narrow it to current subtree.
7602 With a numerical prefix ARG, go up to this level and then take that tree.
7603 If ARG is negative, go up that many levels.
7605 If `org-indirect-buffer-display' is not `new-frame', the command removes the
7606 indirect buffer previously made with this command, to avoid proliferation of
7607 indirect buffers. However, when you call the command with a \
7608 \\[universal-argument] prefix, or
7609 when `org-indirect-buffer-display' is `new-frame', the last buffer
7610 is kept so that you can work with several indirect buffers at the same time.
7611 If `org-indirect-buffer-display' is `dedicated-frame', the \
7612 \\[universal-argument] prefix also
7613 requests that a new frame be made for the new buffer, so that the dedicated
7614 frame is not changed."
7615 (interactive "P")
7616 (let ((cbuf (current-buffer))
7617 (cwin (selected-window))
7618 (pos (point))
7619 beg end level heading ibuf)
7620 (save-excursion
7621 (org-back-to-heading t)
7622 (when (numberp arg)
7623 (setq level (org-outline-level))
7624 (if (< arg 0) (setq arg (+ level arg)))
7625 (while (> (setq level (org-outline-level)) arg)
7626 (org-up-heading-safe)))
7627 (setq beg (point)
7628 heading (org-get-heading))
7629 (org-end-of-subtree t t)
7630 (if (org-at-heading-p) (backward-char 1))
7631 (setq end (point)))
7632 (if (and (buffer-live-p org-last-indirect-buffer)
7633 (not (eq org-indirect-buffer-display 'new-frame))
7634 (not arg))
7635 (kill-buffer org-last-indirect-buffer))
7636 (setq ibuf (org-get-indirect-buffer cbuf heading)
7637 org-last-indirect-buffer ibuf)
7638 (cond
7639 ((or (eq org-indirect-buffer-display 'new-frame)
7640 (and arg (eq org-indirect-buffer-display 'dedicated-frame)))
7641 (select-frame (make-frame))
7642 (delete-other-windows)
7643 (org-pop-to-buffer-same-window ibuf)
7644 (org-set-frame-title heading))
7645 ((eq org-indirect-buffer-display 'dedicated-frame)
7646 (raise-frame
7647 (select-frame (or (and org-indirect-dedicated-frame
7648 (frame-live-p org-indirect-dedicated-frame)
7649 org-indirect-dedicated-frame)
7650 (setq org-indirect-dedicated-frame (make-frame)))))
7651 (delete-other-windows)
7652 (org-pop-to-buffer-same-window ibuf)
7653 (org-set-frame-title (concat "Indirect: " heading)))
7654 ((eq org-indirect-buffer-display 'current-window)
7655 (org-pop-to-buffer-same-window ibuf))
7656 ((eq org-indirect-buffer-display 'other-window)
7657 (pop-to-buffer ibuf))
7658 (t (error "Invalid value")))
7659 (if (featurep 'xemacs)
7660 (save-excursion (org-mode) (turn-on-font-lock)))
7661 (narrow-to-region beg end)
7662 (show-all)
7663 (goto-char pos)
7664 (run-hook-with-args 'org-cycle-hook 'all)
7665 (and (window-live-p cwin) (select-window cwin))))
7667 (defun org-get-indirect-buffer (&optional buffer heading)
7668 (setq buffer (or buffer (current-buffer)))
7669 (let ((n 1) (base (buffer-name buffer)) bname)
7670 (while (buffer-live-p
7671 (get-buffer
7672 (setq bname
7673 (concat base "-"
7674 (if heading (concat heading "-" (number-to-string n))
7675 (number-to-string n))))))
7676 (setq n (1+ n)))
7677 (condition-case nil
7678 (make-indirect-buffer buffer bname 'clone)
7679 (error (make-indirect-buffer buffer bname)))))
7681 (defun org-set-frame-title (title)
7682 "Set the title of the current frame to the string TITLE."
7683 ;; FIXME: how to name a single frame in XEmacs???
7684 (unless (featurep 'xemacs)
7685 (modify-frame-parameters (selected-frame) (list (cons 'name title)))))
7687 ;;;; Structure editing
7689 ;;; Inserting headlines
7691 (defun org-previous-line-empty-p (&optional next)
7692 "Is the previous line a blank line?
7693 When NEXT is non-nil, check the next line instead."
7694 (save-excursion
7695 (and (not (bobp))
7696 (or (beginning-of-line (if next 2 0)) t)
7697 (save-match-data
7698 (looking-at "[ \t]*$")))))
7700 (defun org-insert-heading (&optional arg invisible-ok)
7701 "Insert a new heading or an item with the same depth at point.
7703 If point is at the beginning of a heading or a list item, insert
7704 a new heading or a new item above the current one. If point is
7705 at the beginning of a normal line, turn the line into a heading.
7707 If point is in the middle of a headline or a list item, split the
7708 headline or the item and create a new headline/item with the text
7709 in the current line after point \(see `org-M-RET-may-split-line'
7710 on how to modify this behavior).
7712 With one universal prefix argument, set the user option
7713 `org-insert-heading-respect-content' to t for the duration of
7714 the command. This modifies the behavior described above in this
7715 ways: on list items and at the beginning of normal lines, force
7716 the insertion of a heading after the current subtree.
7718 With two universal prefix arguments, insert the heading at the
7719 end of the grandparent subtree. For example, if point is within
7720 a 2nd-level heading, then it will insert a 2nd-level heading at
7721 the end of the 1st-level parent heading.
7723 If point is at the beginning of a headline, insert a sibling
7724 before the current headline. If point is not at the beginning,
7725 split the line and create a new headline with the text in the
7726 current line after point \(see `org-M-RET-may-split-line' on how
7727 to modify this behavior).
7729 If point is at the beginning of a normal line, turn this line
7730 into a heading.
7732 When INVISIBLE-OK is set, stop at invisible headlines when going
7733 back. This is important for non-interactive uses of the
7734 command."
7735 (interactive "P")
7736 (if (org-called-interactively-p 'any) (org-reveal))
7737 (let ((itemp (org-in-item-p))
7738 (may-split (org-get-alist-option org-M-RET-may-split-line 'headline))
7739 (respect-content (or org-insert-heading-respect-content
7740 (equal arg '(4))))
7741 (initial-content "")
7742 (adjust-empty-lines t))
7744 (cond
7746 ((or (= (buffer-size) 0)
7747 (and (not (save-excursion
7748 (and (ignore-errors (org-back-to-heading invisible-ok))
7749 (org-at-heading-p))))
7750 (or arg (not itemp))))
7751 ;; At beginning of buffer or so high up that only a heading
7752 ;; makes sense.
7753 (cond ((and (bolp) (not respect-content)) (insert "* "))
7754 ((not respect-content)
7755 (unless may-split (end-of-line))
7756 (insert "\n* "))
7757 ((re-search-forward org-outline-regexp-bol nil t)
7758 (beginning-of-line)
7759 (insert "* \n")
7760 (backward-char))
7761 (t (goto-char (point-max))
7762 (insert "\n* ")))
7763 (run-hooks 'org-insert-heading-hook))
7765 ((and itemp (not (member arg '((4) (16)))))
7766 ;; Insert an item
7767 (org-insert-item))
7770 ;; Maybe move at the end of the subtree
7771 (when (equal arg '(16))
7772 (org-up-heading-safe)
7773 (org-end-of-subtree t))
7774 ;; Insert a heading
7775 (save-restriction
7776 (widen)
7777 (let* ((level nil)
7778 (on-heading (org-at-heading-p))
7779 (empty-line-p (if on-heading
7780 (org-previous-line-empty-p)
7781 ;; We will decide later
7782 nil))
7783 ;; Get a level string to fall back on
7784 (fix-level
7785 (if (org-before-first-heading-p) "*"
7786 (save-excursion
7787 (org-back-to-heading t)
7788 (if (org-previous-line-empty-p) (setq empty-line-p t))
7789 (looking-at org-outline-regexp)
7790 (make-string (1- (length (match-string 0))) ?*))))
7791 (stars
7792 (save-excursion
7793 (condition-case nil
7794 (progn
7795 (org-back-to-heading invisible-ok)
7796 (when (and (not on-heading)
7797 (featurep 'org-inlinetask)
7798 (integerp org-inlinetask-min-level)
7799 (>= (length (match-string 0))
7800 org-inlinetask-min-level))
7801 ;; Find a heading level before the inline task
7802 (while (and (setq level (org-up-heading-safe))
7803 (>= level org-inlinetask-min-level)))
7804 (if (org-at-heading-p)
7805 (org-back-to-heading invisible-ok)
7806 (error "This should not happen")))
7807 (unless (and (save-excursion
7808 (save-match-data
7809 (org-backward-heading-same-level
7810 1 invisible-ok))
7811 (= (point) (match-beginning 0)))
7812 (not (org-previous-line-empty-p t)))
7813 (setq empty-line-p (or empty-line-p
7814 (org-previous-line-empty-p))))
7815 (match-string 0))
7816 (error (or fix-level "* ")))))
7817 (blank-a (cdr (assq 'heading org-blank-before-new-entry)))
7818 (blank (if (eq blank-a 'auto) empty-line-p blank-a))
7819 pos hide-previous previous-pos)
7821 ;; If we insert after content, move there and clean up whitespace
7822 (when (and respect-content
7823 (not (org-looking-at-p org-outline-regexp-bol)))
7824 (if (not (org-before-first-heading-p))
7825 (org-end-of-subtree nil t)
7826 (re-search-forward org-outline-regexp-bol)
7827 (beginning-of-line 0))
7828 (skip-chars-backward " \r\n")
7829 (and (not (looking-back "^\\*+"))
7830 (looking-at "[ \t]+") (replace-match ""))
7831 (unless (eobp) (forward-char 1))
7832 (when (looking-at "^\\*")
7833 (unless (bobp) (backward-char 1))
7834 (insert "\n")))
7836 ;; If we are splitting, grab the text that should be moved to the new headline
7837 (when may-split
7838 (if (org-on-heading-p)
7839 ;; This is a heading, we split intelligently (keeping tags)
7840 (let ((pos (point)))
7841 (goto-char (point-at-bol))
7842 (unless (looking-at org-complex-heading-regexp)
7843 (error "This should not happen"))
7844 (when (and (match-beginning 4)
7845 (> pos (match-beginning 4))
7846 (< pos (match-end 4)))
7847 (setq initial-content (buffer-substring pos (match-end 4)))
7848 (goto-char pos)
7849 (delete-region (point) (match-end 4))
7850 (if (looking-at "[ \t]*$")
7851 (replace-match "")
7852 (insert (make-string (length initial-content) ?\ )))
7853 (setq initial-content (org-trim initial-content)))
7854 (goto-char pos))
7855 ;; a normal line
7856 (setq initial-content
7857 (org-trim (buffer-substring (point) (point-at-eol))))
7858 (delete-region (point) (point-at-eol))))
7860 ;; If we are at the beginning of the line, insert before it. Else after
7861 (cond
7862 ((and (bolp) (looking-at "[ \t]*$")))
7863 ((and (bolp) (not (looking-at "[ \t]*$")))
7864 (open-line 1))
7866 (goto-char (point-at-eol))
7867 (insert "\n")))
7869 ;; Insert the new heading
7870 (insert stars)
7871 (just-one-space)
7872 (insert initial-content)
7873 (when adjust-empty-lines
7874 (if (or (not blank)
7875 (and blank (not (org-previous-line-empty-p))))
7876 (org-N-empty-lines-before-current (if blank 1 0))))
7877 (run-hooks 'org-insert-heading-hook)))))))
7879 (defun org-N-empty-lines-before-current (N)
7880 "Make the number of empty lines before current exactly N.
7881 So this will delete or add empty lines."
7882 (save-excursion
7883 (beginning-of-line)
7884 (let ((p (point)))
7885 (skip-chars-backward " \r\t\n")
7886 (unless (bolp) (forward-line))
7887 (delete-region (point) p))
7888 (when (> N 0) (insert (make-string N ?\n)))))
7890 (defun org-get-heading (&optional no-tags no-todo)
7891 "Return the heading of the current entry, without the stars.
7892 When NO-TAGS is non-nil, don't include tags.
7893 When NO-TODO is non-nil, don't include TODO keywords."
7894 (save-excursion
7895 (org-back-to-heading t)
7896 (cond
7897 ((and no-tags no-todo)
7898 (looking-at org-complex-heading-regexp)
7899 (match-string 4))
7900 (no-tags
7901 (looking-at (concat org-outline-regexp
7902 "\\(.*?\\)"
7903 "\\(?:[ \t]+:[[:alnum:]:_@#%]+:\\)?[ \t]*$"))
7904 (match-string 1))
7905 (no-todo
7906 (looking-at org-todo-line-regexp)
7907 (match-string 3))
7908 (t (looking-at org-heading-regexp)
7909 (match-string 2)))))
7911 (defvar orgstruct-mode) ; defined below
7913 (defun org-heading-components ()
7914 "Return the components of the current heading.
7915 This is a list with the following elements:
7916 - the level as an integer
7917 - the reduced level, different if `org-odd-levels-only' is set.
7918 - the TODO keyword, or nil
7919 - the priority character, like ?A, or nil if no priority is given
7920 - the headline text itself, or the tags string if no headline text
7921 - the tags string, or nil."
7922 (save-excursion
7923 (org-back-to-heading t)
7924 (if (let (case-fold-search)
7925 (looking-at
7926 (if orgstruct-mode
7927 org-heading-regexp
7928 org-complex-heading-regexp)))
7929 (if orgstruct-mode
7930 (list (length (match-string 1))
7931 (org-reduced-level (length (match-string 1)))
7934 (match-string 2)
7935 nil)
7936 (list (length (match-string 1))
7937 (org-reduced-level (length (match-string 1)))
7938 (org-match-string-no-properties 2)
7939 (and (match-end 3) (aref (match-string 3) 2))
7940 (org-match-string-no-properties 4)
7941 (org-match-string-no-properties 5))))))
7943 (defun org-get-entry ()
7944 "Get the entry text, after heading, entire subtree."
7945 (save-excursion
7946 (org-back-to-heading t)
7947 (buffer-substring (point-at-bol 2) (org-end-of-subtree t))))
7949 (defun org-insert-heading-after-current ()
7950 "Insert a new heading with same level as current, after current subtree."
7951 (interactive)
7952 (org-back-to-heading)
7953 (org-insert-heading)
7954 (org-move-subtree-down)
7955 (end-of-line 1))
7957 (defun org-insert-heading-respect-content (&optional invisible-ok)
7958 "Insert heading with `org-insert-heading-respect-content' set to t."
7959 (interactive)
7960 (org-insert-heading '(4) invisible-ok))
7962 (defun org-insert-todo-heading-respect-content (&optional force-state)
7963 "Insert TODO heading with `org-insert-heading-respect-content' set to t."
7964 (interactive)
7965 (org-insert-todo-heading force-state '(4)))
7967 (defun org-insert-todo-heading (arg &optional force-heading)
7968 "Insert a new heading with the same level and TODO state as current heading.
7969 If the heading has no TODO state, or if the state is DONE, use the first
7970 state (TODO by default). Also with one prefix arg, force first state. With
7971 two prefix args, force inserting at the end of the parent subtree."
7972 (interactive "P")
7973 (when (or force-heading (not (org-insert-item 'checkbox)))
7974 (org-insert-heading (or (and (equal arg '(16)) '(16))
7975 force-heading))
7976 (save-excursion
7977 (org-back-to-heading)
7978 (outline-previous-heading)
7979 (looking-at org-todo-line-regexp))
7980 (let*
7981 ((new-mark-x
7982 (if (or (equal arg '(4))
7983 (not (match-beginning 2))
7984 (member (match-string 2) org-done-keywords))
7985 (car org-todo-keywords-1)
7986 (match-string 2)))
7987 (new-mark
7989 (run-hook-with-args-until-success
7990 'org-todo-get-default-hook new-mark-x nil)
7991 new-mark-x)))
7992 (beginning-of-line 1)
7993 (and (looking-at org-outline-regexp) (goto-char (match-end 0))
7994 (if org-treat-insert-todo-heading-as-state-change
7995 (org-todo new-mark)
7996 (insert new-mark " "))))
7997 (when org-provide-todo-statistics
7998 (org-update-parent-todo-statistics))))
8000 (defun org-insert-subheading (arg)
8001 "Insert a new subheading and demote it.
8002 Works for outline headings and for plain lists alike."
8003 (interactive "P")
8004 (org-insert-heading arg)
8005 (cond
8006 ((org-at-heading-p) (org-do-demote))
8007 ((org-at-item-p) (org-indent-item))))
8009 (defun org-insert-todo-subheading (arg)
8010 "Insert a new subheading with TODO keyword or checkbox and demote it.
8011 Works for outline headings and for plain lists alike."
8012 (interactive "P")
8013 (org-insert-todo-heading arg)
8014 (cond
8015 ((org-at-heading-p) (org-do-demote))
8016 ((org-at-item-p) (org-indent-item))))
8018 ;;; Promotion and Demotion
8020 (defvar org-after-demote-entry-hook nil
8021 "Hook run after an entry has been demoted.
8022 The cursor will be at the beginning of the entry.
8023 When a subtree is being demoted, the hook will be called for each node.")
8025 (defvar org-after-promote-entry-hook nil
8026 "Hook run after an entry has been promoted.
8027 The cursor will be at the beginning of the entry.
8028 When a subtree is being promoted, the hook will be called for each node.")
8030 (defun org-promote-subtree ()
8031 "Promote the entire subtree.
8032 See also `org-promote'."
8033 (interactive)
8034 (save-excursion
8035 (org-with-limited-levels (org-map-tree 'org-promote)))
8036 (org-fix-position-after-promote))
8038 (defun org-demote-subtree ()
8039 "Demote the entire subtree. See `org-demote'.
8040 See also `org-promote'."
8041 (interactive)
8042 (save-excursion
8043 (org-with-limited-levels (org-map-tree 'org-demote)))
8044 (org-fix-position-after-promote))
8047 (defun org-do-promote ()
8048 "Promote the current heading higher up the tree.
8049 If the region is active in `transient-mark-mode', promote all headings
8050 in the region."
8051 (interactive)
8052 (save-excursion
8053 (if (org-region-active-p)
8054 (org-map-region 'org-promote (region-beginning) (region-end))
8055 (org-promote)))
8056 (org-fix-position-after-promote))
8058 (defun org-do-demote ()
8059 "Demote the current heading lower down the tree.
8060 If the region is active in `transient-mark-mode', demote all headings
8061 in the region."
8062 (interactive)
8063 (save-excursion
8064 (if (org-region-active-p)
8065 (org-map-region 'org-demote (region-beginning) (region-end))
8066 (org-demote)))
8067 (org-fix-position-after-promote))
8069 (defun org-fix-position-after-promote ()
8070 "Make sure that after pro/demotion cursor position is right."
8071 (let ((pos (point)))
8072 (when (save-excursion
8073 (beginning-of-line 1)
8074 (looking-at org-todo-line-regexp)
8075 (or (equal pos (match-end 1)) (equal pos (match-end 2))))
8076 (cond ((eobp) (insert " "))
8077 ((eolp) (insert " "))
8078 ((equal (char-after) ?\ ) (forward-char 1))))))
8080 (defun org-current-level ()
8081 "Return the level of the current entry, or nil if before the first headline.
8082 The level is the number of stars at the beginning of the headline."
8083 (save-excursion
8084 (org-with-limited-levels
8085 (if (ignore-errors (org-back-to-heading t))
8086 (funcall outline-level)))))
8088 (defun org-get-previous-line-level ()
8089 "Return the outline depth of the last headline before the current line.
8090 Returns 0 for the first headline in the buffer, and nil if before the
8091 first headline."
8092 (and (org-current-level)
8093 (or (and (/= (line-beginning-position) (point-min))
8094 (save-excursion (beginning-of-line 0) (org-current-level)))
8095 0)))
8097 (defun org-reduced-level (l)
8098 "Compute the effective level of a heading.
8099 This takes into account the setting of `org-odd-levels-only'."
8100 (cond
8101 ((zerop l) 0)
8102 (org-odd-levels-only (1+ (floor (/ l 2))))
8103 (t l)))
8105 (defun org-level-increment ()
8106 "Return the number of stars that will be added or removed at a
8107 time to headlines when structure editing, based on the value of
8108 `org-odd-levels-only'."
8109 (if org-odd-levels-only 2 1))
8111 (defun org-get-valid-level (level &optional change)
8112 "Rectify a level change under the influence of `org-odd-levels-only'
8113 LEVEL is a current level, CHANGE is by how much the level should be
8114 modified. Even if CHANGE is nil, LEVEL may be returned modified because
8115 even level numbers will become the next higher odd number."
8116 (if org-odd-levels-only
8117 (cond ((or (not change) (= 0 change)) (1+ (* 2 (/ level 2))))
8118 ((> change 0) (1+ (* 2 (/ (+ level (* 2 change)) 2))))
8119 ((< change 0) (max 1 (1+ (* 2 (/ (+ level (* 2 change)) 2))))))
8120 (max 1 (+ level (or change 0)))))
8122 (if (boundp 'define-obsolete-function-alias)
8123 (if (or (featurep 'xemacs) (< emacs-major-version 23))
8124 (define-obsolete-function-alias 'org-get-legal-level
8125 'org-get-valid-level)
8126 (define-obsolete-function-alias 'org-get-legal-level
8127 'org-get-valid-level "23.1")))
8129 (defun org-promote ()
8130 "Promote the current heading higher up the tree."
8131 (org-with-wide-buffer
8132 (org-back-to-heading t)
8133 (let* ((after-change-functions (remq 'flyspell-after-change-function
8134 after-change-functions))
8135 (level (save-match-data (funcall outline-level)))
8136 (up-head (concat (make-string (org-get-valid-level level -1) ?*) " "))
8137 (diff (abs (- level (length up-head) -1))))
8138 (cond
8139 ((and (= level 1) org-allow-promoting-top-level-subtree)
8140 (replace-match "# " nil t))
8141 ((= level 1)
8142 (user-error "Cannot promote to level 0. UNDO to recover if necessary"))
8143 (t (replace-match up-head nil t)))
8144 (unless (= level 1)
8145 (when org-auto-align-tags (org-set-tags nil 'ignore-column))
8146 (when org-adapt-indentation (org-fixup-indentation (- diff))))
8147 (run-hooks 'org-after-promote-entry-hook))))
8149 (defun org-demote ()
8150 "Demote the current heading lower down the tree."
8151 (org-with-wide-buffer
8152 (org-back-to-heading t)
8153 (let* ((after-change-functions (remq 'flyspell-after-change-function
8154 after-change-functions))
8155 (level (save-match-data (funcall outline-level)))
8156 (down-head (concat (make-string (org-get-valid-level level 1) ?*) " "))
8157 (diff (abs (- level (length down-head) -1))))
8158 (replace-match down-head nil t)
8159 (when org-auto-align-tags (org-set-tags nil 'ignore-column))
8160 (when org-adapt-indentation (org-fixup-indentation diff))
8161 (run-hooks 'org-after-demote-entry-hook))))
8163 (defun org-cycle-level ()
8164 "Cycle the level of an empty headline through possible states.
8165 This goes first to child, then to parent, level, then up the hierarchy.
8166 After top level, it switches back to sibling level."
8167 (interactive)
8168 (let ((org-adapt-indentation nil))
8169 (when (org-point-at-end-of-empty-headline)
8170 (setq this-command 'org-cycle-level) ; Only needed for caching
8171 (let ((cur-level (org-current-level))
8172 (prev-level (org-get-previous-line-level)))
8173 (cond
8174 ;; If first headline in file, promote to top-level.
8175 ((= prev-level 0)
8176 (loop repeat (/ (- cur-level 1) (org-level-increment))
8177 do (org-do-promote)))
8178 ;; If same level as prev, demote one.
8179 ((= prev-level cur-level)
8180 (org-do-demote))
8181 ;; If parent is top-level, promote to top level if not already.
8182 ((= prev-level 1)
8183 (loop repeat (/ (- cur-level 1) (org-level-increment))
8184 do (org-do-promote)))
8185 ;; If top-level, return to prev-level.
8186 ((= cur-level 1)
8187 (loop repeat (/ (- prev-level 1) (org-level-increment))
8188 do (org-do-demote)))
8189 ;; If less than prev-level, promote one.
8190 ((< cur-level prev-level)
8191 (org-do-promote))
8192 ;; If deeper than prev-level, promote until higher than
8193 ;; prev-level.
8194 ((> cur-level prev-level)
8195 (loop repeat (+ 1 (/ (- cur-level prev-level) (org-level-increment)))
8196 do (org-do-promote))))
8197 t))))
8199 (defun org-map-tree (fun)
8200 "Call FUN for every heading underneath the current one."
8201 (org-back-to-heading)
8202 (let ((level (funcall outline-level)))
8203 (save-excursion
8204 (funcall fun)
8205 (while (and (progn
8206 (outline-next-heading)
8207 (> (funcall outline-level) level))
8208 (not (eobp)))
8209 (funcall fun)))))
8211 (defun org-map-region (fun beg end)
8212 "Call FUN for every heading between BEG and END."
8213 (let ((org-ignore-region t))
8214 (save-excursion
8215 (setq end (copy-marker end))
8216 (goto-char beg)
8217 (if (and (re-search-forward org-outline-regexp-bol nil t)
8218 (< (point) end))
8219 (funcall fun))
8220 (while (and (progn
8221 (outline-next-heading)
8222 (< (point) end))
8223 (not (eobp)))
8224 (funcall fun)))))
8226 (defun org-fixup-indentation (diff)
8227 "Change the indentation in the current entry by DIFF.
8229 DIFF is an integer. Indentation is done according to the
8230 following rules:
8232 - Planning information and property drawers are always indented
8233 according to the new level of the headline;
8235 - Footnote definitions and their contents are ignored;
8237 - Inlinetasks' boundaries are not shifted;
8239 - Empty lines are ignored;
8241 - Other lines' indentation are shifted by DIFF columns, unless
8242 it would introduce a structural change in the document, in
8243 which case no shifting is done at all.
8245 Assume point is at a heading or an inlinetask beginning."
8246 (org-with-wide-buffer
8247 (narrow-to-region (line-beginning-position)
8248 (save-excursion
8249 (if (org-with-limited-levels (org-at-heading-p))
8250 (org-with-limited-levels (outline-next-heading))
8251 (org-inlinetask-goto-end))
8252 (point)))
8253 (forward-line)
8254 ;; Indent properly planning info and property drawer.
8255 (when (org-looking-at-p org-planning-line-re)
8256 (org-indent-line)
8257 (forward-line))
8258 (when (looking-at org-property-drawer-re)
8259 (goto-char (match-end 0))
8260 (forward-line)
8261 (save-excursion (org-indent-region (match-beginning 0) (match-end 0))))
8262 (catch 'no-shift
8263 (when (zerop diff) (throw 'no-shift nil))
8264 ;; If DIFF is negative, first check if a shift is possible at all
8265 ;; (e.g., it doesn't break structure). This can only happen if
8266 ;; some contents are not properly indented.
8267 (let ((case-fold-search t))
8268 (when (< diff 0)
8269 (let ((diff (- diff))
8270 (forbidden-re (concat org-outline-regexp
8271 "\\|"
8272 (substring org-footnote-definition-re 1))))
8273 (save-excursion
8274 (while (not (eobp))
8275 (cond
8276 ((org-looking-at-p "[ \t]*$") (forward-line))
8277 ((and (org-looking-at-p org-footnote-definition-re)
8278 (let ((e (org-element-at-point)))
8279 (and (eq (org-element-type e) 'footnote-definition)
8280 (goto-char (org-element-property :end e))))))
8281 ((org-looking-at-p org-outline-regexp) (forward-line))
8282 ;; Give up if shifting would move before column 0 or
8283 ;; if it would introduce a headline or a footnote
8284 ;; definition.
8286 (skip-chars-forward " \t")
8287 (let ((ind (current-column)))
8288 (when (or (< ind diff)
8289 (and (= ind diff) (org-looking-at-p forbidden-re)))
8290 (throw 'no-shift nil)))
8291 ;; Ignore contents of example blocks and source
8292 ;; blocks if their indentation is meant to be
8293 ;; preserved. Jump to block's closing line.
8294 (beginning-of-line)
8295 (or (and (org-looking-at-p "[ \t]*#\\+BEGIN_\\(EXAMPLE\\|SRC\\)")
8296 (let ((e (org-element-at-point)))
8297 (and (memq (org-element-type e)
8298 '(example-block src-block))
8299 (or org-src-preserve-indentation
8300 (org-element-property :preserve-indent e))
8301 (goto-char (org-element-property :end e))
8302 (progn (skip-chars-backward " \r\t\n")
8303 (beginning-of-line)
8304 t))))
8305 (forward-line))))))))
8306 ;; Shift lines but footnote definitions, inlinetasks boundaries
8307 ;; by DIFF. Also skip contents of source or example blocks
8308 ;; when indentation is meant to be preserved.
8309 (while (not (eobp))
8310 (cond
8311 ((and (org-looking-at-p org-footnote-definition-re)
8312 (let ((e (org-element-at-point)))
8313 (and (eq (org-element-type e) 'footnote-definition)
8314 (goto-char (org-element-property :end e))))))
8315 ((org-looking-at-p org-outline-regexp) (forward-line))
8316 ((org-looking-at-p "[ \t]*$") (forward-line))
8318 (org-indent-line-to (+ (org-get-indentation) diff))
8319 (beginning-of-line)
8320 (or (and (org-looking-at-p "[ \t]*#\\+BEGIN_\\(EXAMPLE\\|SRC\\)")
8321 (let ((e (org-element-at-point)))
8322 (and (memq (org-element-type e)
8323 '(example-block src-block))
8324 (or org-src-preserve-indentation
8325 (org-element-property :preserve-indent e))
8326 (goto-char (org-element-property :end e))
8327 (progn (skip-chars-backward " \r\t\n")
8328 (beginning-of-line)
8329 t))))
8330 (forward-line)))))))))
8332 (defun org-convert-to-odd-levels ()
8333 "Convert an org-mode file with all levels allowed to one with odd levels.
8334 This will leave level 1 alone, convert level 2 to level 3, level 3 to
8335 level 5 etc."
8336 (interactive)
8337 (when (yes-or-no-p "Are you sure you want to globally change levels to odd? ")
8338 (let ((outline-level 'org-outline-level)
8339 (org-odd-levels-only nil) n)
8340 (save-excursion
8341 (goto-char (point-min))
8342 (while (re-search-forward "^\\*\\*+ " nil t)
8343 (setq n (- (length (match-string 0)) 2))
8344 (while (>= (setq n (1- n)) 0)
8345 (org-demote))
8346 (end-of-line 1))))))
8348 (defun org-convert-to-oddeven-levels ()
8349 "Convert an org-mode file with only odd levels to one with odd/even levels.
8350 This promotes level 3 to level 2, level 5 to level 3 etc. If the
8351 file contains a section with an even level, conversion would
8352 destroy the structure of the file. An error is signaled in this
8353 case."
8354 (interactive)
8355 (goto-char (point-min))
8356 ;; First check if there are no even levels
8357 (when (re-search-forward "^\\(\\*\\*\\)+ " nil t)
8358 (org-show-context t)
8359 (error "Not all levels are odd in this file. Conversion not possible"))
8360 (when (yes-or-no-p "Are you sure you want to globally change levels to odd-even? ")
8361 (let ((outline-regexp org-outline-regexp)
8362 (outline-level 'org-outline-level)
8363 (org-odd-levels-only nil) n)
8364 (save-excursion
8365 (goto-char (point-min))
8366 (while (re-search-forward "^\\*\\*+ " nil t)
8367 (setq n (/ (1- (length (match-string 0))) 2))
8368 (while (>= (setq n (1- n)) 0)
8369 (org-promote))
8370 (end-of-line 1))))))
8372 (defun org-tr-level (n)
8373 "Make N odd if required."
8374 (if org-odd-levels-only (1+ (/ n 2)) n))
8376 ;;; Vertical tree motion, cutting and pasting of subtrees
8378 (defun org-move-subtree-up (&optional arg)
8379 "Move the current subtree up past ARG headlines of the same level."
8380 (interactive "p")
8381 (org-move-subtree-down (- (prefix-numeric-value arg))))
8383 (defun org-move-subtree-down (&optional arg)
8384 "Move the current subtree down past ARG headlines of the same level."
8385 (interactive "p")
8386 (setq arg (prefix-numeric-value arg))
8387 (let ((movfunc (if (> arg 0) 'org-get-next-sibling
8388 'org-get-last-sibling))
8389 (ins-point (make-marker))
8390 (cnt (abs arg))
8391 (col (current-column))
8392 beg beg0 end txt folded ne-beg ne-end ne-ins ins-end)
8393 ;; Select the tree
8394 (org-back-to-heading)
8395 (setq beg0 (point))
8396 (save-excursion
8397 (setq ne-beg (org-back-over-empty-lines))
8398 (setq beg (point)))
8399 (save-match-data
8400 (save-excursion (outline-end-of-heading)
8401 (setq folded (outline-invisible-p)))
8402 (progn (org-end-of-subtree nil t)
8403 (unless (eobp) (backward-char))))
8404 (outline-next-heading)
8405 (setq ne-end (org-back-over-empty-lines))
8406 (setq end (point))
8407 (goto-char beg0)
8408 (when (and (> arg 0) (org-first-sibling-p) (< ne-end ne-beg))
8409 ;; include less whitespace
8410 (save-excursion
8411 (goto-char beg)
8412 (forward-line (- ne-beg ne-end))
8413 (setq beg (point))))
8414 ;; Find insertion point, with error handling
8415 (while (> cnt 0)
8416 (or (and (funcall movfunc) (looking-at org-outline-regexp))
8417 (progn (goto-char beg0)
8418 (user-error "Cannot move past superior level or buffer limit")))
8419 (setq cnt (1- cnt)))
8420 (if (> arg 0)
8421 ;; Moving forward - still need to move over subtree
8422 (progn (org-end-of-subtree t t)
8423 (save-excursion
8424 (org-back-over-empty-lines)
8425 (or (bolp) (newline)))))
8426 (setq ne-ins (org-back-over-empty-lines))
8427 (move-marker ins-point (point))
8428 (setq txt (buffer-substring beg end))
8429 (org-save-markers-in-region beg end)
8430 (delete-region beg end)
8431 (org-remove-empty-overlays-at beg)
8432 (or (= beg (point-min)) (outline-flag-region (1- beg) beg nil))
8433 (or (bobp) (outline-flag-region (1- (point)) (point) nil))
8434 (and (not (bolp)) (looking-at "\n") (forward-char 1))
8435 (let ((bbb (point)))
8436 (insert-before-markers txt)
8437 (org-reinstall-markers-in-region bbb)
8438 (move-marker ins-point bbb))
8439 (or (bolp) (insert "\n"))
8440 (setq ins-end (point))
8441 (goto-char ins-point)
8442 (org-skip-whitespace)
8443 (when (and (< arg 0)
8444 (org-first-sibling-p)
8445 (> ne-ins ne-beg))
8446 ;; Move whitespace back to beginning
8447 (save-excursion
8448 (goto-char ins-end)
8449 (let ((kill-whole-line t))
8450 (kill-line (- ne-ins ne-beg)) (point)))
8451 (insert (make-string (- ne-ins ne-beg) ?\n)))
8452 (move-marker ins-point nil)
8453 (if folded
8454 (hide-subtree)
8455 (org-show-entry)
8456 (show-children)
8457 (org-cycle-hide-drawers 'children))
8458 (org-clean-visibility-after-subtree-move)
8459 ;; move back to the initial column we were at
8460 (move-to-column col)))
8462 (defvar org-subtree-clip ""
8463 "Clipboard for cut and paste of subtrees.
8464 This is actually only a copy of the kill, because we use the normal kill
8465 ring. We need it to check if the kill was created by `org-copy-subtree'.")
8467 (defvar org-subtree-clip-folded nil
8468 "Was the last copied subtree folded?
8469 This is used to fold the tree back after pasting.")
8471 (defun org-cut-subtree (&optional n)
8472 "Cut the current subtree into the clipboard.
8473 With prefix arg N, cut this many sequential subtrees.
8474 This is a short-hand for marking the subtree and then cutting it."
8475 (interactive "p")
8476 (org-copy-subtree n 'cut))
8478 (defun org-copy-subtree (&optional n cut force-store-markers nosubtrees)
8479 "Copy the current subtree it in the clipboard.
8480 With prefix arg N, copy this many sequential subtrees.
8481 This is a short-hand for marking the subtree and then copying it.
8482 If CUT is non-nil, actually cut the subtree.
8483 If FORCE-STORE-MARKERS is non-nil, store the relative locations
8484 of some markers in the region, even if CUT is non-nil. This is
8485 useful if the caller implements cut-and-paste as copy-then-paste-then-cut."
8486 (interactive "p")
8487 (let (beg end folded (beg0 (point)))
8488 (if (org-called-interactively-p 'any)
8489 (org-back-to-heading nil) ; take what looks like a subtree
8490 (org-back-to-heading t)) ; take what is really there
8491 (setq beg (point))
8492 (skip-chars-forward " \t\r\n")
8493 (save-match-data
8494 (if nosubtrees
8495 (outline-next-heading)
8496 (save-excursion (outline-end-of-heading)
8497 (setq folded (outline-invisible-p)))
8498 (ignore-errors (org-forward-heading-same-level (1- n) t))
8499 (org-end-of-subtree t t)))
8500 (setq end (point))
8501 (goto-char beg0)
8502 (when (> end beg)
8503 (setq org-subtree-clip-folded folded)
8504 (when (or cut force-store-markers)
8505 (org-save-markers-in-region beg end))
8506 (if cut (kill-region beg end) (copy-region-as-kill beg end))
8507 (setq org-subtree-clip (current-kill 0))
8508 (message "%s: Subtree(s) with %d characters"
8509 (if cut "Cut" "Copied")
8510 (length org-subtree-clip)))))
8512 (defun org-paste-subtree (&optional level tree for-yank remove)
8513 "Paste the clipboard as a subtree, with modification of headline level.
8514 The entire subtree is promoted or demoted in order to match a new headline
8515 level.
8517 If the cursor is at the beginning of a headline, the same level as
8518 that headline is used to paste the tree.
8520 If not, the new level is derived from the *visible* headings
8521 before and after the insertion point, and taken to be the inferior headline
8522 level of the two. So if the previous visible heading is level 3 and the
8523 next is level 4 (or vice versa), level 4 will be used for insertion.
8524 This makes sure that the subtree remains an independent subtree and does
8525 not swallow low level entries.
8527 You can also force a different level, either by using a numeric prefix
8528 argument, or by inserting the heading marker by hand. For example, if the
8529 cursor is after \"*****\", then the tree will be shifted to level 5.
8531 If optional TREE is given, use this text instead of the kill ring.
8533 When FOR-YANK is set, this is called by `org-yank'. In this case, do not
8534 move back over whitespace before inserting, and move point to the end of
8535 the inserted text when done.
8537 When REMOVE is non-nil, remove the subtree from the clipboard."
8538 (interactive "P")
8539 (setq tree (or tree (and kill-ring (current-kill 0))))
8540 (unless (org-kill-is-subtree-p tree)
8541 (user-error "%s"
8542 (substitute-command-keys
8543 "The kill is not a (set of) tree(s) - please use \\[yank] to yank anyway")))
8544 (org-with-limited-levels
8545 (let* ((visp (not (outline-invisible-p)))
8546 (txt tree)
8547 (^re_ "\\(\\*+\\)[ \t]*")
8548 (old-level (if (string-match org-outline-regexp-bol txt)
8549 (- (match-end 0) (match-beginning 0) 1)
8550 -1))
8551 (force-level (cond (level (prefix-numeric-value level))
8552 ((and (looking-at "[ \t]*$")
8553 (string-match
8554 "^\\*+$" (buffer-substring
8555 (point-at-bol) (point))))
8556 (- (match-end 0) (match-beginning 0)))
8557 ((and (bolp)
8558 (looking-at org-outline-regexp))
8559 (- (match-end 0) (point) 1))))
8560 (previous-level (save-excursion
8561 (condition-case nil
8562 (progn
8563 (outline-previous-visible-heading 1)
8564 (if (looking-at ^re_)
8565 (- (match-end 0) (match-beginning 0) 1)
8567 (error 1))))
8568 (next-level (save-excursion
8569 (condition-case nil
8570 (progn
8571 (or (looking-at org-outline-regexp)
8572 (outline-next-visible-heading 1))
8573 (if (looking-at ^re_)
8574 (- (match-end 0) (match-beginning 0) 1)
8576 (error 1))))
8577 (new-level (or force-level (max previous-level next-level)))
8578 (shift (if (or (= old-level -1)
8579 (= new-level -1)
8580 (= old-level new-level))
8582 (- new-level old-level)))
8583 (delta (if (> shift 0) -1 1))
8584 (func (if (> shift 0) 'org-demote 'org-promote))
8585 (org-odd-levels-only nil)
8586 beg end newend)
8587 ;; Remove the forced level indicator
8588 (if force-level
8589 (delete-region (point-at-bol) (point)))
8590 ;; Paste
8591 (beginning-of-line (if (bolp) 1 2))
8592 (setq beg (point))
8593 (and (fboundp 'org-id-paste-tracker) (org-id-paste-tracker txt))
8594 (insert-before-markers txt)
8595 (unless (string-match "\n\\'" txt) (insert "\n"))
8596 (setq newend (point))
8597 (org-reinstall-markers-in-region beg)
8598 (setq end (point))
8599 (goto-char beg)
8600 (skip-chars-forward " \t\n\r")
8601 (setq beg (point))
8602 (if (and (outline-invisible-p) visp)
8603 (save-excursion (outline-show-heading)))
8604 ;; Shift if necessary
8605 (unless (= shift 0)
8606 (save-restriction
8607 (narrow-to-region beg end)
8608 (while (not (= shift 0))
8609 (org-map-region func (point-min) (point-max))
8610 (setq shift (+ delta shift)))
8611 (goto-char (point-min))
8612 (setq newend (point-max))))
8613 (when (or (org-called-interactively-p 'interactive) for-yank)
8614 (message "Clipboard pasted as level %d subtree" new-level))
8615 (if (and (not for-yank) ; in this case, org-yank will decide about folding
8616 kill-ring
8617 (eq org-subtree-clip (current-kill 0))
8618 org-subtree-clip-folded)
8619 ;; The tree was folded before it was killed/copied
8620 (hide-subtree))
8621 (and for-yank (goto-char newend))
8622 (and remove (setq kill-ring (cdr kill-ring))))))
8624 (defun org-kill-is-subtree-p (&optional txt)
8625 "Check if the current kill is an outline subtree, or a set of trees.
8626 Returns nil if kill does not start with a headline, or if the first
8627 headline level is not the largest headline level in the tree.
8628 So this will actually accept several entries of equal levels as well,
8629 which is OK for `org-paste-subtree'.
8630 If optional TXT is given, check this string instead of the current kill."
8631 (let* ((kill (or txt (and kill-ring (current-kill 0)) ""))
8632 (re (org-get-limited-outline-regexp))
8633 (^re (concat "^" re))
8634 (start-level (and kill
8635 (string-match
8636 (concat "\\`\\([ \t\n\r]*?\n\\)?\\(" re "\\)")
8637 kill)
8638 (- (match-end 2) (match-beginning 2) 1)))
8639 (start (1+ (or (match-beginning 2) -1))))
8640 (if (not start-level)
8641 (progn
8642 nil) ;; does not even start with a heading
8643 (catch 'exit
8644 (while (setq start (string-match ^re kill (1+ start)))
8645 (when (< (- (match-end 0) (match-beginning 0) 1) start-level)
8646 (throw 'exit nil)))
8647 t))))
8649 (defvar org-markers-to-move nil
8650 "Markers that should be moved with a cut-and-paste operation.
8651 Those markers are stored together with their positions relative to
8652 the start of the region.")
8654 (defun org-save-markers-in-region (beg end)
8655 "Check markers in region.
8656 If these markers are between BEG and END, record their position relative
8657 to BEG, so that after moving the block of text, we can put the markers back
8658 into place.
8659 This function gets called just before an entry or tree gets cut from the
8660 buffer. After re-insertion, `org-reinstall-markers-in-region' must be
8661 called immediately, to move the markers with the entries."
8662 (setq org-markers-to-move nil)
8663 (when (featurep 'org-clock)
8664 (org-clock-save-markers-for-cut-and-paste beg end))
8665 (when (featurep 'org-agenda)
8666 (org-agenda-save-markers-for-cut-and-paste beg end)))
8668 (defun org-check-and-save-marker (marker beg end)
8669 "Check if MARKER is between BEG and END.
8670 If yes, remember the marker and the distance to BEG."
8671 (when (and (marker-buffer marker)
8672 (equal (marker-buffer marker) (current-buffer)))
8673 (if (and (>= marker beg) (< marker end))
8674 (push (cons marker (- marker beg)) org-markers-to-move))))
8676 (defun org-reinstall-markers-in-region (beg)
8677 "Move all remembered markers to their position relative to BEG."
8678 (mapc (lambda (x)
8679 (move-marker (car x) (+ beg (cdr x))))
8680 org-markers-to-move)
8681 (setq org-markers-to-move nil))
8683 (defun org-narrow-to-subtree ()
8684 "Narrow buffer to the current subtree."
8685 (interactive)
8686 (save-excursion
8687 (save-match-data
8688 (org-with-limited-levels
8689 (narrow-to-region
8690 (progn (org-back-to-heading t) (point))
8691 (progn (org-end-of-subtree t t)
8692 (if (and (org-at-heading-p) (not (eobp))) (backward-char 1))
8693 (point)))))))
8695 (defun org-narrow-to-block ()
8696 "Narrow buffer to the current block."
8697 (interactive)
8698 (let* ((case-fold-search t)
8699 (blockp (org-between-regexps-p "^[ \t]*#\\+begin_.*"
8700 "^[ \t]*#\\+end_.*")))
8701 (if blockp
8702 (narrow-to-region (car blockp) (cdr blockp))
8703 (user-error "Not in a block"))))
8705 (defun org-clone-subtree-with-time-shift (n &optional shift)
8706 "Clone the task (subtree) at point N times.
8707 The clones will be inserted as siblings.
8709 In interactive use, the user will be prompted for the number of
8710 clones to be produced. If the entry has a timestamp, the user
8711 will also be prompted for a time shift, which may be a repeater
8712 as used in time stamps, for example `+3d'. To disable this,
8713 you can call the function with a universal prefix argument.
8715 When a valid repeater is given and the entry contains any time
8716 stamps, the clones will become a sequence in time, with time
8717 stamps in the subtree shifted for each clone produced. If SHIFT
8718 is nil or the empty string, time stamps will be left alone. The
8719 ID property of the original subtree is removed.
8721 If the original subtree did contain time stamps with a repeater,
8722 the following will happen:
8723 - the repeater will be removed in each clone
8724 - an additional clone will be produced, with the current, unshifted
8725 date(s) in the entry.
8726 - the original entry will be placed *after* all the clones, with
8727 repeater intact.
8728 - the start days in the repeater in the original entry will be shifted
8729 to past the last clone.
8730 In this way you can spell out a number of instances of a repeating task,
8731 and still retain the repeater to cover future instances of the task."
8732 (interactive "nNumber of clones to produce: ")
8733 (let ((shift
8734 (or shift
8735 (if (and (not (equal current-prefix-arg '(4)))
8736 (save-excursion
8737 (re-search-forward org-ts-regexp-both
8738 (save-excursion
8739 (org-end-of-subtree t)
8740 (point)) t)))
8741 (read-from-minibuffer
8742 "Date shift per clone (e.g. +1w, empty to copy unchanged): ")
8743 ""))) ;; No time shift
8744 (n-no-remove -1)
8745 (drawer-re org-drawer-regexp)
8746 (org-clock-re (format "^[ \t]*%s.*$" org-clock-string))
8747 beg end template task idprop
8748 shift-n shift-what doshift nmin nmax)
8749 (if (not (and (integerp n) (> n 0)))
8750 (user-error "Invalid number of replications %s" n))
8751 (if (and (setq doshift (and (stringp shift) (string-match "\\S-" shift)))
8752 (not (string-match "\\`[ \t]*\\+?\\([0-9]+\\)\\([hdwmy]\\)[ \t]*\\'"
8753 shift)))
8754 (user-error "Invalid shift specification %s" shift))
8755 (when doshift
8756 (setq shift-n (string-to-number (match-string 1 shift))
8757 shift-what (cdr (assoc (match-string 2 shift)
8758 '(("d" . day) ("w" . week)
8759 ("m" . month) ("y" . year))))))
8760 (if (eq shift-what 'week) (setq shift-n (* 7 shift-n) shift-what 'day))
8761 (setq nmin 1 nmax n)
8762 (org-back-to-heading t)
8763 (setq beg (point))
8764 (setq idprop (org-entry-get nil "ID"))
8765 (org-end-of-subtree t t)
8766 (or (bolp) (insert "\n"))
8767 (setq end (point))
8768 (setq template (buffer-substring beg end))
8769 (when (and doshift
8770 (string-match "<[^<>\n]+ [.+]?\\+[0-9]+[hdwmy][^<>\n]*>" template))
8771 (delete-region beg end)
8772 (setq end beg)
8773 (setq nmin 0 nmax (1+ nmax) n-no-remove nmax))
8774 (goto-char end)
8775 (loop for n from nmin to nmax do
8776 ;; prepare clone
8777 (with-temp-buffer
8778 (insert template)
8779 (org-mode)
8780 (goto-char (point-min))
8781 (org-show-subtree)
8782 (and idprop (if org-clone-delete-id
8783 (org-entry-delete nil "ID")
8784 (org-id-get-create t)))
8785 (unless (= n 0)
8786 (while (re-search-forward org-clock-re nil t)
8787 (kill-whole-line))
8788 (goto-char (point-min))
8789 (while (re-search-forward drawer-re nil t)
8790 (org-remove-empty-drawer-at (point))))
8791 (goto-char (point-min))
8792 (when doshift
8793 (while (re-search-forward org-ts-regexp-both nil t)
8794 (org-timestamp-change (* n shift-n) shift-what))
8795 (unless (= n n-no-remove)
8796 (goto-char (point-min))
8797 (while (re-search-forward org-ts-regexp nil t)
8798 (save-excursion
8799 (goto-char (match-beginning 0))
8800 (if (looking-at "<[^<>\n]+\\( +[.+]?\\+[0-9]+[hdwmy]\\)")
8801 (delete-region (match-beginning 1) (match-end 1)))))))
8802 (setq task (buffer-string)))
8803 (insert task))
8804 (goto-char beg)))
8806 ;;; Outline Sorting
8808 (defun org-sort (with-case)
8809 "Call `org-sort-entries', `org-table-sort-lines' or `org-sort-list'.
8810 Optional argument WITH-CASE means sort case-sensitively."
8811 (interactive "P")
8812 (cond
8813 ((org-at-table-p) (org-call-with-arg 'org-table-sort-lines with-case))
8814 ((org-at-item-p) (org-call-with-arg 'org-sort-list with-case))
8816 (org-call-with-arg 'org-sort-entries with-case))))
8818 (defun org-sort-remove-invisible (s)
8819 "Remove invisible links from string S."
8820 (remove-text-properties 0 (length s) org-rm-props s)
8821 (while (string-match org-bracket-link-regexp s)
8822 (setq s (replace-match (if (match-end 2)
8823 (match-string 3 s)
8824 (match-string 1 s)) t t s)))
8825 (let ((st (format " %s " s)))
8826 (while (string-match org-emph-re st)
8827 (setq st (replace-match (format " %s " (match-string 4 st)) t t st)))
8828 (setq s (substring st 1 -1)))
8831 (defvar org-priority-regexp) ; defined later in the file
8833 (defvar org-after-sorting-entries-or-items-hook nil
8834 "Hook that is run after a bunch of entries or items have been sorted.
8835 When children are sorted, the cursor is in the parent line when this
8836 hook gets called. When a region or a plain list is sorted, the cursor
8837 will be in the first entry of the sorted region/list.")
8839 (defun org-sort-entries
8840 (&optional with-case sorting-type getkey-func compare-func property)
8841 "Sort entries on a certain level of an outline tree.
8842 If there is an active region, the entries in the region are sorted.
8843 Else, if the cursor is before the first entry, sort the top-level items.
8844 Else, the children of the entry at point are sorted.
8846 Sorting can be alphabetically, numerically, by date/time as given by
8847 a time stamp, by a property, by priority order, or by a custom function.
8849 The command prompts for the sorting type unless it has been given to the
8850 function through the SORTING-TYPE argument, which needs to be a character,
8851 \(?n ?N ?a ?A ?t ?T ?s ?S ?d ?D ?p ?P ?o ?O ?r ?R ?f ?F ?k ?K). Here is
8852 the precise meaning of each character:
8854 a Alphabetically, ignoring the TODO keyword and the priority, if any.
8855 c By creation time, which is assumed to be the first inactive time stamp
8856 at the beginning of a line.
8857 d By deadline date/time.
8858 k By clocking time.
8859 n Numerically, by converting the beginning of the entry/item to a number.
8860 o By order of TODO keywords.
8861 p By priority according to the cookie.
8862 r By the value of a property.
8863 s By scheduled date/time.
8864 t By date/time, either the first active time stamp in the entry, or, if
8865 none exist, by the first inactive one.
8867 Capital letters will reverse the sort order.
8869 If the SORTING-TYPE is ?f or ?F, then GETKEY-FUNC specifies a function to be
8870 called with point at the beginning of the record. It must return either
8871 a string or a number that should serve as the sorting key for that record.
8873 Comparing entries ignores case by default. However, with an optional argument
8874 WITH-CASE, the sorting considers case as well.
8876 Sorting is done against the visible part of the headlines, it ignores hidden
8877 links.
8879 When sorting is done, call `org-after-sorting-entries-or-items-hook'."
8880 (interactive "P")
8881 (let ((case-func (if with-case 'identity 'downcase))
8882 (cmstr
8883 ;; The clock marker is lost when using `sort-subr', let's
8884 ;; store the clocking string.
8885 (when (equal (marker-buffer org-clock-marker) (current-buffer))
8886 (save-excursion
8887 (goto-char org-clock-marker)
8888 (looking-back "^.*") (match-string-no-properties 0))))
8889 start beg end stars re re2
8890 txt what tmp)
8891 ;; Find beginning and end of region to sort
8892 (cond
8893 ((org-region-active-p)
8894 ;; we will sort the region
8895 (setq end (region-end)
8896 what "region")
8897 (goto-char (region-beginning))
8898 (if (not (org-at-heading-p)) (outline-next-heading))
8899 (setq start (point)))
8900 ((or (org-at-heading-p)
8901 (ignore-errors (progn (org-back-to-heading) t)))
8902 ;; we will sort the children of the current headline
8903 (org-back-to-heading)
8904 (setq start (point)
8905 end (progn (org-end-of-subtree t t)
8906 (or (bolp) (insert "\n"))
8907 (when (>= (org-back-over-empty-lines) 1)
8908 (forward-line 1))
8909 (point))
8910 what "children")
8911 (goto-char start)
8912 (show-subtree)
8913 (outline-next-heading))
8915 ;; we will sort the top-level entries in this file
8916 (goto-char (point-min))
8917 (or (org-at-heading-p) (outline-next-heading))
8918 (setq start (point))
8919 (goto-char (point-max))
8920 (beginning-of-line 1)
8921 (when (looking-at ".*?\\S-")
8922 ;; File ends in a non-white line
8923 (end-of-line 1)
8924 (insert "\n"))
8925 (setq end (point-max))
8926 (setq what "top-level")
8927 (goto-char start)
8928 (show-all)))
8930 (setq beg (point))
8931 (when (>= beg end) (goto-char start) (user-error "Nothing to sort"))
8933 (looking-at "\\(\\*+\\)")
8934 (setq stars (match-string 1)
8935 re (concat "^" (regexp-quote stars) " +")
8936 re2 (concat "^" (regexp-quote (substring stars 0 -1)) "[ \t\n]")
8937 txt (buffer-substring beg end))
8938 (if (not (equal (substring txt -1) "\n")) (setq txt (concat txt "\n")))
8939 (if (and (not (equal stars "*")) (string-match re2 txt))
8940 (user-error "Region to sort contains a level above the first entry"))
8942 (unless sorting-type
8943 (message
8944 "Sort %s: [a]lpha [n]umeric [p]riority p[r]operty todo[o]rder [f]unc
8945 [t]ime [s]cheduled [d]eadline [c]reated cloc[k]ing
8946 A/N/P/R/O/F/T/S/D/C/K means reversed:"
8947 what)
8948 (setq sorting-type (read-char-exclusive))
8950 (unless getkey-func
8951 (and (= (downcase sorting-type) ?f)
8952 (setq getkey-func
8953 (org-icompleting-read "Sort using function: "
8954 obarray 'fboundp t nil nil))
8955 (setq getkey-func (intern getkey-func))))
8957 (and (= (downcase sorting-type) ?r)
8958 (not property)
8959 (setq property
8960 (org-icompleting-read "Property: "
8961 (mapcar 'list (org-buffer-property-keys t))
8962 nil t))))
8964 (when (member sorting-type '(?k ?K)) (org-clock-sum))
8965 (message "Sorting entries...")
8967 (save-restriction
8968 (narrow-to-region start end)
8969 (let ((dcst (downcase sorting-type))
8970 (case-fold-search nil)
8971 (now (current-time)))
8972 (sort-subr
8973 (/= dcst sorting-type)
8974 ;; This function moves to the beginning character of the "record" to
8975 ;; be sorted.
8976 (lambda nil
8977 (if (re-search-forward re nil t)
8978 (goto-char (match-beginning 0))
8979 (goto-char (point-max))))
8980 ;; This function moves to the last character of the "record" being
8981 ;; sorted.
8982 (lambda nil
8983 (save-match-data
8984 (condition-case nil
8985 (outline-forward-same-level 1)
8986 (error
8987 (goto-char (point-max))))))
8988 ;; This function returns the value that gets sorted against.
8989 (lambda nil
8990 (cond
8991 ((= dcst ?n)
8992 (if (looking-at org-complex-heading-regexp)
8993 (string-to-number (org-sort-remove-invisible (match-string 4)))
8994 nil))
8995 ((= dcst ?a)
8996 (if (looking-at org-complex-heading-regexp)
8997 (funcall case-func (org-sort-remove-invisible (match-string 4)))
8998 nil))
8999 ((= dcst ?k)
9000 (or (get-text-property (point) :org-clock-minutes) 0))
9001 ((= dcst ?t)
9002 (let ((end (save-excursion (outline-next-heading) (point))))
9003 (if (or (re-search-forward org-ts-regexp end t)
9004 (re-search-forward org-ts-regexp-both end t))
9005 (org-time-string-to-seconds (match-string 0))
9006 (org-float-time now))))
9007 ((= dcst ?c)
9008 (let ((end (save-excursion (outline-next-heading) (point))))
9009 (if (re-search-forward
9010 (concat "^[ \t]*\\[" org-ts-regexp1 "\\]")
9011 end t)
9012 (org-time-string-to-seconds (match-string 0))
9013 (org-float-time now))))
9014 ((= dcst ?s)
9015 (let ((end (save-excursion (outline-next-heading) (point))))
9016 (if (re-search-forward org-scheduled-time-regexp end t)
9017 (org-time-string-to-seconds (match-string 1))
9018 (org-float-time now))))
9019 ((= dcst ?d)
9020 (let ((end (save-excursion (outline-next-heading) (point))))
9021 (if (re-search-forward org-deadline-time-regexp end t)
9022 (org-time-string-to-seconds (match-string 1))
9023 (org-float-time now))))
9024 ((= dcst ?p)
9025 (if (re-search-forward org-priority-regexp (point-at-eol) t)
9026 (string-to-char (match-string 2))
9027 org-default-priority))
9028 ((= dcst ?r)
9029 (or (org-entry-get nil property) ""))
9030 ((= dcst ?o)
9031 (if (looking-at org-complex-heading-regexp)
9032 (let* ((m (match-string 2))
9033 (s (if (member m org-done-keywords) '- '+)))
9034 (- 99 (funcall s (length (member m org-todo-keywords-1)))))))
9035 ((= dcst ?f)
9036 (if getkey-func
9037 (progn
9038 (setq tmp (funcall getkey-func))
9039 (if (stringp tmp) (setq tmp (funcall case-func tmp)))
9040 tmp)
9041 (error "Invalid key function `%s'" getkey-func)))
9042 (t (error "Invalid sorting type `%c'" sorting-type))))
9044 (cond
9045 ((= dcst ?a) 'string<)
9046 ((= dcst ?f) compare-func)
9047 ((member dcst '(?p ?t ?s ?d ?c ?k)) '<)))))
9048 (run-hooks 'org-after-sorting-entries-or-items-hook)
9049 ;; Reset the clock marker if needed
9050 (when cmstr
9051 (save-excursion
9052 (goto-char start)
9053 (search-forward cmstr nil t)
9054 (move-marker org-clock-marker (point))))
9055 (message "Sorting entries...done")))
9057 (defun org-do-sort (table what &optional with-case sorting-type)
9058 "Sort TABLE of WHAT according to SORTING-TYPE.
9059 The user will be prompted for the SORTING-TYPE if the call to this
9060 function does not specify it.
9061 WHAT is only for the prompt, to indicate what is being sorted.
9062 The sorting key will be extracted from the car of the elements of
9063 the table.
9064 If WITH-CASE is non-nil, the sorting will be case-sensitive."
9065 (unless sorting-type
9066 (message
9067 "Sort %s: [a]lphabetic, [n]umeric, [t]ime. A/N/T means reversed:"
9068 what)
9069 (setq sorting-type (read-char-exclusive)))
9070 (let ((dcst (downcase sorting-type))
9071 extractfun comparefun)
9072 ;; Define the appropriate functions
9073 (cond
9074 ((= dcst ?n)
9075 (setq extractfun 'string-to-number
9076 comparefun (if (= dcst sorting-type) '< '>)))
9077 ((= dcst ?a)
9078 (setq extractfun (if with-case (lambda(x) (org-sort-remove-invisible x))
9079 (lambda(x) (downcase (org-sort-remove-invisible x))))
9080 comparefun (if (= dcst sorting-type)
9081 'string<
9082 (lambda (a b) (and (not (string< a b))
9083 (not (string= a b)))))))
9084 ((= dcst ?t)
9085 (setq extractfun
9086 (lambda (x)
9087 (cond ((or (string-match org-ts-regexp x)
9088 (string-match org-ts-regexp-both x))
9089 (org-float-time
9090 (org-time-string-to-time (match-string 0 x))))
9091 ((string-match "[0-9]\\{1,2\\}:[0-9]\\{2\\}" x)
9092 (org-hh:mm-string-to-minutes x))
9093 (t 0)))
9094 comparefun (if (= dcst sorting-type) '< '>)))
9095 (t (error "Invalid sorting type `%c'" sorting-type)))
9097 (sort (mapcar (lambda (x) (cons (funcall extractfun (car x)) (cdr x)))
9098 table)
9099 (lambda (a b) (funcall comparefun (car a) (car b))))))
9102 ;;; The orgstruct minor mode
9104 ;; Define a minor mode which can be used in other modes in order to
9105 ;; integrate the org-mode structure editing commands.
9107 ;; This is really a hack, because the org-mode structure commands use
9108 ;; keys which normally belong to the major mode. Here is how it
9109 ;; works: The minor mode defines all the keys necessary to operate the
9110 ;; structure commands, but wraps the commands into a function which
9111 ;; tests if the cursor is currently at a headline or a plain list
9112 ;; item. If that is the case, the structure command is used,
9113 ;; temporarily setting many Org-mode variables like regular
9114 ;; expressions for filling etc. However, when any of those keys is
9115 ;; used at a different location, function uses `key-binding' to look
9116 ;; up if the key has an associated command in another currently active
9117 ;; keymap (minor modes, major mode, global), and executes that
9118 ;; command. There might be problems if any of the keys is otherwise
9119 ;; used as a prefix key.
9121 (defcustom orgstruct-heading-prefix-regexp ""
9122 "Regexp that matches the custom prefix of Org headlines in
9123 orgstruct(++)-mode."
9124 :group 'org
9125 :version "24.4"
9126 :package-version '(Org . "8.3")
9127 :type 'regexp)
9128 ;;;###autoload(put 'orgstruct-heading-prefix-regexp 'safe-local-variable 'stringp)
9130 (defcustom orgstruct-setup-hook nil
9131 "Hook run after orgstruct-mode-map is filled."
9132 :group 'org
9133 :version "24.4"
9134 :package-version '(Org . "8.0")
9135 :type 'hook)
9137 (defvar orgstruct-initialized nil)
9139 (defvar org-local-vars nil
9140 "List of local variables, for use by `orgstruct-mode'.")
9142 ;;;###autoload
9143 (define-minor-mode orgstruct-mode
9144 "Toggle the minor mode `orgstruct-mode'.
9145 This mode is for using Org-mode structure commands in other
9146 modes. The following keys behave as if Org-mode were active, if
9147 the cursor is on a headline, or on a plain list item (both as
9148 defined by Org-mode)."
9149 nil " OrgStruct" (make-sparse-keymap)
9150 (funcall (if orgstruct-mode
9151 'add-to-invisibility-spec
9152 'remove-from-invisibility-spec)
9153 '(outline . t))
9154 (when orgstruct-mode
9155 (org-load-modules-maybe)
9156 (unless orgstruct-initialized
9157 (orgstruct-setup)
9158 (setq orgstruct-initialized t))))
9160 ;;;###autoload
9161 (defun turn-on-orgstruct ()
9162 "Unconditionally turn on `orgstruct-mode'."
9163 (orgstruct-mode 1))
9165 (defvar org-fb-vars nil)
9166 (make-variable-buffer-local 'org-fb-vars)
9167 (defun orgstruct++-mode (&optional arg)
9168 "Toggle `orgstruct-mode', the enhanced version of it.
9169 In addition to setting orgstruct-mode, this also exports all
9170 indentation and autofilling variables from org-mode into the
9171 buffer. It will also recognize item context in multiline items."
9172 (interactive "P")
9173 (setq arg (prefix-numeric-value (or arg (if orgstruct-mode -1 1))))
9174 (if (< arg 1)
9175 (progn (orgstruct-mode -1)
9176 (mapc (lambda(v)
9177 (org-set-local (car v)
9178 (if (eq (car-safe (cadr v)) 'quote) (cadadr v) (cadr v))))
9179 org-fb-vars))
9180 (orgstruct-mode 1)
9181 (setq org-fb-vars nil)
9182 (unless org-local-vars
9183 (setq org-local-vars (org-get-local-variables)))
9184 (let (var val)
9185 (mapc
9186 (lambda (x)
9187 (when (string-match
9188 "^\\(paragraph-\\|auto-fill\\|normal-auto-fill\\|fill-paragraph\\|fill-prefix\\|indent-\\)"
9189 (symbol-name (car x)))
9190 (setq var (car x) val (nth 1 x))
9191 (push (list var `(quote ,(eval var))) org-fb-vars)
9192 (org-set-local var (if (eq (car-safe val) 'quote) (nth 1 val) val))))
9193 org-local-vars)
9194 (org-set-local 'orgstruct-is-++ t))))
9196 (defvar orgstruct-is-++ nil
9197 "Is `orgstruct-mode' in ++ version in the current-buffer?")
9198 (make-variable-buffer-local 'orgstruct-is-++)
9200 ;;;###autoload
9201 (defun turn-on-orgstruct++ ()
9202 "Unconditionally turn on `orgstruct++-mode'."
9203 (orgstruct++-mode 1))
9205 (defun orgstruct-error ()
9206 "Error when there is no default binding for a structure key."
9207 (interactive)
9208 (funcall (if (fboundp 'user-error)
9209 'user-error
9210 'error)
9211 "This key has no function outside structure elements"))
9213 (defun orgstruct-setup ()
9214 "Setup orgstruct keymap."
9215 (dolist (cell '((org-demote . t)
9216 (org-metaleft . t)
9217 (org-metaright . t)
9218 (org-promote . t)
9219 (org-shiftmetaleft . t)
9220 (org-shiftmetaright . t)
9221 org-backward-element
9222 org-backward-heading-same-level
9223 org-ctrl-c-ret
9224 org-ctrl-c-minus
9225 org-ctrl-c-star
9226 org-cycle
9227 org-forward-heading-same-level
9228 org-insert-heading
9229 org-insert-heading-respect-content
9230 org-kill-note-or-show-branches
9231 org-mark-subtree
9232 org-meta-return
9233 org-metadown
9234 org-metaup
9235 org-narrow-to-subtree
9236 org-promote-subtree
9237 org-reveal
9238 org-shiftdown
9239 org-shiftleft
9240 org-shiftmetadown
9241 org-shiftmetaup
9242 org-shiftright
9243 org-shifttab
9244 org-shifttab
9245 org-shiftup
9246 org-show-subtree
9247 org-sort
9248 org-up-element
9249 outline-demote
9250 outline-next-visible-heading
9251 outline-previous-visible-heading
9252 outline-promote
9253 outline-up-heading
9254 show-children))
9255 (let ((f (or (car-safe cell) cell))
9256 (disable-when-heading-prefix (cdr-safe cell)))
9257 (when (fboundp f)
9258 (let ((new-bindings))
9259 (dolist (binding (nconc (where-is-internal f org-mode-map)
9260 (where-is-internal f outline-mode-map)))
9261 (push binding new-bindings)
9262 ;; TODO use local-function-key-map
9263 (dolist (rep '(("<tab>" . "TAB")
9264 ("<return>" . "RET")
9265 ("<escape>" . "ESC")
9266 ("<delete>" . "DEL")))
9267 (setq binding (read-kbd-macro
9268 (let ((case-fold-search))
9269 (replace-regexp-in-string
9270 (regexp-quote (cdr rep))
9271 (car rep)
9272 (key-description binding)))))
9273 (pushnew binding new-bindings :test 'equal)))
9274 (dolist (binding new-bindings)
9275 (let ((key (lookup-key orgstruct-mode-map binding)))
9276 (when (or (not key) (numberp key))
9277 (ignore-errors
9278 (org-defkey orgstruct-mode-map
9279 binding
9280 (orgstruct-make-binding
9281 f binding disable-when-heading-prefix))))))))))
9282 (run-hooks 'orgstruct-setup-hook))
9284 (defun orgstruct-make-binding (fun key disable-when-heading-prefix)
9285 "Create a function for binding in the structure minor mode.
9286 FUN is the command to call inside a table. KEY is the key that
9287 should be checked in for a command to execute outside of tables.
9288 Non-nil `disable-when-heading-prefix' means to disable the command
9289 if `orgstruct-heading-prefix-regexp' is not empty."
9290 (let ((name (concat "orgstruct-hijacker-" (symbol-name fun))))
9291 (let ((nname name)
9292 (i 0))
9293 (while (fboundp (intern nname))
9294 (setq nname (format "%s-%d" name (setq i (1+ i)))))
9295 (setq name (intern nname)))
9296 (eval
9297 (let ((bindings '((org-heading-regexp
9298 (concat "^"
9299 orgstruct-heading-prefix-regexp
9300 "\\(\\*+\\)\\(?: +\\(.*?\\)\\)?[ ]*$"))
9301 (org-outline-regexp
9302 (concat orgstruct-heading-prefix-regexp "\\*+ "))
9303 (org-outline-regexp-bol
9304 (concat "^" org-outline-regexp))
9305 (outline-regexp org-outline-regexp)
9306 (outline-heading-end-regexp "\n")
9307 (outline-level 'org-outline-level)
9308 (outline-heading-alist))))
9309 `(defun ,name (arg)
9310 ,(concat "In Structure, run `" (symbol-name fun) "'.\n"
9311 "Outside of structure, run the binding of `"
9312 (key-description key) "'."
9313 (when disable-when-heading-prefix
9314 (concat
9315 "\nIf `orgstruct-heading-prefix-regexp' is not empty, this command will always fall\n"
9316 "back to the default binding due to limitations of Org's implementation of\n"
9317 "`" (symbol-name fun) "'.")))
9318 (interactive "p")
9319 (let* ((disable
9320 ,(and disable-when-heading-prefix
9321 '(not (string= orgstruct-heading-prefix-regexp ""))))
9322 (fallback
9323 (or disable
9324 (not
9325 (let* ,bindings
9326 (org-context-p 'headline 'item
9327 ,(when (memq fun
9328 '(org-insert-heading
9329 org-insert-heading-respect-content
9330 org-meta-return))
9331 '(when orgstruct-is-++
9332 'item-body))))))))
9333 (if fallback
9334 (let* ((orgstruct-mode)
9335 (binding
9336 (let ((key ,key))
9337 (catch 'exit
9338 (dolist
9339 (rep
9340 '(nil
9341 ("<\\([^>]*\\)tab>" . "\\1TAB")
9342 ("<\\([^>]*\\)return>" . "\\1RET")
9343 ("<\\([^>]*\\)escape>" . "\\1ESC")
9344 ("<\\([^>]*\\)delete>" . "\\1DEL"))
9345 nil)
9346 (when rep
9347 (setq key (read-kbd-macro
9348 (let ((case-fold-search))
9349 (replace-regexp-in-string
9350 (car rep)
9351 (cdr rep)
9352 (key-description key))))))
9353 (when (key-binding key)
9354 (throw 'exit (key-binding key))))))))
9355 (if (keymapp binding)
9356 (org-set-transient-map binding)
9357 (let ((func (or binding
9358 (unless disable
9359 'orgstruct-error))))
9360 (when func
9361 (call-interactively func)))))
9362 (org-run-like-in-org-mode
9363 (lambda ()
9364 (interactive)
9365 (let* ,bindings
9366 (call-interactively ',fun)))))))))
9367 name))
9369 (defun org-contextualize-keys (alist contexts)
9370 "Return valid elements in ALIST depending on CONTEXTS.
9372 `org-agenda-custom-commands' or `org-capture-templates' are the
9373 values used for ALIST, and `org-agenda-custom-commands-contexts'
9374 or `org-capture-templates-contexts' are the associated contexts
9375 definitions."
9376 (let ((contexts
9377 ;; normalize contexts
9378 (mapcar
9379 (lambda(c) (cond ((listp (cadr c))
9380 (list (car c) (car c) (cadr c)))
9381 ((string= "" (cadr c))
9382 (list (car c) (car c) (caddr c)))
9383 (t c))) contexts))
9384 (a alist) c r s)
9385 ;; loop over all commands or templates
9386 (while (setq c (pop a))
9387 (let (vrules repl)
9388 (cond
9389 ((not (assoc (car c) contexts))
9390 (push c r))
9391 ((and (assoc (car c) contexts)
9392 (setq vrules (org-contextualize-validate-key
9393 (car c) contexts)))
9394 (mapc (lambda (vr)
9395 (when (not (equal (car vr) (cadr vr)))
9396 (setq repl vr))) vrules)
9397 (if (not repl) (push c r)
9398 (push (cadr repl) s)
9399 (push
9400 (cons (car c)
9401 (cdr (or (assoc (cadr repl) alist)
9402 (error "Undefined key `%s' as contextual replacement for `%s'"
9403 (cadr repl) (car c)))))
9404 r))))))
9405 ;; Return limited ALIST, possibly with keys modified, and deduplicated
9406 (delq
9408 (delete-dups
9409 (mapcar (lambda (x)
9410 (let ((tpl (car x)))
9411 (when (not (delq
9413 (mapcar (lambda(y)
9414 (equal y tpl)) s))) x)))
9415 (reverse r))))))
9417 (defun org-contextualize-validate-key (key contexts)
9418 "Check CONTEXTS for agenda or capture KEY."
9419 (let (r rr res)
9420 (while (setq r (pop contexts))
9421 (mapc
9422 (lambda (rr)
9423 (when
9424 (and (equal key (car r))
9425 (if (functionp rr) (funcall rr)
9426 (or (and (eq (car rr) 'in-file)
9427 (buffer-file-name)
9428 (string-match (cdr rr) (buffer-file-name)))
9429 (and (eq (car rr) 'in-mode)
9430 (string-match (cdr rr) (symbol-name major-mode)))
9431 (and (eq (car rr) 'in-buffer)
9432 (string-match (cdr rr) (buffer-name)))
9433 (when (and (eq (car rr) 'not-in-file)
9434 (buffer-file-name))
9435 (not (string-match (cdr rr) (buffer-file-name))))
9436 (when (eq (car rr) 'not-in-mode)
9437 (not (string-match (cdr rr) (symbol-name major-mode))))
9438 (when (eq (car rr) 'not-in-buffer)
9439 (not (string-match (cdr rr) (buffer-name)))))))
9440 (push r res)))
9441 (car (last r))))
9442 (delete-dups (delq nil res))))
9444 (defun org-context-p (&rest contexts)
9445 "Check if local context is any of CONTEXTS.
9446 Possible values in the list of contexts are `table', `headline', and `item'."
9447 (let ((pos (point)))
9448 (goto-char (point-at-bol))
9449 (prog1 (or (and (memq 'table contexts)
9450 (looking-at "[ \t]*|"))
9451 (and (memq 'headline contexts)
9452 (looking-at org-outline-regexp))
9453 (and (memq 'item contexts)
9454 (looking-at "[ \t]*\\([-+*] \\|[0-9]+[.)] \\)"))
9455 (and (memq 'item-body contexts)
9456 (org-in-item-p)))
9457 (goto-char pos))))
9459 (defun org-get-local-variables ()
9460 "Return a list of all local variables in an Org mode buffer."
9461 (let (varlist)
9462 (with-current-buffer (get-buffer-create "*Org tmp*")
9463 (erase-buffer)
9464 (org-mode)
9465 (setq varlist (buffer-local-variables)))
9466 (kill-buffer "*Org tmp*")
9467 (delq nil
9468 (mapcar
9469 (lambda (x)
9470 (setq x
9471 (if (symbolp x)
9472 (list x)
9473 (list (car x) (cdr x))))
9474 (if (and (not (get (car x) 'org-state))
9475 (string-match
9476 "^\\(org-\\|orgtbl-\\|outline-\\|comment-\\|paragraph-\\|auto-fill\\|normal-auto-fill\\|fill-paragraph\\|indent-\\)"
9477 (symbol-name (car x))))
9478 x nil))
9479 varlist))))
9481 (defun org-clone-local-variables (from-buffer &optional regexp)
9482 "Clone local variables from FROM-BUFFER.
9483 Optional argument REGEXP selects variables to clone."
9484 (mapc
9485 (lambda (pair)
9486 (and (symbolp (car pair))
9487 (or (null regexp)
9488 (string-match regexp (symbol-name (car pair))))
9489 (set (make-local-variable (car pair))
9490 (cdr pair))))
9491 (buffer-local-variables from-buffer)))
9493 ;;;###autoload
9494 (defun org-run-like-in-org-mode (cmd)
9495 "Run a command, pretending that the current buffer is in Org-mode.
9496 This will temporarily bind local variables that are typically bound in
9497 Org-mode to the values they have in Org-mode, and then interactively
9498 call CMD."
9499 (org-load-modules-maybe)
9500 (unless org-local-vars
9501 (setq org-local-vars (org-get-local-variables)))
9502 (let (binds)
9503 (dolist (var org-local-vars)
9504 (when (or (not (boundp (car var)))
9505 (eq (symbol-value (car var))
9506 (default-value (car var))))
9507 (push (list (car var) `(quote ,(cadr var))) binds)))
9508 (eval `(let ,binds
9509 (call-interactively (quote ,cmd))))))
9511 (defun org-get-category (&optional pos force-refresh)
9512 "Get the category applying to position POS."
9513 (save-match-data
9514 (if force-refresh (org-refresh-category-properties))
9515 (let ((pos (or pos (point))))
9516 (or (get-text-property pos 'org-category)
9517 (progn (org-refresh-category-properties)
9518 (get-text-property pos 'org-category))))))
9520 ;;; Refresh properties
9522 (defun org-refresh-properties (dprop tprop)
9523 "Refresh buffer text properties.
9524 DPROP is the drawer property and TPROP is either the
9525 corresponding text property to set, or an alist with each element
9526 being a text property (as a symbol) and a function to apply to
9527 the value of the drawer property."
9528 (let ((case-fold-search t)
9529 (inhibit-read-only t))
9530 (org-with-silent-modifications
9531 (save-excursion
9532 (save-restriction
9533 (widen)
9534 (goto-char (point-min))
9535 (while (re-search-forward (concat "^[ \t]*:" dprop ": +\\(.*\\)[ \t]*$") nil t)
9536 (org-refresh-property tprop (org-match-string-no-properties 1))))))))
9538 (defun org-refresh-property (tprop p)
9539 "Refresh the buffer text property TPROP from the drawer property P.
9540 The refresh happens only for the current tree (not subtree)."
9541 (save-excursion
9542 (org-back-to-heading t)
9543 ;; tprop is a text property symbol
9544 (if (symbolp tprop)
9545 (put-text-property
9546 (point) (or (outline-next-heading) (point-max)) tprop p)
9547 ;; tprop is an alist with (properties . function) elements
9548 (mapc (lambda(al)
9549 (save-excursion
9550 (put-text-property
9551 (point-at-bol) (or (outline-next-heading) (point-max))
9552 (car al)
9553 (funcall (cdr al) p))))
9554 tprop))))
9556 (defun org-refresh-category-properties ()
9557 "Refresh category text properties in the buffer."
9558 (let ((case-fold-search t)
9559 (inhibit-read-only t)
9560 (def-cat (cond
9561 ((null org-category)
9562 (if buffer-file-name
9563 (file-name-sans-extension
9564 (file-name-nondirectory buffer-file-name))
9565 "???"))
9566 ((symbolp org-category) (symbol-name org-category))
9567 (t org-category)))
9568 beg end cat pos optionp)
9569 (org-with-silent-modifications
9570 (save-excursion
9571 (save-restriction
9572 (widen)
9573 (goto-char (point-min))
9574 (put-text-property (point) (point-max) 'org-category def-cat)
9575 (while (re-search-forward
9576 "^[ \t]*\\(\\(?:#\\+\\|:\\)CATEGORY:\\)\\(.*\\)" nil t)
9577 (setq pos (match-end 0)
9578 optionp (equal (char-after (match-beginning 0)) ?#)
9579 cat (org-trim (match-string 2)))
9580 (if optionp
9581 (setq beg (point-at-bol) end (point-max))
9582 (org-back-to-heading t)
9583 (setq beg (point) end (org-end-of-subtree t t)))
9584 (put-text-property beg end 'org-category cat)
9585 (goto-char pos)))))))
9587 (defun org-refresh-stats-properties ()
9588 "Refresh stats text properties in the buffer."
9589 (let (stats)
9590 (org-with-silent-modifications
9591 (save-excursion
9592 (save-restriction
9593 (widen)
9594 (goto-char (point-min))
9595 (while (re-search-forward
9596 (concat org-outline-regexp-bol ".*"
9597 "\\(?:\\[\\([0-9]+\\)%\\|\\([0-9]+\\)/\\([0-9]+\\)\\]\\)")
9598 nil t)
9599 (setq stats (cond ((equal (match-string 3) "0") 0)
9600 ((match-string 2)
9601 (/ (* (string-to-number (match-string 2)) 100)
9602 (string-to-number (match-string 3))))
9603 (t (string-to-number (match-string 1)))))
9604 (org-back-to-heading t)
9605 (put-text-property (point) (progn (org-end-of-subtree t t) (point))
9606 'org-stats stats)))))))
9608 (defun org-refresh-effort-properties ()
9609 "Refresh effort properties"
9610 (org-refresh-properties
9611 org-effort-property
9612 '((effort . identity)
9613 (effort-minutes . org-duration-string-to-minutes))))
9615 ;;;; Link Stuff
9617 ;;; Link abbreviations
9619 (defun org-link-expand-abbrev (link)
9620 "Apply replacements as defined in `org-link-abbrev-alist'."
9621 (if (string-match "^\\([^:]*\\)\\(::?\\(.*\\)\\)?$" link)
9622 (let* ((key (match-string 1 link))
9623 (as (or (assoc key org-link-abbrev-alist-local)
9624 (assoc key org-link-abbrev-alist)))
9625 (tag (and (match-end 2) (match-string 3 link)))
9626 rpl)
9627 (if (not as)
9628 link
9629 (setq rpl (cdr as))
9630 (cond
9631 ((symbolp rpl) (funcall rpl tag))
9632 ((string-match "%(\\([^)]+\\))" rpl)
9633 (replace-match
9634 (save-match-data
9635 (funcall (intern-soft (match-string 1 rpl)) tag)) t t rpl))
9636 ((string-match "%s" rpl) (replace-match (or tag "") t t rpl))
9637 ((string-match "%h" rpl)
9638 (replace-match (url-hexify-string (or tag "")) t t rpl))
9639 (t (concat rpl tag)))))
9640 link))
9642 ;;; Storing and inserting links
9644 (defvar org-insert-link-history nil
9645 "Minibuffer history for links inserted with `org-insert-link'.")
9647 (defvar org-stored-links nil
9648 "Contains the links stored with `org-store-link'.")
9650 (defvar org-store-link-plist nil
9651 "Plist with info about the most recently link created with `org-store-link'.")
9653 (defvar org-link-protocols nil
9654 "Link protocols added to Org-mode using `org-add-link-type'.")
9656 (defvar org-store-link-functions nil
9657 "List of functions that are called to create and store a link.
9658 Each function will be called in turn until one returns a non-nil
9659 value. Each function should check if it is responsible for creating
9660 this link (for example by looking at the major mode).
9661 If not, it must exit and return nil.
9662 If yes, it should return a non-nil value after a calling
9663 `org-store-link-props' with a list of properties and values.
9664 Special properties are:
9666 :type The link prefix, like \"http\". This must be given.
9667 :link The link, like \"http://www.astro.uva.nl/~dominik\".
9668 This is obligatory as well.
9669 :description Optional default description for the second pair
9670 of brackets in an Org-mode link. The user can still change
9671 this when inserting this link into an Org-mode buffer.
9673 In addition to these, any additional properties can be specified
9674 and then used in capture templates.")
9676 (defun org-add-link-type (type &optional follow export)
9677 "Add TYPE to the list of `org-link-types'.
9678 Re-compute all regular expressions depending on `org-link-types'
9680 FOLLOW and EXPORT are two functions.
9682 FOLLOW should take the link path as the single argument and do whatever
9683 is necessary to follow the link, for example find a file or display
9684 a mail message.
9686 EXPORT should format the link path for export to one of the export formats.
9687 It should be a function accepting three arguments:
9689 path the path of the link, the text after the prefix (like \"http:\")
9690 desc the description of the link, if any, or a description added by
9691 org-export-normalize-links if there is none
9692 format the export format, a symbol like `html' or `latex' or `ascii'..
9694 The function may use the FORMAT information to return different values
9695 depending on the format. The return value will be put literally into
9696 the exported file. If the return value is nil, this means Org should
9697 do what it normally does with links which do not have EXPORT defined.
9699 Org mode has a built-in default for exporting links. If you are happy with
9700 this default, there is no need to define an export function for the link
9701 type. For a simple example of an export function, see `org-bbdb.el'."
9702 (add-to-list 'org-link-types type t)
9703 (org-make-link-regexps)
9704 (org-element-update-syntax)
9705 (if (assoc type org-link-protocols)
9706 (setcdr (assoc type org-link-protocols) (list follow export))
9707 (push (list type follow export) org-link-protocols)))
9709 (defvar org-agenda-buffer-name) ; Defined in org-agenda.el
9710 (defvar org-id-link-to-org-use-id) ; Defined in org-id.el
9712 ;;;###autoload
9713 (defun org-store-link (arg)
9714 "\\<org-mode-map>Store an org-link to the current location.
9715 This link is added to `org-stored-links' and can later be inserted
9716 into an org-buffer with \\[org-insert-link].
9718 For some link types, a prefix arg is interpreted.
9719 For links to Usenet articles, arg negates `org-gnus-prefer-web-links'.
9720 For file links, arg negates `org-context-in-file-links'.
9722 A double prefix arg force skipping storing functions that are not
9723 part of Org's core.
9725 A triple prefix arg force storing a link for each line in the
9726 active region."
9727 (interactive "P")
9728 (org-load-modules-maybe)
9729 (if (and (equal arg '(64)) (org-region-active-p))
9730 (save-excursion
9731 (let ((end (region-end)))
9732 (goto-char (region-beginning))
9733 (set-mark (point))
9734 (while (< (point-at-eol) end)
9735 (move-end-of-line 1) (activate-mark)
9736 (let (current-prefix-arg)
9737 (call-interactively 'org-store-link))
9738 (move-beginning-of-line 2)
9739 (set-mark (point)))))
9740 (org-with-limited-levels
9741 (setq org-store-link-plist nil)
9742 (let (link cpltxt desc description search
9743 txt custom-id agenda-link sfuns sfunsn)
9744 (cond
9746 ;; Store a link using an external link type
9747 ((and (not (equal arg '(16)))
9748 (setq sfuns
9749 (delq
9750 nil (mapcar (lambda (f)
9751 (let (fs) (if (funcall f) (push f fs))))
9752 org-store-link-functions))
9753 sfunsn (mapcar (lambda (fu) (symbol-name (car fu))) sfuns))
9754 (or (and (cdr sfuns)
9755 (funcall (intern
9756 (completing-read
9757 "Which function for creating the link? "
9758 sfunsn nil t (car sfunsn)))))
9759 (funcall (caar sfuns)))
9760 (setq link (plist-get org-store-link-plist :link)
9761 desc (or (plist-get org-store-link-plist
9762 :description) link))))
9764 ;; Store a link from a source code buffer
9765 ((org-src-edit-buffer-p)
9766 (let (label gc)
9767 (while (or (not label)
9768 (save-excursion
9769 (save-restriction
9770 (widen)
9771 (goto-char (point-min))
9772 (re-search-forward
9773 (regexp-quote (format org-coderef-label-format label))
9774 nil t))))
9775 (when label (message "Label exists already") (sit-for 2))
9776 (setq label (read-string "Code line label: " label)))
9777 (end-of-line 1)
9778 (setq link (format org-coderef-label-format label))
9779 (setq gc (- 79 (length link)))
9780 (if (< (current-column) gc) (org-move-to-column gc t) (insert " "))
9781 (insert link)
9782 (setq link (concat "(" label ")") desc nil)))
9784 ;; We are in the agenda, link to referenced location
9785 ((equal (org-bound-and-true-p org-agenda-buffer-name) (buffer-name))
9786 (let ((m (or (get-text-property (point) 'org-hd-marker)
9787 (get-text-property (point) 'org-marker))))
9788 (when m
9789 (org-with-point-at m
9790 (setq agenda-link
9791 (if (org-called-interactively-p 'any)
9792 (call-interactively 'org-store-link)
9793 (org-store-link nil)))))))
9795 ((eq major-mode 'calendar-mode)
9796 (let ((cd (calendar-cursor-to-date)))
9797 (setq link
9798 (format-time-string
9799 (car org-time-stamp-formats)
9800 (apply 'encode-time
9801 (list 0 0 0 (nth 1 cd) (nth 0 cd) (nth 2 cd)
9802 nil nil nil))))
9803 (org-store-link-props :type "calendar" :date cd)))
9805 ((eq major-mode 'help-mode)
9806 (setq link (concat "help:" (save-excursion
9807 (goto-char (point-min))
9808 (looking-at "^[^ ]+")
9809 (match-string 0))))
9810 (org-store-link-props :type "help"))
9812 ((eq major-mode 'w3-mode)
9813 (setq cpltxt (if (and (buffer-name)
9814 (not (string-match "Untitled" (buffer-name))))
9815 (buffer-name)
9816 (url-view-url t))
9817 link (url-view-url t))
9818 (org-store-link-props :type "w3" :url (url-view-url t)))
9820 ((eq major-mode 'image-mode)
9821 (setq cpltxt (concat "file:"
9822 (abbreviate-file-name buffer-file-name))
9823 link cpltxt)
9824 (org-store-link-props :type "image" :file buffer-file-name))
9826 ;; In dired, store a link to the file of the current line
9827 ((derived-mode-p 'dired-mode)
9828 (let ((file (dired-get-filename nil t)))
9829 (setq file (if file
9830 (abbreviate-file-name
9831 (expand-file-name (dired-get-filename nil t)))
9832 ;; otherwise, no file so use current directory.
9833 default-directory))
9834 (setq cpltxt (concat "file:" file)
9835 link cpltxt)))
9837 ((setq search (run-hook-with-args-until-success
9838 'org-create-file-search-functions))
9839 (setq link (concat "file:" (abbreviate-file-name buffer-file-name)
9840 "::" search))
9841 (setq cpltxt (or description link)))
9843 ((and (buffer-file-name (buffer-base-buffer)) (derived-mode-p 'org-mode))
9844 (setq custom-id (org-entry-get nil "CUSTOM_ID"))
9845 (cond
9846 ;; Store a link using the target at point
9847 ((org-in-regexp "[^<]<<\\([^<>]+\\)>>[^>]" 1)
9848 (setq cpltxt
9849 (concat "file:"
9850 (abbreviate-file-name
9851 (buffer-file-name (buffer-base-buffer)))
9852 "::" (match-string 1))
9853 link cpltxt))
9854 ((and (featurep 'org-id)
9855 (or (eq org-id-link-to-org-use-id t)
9856 (and (org-called-interactively-p 'any)
9857 (or (eq org-id-link-to-org-use-id 'create-if-interactive)
9858 (and (eq org-id-link-to-org-use-id
9859 'create-if-interactive-and-no-custom-id)
9860 (not custom-id))))
9861 (and org-id-link-to-org-use-id (org-entry-get nil "ID"))))
9862 ;; Store a link using the ID at point
9863 (setq link (condition-case nil
9864 (prog1 (org-id-store-link)
9865 (setq desc (or (plist-get org-store-link-plist
9866 :description)
9867 "")))
9868 (error
9869 ;; Probably before first headline, link only to file
9870 (concat "file:"
9871 (abbreviate-file-name
9872 (buffer-file-name (buffer-base-buffer))))))))
9874 ;; Just link to current headline
9875 (setq cpltxt (concat "file:"
9876 (abbreviate-file-name
9877 (buffer-file-name (buffer-base-buffer)))))
9878 ;; Add a context search string
9879 (when (org-xor org-context-in-file-links arg)
9880 (let* ((ee (org-element-at-point))
9881 (et (org-element-type ee))
9882 (ev (plist-get (cadr ee) :value))
9883 (ek (plist-get (cadr ee) :key))
9884 (eok (and (stringp ek) (string-match "name" ek))))
9885 (setq txt (cond
9886 ((org-at-heading-p) nil)
9887 ((and (eq et 'keyword) eok) ev)
9888 ((org-region-active-p)
9889 (buffer-substring (region-beginning) (region-end)))))
9890 (when (or (null txt) (string-match "\\S-" txt))
9891 (setq cpltxt
9892 (concat cpltxt "::"
9893 (condition-case nil
9894 (org-make-org-heading-search-string txt)
9895 (error "")))
9896 desc (or (and (eq et 'keyword) eok ev)
9897 (nth 4 (ignore-errors (org-heading-components)))
9898 "NONE")))))
9899 (if (string-match "::\\'" cpltxt)
9900 (setq cpltxt (substring cpltxt 0 -2)))
9901 (setq link cpltxt))))
9903 ((buffer-file-name (buffer-base-buffer))
9904 ;; Just link to this file here.
9905 (setq cpltxt (concat "file:"
9906 (abbreviate-file-name
9907 (buffer-file-name (buffer-base-buffer)))))
9908 ;; Add a context string.
9909 (when (org-xor org-context-in-file-links arg)
9910 (setq txt (if (org-region-active-p)
9911 (buffer-substring (region-beginning) (region-end))
9912 (buffer-substring (point-at-bol) (point-at-eol))))
9913 ;; Only use search option if there is some text.
9914 (when (string-match "\\S-" txt)
9915 (setq cpltxt
9916 (concat cpltxt "::" (org-make-org-heading-search-string txt))
9917 desc "NONE")))
9918 (setq link cpltxt))
9920 ((org-called-interactively-p 'interactive)
9921 (user-error "No method for storing a link from this buffer"))
9923 (t (setq link nil)))
9925 ;; We're done setting link and desc, clean up
9926 (if (consp link) (setq cpltxt (car link) link (cdr link)))
9927 (setq link (or link cpltxt)
9928 desc (or desc cpltxt))
9929 (cond ((equal desc "NONE") (setq desc nil))
9930 ((and desc (string-match org-bracket-link-analytic-regexp desc))
9931 (let ((d0 (match-string 3 desc))
9932 (p0 (match-string 5 desc)))
9933 (setq desc
9934 (replace-regexp-in-string
9935 org-bracket-link-regexp
9936 (concat (or p0 d0)
9937 (if (equal (length (match-string 0 desc))
9938 (length desc)) "*" "")) desc)))))
9940 ;; Return the link
9941 (if (not (and (or (org-called-interactively-p 'any)
9942 executing-kbd-macro) link))
9943 (or agenda-link (and link (org-make-link-string link desc)))
9944 (push (list link desc) org-stored-links)
9945 (message "Stored: %s" (or desc link))
9946 (when custom-id
9947 (setq link (concat "file:" (abbreviate-file-name
9948 (buffer-file-name)) "::#" custom-id))
9949 (push (list link desc) org-stored-links))
9950 (car org-stored-links))))))
9952 (defun org-store-link-props (&rest plist)
9953 "Store link properties, extract names and addresses."
9954 (let (x adr)
9955 (when (setq x (plist-get plist :from))
9956 (setq adr (mail-extract-address-components x))
9957 (setq plist (plist-put plist :fromname (car adr)))
9958 (setq plist (plist-put plist :fromaddress (nth 1 adr))))
9959 (when (setq x (plist-get plist :to))
9960 (setq adr (mail-extract-address-components x))
9961 (setq plist (plist-put plist :toname (car adr)))
9962 (setq plist (plist-put plist :toaddress (nth 1 adr)))))
9963 (let ((from (plist-get plist :from))
9964 (to (plist-get plist :to)))
9965 (when (and from to org-from-is-user-regexp)
9966 (setq plist
9967 (plist-put plist :fromto
9968 (if (string-match org-from-is-user-regexp from)
9969 (concat "to %t")
9970 (concat "from %f"))))))
9971 (setq org-store-link-plist plist))
9973 (defun org-add-link-props (&rest plist)
9974 "Add these properties to the link property list."
9975 (let (key value)
9976 (while plist
9977 (setq key (pop plist) value (pop plist))
9978 (setq org-store-link-plist
9979 (plist-put org-store-link-plist key value)))))
9981 (defun org-email-link-description (&optional fmt)
9982 "Return the description part of an email link.
9983 This takes information from `org-store-link-plist' and formats it
9984 according to FMT (default from `org-email-link-description-format')."
9985 (setq fmt (or fmt org-email-link-description-format))
9986 (let* ((p org-store-link-plist)
9987 (to (plist-get p :toaddress))
9988 (from (plist-get p :fromaddress))
9989 (table
9990 (list
9991 (cons "%c" (plist-get p :fromto))
9992 (cons "%F" (plist-get p :from))
9993 (cons "%f" (or (plist-get p :fromname) (plist-get p :fromaddress) "?"))
9994 (cons "%T" (plist-get p :to))
9995 (cons "%t" (or (plist-get p :toname) (plist-get p :toaddress) "?"))
9996 (cons "%s" (plist-get p :subject))
9997 (cons "%d" (plist-get p :date))
9998 (cons "%m" (plist-get p :message-id)))))
9999 (when (string-match "%c" fmt)
10000 ;; Check if the user wrote this message
10001 (if (and org-from-is-user-regexp from to
10002 (save-match-data (string-match org-from-is-user-regexp from)))
10003 (setq fmt (replace-match "to %t" t t fmt))
10004 (setq fmt (replace-match "from %f" t t fmt))))
10005 (org-replace-escapes fmt table)))
10007 (defun org-make-org-heading-search-string (&optional string)
10008 "Make search string for the current headline or STRING."
10009 (let ((s (or string
10010 (and (derived-mode-p 'org-mode)
10011 (save-excursion
10012 (org-back-to-heading t)
10013 (org-element-property :raw-value (org-element-at-point))))))
10014 (lines org-context-in-file-links))
10015 (or string (setq s (concat "*" s))) ; Add * for headlines
10016 (setq s (replace-regexp-in-string "\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]" "" s))
10017 (when (and string (integerp lines) (> lines 0))
10018 (let ((slines (org-split-string s "\n")))
10019 (when (< lines (length slines))
10020 (setq s (mapconcat
10021 'identity
10022 (reverse (nthcdr (- (length slines) lines)
10023 (reverse slines))) "\n")))))
10024 (mapconcat 'identity (org-split-string s "[ \t]+") " ")))
10026 (defun org-make-link-string (link &optional description)
10027 "Make a link with brackets, consisting of LINK and DESCRIPTION."
10028 (unless (string-match "\\S-" link)
10029 (error "Empty link"))
10030 (when (and description
10031 (stringp description)
10032 (not (string-match "\\S-" description)))
10033 (setq description nil))
10034 (when (stringp description)
10035 ;; Remove brackets from the description, they are fatal.
10036 (while (string-match "\\[" description)
10037 (setq description (replace-match "{" t t description)))
10038 (while (string-match "\\]" description)
10039 (setq description (replace-match "}" t t description))))
10040 (when (equal link description)
10041 ;; No description needed, it is identical
10042 (setq description nil))
10043 (when (and (not description)
10044 (not (string-match (org-image-file-name-regexp) link))
10045 (not (equal link (org-link-escape link))))
10046 (setq description (org-extract-attributes link)))
10047 (setq link
10048 (cond ((string-match (org-image-file-name-regexp) link) link)
10049 ((string-match org-link-types-re link)
10050 (concat (match-string 1 link)
10051 (org-link-escape (substring link (match-end 1)))))
10052 (t (org-link-escape link))))
10053 (concat "[[" link "]"
10054 (if description (concat "[" description "]") "")
10055 "]"))
10057 (defconst org-link-escape-chars
10058 ;;%20 %5B %5D
10059 '(?\ ?\[ ?\])
10060 "List of characters that should be escaped in a link when stored to Org.
10061 This is the list that is used for internal purposes.")
10063 (defconst org-link-escape-chars-browser
10064 ;;%20 %22
10065 '(?\ ?\")
10066 "List of characters to be escaped before handing over to the browser.
10067 If you consider using this constant then you probably want to use
10068 the function `org-link-escape-browser' instead. See there why
10069 this constant is a candidate to be removed once Org drops support
10070 for Emacs 24.1 and 24.2.")
10072 (defun org-link-escape (text &optional table merge)
10073 "Return percent escaped representation of TEXT.
10074 TEXT is a string with the text to escape.
10075 Optional argument TABLE is a list with characters that should be
10076 escaped. When nil, `org-link-escape-chars' is used.
10077 If optional argument MERGE is set, merge TABLE into
10078 `org-link-escape-chars'."
10079 ;; Don't escape chars in internal links
10080 (if (string-match "^\\*[[:alnum:]]+" text)
10081 text
10082 (cond
10083 ((and table merge)
10084 (mapc (lambda (defchr)
10085 (unless (member defchr table)
10086 (setq table (cons defchr table))))
10087 org-link-escape-chars))
10088 ((null table)
10089 (setq table org-link-escape-chars)))
10090 (mapconcat
10091 (lambda (char)
10092 (if (or (member char table)
10093 (and (or (< char 32) (= char ?\%) (> char 126))
10094 org-url-hexify-p))
10095 (mapconcat (lambda (sequence-element)
10096 (format "%%%.2X" sequence-element))
10097 (or (encode-coding-char char 'utf-8)
10098 (error "Unable to percent escape character: %s"
10099 (char-to-string char))) "")
10100 (char-to-string char))) text "")))
10102 (defun org-link-escape-browser (text)
10103 "Escape some characters before handing over to the browser.
10104 This function is a candidate to be removed together with the
10105 constant `org-link-escape-chars-browser' once Org drops support
10106 for Emacs 24.1 and 24.2. All calls to this function will have to
10107 be replaced with `url-encode-url' which is available since Emacs
10108 24.3.1."
10109 ;; Example with the Org link
10110 ;; [[http://lists.gnu.org/archive/cgi-bin/namazu.cgi?idxname=emacs-orgmode&query=%252Bsubject:"Release+8.2"]]
10111 ;; to open the browser with +subject:"Release 8.2" filled into the
10112 ;; query field: In this case the variable TEXT contains the
10113 ;; unescaped [...]=%2Bsubject:"Release+8.2". Then `url-encode-url'
10114 ;; converts correctly to [...]=%2Bsubject:%22Release+8.2%22 or
10115 ;; `org-link-escape' with `org-link-escape-chars-browser' converts
10116 ;; wrongly to [...]=%252Bsubject:%22Release+8.2%22.
10117 (if (fboundp 'url-encode-url)
10118 (url-encode-url text)
10119 (if (org-string-match-p
10120 (concat "[[:nonascii:]" org-link-escape-chars-browser "]")
10121 text)
10122 (org-link-escape text org-link-escape-chars-browser)
10123 text)))
10125 (defun org-link-unescape (str)
10126 "Unhex hexified Unicode strings as returned from the JavaScript function
10127 encodeURIComponent. E.g. `%C3%B6' is the german o-Umlaut."
10128 (unless (and (null str) (string= "" str))
10129 (let ((pos 0) (case-fold-search t) unhexed)
10130 (while (setq pos (string-match "\\(%[0-9a-f][0-9a-f]\\)+" str pos))
10131 (setq unhexed (org-link-unescape-compound (match-string 0 str)))
10132 (setq str (replace-match unhexed t t str))
10133 (setq pos (+ pos (length unhexed))))))
10134 str)
10136 (defun org-link-unescape-compound (hex)
10137 "Unhexify Unicode hex-chars. E.g. `%C3%B6' is the German o-Umlaut.
10138 Note: this function also decodes single byte encodings like
10139 `%E1' (a-acute) if not followed by another `%[A-F0-9]{2}' group."
10140 (save-match-data
10141 (let* ((bytes (cdr (split-string hex "%")))
10142 (ret "")
10143 (eat 0)
10144 (sum 0))
10145 (while bytes
10146 (let* ((val (string-to-number (pop bytes) 16))
10147 (shift-xor
10148 (if (= 0 eat)
10149 (cond
10150 ((>= val 252) (cons 6 252))
10151 ((>= val 248) (cons 5 248))
10152 ((>= val 240) (cons 4 240))
10153 ((>= val 224) (cons 3 224))
10154 ((>= val 192) (cons 2 192))
10155 (t (cons 0 0)))
10156 (cons 6 128))))
10157 (if (>= val 192) (setq eat (car shift-xor)))
10158 (setq val (logxor val (cdr shift-xor)))
10159 (setq sum (+ (lsh sum (car shift-xor)) val))
10160 (if (> eat 0) (setq eat (- eat 1)))
10161 (cond
10162 ((= 0 eat) ;multi byte
10163 (setq ret (concat ret (org-char-to-string sum)))
10164 (setq sum 0))
10165 ((not bytes) ; single byte(s)
10166 (setq ret (org-link-unescape-single-byte-sequence hex))))))
10167 ret)))
10169 (defun org-link-unescape-single-byte-sequence (hex)
10170 "Unhexify hex-encoded single byte character sequences."
10171 (mapconcat (lambda (byte)
10172 (char-to-string (string-to-number byte 16)))
10173 (cdr (split-string hex "%")) ""))
10175 (defun org-xor (a b)
10176 "Exclusive or."
10177 (if a (not b) b))
10179 (defun org-fixup-message-id-for-http (s)
10180 "Replace special characters in a message id, so it can be used in an http query."
10181 (when (string-match "%" s)
10182 (setq s (mapconcat (lambda (c)
10183 (if (eq c ?%)
10184 "%25"
10185 (char-to-string c)))
10186 s "")))
10187 (while (string-match "<" s)
10188 (setq s (replace-match "%3C" t t s)))
10189 (while (string-match ">" s)
10190 (setq s (replace-match "%3E" t t s)))
10191 (while (string-match "@" s)
10192 (setq s (replace-match "%40" t t s)))
10195 (defun org-link-prettify (link)
10196 "Return a human-readable representation of LINK.
10197 The car of LINK must be a raw link.
10198 The cdr of LINK must be either a link description or nil."
10199 (let ((desc (or (cadr link) "<no description>")))
10200 (concat (format "%-45s" (substring desc 0 (min (length desc) 40)))
10201 "<" (car link) ">")))
10203 ;;;###autoload
10204 (defun org-insert-link-global ()
10205 "Insert a link like Org-mode does.
10206 This command can be called in any mode to insert a link in Org-mode syntax."
10207 (interactive)
10208 (org-load-modules-maybe)
10209 (org-run-like-in-org-mode 'org-insert-link))
10211 (defun org-insert-all-links (arg &optional pre post)
10212 "Insert all links in `org-stored-links'.
10213 When a universal prefix, do not delete the links from `org-stored-links'.
10214 When `ARG' is a number, insert the last N link(s).
10215 `PRE' and `POST' are optional arguments to define a string to
10216 prepend or to append."
10217 (interactive "P")
10218 (let ((org-keep-stored-link-after-insertion (equal arg '(4)))
10219 (links (copy-seq org-stored-links))
10220 (pr (or pre "- "))
10221 (po (or post "\n"))
10222 (cnt 1) l)
10223 (if (null org-stored-links)
10224 (message "No link to insert")
10225 (while (and (or (listp arg) (>= arg cnt))
10226 (setq l (if (listp arg)
10227 (pop links)
10228 (pop org-stored-links))))
10229 (setq cnt (1+ cnt))
10230 (insert pr)
10231 (org-insert-link nil (car l) (or (cadr l) "<no description>"))
10232 (insert po)))))
10234 (defun org-insert-last-stored-link (arg)
10235 "Insert the last link stored in `org-stored-links'."
10236 (interactive "p")
10237 (org-insert-all-links arg "" "\n"))
10239 (defun org-link-fontify-links-to-this-file ()
10240 "Fontify links to the current file in `org-stored-links'."
10241 (let ((f (buffer-file-name)) a b)
10242 (setq a (mapcar (lambda(l)
10243 (let ((ll (car l)))
10244 (when (and (string-match "^file:\\(.+\\)::" ll)
10245 (equal f (expand-file-name (match-string 1 ll))))
10246 ll)))
10247 org-stored-links))
10248 (when (featurep 'org-id)
10249 (setq b (mapcar (lambda(l)
10250 (let ((ll (car l)))
10251 (when (and (string-match "^id:\\(.+\\)$" ll)
10252 (equal f (expand-file-name
10253 (or (org-id-find-id-file
10254 (match-string 1 ll)) ""))))
10255 ll)))
10256 org-stored-links)))
10257 (mapcar (lambda(l)
10258 (put-text-property 0 (length l) 'face 'font-lock-comment-face l))
10259 (delq nil (append a b)))))
10261 (defvar org-link-links-in-this-file nil)
10262 (defun org-insert-link (&optional complete-file link-location default-description)
10263 "Insert a link. At the prompt, enter the link.
10265 Completion can be used to insert any of the link protocol prefixes like
10266 http or ftp in use.
10268 The history can be used to select a link previously stored with
10269 `org-store-link'. When the empty string is entered (i.e. if you just
10270 press RET at the prompt), the link defaults to the most recently
10271 stored link. As SPC triggers completion in the minibuffer, you need to
10272 use M-SPC or C-q SPC to force the insertion of a space character.
10274 You will also be prompted for a description, and if one is given, it will
10275 be displayed in the buffer instead of the link.
10277 If there is already a link at point, this command will allow you to edit link
10278 and description parts.
10280 With a \\[universal-argument] prefix, prompts for a file to link to. The file name can
10281 be selected using completion. The path to the file will be relative to the
10282 current directory if the file is in the current directory or a subdirectory.
10283 Otherwise, the link will be the absolute path as completed in the minibuffer
10284 \(i.e. normally ~/path/to/file). You can configure this behavior using the
10285 option `org-link-file-path-type'.
10287 With two \\[universal-argument] prefixes, enforce an absolute path even if the file is in
10288 the current directory or below.
10290 With three \\[universal-argument] prefixes, negate the meaning of
10291 `org-keep-stored-link-after-insertion'.
10293 If `org-make-link-description-function' is non-nil, this function will be
10294 called with the link target, and the result will be the default
10295 link description.
10297 If the LINK-LOCATION parameter is non-nil, this value will be
10298 used as the link location instead of reading one interactively.
10300 If the DEFAULT-DESCRIPTION parameter is non-nil, this value will
10301 be used as the default description."
10302 (interactive "P")
10303 (let* ((wcf (current-window-configuration))
10304 (origbuf (current-buffer))
10305 (region (if (org-region-active-p)
10306 (buffer-substring (region-beginning) (region-end))))
10307 (remove (and region (list (region-beginning) (region-end))))
10308 (desc region)
10309 tmphist ; byte-compile incorrectly complains about this
10310 (link link-location)
10311 (abbrevs org-link-abbrev-alist-local)
10312 entry file all-prefixes auto-desc)
10313 (cond
10314 (link-location) ; specified by arg, just use it.
10315 ((org-in-regexp org-bracket-link-regexp 1)
10316 ;; We do have a link at point, and we are going to edit it.
10317 (setq remove (list (match-beginning 0) (match-end 0)))
10318 (setq desc (if (match-end 3) (org-match-string-no-properties 3)))
10319 (setq link (read-string "Link: "
10320 (org-link-unescape
10321 (org-match-string-no-properties 1)))))
10322 ((or (org-in-regexp org-angle-link-re)
10323 (org-in-regexp org-plain-link-re))
10324 ;; Convert to bracket link
10325 (setq remove (list (match-beginning 0) (match-end 0))
10326 link (read-string "Link: "
10327 (org-remove-angle-brackets (match-string 0)))))
10328 ((member complete-file '((4) (16)))
10329 ;; Completing read for file names.
10330 (setq link (org-file-complete-link complete-file)))
10332 ;; Read link, with completion for stored links.
10333 (org-link-fontify-links-to-this-file)
10334 (org-switch-to-buffer-other-window "*Org Links*")
10335 (with-current-buffer "*Org Links*"
10336 (erase-buffer)
10337 (insert "Insert a link.
10338 Use TAB to complete link prefixes, then RET for type-specific completion support\n")
10339 (when org-stored-links
10340 (insert "\nStored links are available with <up>/<down> or M-p/n (most recent with RET):\n\n")
10341 (insert (mapconcat 'org-link-prettify
10342 (reverse org-stored-links) "\n")))
10343 (goto-char (point-min)))
10344 (let ((cw (selected-window)))
10345 (select-window (get-buffer-window "*Org Links*" 'visible))
10346 (with-current-buffer "*Org Links*" (setq truncate-lines t))
10347 (unless (pos-visible-in-window-p (point-max))
10348 (org-fit-window-to-buffer))
10349 (and (window-live-p cw) (select-window cw)))
10350 ;; Fake a link history, containing the stored links.
10351 (setq tmphist (append (mapcar 'car org-stored-links)
10352 org-insert-link-history))
10353 (setq all-prefixes (append (mapcar 'car abbrevs)
10354 (mapcar 'car org-link-abbrev-alist)
10355 org-link-types))
10356 (unwind-protect
10357 (progn
10358 (setq link
10359 (org-completing-read
10360 "Link: "
10361 (append
10362 (mapcar (lambda (x) (concat x ":"))
10363 all-prefixes)
10364 (mapcar 'car org-stored-links))
10365 nil nil nil
10366 'tmphist
10367 (caar org-stored-links)))
10368 (if (not (string-match "\\S-" link))
10369 (user-error "No link selected"))
10370 (mapc (lambda(l)
10371 (when (equal link (cadr l)) (setq link (car l) auto-desc t)))
10372 org-stored-links)
10373 (if (or (member link all-prefixes)
10374 (and (equal ":" (substring link -1))
10375 (member (substring link 0 -1) all-prefixes)
10376 (setq link (substring link 0 -1))))
10377 (setq link (with-current-buffer origbuf
10378 (org-link-try-special-completion link)))))
10379 (set-window-configuration wcf)
10380 (kill-buffer "*Org Links*"))
10381 (setq entry (assoc link org-stored-links))
10382 (or entry (push link org-insert-link-history))
10383 (setq desc (or desc (nth 1 entry)))))
10385 (if (funcall (if (equal complete-file '(64)) 'not 'identity)
10386 (not org-keep-stored-link-after-insertion))
10387 (setq org-stored-links (delq (assoc link org-stored-links)
10388 org-stored-links)))
10390 (if (and (string-match org-plain-link-re link)
10391 (not (string-match org-ts-regexp link)))
10392 ;; URL-like link, normalize the use of angular brackets.
10393 (setq link (org-remove-angle-brackets link)))
10395 ;; Check if we are linking to the current file with a search
10396 ;; option If yes, simplify the link by using only the search
10397 ;; option.
10398 (when (and buffer-file-name
10399 (string-match "^file:\\(.+?\\)::\\(.+\\)" link))
10400 (let* ((path (match-string 1 link))
10401 (case-fold-search nil)
10402 (search (match-string 2 link)))
10403 (save-match-data
10404 (if (equal (file-truename buffer-file-name) (file-truename path))
10405 ;; We are linking to this same file, with a search option
10406 (setq link search)))))
10408 ;; Check if we can/should use a relative path. If yes, simplify the link
10409 (when (string-match "^\\(file:\\|docview:\\)\\(.*\\)" link)
10410 (let* ((type (match-string 1 link))
10411 (path (match-string 2 link))
10412 (origpath path)
10413 (case-fold-search nil))
10414 (cond
10415 ((or (eq org-link-file-path-type 'absolute)
10416 (equal complete-file '(16)))
10417 (setq path (abbreviate-file-name (expand-file-name path))))
10418 ((eq org-link-file-path-type 'noabbrev)
10419 (setq path (expand-file-name path)))
10420 ((eq org-link-file-path-type 'relative)
10421 (setq path (file-relative-name path)))
10423 (save-match-data
10424 (if (string-match (concat "^" (regexp-quote
10425 (expand-file-name
10426 (file-name-as-directory
10427 default-directory))))
10428 (expand-file-name path))
10429 ;; We are linking a file with relative path name.
10430 (setq path (substring (expand-file-name path)
10431 (match-end 0)))
10432 (setq path (abbreviate-file-name (expand-file-name path)))))))
10433 (setq link (concat type path))
10434 (if (equal desc origpath)
10435 (setq desc path))))
10437 (if org-make-link-description-function
10438 (setq desc
10439 (or (condition-case nil
10440 (funcall org-make-link-description-function link desc)
10441 (error (progn (message "Can't get link description from `%s'"
10442 (symbol-name org-make-link-description-function))
10443 (sit-for 2) nil)))
10444 (read-string "Description: " default-description)))
10445 (if default-description (setq desc default-description)
10446 (setq desc (or (and auto-desc desc)
10447 (read-string "Description: " desc)))))
10449 (unless (string-match "\\S-" desc) (setq desc nil))
10450 (if remove (apply 'delete-region remove))
10451 (insert (org-make-link-string link desc))))
10453 (defun org-link-try-special-completion (type)
10454 "If there is completion support for link type TYPE, offer it."
10455 (let ((fun (intern (concat "org-" type "-complete-link"))))
10456 (if (functionp fun)
10457 (funcall fun)
10458 (read-string "Link (no completion support): " (concat type ":")))))
10460 (defun org-file-complete-link (&optional arg)
10461 "Create a file link using completion."
10462 (let (file link)
10463 (setq file (org-iread-file-name "File: "))
10464 (let ((pwd (file-name-as-directory (expand-file-name ".")))
10465 (pwd1 (file-name-as-directory (abbreviate-file-name
10466 (expand-file-name ".")))))
10467 (cond
10468 ((equal arg '(16))
10469 (setq link (concat
10470 "file:"
10471 (abbreviate-file-name (expand-file-name file)))))
10472 ((string-match (concat "^" (regexp-quote pwd1) "\\(.+\\)") file)
10473 (setq link (concat "file:" (match-string 1 file))))
10474 ((string-match (concat "^" (regexp-quote pwd) "\\(.+\\)")
10475 (expand-file-name file))
10476 (setq link (concat
10477 "file:" (match-string 1 (expand-file-name file)))))
10478 (t (setq link (concat "file:" file)))))
10479 link))
10481 (defun org-iread-file-name (&rest args)
10482 "Read-file-name using `ido-mode' speedup if available.
10483 ARGS are arguments that may be passed to `ido-read-file-name' or `read-file-name'.
10484 See `read-file-name' for a description of parameters."
10485 (org-without-partial-completion
10486 (if (and org-completion-use-ido
10487 (fboundp 'ido-read-file-name)
10488 (boundp 'ido-mode) ido-mode
10489 (listp (second args)))
10490 (let ((ido-enter-matching-directory nil))
10491 (apply 'ido-read-file-name args))
10492 (apply 'read-file-name args))))
10494 (defun org-completing-read (&rest args)
10495 "Completing-read with SPACE being a normal character."
10496 (let ((enable-recursive-minibuffers t)
10497 (minibuffer-local-completion-map
10498 (copy-keymap minibuffer-local-completion-map)))
10499 (org-defkey minibuffer-local-completion-map " " 'self-insert-command)
10500 (org-defkey minibuffer-local-completion-map "?" 'self-insert-command)
10501 (org-defkey minibuffer-local-completion-map (kbd "C-c !") 'org-time-stamp-inactive)
10502 (apply 'org-icompleting-read args)))
10504 (defun org-completing-read-no-i (&rest args)
10505 (let (org-completion-use-ido org-completion-use-iswitchb)
10506 (apply 'org-completing-read args)))
10508 (defun org-iswitchb-completing-read (prompt choices &rest args)
10509 "Use iswitch as a completing-read replacement to choose from choices.
10510 PROMPT is a string to prompt with. CHOICES is a list of strings to choose
10511 from."
10512 (let* ((iswitchb-use-virtual-buffers nil)
10513 (iswitchb-make-buflist-hook
10514 (lambda ()
10515 (setq iswitchb-temp-buflist choices))))
10516 (iswitchb-read-buffer prompt)))
10518 (defun org-icompleting-read (&rest args)
10519 "Completing-read using `ido-mode' or `iswitchb' speedups if available."
10520 (org-without-partial-completion
10521 (if (and org-completion-use-ido
10522 (fboundp 'ido-completing-read)
10523 (boundp 'ido-mode) ido-mode
10524 (listp (second args)))
10525 (let ((ido-enter-matching-directory nil))
10526 (apply 'ido-completing-read (concat (car args))
10527 (if (consp (car (nth 1 args)))
10528 (mapcar 'car (nth 1 args))
10529 (nth 1 args))
10530 (cddr args)))
10531 (if (and org-completion-use-iswitchb
10532 (boundp 'iswitchb-mode) iswitchb-mode
10533 (listp (second args)))
10534 (apply 'org-iswitchb-completing-read (concat (car args))
10535 (if (consp (car (nth 1 args)))
10536 (mapcar 'car (nth 1 args))
10537 (nth 1 args))
10538 (cddr args))
10539 (apply 'completing-read args)))))
10541 (defun org-extract-attributes (s)
10542 "Extract the attributes cookie from a string and set as text property."
10543 (let (a attr (start 0) key value)
10544 (save-match-data
10545 (when (string-match "{{\\([^}]+\\)}}$" s)
10546 (setq a (match-string 1 s) s (substring s 0 (match-beginning 0)))
10547 (while (string-match "\\([a-zA-Z]+\\)=\"\\([^\"]*\\)\"" a start)
10548 (setq key (match-string 1 a) value (match-string 2 a)
10549 start (match-end 0)
10550 attr (plist-put attr (intern key) value))))
10551 (org-add-props s nil 'org-attr attr))
10554 ;;; Opening/following a link
10556 (defvar org-link-search-failed nil)
10558 (defvar org-open-link-functions nil
10559 "Hook for functions finding a plain text link.
10560 These functions must take a single argument, the link content.
10561 They will be called for links that look like [[link text][description]]
10562 when LINK TEXT does not have a protocol like \"http:\" and does not look
10563 like a filename (e.g. \"./blue.png\").
10565 These functions will be called *before* Org attempts to resolve the
10566 link by doing text searches in the current buffer - so if you want a
10567 link \"[[target]]\" to still find \"<<target>>\", your function should
10568 handle this as a special case.
10570 When the function does handle the link, it must return a non-nil value.
10571 If it decides that it is not responsible for this link, it must return
10572 nil to indicate that that Org-mode can continue with other options
10573 like exact and fuzzy text search.")
10575 (defun org-next-link (&optional search-backward)
10576 "Move forward to the next link.
10577 If the link is in hidden text, expose it."
10578 (interactive "P")
10579 (when (and org-link-search-failed (eq this-command last-command))
10580 (goto-char (point-min))
10581 (message "Link search wrapped back to beginning of buffer"))
10582 (setq org-link-search-failed nil)
10583 (let* ((pos (point))
10584 (ct (org-context))
10585 (a (assoc :link ct))
10586 (srch-fun (if search-backward 're-search-backward 're-search-forward)))
10587 (cond (a (goto-char (nth (if search-backward 1 2) a)))
10588 ((looking-at org-any-link-re)
10589 ;; Don't stay stuck at link without an org-link face
10590 (forward-char (if search-backward -1 1))))
10591 (if (funcall srch-fun org-any-link-re nil t)
10592 (progn
10593 (goto-char (match-beginning 0))
10594 (if (outline-invisible-p) (org-show-context)))
10595 (goto-char pos)
10596 (setq org-link-search-failed t)
10597 (message "No further link found"))))
10599 (defun org-previous-link ()
10600 "Move backward to the previous link.
10601 If the link is in hidden text, expose it."
10602 (interactive)
10603 (funcall 'org-next-link t))
10605 (defun org-translate-link (s)
10606 "Translate a link string if a translation function has been defined."
10607 (if (and org-link-translation-function
10608 (fboundp org-link-translation-function)
10609 (string-match "\\([a-zA-Z0-9]+\\):\\(.*\\)" s))
10610 (progn
10611 (setq s (funcall org-link-translation-function
10612 (match-string 1 s) (match-string 2 s)))
10613 (concat (car s) ":" (cdr s)))
10616 (defun org-translate-link-from-planner (type path)
10617 "Translate a link from Emacs Planner syntax so that Org can follow it.
10618 This is still an experimental function, your mileage may vary."
10619 (cond
10620 ((member type '("http" "https" "news" "ftp"))
10621 ;; standard Internet links are the same.
10622 nil)
10623 ((and (equal type "irc") (string-match "^//" path))
10624 ;; Planner has two / at the beginning of an irc link, we have 1.
10625 ;; We should have zero, actually....
10626 (setq path (substring path 1)))
10627 ((and (equal type "lisp") (string-match "^/" path))
10628 ;; Planner has a slash, we do not.
10629 (setq type "elisp" path (substring path 1)))
10630 ((string-match "^//\\(.?*\\)/\\(<.*>\\)$" path)
10631 ;; A typical message link. Planner has the id after the final slash,
10632 ;; we separate it with a hash mark
10633 (setq path (concat (match-string 1 path) "#"
10634 (org-remove-angle-brackets (match-string 2 path))))))
10635 (cons type path))
10637 (defun org-find-file-at-mouse (ev)
10638 "Open file link or URL at mouse."
10639 (interactive "e")
10640 (mouse-set-point ev)
10641 (org-open-at-point 'in-emacs))
10643 (defun org-open-at-mouse (ev)
10644 "Open file link or URL at mouse.
10645 See the docstring of `org-open-file' for details."
10646 (interactive "e")
10647 (mouse-set-point ev)
10648 (if (eq major-mode 'org-agenda-mode)
10649 (org-agenda-copy-local-variable 'org-link-abbrev-alist-local))
10650 (org-open-at-point))
10652 (defvar org-window-config-before-follow-link nil
10653 "The window configuration before following a link.
10654 This is saved in case the need arises to restore it.")
10656 (defvar org-open-link-marker (make-marker)
10657 "Marker pointing to the location where `org-open-at-point' was called.")
10659 ;;;###autoload
10660 (defun org-open-at-point-global ()
10661 "Follow a link like Org-mode does.
10662 This command can be called in any mode to follow a link that has
10663 Org-mode syntax."
10664 (interactive)
10665 (org-run-like-in-org-mode 'org-open-at-point))
10667 ;;;###autoload
10668 (defun org-open-link-from-string (s &optional arg reference-buffer)
10669 "Open a link in the string S, as if it was in Org-mode."
10670 (interactive "sLink: \nP")
10671 (let ((reference-buffer (or reference-buffer (current-buffer))))
10672 (with-temp-buffer
10673 (let ((org-inhibit-startup (not reference-buffer)))
10674 (org-mode)
10675 (insert s)
10676 (goto-char (point-min))
10677 (when reference-buffer
10678 (setq org-link-abbrev-alist-local
10679 (with-current-buffer reference-buffer
10680 org-link-abbrev-alist-local)))
10681 (org-open-at-point arg reference-buffer)))))
10683 (defvar org-open-at-point-functions nil
10684 "Hook that is run when following a link at point.
10686 Functions in this hook must return t if they identify and follow
10687 a link at point. If they don't find anything interesting at point,
10688 they must return nil.")
10690 (defvar org-link-search-inhibit-query nil) ;; dynamically scoped
10691 (defvar clean-buffer-list-kill-buffer-names) ; Defined in midnight.el
10692 (defun org-open-at-point (&optional arg reference-buffer)
10693 "Open link, timestamp, footnote or tags at point.
10695 When point is on a link, follow it. Normally, files will be
10696 opened by an appropriate application. If the optional prefix
10697 argument ARG is non-nil, Emacs will visit the file. With
10698 a double prefix argument, try to open outside of Emacs, in the
10699 application the system uses for this file type.
10701 When point is on a timestamp, open the agenda at the day
10702 specified.
10704 When point is a footnote definition, move to the first reference
10705 found. If it is on a reference, move to the associated
10706 definition.
10708 When point is on a headline, display a list of every link in the
10709 entry, so it is possible to pick one, or all, of them. If point
10710 is on a tag, call `org-tags-view' instead.
10712 When optional argument REFERENCE-BUFFER is non-nil, it should
10713 specify a buffer from where the link search should happen. This
10714 is used internally by `org-open-link-from-string'.
10716 On top of syntactically correct links, this function will open
10717 the link at point in comments or comment blocks and the first
10718 link in a property drawer line."
10719 (interactive "P")
10720 ;; On a code block, open block's results.
10721 (unless (call-interactively 'org-babel-open-src-block-result)
10722 (org-load-modules-maybe)
10723 (move-marker org-open-link-marker (point))
10724 (setq org-window-config-before-follow-link (current-window-configuration))
10725 (org-remove-occur-highlights nil nil t)
10726 (unless (run-hook-with-args-until-success 'org-open-at-point-functions)
10727 (let* ((context (org-element-context)) type value)
10728 ;; On an unsupported type, check if point is contained within
10729 ;; a support one.
10730 (while (and (not (memq (setq type (org-element-type context))
10731 '(comment comment-block
10732 headline inlinetask link
10733 footnote-definition footnote-reference
10734 node-property timestamp)))
10735 (setq context (org-element-property :parent context))))
10736 (setq value (org-element-property :value context))
10737 (cond
10738 ;; Blank lines at the beginning of buffer: bail out.
10739 ((not context) (user-error "No link found"))
10740 ;; Exception n°1: links in property drawers
10741 ((eq type 'node-property)
10742 (org-open-link-from-string
10743 (and (string-match org-any-link-re value)
10744 (match-string-no-properties 0 value))))
10745 ;; Exception n°2: links in comments.
10746 ((memq type '(comment comment-block))
10747 (save-excursion
10748 (skip-chars-forward "\\S-" (point-at-eol))
10749 (let ((string-rear (replace-regexp-in-string
10750 "^[ \t]*# [ \t]*" ""
10751 (buffer-substring (point) (line-beginning-position))))
10752 (string-front (buffer-substring (point) (line-end-position))))
10753 (with-temp-buffer
10754 (let ((org-inhibit-startup t)) (org-mode))
10755 (insert value)
10756 (goto-char (point-min))
10757 (when (and (search-forward string-rear nil t)
10758 (search-forward string-front (line-end-position) t))
10759 (goto-char (match-beginning 0))
10760 (org-open-at-point)
10761 (when (string= string-rear "") (forward-char)))))))
10762 ;; On a headline or an inlinetask, but not on a timestamp,
10763 ;; a link, a footnote reference or on tags.
10764 ((and (memq type '(headline inlinetask))
10765 ;; Not on tags.
10766 (progn (save-excursion (beginning-of-line)
10767 (looking-at org-complex-heading-regexp))
10768 (or (not (match-beginning 5))
10769 (< (point) (match-beginning 5)))))
10770 (let* ((data (org-offer-links-in-entry (current-buffer) (point) arg))
10771 (links (car data))
10772 (links-end (cdr data)))
10773 (if links
10774 (dolist (link (if (stringp links) (list links) links))
10775 (search-forward link nil links-end)
10776 (goto-char (match-beginning 0))
10777 (org-open-at-point))
10778 (require 'org-attach)
10779 (org-attach-reveal 'if-exists))))
10780 ;; Do nothing on white spaces after an object, unless point
10781 ;; is right after it.
10782 ((> (point)
10783 (save-excursion
10784 (goto-char (org-element-property :end context))
10785 (skip-chars-backward " \t")
10786 (point)))
10787 (user-error "No link found"))
10788 ((eq type 'timestamp) (org-follow-timestamp-link))
10789 ;; On tags within a headline or an inlinetask.
10790 ((and (memq type '(headline inlinetask))
10791 (progn (save-excursion (beginning-of-line)
10792 (looking-at org-complex-heading-regexp))
10793 (and (match-beginning 5)
10794 (>= (point) (match-beginning 5)))))
10795 (org-tags-view arg (substring (match-string 5) 0 -1)))
10796 ((eq type 'link)
10797 (let ((type (org-element-property :type context))
10798 (path (org-link-unescape (org-element-property :path context))))
10799 ;; Switch back to REFERENCE-BUFFER needed when called in
10800 ;; a temporary buffer through `org-open-link-from-string'.
10801 (with-current-buffer (or reference-buffer (current-buffer))
10802 (cond
10803 ((equal type "file")
10804 (if (string-match "[*?{]" (file-name-nondirectory path))
10805 (dired path)
10806 ;; Look into `org-link-protocols' in order to find
10807 ;; a DEDICATED-FUNCTION to open file. The function
10808 ;; will be applied on raw link instead of parsed
10809 ;; link due to the limitation in `org-add-link-type'
10810 ;; ("open" function called with a single argument).
10811 ;; If no such function is found, fallback to
10812 ;; `org-open-file'.
10814 ;; Note : "file+emacs" and "file+sys" types are
10815 ;; hard-coded in order to escape the previous
10816 ;; limitation.
10817 (let* ((option (org-element-property :search-option context))
10818 (app (org-element-property :application context))
10819 (dedicated-function
10820 (nth 1 (assoc app org-link-protocols))))
10821 (if dedicated-function
10822 (funcall dedicated-function
10823 (concat path
10824 (and option (concat "::" option))))
10825 (apply 'org-open-file
10826 path
10827 (cond (arg)
10828 ((equal app "emacs") 'emacs)
10829 ((equal app "sys") 'system))
10830 (cond ((not option) nil)
10831 ((org-string-match-p "\\`[0-9]+\\'" option)
10832 (list (string-to-number option)))
10833 (t (list nil
10834 (org-link-unescape option)))))))))
10835 ((assoc type org-link-protocols)
10836 (funcall (nth 1 (assoc type org-link-protocols)) path))
10837 ((equal type "help")
10838 (let ((f-or-v (intern path)))
10839 (cond ((fboundp f-or-v) (describe-function f-or-v))
10840 ((boundp f-or-v) (describe-variable f-or-v))
10841 (t (error "Not a known function or variable")))))
10842 ((member type '("http" "https" "ftp" "mailto" "news"))
10843 (browse-url (org-link-escape-browser (concat type ":" path))))
10844 ((equal type "doi")
10845 (browse-url
10846 (org-link-escape-browser (concat org-doi-server-url path))))
10847 ((equal type "message") (browse-url (concat type ":" path)))
10848 ((equal type "shell")
10849 (let ((buf (generate-new-buffer "*Org Shell Output*"))
10850 (cmd path))
10851 (if (or (and (org-string-nw-p
10852 org-confirm-shell-link-not-regexp)
10853 (string-match
10854 org-confirm-shell-link-not-regexp cmd))
10855 (not org-confirm-shell-link-function)
10856 (funcall org-confirm-shell-link-function
10857 (format "Execute \"%s\" in shell? "
10858 (org-add-props cmd nil
10859 'face 'org-warning))))
10860 (progn
10861 (message "Executing %s" cmd)
10862 (shell-command cmd buf)
10863 (when (featurep 'midnight)
10864 (setq clean-buffer-list-kill-buffer-names
10865 (cons buf
10866 clean-buffer-list-kill-buffer-names))))
10867 (user-error "Abort"))))
10868 ((equal type "elisp")
10869 (let ((cmd path))
10870 (if (or (and (org-string-nw-p
10871 org-confirm-elisp-link-not-regexp)
10872 (org-string-match-p
10873 org-confirm-elisp-link-not-regexp cmd))
10874 (not org-confirm-elisp-link-function)
10875 (funcall org-confirm-elisp-link-function
10876 (format "Execute \"%s\" as elisp? "
10877 (org-add-props cmd nil
10878 'face 'org-warning))))
10879 (message "%s => %s" cmd
10880 (if (eq (string-to-char cmd) ?\()
10881 (eval (read cmd))
10882 (call-interactively (read cmd))))
10883 (user-error "Abort"))))
10884 ((equal type "id")
10885 (require 'ord-id)
10886 (funcall (nth 1 (assoc "id" org-link-protocols)) path))
10887 ((member type '("coderef" "custom-id" "fuzzy" "radio"))
10888 (unless (run-hook-with-args-until-success
10889 'org-open-link-functions path)
10890 (if (not arg) (org-mark-ring-push)
10891 (switch-to-buffer-other-window
10892 (org-get-buffer-for-internal-link (current-buffer))))
10893 (let ((cmd `(org-link-search
10894 ,(if (member type '("custom-id" "coderef"))
10895 (org-element-property :raw-link context)
10896 path)
10897 ,(cond ((equal arg '(4)) 'occur)
10898 ((equal arg '(16)) 'org-occur))
10899 ,(org-element-property :begin context))))
10900 (condition-case nil
10901 (let ((org-link-search-inhibit-query t))
10902 (eval cmd))
10903 (error (progn (widen) (eval cmd)))))))
10904 (t (browse-url-at-point))))))
10905 ;; On a footnote reference or at a footnote definition's label.
10906 ((or (eq type 'footnote-reference)
10907 (and (eq type 'footnote-definition)
10908 (save-excursion
10909 ;; Do not validate action when point is on the
10910 ;; spaces right after the footnote label, in
10911 ;; order to be on par with behaviour on links.
10912 (skip-chars-forward " \t")
10913 (let ((begin
10914 (org-element-property :contents-begin context)))
10915 (if begin (< (point) begin)
10916 (= (org-element-property :post-affiliated context)
10917 (line-beginning-position)))))))
10918 (org-footnote-action))
10919 (t (user-error "No link found")))))
10920 (move-marker org-open-link-marker nil)
10921 (run-hook-with-args 'org-follow-link-hook)))
10923 (defun org-offer-links-in-entry (buffer marker &optional nth zero)
10924 "Offer links in the current entry and return the selected link.
10925 If there is only one link, return it.
10926 If NTH is an integer, return the NTH link found.
10927 If ZERO is a string, check also this string for a link, and if
10928 there is one, return it."
10929 (with-current-buffer buffer
10930 (save-excursion
10931 (save-restriction
10932 (widen)
10933 (goto-char marker)
10934 (let ((cnt ?0)
10935 (in-emacs (if (integerp nth) nil nth))
10936 have-zero end links link c)
10937 (when (and (stringp zero) (string-match org-bracket-link-regexp zero))
10938 (push (match-string 0 zero) links)
10939 (setq cnt (1- cnt) have-zero t))
10940 (save-excursion
10941 (org-back-to-heading t)
10942 (setq end (save-excursion (outline-next-heading) (point)))
10943 (while (re-search-forward org-any-link-re end t)
10944 (push (match-string 0) links))
10945 (setq links (org-uniquify (reverse links))))
10946 (cond
10947 ((null links)
10948 (message "No links"))
10949 ((equal (length links) 1)
10950 (setq link (car links)))
10951 ((and (integerp nth) (>= (length links) (if have-zero (1+ nth) nth)))
10952 (setq link (nth (if have-zero nth (1- nth)) links)))
10953 (t ; we have to select a link
10954 (save-excursion
10955 (save-window-excursion
10956 (delete-other-windows)
10957 (with-output-to-temp-buffer "*Select Link*"
10958 (mapc (lambda (l)
10959 (if (not (string-match org-bracket-link-regexp l))
10960 (princ (format "[%c] %s\n" (incf cnt)
10961 (org-remove-angle-brackets l)))
10962 (if (match-end 3)
10963 (princ (format "[%c] %s (%s)\n" (incf cnt)
10964 (match-string 3 l) (match-string 1 l)))
10965 (princ (format "[%c] %s\n" (incf cnt)
10966 (match-string 1 l))))))
10967 links))
10968 (org-fit-window-to-buffer (get-buffer-window "*Select Link*"))
10969 (message "Select link to open, RET to open all:")
10970 (setq c (read-char-exclusive))
10971 (and (get-buffer "*Select Link*") (kill-buffer "*Select Link*"))))
10972 (when (equal c ?q) (user-error "Abort"))
10973 (if (equal c ?\C-m)
10974 (setq link links)
10975 (setq nth (- c ?0))
10976 (if have-zero (setq nth (1+ nth)))
10977 (unless (and (integerp nth) (>= (length links) nth))
10978 (user-error "Invalid link selection"))
10979 (setq link (nth (1- nth) links)))))
10980 (cons link end))))))
10982 ;; TODO: These functions are deprecated since `org-open-at-point'
10983 ;; hard-codes behaviour for "file+emacs" and "file+sys" types.
10984 (defun org-open-file-with-system (path)
10985 "Open file at PATH using the system way of opening it."
10986 (org-open-file path 'system))
10987 (defun org-open-file-with-emacs (path)
10988 "Open file at PATH in Emacs."
10989 (org-open-file path 'emacs))
10992 ;;; File search
10994 (defvar org-create-file-search-functions nil
10995 "List of functions to construct the right search string for a file link.
10996 These functions are called in turn with point at the location to
10997 which the link should point.
10999 A function in the hook should first test if it would like to
11000 handle this file type, for example by checking the `major-mode'
11001 or the file extension. If it decides not to handle this file, it
11002 should just return nil to give other functions a chance. If it
11003 does handle the file, it must return the search string to be used
11004 when following the link. The search string will be part of the
11005 file link, given after a double colon, and `org-open-at-point'
11006 will automatically search for it. If special measures must be
11007 taken to make the search successful, another function should be
11008 added to the companion hook `org-execute-file-search-functions',
11009 which see.
11011 A function in this hook may also use `setq' to set the variable
11012 `description' to provide a suggestion for the descriptive text to
11013 be used for this link when it gets inserted into an Org-mode
11014 buffer with \\[org-insert-link].")
11016 (defvar org-execute-file-search-functions nil
11017 "List of functions to execute a file search triggered by a link.
11019 Functions added to this hook must accept a single argument, the
11020 search string that was part of the file link, the part after the
11021 double colon. The function must first check if it would like to
11022 handle this search, for example by checking the `major-mode' or
11023 the file extension. If it decides not to handle this search, it
11024 should just return nil to give other functions a chance. If it
11025 does handle the search, it must return a non-nil value to keep
11026 other functions from trying.
11028 Each function can access the current prefix argument through the
11029 variable `current-prefix-arg'. Note that a single prefix is used
11030 to force opening a link in Emacs, so it may be good to only use a
11031 numeric or double prefix to guide the search function.
11033 In case this is needed, a function in this hook can also restore
11034 the window configuration before `org-open-at-point' was called using:
11036 (set-window-configuration org-window-config-before-follow-link)")
11038 (defun org-link-search (s &optional type avoid-pos stealth)
11039 "Search for a link search option.
11040 If S is surrounded by forward slashes, it is interpreted as a
11041 regular expression. In org-mode files, this will create an `org-occur'
11042 sparse tree. In ordinary files, `occur' will be used to list matches.
11043 If the current buffer is in `dired-mode', grep will be used to search
11044 in all files. If AVOID-POS is given, ignore matches near that position.
11046 When optional argument STEALTH is non-nil, do not modify
11047 visibility around point, thus ignoring
11048 `org-show-hierarchy-above', `org-show-following-heading' and
11049 `org-show-siblings' variables."
11050 (let ((case-fold-search t)
11051 (s0 (mapconcat 'identity (org-split-string s "[ \t\r\n]+") " "))
11052 (markers (concat "\\(?:" (mapconcat (lambda (x) (regexp-quote (car x)))
11053 (append '(("") (" ") ("\t") ("\n"))
11054 org-emphasis-alist)
11055 "\\|") "\\)"))
11056 (pos (point))
11057 (pre nil) (post nil)
11058 words re0 re1 re2 re3 re4_ re4 re5 re2a re2a_ reall)
11059 (cond
11060 ;; First check if there are any special search functions
11061 ((run-hook-with-args-until-success 'org-execute-file-search-functions s))
11062 ;; Now try the builtin stuff
11063 ((and (equal (string-to-char s0) ?#)
11064 (> (length s0) 1)
11065 (save-excursion
11066 (goto-char (point-min))
11067 (and
11068 (re-search-forward
11069 (concat "^[ \t]*:CUSTOM_ID:[ \t]+"
11070 (regexp-quote (substring s0 1)) "[ \t]*$") nil t)
11071 (setq type 'dedicated
11072 pos (match-beginning 0))))
11073 ;; There is an exact target for this
11074 (goto-char pos)
11075 (org-back-to-heading t)))
11076 ((save-excursion
11077 (goto-char (point-min))
11078 (and
11079 (re-search-forward
11080 (concat "<<" (regexp-quote s0) ">>") nil t)
11081 (setq type 'dedicated
11082 pos (match-beginning 0))))
11083 ;; There is an exact target for this
11084 (goto-char pos))
11085 ((save-excursion
11086 (goto-char (point-min))
11087 (and
11088 (re-search-forward
11089 (format "^[ \t]*#\\+NAME: %s" (regexp-quote s0)) nil t)
11090 (setq type 'dedicated pos (match-beginning 0))))
11091 ;; Found an element with a matching #+name affiliated keyword.
11092 (goto-char pos))
11093 ((and (string-match "^(\\(.*\\))$" s0)
11094 (save-excursion
11095 (goto-char (point-min))
11096 (and
11097 (re-search-forward
11098 (concat "[^[]" (regexp-quote
11099 (format org-coderef-label-format
11100 (match-string 1 s0))))
11101 nil t)
11102 (setq type 'dedicated
11103 pos (1+ (match-beginning 0))))))
11104 ;; There is a coderef target for this
11105 (goto-char pos))
11106 ((string-match "^/\\(.*\\)/$" s)
11107 ;; A regular expression
11108 (cond
11109 ((derived-mode-p 'org-mode)
11110 (org-occur (match-string 1 s)))
11111 (t (org-do-occur (match-string 1 s)))))
11112 ((and (derived-mode-p 'org-mode) org-link-search-must-match-exact-headline)
11113 (and (equal (string-to-char s) ?*) (setq s (substring s 1)))
11114 (goto-char (point-min))
11115 (cond
11116 ((let (case-fold-search)
11117 (re-search-forward (format org-complex-heading-regexp-format
11118 (regexp-quote s))
11119 nil t))
11120 ;; OK, found a match
11121 (setq type 'dedicated)
11122 (goto-char (match-beginning 0)))
11123 ((and (not org-link-search-inhibit-query)
11124 (eq org-link-search-must-match-exact-headline 'query-to-create)
11125 (y-or-n-p "No match - create this as a new heading? "))
11126 (goto-char (point-max))
11127 (or (bolp) (newline))
11128 (insert "* " s "\n")
11129 (beginning-of-line 0))
11131 (goto-char pos)
11132 (error "No match"))))
11134 ;; A normal search string
11135 (when (equal (string-to-char s) ?*)
11136 ;; Anchor on headlines, post may include tags.
11137 (setq pre "^\\*+[ \t]+\\(?:\\sw+\\)?[ \t]*"
11138 post (org-re "[ \t]*\\(?:[ \t]+:[[:alnum:]_@#%:+]:[ \t]*\\)?$")
11139 s (substring s 1)))
11140 (remove-text-properties
11141 0 (length s)
11142 '(face nil mouse-face nil keymap nil fontified nil) s)
11143 ;; Make a series of regular expressions to find a match
11144 (setq words (org-split-string s "[ \n\r\t]+")
11146 re0 (concat "\\(<<" (regexp-quote s0) ">>\\)")
11147 re2 (concat markers "\\(" (mapconcat 'downcase words "[ \t]+")
11148 "\\)" markers)
11149 re2a_ (concat "\\(" (mapconcat 'downcase words
11150 "[ \t\r\n]+") "\\)[ \t\r\n]")
11151 re2a (concat "[ \t\r\n]" re2a_)
11152 re4_ (concat "\\(" (mapconcat 'downcase words
11153 "[^a-zA-Z_\r\n]+") "\\)[^a-zA-Z_]")
11154 re4 (concat "[^a-zA-Z_]" re4_)
11156 re1 (concat pre re2 post)
11157 re3 (concat pre (if pre re4_ re4) post)
11158 re5 (concat pre ".*" re4)
11159 re2 (concat pre re2)
11160 re2a (concat pre (if pre re2a_ re2a))
11161 re4 (concat pre (if pre re4_ re4))
11162 reall (concat "\\(" re0 "\\)\\|\\(" re1 "\\)\\|\\(" re2
11163 "\\)\\|\\(" re3 "\\)\\|\\(" re4 "\\)\\|\\("
11164 re5 "\\)"))
11165 (cond
11166 ((eq type 'org-occur) (org-occur reall))
11167 ((eq type 'occur) (org-do-occur (downcase reall) 'cleanup))
11168 (t (goto-char (point-min))
11169 (setq type 'fuzzy)
11170 (if (or (and (org-search-not-self 1 re0 nil t)
11171 (setq type 'dedicated))
11172 (org-search-not-self 1 re1 nil t)
11173 (org-search-not-self 1 re2 nil t)
11174 (org-search-not-self 1 re2a nil t)
11175 (org-search-not-self 1 re3 nil t)
11176 (org-search-not-self 1 re4 nil t)
11177 (org-search-not-self 1 re5 nil t))
11178 (goto-char (match-beginning 1))
11179 (goto-char pos)
11180 (error "No match"))))))
11181 (and (derived-mode-p 'org-mode)
11182 (not stealth)
11183 (org-show-context 'link-search))
11184 type))
11186 (defun org-search-not-self (group &rest args)
11187 "Execute `re-search-forward', but only accept matches that do not
11188 enclose the position of `org-open-link-marker'."
11189 (let ((m org-open-link-marker))
11190 (catch 'exit
11191 (while (apply 're-search-forward args)
11192 (unless (get-text-property (match-end group) 'intangible) ; Emacs 21
11193 (goto-char (match-end group))
11194 (if (and (or (not (eq (marker-buffer m) (current-buffer)))
11195 (> (match-beginning 0) (marker-position m))
11196 (< (match-end 0) (marker-position m)))
11197 (save-match-data
11198 (or (not (org-in-regexp
11199 org-bracket-link-analytic-regexp 1))
11200 (not (match-end 4)) ; no description
11201 (and (<= (match-beginning 4) (point))
11202 (>= (match-end 4) (point))))))
11203 (throw 'exit (point))))))))
11205 (defun org-get-buffer-for-internal-link (buffer)
11206 "Return a buffer to be used for displaying the link target of internal links."
11207 (cond
11208 ((not org-display-internal-link-with-indirect-buffer)
11209 buffer)
11210 ((string-match "(Clone)$" (buffer-name buffer))
11211 (message "Buffer is already a clone, not making another one")
11212 ;; we also do not modify visibility in this case
11213 buffer)
11214 (t ; make a new indirect buffer for displaying the link
11215 (let* ((bn (buffer-name buffer))
11216 (ibn (concat bn "(Clone)"))
11217 (ib (or (get-buffer ibn) (make-indirect-buffer buffer ibn 'clone))))
11218 (with-current-buffer ib (org-overview))
11219 ib))))
11221 (defun org-do-occur (regexp &optional cleanup)
11222 "Call the Emacs command `occur'.
11223 If CLEANUP is non-nil, remove the printout of the regular expression
11224 in the *Occur* buffer. This is useful if the regex is long and not useful
11225 to read."
11226 (occur regexp)
11227 (when cleanup
11228 (let ((cwin (selected-window)) win beg end)
11229 (when (setq win (get-buffer-window "*Occur*"))
11230 (select-window win))
11231 (goto-char (point-min))
11232 (when (re-search-forward "match[a-z]+" nil t)
11233 (setq beg (match-end 0))
11234 (if (re-search-forward "^[ \t]*[0-9]+" nil t)
11235 (setq end (1- (match-beginning 0)))))
11236 (and beg end (let ((inhibit-read-only t)) (delete-region beg end)))
11237 (goto-char (point-min))
11238 (select-window cwin))))
11240 ;;; The mark ring for links jumps
11242 (defvar org-mark-ring nil
11243 "Mark ring for positions before jumps in Org-mode.")
11244 (defvar org-mark-ring-last-goto nil
11245 "Last position in the mark ring used to go back.")
11246 ;; Fill and close the ring
11247 (setq org-mark-ring nil org-mark-ring-last-goto nil) ;; in case file is reloaded
11248 (loop for i from 1 to org-mark-ring-length do
11249 (push (make-marker) org-mark-ring))
11250 (setcdr (nthcdr (1- org-mark-ring-length) org-mark-ring)
11251 org-mark-ring)
11253 (defun org-mark-ring-push (&optional pos buffer)
11254 "Put the current position or POS into the mark ring and rotate it."
11255 (interactive)
11256 (setq pos (or pos (point)))
11257 (setq org-mark-ring (nthcdr (1- org-mark-ring-length) org-mark-ring))
11258 (move-marker (car org-mark-ring)
11259 (or pos (point))
11260 (or buffer (current-buffer)))
11261 (message "%s"
11262 (substitute-command-keys
11263 "Position saved to mark ring, go back with \\[org-mark-ring-goto].")))
11265 (defun org-mark-ring-goto (&optional n)
11266 "Jump to the previous position in the mark ring.
11267 With prefix arg N, jump back that many stored positions. When
11268 called several times in succession, walk through the entire ring.
11269 Org-mode commands jumping to a different position in the current file,
11270 or to another Org-mode file, automatically push the old position
11271 onto the ring."
11272 (interactive "p")
11273 (let (p m)
11274 (if (eq last-command this-command)
11275 (setq p (nthcdr n (or org-mark-ring-last-goto org-mark-ring)))
11276 (setq p org-mark-ring))
11277 (setq org-mark-ring-last-goto p)
11278 (setq m (car p))
11279 (org-pop-to-buffer-same-window (marker-buffer m))
11280 (goto-char m)
11281 (if (or (outline-invisible-p) (org-invisible-p2)) (org-show-context 'mark-goto))))
11283 (defun org-remove-angle-brackets (s)
11284 (if (equal (substring s 0 1) "<") (setq s (substring s 1)))
11285 (if (equal (substring s -1) ">") (setq s (substring s 0 -1)))
11287 (defun org-add-angle-brackets (s)
11288 (if (equal (substring s 0 1) "<") nil (setq s (concat "<" s)))
11289 (if (equal (substring s -1) ">") nil (setq s (concat s ">")))
11291 (defun org-remove-double-quotes (s)
11292 (if (equal (substring s 0 1) "\"") (setq s (substring s 1)))
11293 (if (equal (substring s -1) "\"") (setq s (substring s 0 -1)))
11296 ;;; Following specific links
11298 (defun org-follow-timestamp-link ()
11299 "Open an agenda view for the time-stamp date/range at point."
11300 (cond
11301 ((org-at-date-range-p t)
11302 (let ((org-agenda-start-on-weekday)
11303 (t1 (match-string 1))
11304 (t2 (match-string 2)) tt1 tt2)
11305 (setq tt1 (time-to-days (org-time-string-to-time t1))
11306 tt2 (time-to-days (org-time-string-to-time t2)))
11307 (let ((org-agenda-buffer-tmp-name
11308 (format "*Org Agenda(a:%s)"
11309 (concat (substring t1 0 10) "--" (substring t2 0 10)))))
11310 (org-agenda-list nil tt1 (1+ (- tt2 tt1))))))
11311 ((org-at-timestamp-p t)
11312 (let ((org-agenda-buffer-tmp-name
11313 (format "*Org Agenda(a:%s)" (substring (match-string 1) 0 10))))
11314 (org-agenda-list nil (time-to-days (org-time-string-to-time
11315 (substring (match-string 1) 0 10)))
11316 1)))
11317 (t (error "This should not happen"))))
11320 ;;; Following file links
11321 (declare-function mailcap-parse-mailcaps "mailcap" (&optional path force))
11322 (declare-function mailcap-extension-to-mime "mailcap" (extn))
11323 (declare-function mailcap-mime-info
11324 "mailcap" (string &optional request no-decode))
11325 (defvar org-wait nil)
11326 (defun org-open-file (path &optional in-emacs line search)
11327 "Open the file at PATH.
11328 First, this expands any special file name abbreviations. Then the
11329 configuration variable `org-file-apps' is checked if it contains an
11330 entry for this file type, and if yes, the corresponding command is launched.
11332 If no application is found, Emacs simply visits the file.
11334 With optional prefix argument IN-EMACS, Emacs will visit the file.
11335 With a double \\[universal-argument] \\[universal-argument] \
11336 prefix arg, Org tries to avoid opening in Emacs
11337 and to use an external application to visit the file.
11339 Optional LINE specifies a line to go to, optional SEARCH a string
11340 to search for. If LINE or SEARCH is given, the file will be
11341 opened in Emacs, unless an entry from org-file-apps that makes
11342 use of groups in a regexp matches.
11344 If you want to change the way frames are used when following a
11345 link, please customize `org-link-frame-setup'.
11347 If the file does not exist, an error is thrown."
11348 (let* ((file (if (equal path "")
11349 buffer-file-name
11350 (substitute-in-file-name (expand-file-name path))))
11351 (file-apps (append org-file-apps (org-default-apps)))
11352 (apps (org-remove-if
11353 'org-file-apps-entry-match-against-dlink-p file-apps))
11354 (apps-dlink (org-remove-if-not
11355 'org-file-apps-entry-match-against-dlink-p file-apps))
11356 (remp (and (assq 'remote apps) (org-file-remote-p file)))
11357 (dirp (if remp nil (file-directory-p file)))
11358 (file (if (and dirp org-open-directory-means-index-dot-org)
11359 (concat (file-name-as-directory file) "index.org")
11360 file))
11361 (a-m-a-p (assq 'auto-mode apps))
11362 (dfile (downcase file))
11363 ;; reconstruct the original file: link from the PATH, LINE and SEARCH args
11364 (link (cond ((and (eq line nil)
11365 (eq search nil))
11366 file)
11367 (line
11368 (concat file "::" (number-to-string line)))
11369 (search
11370 (concat file "::" search))))
11371 (dlink (downcase link))
11372 (old-buffer (current-buffer))
11373 (old-pos (point))
11374 (old-mode major-mode)
11375 ext cmd link-match-data)
11376 (if (string-match "^.*\\.\\([a-zA-Z0-9]+\\.gz\\)$" dfile)
11377 (setq ext (match-string 1 dfile))
11378 (if (string-match "^.*\\.\\([a-zA-Z0-9]+\\)$" dfile)
11379 (setq ext (match-string 1 dfile))))
11380 (cond
11381 ((member in-emacs '((16) system))
11382 (setq cmd (cdr (assoc 'system apps))))
11383 (in-emacs (setq cmd 'emacs))
11385 (setq cmd (or (and remp (cdr (assoc 'remote apps)))
11386 (and dirp (cdr (assoc 'directory apps)))
11387 ; first, try matching against apps-dlink
11388 ; if we get a match here, store the match data for later
11389 (let ((match (assoc-default dlink apps-dlink
11390 'string-match)))
11391 (if match
11392 (progn (setq link-match-data (match-data))
11393 match)
11394 (progn (setq in-emacs (or in-emacs line search))
11395 nil))) ; if we have no match in apps-dlink,
11396 ; always open the file in emacs if line or search
11397 ; is given (for backwards compatibility)
11398 (assoc-default dfile (org-apps-regexp-alist apps a-m-a-p)
11399 'string-match)
11400 (cdr (assoc ext apps))
11401 (cdr (assoc t apps))))))
11402 (when (eq cmd 'system)
11403 (setq cmd (cdr (assoc 'system apps))))
11404 (when (eq cmd 'default)
11405 (setq cmd (cdr (assoc t apps))))
11406 (when (eq cmd 'mailcap)
11407 (require 'mailcap)
11408 (mailcap-parse-mailcaps)
11409 (let* ((mime-type (mailcap-extension-to-mime (or ext "")))
11410 (command (mailcap-mime-info mime-type)))
11411 (if (stringp command)
11412 (setq cmd command)
11413 (setq cmd 'emacs))))
11414 (if (and (not (eq cmd 'emacs)) ; Emacs has no problems with non-ex files
11415 (not (file-exists-p file))
11416 (not org-open-non-existing-files))
11417 (user-error "No such file: %s" file))
11418 (cond
11419 ((and (stringp cmd) (not (string-match "^\\s-*$" cmd)))
11420 ;; Remove quotes around the file name - we'll use shell-quote-argument.
11421 (while (string-match "['\"]%s['\"]" cmd)
11422 (setq cmd (replace-match "%s" t t cmd)))
11423 (while (string-match "%s" cmd)
11424 (setq cmd (replace-match
11425 (save-match-data
11426 (shell-quote-argument
11427 (convert-standard-filename file)))
11428 t t cmd)))
11430 ;; Replace "%1", "%2" etc. in command with group matches from regex
11431 (save-match-data
11432 (let ((match-index 1)
11433 (number-of-groups (- (/ (length link-match-data) 2) 1)))
11434 (set-match-data link-match-data)
11435 (while (<= match-index number-of-groups)
11436 (let ((regex (concat "%" (number-to-string match-index)))
11437 (replace-with (match-string match-index dlink)))
11438 (while (string-match regex cmd)
11439 (setq cmd (replace-match replace-with t t cmd))))
11440 (setq match-index (+ match-index 1)))))
11442 (save-window-excursion
11443 (message "Running %s...done" cmd)
11444 (start-process-shell-command cmd nil cmd)
11445 (and (boundp 'org-wait) (numberp org-wait) (sit-for org-wait))))
11446 ((or (stringp cmd)
11447 (eq cmd 'emacs))
11448 (funcall (cdr (assq 'file org-link-frame-setup)) file)
11449 (widen)
11450 (if line (progn (org-goto-line line)
11451 (if (derived-mode-p 'org-mode)
11452 (org-reveal)))
11453 (if search (org-link-search search))))
11454 ((consp cmd)
11455 (let ((file (convert-standard-filename file)))
11456 (save-match-data
11457 (set-match-data link-match-data)
11458 (eval cmd))))
11459 (t (funcall (cdr (assq 'file org-link-frame-setup)) file)))
11460 (and (derived-mode-p 'org-mode) (eq old-mode 'org-mode)
11461 (or (not (equal old-buffer (current-buffer)))
11462 (not (equal old-pos (point))))
11463 (org-mark-ring-push old-pos old-buffer))))
11465 (defun org-file-apps-entry-match-against-dlink-p (entry)
11466 "This function returns non-nil if `entry' uses a regular
11467 expression which should be matched against the whole link by
11468 org-open-file.
11470 It assumes that is the case when the entry uses a regular
11471 expression which has at least one grouping construct and the
11472 action is either a lisp form or a command string containing
11473 '%1', i.e. using at least one subexpression match as a
11474 parameter."
11475 (let ((selector (car entry))
11476 (action (cdr entry)))
11477 (if (stringp selector)
11478 (and (> (regexp-opt-depth selector) 0)
11479 (or (and (stringp action)
11480 (string-match "%[0-9]" action))
11481 (consp action)))
11482 nil)))
11484 (defun org-default-apps ()
11485 "Return the default applications for this operating system."
11486 (cond
11487 ((eq system-type 'darwin)
11488 org-file-apps-defaults-macosx)
11489 ((eq system-type 'windows-nt)
11490 org-file-apps-defaults-windowsnt)
11491 (t org-file-apps-defaults-gnu)))
11493 (defun org-apps-regexp-alist (list &optional add-auto-mode)
11494 "Convert extensions to regular expressions in the cars of LIST.
11495 Also, weed out any non-string entries, because the return value is used
11496 only for regexp matching.
11497 When ADD-AUTO-MODE is set, make all matches in `auto-mode-alist'
11498 point to the symbol `emacs', indicating that the file should
11499 be opened in Emacs."
11500 (append
11501 (delq nil
11502 (mapcar (lambda (x)
11503 (if (not (stringp (car x)))
11505 (if (string-match "\\W" (car x))
11507 (cons (concat "\\." (car x) "\\'") (cdr x)))))
11508 list))
11509 (if add-auto-mode
11510 (mapcar (lambda (x) (cons (car x) 'emacs)) auto-mode-alist))))
11512 (defvar ange-ftp-name-format) ; to silence the XEmacs compiler.
11513 (defun org-file-remote-p (file)
11514 "Test whether FILE specifies a location on a remote system.
11515 Return non-nil if the location is indeed remote.
11517 For example, the filename \"/user@host:/foo\" specifies a location
11518 on the system \"/user@host:\"."
11519 (cond ((fboundp 'file-remote-p)
11520 (file-remote-p file))
11521 ((fboundp 'tramp-handle-file-remote-p)
11522 (tramp-handle-file-remote-p file))
11523 ((and (boundp 'ange-ftp-name-format)
11524 (string-match (car ange-ftp-name-format) file))
11525 t)))
11528 ;;;; Refiling
11530 (defun org-get-org-file ()
11531 "Read a filename, with default directory `org-directory'."
11532 (let ((default (or org-default-notes-file remember-data-file)))
11533 (read-file-name (format "File name [%s]: " default)
11534 (file-name-as-directory org-directory)
11535 default)))
11537 (defun org-notes-order-reversed-p ()
11538 "Check if the current file should receive notes in reversed order."
11539 (cond
11540 ((not org-reverse-note-order) nil)
11541 ((eq t org-reverse-note-order) t)
11542 ((not (listp org-reverse-note-order)) nil)
11543 (t (catch 'exit
11544 (let ((all org-reverse-note-order)
11545 entry)
11546 (while (setq entry (pop all))
11547 (if (string-match (car entry) buffer-file-name)
11548 (throw 'exit (cdr entry))))
11549 nil)))))
11551 (defvar org-refile-target-table nil
11552 "The list of refile targets, created by `org-refile'.")
11554 (defvar org-agenda-new-buffers nil
11555 "Buffers created to visit agenda files.")
11557 (defvar org-refile-cache nil
11558 "Cache for refile targets.")
11560 (defvar org-refile-markers nil
11561 "All the markers used for caching refile locations.")
11563 (defun org-refile-marker (pos)
11564 "Get a new refile marker, but only if caching is in use."
11565 (if (not org-refile-use-cache)
11567 (let ((m (make-marker)))
11568 (move-marker m pos)
11569 (push m org-refile-markers)
11570 m)))
11572 (defun org-refile-cache-clear ()
11573 "Clear the refile cache and disable all the markers."
11574 (mapc (lambda (m) (move-marker m nil)) org-refile-markers)
11575 (setq org-refile-markers nil)
11576 (setq org-refile-cache nil)
11577 (message "Refile cache has been cleared"))
11579 (defun org-refile-cache-check-set (set)
11580 "Check if all the markers in the cache still have live buffers."
11581 (let (marker)
11582 (catch 'exit
11583 (while (and set (setq marker (nth 3 (pop set))))
11584 ;; If `org-refile-use-outline-path' is 'file, marker may be nil
11585 (when (and marker (null (marker-buffer marker)))
11586 (message "Please regenerate the refile cache with `C-0 C-c C-w'")
11587 (sit-for 3)
11588 (throw 'exit nil)))
11589 t)))
11591 (defun org-refile-cache-put (set &rest identifiers)
11592 "Push the refile targets SET into the cache, under IDENTIFIERS."
11593 (let* ((key (sha1 (prin1-to-string identifiers)))
11594 (entry (assoc key org-refile-cache)))
11595 (if entry
11596 (setcdr entry set)
11597 (push (cons key set) org-refile-cache))))
11599 (defun org-refile-cache-get (&rest identifiers)
11600 "Retrieve the cached value for refile targets given by IDENTIFIERS."
11601 (cond
11602 ((not org-refile-cache) nil)
11603 ((not org-refile-use-cache) (org-refile-cache-clear) nil)
11605 (let ((set (cdr (assoc (sha1 (prin1-to-string identifiers))
11606 org-refile-cache))))
11607 (and set (org-refile-cache-check-set set) set)))))
11609 (defun org-refile-get-targets (&optional default-buffer excluded-entries)
11610 "Produce a table with refile targets."
11611 (let ((case-fold-search nil)
11612 ;; otherwise org confuses "TODO" as a kw and "Todo" as a word
11613 (entries (or org-refile-targets '((nil . (:level . 1)))))
11614 targets tgs txt re files f desc descre fast-path-p level pos0)
11615 (message "Getting targets...")
11616 (with-current-buffer (or default-buffer (current-buffer))
11617 (while (setq entry (pop entries))
11618 (setq files (car entry) desc (cdr entry))
11619 (setq fast-path-p nil)
11620 (cond
11621 ((null files) (setq files (list (current-buffer))))
11622 ((eq files 'org-agenda-files)
11623 (setq files (org-agenda-files 'unrestricted)))
11624 ((and (symbolp files) (fboundp files))
11625 (setq files (funcall files)))
11626 ((and (symbolp files) (boundp files))
11627 (setq files (symbol-value files))))
11628 (if (stringp files) (setq files (list files)))
11629 (cond
11630 ((eq (car desc) :tag)
11631 (setq descre (concat "^\\*+[ \t]+.*?:" (regexp-quote (cdr desc)) ":")))
11632 ((eq (car desc) :todo)
11633 (setq descre (concat "^\\*+[ \t]+" (regexp-quote (cdr desc)) "[ \t]")))
11634 ((eq (car desc) :regexp)
11635 (setq descre (cdr desc)))
11636 ((eq (car desc) :level)
11637 (setq descre (concat "^\\*\\{" (number-to-string
11638 (if org-odd-levels-only
11639 (1- (* 2 (cdr desc)))
11640 (cdr desc)))
11641 "\\}[ \t]")))
11642 ((eq (car desc) :maxlevel)
11643 (setq fast-path-p t)
11644 (setq descre (concat "^\\*\\{1," (number-to-string
11645 (if org-odd-levels-only
11646 (1- (* 2 (cdr desc)))
11647 (cdr desc)))
11648 "\\}[ \t]")))
11649 (t (error "Bad refiling target description %s" desc)))
11650 (while (setq f (pop files))
11651 (with-current-buffer
11652 (if (bufferp f) f (org-get-agenda-file-buffer f))
11654 (setq tgs (org-refile-cache-get (buffer-file-name) descre))
11655 (progn
11656 (if (bufferp f) (setq f (buffer-file-name
11657 (buffer-base-buffer f))))
11658 (setq f (and f (expand-file-name f)))
11659 (if (eq org-refile-use-outline-path 'file)
11660 (push (list (file-name-nondirectory f) f nil nil) tgs))
11661 (save-excursion
11662 (save-restriction
11663 (widen)
11664 (goto-char (point-min))
11665 (while (re-search-forward descre nil t)
11666 (goto-char (setq pos0 (point-at-bol)))
11667 (catch 'next
11668 (when org-refile-target-verify-function
11669 (save-match-data
11670 (or (funcall org-refile-target-verify-function)
11671 (throw 'next t))))
11672 (when (and (looking-at org-complex-heading-regexp)
11673 (not (member (match-string 4) excluded-entries))
11674 (match-string 4))
11675 (setq level (org-reduced-level
11676 (- (match-end 1) (match-beginning 1)))
11677 txt (org-link-display-format (match-string 4))
11678 txt (replace-regexp-in-string "\\( *\[[0-9]+/?[0-9]*%?\]\\)+$" "" txt)
11679 re (format org-complex-heading-regexp-format
11680 (regexp-quote (match-string 4))))
11681 (when org-refile-use-outline-path
11682 (setq txt (mapconcat
11683 'org-protect-slash
11684 (append
11685 (if (eq org-refile-use-outline-path
11686 'file)
11687 (list (file-name-nondirectory
11688 (buffer-file-name
11689 (buffer-base-buffer))))
11690 (if (eq org-refile-use-outline-path
11691 'full-file-path)
11692 (list (buffer-file-name
11693 (buffer-base-buffer)))))
11694 (org-get-outline-path fast-path-p
11695 level txt)
11696 (list txt))
11697 "/")))
11698 (push (list txt f re (org-refile-marker (point)))
11699 tgs)))
11700 (when (= (point) pos0)
11701 ;; verification function has not moved point
11702 (goto-char (point-at-eol))))))))
11703 (when org-refile-use-cache
11704 (org-refile-cache-put tgs (buffer-file-name) descre))
11705 (setq targets (append tgs targets))))))
11706 (message "Getting targets...done")
11707 (nreverse targets)))
11709 (defun org-protect-slash (s)
11710 (while (string-match "/" s)
11711 (setq s (replace-match "\\" t t s)))
11714 (defvar org-olpa (make-vector 20 nil))
11716 (defun org-get-outline-path (&optional fastp level heading)
11717 "Return the outline path to the current entry, as a list.
11719 The parameters FASTP, LEVEL, and HEADING are for use by a scanner
11720 routine which makes outline path derivations for an entire file,
11721 avoiding backtracing. Refile target collection makes use of that."
11722 (if fastp
11723 (progn
11724 (if (> level 19)
11725 (error "Outline path failure, more than 19 levels"))
11726 (loop for i from level upto 19 do
11727 (aset org-olpa i nil))
11728 (prog1
11729 (delq nil (append org-olpa nil))
11730 (aset org-olpa level heading)))
11731 (let (rtn case-fold-search)
11732 (save-excursion
11733 (save-restriction
11734 (widen)
11735 (while (org-up-heading-safe)
11736 (when (looking-at org-complex-heading-regexp)
11737 (push (org-trim
11738 (replace-regexp-in-string
11739 ;; Remove statistical/checkboxes cookies
11740 "\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]" ""
11741 (org-match-string-no-properties 4)))
11742 rtn)))
11743 rtn)))))
11745 (defun org-format-outline-path (path &optional width prefix separator)
11746 "Format the outline path PATH for display.
11747 WIDTH is the maximum number of characters that is available.
11748 PREFIX is a prefix to be included in the returned string,
11749 such as the file name.
11750 SEPARATOR is inserted between the different parts of the path,
11751 the default is \"/\"."
11752 (setq width (or width 79))
11753 (if prefix (setq width (- width (length prefix))))
11754 (if (not path)
11755 (or prefix "")
11756 (let* ((nsteps (length path))
11757 (total-width (+ nsteps (apply '+ (mapcar 'length path))))
11758 (maxwidth (if (<= total-width width)
11759 10000 ;; everything fits
11760 ;; we need to shorten the level headings
11761 (/ (- width nsteps) nsteps)))
11762 (org-odd-levels-only nil)
11763 (n 0)
11764 (total (1+ (length prefix))))
11765 (setq maxwidth (max maxwidth 10))
11766 (concat prefix
11767 (if prefix (or separator "/"))
11768 (mapconcat
11769 (lambda (h)
11770 (setq n (1+ n))
11771 (if (and (= n nsteps) (< maxwidth 10000))
11772 (setq maxwidth (- total-width total)))
11773 (if (< (length h) maxwidth)
11774 (progn (setq total (+ total (length h) 1)) h)
11775 (setq h (substring h 0 (- maxwidth 2))
11776 total (+ total maxwidth 1))
11777 (if (string-match "[ \t]+\\'" h)
11778 (setq h (substring h 0 (match-beginning 0))))
11779 (setq h (concat h "..")))
11780 (org-add-props h nil 'face
11781 (nth (% (1- n) org-n-level-faces)
11782 org-level-faces))
11784 path (or separator "/"))))))
11786 (defun org-display-outline-path (&optional file current separator just-return-string)
11787 "Display the current outline path in the echo area.
11789 If FILE is non-nil, prepend the output with the file name.
11790 If CURRENT is non-nil, append the current heading to the output.
11791 SEPARATOR is passed through to `org-format-outline-path'. It separates
11792 the different parts of the path and defaults to \"/\".
11793 If JUST-RETURN-STRING is non-nil, return a string, don't display a message."
11794 (interactive "P")
11795 (let* (case-fold-search
11796 (bfn (buffer-file-name (buffer-base-buffer)))
11797 (path (and (derived-mode-p 'org-mode) (org-get-outline-path)))
11798 res)
11799 (if current (setq path (append path
11800 (save-excursion
11801 (org-back-to-heading t)
11802 (if (looking-at org-complex-heading-regexp)
11803 (list (match-string 4)))))))
11804 (setq res
11805 (org-format-outline-path
11806 path
11807 (1- (frame-width))
11808 (and file bfn (concat (file-name-nondirectory bfn) separator))
11809 separator))
11810 (if just-return-string
11811 (org-no-properties res)
11812 (org-unlogged-message "%s" res))))
11814 (defvar org-refile-history nil
11815 "History for refiling operations.")
11817 (defvar org-after-refile-insert-hook nil
11818 "Hook run after `org-refile' has inserted its stuff at the new location.
11819 Note that this is still *before* the stuff will be removed from
11820 the *old* location.")
11822 (defvar org-capture-last-stored-marker)
11823 (defvar org-refile-keep nil
11824 "Non-nil means `org-refile' will copy instead of refile.")
11826 (defun org-copy ()
11827 "Like `org-refile', but copy."
11828 (interactive)
11829 (let ((org-refile-keep t))
11830 (funcall 'org-refile nil nil nil "Copy")))
11832 (defun org-refile (&optional arg default-buffer rfloc msg)
11833 "Move the entry or entries at point to another heading.
11834 The list of target headings is compiled using the information in
11835 `org-refile-targets', which see.
11837 At the target location, the entry is filed as a subitem of the
11838 target heading. Depending on `org-reverse-note-order', the new
11839 subitem will either be the first or the last subitem.
11841 If there is an active region, all entries in that region will be
11842 refiled. However, the region must fulfill the requirement that
11843 the first heading sets the top-level of the moved text.
11845 With prefix arg ARG, the command will only visit the target
11846 location and not actually move anything.
11848 With a double prefix arg \\[universal-argument] \\[universal-argument], go to the location where the last
11849 refiling operation has put the subtree.
11851 With a numeric prefix argument of `2', refile to the running clock.
11853 With a numeric prefix argument of `3', emulate `org-refile-keep'
11854 being set to `t' and copy to the target location, don't move it.
11855 Beware that keeping refiled entries may result in duplicated ID
11856 properties.
11858 RFLOC can be a refile location obtained in a different way.
11860 MSG is a string to replace \"Refile\" in the default prompt with
11861 another verb. E.g. `org-copy' sets this parameter to \"Copy\".
11863 See also `org-refile-use-outline-path' and `org-completion-use-ido'.
11865 If you are using target caching (see `org-refile-use-cache'), you
11866 have to clear the target cache in order to find new targets.
11867 This can be done with a 0 prefix (`C-0 C-c C-w') or a triple
11868 prefix argument (`C-u C-u C-u C-c C-w')."
11869 (interactive "P")
11870 (if (member arg '(0 (64)))
11871 (org-refile-cache-clear)
11872 (let* ((actionmsg (cond (msg msg)
11873 ((equal arg 3) "Refile (and keep)")
11874 (t "Refile")))
11875 (cbuf (current-buffer))
11876 (regionp (org-region-active-p))
11877 (region-start (and regionp (region-beginning)))
11878 (region-end (and regionp (region-end)))
11879 (filename (buffer-file-name (buffer-base-buffer cbuf)))
11880 (org-refile-keep (if (equal arg 3) t org-refile-keep))
11881 pos it nbuf file re level reversed)
11882 (setq last-command nil)
11883 (when regionp
11884 (goto-char region-start)
11885 (or (bolp) (goto-char (point-at-bol)))
11886 (setq region-start (point))
11887 (unless (or (org-kill-is-subtree-p
11888 (buffer-substring region-start region-end))
11889 (prog1 org-refile-active-region-within-subtree
11890 (let ((s (point-at-eol)))
11891 (org-toggle-heading)
11892 (setq region-end (+ (- (point-at-eol) s) region-end)))))
11893 (user-error "The region is not a (sequence of) subtree(s)")))
11894 (if (equal arg '(16))
11895 (org-refile-goto-last-stored)
11896 (when (or
11897 (and (equal arg 2)
11898 org-clock-hd-marker (marker-buffer org-clock-hd-marker)
11899 (prog1
11900 (setq it (list (or org-clock-heading "running clock")
11901 (buffer-file-name
11902 (marker-buffer org-clock-hd-marker))
11904 (marker-position org-clock-hd-marker)))
11905 (setq arg nil)))
11906 (setq it (or rfloc
11907 (let (heading-text)
11908 (save-excursion
11909 (unless (and arg (listp arg))
11910 (org-back-to-heading t)
11911 (setq heading-text
11912 (replace-regexp-in-string
11913 org-bracket-link-regexp
11914 "\\3"
11915 (nth 4 (org-heading-components)))))
11916 (org-refile-get-location
11917 (cond ((and arg (listp arg)) "Goto")
11918 (regionp (concat actionmsg " region to"))
11919 (t (concat actionmsg " subtree \""
11920 heading-text "\" to")))
11921 default-buffer
11922 (and (not (equal '(4) arg))
11923 org-refile-allow-creating-parent-nodes)
11924 arg))))))
11925 (setq file (nth 1 it)
11926 re (nth 2 it)
11927 pos (nth 3 it))
11928 (if (and (not arg)
11930 (equal (buffer-file-name) file)
11931 (if regionp
11932 (and (>= pos region-start)
11933 (<= pos region-end))
11934 (and (>= pos (point))
11935 (< pos (save-excursion
11936 (org-end-of-subtree t t))))))
11937 (error "Cannot refile to position inside the tree or region"))
11938 (setq nbuf (or (find-buffer-visiting file)
11939 (find-file-noselect file)))
11940 (if (and arg (not (equal arg 3)))
11941 (progn
11942 (org-pop-to-buffer-same-window nbuf)
11943 (goto-char pos)
11944 (org-show-context 'org-goto))
11945 (if regionp
11946 (progn
11947 (org-kill-new (buffer-substring region-start region-end))
11948 (org-save-markers-in-region region-start region-end))
11949 (org-copy-subtree 1 nil t))
11950 (with-current-buffer (setq nbuf (or (find-buffer-visiting file)
11951 (find-file-noselect file)))
11952 (setq reversed (org-notes-order-reversed-p))
11953 (save-excursion
11954 (save-restriction
11955 (widen)
11956 (if pos
11957 (progn
11958 (goto-char pos)
11959 (looking-at org-outline-regexp)
11960 (setq level (org-get-valid-level (funcall outline-level) 1))
11961 (goto-char
11962 (if reversed
11963 (or (outline-next-heading) (point-max))
11964 (or (save-excursion (org-get-next-sibling))
11965 (org-end-of-subtree t t)
11966 (point-max)))))
11967 (setq level 1)
11968 (if (not reversed)
11969 (goto-char (point-max))
11970 (goto-char (point-min))
11971 (or (outline-next-heading) (goto-char (point-max)))))
11972 (if (not (bolp)) (newline))
11973 (org-paste-subtree level nil nil t)
11974 (when org-log-refile
11975 (org-add-log-setup 'refile nil nil 'findpos org-log-refile)
11976 (unless (eq org-log-refile 'note)
11977 (save-excursion (org-add-log-note))))
11978 (and org-auto-align-tags
11979 (let ((org-loop-over-headlines-in-active-region nil))
11980 (org-set-tags nil t)))
11981 (let ((bookmark-name (plist-get org-bookmark-names-plist
11982 :last-refile)))
11983 (when bookmark-name
11984 (with-demoted-errors
11985 (bookmark-set bookmark-name))))
11986 ;; If we are refiling for capture, make sure that the
11987 ;; last-capture pointers point here
11988 (when (org-bound-and-true-p org-refile-for-capture)
11989 (let ((bookmark-name (plist-get org-bookmark-names-plist
11990 :last-capture-marker)))
11991 (when bookmark-name
11992 (with-demoted-errors
11993 (bookmark-set bookmark-name))))
11994 (move-marker org-capture-last-stored-marker (point)))
11995 (if (fboundp 'deactivate-mark) (deactivate-mark))
11996 (run-hooks 'org-after-refile-insert-hook))))
11997 (unless org-refile-keep
11998 (if regionp
11999 (delete-region (point) (+ (point) (- region-end region-start)))
12000 (delete-region
12001 (and (org-back-to-heading t) (point))
12002 (min (1+ (buffer-size)) (org-end-of-subtree t t) (point)))))
12003 (when (featurep 'org-inlinetask)
12004 (org-inlinetask-remove-END-maybe))
12005 (setq org-markers-to-move nil)
12006 (message (concat actionmsg " to \"%s\" in file %s: done") (car it) file)))))))
12008 (defun org-refile-goto-last-stored ()
12009 "Go to the location where the last refile was stored."
12010 (interactive)
12011 (bookmark-jump (plist-get org-bookmark-names-plist :last-refile))
12012 (message "This is the location of the last refile"))
12014 (defun org-refile--get-location (refloc tbl)
12015 "When user refile to REFLOC, find the associated target in TBL.
12016 Also check `org-refile-target-table'."
12017 (car (delq
12019 (mapcar
12020 (lambda (r) (or (assoc r tbl)
12021 (assoc r org-refile-target-table)))
12022 (list (replace-regexp-in-string "/$" "" refloc)
12023 (replace-regexp-in-string "\\([^/]\\)$" "\\1/" refloc))))))
12025 (defun org-refile-get-location (&optional prompt default-buffer new-nodes
12026 no-exclude)
12027 "Prompt the user for a refile location, using PROMPT.
12028 PROMPT should not be suffixed with a colon and a space, because
12029 this function appends the default value from
12030 `org-refile-history' automatically, if that is not empty.
12031 When NO-EXCLUDE is set, do not exclude headlines in the current subtree,
12032 this is used for the GOTO interface."
12033 (let ((org-refile-targets org-refile-targets)
12034 (org-refile-use-outline-path org-refile-use-outline-path)
12035 excluded-entries)
12036 (when (and (derived-mode-p 'org-mode)
12037 (not org-refile-use-cache)
12038 (not no-exclude))
12039 (org-map-tree
12040 (lambda()
12041 (setq excluded-entries
12042 (append excluded-entries (list (org-get-heading t t)))))))
12043 (setq org-refile-target-table
12044 (org-refile-get-targets default-buffer excluded-entries)))
12045 (unless org-refile-target-table
12046 (user-error "No refile targets"))
12047 (let* ((cbuf (current-buffer))
12048 (partial-completion-mode nil)
12049 (cfn (buffer-file-name (buffer-base-buffer cbuf)))
12050 (cfunc (if (and org-refile-use-outline-path
12051 org-outline-path-complete-in-steps)
12052 'org-olpath-completing-read
12053 'org-icompleting-read))
12054 (extra (if org-refile-use-outline-path "/" ""))
12055 (cbnex (concat (buffer-name) extra))
12056 (filename (and cfn (expand-file-name cfn)))
12057 (tbl (mapcar
12058 (lambda (x)
12059 (if (and (not (member org-refile-use-outline-path
12060 '(file full-file-path)))
12061 (not (equal filename (nth 1 x))))
12062 (cons (concat (car x) extra " ("
12063 (file-name-nondirectory (nth 1 x)) ")")
12064 (cdr x))
12065 (cons (concat (car x) extra) (cdr x))))
12066 org-refile-target-table))
12067 (completion-ignore-case t)
12068 cdef
12069 (prompt (concat prompt
12070 (or (and (car org-refile-history)
12071 (concat " (default " (car org-refile-history) ")"))
12072 (and (assoc cbnex tbl) (setq cdef cbnex)
12073 (concat " (default " cbnex ")"))) ": "))
12074 pa answ parent-target child parent old-hist)
12075 (setq old-hist org-refile-history)
12076 (setq answ (funcall cfunc prompt tbl nil (not new-nodes)
12077 nil 'org-refile-history (or cdef (car org-refile-history))))
12078 (if (setq pa (org-refile--get-location answ tbl))
12079 (progn
12080 (org-refile-check-position pa)
12081 (when (or (not org-refile-history)
12082 (not (eq old-hist org-refile-history))
12083 (not (equal (car pa) (car org-refile-history))))
12084 (setq org-refile-history
12085 (cons (car pa) (if (assoc (car org-refile-history) tbl)
12086 org-refile-history
12087 (cdr org-refile-history))))
12088 (if (equal (car org-refile-history) (nth 1 org-refile-history))
12089 (pop org-refile-history)))
12091 (if (string-match "\\`\\(.*\\)/\\([^/]+\\)\\'" answ)
12092 (progn
12093 (setq parent (match-string 1 answ)
12094 child (match-string 2 answ))
12095 (setq parent-target (org-refile--get-location parent tbl))
12096 (when (and parent-target
12097 (or (eq new-nodes t)
12098 (and (eq new-nodes 'confirm)
12099 (y-or-n-p (format "Create new node \"%s\"? "
12100 child)))))
12101 (org-refile-new-child parent-target child)))
12102 (user-error "Invalid target location")))))
12104 (declare-function org-string-nw-p "org-macs" (s))
12105 (defun org-refile-check-position (refile-pointer)
12106 "Check if the refile pointer matches the headline to which it points."
12107 (let* ((file (nth 1 refile-pointer))
12108 (re (nth 2 refile-pointer))
12109 (pos (nth 3 refile-pointer))
12110 buffer)
12111 (if (and (not (markerp pos)) (not file))
12112 (user-error "Please indicate a target file in the refile path")
12113 (when (org-string-nw-p re)
12114 (setq buffer (if (markerp pos)
12115 (marker-buffer pos)
12116 (or (find-buffer-visiting file)
12117 (find-file-noselect file))))
12118 (with-current-buffer buffer
12119 (save-excursion
12120 (save-restriction
12121 (widen)
12122 (goto-char pos)
12123 (beginning-of-line 1)
12124 (unless (org-looking-at-p re)
12125 (user-error "Invalid refile position, please clear the cache with `C-0 C-c C-w' before refiling")))))))))
12127 (defun org-refile-new-child (parent-target child)
12128 "Use refile target PARENT-TARGET to add new CHILD below it."
12129 (unless parent-target
12130 (error "Cannot find parent for new node"))
12131 (let ((file (nth 1 parent-target))
12132 (pos (nth 3 parent-target))
12133 level)
12134 (with-current-buffer (or (find-buffer-visiting file)
12135 (find-file-noselect file))
12136 (save-excursion
12137 (save-restriction
12138 (widen)
12139 (if pos
12140 (goto-char pos)
12141 (goto-char (point-max))
12142 (if (not (bolp)) (newline)))
12143 (when (looking-at org-outline-regexp)
12144 (setq level (funcall outline-level))
12145 (org-end-of-subtree t t))
12146 (org-back-over-empty-lines)
12147 (insert "\n" (make-string
12148 (if pos (org-get-valid-level level 1) 1) ?*)
12149 " " child "\n")
12150 (beginning-of-line 0)
12151 (list (concat (car parent-target) "/" child) file "" (point)))))))
12153 (defun org-olpath-completing-read (prompt collection &rest args)
12154 "Read an outline path like a file name."
12155 (let ((thetable collection)
12156 (org-completion-use-ido nil) ; does not work with ido.
12157 (org-completion-use-iswitchb nil)) ; or iswitchb
12158 (apply
12159 'org-icompleting-read prompt
12160 (lambda (string predicate &optional flag)
12161 (let (rtn r f (l (length string)))
12162 (cond
12163 ((eq flag nil)
12164 ;; try completion
12165 (try-completion string thetable))
12166 ((eq flag t)
12167 ;; all-completions
12168 (setq rtn (all-completions string thetable predicate))
12169 (mapcar
12170 (lambda (x)
12171 (setq r (substring x l))
12172 (if (string-match " ([^)]*)$" x)
12173 (setq f (match-string 0 x))
12174 (setq f ""))
12175 (if (string-match "/" r)
12176 (concat string (substring r 0 (match-end 0)) f)
12178 rtn))
12179 ((eq flag 'lambda)
12180 ;; exact match?
12181 (assoc string thetable)))))
12182 args)))
12184 ;;;; Dynamic blocks
12186 (defun org-find-dblock (name)
12187 "Find the first dynamic block with name NAME in the buffer.
12188 If not found, stay at current position and return nil."
12189 (let ((case-fold-search t) pos)
12190 (save-excursion
12191 (goto-char (point-min))
12192 (setq pos (and (re-search-forward
12193 (concat "^[ \t]*#\\+\\(?:BEGIN\\|begin\\):[ \t]+" name "\\>") nil t)
12194 (match-beginning 0))))
12195 (if pos (goto-char pos))
12196 pos))
12198 (defun org-create-dblock (plist)
12199 "Create a dynamic block section, with parameters taken from PLIST.
12200 PLIST must contain a :name entry which is used as the name of the block."
12201 (when (string-match "\\S-" (buffer-substring (point-at-bol) (point-at-eol)))
12202 (end-of-line 1)
12203 (newline))
12204 (let ((col (current-column))
12205 (name (plist-get plist :name)))
12206 (insert "#+BEGIN: " name)
12207 (while plist
12208 (if (eq (car plist) :name)
12209 (setq plist (cddr plist))
12210 (insert " " (prin1-to-string (pop plist)))))
12211 (insert "\n\n" (make-string col ?\ ) "#+END:\n")
12212 (beginning-of-line -2)))
12214 (defun org-prepare-dblock ()
12215 "Prepare dynamic block for refresh.
12216 This empties the block, puts the cursor at the insert position and returns
12217 the property list including an extra property :name with the block name."
12218 (unless (looking-at org-dblock-start-re)
12219 (user-error "Not at a dynamic block"))
12220 (let* ((begdel (1+ (match-end 0)))
12221 (name (org-no-properties (match-string 1)))
12222 (params (append (list :name name)
12223 (read (concat "(" (match-string 3) ")")))))
12224 (save-excursion
12225 (beginning-of-line 1)
12226 (skip-chars-forward " \t")
12227 (setq params (plist-put params :indentation-column (current-column))))
12228 (unless (re-search-forward org-dblock-end-re nil t)
12229 (error "Dynamic block not terminated"))
12230 (setq params
12231 (append params
12232 (list :content (buffer-substring
12233 begdel (match-beginning 0)))))
12234 (delete-region begdel (match-beginning 0))
12235 (goto-char begdel)
12236 (open-line 1)
12237 params))
12239 (defun org-map-dblocks (&optional command)
12240 "Apply COMMAND to all dynamic blocks in the current buffer.
12241 If COMMAND is not given, use `org-update-dblock'."
12242 (let ((cmd (or command 'org-update-dblock)))
12243 (save-excursion
12244 (goto-char (point-min))
12245 (while (re-search-forward org-dblock-start-re nil t)
12246 (goto-char (match-beginning 0))
12247 (save-excursion
12248 (condition-case nil
12249 (funcall cmd)
12250 (error (message "Error during update of dynamic block"))))
12251 (unless (re-search-forward org-dblock-end-re nil t)
12252 (error "Dynamic block not terminated"))))))
12254 (defun org-dblock-update (&optional arg)
12255 "User command for updating dynamic blocks.
12256 Update the dynamic block at point. With prefix ARG, update all dynamic
12257 blocks in the buffer."
12258 (interactive "P")
12259 (if arg
12260 (org-update-all-dblocks)
12261 (or (looking-at org-dblock-start-re)
12262 (org-beginning-of-dblock))
12263 (org-update-dblock)))
12265 (defun org-update-dblock ()
12266 "Update the dynamic block at point.
12267 This means to empty the block, parse for parameters and then call
12268 the correct writing function."
12269 (interactive)
12270 (save-excursion
12271 (let* ((win (selected-window))
12272 (pos (point))
12273 (line (org-current-line))
12274 (params (org-prepare-dblock))
12275 (name (plist-get params :name))
12276 (indent (plist-get params :indentation-column))
12277 (cmd (intern (concat "org-dblock-write:" name))))
12278 (message "Updating dynamic block `%s' at line %d..." name line)
12279 (funcall cmd params)
12280 (message "Updating dynamic block `%s' at line %d...done" name line)
12281 (goto-char pos)
12282 (when (and indent (> indent 0))
12283 (setq indent (make-string indent ?\ ))
12284 (save-excursion
12285 (select-window win)
12286 (org-beginning-of-dblock)
12287 (forward-line 1)
12288 (while (not (looking-at org-dblock-end-re))
12289 (insert indent)
12290 (beginning-of-line 2))
12291 (when (looking-at org-dblock-end-re)
12292 (and (looking-at "[ \t]+")
12293 (replace-match ""))
12294 (insert indent)))))))
12296 (defun org-beginning-of-dblock ()
12297 "Find the beginning of the dynamic block at point.
12298 Error if there is no such block at point."
12299 (let ((pos (point))
12300 beg)
12301 (end-of-line 1)
12302 (if (and (re-search-backward org-dblock-start-re nil t)
12303 (setq beg (match-beginning 0))
12304 (re-search-forward org-dblock-end-re nil t)
12305 (> (match-end 0) pos))
12306 (goto-char beg)
12307 (goto-char pos)
12308 (error "Not in a dynamic block"))))
12310 (defun org-update-all-dblocks ()
12311 "Update all dynamic blocks in the buffer.
12312 This function can be used in a hook."
12313 (interactive)
12314 (when (derived-mode-p 'org-mode)
12315 (org-map-dblocks 'org-update-dblock)))
12318 ;;;; Completion
12320 (declare-function org-export-backend-name "org-export" (cl-x))
12321 (declare-function org-export-backend-options "org-export" (cl-x))
12322 (defun org-get-export-keywords ()
12323 "Return a list of all currently understood export keywords.
12324 Export keywords include options, block names, attributes and
12325 keywords relative to each registered export back-end."
12326 (let (keywords)
12327 (dolist (backend
12328 (org-bound-and-true-p org-export--registered-backends)
12329 (delq nil keywords))
12330 ;; Back-end name (for keywords, like #+LATEX:)
12331 (push (upcase (symbol-name (org-export-backend-name backend))) keywords)
12332 (dolist (option-entry (org-export-backend-options backend))
12333 ;; Back-end options.
12334 (push (nth 1 option-entry) keywords)))))
12336 (defconst org-options-keywords
12337 '("ARCHIVE:" "AUTHOR:" "BIND:" "CATEGORY:" "COLUMNS:" "CREATOR:" "DATE:"
12338 "DESCRIPTION:" "DRAWERS:" "EMAIL:" "EXCLUDE_TAGS:" "FILETAGS:" "INCLUDE:"
12339 "INDEX:" "KEYWORDS:" "LANGUAGE:" "MACRO:" "OPTIONS:" "PROPERTY:"
12340 "PRIORITIES:" "SELECT_TAGS:" "SEQ_TODO:" "SETUPFILE:" "STARTUP:" "TAGS:"
12341 "TITLE:" "TODO:" "TYP_TODO:" "SELECT_TAGS:" "EXCLUDE_TAGS:"))
12343 (defcustom org-structure-template-alist
12344 '(("s" "#+BEGIN_SRC ?\n\n#+END_SRC")
12345 ("e" "#+BEGIN_EXAMPLE\n?\n#+END_EXAMPLE")
12346 ("q" "#+BEGIN_QUOTE\n?\n#+END_QUOTE")
12347 ("v" "#+BEGIN_VERSE\n?\n#+END_VERSE")
12348 ("V" "#+BEGIN_VERBATIM\n?\n#+END_VERBATIM")
12349 ("c" "#+BEGIN_CENTER\n?\n#+END_CENTER")
12350 ("l" "#+BEGIN_LaTeX\n?\n#+END_LaTeX")
12351 ("L" "#+LaTeX: ")
12352 ("h" "#+BEGIN_HTML\n?\n#+END_HTML")
12353 ("H" "#+HTML: ")
12354 ("a" "#+BEGIN_ASCII\n?\n#+END_ASCII")
12355 ("A" "#+ASCII: ")
12356 ("i" "#+INDEX: ?")
12357 ("I" "#+INCLUDE: %file ?"))
12358 "Structure completion elements.
12359 This is a list of abbreviation keys and values. The value gets inserted
12360 if you type `<' followed by the key and then press the completion key,
12361 usually `TAB'. %file will be replaced by a file name after prompting
12362 for the file using completion. The cursor will be placed at the position
12363 of the `?` in the template.
12364 There are two templates for each key, the first uses the original Org syntax,
12365 the second uses Emacs Muse-like syntax tags. These Muse-like tags become
12366 the default when the /org-mtags.el/ module has been loaded. See also the
12367 variable `org-mtags-prefer-muse-templates'."
12368 :group 'org-completion
12369 :type '(repeat
12370 (list
12371 (string :tag "Key")
12372 (string :tag "Template")))
12373 :version "25.1"
12374 :package-version '(Org . "8.3"))
12376 (defun org-try-structure-completion ()
12377 "Try to complete a structure template before point.
12378 This looks for strings like \"<e\" on an otherwise empty line and
12379 expands them."
12380 (let ((l (buffer-substring (point-at-bol) (point)))
12382 (when (and (looking-at "[ \t]*$")
12383 (string-match "^[ \t]*<\\([a-zA-Z]+\\)$" l)
12384 (setq a (assoc (match-string 1 l) org-structure-template-alist)))
12385 (org-complete-expand-structure-template (+ -1 (point-at-bol)
12386 (match-beginning 1)) a)
12387 t)))
12389 (defun org-complete-expand-structure-template (start cell)
12390 "Expand a structure template."
12391 (let ((rpl (nth 1 cell))
12392 (ind ""))
12393 (delete-region start (point))
12394 (when (string-match "\\`[ \t]*#\\+" rpl)
12395 (cond
12396 ((bolp))
12397 ((not (string-match "\\S-" (buffer-substring (point-at-bol) (point))))
12398 (setq ind (buffer-substring (point-at-bol) (point))))
12399 (t (newline))))
12400 (setq start (point))
12401 (if (string-match "%file" rpl)
12402 (setq rpl (replace-match
12403 (concat
12404 "\""
12405 (save-match-data
12406 (abbreviate-file-name (read-file-name "Include file: ")))
12407 "\"")
12408 t t rpl)))
12409 (setq rpl (mapconcat 'identity (split-string rpl "\n")
12410 (concat "\n" ind)))
12411 (insert rpl)
12412 (if (re-search-backward "\\?" start t) (delete-char 1))))
12414 ;;;; TODO, DEADLINE, Comments
12416 (defun org-toggle-comment ()
12417 "Change the COMMENT state of an entry."
12418 (interactive)
12419 (save-excursion
12420 (org-back-to-heading)
12421 (looking-at org-complex-heading-regexp)
12422 (goto-char (or (match-end 3) (match-end 2) (match-end 1)))
12423 (skip-chars-forward " \t")
12424 (unless (memq (char-before) '(?\s ?\t)) (insert " "))
12425 (if (org-in-commented-heading-p t)
12426 (delete-region (point)
12427 (progn (search-forward " " (line-end-position) 'move)
12428 (skip-chars-forward " \t")
12429 (point)))
12430 (insert org-comment-string)
12431 (unless (eolp) (insert " ")))))
12433 (defvar org-last-todo-state-is-todo nil
12434 "This is non-nil when the last TODO state change led to a TODO state.
12435 If the last change removed the TODO tag or switched to DONE, then
12436 this is nil.")
12438 (defvar org-setting-tags nil) ; dynamically skipped
12440 (defvar org-todo-setup-filter-hook nil
12441 "Hook for functions that pre-filter todo specs.
12442 Each function takes a todo spec and returns either nil or the spec
12443 transformed into canonical form." )
12445 (defvar org-todo-get-default-hook nil
12446 "Hook for functions that get a default item for todo.
12447 Each function takes arguments (NEW-MARK OLD-MARK) and returns either
12448 nil or a string to be used for the todo mark." )
12450 (defvar org-agenda-headline-snapshot-before-repeat)
12452 (defun org-current-effective-time ()
12453 "Return current time adjusted for `org-extend-today-until' variable."
12454 (let* ((ct (org-current-time))
12455 (dct (decode-time ct))
12456 (ct1
12457 (cond
12458 (org-use-last-clock-out-time-as-effective-time
12459 (or (org-clock-get-last-clock-out-time) ct))
12460 ((and org-use-effective-time (< (nth 2 dct) org-extend-today-until))
12461 (encode-time 0 59 23 (1- (nth 3 dct)) (nth 4 dct) (nth 5 dct)))
12462 (t ct))))
12463 ct1))
12465 (defun org-todo-yesterday (&optional arg)
12466 "Like `org-todo' but the time of change will be 23:59 of yesterday."
12467 (interactive "P")
12468 (if (eq major-mode 'org-agenda-mode)
12469 (apply 'org-agenda-todo-yesterday arg)
12470 (let* ((hour (third (decode-time
12471 (org-current-time))))
12472 (org-extend-today-until (1+ hour)))
12473 (org-todo arg))))
12475 (defvar org-block-entry-blocking ""
12476 "First entry preventing the TODO state change.")
12478 (defun org-cancel-repeater ()
12479 "Cancel a repeater by setting its numeric value to zero."
12480 (interactive)
12481 (save-excursion
12482 (org-back-to-heading t)
12483 (let ((bound1 (point))
12484 (bound0 (save-excursion (outline-next-heading) (point))))
12485 (when (re-search-forward
12486 (concat "\\(" org-scheduled-time-regexp "\\)\\|\\("
12487 org-deadline-time-regexp "\\)\\|\\("
12488 org-ts-regexp "\\)")
12489 bound0 t)
12490 (if (re-search-backward "[ \t]+\\(?:[.+]\\)?\\+\\([0-9]+\\)[hdwmy]" bound1 t)
12491 (replace-match "0" t nil nil 1))))))
12493 (defun org-todo (&optional arg)
12494 "Change the TODO state of an item.
12495 The state of an item is given by a keyword at the start of the heading,
12496 like
12497 *** TODO Write paper
12498 *** DONE Call mom
12500 The different keywords are specified in the variable `org-todo-keywords'.
12501 By default the available states are \"TODO\" and \"DONE\".
12502 So for this example: when the item starts with TODO, it is changed to DONE.
12503 When it starts with DONE, the DONE is removed. And when neither TODO nor
12504 DONE are present, add TODO at the beginning of the heading.
12506 With \\[universal-argument] prefix arg, use completion to determine the new \
12507 state.
12508 With numeric prefix arg, switch to that state.
12509 With a double \\[universal-argument] prefix, switch to the next set of TODO \
12510 keywords (nextset).
12511 With a triple \\[universal-argument] prefix, circumvent any state blocking.
12512 With a numeric prefix arg of 0, inhibit note taking for the change.
12513 With a numeric prefix arg of -1, cancel repeater to allow marking as DONE.
12515 When called through ELisp, arg is also interpreted in the following way:
12516 'none -> empty state
12517 \"\"(empty string) -> switch to empty state
12518 'done -> switch to DONE
12519 'nextset -> switch to the next set of keywords
12520 'previousset -> switch to the previous set of keywords
12521 \"WAITING\" -> switch to the specified keyword, but only if it
12522 really is a member of `org-todo-keywords'."
12523 (interactive "P")
12524 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
12525 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
12526 'region-start-level 'region))
12527 org-loop-over-headlines-in-active-region)
12528 (org-map-entries
12529 `(org-todo ,arg)
12530 org-loop-over-headlines-in-active-region
12531 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
12532 (if (equal arg '(16)) (setq arg 'nextset))
12533 (when (equal arg -1) (org-cancel-repeater) (setq arg nil))
12534 (let ((org-blocker-hook org-blocker-hook)
12535 commentp
12536 case-fold-search)
12537 (when (equal arg '(64))
12538 (setq arg nil org-blocker-hook nil))
12539 (when (and org-blocker-hook
12540 (or org-inhibit-blocking
12541 (org-entry-get nil "NOBLOCKING")))
12542 (setq org-blocker-hook nil))
12543 (save-excursion
12544 (catch 'exit
12545 (org-back-to-heading t)
12546 (when (org-in-commented-heading-p t)
12547 (org-toggle-comment)
12548 (setq commentp t))
12549 (if (looking-at org-outline-regexp) (goto-char (1- (match-end 0))))
12550 (or (looking-at (concat " +" org-todo-regexp "\\( +\\|[ \t]*$\\)"))
12551 (looking-at "\\(?: *\\|[ \t]*$\\)"))
12552 (let* ((match-data (match-data))
12553 (startpos (point-at-bol))
12554 (logging (save-match-data (org-entry-get nil "LOGGING" t t)))
12555 (org-log-done org-log-done)
12556 (org-log-repeat org-log-repeat)
12557 (org-todo-log-states org-todo-log-states)
12558 (org-inhibit-logging
12559 (if (equal arg 0)
12560 (progn (setq arg nil) 'note) org-inhibit-logging))
12561 (this (match-string 1))
12562 (hl-pos (match-beginning 0))
12563 (head (org-get-todo-sequence-head this))
12564 (ass (assoc head org-todo-kwd-alist))
12565 (interpret (nth 1 ass))
12566 (done-word (nth 3 ass))
12567 (final-done-word (nth 4 ass))
12568 (org-last-state (or this ""))
12569 (completion-ignore-case t)
12570 (member (member this org-todo-keywords-1))
12571 (tail (cdr member))
12572 (org-state (cond
12573 ((and org-todo-key-trigger
12574 (or (and (equal arg '(4))
12575 (eq org-use-fast-todo-selection 'prefix))
12576 (and (not arg) org-use-fast-todo-selection
12577 (not (eq org-use-fast-todo-selection
12578 'prefix)))))
12579 ;; Use fast selection
12580 (org-fast-todo-selection))
12581 ((and (equal arg '(4))
12582 (or (not org-use-fast-todo-selection)
12583 (not org-todo-key-trigger)))
12584 ;; Read a state with completion
12585 (org-icompleting-read
12586 "State: " (mapcar 'list org-todo-keywords-1)
12587 nil t))
12588 ((eq arg 'right)
12589 (if this
12590 (if tail (car tail) nil)
12591 (car org-todo-keywords-1)))
12592 ((eq arg 'left)
12593 (if (equal member org-todo-keywords-1)
12595 (if this
12596 (nth (- (length org-todo-keywords-1)
12597 (length tail) 2)
12598 org-todo-keywords-1)
12599 (org-last org-todo-keywords-1))))
12600 ((and (eq org-use-fast-todo-selection t) (equal arg '(4))
12601 (setq arg nil))) ; hack to fall back to cycling
12602 (arg
12603 ;; user or caller requests a specific state
12604 (cond
12605 ((equal arg "") nil)
12606 ((eq arg 'none) nil)
12607 ((eq arg 'done) (or done-word (car org-done-keywords)))
12608 ((eq arg 'nextset)
12609 (or (car (cdr (member head org-todo-heads)))
12610 (car org-todo-heads)))
12611 ((eq arg 'previousset)
12612 (let ((org-todo-heads (reverse org-todo-heads)))
12613 (or (car (cdr (member head org-todo-heads)))
12614 (car org-todo-heads))))
12615 ((car (member arg org-todo-keywords-1)))
12616 ((stringp arg)
12617 (user-error "State `%s' not valid in this file" arg))
12618 ((nth (1- (prefix-numeric-value arg))
12619 org-todo-keywords-1))))
12620 ((null member) (or head (car org-todo-keywords-1)))
12621 ((equal this final-done-word) nil) ;; -> make empty
12622 ((null tail) nil) ;; -> first entry
12623 ((memq interpret '(type priority))
12624 (if (eq this-command last-command)
12625 (car tail)
12626 (if (> (length tail) 0)
12627 (or done-word (car org-done-keywords))
12628 nil)))
12630 (car tail))))
12631 (org-state (or
12632 (run-hook-with-args-until-success
12633 'org-todo-get-default-hook org-state org-last-state)
12634 org-state))
12635 (next (if org-state (concat " " org-state " ") " "))
12636 (change-plist (list :type 'todo-state-change :from this :to org-state
12637 :position startpos))
12638 dolog now-done-p)
12639 (when org-blocker-hook
12640 (setq org-last-todo-state-is-todo
12641 (not (member this org-done-keywords)))
12642 (unless (save-excursion
12643 (save-match-data
12644 (org-with-wide-buffer
12645 (run-hook-with-args-until-failure
12646 'org-blocker-hook change-plist))))
12647 (if (org-called-interactively-p 'interactive)
12648 (user-error "TODO state change from %s to %s blocked (by \"%s\")"
12649 this org-state org-block-entry-blocking)
12650 ;; fail silently
12651 (message "TODO state change from %s to %s blocked (by \"%s\")"
12652 this org-state org-block-entry-blocking)
12653 (throw 'exit nil))))
12654 (store-match-data match-data)
12655 (replace-match next t t)
12656 (cond ((equal this org-state)
12657 (message "TODO state was already %s" (org-trim next)))
12658 ((pos-visible-in-window-p hl-pos)
12659 (message "TODO state changed to %s" (org-trim next))))
12660 (unless head
12661 (setq head (org-get-todo-sequence-head org-state)
12662 ass (assoc head org-todo-kwd-alist)
12663 interpret (nth 1 ass)
12664 done-word (nth 3 ass)
12665 final-done-word (nth 4 ass)))
12666 (when (memq arg '(nextset previousset))
12667 (message "Keyword-Set %d/%d: %s"
12668 (- (length org-todo-sets) -1
12669 (length (memq (assoc org-state org-todo-sets) org-todo-sets)))
12670 (length org-todo-sets)
12671 (mapconcat 'identity (assoc org-state org-todo-sets) " ")))
12672 (setq org-last-todo-state-is-todo
12673 (not (member org-state org-done-keywords)))
12674 (setq now-done-p (and (member org-state org-done-keywords)
12675 (not (member this org-done-keywords))))
12676 (and logging (org-local-logging logging))
12677 (when (and (or org-todo-log-states org-log-done)
12678 (not (eq org-inhibit-logging t))
12679 (not (memq arg '(nextset previousset))))
12680 ;; we need to look at recording a time and note
12681 (setq dolog (or (nth 1 (assoc org-state org-todo-log-states))
12682 (nth 2 (assoc this org-todo-log-states))))
12683 (if (and (eq dolog 'note) (eq org-inhibit-logging 'note))
12684 (setq dolog 'time))
12685 (when (or (and (not org-state) (not org-closed-keep-when-no-todo))
12686 (and org-state
12687 (member org-state org-not-done-keywords)
12688 (not (member this org-not-done-keywords))))
12689 ;; This is now a todo state and was not one before
12690 ;; If there was a CLOSED time stamp, get rid of it.
12691 (org-add-planning-info nil nil 'closed))
12692 (when (and now-done-p org-log-done)
12693 ;; It is now done, and it was not done before
12694 (org-add-planning-info 'closed (org-current-effective-time))
12695 (if (and (not dolog) (eq 'note org-log-done))
12696 (org-add-log-setup 'done org-state this 'findpos 'note)))
12697 (when (and org-state dolog)
12698 ;; This is a non-nil state, and we need to log it
12699 (org-add-log-setup 'state org-state this 'findpos dolog)))
12700 ;; Fixup tag positioning
12701 (org-todo-trigger-tag-changes org-state)
12702 (and org-auto-align-tags (not org-setting-tags) (org-set-tags nil t))
12703 (when org-provide-todo-statistics
12704 (org-update-parent-todo-statistics))
12705 (run-hooks 'org-after-todo-state-change-hook)
12706 (if (and arg (not (member org-state org-done-keywords)))
12707 (setq head (org-get-todo-sequence-head org-state)))
12708 (put-text-property (point-at-bol) (point-at-eol) 'org-todo-head head)
12709 ;; Do we need to trigger a repeat?
12710 (when now-done-p
12711 (when (boundp 'org-agenda-headline-snapshot-before-repeat)
12712 ;; This is for the agenda, take a snapshot of the headline.
12713 (save-match-data
12714 (setq org-agenda-headline-snapshot-before-repeat
12715 (org-get-heading))))
12716 (org-auto-repeat-maybe org-state))
12717 ;; Fixup cursor location if close to the keyword
12718 (if (and (outline-on-heading-p)
12719 (not (bolp))
12720 (save-excursion (beginning-of-line 1)
12721 (looking-at org-todo-line-regexp))
12722 (< (point) (+ 2 (or (match-end 2) (match-end 1)))))
12723 (progn
12724 (goto-char (or (match-end 2) (match-end 1)))
12725 (and (looking-at " ") (just-one-space))))
12726 (when org-trigger-hook
12727 (save-excursion
12728 (run-hook-with-args 'org-trigger-hook change-plist)))
12729 (when commentp (org-toggle-comment))))))))
12731 (defun org-block-todo-from-children-or-siblings-or-parent (change-plist)
12732 "Block turning an entry into a TODO, using the hierarchy.
12733 This checks whether the current task should be blocked from state
12734 changes. Such blocking occurs when:
12736 1. The task has children which are not all in a completed state.
12738 2. A task has a parent with the property :ORDERED:, and there
12739 are siblings prior to the current task with incomplete
12740 status.
12742 3. The parent of the task is blocked because it has siblings that should
12743 be done first, or is child of a block grandparent TODO entry."
12745 (if (not org-enforce-todo-dependencies)
12746 t ; if locally turned off don't block
12747 (catch 'dont-block
12748 ;; If this is not a todo state change, or if this entry is already DONE,
12749 ;; do not block
12750 (when (or (not (eq (plist-get change-plist :type) 'todo-state-change))
12751 (member (plist-get change-plist :from)
12752 (cons 'done org-done-keywords))
12753 (member (plist-get change-plist :to)
12754 (cons 'todo org-not-done-keywords))
12755 (not (plist-get change-plist :to)))
12756 (throw 'dont-block t))
12757 ;; If this task has children, and any are undone, it's blocked
12758 (save-excursion
12759 (org-back-to-heading t)
12760 (let ((this-level (funcall outline-level)))
12761 (outline-next-heading)
12762 (let ((child-level (funcall outline-level)))
12763 (while (and (not (eobp))
12764 (> child-level this-level))
12765 ;; this todo has children, check whether they are all
12766 ;; completed
12767 (if (and (not (org-entry-is-done-p))
12768 (org-entry-is-todo-p))
12769 (progn (setq org-block-entry-blocking (org-get-heading))
12770 (throw 'dont-block nil)))
12771 (outline-next-heading)
12772 (setq child-level (funcall outline-level))))))
12773 ;; Otherwise, if the task's parent has the :ORDERED: property, and
12774 ;; any previous siblings are undone, it's blocked
12775 (save-excursion
12776 (org-back-to-heading t)
12777 (let* ((pos (point))
12778 (parent-pos (and (org-up-heading-safe) (point))))
12779 (if (not parent-pos) (throw 'dont-block t)) ; no parent
12780 (when (and (org-not-nil (org-entry-get (point) "ORDERED"))
12781 (forward-line 1)
12782 (re-search-forward org-not-done-heading-regexp pos t))
12783 (setq org-block-entry-blocking (match-string 0))
12784 (throw 'dont-block nil)) ; block, there is an older sibling not done.
12785 ;; Search further up the hierarchy, to see if an ancestor is blocked
12786 (while t
12787 (goto-char parent-pos)
12788 (if (not (looking-at org-not-done-heading-regexp))
12789 (throw 'dont-block t)) ; do not block, parent is not a TODO
12790 (setq pos (point))
12791 (setq parent-pos (and (org-up-heading-safe) (point)))
12792 (if (not parent-pos) (throw 'dont-block t)) ; no parent
12793 (when (and (org-not-nil (org-entry-get (point) "ORDERED"))
12794 (forward-line 1)
12795 (re-search-forward org-not-done-heading-regexp pos t)
12796 (setq org-block-entry-blocking (org-get-heading)))
12797 (throw 'dont-block nil)))))))) ; block, older sibling not done.
12799 (defcustom org-track-ordered-property-with-tag nil
12800 "Should the ORDERED property also be shown as a tag?
12801 The ORDERED property decides if an entry should require subtasks to be
12802 completed in sequence. Since a property is not very visible, setting
12803 this option means that toggling the ORDERED property with the command
12804 `org-toggle-ordered-property' will also toggle a tag ORDERED. That tag is
12805 not relevant for the behavior, but it makes things more visible.
12807 Note that toggling the tag with tags commands will not change the property
12808 and therefore not influence behavior!
12810 This can be t, meaning the tag ORDERED should be used, It can also be a
12811 string to select a different tag for this task."
12812 :group 'org-todo
12813 :type '(choice
12814 (const :tag "No tracking" nil)
12815 (const :tag "Track with ORDERED tag" t)
12816 (string :tag "Use other tag")))
12818 (defun org-toggle-ordered-property ()
12819 "Toggle the ORDERED property of the current entry.
12820 For better visibility, you can track the value of this property with a tag.
12821 See variable `org-track-ordered-property-with-tag'."
12822 (interactive)
12823 (let* ((t1 org-track-ordered-property-with-tag)
12824 (tag (and t1 (if (stringp t1) t1 "ORDERED"))))
12825 (save-excursion
12826 (org-back-to-heading)
12827 (if (org-entry-get nil "ORDERED")
12828 (progn
12829 (org-delete-property "ORDERED")
12830 (and tag (org-toggle-tag tag 'off))
12831 (message "Subtasks can be completed in arbitrary order"))
12832 (org-entry-put nil "ORDERED" "t")
12833 (and tag (org-toggle-tag tag 'on))
12834 (message "Subtasks must be completed in sequence")))))
12836 (defvar org-blocked-by-checkboxes) ; dynamically scoped
12837 (defun org-block-todo-from-checkboxes (change-plist)
12838 "Block turning an entry into a TODO, using checkboxes.
12839 This checks whether the current task should be blocked from state
12840 changes because there are unchecked boxes in this entry."
12841 (if (not org-enforce-todo-checkbox-dependencies)
12842 t ; if locally turned off don't block
12843 (catch 'dont-block
12844 ;; If this is not a todo state change, or if this entry is already DONE,
12845 ;; do not block
12846 (when (or (not (eq (plist-get change-plist :type) 'todo-state-change))
12847 (member (plist-get change-plist :from)
12848 (cons 'done org-done-keywords))
12849 (member (plist-get change-plist :to)
12850 (cons 'todo org-not-done-keywords))
12851 (not (plist-get change-plist :to)))
12852 (throw 'dont-block t))
12853 ;; If this task has checkboxes that are not checked, it's blocked
12854 (save-excursion
12855 (org-back-to-heading t)
12856 (let ((beg (point)) end)
12857 (outline-next-heading)
12858 (setq end (point))
12859 (goto-char beg)
12860 (if (org-list-search-forward
12861 (concat (org-item-beginning-re)
12862 "\\(?:\\[@\\(?:start:\\)?\\([0-9]+\\|[A-Za-z]\\)\\][ \t]*\\)?"
12863 "\\[[- ]\\]")
12864 end t)
12865 (progn
12866 (if (boundp 'org-blocked-by-checkboxes)
12867 (setq org-blocked-by-checkboxes t))
12868 (throw 'dont-block nil)))))
12869 t))) ; do not block
12871 (defun org-entry-blocked-p ()
12872 "Is the current entry blocked?"
12873 (org-with-silent-modifications
12874 (if (org-entry-get nil "NOBLOCKING")
12875 nil ;; Never block this entry
12876 (not (run-hook-with-args-until-failure
12877 'org-blocker-hook
12878 (list :type 'todo-state-change
12879 :position (point)
12880 :from 'todo
12881 :to 'done))))))
12883 (defun org-update-statistics-cookies (all)
12884 "Update the statistics cookie, either from TODO or from checkboxes.
12885 This should be called with the cursor in a line with a statistics cookie."
12886 (interactive "P")
12887 (if all
12888 (progn
12889 (org-update-checkbox-count 'all)
12890 (org-map-entries 'org-update-parent-todo-statistics))
12891 (if (not (org-at-heading-p))
12892 (org-update-checkbox-count)
12893 (let ((pos (point-marker))
12894 end l1 l2)
12895 (ignore-errors (org-back-to-heading t))
12896 (if (not (org-at-heading-p))
12897 (org-update-checkbox-count)
12898 (setq l1 (org-outline-level))
12899 (setq end (save-excursion
12900 (outline-next-heading)
12901 (if (org-at-heading-p) (setq l2 (org-outline-level)))
12902 (point)))
12903 (if (and (save-excursion
12904 (re-search-forward
12905 "^[ \t]*\\([-+*]\\|[0-9]+[.)]\\) \\[[- X]\\]" end t))
12906 (not (save-excursion (re-search-forward
12907 ":COOKIE_DATA:.*\\<todo\\>" end t))))
12908 (org-update-checkbox-count)
12909 (if (and l2 (> l2 l1))
12910 (progn
12911 (goto-char end)
12912 (org-update-parent-todo-statistics))
12913 (goto-char pos)
12914 (beginning-of-line 1)
12915 (while (re-search-forward
12916 "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)"
12917 (point-at-eol) t)
12918 (replace-match (if (match-end 2) "[100%]" "[0/0]") t t)))))
12919 (goto-char pos)
12920 (move-marker pos nil)))))
12922 (defvar org-entry-property-inherited-from) ;; defined below
12923 (defun org-update-parent-todo-statistics ()
12924 "Update any statistics cookie in the parent of the current headline.
12925 When `org-hierarchical-todo-statistics' is nil, statistics will cover
12926 the entire subtree and this will travel up the hierarchy and update
12927 statistics everywhere."
12928 (let* ((prop (save-excursion (org-up-heading-safe)
12929 (org-entry-get nil "COOKIE_DATA" 'inherit)))
12930 (recursive (or (not org-hierarchical-todo-statistics)
12931 (and prop (string-match "\\<recursive\\>" prop))))
12932 (lim (or (and prop (marker-position org-entry-property-inherited-from))
12934 (first t)
12935 (box-re "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)")
12936 level ltoggle l1 new ndel
12937 (cnt-all 0) (cnt-done 0) is-percent kwd
12938 checkbox-beg ov ovs ove cookie-present)
12939 (catch 'exit
12940 (save-excursion
12941 (beginning-of-line 1)
12942 (setq ltoggle (funcall outline-level))
12943 ;; Three situations are to consider:
12945 ;; 1. if `org-hierarchical-todo-statistics' is nil, repeat up
12946 ;; to the top-level ancestor on the headline;
12948 ;; 2. If parent has "recursive" property, repeat up to the
12949 ;; headline setting that property, taking inheritance into
12950 ;; account;
12952 ;; 3. Else, move up to direct parent and proceed only once.
12953 (while (and (setq level (org-up-heading-safe))
12954 (or recursive first)
12955 (>= (point) lim))
12956 (setq first nil cookie-present nil)
12957 (unless (and level
12958 (not (string-match
12959 "\\<checkbox\\>"
12960 (downcase (or (org-entry-get nil "COOKIE_DATA")
12961 "")))))
12962 (throw 'exit nil))
12963 (while (re-search-forward box-re (point-at-eol) t)
12964 (setq cnt-all 0 cnt-done 0 cookie-present t)
12965 (setq is-percent (match-end 2) checkbox-beg (match-beginning 0))
12966 (save-match-data
12967 (unless (outline-next-heading) (throw 'exit nil))
12968 (while (and (looking-at org-complex-heading-regexp)
12969 (> (setq l1 (length (match-string 1))) level))
12970 (setq kwd (and (or recursive (= l1 ltoggle))
12971 (match-string 2)))
12972 (if (or (eq org-provide-todo-statistics 'all-headlines)
12973 (and (eq org-provide-todo-statistics t)
12974 (or (member kwd org-done-keywords)))
12975 (and (listp org-provide-todo-statistics)
12976 (stringp (car org-provide-todo-statistics))
12977 (or (member kwd org-provide-todo-statistics)
12978 (member kwd org-done-keywords)))
12979 (and (listp org-provide-todo-statistics)
12980 (listp (car org-provide-todo-statistics))
12981 (or (member kwd (car org-provide-todo-statistics))
12982 (and (member kwd org-done-keywords)
12983 (member kwd (cadr org-provide-todo-statistics))))))
12984 (setq cnt-all (1+ cnt-all))
12985 (if (eq org-provide-todo-statistics t)
12986 (and kwd (setq cnt-all (1+ cnt-all)))))
12987 (when (or (and (member org-provide-todo-statistics '(t all-headlines))
12988 (member kwd org-done-keywords))
12989 (and (listp org-provide-todo-statistics)
12990 (listp (car org-provide-todo-statistics))
12991 (member kwd org-done-keywords)
12992 (member kwd (cadr org-provide-todo-statistics)))
12993 (and (listp org-provide-todo-statistics)
12994 (stringp (car org-provide-todo-statistics))
12995 (member kwd org-done-keywords)))
12996 (setq cnt-done (1+ cnt-done)))
12997 (outline-next-heading)))
12998 (setq new
12999 (if is-percent
13000 (format "[%d%%]" (/ (* 100 cnt-done) (max 1 cnt-all)))
13001 (format "[%d/%d]" cnt-done cnt-all))
13002 ndel (- (match-end 0) checkbox-beg))
13003 ;; handle overlays when updating cookie from column view
13004 (when (setq ov (car (overlays-at checkbox-beg)))
13005 (setq ovs (overlay-start ov) ove (overlay-end ov))
13006 (delete-overlay ov))
13007 (goto-char checkbox-beg)
13008 (insert new)
13009 (delete-region (point) (+ (point) ndel))
13010 (when org-auto-align-tags (org-fix-tags-on-the-fly))
13011 (when ov (move-overlay ov ovs ove)))
13012 (when cookie-present
13013 (run-hook-with-args 'org-after-todo-statistics-hook
13014 cnt-done (- cnt-all cnt-done))))))
13015 (run-hooks 'org-todo-statistics-hook)))
13017 (defvar org-after-todo-statistics-hook nil
13018 "Hook that is called after a TODO statistics cookie has been updated.
13019 Each function is called with two arguments: the number of not-done entries
13020 and the number of done entries.
13022 For example, the following function, when added to this hook, will switch
13023 an entry to DONE when all children are done, and back to TODO when new
13024 entries are set to a TODO status. Note that this hook is only called
13025 when there is a statistics cookie in the headline!
13027 (defun org-summary-todo (n-done n-not-done)
13028 \"Switch entry to DONE when all subentries are done, to TODO otherwise.\"
13029 (let (org-log-done org-log-states) ; turn off logging
13030 (org-todo (if (= n-not-done 0) \"DONE\" \"TODO\"))))
13033 (defvar org-todo-statistics-hook nil
13034 "Hook that is run whenever Org thinks TODO statistics should be updated.
13035 This hook runs even if there is no statistics cookie present, in which case
13036 `org-after-todo-statistics-hook' would not run.")
13038 (defun org-todo-trigger-tag-changes (state)
13039 "Apply the changes defined in `org-todo-state-tags-triggers'."
13040 (let ((l org-todo-state-tags-triggers)
13041 changes)
13042 (when (or (not state) (equal state ""))
13043 (setq changes (append changes (cdr (assoc "" l)))))
13044 (when (and (stringp state) (> (length state) 0))
13045 (setq changes (append changes (cdr (assoc state l)))))
13046 (when (member state org-not-done-keywords)
13047 (setq changes (append changes (cdr (assoc 'todo l)))))
13048 (when (member state org-done-keywords)
13049 (setq changes (append changes (cdr (assoc 'done l)))))
13050 (dolist (c changes)
13051 (org-toggle-tag (car c) (if (cdr c) 'on 'off)))))
13053 (defun org-local-logging (value)
13054 "Get logging settings from a property VALUE."
13055 (let* (words w a)
13056 ;; directly set the variables, they are already local.
13057 (setq org-log-done nil
13058 org-log-repeat nil
13059 org-todo-log-states nil)
13060 (setq words (org-split-string value))
13061 (while (setq w (pop words))
13062 (cond
13063 ((setq a (assoc w org-startup-options))
13064 (and (member (nth 1 a) '(org-log-done org-log-repeat))
13065 (set (nth 1 a) (nth 2 a))))
13066 ((setq a (org-extract-log-state-settings w))
13067 (and (member (car a) org-todo-keywords-1)
13068 (push a org-todo-log-states)))))))
13070 (defun org-get-todo-sequence-head (kwd)
13071 "Return the head of the TODO sequence to which KWD belongs.
13072 If KWD is not set, check if there is a text property remembering the
13073 right sequence."
13074 (let (p)
13075 (cond
13076 ((not kwd)
13077 (or (get-text-property (point-at-bol) 'org-todo-head)
13078 (progn
13079 (setq p (next-single-property-change (point-at-bol) 'org-todo-head
13080 nil (point-at-eol)))
13081 (get-text-property p 'org-todo-head))))
13082 ((not (member kwd org-todo-keywords-1))
13083 (car org-todo-keywords-1))
13084 (t (nth 2 (assoc kwd org-todo-kwd-alist))))))
13086 (defun org-fast-todo-selection ()
13087 "Fast TODO keyword selection with single keys.
13088 Returns the new TODO keyword, or nil if no state change should occur."
13089 (let* ((fulltable org-todo-key-alist)
13090 (done-keywords org-done-keywords) ;; needed for the faces.
13091 (maxlen (apply 'max (mapcar
13092 (lambda (x)
13093 (if (stringp (car x)) (string-width (car x)) 0))
13094 fulltable)))
13095 (expert nil)
13096 (fwidth (+ maxlen 3 1 3))
13097 (ncol (/ (- (window-width) 4) fwidth))
13098 tg cnt e c tbl
13099 groups ingroup)
13100 (save-excursion
13101 (save-window-excursion
13102 (if expert
13103 (set-buffer (get-buffer-create " *Org todo*"))
13104 (org-switch-to-buffer-other-window (get-buffer-create " *Org todo*")))
13105 (erase-buffer)
13106 (org-set-local 'org-done-keywords done-keywords)
13107 (setq tbl fulltable cnt 0)
13108 (while (setq e (pop tbl))
13109 (cond
13110 ((equal e '(:startgroup))
13111 (push '() groups) (setq ingroup t)
13112 (when (not (= cnt 0))
13113 (setq cnt 0)
13114 (insert "\n"))
13115 (insert "{ "))
13116 ((equal e '(:endgroup))
13117 (setq ingroup nil cnt 0)
13118 (insert "}\n"))
13119 ((equal e '(:newline))
13120 (when (not (= cnt 0))
13121 (setq cnt 0)
13122 (insert "\n")
13123 (setq e (car tbl))
13124 (while (equal (car tbl) '(:newline))
13125 (insert "\n")
13126 (setq tbl (cdr tbl)))))
13128 (setq tg (car e) c (cdr e))
13129 (if ingroup (push tg (car groups)))
13130 (setq tg (org-add-props tg nil 'face
13131 (org-get-todo-face tg)))
13132 (if (and (= cnt 0) (not ingroup)) (insert " "))
13133 (insert "[" c "] " tg (make-string
13134 (- fwidth 4 (length tg)) ?\ ))
13135 (when (= (setq cnt (1+ cnt)) ncol)
13136 (insert "\n")
13137 (if ingroup (insert " "))
13138 (setq cnt 0)))))
13139 (insert "\n")
13140 (goto-char (point-min))
13141 (if (not expert) (org-fit-window-to-buffer))
13142 (message "[a-z..]:Set [SPC]:clear")
13143 (setq c (let ((inhibit-quit t)) (read-char-exclusive)))
13144 (cond
13145 ((or (= c ?\C-g)
13146 (and (= c ?q) (not (rassoc c fulltable))))
13147 (setq quit-flag t))
13148 ((= c ?\ ) nil)
13149 ((setq e (rassoc c fulltable) tg (car e))
13151 (t (setq quit-flag t)))))))
13153 (defun org-entry-is-todo-p ()
13154 (member (org-get-todo-state) org-not-done-keywords))
13156 (defun org-entry-is-done-p ()
13157 (member (org-get-todo-state) org-done-keywords))
13159 (defun org-get-todo-state ()
13160 "Return the TODO keyword of the current subtree."
13161 (save-excursion
13162 (org-back-to-heading t)
13163 (and (looking-at org-todo-line-regexp)
13164 (match-end 2)
13165 (match-string 2))))
13167 (defun org-at-date-range-p (&optional inactive-ok)
13168 "Is the cursor inside a date range?"
13169 (interactive)
13170 (save-excursion
13171 (catch 'exit
13172 (let ((pos (point)))
13173 (skip-chars-backward "^[<\r\n")
13174 (skip-chars-backward "<[")
13175 (and (looking-at (if inactive-ok org-tr-regexp-both org-tr-regexp))
13176 (>= (match-end 0) pos)
13177 (throw 'exit t))
13178 (skip-chars-backward "^<[\r\n")
13179 (skip-chars-backward "<[")
13180 (and (looking-at (if inactive-ok org-tr-regexp-both org-tr-regexp))
13181 (>= (match-end 0) pos)
13182 (throw 'exit t)))
13183 nil)))
13185 (defun org-get-repeat (&optional tagline)
13186 "Check if there is a deadline/schedule with repeater in this entry."
13187 (save-match-data
13188 (save-excursion
13189 (org-back-to-heading t)
13190 (and (re-search-forward (if tagline
13191 (concat tagline "\\s-*" org-repeat-re)
13192 org-repeat-re)
13193 (org-entry-end-position) t)
13194 (match-string-no-properties 1)))))
13196 (defvar org-last-changed-timestamp)
13197 (defvar org-last-inserted-timestamp)
13198 (defvar org-log-post-message)
13199 (defvar org-log-note-purpose)
13200 (defvar org-log-note-how nil)
13201 (defvar org-log-note-extra)
13202 (defun org-auto-repeat-maybe (done-word)
13203 "Check if the current headline contains a repeated deadline/schedule.
13204 If yes, set TODO state back to what it was and change the base date
13205 of repeating deadline/scheduled time stamps to new date.
13206 This function is run automatically after each state change to a DONE state."
13207 ;; last-state is dynamically scoped into this function
13208 (let* ((repeat (org-get-repeat))
13209 (aa (assoc org-last-state org-todo-kwd-alist))
13210 (interpret (nth 1 aa))
13211 (head (nth 2 aa))
13212 (whata '(("h" . hour) ("d" . day) ("m" . month) ("y" . year)))
13213 (msg "Entry repeats: ")
13214 (org-log-done nil)
13215 (org-todo-log-states nil)
13216 re type n what ts time to-state)
13217 (when (and repeat (not (zerop (string-to-number (substring repeat 1)))))
13218 (if (eq org-log-repeat t) (setq org-log-repeat 'state))
13219 (setq to-state (or (org-entry-get nil "REPEAT_TO_STATE")
13220 org-todo-repeat-to-state))
13221 (unless (and to-state (member to-state org-todo-keywords-1))
13222 (setq to-state (if (eq interpret 'type) org-last-state head)))
13223 (org-todo to-state)
13224 (when (or org-log-repeat (org-entry-get nil "CLOCK"))
13225 (org-entry-put nil "LAST_REPEAT" (format-time-string
13226 (org-time-stamp-format t t))))
13227 (when org-log-repeat
13228 (if (or (memq 'org-add-log-note (default-value 'post-command-hook))
13229 (memq 'org-add-log-note post-command-hook))
13230 ;; OK, we are already setup for some record
13231 (if (eq org-log-repeat 'note)
13232 ;; make sure we take a note, not only a time stamp
13233 (setq org-log-note-how 'note))
13234 ;; Set up for taking a record
13235 (org-add-log-setup 'state (or done-word (car org-done-keywords))
13236 org-last-state
13237 'findpos org-log-repeat)))
13238 (org-back-to-heading t)
13239 (org-add-planning-info nil nil 'closed)
13240 (setq re (concat "\\(" org-scheduled-time-regexp "\\)\\|\\("
13241 org-deadline-time-regexp "\\)\\|\\("
13242 org-ts-regexp "\\)"))
13243 (while (re-search-forward
13244 re (save-excursion (outline-next-heading) (point)) t)
13245 (setq type (if (match-end 1) org-scheduled-string
13246 (if (match-end 3) org-deadline-string "Plain:"))
13247 ts (match-string (if (match-end 2) 2 (if (match-end 4) 4 0))))
13248 (when (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([hdwmy]\\)" ts)
13249 (setq n (string-to-number (match-string 2 ts))
13250 what (match-string 3 ts))
13251 (if (equal what "w") (setq n (* n 7) what "d"))
13252 (if (and (equal what "h") (not (string-match "[0-9]\\{1,2\\}:[0-9]\\{2\\}" ts)))
13253 (user-error "Cannot repeat in Repeat in %d hour(s) because no hour has been set" n))
13254 ;; Preparation, see if we need to modify the start date for the change
13255 (when (match-end 1)
13256 (setq time (save-match-data (org-time-string-to-time ts)))
13257 (cond
13258 ((equal (match-string 1 ts) ".")
13259 ;; Shift starting date to today
13260 (org-timestamp-change
13261 (- (org-today) (time-to-days time))
13262 'day))
13263 ((equal (match-string 1 ts) "+")
13264 (let ((nshiftmax 10) (nshift 0))
13265 (while (or (= nshift 0)
13266 (<= (time-to-days time)
13267 (time-to-days (current-time))))
13268 (when (= (incf nshift) nshiftmax)
13269 (or (y-or-n-p (message "%d repeater intervals were not enough to shift date past today. Continue? " nshift))
13270 (user-error "Abort")))
13271 (org-timestamp-change n (cdr (assoc what whata)))
13272 (org-at-timestamp-p t)
13273 (setq ts (match-string 1))
13274 (setq time (save-match-data (org-time-string-to-time ts)))))
13275 (org-timestamp-change (- n) (cdr (assoc what whata)))
13276 ;; rematch, so that we have everything in place for the real shift
13277 (org-at-timestamp-p t)
13278 (setq ts (match-string 1))
13279 (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([hdwmy]\\)" ts))))
13280 (save-excursion (org-timestamp-change n (cdr (assoc what whata)) nil t))
13281 (setq msg (concat msg type " " org-last-changed-timestamp " "))))
13282 (setq org-log-post-message msg)
13283 (message "%s" msg))))
13285 (defun org-show-todo-tree (arg)
13286 "Make a compact tree which shows all headlines marked with TODO.
13287 The tree will show the lines where the regexp matches, and all higher
13288 headlines above the match.
13289 With a \\[universal-argument] prefix, prompt for a regexp to match.
13290 With a numeric prefix N, construct a sparse tree for the Nth element
13291 of `org-todo-keywords-1'."
13292 (interactive "P")
13293 (let ((case-fold-search nil)
13294 (kwd-re
13295 (cond ((null arg) org-not-done-regexp)
13296 ((equal arg '(4))
13297 (let ((kwd (org-icompleting-read "Keyword (or KWD1|KWD2|...): "
13298 (mapcar 'list org-todo-keywords-1))))
13299 (concat "\\("
13300 (mapconcat 'identity (org-split-string kwd "|") "\\|")
13301 "\\)\\>")))
13302 ((<= (prefix-numeric-value arg) (length org-todo-keywords-1))
13303 (regexp-quote (nth (1- (prefix-numeric-value arg))
13304 org-todo-keywords-1)))
13305 (t (user-error "Invalid prefix argument: %s" arg)))))
13306 (message "%d TODO entries found"
13307 (org-occur (concat "^" org-outline-regexp " *" kwd-re )))))
13309 (defun org-deadline (arg &optional time)
13310 "Insert the \"DEADLINE:\" string with a timestamp to make a deadline.
13311 With one universal prefix argument, remove any deadline from the item.
13312 With two universal prefix arguments, prompt for a warning delay.
13313 With argument TIME, set the deadline at the corresponding date. TIME
13314 can either be an Org date like \"2011-07-24\" or a delta like \"+2d\"."
13315 (interactive "P")
13316 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
13317 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
13318 'region-start-level 'region))
13319 org-loop-over-headlines-in-active-region)
13320 (org-map-entries
13321 `(org-deadline ',arg ,time)
13322 org-loop-over-headlines-in-active-region
13323 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
13324 (let* ((old-date (org-entry-get nil "DEADLINE"))
13325 (old-date-time (if old-date (org-time-string-to-time old-date)))
13326 (repeater (and old-date
13327 (string-match
13328 "\\([.+-]+[0-9]+[hdwmy]\\(?:[/ ][-+]?[0-9]+[hdwmy]\\)?\\) ?"
13329 old-date)
13330 (match-string 1 old-date))))
13331 (cond
13332 ((equal arg '(4))
13333 (when (and old-date org-log-redeadline)
13334 (org-add-log-setup 'deldeadline nil old-date 'findpos
13335 org-log-redeadline))
13336 (org-remove-timestamp-with-keyword org-deadline-string)
13337 (message "Item no longer has a deadline."))
13338 ((equal arg '(16))
13339 (save-excursion
13340 (org-back-to-heading t)
13341 (if (re-search-forward
13342 org-deadline-time-regexp
13343 (save-excursion (outline-next-heading) (point)) t)
13344 (let* ((rpl0 (match-string 1))
13345 (rpl (replace-regexp-in-string " -[0-9]+[hdwmy]" "" rpl0)))
13346 (replace-match
13347 (concat org-deadline-string
13348 " <" rpl
13349 (format " -%dd"
13350 (abs
13351 (- (time-to-days
13352 (save-match-data
13353 (org-read-date nil t nil "Warn starting from" old-date-time)))
13354 (time-to-days old-date-time))))
13355 ">") t t))
13356 (user-error "No deadline information to update"))))
13358 (org-add-planning-info 'deadline time 'closed)
13359 (when (and old-date org-log-redeadline
13360 (not (equal old-date
13361 (substring org-last-inserted-timestamp 1 -1))))
13362 (org-add-log-setup 'redeadline nil old-date 'findpos
13363 org-log-redeadline))
13364 (when repeater
13365 (save-excursion
13366 (org-back-to-heading t)
13367 (when (re-search-forward (concat org-deadline-string " "
13368 org-last-inserted-timestamp)
13369 (save-excursion
13370 (outline-next-heading) (point)) t)
13371 (goto-char (1- (match-end 0)))
13372 (insert " " repeater)
13373 (setq org-last-inserted-timestamp
13374 (concat (substring org-last-inserted-timestamp 0 -1)
13375 " " repeater
13376 (substring org-last-inserted-timestamp -1))))))
13377 (message "Deadline on %s" org-last-inserted-timestamp))))))
13379 (defun org-schedule (arg &optional time)
13380 "Insert the SCHEDULED: string with a timestamp to schedule a TODO item.
13381 With one universal prefix argument, remove any scheduling date from the item.
13382 With two universal prefix arguments, prompt for a delay cookie.
13383 With argument TIME, scheduled at the corresponding date. TIME can
13384 either be an Org date like \"2011-07-24\" or a delta like \"+2d\"."
13385 (interactive "P")
13386 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
13387 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
13388 'region-start-level 'region))
13389 org-loop-over-headlines-in-active-region)
13390 (org-map-entries
13391 `(org-schedule ',arg ,time)
13392 org-loop-over-headlines-in-active-region
13393 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
13394 (let* ((old-date (org-entry-get nil "SCHEDULED"))
13395 (old-date-time (if old-date (org-time-string-to-time old-date)))
13396 (repeater (and old-date
13397 (string-match
13398 "\\([.+-]+[0-9]+[hdwmy]\\(?:[/ ][-+]?[0-9]+[hdwmy]\\)?\\) ?"
13399 old-date)
13400 (match-string 1 old-date))))
13401 (cond
13402 ((equal arg '(4))
13403 (progn
13404 (when (and old-date org-log-reschedule)
13405 (org-add-log-setup 'delschedule nil old-date 'findpos
13406 org-log-reschedule))
13407 (org-remove-timestamp-with-keyword org-scheduled-string)
13408 (message "Item is no longer scheduled.")))
13409 ((equal arg '(16))
13410 (save-excursion
13411 (org-back-to-heading t)
13412 (if (re-search-forward
13413 org-scheduled-time-regexp
13414 (save-excursion (outline-next-heading) (point)) t)
13415 (let* ((rpl0 (match-string 1))
13416 (rpl (replace-regexp-in-string " -[0-9]+[hdwmy]" "" rpl0)))
13417 (replace-match
13418 (concat org-scheduled-string
13419 " <" rpl
13420 (format " -%dd"
13421 (abs
13422 (- (time-to-days
13423 (save-match-data
13424 (org-read-date nil t nil "Delay until" old-date-time)))
13425 (time-to-days old-date-time))))
13426 ">") t t))
13427 (user-error "No scheduled information to update"))))
13429 (org-add-planning-info 'scheduled time 'closed)
13430 (when (and old-date org-log-reschedule
13431 (not (equal old-date
13432 (substring org-last-inserted-timestamp 1 -1))))
13433 (org-add-log-setup 'reschedule nil old-date 'findpos
13434 org-log-reschedule))
13435 (when repeater
13436 (save-excursion
13437 (org-back-to-heading t)
13438 (when (re-search-forward (concat org-scheduled-string " "
13439 org-last-inserted-timestamp)
13440 (save-excursion
13441 (outline-next-heading) (point)) t)
13442 (goto-char (1- (match-end 0)))
13443 (insert " " repeater)
13444 (setq org-last-inserted-timestamp
13445 (concat (substring org-last-inserted-timestamp 0 -1)
13446 " " repeater
13447 (substring org-last-inserted-timestamp -1))))))
13448 (message "Scheduled to %s" org-last-inserted-timestamp))))))
13450 (defun org-get-scheduled-time (pom &optional inherit)
13451 "Get the scheduled time as a time tuple, of a format suitable
13452 for calling org-schedule with, or if there is no scheduling,
13453 returns nil."
13454 (let ((time (org-entry-get pom "SCHEDULED" inherit)))
13455 (when time
13456 (apply 'encode-time (org-parse-time-string time)))))
13458 (defun org-get-deadline-time (pom &optional inherit)
13459 "Get the deadline as a time tuple, of a format suitable for
13460 calling org-deadline with, or if there is no scheduling, returns
13461 nil."
13462 (let ((time (org-entry-get pom "DEADLINE" inherit)))
13463 (when time
13464 (apply 'encode-time (org-parse-time-string time)))))
13466 (defun org-remove-timestamp-with-keyword (keyword)
13467 "Remove all time stamps with KEYWORD in the current entry."
13468 (let ((re (concat "\\<" (regexp-quote keyword) " +<[^>\n]+>[ \t]*"))
13469 beg)
13470 (save-excursion
13471 (org-back-to-heading t)
13472 (setq beg (point))
13473 (outline-next-heading)
13474 (while (re-search-backward re beg t)
13475 (replace-match "")
13476 (if (and (string-match "\\S-" (buffer-substring (point-at-bol) (point)))
13477 (equal (char-before) ?\ ))
13478 (backward-delete-char 1)
13479 (if (string-match "^[ \t]*$" (buffer-substring
13480 (point-at-bol) (point-at-eol)))
13481 (delete-region (point-at-bol)
13482 (min (point-max) (1+ (point-at-eol))))))))))
13484 (defvar org-time-was-given) ; dynamically scoped parameter
13485 (defvar org-end-time-was-given) ; dynamically scoped parameter
13487 (defun org-add-planning-info (what &optional time &rest remove)
13488 "Insert new timestamp with keyword in the line directly after the headline.
13489 WHAT indicates what kind of time stamp to add. TIME indicates the time to use.
13490 If non is given, the user is prompted for a date.
13491 REMOVE indicates what kind of entries to remove. An old WHAT entry will also
13492 be removed."
13493 (interactive)
13494 (let (org-time-was-given org-end-time-was-given default-time default-input)
13495 (catch 'exit
13496 (when (and (memq what '(scheduled deadline))
13497 (or (not time)
13498 (and (stringp time)
13499 (string-match "^[-+]+[0-9]" time))))
13500 ;; Try to get a default date/time from existing timestamp
13501 (save-excursion
13502 (org-back-to-heading t)
13503 (let ((end (save-excursion (outline-next-heading) (point))) ts)
13504 (when (re-search-forward (if (eq what 'scheduled)
13505 org-scheduled-time-regexp
13506 org-deadline-time-regexp)
13507 end t)
13508 (setq ts (match-string 1)
13509 default-time (apply 'encode-time (org-parse-time-string ts))
13510 default-input (and ts (org-get-compact-tod ts)))))))
13511 (when what
13512 (setq time
13513 (if (stringp time)
13514 ;; This is a string (relative or absolute), set proper date
13515 (apply 'encode-time
13516 (org-read-date-analyze
13517 time default-time (decode-time default-time)))
13518 ;; If necessary, get the time from the user
13519 (or time (org-read-date nil 'to-time nil nil
13520 default-time default-input)))))
13522 (when (and org-insert-labeled-timestamps-at-point
13523 (memq what '(scheduled deadline)))
13524 (insert
13525 (if (eq what 'scheduled) org-scheduled-string org-deadline-string) " ")
13526 (org-insert-time-stamp time org-time-was-given
13527 nil nil nil (list org-end-time-was-given))
13528 (setq what nil))
13529 (org-with-wide-buffer
13530 (let (col list elt ts buffer-invisibility-spec)
13531 (org-back-to-heading t)
13532 (looking-at (concat org-outline-regexp "\\( *\\)[^\r\n]*"))
13533 (goto-char (match-end 1))
13534 (setq col (current-column))
13535 (goto-char (match-end 0))
13536 (if (eobp) (insert "\n") (forward-char 1))
13537 (unless (or what (org-looking-at-p org-planning-line-re))
13538 ;; Nothing to add, nothing to remove...... :-)
13539 (throw 'exit nil))
13540 (if (and (not (looking-at org-outline-regexp))
13541 (looking-at (concat "[^\r\n]*?" org-keyword-time-regexp
13542 "[^\r\n]*"))
13543 (not (equal (match-string 1) org-clock-string)))
13544 (narrow-to-region (match-beginning 0) (match-end 0))
13545 (insert-before-markers "\n")
13546 (backward-char 1)
13547 (narrow-to-region (point) (point))
13548 (and org-adapt-indentation (org-indent-to-column col)))
13549 ;; Check if we have to remove something.
13550 (setq list (cons what remove))
13551 (while list
13552 (setq elt (pop list))
13553 (when (or (and (eq elt 'scheduled)
13554 (re-search-forward org-scheduled-time-regexp nil t))
13555 (and (eq elt 'deadline)
13556 (re-search-forward org-deadline-time-regexp nil t))
13557 (and (eq elt 'closed)
13558 (re-search-forward org-closed-time-regexp nil t)))
13559 (replace-match "")
13560 (if (looking-at "--+<[^>]+>") (replace-match ""))))
13561 (and (looking-at "[ \t]+") (replace-match ""))
13562 (and org-adapt-indentation (bolp) (org-indent-to-column col))
13563 (when what
13564 (insert
13565 (if (or (bolp) (eq (char-before) ?\s)) "" " ")
13566 (cond ((eq what 'scheduled) org-scheduled-string)
13567 ((eq what 'deadline) org-deadline-string)
13568 ((eq what 'closed) org-closed-string))
13569 " ")
13570 (setq ts (org-insert-time-stamp
13571 time
13572 (or org-time-was-given
13573 (and (eq what 'closed) org-log-done-with-time))
13574 (eq what 'closed)
13575 nil nil (list org-end-time-was-given)))
13576 (unless (or (bolp)
13577 (eq (char-before) ?\s)
13578 (memq (char-after) '(?\n ?\s))
13579 (eobp))
13580 (insert " "))
13581 (end-of-line 1))
13582 (goto-char (point-min))
13583 (widen)
13584 (when (and (looking-at "[ \t]*\n") (eq (char-before) ?\n))
13585 (delete-region (1- (point)) (line-end-position)))
13586 ts)))))
13588 (defvar org-log-note-marker (make-marker))
13589 (defvar org-log-note-purpose nil)
13590 (defvar org-log-note-state nil)
13591 (defvar org-log-note-previous-state nil)
13592 (defvar org-log-note-extra nil)
13593 (defvar org-log-note-window-configuration nil)
13594 (defvar org-log-note-return-to (make-marker))
13595 (defvar org-log-note-effective-time nil
13596 "Remembered current time so that dynamically scoped
13597 `org-extend-today-until' affects tha timestamps in state change
13598 log")
13600 (defvar org-log-post-message nil
13601 "Message to be displayed after a log note has been stored.
13602 The auto-repeater uses this.")
13604 (defun org-add-note ()
13605 "Add a note to the current entry.
13606 This is done in the same way as adding a state change note."
13607 (interactive)
13608 (org-add-log-setup 'note nil nil 'findpos nil))
13610 (defun org-log-beginning (&optional create)
13611 "Return expected start of log notes in current entry.
13612 When optional argument CREATE is non-nil, the function creates
13613 a drawer to store notes, if necessary. Returned position ignores
13614 narrowing."
13615 (org-with-wide-buffer
13616 (org-back-to-heading t)
13617 ;; Skip planning info and property drawer.
13618 (forward-line)
13619 (when (org-looking-at-p org-planning-line-re) (forward-line))
13620 (when (looking-at org-property-drawer-re)
13621 (goto-char (match-end 0))
13622 (forward-line))
13623 (if (org-at-heading-p) (point)
13624 (let ((end (save-excursion (outline-next-heading) (point)))
13625 (drawer (cond ((stringp org-log-into-drawer) org-log-into-drawer)
13626 (org-log-into-drawer "LOGBOOK"))))
13627 (cond
13628 (drawer
13629 (let ((regexp (concat "^[ \t]*:" (regexp-quote drawer) ":[ \t]*$"))
13630 (case-fold-search t))
13631 (catch 'exit
13632 ;; Try to find existing drawer.
13633 (while (re-search-forward regexp end t)
13634 (let ((element (org-element-at-point)))
13635 (when (eq (org-element-type element) 'drawer)
13636 (let ((cend (org-element-property :contents-end element)))
13637 (when (and (not org-log-states-order-reversed) cend)
13638 (goto-char cend)))
13639 (throw 'exit nil))))
13640 ;; No drawer found. Create one, if permitted.
13641 (when create
13642 (unless (bolp) (insert "\n"))
13643 (let ((beg (point)))
13644 (insert ":" drawer ":\n:END:\n")
13645 (org-indent-region beg (point)))
13646 (end-of-line -1)))))
13647 (org-log-state-notes-insert-after-drawers
13648 (while (and (looking-at org-drawer-regexp)
13649 (progn (goto-char (match-end 0))
13650 (re-search-forward org-property-end-re end t)))
13651 (forward-line)))))
13652 (if (bolp) (point) (line-beginning-position 2)))))
13654 (defun org-add-log-setup (&optional purpose state prev-state findpos how extra)
13655 "Set up the post command hook to take a note.
13656 If this is about to TODO state change, the new state is expected in STATE.
13657 When FINDPOS is non-nil, find the correct position for the note in
13658 the current entry. If not, assume that it can be inserted at point.
13659 HOW is an indicator what kind of note should be created.
13660 EXTRA is additional text that will be inserted into the notes buffer."
13661 (org-with-wide-buffer
13662 (when findpos
13663 (goto-char (org-log-beginning t))
13664 (unless org-log-states-order-reversed
13665 (org-skip-over-state-notes)
13666 (skip-chars-backward " \t\n\r")
13667 (forward-line)))
13668 (move-marker org-log-note-marker (point))
13669 (setq org-log-note-purpose purpose
13670 org-log-note-state state
13671 org-log-note-previous-state prev-state
13672 org-log-note-how how
13673 org-log-note-extra extra
13674 org-log-note-effective-time (org-current-effective-time))
13675 (add-hook 'post-command-hook 'org-add-log-note 'append)))
13677 (defun org-skip-over-state-notes ()
13678 "Skip past the list of State notes in an entry."
13679 (when (ignore-errors (goto-char (org-in-item-p)))
13680 (let* ((struct (org-list-struct))
13681 (prevs (org-list-prevs-alist struct))
13682 (regexp
13683 (concat "[ \t]*- +"
13684 (replace-regexp-in-string
13685 " +" " +"
13686 (org-replace-escapes
13687 (regexp-quote (cdr (assq 'state org-log-note-headings)))
13688 `(("%d" . ,org-ts-regexp-inactive)
13689 ("%D" . ,org-ts-regexp)
13690 ("%s" . "\"\\S-+\"")
13691 ("%S" . "\"\\S-+\"")
13692 ("%t" . ,org-ts-regexp-inactive)
13693 ("%T" . ,org-ts-regexp)
13694 ("%u" . ".*?")
13695 ("%U" . ".*?")))))))
13696 (while (org-looking-at-p regexp)
13697 (goto-char (or (org-list-get-next-item (point) struct prevs)
13698 (org-list-get-item-end (point) struct)))))))
13700 (defun org-add-log-note (&optional purpose)
13701 "Pop up a window for taking a note, and add this note later at point."
13702 (remove-hook 'post-command-hook 'org-add-log-note)
13703 (setq org-log-note-window-configuration (current-window-configuration))
13704 (delete-other-windows)
13705 (move-marker org-log-note-return-to (point))
13706 (org-pop-to-buffer-same-window (marker-buffer org-log-note-marker))
13707 (goto-char org-log-note-marker)
13708 (org-switch-to-buffer-other-window "*Org Note*")
13709 (erase-buffer)
13710 (if (memq org-log-note-how '(time state))
13711 (let (current-prefix-arg) (org-store-log-note))
13712 (let ((org-inhibit-startup t)) (org-mode))
13713 (insert (format "# Insert note for %s.
13714 # Finish with C-c C-c, or cancel with C-c C-k.\n\n"
13715 (cond
13716 ((eq org-log-note-purpose 'clock-out) "stopped clock")
13717 ((eq org-log-note-purpose 'done) "closed todo item")
13718 ((eq org-log-note-purpose 'state)
13719 (format "state change from \"%s\" to \"%s\""
13720 (or org-log-note-previous-state "")
13721 (or org-log-note-state "")))
13722 ((eq org-log-note-purpose 'reschedule)
13723 "rescheduling")
13724 ((eq org-log-note-purpose 'delschedule)
13725 "no longer scheduled")
13726 ((eq org-log-note-purpose 'redeadline)
13727 "changing deadline")
13728 ((eq org-log-note-purpose 'deldeadline)
13729 "removing deadline")
13730 ((eq org-log-note-purpose 'refile)
13731 "refiling")
13732 ((eq org-log-note-purpose 'note)
13733 "this entry")
13734 (t (error "This should not happen")))))
13735 (if org-log-note-extra (insert org-log-note-extra))
13736 (org-set-local 'org-finish-function 'org-store-log-note)
13737 (run-hooks 'org-log-buffer-setup-hook)))
13739 (defvar org-note-abort nil) ; dynamically scoped
13740 (defun org-store-log-note ()
13741 "Finish taking a log note, and insert it to where it belongs."
13742 (let ((txt (buffer-string)))
13743 (kill-buffer (current-buffer))
13744 (let ((note (cdr (assq org-log-note-purpose org-log-note-headings))) lines)
13745 (while (string-match "\\`# .*\n[ \t\n]*" txt)
13746 (setq txt (replace-match "" t t txt)))
13747 (if (string-match "\\s-+\\'" txt)
13748 (setq txt (replace-match "" t t txt)))
13749 (setq lines (org-split-string txt "\n"))
13750 (when (and note (string-match "\\S-" note))
13751 (setq note
13752 (org-replace-escapes
13753 note
13754 (list (cons "%u" (user-login-name))
13755 (cons "%U" user-full-name)
13756 (cons "%t" (format-time-string
13757 (org-time-stamp-format 'long 'inactive)
13758 org-log-note-effective-time))
13759 (cons "%T" (format-time-string
13760 (org-time-stamp-format 'long nil)
13761 org-log-note-effective-time))
13762 (cons "%d" (format-time-string
13763 (org-time-stamp-format nil 'inactive)
13764 org-log-note-effective-time))
13765 (cons "%D" (format-time-string
13766 (org-time-stamp-format nil nil)
13767 org-log-note-effective-time))
13768 (cons "%s" (if org-log-note-state
13769 (concat "\"" org-log-note-state "\"")
13770 ""))
13771 (cons "%S" (if org-log-note-previous-state
13772 (concat "\"" org-log-note-previous-state "\"")
13773 "\"\"")))))
13774 (when lines (setq note (concat note " \\\\")))
13775 (push note lines))
13776 (when (or current-prefix-arg org-note-abort)
13777 (when (org-log-into-drawer)
13778 (org-remove-empty-drawer-at org-log-note-marker))
13779 (setq lines nil))
13780 (when lines
13781 (with-current-buffer (marker-buffer org-log-note-marker)
13782 (save-excursion
13783 (goto-char org-log-note-marker)
13784 (move-marker org-log-note-marker nil)
13785 ;; Make sure point is at the beginning of an empty line.
13786 (cond ((not (bolp)) (let ((inhibit-read-only t)) (insert "\n")))
13787 ((looking-at "[ \t]*\\S-") (save-excursion (insert "\n"))))
13788 ;; In an existing list, add a new item at the top level.
13789 ;; Otherwise, indent line like a regular one.
13790 (let ((itemp (org-in-item-p)))
13791 (if itemp
13792 (org-indent-line-to
13793 (let ((struct (save-excursion
13794 (goto-char itemp) (org-list-struct))))
13795 (org-list-get-ind (org-list-get-top-point struct) struct)))
13796 (org-indent-line)))
13797 (insert (org-list-bullet-string "-") (pop lines))
13798 (let ((ind (org-list-item-body-column (line-beginning-position))))
13799 (dolist (line lines)
13800 (insert "\n")
13801 (org-indent-line-to ind)
13802 (insert line)))
13803 (message "Note stored")
13804 (org-back-to-heading t)
13805 (org-cycle-hide-drawers 'children))
13806 ;; Fix `buffer-undo-list' when `org-store-log-note' is called
13807 ;; from within `org-add-log-note' because `buffer-undo-list'
13808 ;; is then modified outside of `org-with-remote-undo'.
13809 (when (eq this-command 'org-agenda-todo)
13810 (setcdr buffer-undo-list (cddr buffer-undo-list)))))))
13811 ;; Don't add undo information when called from `org-agenda-todo'
13812 (let ((buffer-undo-list (eq this-command 'org-agenda-todo)))
13813 (set-window-configuration org-log-note-window-configuration)
13814 (with-current-buffer (marker-buffer org-log-note-return-to)
13815 (goto-char org-log-note-return-to))
13816 (move-marker org-log-note-return-to nil)
13817 (and org-log-post-message (message "%s" org-log-post-message))))
13819 (defun org-remove-empty-drawer-at (pos)
13820 "Remove an empty drawer at position POS.
13821 POS may also be a marker."
13822 (with-current-buffer (if (markerp pos) (marker-buffer pos) (current-buffer))
13823 (org-with-wide-buffer
13824 (goto-char pos)
13825 (let ((drawer (org-element-at-point)))
13826 (when (and (memq (org-element-type drawer) '(drawer property-drawer))
13827 (not (org-element-property :contents-begin drawer)))
13828 (delete-region (org-element-property :begin drawer)
13829 (progn (goto-char (org-element-property :end drawer))
13830 (skip-chars-backward " \r\t\n")
13831 (forward-line)
13832 (point))))))))
13834 (defvar org-ts-type nil)
13835 (defun org-sparse-tree (&optional arg type)
13836 "Create a sparse tree, prompt for the details.
13837 This command can create sparse trees. You first need to select the type
13838 of match used to create the tree:
13840 t Show all TODO entries.
13841 T Show entries with a specific TODO keyword.
13842 m Show entries selected by a tags/property match.
13843 p Enter a property name and its value (both with completion on existing
13844 names/values) and show entries with that property.
13845 r Show entries matching a regular expression (`/' can be used as well).
13846 b Show deadlines and scheduled items before a date.
13847 a Show deadlines and scheduled items after a date.
13848 d Show deadlines due within `org-deadline-warning-days'.
13849 D Show deadlines and scheduled items between a date range."
13850 (interactive "P")
13851 (setq type (or type org-sparse-tree-default-date-type))
13852 (setq org-ts-type type)
13853 (message "Sparse tree: [/]regexp [t]odo [T]odo-kwd [m]atch [p]roperty
13854 [d]eadlines [b]efore-date [a]fter-date [D]ates range
13855 [c]ycle through date types: %s"
13856 (case type
13857 (all "all timestamps")
13858 (scheduled "only scheduled")
13859 (deadline "only deadline")
13860 (active "only active timestamps")
13861 (inactive "only inactive timestamps")
13862 (scheduled-or-deadline "scheduled/deadline")
13863 (closed "with a closed time-stamp")
13864 (otherwise "scheduled/deadline")))
13865 (let ((answer (read-char-exclusive)))
13866 (case answer
13868 (org-sparse-tree
13870 (cadr (memq type '(scheduled-or-deadline all scheduled deadline active
13871 inactive closed)))))
13872 (?d (call-interactively 'org-check-deadlines))
13873 (?b (call-interactively 'org-check-before-date))
13874 (?a (call-interactively 'org-check-after-date))
13875 (?D (call-interactively 'org-check-dates-range))
13876 (?t (call-interactively 'org-show-todo-tree))
13877 (?T (org-show-todo-tree '(4)))
13878 (?m (call-interactively 'org-match-sparse-tree))
13879 ((?p ?P)
13880 (let* ((kwd (org-icompleting-read
13881 "Property: " (mapcar 'list (org-buffer-property-keys))))
13882 (value (org-icompleting-read
13883 "Value: " (mapcar 'list (org-property-values kwd)))))
13884 (unless (string-match "\\`{.*}\\'" value)
13885 (setq value (concat "\"" value "\"")))
13886 (org-match-sparse-tree arg (concat kwd "=" value))))
13887 ((?r ?R ?/) (call-interactively 'org-occur))
13888 (otherwise (user-error "No such sparse tree command \"%c\"" answer)))))
13890 (defvar org-occur-highlights nil
13891 "List of overlays used for occur matches.")
13892 (make-variable-buffer-local 'org-occur-highlights)
13893 (defvar org-occur-parameters nil
13894 "Parameters of the active org-occur calls.
13895 This is a list, each call to org-occur pushes as cons cell,
13896 containing the regular expression and the callback, onto the list.
13897 The list can contain several entries if `org-occur' has been called
13898 several time with the KEEP-PREVIOUS argument. Otherwise, this list
13899 will only contain one set of parameters. When the highlights are
13900 removed (for example with `C-c C-c', or with the next edit (depending
13901 on `org-remove-highlights-with-change'), this variable is emptied
13902 as well.")
13903 (make-variable-buffer-local 'org-occur-parameters)
13905 (defun org-occur (regexp &optional keep-previous callback)
13906 "Make a compact tree which shows all matches of REGEXP.
13907 The tree will show the lines where the regexp matches, and all higher
13908 headlines above the match. It will also show the heading after the match,
13909 to make sure editing the matching entry is easy.
13910 If KEEP-PREVIOUS is non-nil, highlighting and exposing done by a previous
13911 call to `org-occur' will be kept, to allow stacking of calls to this
13912 command.
13913 If CALLBACK is non-nil, it is a function which is called to confirm
13914 that the match should indeed be shown."
13915 (interactive "sRegexp: \nP")
13916 (when (equal regexp "")
13917 (user-error "Regexp cannot be empty"))
13918 (unless keep-previous
13919 (org-remove-occur-highlights nil nil t))
13920 (push (cons regexp callback) org-occur-parameters)
13921 (let ((cnt 0))
13922 (save-excursion
13923 (goto-char (point-min))
13924 (if (or (not keep-previous) ; do not want to keep
13925 (not org-occur-highlights)) ; no previous matches
13926 ;; hide everything
13927 (org-overview))
13928 (while (re-search-forward regexp nil t)
13929 (when (or (not callback)
13930 (save-match-data (funcall callback)))
13931 (setq cnt (1+ cnt))
13932 (when org-highlight-sparse-tree-matches
13933 (org-highlight-new-match (match-beginning 0) (match-end 0)))
13934 (org-show-context 'occur-tree))))
13935 (when org-remove-highlights-with-change
13936 (org-add-hook 'before-change-functions 'org-remove-occur-highlights
13937 nil 'local))
13938 (unless org-sparse-tree-open-archived-trees
13939 (org-hide-archived-subtrees (point-min) (point-max)))
13940 (run-hooks 'org-occur-hook)
13941 (if (org-called-interactively-p 'interactive)
13942 (message "%d match(es) for regexp %s" cnt regexp))
13943 cnt))
13945 (defun org-occur-next-match (&optional n reset)
13946 "Function for `next-error-function' to find sparse tree matches.
13947 N is the number of matches to move, when negative move backwards.
13948 RESET is entirely ignored - this function always goes back to the
13949 starting point when no match is found."
13950 (let* ((limit (if (< n 0) (point-min) (point-max)))
13951 (search-func (if (< n 0)
13952 'previous-single-char-property-change
13953 'next-single-char-property-change))
13954 (n (abs n))
13955 (pos (point))
13957 (catch 'exit
13958 (while (setq p1 (funcall search-func (point) 'org-type))
13959 (when (equal p1 limit)
13960 (goto-char pos)
13961 (user-error "No more matches"))
13962 (when (equal (get-char-property p1 'org-type) 'org-occur)
13963 (setq n (1- n))
13964 (when (= n 0)
13965 (goto-char p1)
13966 (throw 'exit (point))))
13967 (goto-char p1))
13968 (goto-char p1)
13969 (user-error "No more matches"))))
13971 (defun org-show-context (&optional key)
13972 "Make sure point and context are visible.
13973 How much context is shown depends upon the variables
13974 `org-show-hierarchy-above', `org-show-following-heading',
13975 `org-show-entry-below' and `org-show-siblings'."
13976 (let ((heading-p (org-at-heading-p t))
13977 (hierarchy-p (org-get-alist-option org-show-hierarchy-above key))
13978 (following-p (org-get-alist-option org-show-following-heading key))
13979 (entry-p (org-get-alist-option org-show-entry-below key))
13980 (siblings-p (org-get-alist-option org-show-siblings key)))
13981 ;; Show heading or entry text
13982 (if (and heading-p (not entry-p))
13983 (org-flag-heading nil) ; only show the heading
13984 (and (or entry-p (outline-invisible-p) (org-invisible-p2))
13985 (org-show-hidden-entry))) ; show entire entry
13986 (when following-p
13987 ;; Show next sibling, or heading below text
13988 (save-excursion
13989 (and (if heading-p (org-goto-sibling) (outline-next-heading))
13990 (org-flag-heading nil))))
13991 (when siblings-p (org-show-siblings))
13992 (when hierarchy-p
13993 ;; show all higher headings, possibly with siblings
13994 (save-excursion
13995 (while (and (ignore-errors (progn (org-up-heading-all 1) t))
13996 (not (bobp)))
13997 (org-flag-heading nil)
13998 (when siblings-p (org-show-siblings)))))))
14000 (defvar org-reveal-start-hook nil
14001 "Hook run before revealing a location.")
14003 (defun org-reveal (&optional siblings)
14004 "Show current entry, hierarchy above it, and the following headline.
14005 This can be used to show a consistent set of context around locations
14006 exposed with `org-show-hierarchy-above' or `org-show-following-heading'
14007 not t for the search context.
14009 With optional argument SIBLINGS, on each level of the hierarchy all
14010 siblings are shown. This repairs the tree structure to what it would
14011 look like when opened with hierarchical calls to `org-cycle'.
14012 With double optional argument \\[universal-argument] \\[universal-argument], \
14013 go to the parent and show the
14014 entire tree."
14015 (interactive "P")
14016 (run-hooks 'org-reveal-start-hook)
14017 (let ((org-show-hierarchy-above t)
14018 (org-show-following-heading t)
14019 (org-show-siblings (if siblings t org-show-siblings)))
14020 (org-show-context nil))
14021 (when (equal siblings '(16))
14022 (save-excursion
14023 (when (org-up-heading-safe)
14024 (org-show-subtree)
14025 (run-hook-with-args 'org-cycle-hook 'subtree)))))
14027 (defun org-highlight-new-match (beg end)
14028 "Highlight from BEG to END and mark the highlight is an occur headline."
14029 (let ((ov (make-overlay beg end)))
14030 (overlay-put ov 'face 'secondary-selection)
14031 (overlay-put ov 'org-type 'org-occur)
14032 (push ov org-occur-highlights)))
14034 (defun org-remove-occur-highlights (&optional beg end noremove)
14035 "Remove the occur highlights from the buffer.
14036 BEG and END are ignored. If NOREMOVE is nil, remove this function
14037 from the `before-change-functions' in the current buffer."
14038 (interactive)
14039 (unless org-inhibit-highlight-removal
14040 (mapc 'delete-overlay org-occur-highlights)
14041 (setq org-occur-highlights nil)
14042 (setq org-occur-parameters nil)
14043 (unless noremove
14044 (remove-hook 'before-change-functions
14045 'org-remove-occur-highlights 'local))))
14047 ;;;; Priorities
14049 (defvar org-priority-regexp ".*?\\(\\[#\\([A-Z0-9]\\)\\] ?\\)"
14050 "Regular expression matching the priority indicator.")
14052 (defvar org-remove-priority-next-time nil)
14054 (defun org-priority-up ()
14055 "Increase the priority of the current item."
14056 (interactive)
14057 (org-priority 'up))
14059 (defun org-priority-down ()
14060 "Decrease the priority of the current item."
14061 (interactive)
14062 (org-priority 'down))
14064 (defun org-priority (&optional action show)
14065 "Change the priority of an item.
14066 ACTION can be `set', `up', `down', or a character."
14067 (interactive "P")
14068 (if (equal action '(4))
14069 (org-show-priority)
14070 (unless org-enable-priority-commands
14071 (user-error "Priority commands are disabled"))
14072 (setq action (or action 'set))
14073 (let (current new news have remove)
14074 (save-excursion
14075 (org-back-to-heading t)
14076 (if (looking-at org-priority-regexp)
14077 (setq current (string-to-char (match-string 2))
14078 have t))
14079 (cond
14080 ((eq action 'remove)
14081 (setq remove t new ?\ ))
14082 ((or (eq action 'set)
14083 (if (featurep 'xemacs) (characterp action) (integerp action)))
14084 (if (not (eq action 'set))
14085 (setq new action)
14086 (message "Priority %c-%c, SPC to remove: "
14087 org-highest-priority org-lowest-priority)
14088 (save-match-data
14089 (setq new (read-char-exclusive))))
14090 (if (and (= (upcase org-highest-priority) org-highest-priority)
14091 (= (upcase org-lowest-priority) org-lowest-priority))
14092 (setq new (upcase new)))
14093 (cond ((equal new ?\ ) (setq remove t))
14094 ((or (< (upcase new) org-highest-priority) (> (upcase new) org-lowest-priority))
14095 (user-error "Priority must be between `%c' and `%c'"
14096 org-highest-priority org-lowest-priority))))
14097 ((eq action 'up)
14098 (setq new (if have
14099 (1- current) ; normal cycling
14100 ;; last priority was empty
14101 (if (eq last-command this-command)
14102 org-lowest-priority ; wrap around empty to lowest
14103 ;; default
14104 (if org-priority-start-cycle-with-default
14105 org-default-priority
14106 (1- org-default-priority))))))
14107 ((eq action 'down)
14108 (setq new (if have
14109 (1+ current) ; normal cycling
14110 ;; last priority was empty
14111 (if (eq last-command this-command)
14112 org-highest-priority ; wrap around empty to highest
14113 ;; default
14114 (if org-priority-start-cycle-with-default
14115 org-default-priority
14116 (1+ org-default-priority))))))
14117 (t (user-error "Invalid action")))
14118 (if (or (< (upcase new) org-highest-priority)
14119 (> (upcase new) org-lowest-priority))
14120 (if (and (memq action '(up down))
14121 (not have) (not (eq last-command this-command)))
14122 ;; `new' is from default priority
14123 (error
14124 "The default can not be set, see `org-default-priority' why")
14125 ;; normal cycling: `new' is beyond highest/lowest priority
14126 ;; and is wrapped around to the empty priority
14127 (setq remove t)))
14128 (setq news (format "%c" new))
14129 (if have
14130 (if remove
14131 (replace-match "" t t nil 1)
14132 (replace-match news t t nil 2))
14133 (if remove
14134 (user-error "No priority cookie found in line")
14135 (let ((case-fold-search nil))
14136 (looking-at org-todo-line-regexp))
14137 (if (match-end 2)
14138 (progn
14139 (goto-char (match-end 2))
14140 (insert " [#" news "]"))
14141 (goto-char (match-beginning 3))
14142 (insert "[#" news "] "))))
14143 (org-set-tags nil 'align))
14144 (if remove
14145 (message "Priority removed")
14146 (message "Priority of current item set to %s" news)))))
14148 (defun org-show-priority ()
14149 "Show the priority of the current item.
14150 This priority is composed of the main priority given with the [#A] cookies,
14151 and by additional input from the age of a schedules or deadline entry."
14152 (interactive)
14153 (let ((pri (if (eq major-mode 'org-agenda-mode)
14154 (org-get-at-bol 'priority)
14155 (save-excursion
14156 (save-match-data
14157 (beginning-of-line)
14158 (and (looking-at org-heading-regexp)
14159 (org-get-priority (match-string 0))))))))
14160 (message "Priority is %d" (if pri pri -1000))))
14162 (defun org-get-priority (s)
14163 "Find priority cookie and return priority."
14164 (save-match-data
14165 (if (functionp org-get-priority-function)
14166 (funcall org-get-priority-function)
14167 (if (not (string-match org-priority-regexp s))
14168 (* 1000 (- org-lowest-priority org-default-priority))
14169 (* 1000 (- org-lowest-priority
14170 (string-to-char (match-string 2 s))))))))
14172 ;;;; Tags
14174 (defvar org-agenda-archives-mode)
14175 (defvar org-map-continue-from nil
14176 "Position from where mapping should continue.
14177 Can be set by the action argument to `org-scan-tags' and `org-map-entries'.")
14179 (defvar org-scanner-tags nil
14180 "The current tag list while the tags scanner is running.")
14181 (defvar org-trust-scanner-tags nil
14182 "Should `org-get-tags-at' use the tags for the scanner.
14183 This is for internal dynamical scoping only.
14184 When this is non-nil, the function `org-get-tags-at' will return the value
14185 of `org-scanner-tags' instead of building the list by itself. This
14186 can lead to large speed-ups when the tags scanner is used in a file with
14187 many entries, and when the list of tags is retrieved, for example to
14188 obtain a list of properties. Building the tags list for each entry in such
14189 a file becomes an N^2 operation - but with this variable set, it scales
14190 as N.")
14192 (defun org-scan-tags (action matcher todo-only &optional start-level)
14193 "Scan headline tags with inheritance and produce output ACTION.
14195 ACTION can be `sparse-tree' to produce a sparse tree in the current buffer,
14196 or `agenda' to produce an entry list for an agenda view. It can also be
14197 a Lisp form or a function that should be called at each matched headline, in
14198 this case the return value is a list of all return values from these calls.
14200 MATCHER is a Lisp form to be evaluated, testing if a given set of tags
14201 qualifies a headline for inclusion. When TODO-ONLY is non-nil,
14202 only lines with a not-done TODO keyword are included in the output.
14203 This should be the same variable that was scoped into
14204 and set by `org-make-tags-matcher' when it constructed MATCHER.
14206 START-LEVEL can be a string with asterisks, reducing the scope to
14207 headlines matching this string."
14208 (require 'org-agenda)
14209 (let* ((re (concat "^"
14210 (if start-level
14211 ;; Get the correct level to match
14212 (concat "\\*\\{" (number-to-string start-level) "\\} ")
14213 org-outline-regexp)
14214 " *\\(\\<\\("
14215 (mapconcat 'regexp-quote org-todo-keywords-1 "\\|")
14216 (org-re "\\)\\>\\)? *\\(.*?\\)\\(:[[:alnum:]_@#%:]+:\\)?[ \t]*$")))
14217 (props (list 'face 'default
14218 'done-face 'org-agenda-done
14219 'undone-face 'default
14220 'mouse-face 'highlight
14221 'org-not-done-regexp org-not-done-regexp
14222 'org-todo-regexp org-todo-regexp
14223 'org-complex-heading-regexp org-complex-heading-regexp
14224 'help-echo
14225 (format "mouse-2 or RET jump to org file %s"
14226 (abbreviate-file-name
14227 (or (buffer-file-name (buffer-base-buffer))
14228 (buffer-name (buffer-base-buffer)))))))
14229 (org-map-continue-from nil)
14230 lspos tags tags-list
14231 (tags-alist (list (cons 0 org-file-tags)))
14232 (llast 0) rtn rtn1 level category i txt
14233 todo marker entry priority)
14234 (when (not (or (member action '(agenda sparse-tree)) (functionp action)))
14235 (setq action (list 'lambda nil action)))
14236 (save-excursion
14237 (goto-char (point-min))
14238 (when (eq action 'sparse-tree)
14239 (org-overview)
14240 (org-remove-occur-highlights))
14241 (while (let (case-fold-search)
14242 (re-search-forward re nil t))
14243 (setq org-map-continue-from nil)
14244 (catch :skip
14245 (setq todo (if (match-end 1) (org-match-string-no-properties 2))
14246 tags (if (match-end 4) (org-match-string-no-properties 4)))
14247 (goto-char (setq lspos (match-beginning 0)))
14248 (setq level (org-reduced-level (org-outline-level))
14249 category (org-get-category))
14250 (setq i llast llast level)
14251 ;; remove tag lists from same and sublevels
14252 (while (>= i level)
14253 (when (setq entry (assoc i tags-alist))
14254 (setq tags-alist (delete entry tags-alist)))
14255 (setq i (1- i)))
14256 ;; add the next tags
14257 (when tags
14258 (setq tags (org-split-string tags ":")
14259 tags-alist
14260 (cons (cons level tags) tags-alist)))
14261 ;; compile tags for current headline
14262 (setq tags-list
14263 (if org-use-tag-inheritance
14264 (apply 'append (mapcar 'cdr (reverse tags-alist)))
14265 tags)
14266 org-scanner-tags tags-list)
14267 (when org-use-tag-inheritance
14268 (setcdr (car tags-alist)
14269 (mapcar (lambda (x)
14270 (setq x (copy-sequence x))
14271 (org-add-prop-inherited x))
14272 (cdar tags-alist))))
14273 (when (and tags org-use-tag-inheritance
14274 (or (not (eq t org-use-tag-inheritance))
14275 org-tags-exclude-from-inheritance))
14276 ;; selective inheritance, remove uninherited ones
14277 (setcdr (car tags-alist)
14278 (org-remove-uninherited-tags (cdar tags-alist))))
14279 (when (and
14281 ;; eval matcher only when the todo condition is OK
14282 (and (or (not todo-only) (member todo org-not-done-keywords))
14283 (let ((case-fold-search t) (org-trust-scanner-tags t))
14284 (eval matcher)))
14286 ;; Call the skipper, but return t if it does not skip,
14287 ;; so that the `and' form continues evaluating
14288 (progn
14289 (unless (eq action 'sparse-tree) (org-agenda-skip))
14292 ;; Check if timestamps are deselecting this entry
14293 (or (not todo-only)
14294 (and (member todo org-not-done-keywords)
14295 (or (not org-agenda-tags-todo-honor-ignore-options)
14296 (not (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item))))))
14298 ;; select this headline
14299 (cond
14300 ((eq action 'sparse-tree)
14301 (and org-highlight-sparse-tree-matches
14302 (org-get-heading) (match-end 0)
14303 (org-highlight-new-match
14304 (match-beginning 1) (match-end 1)))
14305 (org-show-context 'tags-tree))
14306 ((eq action 'agenda)
14307 (setq txt (org-agenda-format-item
14309 (concat
14310 (if (eq org-tags-match-list-sublevels 'indented)
14311 (make-string (1- level) ?.) "")
14312 (org-get-heading))
14313 level category
14314 tags-list)
14315 priority (org-get-priority txt))
14316 (goto-char lspos)
14317 (setq marker (org-agenda-new-marker))
14318 (org-add-props txt props
14319 'org-marker marker 'org-hd-marker marker 'org-category category
14320 'todo-state todo
14321 'priority priority 'type "tagsmatch")
14322 (push txt rtn))
14323 ((functionp action)
14324 (setq org-map-continue-from nil)
14325 (save-excursion
14326 (setq rtn1 (funcall action))
14327 (push rtn1 rtn)))
14328 (t (user-error "Invalid action")))
14330 ;; if we are to skip sublevels, jump to end of subtree
14331 (unless org-tags-match-list-sublevels
14332 (org-end-of-subtree t)
14333 (backward-char 1))))
14334 ;; Get the correct position from where to continue
14335 (if org-map-continue-from
14336 (goto-char org-map-continue-from)
14337 (and (= (point) lspos) (end-of-line 1)))))
14338 (when (and (eq action 'sparse-tree)
14339 (not org-sparse-tree-open-archived-trees))
14340 (org-hide-archived-subtrees (point-min) (point-max)))
14341 (nreverse rtn)))
14343 (defun org-remove-uninherited-tags (tags)
14344 "Remove all tags that are not inherited from the list TAGS."
14345 (cond
14346 ((eq org-use-tag-inheritance t)
14347 (if org-tags-exclude-from-inheritance
14348 (org-delete-all org-tags-exclude-from-inheritance tags)
14349 tags))
14350 ((not org-use-tag-inheritance) nil)
14351 ((stringp org-use-tag-inheritance)
14352 (delq nil (mapcar
14353 (lambda (x)
14354 (if (and (string-match org-use-tag-inheritance x)
14355 (not (member x org-tags-exclude-from-inheritance)))
14356 x nil))
14357 tags)))
14358 ((listp org-use-tag-inheritance)
14359 (delq nil (mapcar
14360 (lambda (x)
14361 (if (member x org-use-tag-inheritance) x nil))
14362 tags)))))
14364 (defun org-match-sparse-tree (&optional todo-only match)
14365 "Create a sparse tree according to tags string MATCH.
14366 MATCH can contain positive and negative selection of tags, like
14367 \"+WORK+URGENT-WITHBOSS\".
14368 If optional argument TODO-ONLY is non-nil, only select lines that are
14369 also TODO lines."
14370 (interactive "P")
14371 (org-agenda-prepare-buffers (list (current-buffer)))
14372 (org-scan-tags 'sparse-tree (cdr (org-make-tags-matcher match)) todo-only))
14374 (defalias 'org-tags-sparse-tree 'org-match-sparse-tree)
14376 (defvar org-cached-props nil)
14377 (defun org-cached-entry-get (pom property)
14378 (if (or (eq t org-use-property-inheritance)
14379 (and (stringp org-use-property-inheritance)
14380 (string-match org-use-property-inheritance property))
14381 (and (listp org-use-property-inheritance)
14382 (member property org-use-property-inheritance)))
14383 ;; Caching is not possible, check it directly
14384 (org-entry-get pom property 'inherit)
14385 ;; Get all properties, so that we can do complicated checks easily
14386 (cdr (assoc property (or org-cached-props
14387 (setq org-cached-props
14388 (org-entry-properties pom)))))))
14390 (defun org-global-tags-completion-table (&optional files)
14391 "Return the list of all tags in all agenda buffer/files.
14392 Optional FILES argument is a list of files which can be used
14393 instead of the agenda files."
14394 (save-excursion
14395 (org-uniquify
14396 (delq nil
14397 (apply 'append
14398 (mapcar
14399 (lambda (file)
14400 (set-buffer (find-file-noselect file))
14401 (append (org-get-buffer-tags)
14402 (mapcar (lambda (x) (if (stringp (car-safe x))
14403 (list (car-safe x)) nil))
14404 org-tag-alist)))
14405 (if (and files (car files))
14406 files
14407 (org-agenda-files))))))))
14409 (defun org-make-tags-matcher (match)
14410 "Create the TAGS/TODO matcher form for the selection string MATCH.
14412 The variable `todo-only' is scoped dynamically into this function.
14413 It will be set to t if the matcher restricts matching to TODO entries,
14414 otherwise will not be touched.
14416 Returns a cons of the selection string MATCH and the constructed
14417 lisp form implementing the matcher. The matcher is to be evaluated
14418 at an Org entry, with point on the headline, and returns t if the
14419 entry matches the selection string MATCH. The returned lisp form
14420 references two variables with information about the entry, which
14421 must be bound around the form's evaluation: todo, the TODO keyword
14422 at the entry (or nil of none); and tags-list, the list of all tags
14423 at the entry including inherited ones. Additionally, the category
14424 of the entry (if any) must be specified as the text property
14425 'org-category on the headline.
14427 See also `org-scan-tags'.
14429 (declare (special todo-only))
14430 (unless (boundp 'todo-only)
14431 (error "`org-make-tags-matcher' expects todo-only to be scoped in"))
14432 (unless match
14433 ;; Get a new match request, with completion against the global
14434 ;; tags table and the local tags in current buffer
14435 (let ((org-last-tags-completion-table
14436 (org-uniquify
14437 (delq nil (append (org-get-buffer-tags)
14438 (org-global-tags-completion-table))))))
14439 (setq match (org-completing-read-no-i
14440 "Match: " 'org-tags-completion-function nil nil nil
14441 'org-tags-history))))
14443 ;; Parse the string and create a lisp form
14444 (let ((match0 match)
14445 (re (org-re "^&?\\([-+:]\\)?\\({[^}]+}\\|LEVEL\\([<=>]\\{1,2\\}\\)\\([0-9]+\\)\\|\\(\\(?:[[:alnum:]_]+\\(?:\\\\-\\)*\\)+\\)\\([<>=]\\{1,2\\}\\)\\({[^}]+}\\|\"[^\"]*\"\\|-?[.0-9]+\\(?:[eE][-+]?[0-9]+\\)?\\)\\|[[:alnum:]_@#%]+\\)"))
14446 minus tag mm
14447 tagsmatch todomatch tagsmatcher todomatcher kwd matcher
14448 orterms term orlist re-p str-p level-p level-op time-p
14449 prop-p pn pv po gv rest (start 0) (ss 0))
14450 ;; Expand group tags
14451 (setq match (org-tags-expand match))
14453 ;; Check if there is a TODO part of this match, which would be the
14454 ;; part after a "/". TO make sure that this slash is not part of
14455 ;; a property value to be matched against, we also check that there
14456 ;; is no " after that slash.
14457 ;; First, find the last slash
14458 (while (string-match "/+" match ss)
14459 (setq start (match-beginning 0) ss (match-end 0)))
14460 (if (and (string-match "/+" match start)
14461 (not (save-match-data (string-match "\"" match start))))
14462 ;; match contains also a todo-matching request
14463 (progn
14464 (setq tagsmatch (substring match 0 (match-beginning 0))
14465 todomatch (substring match (match-end 0)))
14466 (if (string-match "^!" todomatch)
14467 (setq todo-only t todomatch (substring todomatch 1)))
14468 (if (string-match "^\\s-*$" todomatch)
14469 (setq todomatch nil)))
14470 ;; only matching tags
14471 (setq tagsmatch match todomatch nil))
14473 ;; Make the tags matcher
14474 (if (or (not tagsmatch) (not (string-match "\\S-" tagsmatch)))
14475 (setq tagsmatcher t)
14476 (setq orterms (org-split-string tagsmatch "|") orlist nil)
14477 (while (setq term (pop orterms))
14478 (while (and (equal (substring term -1) "\\") orterms)
14479 (setq term (concat term "|" (pop orterms)))) ; repair bad split
14480 (while (string-match re term)
14481 (setq rest (substring term (match-end 0))
14482 minus (and (match-end 1)
14483 (equal (match-string 1 term) "-"))
14484 tag (save-match-data (replace-regexp-in-string
14485 "\\\\-" "-"
14486 (match-string 2 term)))
14487 re-p (equal (string-to-char tag) ?{)
14488 level-p (match-end 4)
14489 prop-p (match-end 5)
14490 mm (cond
14491 (re-p `(org-match-any-p ,(substring tag 1 -1) tags-list))
14492 (level-p
14493 (setq level-op (org-op-to-function (match-string 3 term)))
14494 `(,level-op level ,(string-to-number
14495 (match-string 4 term))))
14496 (prop-p
14497 (setq pn (match-string 5 term)
14498 po (match-string 6 term)
14499 pv (match-string 7 term)
14500 re-p (equal (string-to-char pv) ?{)
14501 str-p (equal (string-to-char pv) ?\")
14502 time-p (save-match-data
14503 (string-match "^\"[[<].*[]>]\"$" pv))
14504 pv (if (or re-p str-p) (substring pv 1 -1) pv))
14505 (if time-p (setq pv (org-matcher-time pv)))
14506 (setq po (org-op-to-function po (if time-p 'time str-p)))
14507 (cond
14508 ((equal pn "CATEGORY")
14509 (setq gv '(get-text-property (point) 'org-category)))
14510 ((equal pn "TODO")
14511 (setq gv 'todo))
14513 (setq gv `(org-cached-entry-get nil ,pn))))
14514 (if re-p
14515 (if (eq po 'org<>)
14516 `(not (string-match ,pv (or ,gv "")))
14517 `(string-match ,pv (or ,gv "")))
14518 (if str-p
14519 `(,po (or ,gv "") ,pv)
14520 `(,po (string-to-number (or ,gv ""))
14521 ,(string-to-number pv) ))))
14522 (t `(member ,tag tags-list)))
14523 mm (if minus (list 'not mm) mm)
14524 term rest)
14525 (push mm tagsmatcher))
14526 (push (if (> (length tagsmatcher) 1)
14527 (cons 'and tagsmatcher)
14528 (car tagsmatcher))
14529 orlist)
14530 (setq tagsmatcher nil))
14531 (setq tagsmatcher (if (> (length orlist) 1) (cons 'or orlist) (car orlist)))
14532 (setq tagsmatcher
14533 (list 'progn '(setq org-cached-props nil) tagsmatcher)))
14534 ;; Make the todo matcher
14535 (if (or (not todomatch) (not (string-match "\\S-" todomatch)))
14536 (setq todomatcher t)
14537 (setq orterms (org-split-string todomatch "|") orlist nil)
14538 (while (setq term (pop orterms))
14539 (while (string-match re term)
14540 (setq minus (and (match-end 1)
14541 (equal (match-string 1 term) "-"))
14542 kwd (match-string 2 term)
14543 re-p (equal (string-to-char kwd) ?{)
14544 term (substring term (match-end 0))
14545 mm (if re-p
14546 `(string-match ,(substring kwd 1 -1) todo)
14547 (list 'equal 'todo kwd))
14548 mm (if minus (list 'not mm) mm))
14549 (push mm todomatcher))
14550 (push (if (> (length todomatcher) 1)
14551 (cons 'and todomatcher)
14552 (car todomatcher))
14553 orlist)
14554 (setq todomatcher nil))
14555 (setq todomatcher (if (> (length orlist) 1)
14556 (cons 'or orlist) (car orlist))))
14558 ;; Return the string and lisp forms of the matcher
14559 (setq matcher (if todomatcher
14560 (list 'and tagsmatcher todomatcher)
14561 tagsmatcher))
14562 (when todo-only
14563 (setq matcher (list 'and '(member todo org-not-done-keywords)
14564 matcher)))
14565 (cons match0 matcher)))
14567 (defun org-tags-expand (match &optional single-as-list downcased)
14568 "Expand group tags in MATCH.
14570 This replaces every group tag in MATCH with a regexp tag search.
14571 For example, a group tag \"Work\" defined as { Work : Lab Conf }
14572 will be replaced like this:
14574 Work => {\\(?:Work\\|Lab\\|Conf\\)}
14575 +Work => +{\\(?:Work\\|Lab\\|Conf\\)}
14576 -Work => -{\\(?:Work\\|Lab\\|Conf\\)}
14578 Replacing by a regexp preserves the structure of the match.
14579 E.g., this expansion
14581 Work|Home => {\\(?:Work\\|Lab\\|Conf\\}|Home
14583 will match anything tagged with \"Lab\" and \"Home\", or tagged
14584 with \"Conf\" and \"Home\" or tagged with \"Work\" and \"home\".
14586 When the optional argument SINGLE-AS-LIST is non-nil, MATCH is
14587 assumed to be a single group tag, and the function will return
14588 the list of tags in this group.
14590 When DOWNCASE is non-nil, expand downcased TAGS."
14591 (if org-group-tags
14592 (let* ((case-fold-search t)
14593 (stable org-mode-syntax-table)
14594 (tal (or org-tag-groups-alist-for-agenda
14595 org-tag-groups-alist))
14596 (tal (if downcased
14597 (mapcar (lambda(tg) (mapcar 'downcase tg)) tal) tal))
14598 (tml (mapcar 'car tal))
14599 (rtnmatch match) rpl)
14600 ;; @ and _ are allowed as word-components in tags
14601 (modify-syntax-entry ?@ "w" stable)
14602 (modify-syntax-entry ?_ "w" stable)
14603 (while (and tml
14604 (with-syntax-table stable
14605 (string-match
14606 (concat "\\(?1:[+-]?\\)\\(?2:\\<"
14607 (regexp-opt tml) "\\>\\)") rtnmatch)))
14608 (let* ((dir (match-string 1 rtnmatch))
14609 (tag (match-string 2 rtnmatch))
14610 (tag (if downcased (downcase tag) tag)))
14611 (setq tml (delete tag tml))
14612 (when (not (get-text-property 0 'grouptag (match-string 2 rtnmatch)))
14613 (setq rpl (append (org-uniquify rpl) (assoc tag tal)))
14614 (setq rpl (concat dir "{\\<" (regexp-opt rpl) "\\>}"))
14615 (if (stringp rpl) (org-add-props rpl '(grouptag t)))
14616 (setq rtnmatch (replace-match rpl t t rtnmatch)))))
14617 (if single-as-list
14618 (or (reverse rpl) (list rtnmatch))
14619 rtnmatch))
14620 (if single-as-list (list (if downcased (downcase match) match))
14621 match)))
14623 (defun org-op-to-function (op &optional stringp)
14624 "Turn an operator into the appropriate function."
14625 (setq op
14626 (cond
14627 ((equal op "<" ) '(< string< org-time<))
14628 ((equal op ">" ) '(> org-string> org-time>))
14629 ((member op '("<=" "=<")) '(<= org-string<= org-time<=))
14630 ((member op '(">=" "=>")) '(>= org-string>= org-time>=))
14631 ((member op '("=" "==")) '(= string= org-time=))
14632 ((member op '("<>" "!=")) '(org<> org-string<> org-time<>))))
14633 (nth (if (eq stringp 'time) 2 (if stringp 1 0)) op))
14635 (defun org<> (a b) (not (= a b)))
14636 (defun org-string<= (a b) (or (string= a b) (string< a b)))
14637 (defun org-string>= (a b) (not (string< a b)))
14638 (defun org-string> (a b) (and (not (string= a b)) (not (string< a b))))
14639 (defun org-string<> (a b) (not (string= a b)))
14640 (defun org-time= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (= a b)))
14641 (defun org-time< (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (< a b)))
14642 (defun org-time<= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (<= a b)))
14643 (defun org-time> (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (> a b)))
14644 (defun org-time>= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (>= a b)))
14645 (defun org-time<> (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (org<> a b)))
14646 (defun org-2ft (s)
14647 "Convert S to a floating point time.
14648 If S is already a number, just return it. If it is a string, parse
14649 it as a time string and apply `float-time' to it. If S is nil, just return 0."
14650 (cond
14651 ((numberp s) s)
14652 ((stringp s)
14653 (condition-case nil
14654 (float-time (apply 'encode-time (org-parse-time-string s)))
14655 (error 0.)))
14656 (t 0.)))
14658 (defun org-time-today ()
14659 "Time in seconds today at 0:00.
14660 Returns the float number of seconds since the beginning of the
14661 epoch to the beginning of today (00:00)."
14662 (float-time (apply 'encode-time
14663 (append '(0 0 0) (nthcdr 3 (decode-time))))))
14665 (defun org-matcher-time (s)
14666 "Interpret a time comparison value."
14667 (save-match-data
14668 (cond
14669 ((string= s "<now>") (float-time))
14670 ((string= s "<today>") (org-time-today))
14671 ((string= s "<tomorrow>") (+ 86400.0 (org-time-today)))
14672 ((string= s "<yesterday>") (- (org-time-today) 86400.0))
14673 ((string-match "^<\\([-+][0-9]+\\)\\([hdwmy]\\)>$" s)
14674 (+ (org-time-today)
14675 (* (string-to-number (match-string 1 s))
14676 (cdr (assoc (match-string 2 s)
14677 '(("d" . 86400.0) ("w" . 604800.0)
14678 ("m" . 2678400.0) ("y" . 31557600.0)))))))
14679 (t (org-2ft s)))))
14681 (defun org-match-any-p (re list)
14682 "Does re match any element of list?"
14683 (setq list (mapcar (lambda (x) (string-match re x)) list))
14684 (delq nil list))
14686 (defvar org-add-colon-after-tag-completion nil) ;; dynamically scoped param
14687 (defvar org-tags-overlay (make-overlay 1 1))
14688 (org-detach-overlay org-tags-overlay)
14690 (defun org-get-local-tags-at (&optional pos)
14691 "Get a list of tags defined in the current headline."
14692 (org-get-tags-at pos 'local))
14694 (defun org-get-local-tags ()
14695 "Get a list of tags defined in the current headline."
14696 (org-get-tags-at nil 'local))
14698 (defun org-get-tags-at (&optional pos local)
14699 "Get a list of all headline tags applicable at POS.
14700 POS defaults to point. If tags are inherited, the list contains
14701 the targets in the same sequence as the headlines appear, i.e.
14702 the tags of the current headline come last.
14703 When LOCAL is non-nil, only return tags from the current headline,
14704 ignore inherited ones."
14705 (interactive)
14706 (if (and org-trust-scanner-tags
14707 (or (not pos) (equal pos (point)))
14708 (not local))
14709 org-scanner-tags
14710 (let (tags ltags lastpos parent)
14711 (save-excursion
14712 (save-restriction
14713 (widen)
14714 (goto-char (or pos (point)))
14715 (save-match-data
14716 (catch 'done
14717 (condition-case nil
14718 (progn
14719 (org-back-to-heading t)
14720 (while (not (equal lastpos (point)))
14721 (setq lastpos (point))
14722 (when (looking-at
14723 (org-re "[^\r\n]+?:\\([[:alnum:]_@#%:]+\\):[ \t]*$"))
14724 (setq ltags (org-split-string
14725 (org-match-string-no-properties 1) ":"))
14726 (when parent
14727 (setq ltags (mapcar 'org-add-prop-inherited ltags)))
14728 (setq tags (append
14729 (if parent
14730 (org-remove-uninherited-tags ltags)
14731 ltags)
14732 tags)))
14733 (or org-use-tag-inheritance (throw 'done t))
14734 (if local (throw 'done t))
14735 (or (org-up-heading-safe) (error nil))
14736 (setq parent t)))
14737 (error nil)))))
14738 (if local
14739 tags
14740 (reverse (delete-dups
14741 (reverse (append
14742 (org-remove-uninherited-tags
14743 org-file-tags) tags)))))))))
14745 (defun org-add-prop-inherited (s)
14746 (add-text-properties 0 (length s) '(inherited t) s)
14749 (defun org-toggle-tag (tag &optional onoff)
14750 "Toggle the tag TAG for the current line.
14751 If ONOFF is `on' or `off', don't toggle but set to this state."
14752 (let (res current)
14753 (save-excursion
14754 (org-back-to-heading t)
14755 (if (re-search-forward (org-re "[ \t]:\\([[:alnum:]_@#%:]+\\):[ \t]*$")
14756 (point-at-eol) t)
14757 (progn
14758 (setq current (match-string 1))
14759 (replace-match ""))
14760 (setq current ""))
14761 (setq current (nreverse (org-split-string current ":")))
14762 (cond
14763 ((eq onoff 'on)
14764 (setq res t)
14765 (or (member tag current) (push tag current)))
14766 ((eq onoff 'off)
14767 (or (not (member tag current)) (setq current (delete tag current))))
14768 (t (if (member tag current)
14769 (setq current (delete tag current))
14770 (setq res t)
14771 (push tag current))))
14772 (end-of-line 1)
14773 (if current
14774 (progn
14775 (insert " :" (mapconcat 'identity (nreverse current) ":") ":")
14776 (org-set-tags nil t))
14777 (delete-horizontal-space))
14778 (run-hooks 'org-after-tags-change-hook))
14779 res))
14781 (defun org-align-tags-here (to-col)
14782 ;; Assumes that this is a headline
14783 "Align tags on the current headline to TO-COL."
14784 (let ((pos (point)) (col (current-column)) ncol tags-l p)
14785 (beginning-of-line 1)
14786 (if (and (looking-at (org-re ".*?\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
14787 (< pos (match-beginning 2)))
14788 (progn
14789 (setq tags-l (- (match-end 2) (match-beginning 2)))
14790 (goto-char (match-beginning 1))
14791 (insert " ")
14792 (delete-region (point) (1+ (match-beginning 2)))
14793 (setq ncol (max (current-column)
14794 (1+ col)
14795 (if (> to-col 0)
14796 to-col
14797 (- (abs to-col) tags-l))))
14798 (setq p (point))
14799 (insert (make-string (- ncol (current-column)) ?\ ))
14800 (setq ncol (current-column))
14801 (when indent-tabs-mode (tabify p (point-at-eol)))
14802 (org-move-to-column (min ncol col)))
14803 (goto-char pos))))
14805 (defun org-set-tags-command (&optional arg just-align)
14806 "Call the set-tags command for the current entry."
14807 (interactive "P")
14808 (if (or (org-at-heading-p) (and arg (org-before-first-heading-p)))
14809 (org-set-tags arg just-align)
14810 (save-excursion
14811 (unless (and (org-region-active-p)
14812 org-loop-over-headlines-in-active-region)
14813 (org-back-to-heading t))
14814 (org-set-tags arg just-align))))
14816 (defun org-set-tags-to (data)
14817 "Set the tags of the current entry to DATA, replacing the current tags.
14818 DATA may be a tags string like :aa:bb:cc:, or a list of tags.
14819 If DATA is nil or the empty string, any tags will be removed."
14820 (interactive "sTags: ")
14821 (setq data
14822 (cond
14823 ((eq data nil) "")
14824 ((equal data "") "")
14825 ((stringp data)
14826 (concat ":" (mapconcat 'identity (org-split-string data ":+") ":")
14827 ":"))
14828 ((listp data)
14829 (concat ":" (mapconcat 'identity data ":") ":"))))
14830 (when data
14831 (save-excursion
14832 (org-back-to-heading t)
14833 (when (looking-at org-complex-heading-regexp)
14834 (if (match-end 5)
14835 (progn
14836 (goto-char (match-beginning 5))
14837 (insert data)
14838 (delete-region (point) (point-at-eol))
14839 (org-set-tags nil 'align))
14840 (goto-char (point-at-eol))
14841 (insert " " data)
14842 (org-set-tags nil 'align)))
14843 (beginning-of-line 1)
14844 (if (looking-at ".*?\\([ \t]+\\)$")
14845 (delete-region (match-beginning 1) (match-end 1))))))
14847 (defun org-align-all-tags ()
14848 "Align the tags i all headings."
14849 (interactive)
14850 (save-excursion
14851 (or (ignore-errors (org-back-to-heading t))
14852 (outline-next-heading))
14853 (if (org-at-heading-p)
14854 (org-set-tags t)
14855 (message "No headings"))))
14857 (defvar org-indent-indentation-per-level)
14858 (defun org-set-tags (&optional arg just-align)
14859 "Set the tags for the current headline.
14860 With prefix ARG, realign all tags in headings in the current buffer.
14861 When JUST-ALIGN is non-nil, only align tags."
14862 (interactive "P")
14863 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
14864 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
14865 'region-start-level 'region))
14866 org-loop-over-headlines-in-active-region)
14867 (org-map-entries
14868 ;; We don't use ARG and JUST-ALIGN here because these args
14869 ;; are not useful when looping over headlines.
14870 `(org-set-tags)
14871 org-loop-over-headlines-in-active-region
14872 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
14873 (let* ((re org-outline-regexp-bol)
14874 (current (unless arg (org-get-tags-string)))
14875 (col (current-column))
14876 (org-setting-tags t)
14877 table current-tags inherited-tags ; computed below when needed
14878 tags p0 c0 c1 rpl di tc level)
14879 (if arg
14880 (save-excursion
14881 (goto-char (point-min))
14882 (let ((buffer-invisibility-spec (org-inhibit-invisibility)))
14883 (while (re-search-forward re nil t)
14884 (org-set-tags nil t)
14885 (end-of-line 1)))
14886 (message "All tags realigned to column %d" org-tags-column))
14887 (if just-align
14888 (setq tags current)
14889 ;; Get a new set of tags from the user
14890 (save-excursion
14891 (setq table (append org-tag-persistent-alist
14892 (or org-tag-alist (org-get-buffer-tags))
14893 (and
14894 org-complete-tags-always-offer-all-agenda-tags
14895 (org-global-tags-completion-table
14896 (org-agenda-files))))
14897 org-last-tags-completion-table table
14898 current-tags (org-split-string current ":")
14899 inherited-tags (nreverse
14900 (nthcdr (length current-tags)
14901 (nreverse (org-get-tags-at))))
14902 tags
14903 (if (or (eq t org-use-fast-tag-selection)
14904 (and org-use-fast-tag-selection
14905 (delq nil (mapcar 'cdr table))))
14906 (org-fast-tag-selection
14907 current-tags inherited-tags table
14908 (if org-fast-tag-selection-include-todo
14909 org-todo-key-alist))
14910 (let ((org-add-colon-after-tag-completion (< 1 (length table))))
14911 (org-trim
14912 (org-icompleting-read "Tags: "
14913 'org-tags-completion-function
14914 nil nil current 'org-tags-history))))))
14915 (while (string-match "[-+&]+" tags)
14916 ;; No boolean logic, just a list
14917 (setq tags (replace-match ":" t t tags))))
14919 (setq tags (replace-regexp-in-string "[,]" ":" tags))
14921 (if org-tags-sort-function
14922 (setq tags (mapconcat 'identity
14923 (sort (org-split-string
14924 tags (org-re "[^[:alnum:]_@#%]+"))
14925 org-tags-sort-function) ":")))
14927 (if (string-match "\\`[\t ]*\\'" tags)
14928 (setq tags "")
14929 (unless (string-match ":$" tags) (setq tags (concat tags ":")))
14930 (unless (string-match "^:" tags) (setq tags (concat ":" tags))))
14932 ;; Insert new tags at the correct column
14933 (beginning-of-line 1)
14934 (setq level (or (and (looking-at org-outline-regexp)
14935 (- (match-end 0) (point) 1))
14937 (cond
14938 ((and (equal current "") (equal tags "")))
14939 ((re-search-forward
14940 (concat "\\([ \t]*" (regexp-quote current) "\\)[ \t]*$")
14941 (point-at-eol) t)
14942 (if (equal tags "")
14943 (setq rpl "")
14944 (goto-char (match-beginning 0))
14945 (setq c0 (current-column)
14946 ;; compute offset for the case of org-indent-mode active
14947 di (if (org-bound-and-true-p org-indent-mode)
14948 (* (1- org-indent-indentation-per-level) (1- level))
14950 p0 (if (equal (char-before) ?*) (1+ (point)) (point))
14951 tc (+ org-tags-column (if (> org-tags-column 0) (- di) di))
14952 c1 (max (1+ c0) (if (> tc 0) tc (- (- tc) (string-width tags))))
14953 rpl (concat (make-string (max 0 (- c1 c0)) ?\ ) tags)))
14954 (replace-match rpl t t)
14955 (and (not (featurep 'xemacs)) c0 indent-tabs-mode (tabify p0 (point)))
14956 tags)
14957 (t (error "Tags alignment failed")))
14958 (org-move-to-column col)
14959 (unless just-align
14960 (run-hooks 'org-after-tags-change-hook))))))
14962 (defun org-change-tag-in-region (beg end tag off)
14963 "Add or remove TAG for each entry in the region.
14964 This works in the agenda, and also in an org-mode buffer."
14965 (interactive
14966 (list (region-beginning) (region-end)
14967 (let ((org-last-tags-completion-table
14968 (if (derived-mode-p 'org-mode)
14969 (org-uniquify
14970 (delq nil (append (org-get-buffer-tags)
14971 (org-global-tags-completion-table))))
14972 (org-global-tags-completion-table))))
14973 (org-icompleting-read
14974 "Tag: " 'org-tags-completion-function nil nil nil
14975 'org-tags-history))
14976 (progn
14977 (message "[s]et or [r]emove? ")
14978 (equal (read-char-exclusive) ?r))))
14979 (if (fboundp 'deactivate-mark) (deactivate-mark))
14980 (let ((agendap (equal major-mode 'org-agenda-mode))
14981 l1 l2 m buf pos newhead (cnt 0))
14982 (goto-char end)
14983 (setq l2 (1- (org-current-line)))
14984 (goto-char beg)
14985 (setq l1 (org-current-line))
14986 (loop for l from l1 to l2 do
14987 (org-goto-line l)
14988 (setq m (get-text-property (point) 'org-hd-marker))
14989 (when (or (and (derived-mode-p 'org-mode) (org-at-heading-p))
14990 (and agendap m))
14991 (setq buf (if agendap (marker-buffer m) (current-buffer))
14992 pos (if agendap m (point)))
14993 (with-current-buffer buf
14994 (save-excursion
14995 (save-restriction
14996 (goto-char pos)
14997 (setq cnt (1+ cnt))
14998 (org-toggle-tag tag (if off 'off 'on))
14999 (setq newhead (org-get-heading)))))
15000 (and agendap (org-agenda-change-all-lines newhead m))))
15001 (message "Tag :%s: %s in %d headings" tag (if off "removed" "set") cnt)))
15003 (defun org-tags-completion-function (string predicate &optional flag)
15004 (let (s1 s2 rtn (ctable org-last-tags-completion-table)
15005 (confirm (lambda (x) (stringp (car x)))))
15006 (if (string-match "^\\(.*[-+:&,|]\\)\\([^-+:&,|]*\\)$" string)
15007 (setq s1 (match-string 1 string)
15008 s2 (match-string 2 string))
15009 (setq s1 "" s2 string))
15010 (cond
15011 ((eq flag nil)
15012 ;; try completion
15013 (setq rtn (try-completion s2 ctable confirm))
15014 (if (stringp rtn)
15015 (setq rtn
15016 (concat s1 s2 (substring rtn (length s2))
15017 (if (and org-add-colon-after-tag-completion
15018 (assoc rtn ctable))
15019 ":" ""))))
15020 rtn)
15021 ((eq flag t)
15022 ;; all-completions
15023 (all-completions s2 ctable confirm))
15024 ((eq flag 'lambda)
15025 ;; exact match?
15026 (assoc s2 ctable)))))
15028 (defun org-fast-tag-insert (kwd tags face &optional end)
15029 "Insert KDW, and the TAGS, the latter with face FACE.
15030 Also insert END."
15031 (insert (format "%-12s" (concat kwd ":"))
15032 (org-add-props (mapconcat 'identity tags " ") nil 'face face)
15033 (or end "")))
15035 (defun org-fast-tag-show-exit (flag)
15036 (save-excursion
15037 (org-goto-line 3)
15038 (if (re-search-forward "[ \t]+Next change exits" (point-at-eol) t)
15039 (replace-match ""))
15040 (when flag
15041 (end-of-line 1)
15042 (org-move-to-column (- (window-width) 19) t)
15043 (insert (org-add-props " Next change exits" nil 'face 'org-warning)))))
15045 (defun org-set-current-tags-overlay (current prefix)
15046 "Add an overlay to CURRENT tag with PREFIX."
15047 (let ((s (concat ":" (mapconcat 'identity current ":") ":")))
15048 (if (featurep 'xemacs)
15049 (org-overlay-display org-tags-overlay (concat prefix s)
15050 'secondary-selection)
15051 (put-text-property 0 (length s) 'face '(secondary-selection org-tag) s)
15052 (org-overlay-display org-tags-overlay (concat prefix s)))))
15054 (defvar org-last-tag-selection-key nil)
15055 (defun org-fast-tag-selection (current inherited table &optional todo-table)
15056 "Fast tag selection with single keys.
15057 CURRENT is the current list of tags in the headline, INHERITED is the
15058 list of inherited tags, and TABLE is an alist of tags and corresponding keys,
15059 possibly with grouping information. TODO-TABLE is a similar table with
15060 TODO keywords, should these have keys assigned to them.
15061 If the keys are nil, a-z are automatically assigned.
15062 Returns the new tags string, or nil to not change the current settings."
15063 (let* ((fulltable (append table todo-table))
15064 (maxlen (apply 'max (mapcar
15065 (lambda (x)
15066 (if (stringp (car x)) (string-width (car x)) 0))
15067 fulltable)))
15068 (buf (current-buffer))
15069 (expert (eq org-fast-tag-selection-single-key 'expert))
15070 (buffer-tags nil)
15071 (fwidth (+ maxlen 3 1 3))
15072 (ncol (/ (- (window-width) 4) fwidth))
15073 (i-face 'org-done)
15074 (c-face 'org-todo)
15075 tg cnt e c char c1 c2 ntable tbl rtn
15076 ov-start ov-end ov-prefix
15077 (exit-after-next org-fast-tag-selection-single-key)
15078 (done-keywords org-done-keywords)
15079 groups ingroup)
15080 (save-excursion
15081 (beginning-of-line 1)
15082 (if (looking-at
15083 (org-re ".*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
15084 (setq ov-start (match-beginning 1)
15085 ov-end (match-end 1)
15086 ov-prefix "")
15087 (setq ov-start (1- (point-at-eol))
15088 ov-end (1+ ov-start))
15089 (skip-chars-forward "^\n\r")
15090 (setq ov-prefix
15091 (concat
15092 (buffer-substring (1- (point)) (point))
15093 (if (> (current-column) org-tags-column)
15095 (make-string (- org-tags-column (current-column)) ?\ ))))))
15096 (move-overlay org-tags-overlay ov-start ov-end)
15097 (save-window-excursion
15098 (if expert
15099 (set-buffer (get-buffer-create " *Org tags*"))
15100 (delete-other-windows)
15101 (set-window-buffer (split-window-vertically) (get-buffer-create " *Org tags*"))
15102 (org-switch-to-buffer-other-window " *Org tags*"))
15103 (erase-buffer)
15104 (org-set-local 'org-done-keywords done-keywords)
15105 (org-fast-tag-insert "Inherited" inherited i-face "\n")
15106 (org-fast-tag-insert "Current" current c-face "\n\n")
15107 (org-fast-tag-show-exit exit-after-next)
15108 (org-set-current-tags-overlay current ov-prefix)
15109 (setq tbl fulltable char ?a cnt 0)
15110 (while (setq e (pop tbl))
15111 (cond
15112 ((equal (car e) :startgroup)
15113 (push '() groups) (setq ingroup t)
15114 (when (not (= cnt 0))
15115 (setq cnt 0)
15116 (insert "\n"))
15117 (insert (if (cdr e) (format "%s: " (cdr e)) "") "{ "))
15118 ((equal (car e) :endgroup)
15119 (setq ingroup nil cnt 0)
15120 (insert "}" (if (cdr e) (format " (%s) " (cdr e)) "") "\n"))
15121 ((equal e '(:newline))
15122 (when (not (= cnt 0))
15123 (setq cnt 0)
15124 (insert "\n")
15125 (setq e (car tbl))
15126 (while (equal (car tbl) '(:newline))
15127 (insert "\n")
15128 (setq tbl (cdr tbl)))))
15129 ((equal e '(:grouptags)) nil)
15131 (setq tg (copy-sequence (car e)) c2 nil)
15132 (if (cdr e)
15133 (setq c (cdr e))
15134 ;; automatically assign a character.
15135 (setq c1 (string-to-char
15136 (downcase (substring
15137 tg (if (= (string-to-char tg) ?@) 1 0)))))
15138 (if (or (rassoc c1 ntable) (rassoc c1 table))
15139 (while (or (rassoc char ntable) (rassoc char table))
15140 (setq char (1+ char)))
15141 (setq c2 c1))
15142 (setq c (or c2 char)))
15143 (if ingroup (push tg (car groups)))
15144 (setq tg (org-add-props tg nil 'face
15145 (cond
15146 ((not (assoc tg table))
15147 (org-get-todo-face tg))
15148 ((member tg current) c-face)
15149 ((member tg inherited) i-face))))
15150 (if (equal (caar tbl) :grouptags)
15151 (org-add-props tg nil 'face 'org-tag-group))
15152 (if (and (= cnt 0) (not ingroup)) (insert " "))
15153 (insert "[" c "] " tg (make-string
15154 (- fwidth 4 (length tg)) ?\ ))
15155 (push (cons tg c) ntable)
15156 (when (= (setq cnt (1+ cnt)) ncol)
15157 (insert "\n")
15158 (if ingroup (insert " "))
15159 (setq cnt 0)))))
15160 (setq ntable (nreverse ntable))
15161 (insert "\n")
15162 (goto-char (point-min))
15163 (if (not expert) (org-fit-window-to-buffer))
15164 (setq rtn
15165 (catch 'exit
15166 (while t
15167 (message "[a-z..]:Toggle [SPC]:clear [RET]:accept [TAB]:free [!] %sgroups%s"
15168 (if (not groups) "no " "")
15169 (if expert " [C-c]:window" (if exit-after-next " [C-c]:single" " [C-c]:multi")))
15170 (setq c (let ((inhibit-quit t)) (read-char-exclusive)))
15171 (setq org-last-tag-selection-key c)
15172 (cond
15173 ((= c ?\r) (throw 'exit t))
15174 ((= c ?!)
15175 (setq groups (not groups))
15176 (goto-char (point-min))
15177 (while (re-search-forward "[{}]" nil t) (replace-match " ")))
15178 ((= c ?\C-c)
15179 (if (not expert)
15180 (org-fast-tag-show-exit
15181 (setq exit-after-next (not exit-after-next)))
15182 (setq expert nil)
15183 (delete-other-windows)
15184 (set-window-buffer (split-window-vertically) " *Org tags*")
15185 (org-switch-to-buffer-other-window " *Org tags*")
15186 (org-fit-window-to-buffer)))
15187 ((or (= c ?\C-g)
15188 (and (= c ?q) (not (rassoc c ntable))))
15189 (org-detach-overlay org-tags-overlay)
15190 (setq quit-flag t))
15191 ((= c ?\ )
15192 (setq current nil)
15193 (if exit-after-next (setq exit-after-next 'now)))
15194 ((= c ?\t)
15195 (condition-case nil
15196 (setq tg (org-icompleting-read
15197 "Tag: "
15198 (or buffer-tags
15199 (with-current-buffer buf
15200 (org-get-buffer-tags)))))
15201 (quit (setq tg "")))
15202 (when (string-match "\\S-" tg)
15203 (add-to-list 'buffer-tags (list tg))
15204 (if (member tg current)
15205 (setq current (delete tg current))
15206 (push tg current)))
15207 (if exit-after-next (setq exit-after-next 'now)))
15208 ((setq e (rassoc c todo-table) tg (car e))
15209 (with-current-buffer buf
15210 (save-excursion (org-todo tg)))
15211 (if exit-after-next (setq exit-after-next 'now)))
15212 ((setq e (rassoc c ntable) tg (car e))
15213 (if (member tg current)
15214 (setq current (delete tg current))
15215 (loop for g in groups do
15216 (if (member tg g)
15217 (mapc (lambda (x)
15218 (setq current (delete x current)))
15219 g)))
15220 (push tg current))
15221 (if exit-after-next (setq exit-after-next 'now))))
15223 ;; Create a sorted list
15224 (setq current
15225 (sort current
15226 (lambda (a b)
15227 (assoc b (cdr (memq (assoc a ntable) ntable))))))
15228 (if (eq exit-after-next 'now) (throw 'exit t))
15229 (goto-char (point-min))
15230 (beginning-of-line 2)
15231 (delete-region (point) (point-at-eol))
15232 (org-fast-tag-insert "Current" current c-face)
15233 (org-set-current-tags-overlay current ov-prefix)
15234 (while (re-search-forward
15235 (org-re "\\[.\\] \\([[:alnum:]_@#%]+\\)") nil t)
15236 (setq tg (match-string 1))
15237 (add-text-properties
15238 (match-beginning 1) (match-end 1)
15239 (list 'face
15240 (cond
15241 ((member tg current) c-face)
15242 ((member tg inherited) i-face)
15243 (t (get-text-property (match-beginning 1) 'face))))))
15244 (goto-char (point-min)))))
15245 (org-detach-overlay org-tags-overlay)
15246 (if rtn
15247 (mapconcat 'identity current ":")
15248 nil))))
15250 (defun org-get-tags-string ()
15251 "Get the TAGS string in the current headline."
15252 (unless (org-at-heading-p t)
15253 (user-error "Not on a heading"))
15254 (save-excursion
15255 (beginning-of-line 1)
15256 (if (looking-at (org-re ".*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
15257 (org-match-string-no-properties 1)
15258 "")))
15260 (defun org-get-tags ()
15261 "Get the list of tags specified in the current headline."
15262 (org-split-string (org-get-tags-string) ":"))
15264 (defun org-get-buffer-tags ()
15265 "Get a table of all tags used in the buffer, for completion."
15266 (org-with-wide-buffer
15267 (goto-char (point-min))
15268 (let ((tag-re (concat org-outline-regexp-bol
15269 "\\(?:.*?[ \t]\\)?"
15270 (org-re ":\\([[:alnum:]_@#%:]+\\):[ \t]*$")))
15271 tags)
15272 (while (re-search-forward tag-re nil t)
15273 (dolist (tag (org-split-string (org-match-string-no-properties 1) ":"))
15274 (push tag tags)))
15275 (mapcar #'list (append org-file-tags (org-uniquify tags))))))
15277 ;;;; The mapping API
15279 (defun org-map-entries (func &optional match scope &rest skip)
15280 "Call FUNC at each headline selected by MATCH in SCOPE.
15282 FUNC is a function or a lisp form. The function will be called without
15283 arguments, with the cursor positioned at the beginning of the headline.
15284 The return values of all calls to the function will be collected and
15285 returned as a list.
15287 The call to FUNC will be wrapped into a save-excursion form, so FUNC
15288 does not need to preserve point. After evaluation, the cursor will be
15289 moved to the end of the line (presumably of the headline of the
15290 processed entry) and search continues from there. Under some
15291 circumstances, this may not produce the wanted results. For example,
15292 if you have removed (e.g. archived) the current (sub)tree it could
15293 mean that the next entry will be skipped entirely. In such cases, you
15294 can specify the position from where search should continue by making
15295 FUNC set the variable `org-map-continue-from' to the desired buffer
15296 position.
15298 MATCH is a tags/property/todo match as it is used in the agenda tags view.
15299 Only headlines that are matched by this query will be considered during
15300 the iteration. When MATCH is nil or t, all headlines will be
15301 visited by the iteration.
15303 SCOPE determines the scope of this command. It can be any of:
15305 nil The current buffer, respecting the restriction if any
15306 tree The subtree started with the entry at point
15307 region The entries within the active region, if any
15308 region-start-level
15309 The entries within the active region, but only those at
15310 the same level than the first one.
15311 file The current buffer, without restriction
15312 file-with-archives
15313 The current buffer, and any archives associated with it
15314 agenda All agenda files
15315 agenda-with-archives
15316 All agenda files with any archive files associated with them
15317 \(file1 file2 ...)
15318 If this is a list, all files in the list will be scanned
15320 The remaining args are treated as settings for the skipping facilities of
15321 the scanner. The following items can be given here:
15323 archive skip trees with the archive tag
15324 comment skip trees with the COMMENT keyword
15325 function or Emacs Lisp form:
15326 will be used as value for `org-agenda-skip-function', so
15327 whenever the function returns a position, FUNC will not be
15328 called for that entry and search will continue from the
15329 position returned
15331 If your function needs to retrieve the tags including inherited tags
15332 at the *current* entry, you can use the value of the variable
15333 `org-scanner-tags' which will be much faster than getting the value
15334 with `org-get-tags-at'. If your function gets properties with
15335 `org-entry-properties' at the *current* entry, bind `org-trust-scanner-tags'
15336 to t around the call to `org-entry-properties' to get the same speedup.
15337 Note that if your function moves around to retrieve tags and properties at
15338 a *different* entry, you cannot use these techniques."
15339 (unless (and (or (eq scope 'region) (eq scope 'region-start-level))
15340 (not (org-region-active-p)))
15341 (let* ((org-agenda-archives-mode nil) ; just to make sure
15342 (org-agenda-skip-archived-trees (memq 'archive skip))
15343 (org-agenda-skip-comment-trees (memq 'comment skip))
15344 (org-agenda-skip-function
15345 (car (org-delete-all '(comment archive) skip)))
15346 (org-tags-match-list-sublevels t)
15347 (start-level (eq scope 'region-start-level))
15348 matcher file res
15349 org-todo-keywords-for-agenda
15350 org-done-keywords-for-agenda
15351 org-todo-keyword-alist-for-agenda
15352 org-tag-alist-for-agenda
15353 todo-only)
15355 (cond
15356 ((eq match t) (setq matcher t))
15357 ((eq match nil) (setq matcher t))
15358 (t (setq matcher (if match (cdr (org-make-tags-matcher match)) t))))
15360 (save-excursion
15361 (save-restriction
15362 (cond ((eq scope 'tree)
15363 (org-back-to-heading t)
15364 (org-narrow-to-subtree)
15365 (setq scope nil))
15366 ((and (or (eq scope 'region) (eq scope 'region-start-level))
15367 (org-region-active-p))
15368 ;; If needed, set start-level to a string like "2"
15369 (when start-level
15370 (save-excursion
15371 (goto-char (region-beginning))
15372 (unless (org-at-heading-p) (outline-next-heading))
15373 (setq start-level (org-current-level))))
15374 (narrow-to-region (region-beginning)
15375 (save-excursion
15376 (goto-char (region-end))
15377 (unless (and (bolp) (org-at-heading-p))
15378 (outline-next-heading))
15379 (point)))
15380 (setq scope nil)))
15382 (if (not scope)
15383 (progn
15384 (org-agenda-prepare-buffers
15385 (list (buffer-file-name (current-buffer))))
15386 (setq res (org-scan-tags func matcher todo-only start-level)))
15387 ;; Get the right scope
15388 (cond
15389 ((and scope (listp scope) (symbolp (car scope)))
15390 (setq scope (eval scope)))
15391 ((eq scope 'agenda)
15392 (setq scope (org-agenda-files t)))
15393 ((eq scope 'agenda-with-archives)
15394 (setq scope (org-agenda-files t))
15395 (setq scope (org-add-archive-files scope)))
15396 ((eq scope 'file)
15397 (setq scope (list (buffer-file-name))))
15398 ((eq scope 'file-with-archives)
15399 (setq scope (org-add-archive-files (list (buffer-file-name))))))
15400 (org-agenda-prepare-buffers scope)
15401 (while (setq file (pop scope))
15402 (with-current-buffer (org-find-base-buffer-visiting file)
15403 (save-excursion
15404 (save-restriction
15405 (widen)
15406 (goto-char (point-min))
15407 (setq res (append res (org-scan-tags func matcher todo-only))))))))))
15408 res)))
15410 ;;; Properties API
15412 (defconst org-special-properties
15413 '("ALLTAGS" "BLOCKED" "CLOCKSUM" "CLOCKSUM_T" "CLOSED" "DEADLINE" "FILE"
15414 "ITEM" "PRIORITY" "SCHEDULED" "TAGS" "TIMESTAMP" "TIMESTAMP_IA" "TODO")
15415 "The special properties valid in Org mode.
15416 These are properties that are not defined in the property drawer,
15417 but in some other way.")
15419 (defconst org-default-properties
15420 '("ARCHIVE" "CATEGORY" "SUMMARY" "DESCRIPTION" "CUSTOM_ID"
15421 "LOCATION" "LOGGING" "COLUMNS" "VISIBILITY"
15422 "TABLE_EXPORT_FORMAT" "TABLE_EXPORT_FILE"
15423 "EXPORT_OPTIONS" "EXPORT_TEXT" "EXPORT_FILE_NAME"
15424 "EXPORT_TITLE" "EXPORT_AUTHOR" "EXPORT_DATE" "UNNUMBERED"
15425 "ORDERED" "NOBLOCKING" "COOKIE_DATA" "LOG_INTO_DRAWER" "REPEAT_TO_STATE"
15426 "CLOCK_MODELINE_TOTAL" "STYLE" "HTML_CONTAINER_CLASS")
15427 "Some properties that are used by Org mode for various purposes.
15428 Being in this list makes sure that they are offered for completion.")
15430 (defun org--update-property-plist (key val props)
15431 "Associate KEY to VAL in alist PROPS.
15432 Modifications are made by side-effect. Return new alist."
15433 (let* ((appending (string= (substring key -1) "+"))
15434 (key (if appending (substring key 0 -1) key))
15435 (old (assoc-string key props t)))
15436 (if (not old) (cons (cons key val) props)
15437 (setcdr old (if appending (concat (cdr old) " " val) val))
15438 props)))
15440 (defun org-get-property-block (&optional beg force)
15441 "Return the (beg . end) range of the body of the property drawer.
15442 BEG is the beginning of the current subtree, or of the part
15443 before the first headline. If it is not given, it will be found.
15444 If the drawer does not exist, create it if FORCE is non-nil, or
15445 return nil."
15446 (org-with-wide-buffer
15447 (when beg (goto-char beg))
15448 (unless (org-before-first-heading-p)
15449 (let ((beg (cond (beg)
15450 ((or (not (featurep 'org-inlinetask))
15451 (org-inlinetask-in-task-p))
15452 (org-back-to-heading t))
15453 (t (org-with-limited-levels (org-back-to-heading t))))))
15454 (forward-line)
15455 (when (org-looking-at-p org-planning-line-re) (forward-line))
15456 (cond ((looking-at org-property-drawer-re)
15457 (forward-line)
15458 (cons (point) (progn (goto-char (match-end 0))
15459 (line-beginning-position))))
15460 (force
15461 (goto-char beg)
15462 (org-insert-property-drawer)
15463 (let ((pos (save-excursion (search-forward ":END:")
15464 (line-beginning-position))))
15465 (cons pos pos))))))))
15467 (defun org-at-property-p ()
15468 "Non-nil when point is inside a property drawer.
15469 See `org-property-re' for match data, if applicable."
15470 (save-excursion
15471 (beginning-of-line)
15472 (and (looking-at org-property-re)
15473 (let ((property-drawer (save-match-data (org-get-property-block))))
15474 (and property-drawer (< (point) (cdr property-drawer)))))))
15476 (defun org-property-action ()
15477 "Do an action on properties."
15478 (interactive)
15479 (unless (org-at-property-p) (user-error "Not at a property"))
15480 (message "Property Action: [s]et [d]elete [D]elete globally [c]ompute")
15481 (let ((c (read-char-exclusive)))
15482 (case c
15483 (?s (call-interactively #'org-set-property))
15484 (?d (call-interactively #'org-delete-property))
15485 (?D (call-interactively #'org-delete-property-globally))
15486 (?c (call-interactively #'org-compute-property-at-point))
15487 (otherwise (user-error "No such property action %c" c)))))
15489 (defun org-inc-effort ()
15490 "Increment the value of the effort property in the current entry."
15491 (interactive)
15492 (org-set-effort nil t))
15494 (defvar org-clock-effort) ; Defined in org-clock.el.
15495 (defvar org-clock-current-task) ; Defined in org-clock.el.
15496 (defun org-set-effort (&optional value increment)
15497 "Set the effort property of the current entry.
15498 With numerical prefix arg, use the nth allowed value, 0 stands for the
15499 10th allowed value.
15501 When INCREMENT is non-nil, set the property to the next allowed value."
15502 (interactive "P")
15503 (if (equal value 0) (setq value 10))
15504 (let* ((completion-ignore-case t)
15505 (prop org-effort-property)
15506 (cur (org-entry-get nil prop))
15507 (allowed (org-property-get-allowed-values nil prop 'table))
15508 (existing (mapcar 'list (org-property-values prop)))
15509 (heading (nth 4 (org-heading-components)))
15511 (val (cond
15512 ((stringp value) value)
15513 ((and allowed (integerp value))
15514 (or (car (nth (1- value) allowed))
15515 (car (org-last allowed))))
15516 ((and allowed increment)
15517 (or (caadr (member (list cur) allowed))
15518 (user-error "Allowed effort values are not set")))
15519 (allowed
15520 (message "Select 1-9,0, [RET%s]: %s"
15521 (if cur (concat "=" cur) "")
15522 (mapconcat 'car allowed " "))
15523 (setq rpl (read-char-exclusive))
15524 (if (equal rpl ?\r)
15526 (setq rpl (- rpl ?0))
15527 (if (equal rpl 0) (setq rpl 10))
15528 (if (and (> rpl 0) (<= rpl (length allowed)))
15529 (car (nth (1- rpl) allowed))
15530 (org-completing-read "Effort: " allowed nil))))
15532 (let (org-completion-use-ido org-completion-use-iswitchb)
15533 (org-completing-read
15534 (concat "Effort " (if (and cur (string-match "\\S-" cur))
15535 (concat "[" cur "]") "")
15536 ": ")
15537 existing nil nil "" nil cur))))))
15538 (unless (equal (org-entry-get nil prop) val)
15539 (org-entry-put nil prop val))
15540 (org-refresh-property
15541 '((effort . identity)
15542 (effort-minutes . org-duration-string-to-minutes))
15543 val)
15544 (when (string= heading org-clock-current-task)
15545 (setq org-clock-effort (get-text-property (point-at-bol) 'effort))
15546 (org-clock-update-mode-line))
15547 (message "%s is now %s" prop val)))
15549 (defun org-entry-properties (&optional pom which)
15550 "Get all properties of the current entry.
15552 When POM is a buffer position, get all properties from the entry
15553 there instead.
15555 This includes the TODO keyword, the tags, time strings for
15556 deadline, scheduled, and clocking, and any additional properties
15557 defined in the entry.
15559 If WHICH is nil or `all', get all properties. If WHICH is
15560 `special' or `standard', only get that subclass. If WHICH is
15561 a string, only get that property.
15563 Return value is an alist. Keys are properties, as upcased
15564 strings."
15565 (org-with-point-at pom
15566 (when (and (derived-mode-p 'org-mode)
15567 (ignore-errors (org-back-to-heading t)))
15568 (catch 'exit
15569 (let* ((beg (point))
15570 (specific (and (stringp which) (upcase which)))
15571 (which (cond ((not specific) which)
15572 ((member specific org-special-properties) 'special)
15573 (t 'standard)))
15574 props)
15575 ;; Get the special properties, like TODO and TAGS.
15576 (when (memq which '(nil all special))
15577 (when (or (not specific) (string= specific "CLOCKSUM"))
15578 (let ((clocksum (get-text-property (point) :org-clock-minutes)))
15579 (when clocksum
15580 (push (cons "CLOCKSUM"
15581 (org-columns-number-to-string
15582 (/ (float clocksum) 60.) 'add_times))
15583 props)))
15584 (when specific (throw 'exit props)))
15585 (when (or (not specific) (string= specific "CLOCKSUM_T"))
15586 (let ((clocksumt (get-text-property (point)
15587 :org-clock-minutes-today)))
15588 (when clocksumt
15589 (push (cons "CLOCKSUM_T"
15590 (org-columns-number-to-string
15591 (/ (float clocksumt) 60.) 'add_times))
15592 props)))
15593 (when specific (throw 'exit props)))
15594 (when (or (not specific) (string= specific "ITEM"))
15595 (when (looking-at org-complex-heading-regexp)
15596 (push (cons "ITEM"
15597 (concat
15598 (org-match-string-no-properties 1)
15599 (let ((title (org-match-string-no-properties 4)))
15600 (when (org-string-nw-p title)
15601 (concat " " (org-remove-tabs title))))))
15602 props))
15603 (when specific (throw 'exit props)))
15604 (when (or (not specific) (string= specific "TODO"))
15605 (when (and (looking-at org-todo-line-regexp) (match-end 2))
15606 (push (cons "TODO" (org-match-string-no-properties 2)) props))
15607 (when specific (throw 'exit props)))
15608 (when (or (not specific) (string= specific "PRIORITY"))
15609 (when (looking-at org-priority-regexp)
15610 (push (cons "PRIORITY" (org-match-string-no-properties 2)) props))
15611 (when specific (throw 'exit props)))
15612 (when (or (not specific) (string= specific "FILE"))
15613 (push (cons "FILE" (buffer-file-name (buffer-base-buffer)))
15614 props)
15615 (when specific (throw 'exit props)))
15616 (when (or (not specific) (string= specific "TAGS"))
15617 (let ((value (org-string-nw-p (org-get-tags-string))))
15618 (when value (push (cons "TAGS" value) props)))
15619 (when specific (throw 'exit props)))
15620 (when (or (not specific) (string= specific "ALLTAGS"))
15621 (let ((value (org-get-tags-at)))
15622 (when value
15623 (push (cons "ALLTAGS"
15624 (format ":%s:" (mapconcat #'identity value ":")))
15625 props)))
15626 (when specific (throw 'exit props)))
15627 (when (or (not specific) (string= specific "BLOCKED"))
15628 (push (cons "BLOCKED" (if (org-entry-blocked-p) "t" "")) props)
15629 (when specific (throw 'exit props)))
15630 (when (or (not specific)
15631 (member specific '("CLOSED" "DEADLINE" "SCHEDULED")))
15632 (forward-line)
15633 (when (org-looking-at-p org-planning-line-re)
15634 (end-of-line)
15635 (let ((bol (line-beginning-position)))
15636 ;; Backward compatibility: time keywords used to be
15637 ;; configurable (before 8.3). Make sure we get the
15638 ;; correct keyword.
15639 (dolist (k (if (not specific)
15640 (list org-closed-string
15641 org-deadline-string
15642 org-scheduled-string)
15643 (list (cond ((string= specific "CLOSED")
15644 org-closed-string)
15645 ((string= specific "DEADLINE")
15646 org-deadline-string)
15647 (t org-scheduled-string)))))
15648 (save-excursion
15649 (when (search-backward k bol t)
15650 (goto-char (match-end 0))
15651 (skip-chars-forward " \t")
15652 (and (looking-at org-ts-regexp-both)
15653 (push (cons specific (match-string 0)) props)))))))
15654 (when specific (throw 'exit props)))
15655 (when (or (not specific)
15656 (member specific '("TIMESTAMP" "TIMESTAMP_IA")))
15657 (let ((find-ts
15658 (lambda (end ts)
15659 (let ((regexp (if (or (string= specific "TIMESTAMP")
15660 (assoc "TIMESTAMP_IA" ts))
15661 org-ts-regexp
15662 org-ts-regexp-both)))
15663 (catch 'next
15664 (while (re-search-forward regexp end t)
15665 (backward-char)
15666 (let ((object (org-element-context)))
15667 ;; Accept to match timestamps in node
15668 ;; properties, too.
15669 (when (memq (org-element-type object)
15670 '(node-property timestamp))
15671 (let ((type
15672 (org-element-property :type object)))
15673 (cond
15674 ((and (memq type '(active active-range))
15675 (not (equal specific "TIMESTAMP_IA")))
15676 (unless (assoc "TIMESTAMP" ts)
15677 (push (cons "TIMESTAMP"
15678 (org-element-property
15679 :raw-value object))
15681 (when specific (throw 'exit ts))))
15682 ((and (memq type '(inactive inactive-range))
15683 (not (string= specific "TIMESTAMP")))
15684 (unless (assoc "TIMESTAMP_IA" ts)
15685 (push (cons "TIMESTAMP_IA"
15686 (org-element-property
15687 :raw-value object))
15689 (when specific (throw 'exit ts))))))
15690 ;; Both timestamp types are found,
15691 ;; move to next part.
15692 (when (= (length ts) 2) (throw 'next ts)))))
15693 ts)))))
15694 (goto-char beg)
15695 ;; First look for timestamps within headline.
15696 (let ((ts (funcall find-ts (line-end-position) nil)))
15697 (if (= (length ts) 2) (setq props (nconc ts props))
15698 (forward-line)
15699 ;; Then find timestamps in the section, skipping
15700 ;; planning line.
15701 (when (org-looking-at-p org-planning-line-re)
15702 (forward-line))
15703 (let ((end (save-excursion (outline-next-heading))))
15704 (setq props (nconc (funcall find-ts end ts) props))))))))
15705 ;; Get the standard properties, like :PROP:.
15706 (when (memq which '(nil all standard))
15707 ;; If we are looking after a specific property, delegate
15708 ;; to `org-entry-get', which is faster. However, make an
15709 ;; exception for "CATEGORY", since it can be also set
15710 ;; through keywords (i.e. #+CATEGORY).
15711 (if (and specific (not (equal specific "CATEGORY")))
15712 (let ((value (org-entry-get beg specific nil t)))
15713 (throw 'exit (and value (list (cons specific value)))))
15714 (let ((range (org-get-property-block beg)))
15715 (when range
15716 (let ((end (cdr range)) seen-base)
15717 (goto-char (car range))
15718 ;; Unlike to `org--update-property-plist', we
15719 ;; handle the case where base values is found
15720 ;; after its extension. We also forbid standard
15721 ;; properties to be named as special properties.
15722 (while (re-search-forward org-property-re end t)
15723 (let* ((key (upcase (org-match-string-no-properties 2)))
15724 (extendp (org-string-match-p "\\+\\'" key))
15725 (key-base (if extendp (substring key 0 -1) key))
15726 (value (org-match-string-no-properties 3)))
15727 (cond
15728 ((member-ignore-case key-base org-special-properties))
15729 (extendp
15730 (setq props
15731 (org--update-property-plist key value props)))
15732 ((member key seen-base))
15733 (t (push key seen-base)
15734 (let ((p (assoc-string key props t)))
15735 (if p (setcdr p (concat value " " (cdr p)))
15736 (push (cons key value) props))))))))))))
15737 (unless (assoc "CATEGORY" props)
15738 (push (cons "CATEGORY" (org-get-category)) props)
15739 (when (string= specific "CATEGORY") (throw 'exit props)))
15740 ;; Return value.
15741 (append (get-text-property beg 'org-summaries) props))))))
15743 (defun org-entry-get (pom property &optional inherit literal-nil)
15744 "Get value of PROPERTY for entry or content at point-or-marker POM.
15746 If INHERIT is non-nil and the entry does not have the property,
15747 then also check higher levels of the hierarchy. If INHERIT is
15748 the symbol `selective', use inheritance only if the setting in
15749 `org-use-property-inheritance' selects PROPERTY for inheritance.
15751 If the property is present but empty, the return value is the
15752 empty string. If the property is not present at all, nil is
15753 returned. In any other case, return the value as a string.
15754 Search is case-insensitive.
15756 If LITERAL-NIL is set, return the string value \"nil\" as
15757 a string, do not interpret it as the list atom nil. This is used
15758 for inheritance when a \"nil\" value can supersede a non-nil
15759 value higher up the hierarchy."
15760 (org-with-point-at pom
15761 (cond
15762 ((and inherit
15763 (or (not (eq inherit 'selective)) (org-property-inherit-p property)))
15764 (org-entry-get-with-inheritance property literal-nil))
15765 ((member-ignore-case property org-special-properties)
15766 ;; We need a special property. Use `org-entry-properties' to
15767 ;; retrieve it, but specify the wanted property.
15768 (cdr (assoc-string property (org-entry-properties nil property))))
15770 (let ((range (org-get-property-block)))
15771 (when range
15772 (let* ((case-fold-search t)
15773 (end (cdr range))
15774 (props
15775 (let ((global
15776 (or (assoc-string property org-file-properties t)
15777 (assoc-string property org-global-properties t)
15778 (assoc-string
15779 property org-global-properties-fixed t))))
15780 ;; Make sure to not re-use GLOBAL as
15781 ;; `org--update-property-plist' would alter it by
15782 ;; side-effect.
15783 (and global (list (cons property (cdr global))))))
15784 (find-value
15785 (lambda (key)
15786 (when (re-search-forward (org-re-property key nil t) end t)
15787 (setq props
15788 (org--update-property-plist
15789 key (org-match-string-no-properties 3) props))))))
15790 (goto-char (car range))
15791 ;; Find base value.
15792 (save-excursion (funcall find-value property))
15793 ;; Find additional values.
15794 (let ((property+ (concat property "+")))
15795 (while (funcall find-value property+)))
15796 ;; Return final value.
15797 (let ((val (cdr (assoc-string property props t))))
15798 (if literal-nil val (org-not-nil val))))))))))
15800 (defun org-property-or-variable-value (var &optional inherit)
15801 "Check if there is a property fixing the value of VAR.
15802 If yes, return this value. If not, return the current value of the variable."
15803 (let ((prop (org-entry-get nil (symbol-name var) inherit)))
15804 (if (and prop (stringp prop) (string-match "\\S-" prop))
15805 (read prop)
15806 (symbol-value var))))
15808 (defun org-entry-delete (pom property)
15809 "Delete the property PROPERTY from entry at point-or-marker POM."
15810 (unless (member property org-special-properties)
15811 (org-with-point-at pom
15812 (let ((range (org-get-property-block)))
15813 (when range
15814 (let ((begin (car range))
15815 (end (copy-marker (cdr range))))
15816 (goto-char begin)
15817 (when (re-search-forward (org-re-property property nil t) end t)
15818 (delete-region (match-beginning 0) (line-beginning-position 2))
15819 ;; If drawer is empty, remove it altogether.
15820 (when (= begin end)
15821 (delete-region (line-beginning-position 0)
15822 (line-beginning-position 2)))
15823 (set-marker end nil))))))))
15825 ;; Multi-values properties are properties that contain multiple values
15826 ;; These values are assumed to be single words, separated by whitespace.
15827 (defun org-entry-add-to-multivalued-property (pom property value)
15828 "Add VALUE to the words in the PROPERTY in entry at point-or-marker POM."
15829 (let* ((old (org-entry-get pom property))
15830 (values (and old (org-split-string old "[ \t]"))))
15831 (setq value (org-entry-protect-space value))
15832 (unless (member value values)
15833 (setq values (append values (list value)))
15834 (org-entry-put pom property
15835 (mapconcat 'identity values " ")))))
15837 (defun org-entry-remove-from-multivalued-property (pom property value)
15838 "Remove VALUE from words in the PROPERTY in entry at point-or-marker POM."
15839 (let* ((old (org-entry-get pom property))
15840 (values (and old (org-split-string old "[ \t]"))))
15841 (setq value (org-entry-protect-space value))
15842 (when (member value values)
15843 (setq values (delete value values))
15844 (org-entry-put pom property
15845 (mapconcat 'identity values " ")))))
15847 (defun org-entry-member-in-multivalued-property (pom property value)
15848 "Is VALUE one of the words in the PROPERTY in entry at point-or-marker POM?"
15849 (let* ((old (org-entry-get pom property))
15850 (values (and old (org-split-string old "[ \t]"))))
15851 (setq value (org-entry-protect-space value))
15852 (member value values)))
15854 (defun org-entry-get-multivalued-property (pom property)
15855 "Return a list of values in a multivalued property."
15856 (let* ((value (org-entry-get pom property))
15857 (values (and value (org-split-string value "[ \t]"))))
15858 (mapcar 'org-entry-restore-space values)))
15860 (defun org-entry-put-multivalued-property (pom property &rest values)
15861 "Set multivalued PROPERTY at point-or-marker POM to VALUES.
15862 VALUES should be a list of strings. Spaces will be protected."
15863 (org-entry-put pom property
15864 (mapconcat 'org-entry-protect-space values " "))
15865 (let* ((value (org-entry-get pom property))
15866 (values (and value (org-split-string value "[ \t]"))))
15867 (mapcar 'org-entry-restore-space values)))
15869 (defun org-entry-protect-space (s)
15870 "Protect spaces and newline in string S."
15871 (while (string-match " " s)
15872 (setq s (replace-match "%20" t t s)))
15873 (while (string-match "\n" s)
15874 (setq s (replace-match "%0A" t t s)))
15877 (defun org-entry-restore-space (s)
15878 "Restore spaces and newline in string S."
15879 (while (string-match "%20" s)
15880 (setq s (replace-match " " t t s)))
15881 (while (string-match "%0A" s)
15882 (setq s (replace-match "\n" t t s)))
15885 (defvar org-entry-property-inherited-from (make-marker)
15886 "Marker pointing to the entry from where a property was inherited.
15887 Each call to `org-entry-get-with-inheritance' will set this marker to the
15888 location of the entry where the inheritance search matched. If there was
15889 no match, the marker will point nowhere.
15890 Note that also `org-entry-get' calls this function, if the INHERIT flag
15891 is set.")
15893 (defun org-entry-get-with-inheritance (property &optional literal-nil)
15894 "Get PROPERTY of entry or content at point, search higher levels if needed.
15895 The search will stop at the first ancestor which has the property defined.
15896 If the value found is \"nil\", return nil to show that the property
15897 should be considered as undefined (this is the meaning of nil here).
15898 However, if LITERAL-NIL is set, return the string value \"nil\" instead."
15899 (move-marker org-entry-property-inherited-from nil)
15900 (let (value)
15901 (org-with-wide-buffer
15902 (catch 'exit
15903 (while t
15904 (when (setq value (org-entry-get nil property nil literal-nil))
15905 (org-back-to-heading t)
15906 (move-marker org-entry-property-inherited-from (point))
15907 (throw 'exit nil))
15908 (or (org-up-heading-safe) (throw 'exit nil)))))
15909 (unless value
15910 (setq value
15911 (cdr (or (assoc-string property org-file-properties t)
15912 (assoc-string property org-global-properties t)
15913 (assoc-string property org-global-properties-fixed t)))))
15914 (if literal-nil value (org-not-nil value))))
15916 (defvar org-property-changed-functions nil
15917 "Hook called when the value of a property has changed.
15918 Each hook function should accept two arguments, the name of the property
15919 and the new value.")
15921 (defun org-entry-put (pom property value)
15922 "Set PROPERTY to VALUE for entry at point-or-marker POM.
15924 If the value is `nil', it is converted to the empty string. If
15925 it is not a string, an error is raised.
15927 PROPERTY can be any regular property (see
15928 `org-special-properties'). It can also be \"TODO\",
15929 \"PRIORITY\", \"SCHEDULED\" and \"DEADLINE\".
15931 For the last two properties, VALUE may have any of the special
15932 values \"earlier\" and \"later\". The function then increases or
15933 decreases scheduled or deadline date by one day."
15934 (cond ((null value) (setq value ""))
15935 ((not (stringp value)) (error "Properties values should be strings")))
15936 (org-with-point-at pom
15937 (if (or (not (featurep 'org-inlinetask)) (org-inlinetask-in-task-p))
15938 (org-back-to-heading t)
15939 (org-with-limited-levels (org-back-to-heading t)))
15940 (let ((beg (point)))
15941 (cond
15942 ((equal property "TODO")
15943 (cond ((not (org-string-nw-p value)) (setq value 'none))
15944 ((not (member value org-todo-keywords-1))
15945 (user-error "\"%s\" is not a valid TODO state" value)))
15946 (org-todo value)
15947 (org-set-tags nil 'align))
15948 ((equal property "PRIORITY")
15949 (org-priority (if (org-string-nw-p value) (string-to-char value) ?\s))
15950 (org-set-tags nil 'align))
15951 ((equal property "SCHEDULED")
15952 (forward-line)
15953 (if (and (org-looking-at-p org-planning-line-re)
15954 (re-search-forward
15955 org-scheduled-time-regexp (line-end-position) t))
15956 (cond ((string= value "earlier") (org-timestamp-change -1 'day))
15957 ((string= value "later") (org-timestamp-change 1 'day))
15958 ((string= value "") (org-schedule '(4)))
15959 (t (org-schedule nil value)))
15960 (if (member value '("earlier" "later" ""))
15961 (call-interactively #'org-schedule)
15962 (org-schedule nil value))))
15963 ((equal property "DEADLINE")
15964 (forward-line)
15965 (if (and (org-looking-at-p org-planning-line-re)
15966 (re-search-forward
15967 org-deadline-time-regexp (line-end-position) t))
15968 (cond ((string= value "earlier") (org-timestamp-change -1 'day))
15969 ((string= value "later") (org-timestamp-change 1 'day))
15970 ((string= value "") (org-deadline '(4)))
15971 (t (org-deadline nil value)))
15972 (if (member value '("earlier" "later" ""))
15973 (call-interactively #'org-deadline)
15974 (org-deadline nil value))))
15975 ((member property org-special-properties)
15976 (error "The %s property cannot be set with `org-entry-put'" property))
15978 (let* ((range (org-get-property-block beg 'force))
15979 (end (cdr range))
15980 (case-fold-search t))
15981 (goto-char (car range))
15982 (if (re-search-forward (org-re-property property nil t) end t)
15983 (progn (delete-region (match-beginning 0) (match-end 0))
15984 (goto-char (match-beginning 0)))
15985 (goto-char end)
15986 (insert "\n")
15987 (backward-char))
15988 (insert ":" property ":")
15989 (when value (insert " " value))
15990 (org-indent-line)))))
15991 (run-hook-with-args 'org-property-changed-functions property value)))
15993 (defun org-buffer-property-keys (&optional specials defaults columns)
15994 "Get all property keys in the current buffer.
15996 When SPECIALS is non-nil, also list the special properties that
15997 reflect things like tags and TODO state.
15999 When DEFAULTS is non-nil, also include properties that has
16000 special meaning internally: ARCHIVE, CATEGORY, SUMMARY,
16001 DESCRIPTION, LOCATION, and LOGGING and others.
16003 When COLUMNS in non-nil, also include property names given in
16004 COLUMN formats in the current buffer."
16005 (let ((case-fold-search t)
16006 (props (append
16007 (and specials org-special-properties)
16008 (and defaults (cons org-effort-property org-default-properties))
16009 nil)))
16010 (org-with-wide-buffer
16011 (goto-char (point-min))
16012 (while (re-search-forward org-property-start-re nil t)
16013 (let ((range (org-get-property-block)))
16014 (catch 'skip
16015 (unless range
16016 (when (and (not (org-before-first-heading-p))
16017 (y-or-n-p (format "Malformed drawer at %d, repair?"
16018 (line-beginning-position))))
16019 (org-get-property-block nil t))
16020 (throw 'skip nil))
16021 (goto-char (car range))
16022 (let ((begin (car range))
16023 (end (cdr range)))
16024 ;; Make sure that found property block is not located
16025 ;; before current point, as it would generate an infloop.
16026 ;; It can happen, for example, in the following
16027 ;; situation:
16029 ;; * Headline
16030 ;; :PROPERTIES:
16031 ;; ...
16032 ;; :END:
16033 ;; *************** Inlinetask
16034 ;; #+BEGIN_EXAMPLE
16035 ;; :PROPERTIES:
16036 ;; #+END_EXAMPLE
16038 (if (< begin (point)) (throw 'skip nil) (goto-char begin))
16039 (while (< (point) end)
16040 (let ((p (progn (looking-at org-property-re)
16041 (org-match-string-no-properties 2))))
16042 ;; Only add true property name, not extension symbol.
16043 (add-to-list 'props
16044 (if (not (org-string-match-p "\\+\\'" p)) p
16045 (substring p 0 -1))))
16046 (forward-line))))
16047 (outline-next-heading)))
16048 (when columns
16049 (goto-char (point-min))
16050 (while (re-search-forward "^[ \t]*\\(?:#\\+\\|:\\)COLUMNS:" nil t)
16051 (let ((element (org-element-at-point)))
16052 (when (memq (org-element-type element) '(keyword node-property))
16053 (let ((value (org-element-property :value element))
16054 (start 0))
16055 (while (string-match "%[0-9]*\\(\\S-+\\)" value start)
16056 (setq start (match-end 0))
16057 (let ((p (org-match-string-no-properties 1 value)))
16058 (unless (member-ignore-case p org-special-properties)
16059 (add-to-list 'props p))))))))))
16060 (sort props (lambda (a b) (string< (upcase a) (upcase b))))))
16062 (defun org-property-values (key)
16063 "List all non-nil values of property KEY in current buffer."
16064 (org-with-wide-buffer
16065 (goto-char (point-min))
16066 (let ((case-fold-search t)
16067 (re (org-re-property key))
16068 values)
16069 (while (re-search-forward re nil t)
16070 (add-to-list 'values (org-entry-get (point) key)))
16071 values)))
16073 (defun org-insert-property-drawer ()
16074 "Insert a property drawer into the current entry."
16075 (org-with-wide-buffer
16076 (if (or (not (featurep 'org-inlinetask)) (org-inlinetask-in-task-p))
16077 (org-back-to-heading t)
16078 (org-with-limited-levels (org-back-to-heading t)))
16079 (forward-line)
16080 (when (org-looking-at-p org-planning-line-re) (forward-line))
16081 (unless (org-looking-at-p org-property-drawer-re)
16082 (let ((inhibit-read-only t))
16083 (unless (bolp) (insert "\n"))
16084 (let ((begin (point)))
16085 (insert ":PROPERTIES:\n:END:\n")
16086 (org-indent-region begin (point)))))))
16088 (defun org-insert-drawer (&optional arg drawer)
16089 "Insert a drawer at point.
16091 When optional argument ARG is non-nil, insert a property drawer.
16093 Optional argument DRAWER, when non-nil, is a string representing
16094 drawer's name. Otherwise, the user is prompted for a name.
16096 If a region is active, insert the drawer around that region
16097 instead.
16099 Point is left between drawer's boundaries."
16100 (interactive "P")
16101 (let* ((drawer (if arg "PROPERTIES"
16102 (or drawer (read-from-minibuffer "Drawer: ")))))
16103 (cond
16104 ;; With C-u, fall back on `org-insert-property-drawer'
16105 (arg (org-insert-property-drawer))
16106 ;; Check validity of suggested drawer's name.
16107 ((not (org-string-match-p org-drawer-regexp (format ":%s:" drawer)))
16108 (user-error "Invalid drawer name"))
16109 ;; With an active region, insert a drawer at point.
16110 ((not (org-region-active-p))
16111 (progn
16112 (unless (bolp) (insert "\n"))
16113 (insert (format ":%s:\n\n:END:\n" drawer))
16114 (forward-line -2)))
16115 ;; Otherwise, insert the drawer at point
16117 (let ((rbeg (region-beginning))
16118 (rend (copy-marker (region-end))))
16119 (unwind-protect
16120 (progn
16121 (goto-char rbeg)
16122 (beginning-of-line)
16123 (when (save-excursion
16124 (re-search-forward org-outline-regexp-bol rend t))
16125 (user-error "Drawers cannot contain headlines"))
16126 ;; Position point at the beginning of the first
16127 ;; non-blank line in region. Insert drawer's opening
16128 ;; there, then indent it.
16129 (org-skip-whitespace)
16130 (beginning-of-line)
16131 (insert ":" drawer ":\n")
16132 (forward-line -1)
16133 (indent-for-tab-command)
16134 ;; Move point to the beginning of the first blank line
16135 ;; after the last non-blank line in region. Insert
16136 ;; drawer's closing, then indent it.
16137 (goto-char rend)
16138 (skip-chars-backward " \r\t\n")
16139 (insert "\n:END:")
16140 (deactivate-mark t)
16141 (indent-for-tab-command)
16142 (unless (eolp) (insert "\n")))
16143 ;; Clear marker, whatever the outcome of insertion is.
16144 (set-marker rend nil)))))))
16146 (defvar org-property-set-functions-alist nil
16147 "Property set function alist.
16148 Each entry should have the following format:
16150 (PROPERTY . READ-FUNCTION)
16152 The read function will be called with the same argument as
16153 `org-completing-read'.")
16155 (defun org-set-property-function (property)
16156 "Get the function that should be used to set PROPERTY.
16157 This is computed according to `org-property-set-functions-alist'."
16158 (or (cdr (assoc property org-property-set-functions-alist))
16159 'org-completing-read))
16161 (defun org-read-property-value (property)
16162 "Read PROPERTY value from user."
16163 (let* ((completion-ignore-case t)
16164 (allowed (org-property-get-allowed-values nil property 'table))
16165 (cur (org-entry-get nil property))
16166 (prompt (concat property " value"
16167 (if (and cur (string-match "\\S-" cur))
16168 (concat " [" cur "]") "") ": "))
16169 (set-function (org-set-property-function property))
16170 (val (if allowed
16171 (funcall set-function prompt allowed nil
16172 (not (get-text-property 0 'org-unrestricted
16173 (caar allowed))))
16174 (let (org-completion-use-ido org-completion-use-iswitchb)
16175 (funcall set-function prompt
16176 (mapcar 'list (org-property-values property))
16177 nil nil "" nil cur)))))
16178 (org-trim val)))
16180 (defvar org-last-set-property nil)
16181 (defvar org-last-set-property-value nil)
16182 (defun org-read-property-name ()
16183 "Read a property name."
16184 (let* ((completion-ignore-case t)
16185 (keys (org-buffer-property-keys nil t t))
16186 (default-prop (or (save-excursion
16187 (save-match-data
16188 (beginning-of-line)
16189 (and (looking-at "^\\s-*:\\([^:\n]+\\):")
16190 (null (string= (match-string 1) "END"))
16191 (match-string 1))))
16192 org-last-set-property))
16193 (property (org-icompleting-read
16194 (concat "Property"
16195 (if default-prop (concat " [" default-prop "]") "")
16196 ": ")
16197 (mapcar 'list keys)
16198 nil nil nil nil
16199 default-prop)))
16200 (if (member property keys)
16201 property
16202 (or (cdr (assoc (downcase property)
16203 (mapcar (lambda (x) (cons (downcase x) x))
16204 keys)))
16205 property))))
16207 (defun org-set-property-and-value (use-last)
16208 "Allow to set [PROPERTY]: [value] direction from prompt.
16209 When use-default, don't even ask, just use the last
16210 \"[PROPERTY]: [value]\" string from the history."
16211 (interactive "P")
16212 (let* ((completion-ignore-case t)
16213 (pv (or (and use-last org-last-set-property-value)
16214 (org-completing-read
16215 "Enter a \"[Property]: [value]\" pair: "
16216 nil nil nil nil nil
16217 org-last-set-property-value)))
16218 prop val)
16219 (when (string-match "^[ \t]*\\([^:]+\\):[ \t]*\\(.*\\)[ \t]*$" pv)
16220 (setq prop (match-string 1 pv)
16221 val (match-string 2 pv))
16222 (org-set-property prop val))))
16224 (defun org-set-property (property value)
16225 "In the current entry, set PROPERTY to VALUE.
16226 When called interactively, this will prompt for a property name, offering
16227 completion on existing and default properties. And then it will prompt
16228 for a value, offering completion either on allowed values (via an inherited
16229 xxx_ALL property) or on existing values in other instances of this property
16230 in the current file."
16231 (interactive (list nil nil))
16232 (let* ((property (or property (org-read-property-name)))
16233 (value (or value (org-read-property-value property)))
16234 (fn (cdr (assoc property org-properties-postprocess-alist))))
16235 (setq org-last-set-property property)
16236 (setq org-last-set-property-value (concat property ": " value))
16237 ;; Possibly postprocess the inserted value:
16238 (when fn (setq value (funcall fn value)))
16239 (unless (equal (org-entry-get nil property) value)
16240 (org-entry-put nil property value))))
16242 (defun org-delete-property (property)
16243 "In the current entry, delete PROPERTY."
16244 (interactive
16245 (let* ((completion-ignore-case t)
16246 (cat (org-entry-get (point) "CATEGORY"))
16247 (props0 (org-entry-properties nil 'standard))
16248 (props (if cat props0
16249 (delete `("CATEGORY" . ,(org-get-category)) props0)))
16250 (prop (if (< 1 (length props))
16251 (org-icompleting-read "Property: " props nil t)
16252 (caar props))))
16253 (list prop)))
16254 (if (not property)
16255 (message "No property to delete in this entry")
16256 (org-entry-delete nil property)
16257 (message "Property \"%s\" deleted" property)))
16259 (defun org-delete-property-globally (property)
16260 "Remove PROPERTY globally, from all entries."
16261 (interactive
16262 (let* ((completion-ignore-case t)
16263 (prop (org-icompleting-read
16264 "Globally remove property: "
16265 (mapcar 'list (org-buffer-property-keys)))))
16266 (list prop)))
16267 (save-excursion
16268 (save-restriction
16269 (widen)
16270 (goto-char (point-min))
16271 (let ((cnt 0))
16272 (while (re-search-forward
16273 (org-re-property property)
16274 nil t)
16275 (setq cnt (1+ cnt))
16276 (delete-region (match-beginning 0) (1+ (point-at-eol))))
16277 (message "Property \"%s\" removed from %d entries" property cnt)))))
16279 (defvar org-columns-current-fmt-compiled) ; defined in org-colview.el
16281 (defun org-compute-property-at-point ()
16282 "Compute the property at point.
16283 This looks for an enclosing column format, extracts the operator and
16284 then applies it to the property in the column format's scope."
16285 (interactive)
16286 (unless (org-at-property-p)
16287 (user-error "Not at a property"))
16288 (let ((prop (org-match-string-no-properties 2)))
16289 (org-columns-get-format-and-top-level)
16290 (unless (nth 3 (assoc prop org-columns-current-fmt-compiled))
16291 (user-error "No operator defined for property %s" prop))
16292 (org-columns-compute prop)))
16294 (defvar org-property-allowed-value-functions nil
16295 "Hook for functions supplying allowed values for a specific property.
16296 The functions must take a single argument, the name of the property, and
16297 return a flat list of allowed values. If \":ETC\" is one of
16298 the values, this means that these values are intended as defaults for
16299 completion, but that other values should be allowed too.
16300 The functions must return nil if they are not responsible for this
16301 property.")
16303 (defun org-property-get-allowed-values (pom property &optional table)
16304 "Get allowed values for the property PROPERTY.
16305 When TABLE is non-nil, return an alist that can directly be used for
16306 completion."
16307 (let (vals)
16308 (cond
16309 ((equal property "TODO")
16310 (setq vals (org-with-point-at pom
16311 (append org-todo-keywords-1 '("")))))
16312 ((equal property "PRIORITY")
16313 (let ((n org-lowest-priority))
16314 (while (>= n org-highest-priority)
16315 (push (char-to-string n) vals)
16316 (setq n (1- n)))))
16317 ((member property org-special-properties))
16318 ((setq vals (run-hook-with-args-until-success
16319 'org-property-allowed-value-functions property)))
16321 (setq vals (org-entry-get pom (concat property "_ALL") 'inherit))
16322 (when (and vals (string-match "\\S-" vals))
16323 (setq vals (car (read-from-string (concat "(" vals ")"))))
16324 (setq vals (mapcar (lambda (x)
16325 (cond ((stringp x) x)
16326 ((numberp x) (number-to-string x))
16327 ((symbolp x) (symbol-name x))
16328 (t "???")))
16329 vals)))))
16330 (when (member ":ETC" vals)
16331 (setq vals (remove ":ETC" vals))
16332 (org-add-props (car vals) '(org-unrestricted t)))
16333 (if table (mapcar 'list vals) vals)))
16335 (defun org-property-previous-allowed-value (&optional previous)
16336 "Switch to the next allowed value for this property."
16337 (interactive)
16338 (org-property-next-allowed-value t))
16340 (defun org-property-next-allowed-value (&optional previous)
16341 "Switch to the next allowed value for this property."
16342 (interactive)
16343 (unless (org-at-property-p)
16344 (user-error "Not at a property"))
16345 (let* ((prop (car (save-match-data (org-split-string (match-string 1) ":"))))
16346 (key (match-string 2))
16347 (value (match-string 3))
16348 (allowed (or (org-property-get-allowed-values (point) key)
16349 (and (member value '("[ ]" "[-]" "[X]"))
16350 '("[ ]" "[X]"))))
16351 (heading (save-match-data (nth 4 (org-heading-components))))
16352 nval)
16353 (unless allowed
16354 (user-error "Allowed values for this property have not been defined"))
16355 (if previous (setq allowed (reverse allowed)))
16356 (if (member value allowed)
16357 (setq nval (car (cdr (member value allowed)))))
16358 (setq nval (or nval (car allowed)))
16359 (if (equal nval value)
16360 (user-error "Only one allowed value for this property"))
16361 (org-at-property-p)
16362 (replace-match (concat " :" key ": " nval) t t)
16363 (org-indent-line)
16364 (beginning-of-line 1)
16365 (skip-chars-forward " \t")
16366 (when (equal prop org-effort-property)
16367 (org-refresh-property
16368 '((effort . identity)
16369 (effort-minutes . org-duration-string-to-minutes))
16370 nval)
16371 (when (string= org-clock-current-task heading)
16372 (setq org-clock-effort nval)
16373 (org-clock-update-mode-line)))
16374 (run-hook-with-args 'org-property-changed-functions key nval)))
16376 (defun org-find-olp (path &optional this-buffer)
16377 "Return a marker pointing to the entry at outline path OLP.
16378 If anything goes wrong, throw an error.
16379 You can wrap this call to catch the error like this:
16381 (condition-case msg
16382 (org-mobile-locate-entry (match-string 4))
16383 (error (nth 1 msg)))
16385 The return value will then be either a string with the error message,
16386 or a marker if everything is OK.
16388 If THIS-BUFFER is set, the outline path does not contain a file,
16389 only headings."
16390 (let* ((file (if this-buffer buffer-file-name (pop path)))
16391 (buffer (if this-buffer (current-buffer) (find-file-noselect file)))
16392 (level 1)
16393 (lmin 1)
16394 (lmax 1)
16395 limit re end found pos heading cnt flevel)
16396 (unless buffer (error "File not found :%s" file))
16397 (with-current-buffer buffer
16398 (save-excursion
16399 (save-restriction
16400 (widen)
16401 (setq limit (point-max))
16402 (goto-char (point-min))
16403 (while (setq heading (pop path))
16404 (setq re (format org-complex-heading-regexp-format
16405 (regexp-quote heading)))
16406 (setq cnt 0 pos (point))
16407 (while (re-search-forward re end t)
16408 (setq level (- (match-end 1) (match-beginning 1)))
16409 (if (and (>= level lmin) (<= level lmax))
16410 (setq found (match-beginning 0) flevel level cnt (1+ cnt))))
16411 (when (= cnt 0) (error "Heading not found on level %d: %s"
16412 lmax heading))
16413 (when (> cnt 1) (error "Heading not unique on level %d: %s"
16414 lmax heading))
16415 (goto-char found)
16416 (setq lmin (1+ flevel) lmax (+ lmin (if org-odd-levels-only 1 0)))
16417 (setq end (save-excursion (org-end-of-subtree t t))))
16418 (when (org-at-heading-p)
16419 (point-marker)))))))
16421 (defun org-find-exact-headline-in-buffer (heading &optional buffer pos-only)
16422 "Find node HEADING in BUFFER.
16423 Return a marker to the heading if it was found, or nil if not.
16424 If POS-ONLY is set, return just the position instead of a marker.
16426 The heading text must match exact, but it may have a TODO keyword,
16427 a priority cookie and tags in the standard locations."
16428 (with-current-buffer (or buffer (current-buffer))
16429 (save-excursion
16430 (save-restriction
16431 (widen)
16432 (goto-char (point-min))
16433 (let (case-fold-search)
16434 (if (re-search-forward
16435 (format org-complex-heading-regexp-format
16436 (regexp-quote heading)) nil t)
16437 (if pos-only
16438 (match-beginning 0)
16439 (move-marker (make-marker) (match-beginning 0)))))))))
16441 (defun org-find-exact-heading-in-directory (heading &optional dir)
16442 "Find Org node headline HEADING in all .org files in directory DIR.
16443 When the target headline is found, return a marker to this location."
16444 (let ((files (directory-files (or dir default-directory)
16445 t "\\`[^.#].*\\.org\\'"))
16446 file visiting m buffer)
16447 (catch 'found
16448 (while (setq file (pop files))
16449 (message "trying %s" file)
16450 (setq visiting (org-find-base-buffer-visiting file))
16451 (setq buffer (or visiting (find-file-noselect file)))
16452 (setq m (org-find-exact-headline-in-buffer
16453 heading buffer))
16454 (when (and (not m) (not visiting)) (kill-buffer buffer))
16455 (and m (throw 'found m))))))
16457 (defun org-find-entry-with-id (ident)
16458 "Locate the entry that contains the ID property with exact value IDENT.
16459 IDENT can be a string, a symbol or a number, this function will search for
16460 the string representation of it.
16461 Return the position where this entry starts, or nil if there is no such entry."
16462 (interactive "sID: ")
16463 (let ((id (cond
16464 ((stringp ident) ident)
16465 ((symbol-name ident) (symbol-name ident))
16466 ((numberp ident) (number-to-string ident))
16467 (t (error "IDENT %s must be a string, symbol or number" ident))))
16468 (case-fold-search nil))
16469 (save-excursion
16470 (save-restriction
16471 (widen)
16472 (goto-char (point-min))
16473 (when (re-search-forward
16474 (concat "^[ \t]*:ID:[ \t]+" (regexp-quote id) "[ \t]*$")
16475 nil t)
16476 (org-back-to-heading t)
16477 (point))))))
16479 ;;;; Timestamps
16481 (defvar org-last-changed-timestamp nil)
16482 (defvar org-last-inserted-timestamp nil
16483 "The last time stamp inserted with `org-insert-time-stamp'.")
16484 (defvar org-ts-what) ; dynamically scoped parameter
16486 (defun org-time-stamp (arg &optional inactive)
16487 "Prompt for a date/time and insert a time stamp.
16488 If the user specifies a time like HH:MM or if this command is
16489 called with at least one prefix argument, the time stamp contains
16490 the date and the time. Otherwise, only the date is be included.
16492 All parts of a date not specified by the user is filled in from
16493 the current date/time. So if you just press return without
16494 typing anything, the time stamp will represent the current
16495 date/time.
16497 If there is already a timestamp at the cursor, it will be
16498 modified.
16500 With two universal prefix arguments, insert an active timestamp
16501 with the current time without prompting the user.
16503 When called from lisp, the timestamp is inactive if INACTIVE is
16504 non-nil."
16505 (interactive "P")
16506 (let* ((ts nil)
16507 (default-time
16508 ;; Default time is either today, or, when entering a range,
16509 ;; the range start.
16510 (if (or (and (org-at-timestamp-p t) (setq ts (match-string 0)))
16511 (save-excursion
16512 (re-search-backward
16513 (concat org-ts-regexp "--?-?\\=") ; 1-3 minuses
16514 (- (point) 20) t)))
16515 (apply 'encode-time (org-parse-time-string (match-string 1)))
16516 (current-time)))
16517 (default-input (and ts (org-get-compact-tod ts)))
16518 (repeater (save-excursion
16519 (save-match-data
16520 (beginning-of-line)
16521 (when (re-search-forward
16522 "\\([.+-]+[0-9]+[hdwmy] ?\\)+" ;;\\(?:[/ ][-+]?[0-9]+[hdwmy]\\)?\\) ?"
16523 (save-excursion (progn (end-of-line) (point))) t)
16524 (match-string 0)))))
16525 org-time-was-given org-end-time-was-given time)
16526 (cond
16527 ((and (org-at-timestamp-p t)
16528 (memq last-command '(org-time-stamp org-time-stamp-inactive))
16529 (memq this-command '(org-time-stamp org-time-stamp-inactive)))
16530 (insert "--")
16531 (setq time (let ((this-command this-command))
16532 (org-read-date arg 'totime nil nil
16533 default-time default-input inactive)))
16534 (org-insert-time-stamp time (or org-time-was-given arg) inactive))
16535 ((org-at-timestamp-p t)
16536 (setq time (let ((this-command this-command))
16537 (org-read-date arg 'totime nil nil default-time default-input inactive)))
16538 (when (org-at-timestamp-p t) ; just to get the match data
16539 ; (setq inactive (eq (char-after (match-beginning 0)) ?\[))
16540 (replace-match "")
16541 (setq org-last-changed-timestamp
16542 (org-insert-time-stamp
16543 time (or org-time-was-given arg)
16544 inactive nil nil (list org-end-time-was-given)))
16545 (when repeater (goto-char (1- (point))) (insert " " repeater)
16546 (setq org-last-changed-timestamp
16547 (concat (substring org-last-inserted-timestamp 0 -1)
16548 " " repeater ">"))))
16549 (message "Timestamp updated"))
16550 ((equal arg '(16))
16551 (org-insert-time-stamp (current-time) t inactive))
16553 (setq time (let ((this-command this-command))
16554 (org-read-date arg 'totime nil nil default-time default-input inactive)))
16555 (org-insert-time-stamp time (or org-time-was-given arg) inactive
16556 nil nil (list org-end-time-was-given))))))
16558 ;; FIXME: can we use this for something else, like computing time differences?
16559 (defun org-get-compact-tod (s)
16560 (when (string-match "\\(\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)\\(-\\(\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)\\)?" s)
16561 (let* ((t1 (match-string 1 s))
16562 (h1 (string-to-number (match-string 2 s)))
16563 (m1 (string-to-number (match-string 3 s)))
16564 (t2 (and (match-end 4) (match-string 5 s)))
16565 (h2 (and t2 (string-to-number (match-string 6 s))))
16566 (m2 (and t2 (string-to-number (match-string 7 s))))
16567 dh dm)
16568 (if (not t2)
16570 (setq dh (- h2 h1) dm (- m2 m1))
16571 (if (< dm 0) (setq dm (+ dm 60) dh (1- dh)))
16572 (concat t1 "+" (number-to-string dh)
16573 (and (/= 0 dm) (format ":%02d" dm)))))))
16575 (defun org-time-stamp-inactive (&optional arg)
16576 "Insert an inactive time stamp.
16577 An inactive time stamp is enclosed in square brackets instead of angle
16578 brackets. It is inactive in the sense that it does not trigger agenda entries,
16579 does not link to the calendar and cannot be changed with the S-cursor keys.
16580 So these are more for recording a certain time/date."
16581 (interactive "P")
16582 (org-time-stamp arg 'inactive))
16584 (defvar org-date-ovl (make-overlay 1 1))
16585 (overlay-put org-date-ovl 'face 'org-date-selected)
16586 (org-detach-overlay org-date-ovl)
16588 (defvar org-ans1) ; dynamically scoped parameter
16589 (defvar org-ans2) ; dynamically scoped parameter
16591 (defvar org-plain-time-of-day-regexp) ; defined below
16593 (defvar org-overriding-default-time nil) ; dynamically scoped
16594 (defvar org-read-date-overlay nil)
16595 (defvar org-dcst nil) ; dynamically scoped
16596 (defvar org-read-date-history nil)
16597 (defvar org-read-date-final-answer nil)
16598 (defvar org-read-date-analyze-futurep nil)
16599 (defvar org-read-date-analyze-forced-year nil)
16600 (defvar org-read-date-inactive)
16602 (defvar org-read-date-minibuffer-local-map
16603 (let* ((org-replace-disputed-keys nil)
16604 (map (make-sparse-keymap)))
16605 (set-keymap-parent map minibuffer-local-map)
16606 (org-defkey map (kbd ".")
16607 (lambda () (interactive)
16608 ;; Are we at the beginning of the prompt?
16609 (if (looking-back "^[^:]+: ")
16610 (org-eval-in-calendar '(calendar-goto-today))
16611 (insert "."))))
16612 (org-defkey map (kbd "C-.")
16613 (lambda () (interactive)
16614 (org-eval-in-calendar '(calendar-goto-today))))
16615 (org-defkey map [(meta shift left)]
16616 (lambda () (interactive)
16617 (org-eval-in-calendar '(calendar-backward-month 1))))
16618 (org-defkey map [(meta shift right)]
16619 (lambda () (interactive)
16620 (org-eval-in-calendar '(calendar-forward-month 1))))
16621 (org-defkey map [(meta shift up)]
16622 (lambda () (interactive)
16623 (org-eval-in-calendar '(calendar-backward-year 1))))
16624 (org-defkey map [(meta shift down)]
16625 (lambda () (interactive)
16626 (org-eval-in-calendar '(calendar-forward-year 1))))
16627 (org-defkey map [?\e (shift left)]
16628 (lambda () (interactive)
16629 (org-eval-in-calendar '(calendar-backward-month 1))))
16630 (org-defkey map [?\e (shift right)]
16631 (lambda () (interactive)
16632 (org-eval-in-calendar '(calendar-forward-month 1))))
16633 (org-defkey map [?\e (shift up)]
16634 (lambda () (interactive)
16635 (org-eval-in-calendar '(calendar-backward-year 1))))
16636 (org-defkey map [?\e (shift down)]
16637 (lambda () (interactive)
16638 (org-eval-in-calendar '(calendar-forward-year 1))))
16639 (org-defkey map [(shift up)]
16640 (lambda () (interactive)
16641 (org-eval-in-calendar '(calendar-backward-week 1))))
16642 (org-defkey map [(shift down)]
16643 (lambda () (interactive)
16644 (org-eval-in-calendar '(calendar-forward-week 1))))
16645 (org-defkey map [(shift left)]
16646 (lambda () (interactive)
16647 (org-eval-in-calendar '(calendar-backward-day 1))))
16648 (org-defkey map [(shift right)]
16649 (lambda () (interactive)
16650 (org-eval-in-calendar '(calendar-forward-day 1))))
16651 (org-defkey map "!"
16652 (lambda () (interactive)
16653 (org-eval-in-calendar '(diary-view-entries))
16654 (message "")))
16655 (org-defkey map ">"
16656 (lambda () (interactive)
16657 (org-eval-in-calendar '(calendar-scroll-left 1))))
16658 (org-defkey map "<"
16659 (lambda () (interactive)
16660 (org-eval-in-calendar '(calendar-scroll-right 1))))
16661 (org-defkey map "\C-v"
16662 (lambda () (interactive)
16663 (org-eval-in-calendar
16664 '(calendar-scroll-left-three-months 1))))
16665 (org-defkey map "\M-v"
16666 (lambda () (interactive)
16667 (org-eval-in-calendar
16668 '(calendar-scroll-right-three-months 1))))
16669 map)
16670 "Keymap for minibuffer commands when using `org-read-date'.")
16672 (defvar org-def)
16673 (defvar org-defdecode)
16674 (defvar org-with-time)
16676 (defun org-read-date (&optional org-with-time to-time from-string prompt
16677 default-time default-input inactive)
16678 "Read a date, possibly a time, and make things smooth for the user.
16679 The prompt will suggest to enter an ISO date, but you can also enter anything
16680 which will at least partially be understood by `parse-time-string'.
16681 Unrecognized parts of the date will default to the current day, month, year,
16682 hour and minute. If this command is called to replace a timestamp at point,
16683 or to enter the second timestamp of a range, the default time is taken
16684 from the existing stamp. Furthermore, the command prefers the future,
16685 so if you are giving a date where the year is not given, and the day-month
16686 combination is already past in the current year, it will assume you
16687 mean next year. For details, see the manual. A few examples:
16689 3-2-5 --> 2003-02-05
16690 feb 15 --> currentyear-02-15
16691 2/15 --> currentyear-02-15
16692 sep 12 9 --> 2009-09-12
16693 12:45 --> today 12:45
16694 22 sept 0:34 --> currentyear-09-22 0:34
16695 12 --> currentyear-currentmonth-12
16696 Fri --> nearest Friday after today
16697 -Tue --> last Tuesday
16698 etc.
16700 Furthermore you can specify a relative date by giving, as the *first* thing
16701 in the input: a plus/minus sign, a number and a letter [hdwmy] to indicate
16702 change in days weeks, months, years.
16703 With a single plus or minus, the date is relative to today. With a double
16704 plus or minus, it is relative to the date in DEFAULT-TIME. E.g.
16705 +4d --> four days from today
16706 +4 --> same as above
16707 +2w --> two weeks from today
16708 ++5 --> five days from default date
16710 The function understands only English month and weekday abbreviations.
16712 While prompting, a calendar is popped up - you can also select the
16713 date with the mouse (button 1). The calendar shows a period of three
16714 months. To scroll it to other months, use the keys `>' and `<'.
16715 If you don't like the calendar, turn it off with
16716 \(setq org-read-date-popup-calendar nil)
16718 With optional argument TO-TIME, the date will immediately be converted
16719 to an internal time.
16720 With an optional argument ORG-WITH-TIME, the prompt will suggest to
16721 also insert a time. Note that when ORG-WITH-TIME is not set, you can
16722 still enter a time, and this function will inform the calling routine
16723 about this change. The calling routine may then choose to change the
16724 format used to insert the time stamp into the buffer to include the time.
16725 With optional argument FROM-STRING, read from this string instead from
16726 the user. PROMPT can overwrite the default prompt. DEFAULT-TIME is
16727 the time/date that is used for everything that is not specified by the
16728 user."
16729 (require 'parse-time)
16730 (let* ((org-time-stamp-rounding-minutes
16731 (if (equal org-with-time '(16)) '(0 0) org-time-stamp-rounding-minutes))
16732 (org-dcst org-display-custom-times)
16733 (ct (org-current-time))
16734 (org-def (or org-overriding-default-time default-time ct))
16735 (org-defdecode (decode-time org-def))
16736 (dummy (progn
16737 (when (< (nth 2 org-defdecode) org-extend-today-until)
16738 (setcar (nthcdr 2 org-defdecode) -1)
16739 (setcar (nthcdr 1 org-defdecode) 59)
16740 (setq org-def (apply 'encode-time org-defdecode)
16741 org-defdecode (decode-time org-def)))))
16742 (mouse-autoselect-window nil) ; Don't let the mouse jump
16743 (calendar-frame-setup nil)
16744 (calendar-setup nil)
16745 (calendar-move-hook nil)
16746 (calendar-view-diary-initially-flag nil)
16747 (calendar-view-holidays-initially-flag nil)
16748 (timestr (format-time-string
16749 (if org-with-time "%Y-%m-%d %H:%M" "%Y-%m-%d") org-def))
16750 (prompt (concat (if prompt (concat prompt " ") "")
16751 (format "Date+time [%s]: " timestr)))
16752 ans (org-ans0 "") org-ans1 org-ans2 final)
16754 (cond
16755 (from-string (setq ans from-string))
16756 (org-read-date-popup-calendar
16757 (save-excursion
16758 (save-window-excursion
16759 (calendar)
16760 (org-eval-in-calendar '(setq cursor-type nil) t)
16761 (unwind-protect
16762 (progn
16763 (calendar-forward-day (- (time-to-days org-def)
16764 (calendar-absolute-from-gregorian
16765 (calendar-current-date))))
16766 (org-eval-in-calendar nil t)
16767 (let* ((old-map (current-local-map))
16768 (map (copy-keymap calendar-mode-map))
16769 (minibuffer-local-map
16770 (copy-keymap org-read-date-minibuffer-local-map)))
16771 (org-defkey map (kbd "RET") 'org-calendar-select)
16772 (org-defkey map [mouse-1] 'org-calendar-select-mouse)
16773 (org-defkey map [mouse-2] 'org-calendar-select-mouse)
16774 (unwind-protect
16775 (progn
16776 (use-local-map map)
16777 (setq org-read-date-inactive inactive)
16778 (add-hook 'post-command-hook 'org-read-date-display)
16779 (setq org-ans0 (read-string prompt default-input
16780 'org-read-date-history nil))
16781 ;; org-ans0: from prompt
16782 ;; org-ans1: from mouse click
16783 ;; org-ans2: from calendar motion
16784 (setq ans (concat org-ans0 " " (or org-ans1 org-ans2))))
16785 (remove-hook 'post-command-hook 'org-read-date-display)
16786 (use-local-map old-map)
16787 (when org-read-date-overlay
16788 (delete-overlay org-read-date-overlay)
16789 (setq org-read-date-overlay nil)))))
16790 (bury-buffer "*Calendar*")))))
16792 (t ; Naked prompt only
16793 (unwind-protect
16794 (setq ans (read-string prompt default-input
16795 'org-read-date-history timestr))
16796 (when org-read-date-overlay
16797 (delete-overlay org-read-date-overlay)
16798 (setq org-read-date-overlay nil)))))
16800 (setq final (org-read-date-analyze ans org-def org-defdecode))
16802 (when org-read-date-analyze-forced-year
16803 (message "Year was forced into %s"
16804 (if org-read-date-force-compatible-dates
16805 "compatible range (1970-2037)"
16806 "range representable on this machine"))
16807 (ding))
16809 ;; One round trip to get rid of 34th of August and stuff like that....
16810 (setq final (decode-time (apply 'encode-time final)))
16812 (setq org-read-date-final-answer ans)
16814 (if to-time
16815 (apply 'encode-time final)
16816 (if (and (boundp 'org-time-was-given) org-time-was-given)
16817 (format "%04d-%02d-%02d %02d:%02d"
16818 (nth 5 final) (nth 4 final) (nth 3 final)
16819 (nth 2 final) (nth 1 final))
16820 (format "%04d-%02d-%02d" (nth 5 final) (nth 4 final) (nth 3 final))))))
16822 (defun org-read-date-display ()
16823 "Display the current date prompt interpretation in the minibuffer."
16824 (when org-read-date-display-live
16825 (when org-read-date-overlay
16826 (delete-overlay org-read-date-overlay))
16827 (when (minibufferp (current-buffer))
16828 (save-excursion
16829 (end-of-line 1)
16830 (while (not (equal (buffer-substring
16831 (max (point-min) (- (point) 4)) (point))
16832 " "))
16833 (insert " ")))
16834 (let* ((ans (concat (buffer-substring (point-at-bol) (point-max))
16835 " " (or org-ans1 org-ans2)))
16836 (org-end-time-was-given nil)
16837 (f (org-read-date-analyze ans org-def org-defdecode))
16838 (fmts (if org-dcst
16839 org-time-stamp-custom-formats
16840 org-time-stamp-formats))
16841 (fmt (if (or org-with-time
16842 (and (boundp 'org-time-was-given) org-time-was-given))
16843 (cdr fmts)
16844 (car fmts)))
16845 (txt (format-time-string fmt (apply 'encode-time f)))
16846 (txt (if org-read-date-inactive (concat "[" (substring txt 1 -1) "]") txt))
16847 (txt (concat "=> " txt)))
16848 (when (and org-end-time-was-given
16849 (string-match org-plain-time-of-day-regexp txt))
16850 (setq txt (concat (substring txt 0 (match-end 0)) "-"
16851 org-end-time-was-given
16852 (substring txt (match-end 0)))))
16853 (when org-read-date-analyze-futurep
16854 (setq txt (concat txt " (=>F)")))
16855 (setq org-read-date-overlay
16856 (make-overlay (1- (point-at-eol)) (point-at-eol)))
16857 (org-overlay-display org-read-date-overlay txt 'secondary-selection)))))
16859 (defun org-read-date-analyze (ans org-def org-defdecode)
16860 "Analyze the combined answer of the date prompt."
16861 ;; FIXME: cleanup and comment
16862 (let ((nowdecode (decode-time (current-time)))
16863 delta deltan deltaw deltadef year month day
16864 hour minute second wday pm h2 m2 tl wday1
16865 iso-year iso-weekday iso-week iso-year iso-date futurep kill-year)
16866 (setq org-read-date-analyze-futurep nil
16867 org-read-date-analyze-forced-year nil)
16868 (when (string-match "\\`[ \t]*\\.[ \t]*\\'" ans)
16869 (setq ans "+0"))
16871 (when (setq delta (org-read-date-get-relative ans (current-time) org-def))
16872 (setq ans (replace-match "" t t ans)
16873 deltan (car delta)
16874 deltaw (nth 1 delta)
16875 deltadef (nth 2 delta)))
16877 ;; Check if there is an iso week date in there. If yes, store the
16878 ;; info and postpone interpreting it until the rest of the parsing
16879 ;; is done.
16880 (when (string-match "\\<\\(?:\\([0-9]+\\)-\\)?[wW]\\([0-9]\\{1,2\\}\\)\\(?:-\\([0-6]\\)\\)?\\([ \t]\\|$\\)" ans)
16881 (setq iso-year (if (match-end 1)
16882 (org-small-year-to-year
16883 (string-to-number (match-string 1 ans))))
16884 iso-weekday (if (match-end 3)
16885 (string-to-number (match-string 3 ans)))
16886 iso-week (string-to-number (match-string 2 ans)))
16887 (setq ans (replace-match "" t t ans)))
16889 ;; Help matching ISO dates with single digit month or day, like 2006-8-11.
16890 (when (string-match
16891 "^ *\\(\\([0-9]+\\)-\\)?\\([0-1]?[0-9]\\)-\\([0-3]?[0-9]\\)\\([^-0-9]\\|$\\)" ans)
16892 (setq year (if (match-end 2)
16893 (string-to-number (match-string 2 ans))
16894 (progn (setq kill-year t)
16895 (string-to-number (format-time-string "%Y"))))
16896 month (string-to-number (match-string 3 ans))
16897 day (string-to-number (match-string 4 ans)))
16898 (if (< year 100) (setq year (+ 2000 year)))
16899 (setq ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
16900 t nil ans)))
16902 ;; Help matching dotted european dates
16903 (when (string-match
16904 "^ *\\(3[01]\\|0?[1-9]\\|[12][0-9]\\)\\. ?\\(0?[1-9]\\|1[012]\\)\\.\\( ?[1-9][0-9]\\{3\\}\\)?" ans)
16905 (setq year (if (match-end 3) (string-to-number (match-string 3 ans))
16906 (setq kill-year t)
16907 (string-to-number (format-time-string "%Y")))
16908 day (string-to-number (match-string 1 ans))
16909 month (string-to-number (match-string 2 ans))
16910 ans (replace-match (format "%04d-%02d-%02d" year month day)
16911 t nil ans)))
16913 ;; Help matching american dates, like 5/30 or 5/30/7
16914 (when (string-match
16915 "^ *\\(0?[1-9]\\|1[012]\\)/\\(0?[1-9]\\|[12][0-9]\\|3[01]\\)\\(/\\([0-9]+\\)\\)?\\([^/0-9]\\|$\\)" ans)
16916 (setq year (if (match-end 4)
16917 (string-to-number (match-string 4 ans))
16918 (progn (setq kill-year t)
16919 (string-to-number (format-time-string "%Y"))))
16920 month (string-to-number (match-string 1 ans))
16921 day (string-to-number (match-string 2 ans)))
16922 (if (< year 100) (setq year (+ 2000 year)))
16923 (setq ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
16924 t nil ans)))
16925 ;; Help matching am/pm times, because `parse-time-string' does not do that.
16926 ;; If there is a time with am/pm, and *no* time without it, we convert
16927 ;; so that matching will be successful.
16928 (loop for i from 1 to 2 do ; twice, for end time as well
16929 (when (and (not (string-match "\\(\\`\\|[^+]\\)[012]?[0-9]:[0-9][0-9]\\([ \t\n]\\|$\\)" ans))
16930 (string-match "\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\(am\\|AM\\|pm\\|PM\\)\\>" ans))
16931 (setq hour (string-to-number (match-string 1 ans))
16932 minute (if (match-end 3)
16933 (string-to-number (match-string 3 ans))
16935 pm (equal ?p
16936 (string-to-char (downcase (match-string 4 ans)))))
16937 (if (and (= hour 12) (not pm))
16938 (setq hour 0)
16939 (if (and pm (< hour 12)) (setq hour (+ 12 hour))))
16940 (setq ans (replace-match (format "%02d:%02d" hour minute)
16941 t t ans))))
16943 ;; Check if a time range is given as a duration
16944 (when (string-match "\\([012]?[0-9]\\):\\([0-6][0-9]\\)\\+\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?" ans)
16945 (setq hour (string-to-number (match-string 1 ans))
16946 h2 (+ hour (string-to-number (match-string 3 ans)))
16947 minute (string-to-number (match-string 2 ans))
16948 m2 (+ minute (if (match-end 5) (string-to-number
16949 (match-string 5 ans))0)))
16950 (if (>= m2 60) (setq h2 (1+ h2) m2 (- m2 60)))
16951 (setq ans (replace-match (format "%02d:%02d-%02d:%02d" hour minute h2 m2)
16952 t t ans)))
16954 ;; Check if there is a time range
16955 (when (boundp 'org-end-time-was-given)
16956 (setq org-time-was-given nil)
16957 (when (and (string-match org-plain-time-of-day-regexp ans)
16958 (match-end 8))
16959 (setq org-end-time-was-given (match-string 8 ans))
16960 (setq ans (concat (substring ans 0 (match-beginning 7))
16961 (substring ans (match-end 7))))))
16963 (setq tl (parse-time-string ans)
16964 day (or (nth 3 tl) (nth 3 org-defdecode))
16965 month (or (nth 4 tl)
16966 (if (and org-read-date-prefer-future
16967 (nth 3 tl) (< (nth 3 tl) (nth 3 nowdecode)))
16968 (prog1 (1+ (nth 4 nowdecode)) (setq futurep t))
16969 (nth 4 org-defdecode)))
16970 year (or (and (not kill-year) (nth 5 tl))
16971 (if (and org-read-date-prefer-future
16972 (nth 4 tl) (< (nth 4 tl) (nth 4 nowdecode)))
16973 (prog1 (1+ (nth 5 nowdecode)) (setq futurep t))
16974 (nth 5 org-defdecode)))
16975 hour (or (nth 2 tl) (nth 2 org-defdecode))
16976 minute (or (nth 1 tl) (nth 1 org-defdecode))
16977 second (or (nth 0 tl) 0)
16978 wday (nth 6 tl))
16980 (when (and (eq org-read-date-prefer-future 'time)
16981 (not (nth 3 tl)) (not (nth 4 tl)) (not (nth 5 tl))
16982 (equal day (nth 3 nowdecode))
16983 (equal month (nth 4 nowdecode))
16984 (equal year (nth 5 nowdecode))
16985 (nth 2 tl)
16986 (or (< (nth 2 tl) (nth 2 nowdecode))
16987 (and (= (nth 2 tl) (nth 2 nowdecode))
16988 (nth 1 tl)
16989 (< (nth 1 tl) (nth 1 nowdecode)))))
16990 (setq day (1+ day)
16991 futurep t))
16993 ;; Special date definitions below
16994 (cond
16995 (iso-week
16996 ;; There was an iso week
16997 (require 'cal-iso)
16998 (setq futurep nil)
16999 (setq year (or iso-year year)
17000 day (or iso-weekday wday 1)
17001 wday nil ; to make sure that the trigger below does not match
17002 iso-date (calendar-gregorian-from-absolute
17003 (calendar-absolute-from-iso
17004 (list iso-week day year))))
17005 ; FIXME: Should we also push ISO weeks into the future?
17006 ; (when (and org-read-date-prefer-future
17007 ; (not iso-year)
17008 ; (< (calendar-absolute-from-gregorian iso-date)
17009 ; (time-to-days (current-time))))
17010 ; (setq year (1+ year)
17011 ; iso-date (calendar-gregorian-from-absolute
17012 ; (calendar-absolute-from-iso
17013 ; (list iso-week day year)))))
17014 (setq month (car iso-date)
17015 year (nth 2 iso-date)
17016 day (nth 1 iso-date)))
17017 (deltan
17018 (setq futurep nil)
17019 (unless deltadef
17020 (let ((now (decode-time (current-time))))
17021 (setq day (nth 3 now) month (nth 4 now) year (nth 5 now))))
17022 (cond ((member deltaw '("d" "")) (setq day (+ day deltan)))
17023 ((equal deltaw "w") (setq day (+ day (* 7 deltan))))
17024 ((equal deltaw "m") (setq month (+ month deltan)))
17025 ((equal deltaw "y") (setq year (+ year deltan)))))
17026 ((and wday (not (nth 3 tl)))
17027 ;; Weekday was given, but no day, so pick that day in the week
17028 ;; on or after the derived date.
17029 (setq wday1 (nth 6 (decode-time (encode-time 0 0 0 day month year))))
17030 (unless (equal wday wday1)
17031 (setq day (+ day (% (- wday wday1 -7) 7))))))
17032 (if (and (boundp 'org-time-was-given)
17033 (nth 2 tl))
17034 (setq org-time-was-given t))
17035 (if (< year 100) (setq year (+ 2000 year)))
17036 ;; Check of the date is representable
17037 (if org-read-date-force-compatible-dates
17038 (progn
17039 (if (< year 1970)
17040 (setq year 1970 org-read-date-analyze-forced-year t))
17041 (if (> year 2037)
17042 (setq year 2037 org-read-date-analyze-forced-year t)))
17043 (condition-case nil
17044 (ignore (encode-time second minute hour day month year))
17045 (error
17046 (setq year (nth 5 org-defdecode))
17047 (setq org-read-date-analyze-forced-year t))))
17048 (setq org-read-date-analyze-futurep futurep)
17049 (list second minute hour day month year)))
17051 (defvar parse-time-weekdays)
17052 (defun org-read-date-get-relative (s today default)
17053 "Check string S for special relative date string.
17054 TODAY and DEFAULT are internal times, for today and for a default.
17055 Return shift list (N what def-flag)
17056 WHAT is \"d\", \"w\", \"m\", or \"y\" for day, week, month, year.
17057 N is the number of WHATs to shift.
17058 DEF-FLAG is t when a double ++ or -- indicates shift relative to
17059 the DEFAULT date rather than TODAY."
17060 (require 'parse-time)
17061 (when (and
17062 (string-match
17063 (concat
17064 "\\`[ \t]*\\([-+]\\{0,2\\}\\)"
17065 "\\([0-9]+\\)?"
17066 "\\([hdwmy]\\|\\(" (mapconcat 'car parse-time-weekdays "\\|") "\\)\\)?"
17067 "\\([ \t]\\|$\\)") s)
17068 (or (> (match-end 1) (match-beginning 1)) (match-end 4)))
17069 (let* ((dir (if (> (match-end 1) (match-beginning 1))
17070 (string-to-char (substring (match-string 1 s) -1))
17071 ?+))
17072 (rel (and (match-end 1) (= 2 (- (match-end 1) (match-beginning 1)))))
17073 (n (if (match-end 2) (string-to-number (match-string 2 s)) 1))
17074 (what (if (match-end 3) (match-string 3 s) "d"))
17075 (wday1 (cdr (assoc (downcase what) parse-time-weekdays)))
17076 (date (if rel default today))
17077 (wday (nth 6 (decode-time date)))
17078 delta)
17079 (if wday1
17080 (progn
17081 (setq delta (mod (+ 7 (- wday1 wday)) 7))
17082 (if (= delta 0) (setq delta 7))
17083 (if (= dir ?-)
17084 (progn
17085 (setq delta (- delta 7))
17086 (if (= delta 0) (setq delta -7))))
17087 (if (> n 1) (setq delta (+ delta (* (1- n) (if (= dir ?-) -7 7)))))
17088 (list delta "d" rel))
17089 (list (* n (if (= dir ?-) -1 1)) what rel)))))
17091 (defun org-order-calendar-date-args (arg1 arg2 arg3)
17092 "Turn a user-specified date into the internal representation.
17093 The internal representation needed by the calendar is (month day year).
17094 This is a wrapper to handle the brain-dead convention in calendar that
17095 user function argument order change dependent on argument order."
17096 (if (boundp 'calendar-date-style)
17097 (cond
17098 ((eq calendar-date-style 'american)
17099 (list arg1 arg2 arg3))
17100 ((eq calendar-date-style 'european)
17101 (list arg2 arg1 arg3))
17102 ((eq calendar-date-style 'iso)
17103 (list arg2 arg3 arg1)))
17104 (org-no-warnings ;; european-calendar-style is obsolete as of version 23.1
17105 (if (org-bound-and-true-p european-calendar-style)
17106 (list arg2 arg1 arg3)
17107 (list arg1 arg2 arg3)))))
17109 (defun org-eval-in-calendar (form &optional keepdate)
17110 "Eval FORM in the calendar window and return to current window.
17111 When KEEPDATE is non-nil, update `org-ans2' from the cursor date,
17112 otherwise stick to the current value of `org-ans2'."
17113 (let ((sf (selected-frame))
17114 (sw (selected-window)))
17115 (select-window (get-buffer-window "*Calendar*" t))
17116 (eval form)
17117 (when (and (not keepdate) (calendar-cursor-to-date))
17118 (let* ((date (calendar-cursor-to-date))
17119 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
17120 (setq org-ans2 (format-time-string "%Y-%m-%d" time))))
17121 (move-overlay org-date-ovl (1- (point)) (1+ (point)) (current-buffer))
17122 (select-window sw)
17123 (org-select-frame-set-input-focus sf)))
17125 (defun org-calendar-select ()
17126 "Return to `org-read-date' with the date currently selected.
17127 This is used by `org-read-date' in a temporary keymap for the calendar buffer."
17128 (interactive)
17129 (when (calendar-cursor-to-date)
17130 (let* ((date (calendar-cursor-to-date))
17131 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
17132 (setq org-ans1 (format-time-string "%Y-%m-%d" time)))
17133 (if (active-minibuffer-window) (exit-minibuffer))))
17135 (defun org-insert-time-stamp (time &optional with-hm inactive pre post extra)
17136 "Insert a date stamp for the date given by the internal TIME.
17137 WITH-HM means use the stamp format that includes the time of the day.
17138 INACTIVE means use square brackets instead of angular ones, so that the
17139 stamp will not contribute to the agenda.
17140 PRE and POST are optional strings to be inserted before and after the
17141 stamp.
17142 The command returns the inserted time stamp."
17143 (let ((fmt (funcall (if with-hm 'cdr 'car) org-time-stamp-formats))
17144 stamp)
17145 (if inactive (setq fmt (concat "[" (substring fmt 1 -1) "]")))
17146 (insert-before-markers (or pre ""))
17147 (when (listp extra)
17148 (setq extra (car extra))
17149 (if (and (stringp extra)
17150 (string-match "\\([0-9]+\\):\\([0-9]+\\)" extra))
17151 (setq extra (format "-%02d:%02d"
17152 (string-to-number (match-string 1 extra))
17153 (string-to-number (match-string 2 extra))))
17154 (setq extra nil)))
17155 (when extra
17156 (setq fmt (concat (substring fmt 0 -1) extra (substring fmt -1))))
17157 (insert-before-markers (setq stamp (format-time-string fmt time)))
17158 (insert-before-markers (or post ""))
17159 (setq org-last-inserted-timestamp stamp)))
17161 (defun org-toggle-time-stamp-overlays ()
17162 "Toggle the use of custom time stamp formats."
17163 (interactive)
17164 (setq org-display-custom-times (not org-display-custom-times))
17165 (unless org-display-custom-times
17166 (let ((p (point-min)) (bmp (buffer-modified-p)))
17167 (while (setq p (next-single-property-change p 'display))
17168 (if (and (get-text-property p 'display)
17169 (eq (get-text-property p 'face) 'org-date))
17170 (remove-text-properties
17171 p (setq p (next-single-property-change p 'display))
17172 '(display t))))
17173 (set-buffer-modified-p bmp)))
17174 (if (featurep 'xemacs)
17175 (remove-text-properties (point-min) (point-max) '(end-glyph t)))
17176 (org-restart-font-lock)
17177 (setq org-table-may-need-update t)
17178 (if org-display-custom-times
17179 (message "Time stamps are overlaid with custom format")
17180 (message "Time stamp overlays removed")))
17182 (defun org-display-custom-time (beg end)
17183 "Overlay modified time stamp format over timestamp between BEG and END."
17184 (let* ((ts (buffer-substring beg end))
17185 t1 w1 with-hm tf time str w2 (off 0))
17186 (save-match-data
17187 (setq t1 (org-parse-time-string ts t))
17188 (if (string-match "\\(-[0-9]+:[0-9]+\\)?\\( [.+]?\\+[0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)?\\'" ts)
17189 (setq off (- (match-end 0) (match-beginning 0)))))
17190 (setq end (- end off))
17191 (setq w1 (- end beg)
17192 with-hm (and (nth 1 t1) (nth 2 t1))
17193 tf (funcall (if with-hm 'cdr 'car) org-time-stamp-custom-formats)
17194 time (org-fix-decoded-time t1)
17195 str (org-add-props
17196 (format-time-string
17197 (substring tf 1 -1) (apply 'encode-time time))
17198 nil 'mouse-face 'highlight)
17199 w2 (length str))
17200 (if (not (= w2 w1))
17201 (add-text-properties (1+ beg) (+ 2 beg)
17202 (list 'org-dwidth t 'org-dwidth-n (- w1 w2))))
17203 (if (featurep 'xemacs)
17204 (progn
17205 (put-text-property beg end 'invisible t)
17206 (put-text-property beg end 'end-glyph (make-glyph str)))
17207 (put-text-property beg end 'display str))))
17209 (defun org-translate-time (string)
17210 "Translate all timestamps in STRING to custom format.
17211 But do this only if the variable `org-display-custom-times' is set."
17212 (when org-display-custom-times
17213 (save-match-data
17214 (let* ((start 0)
17215 (re org-ts-regexp-both)
17216 t1 with-hm inactive tf time str beg end)
17217 (while (setq start (string-match re string start))
17218 (setq beg (match-beginning 0)
17219 end (match-end 0)
17220 t1 (save-match-data
17221 (org-parse-time-string (substring string beg end) t))
17222 with-hm (and (nth 1 t1) (nth 2 t1))
17223 inactive (equal (substring string beg (1+ beg)) "[")
17224 tf (funcall (if with-hm 'cdr 'car)
17225 org-time-stamp-custom-formats)
17226 time (org-fix-decoded-time t1)
17227 str (format-time-string
17228 (concat
17229 (if inactive "[" "<") (substring tf 1 -1)
17230 (if inactive "]" ">"))
17231 (apply 'encode-time time))
17232 string (replace-match str t t string)
17233 start (+ start (length str)))))))
17234 string)
17236 (defun org-fix-decoded-time (time)
17237 "Set 0 instead of nil for the first 6 elements of time.
17238 Don't touch the rest."
17239 (let ((n 0))
17240 (mapcar (lambda (x) (if (< (setq n (1+ n)) 7) (or x 0) x)) time)))
17242 (define-obsolete-function-alias 'org-days-to-time 'org-time-stamp-to-now "24.4")
17244 (defun org-time-stamp-to-now (timestamp-string &optional seconds)
17245 "Difference between TIMESTAMP-STRING and now in days.
17246 If SECONDS is non-nil, return the difference in seconds."
17247 (let ((fdiff (if seconds 'org-float-time 'time-to-days)))
17248 (- (funcall fdiff (org-time-string-to-time timestamp-string))
17249 (funcall fdiff (current-time)))))
17251 (defun org-deadline-close (timestamp-string &optional ndays)
17252 "Is the time in TIMESTAMP-STRING close to the current date?"
17253 (setq ndays (or ndays (org-get-wdays timestamp-string)))
17254 (and (< (org-time-stamp-to-now timestamp-string) ndays)
17255 (not (org-entry-is-done-p))))
17257 (defun org-get-wdays (ts &optional delay zero-delay)
17258 "Get the deadline lead time appropriate for timestring TS.
17259 When DELAY is non-nil, get the delay time for scheduled items
17260 instead of the deadline lead time. When ZERO-DELAY is non-nil
17261 and `org-scheduled-delay-days' is 0, enforce 0 as the delay,
17262 don't try to find the delay cookie in the scheduled timestamp."
17263 (let ((tv (if delay org-scheduled-delay-days
17264 org-deadline-warning-days)))
17265 (cond
17266 ((or (and delay (< tv 0))
17267 (and delay zero-delay (<= tv 0))
17268 (and (not delay) (<= tv 0)))
17269 ;; Enforce this value no matter what
17270 (- tv))
17271 ((string-match "-\\([0-9]+\\)\\([hdwmy]\\)\\(\\'\\|>\\| \\)" ts)
17272 ;; lead time is specified.
17273 (floor (* (string-to-number (match-string 1 ts))
17274 (cdr (assoc (match-string 2 ts)
17275 '(("d" . 1) ("w" . 7)
17276 ("m" . 30.4) ("y" . 365.25)
17277 ("h" . 0.041667)))))))
17278 ;; go for the default.
17279 (t tv))))
17281 (defun org-calendar-select-mouse (ev)
17282 "Return to `org-read-date' with the date currently selected.
17283 This is used by `org-read-date' in a temporary keymap for the calendar buffer."
17284 (interactive "e")
17285 (mouse-set-point ev)
17286 (when (calendar-cursor-to-date)
17287 (let* ((date (calendar-cursor-to-date))
17288 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
17289 (setq org-ans1 (format-time-string "%Y-%m-%d" time)))
17290 (if (active-minibuffer-window) (exit-minibuffer))))
17292 (defun org-check-deadlines (ndays)
17293 "Check if there are any deadlines due or past due.
17294 A deadline is considered due if it happens within `org-deadline-warning-days'
17295 days from today's date. If the deadline appears in an entry marked DONE,
17296 it is not shown. The prefix arg NDAYS can be used to test that many
17297 days. If the prefix is a raw \\[universal-argument] prefix, all deadlines are shown."
17298 (interactive "P")
17299 (let* ((org-warn-days
17300 (cond
17301 ((equal ndays '(4)) 100000)
17302 (ndays (prefix-numeric-value ndays))
17303 (t (abs org-deadline-warning-days))))
17304 (case-fold-search nil)
17305 (regexp (concat "\\<" org-deadline-string " *<\\([^>]+\\)>"))
17306 (callback
17307 (lambda () (org-deadline-close (match-string 1) org-warn-days))))
17309 (message "%d deadlines past-due or due within %d days"
17310 (org-occur regexp nil callback)
17311 org-warn-days)))
17313 (defsubst org-re-timestamp (type)
17314 "Return a regexp for timestamp TYPE.
17315 Allowed values for TYPE are:
17317 all: all timestamps
17318 active: only active timestamps (<...>)
17319 inactive: only inactive timestamps ([...])
17320 scheduled: only scheduled timestamps
17321 deadline: only deadline timestamps
17322 closed: only closed time-stamps
17324 When TYPE is nil, fall back on returning a regexp that matches
17325 both scheduled and deadline timestamps."
17326 (cond ((eq type 'all) "\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\}\\(?: +[^]+0-9> \n -]+\\)?\\(?: +[0-9]\\{1,2\\}:[0-9]\\{2\\}\\)?\\)")
17327 ((eq type 'active) org-ts-regexp)
17328 ((eq type 'inactive) "\\[\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^ \n>]*?\\)\\]")
17329 ((eq type 'scheduled) (concat "\\<" org-scheduled-string " *<\\([^>]+\\)>"))
17330 ((eq type 'deadline) (concat "\\<" org-deadline-string " *<\\([^>]+\\)>"))
17331 ((eq type 'closed) (concat org-closed-string " \\[\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^ \n>]*?\\)\\]"))
17332 ((eq type 'scheduled-or-deadline)
17333 (concat "\\<\\(?:" org-deadline-string "\\|" org-scheduled-string "\\) *<\\([^>]+\\)>"))))
17335 (defun org-check-before-date (date)
17336 "Check if there are deadlines or scheduled entries before DATE."
17337 (interactive (list (org-read-date)))
17338 (let ((case-fold-search nil)
17339 (regexp (org-re-timestamp org-ts-type))
17340 (callback
17341 (lambda () (time-less-p
17342 (org-time-string-to-time (match-string 1))
17343 (org-time-string-to-time date)))))
17344 (message "%d entries before %s"
17345 (org-occur regexp nil callback) date)))
17347 (defun org-check-after-date (date)
17348 "Check if there are deadlines or scheduled entries after DATE."
17349 (interactive (list (org-read-date)))
17350 (let ((case-fold-search nil)
17351 (regexp (org-re-timestamp org-ts-type))
17352 (callback
17353 (lambda () (not
17354 (time-less-p
17355 (org-time-string-to-time (match-string 1))
17356 (org-time-string-to-time date))))))
17357 (message "%d entries after %s"
17358 (org-occur regexp nil callback) date)))
17360 (defun org-check-dates-range (start-date end-date)
17361 "Check for deadlines/scheduled entries between START-DATE and END-DATE."
17362 (interactive (list (org-read-date nil nil nil "Range starts")
17363 (org-read-date nil nil nil "Range end")))
17364 (let ((case-fold-search nil)
17365 (regexp (org-re-timestamp org-ts-type))
17366 (callback
17367 (lambda ()
17368 (let ((match (match-string 1)))
17369 (and
17370 (not (time-less-p
17371 (org-time-string-to-time match)
17372 (org-time-string-to-time start-date)))
17373 (time-less-p
17374 (org-time-string-to-time match)
17375 (org-time-string-to-time end-date)))))))
17376 (message "%d entries between %s and %s"
17377 (org-occur regexp nil callback) start-date end-date)))
17379 (defun org-evaluate-time-range (&optional to-buffer)
17380 "Evaluate a time range by computing the difference between start and end.
17381 Normally the result is just printed in the echo area, but with prefix arg
17382 TO-BUFFER, the result is inserted just after the date stamp into the buffer.
17383 If the time range is actually in a table, the result is inserted into the
17384 next column.
17385 For time difference computation, a year is assumed to be exactly 365
17386 days in order to avoid rounding problems."
17387 (interactive "P")
17389 (org-clock-update-time-maybe)
17390 (save-excursion
17391 (unless (org-at-date-range-p t)
17392 (goto-char (point-at-bol))
17393 (re-search-forward org-tr-regexp-both (point-at-eol) t))
17394 (if (not (org-at-date-range-p t))
17395 (user-error "Not at a time-stamp range, and none found in current line")))
17396 (let* ((ts1 (match-string 1))
17397 (ts2 (match-string 2))
17398 (havetime (or (> (length ts1) 15) (> (length ts2) 15)))
17399 (match-end (match-end 0))
17400 (time1 (org-time-string-to-time ts1))
17401 (time2 (org-time-string-to-time ts2))
17402 (t1 (org-float-time time1))
17403 (t2 (org-float-time time2))
17404 (diff (abs (- t2 t1)))
17405 (negative (< (- t2 t1) 0))
17406 ;; (ys (floor (* 365 24 60 60)))
17407 (ds (* 24 60 60))
17408 (hs (* 60 60))
17409 (fy "%dy %dd %02d:%02d")
17410 (fy1 "%dy %dd")
17411 (fd "%dd %02d:%02d")
17412 (fd1 "%dd")
17413 (fh "%02d:%02d")
17414 y d h m align)
17415 (if havetime
17416 (setq ; y (floor (/ diff ys)) diff (mod diff ys)
17418 d (floor (/ diff ds)) diff (mod diff ds)
17419 h (floor (/ diff hs)) diff (mod diff hs)
17420 m (floor (/ diff 60)))
17421 (setq ; y (floor (/ diff ys)) diff (mod diff ys)
17423 d (floor (+ (/ diff ds) 0.5))
17424 h 0 m 0))
17425 (if (not to-buffer)
17426 (message "%s" (org-make-tdiff-string y d h m))
17427 (if (org-at-table-p)
17428 (progn
17429 (goto-char match-end)
17430 (setq align t)
17431 (and (looking-at " *|") (goto-char (match-end 0))))
17432 (goto-char match-end))
17433 (if (looking-at
17434 "\\( *-? *[0-9]+y\\)?\\( *[0-9]+d\\)? *[0-9][0-9]:[0-9][0-9]")
17435 (replace-match ""))
17436 (if negative (insert " -"))
17437 (if (> y 0) (insert " " (format (if havetime fy fy1) y d h m))
17438 (if (> d 0) (insert " " (format (if havetime fd fd1) d h m))
17439 (insert " " (format fh h m))))
17440 (if align (org-table-align))
17441 (message "Time difference inserted")))))
17443 (defun org-make-tdiff-string (y d h m)
17444 (let ((fmt "")
17445 (l nil))
17446 (if (> y 0) (setq fmt (concat fmt "%d year" (if (> y 1) "s" "") " ")
17447 l (push y l)))
17448 (if (> d 0) (setq fmt (concat fmt "%d day" (if (> d 1) "s" "") " ")
17449 l (push d l)))
17450 (if (> h 0) (setq fmt (concat fmt "%d hour" (if (> h 1) "s" "") " ")
17451 l (push h l)))
17452 (if (> m 0) (setq fmt (concat fmt "%d minute" (if (> m 1) "s" "") " ")
17453 l (push m l)))
17454 (apply 'format fmt (nreverse l))))
17456 (defun org-time-string-to-time (s &optional buffer pos)
17457 "Convert a timestamp string into internal time."
17458 (condition-case errdata
17459 (apply 'encode-time (org-parse-time-string s))
17460 (error (error "Bad timestamp `%s'%s\nError was: %s"
17461 s (if (not (and buffer pos))
17463 (format " at %d in buffer `%s'" pos buffer))
17464 (cdr errdata)))))
17466 (defun org-time-string-to-seconds (s)
17467 "Convert a timestamp string to a number of seconds."
17468 (org-float-time (org-time-string-to-time s)))
17470 (defun org-time-string-to-absolute (s &optional daynr prefer show-all buffer pos)
17471 "Convert a time stamp to an absolute day number.
17472 If there is a specifier for a cyclic time stamp, get the closest
17473 date to DAYNR.
17474 PREFER and SHOW-ALL are passed through to `org-closest-date'.
17475 The variable `date' is bound by the calendar when this is called."
17476 (cond
17477 ((and daynr (string-match "\\`%%\\((.*)\\)" s))
17478 (if (org-diary-sexp-entry (match-string 1 s) "" date)
17479 daynr
17480 (+ daynr 1000)))
17481 ((and daynr (string-match "\\+[0-9]+[hdwmy]" s))
17482 (org-closest-date s (if (and (boundp 'daynr) (integerp daynr)) daynr
17483 (time-to-days (current-time))) (match-string 0 s)
17484 prefer show-all))
17485 (t (time-to-days
17486 (condition-case errdata
17487 (apply 'encode-time (org-parse-time-string s))
17488 (error (error "Bad timestamp `%s'%s\nError was: %s"
17489 s (if (not (and buffer pos))
17491 (format " at %d in buffer `%s'" pos buffer))
17492 (cdr errdata))))))))
17494 (defun org-days-to-iso-week (days)
17495 "Return the iso week number."
17496 (require 'cal-iso)
17497 (car (calendar-iso-from-absolute days)))
17499 (defun org-small-year-to-year (year)
17500 "Convert 2-digit years into 4-digit years.
17501 38-99 are mapped into 1938-1999. 1-37 are mapped into 2001-2037.
17502 The year 2000 cannot be abbreviated. Any year larger than 99
17503 is returned unchanged."
17504 (if (< year 38)
17505 (setq year (+ 2000 year))
17506 (if (< year 100)
17507 (setq year (+ 1900 year))))
17508 year)
17510 (defun org-time-from-absolute (d)
17511 "Return the time corresponding to date D.
17512 D may be an absolute day number, or a calendar-type list (month day year)."
17513 (if (numberp d) (setq d (calendar-gregorian-from-absolute d)))
17514 (encode-time 0 0 0 (nth 1 d) (car d) (nth 2 d)))
17516 (defun org-calendar-holiday ()
17517 "List of holidays, for Diary display in Org-mode."
17518 (require 'holidays)
17519 (let ((hl (funcall
17520 (if (fboundp 'calendar-check-holidays)
17521 'calendar-check-holidays 'check-calendar-holidays) date)))
17522 (if hl (mapconcat 'identity hl "; "))))
17524 (defun org-diary-sexp-entry (sexp entry date)
17525 "Process a SEXP diary ENTRY for DATE."
17526 (require 'diary-lib)
17527 (let ((result (if calendar-debug-sexp
17528 (let ((stack-trace-on-error t))
17529 (eval (car (read-from-string sexp))))
17530 (condition-case nil
17531 (eval (car (read-from-string sexp)))
17532 (error
17533 (beep)
17534 (message "Bad sexp at line %d in %s: %s"
17535 (org-current-line)
17536 (buffer-file-name) sexp)
17537 (sleep-for 2))))))
17538 (cond ((stringp result) (split-string result "; "))
17539 ((and (consp result)
17540 (not (consp (cdr result)))
17541 (stringp (cdr result))) (cdr result))
17542 ((and (consp result)
17543 (stringp (car result))) result)
17544 (result entry))))
17546 (defun org-diary-to-ical-string (frombuf)
17547 "Get iCalendar entries from diary entries in buffer FROMBUF.
17548 This uses the icalendar.el library."
17549 (let* ((tmpdir (if (featurep 'xemacs)
17550 (temp-directory)
17551 temporary-file-directory))
17552 (tmpfile (make-temp-name
17553 (expand-file-name "orgics" tmpdir)))
17554 buf rtn b e)
17555 (with-current-buffer frombuf
17556 (icalendar-export-region (point-min) (point-max) tmpfile)
17557 (setq buf (find-buffer-visiting tmpfile))
17558 (set-buffer buf)
17559 (goto-char (point-min))
17560 (if (re-search-forward "^BEGIN:VEVENT" nil t)
17561 (setq b (match-beginning 0)))
17562 (goto-char (point-max))
17563 (if (re-search-backward "^END:VEVENT" nil t)
17564 (setq e (match-end 0)))
17565 (setq rtn (if (and b e) (concat (buffer-substring b e) "\n") "")))
17566 (kill-buffer buf)
17567 (delete-file tmpfile)
17568 rtn))
17570 (defun org-closest-date (start current change prefer show-all)
17571 "Find the date closest to CURRENT that is consistent with START and CHANGE.
17572 When PREFER is `past', return a date that is either CURRENT or past.
17573 When PREFER is `future', return a date that is either CURRENT or future.
17574 When SHOW-ALL is nil, only return the current occurrence of a time stamp."
17575 ;; Make the proper lists from the dates
17576 (catch 'exit
17577 (let ((a1 '(("h" . hour)
17578 ("d" . day)
17579 ("w" . week)
17580 ("m" . month)
17581 ("y" . year)))
17582 (shour (nth 2 (org-parse-time-string start)))
17583 dn dw sday cday n1 n2 n0
17584 d m y y1 y2 date1 date2 nmonths nm ny m2)
17586 (setq start (org-date-to-gregorian start)
17587 current (org-date-to-gregorian
17588 (if show-all
17589 current
17590 (time-to-days (current-time))))
17591 sday (calendar-absolute-from-gregorian start)
17592 cday (calendar-absolute-from-gregorian current))
17594 (if (<= cday sday) (throw 'exit sday))
17596 (if (string-match "\\(\\+[0-9]+\\)\\([hdwmy]\\)" change)
17597 (setq dn (string-to-number (match-string 1 change))
17598 dw (cdr (assoc (match-string 2 change) a1)))
17599 (user-error "Invalid change specifier: %s" change))
17600 (if (eq dw 'week) (setq dw 'day dn (* 7 dn)))
17601 (cond
17602 ((eq dw 'hour)
17603 (let ((missing-hours
17604 (mod (+ (- (* 24 (- cday sday)) shour) org-extend-today-until)
17605 dn)))
17606 (setq n1 (if (zerop missing-hours) cday
17607 (- cday (1+ (floor (/ missing-hours 24)))))
17608 n2 (+ cday (floor (/ (- dn missing-hours) 24))))))
17609 ((eq dw 'day)
17610 (setq n1 (+ sday (* dn (floor (/ (- cday sday) dn))))
17611 n2 (+ n1 dn)))
17612 ((eq dw 'year)
17613 (setq d (nth 1 start) m (car start) y1 (nth 2 start) y2 (nth 2 current))
17614 (setq y1 (+ (* (floor (/ (- y2 y1) dn)) dn) y1))
17615 (setq date1 (list m d y1)
17616 n1 (calendar-absolute-from-gregorian date1)
17617 date2 (list m d (+ y1 (* (if (< n1 cday) 1 -1) dn)))
17618 n2 (calendar-absolute-from-gregorian date2)))
17619 ((eq dw 'month)
17620 ;; approx number of month between the two dates
17621 (setq nmonths (floor (/ (- cday sday) 30.436875)))
17622 ;; How often does dn fit in there?
17623 (setq d (nth 1 start) m (car start) y (nth 2 start)
17624 nm (* dn (max 0 (1- (floor (/ nmonths dn)))))
17625 m (+ m nm)
17626 ny (floor (/ m 12))
17627 y (+ y ny)
17628 m (- m (* ny 12)))
17629 (while (> m 12) (setq m (- m 12) y (1+ y)))
17630 (setq n1 (calendar-absolute-from-gregorian (list m d y)))
17631 (setq m2 (+ m dn) y2 y)
17632 (if (> m2 12) (setq y2 (1+ y2) m2 (- m2 12)))
17633 (setq n2 (calendar-absolute-from-gregorian (list m2 d y2)))
17634 (while (<= n2 cday)
17635 (setq n1 n2 m m2 y y2)
17636 (setq m2 (+ m dn) y2 y)
17637 (if (> m2 12) (setq y2 (1+ y2) m2 (- m2 12)))
17638 (setq n2 (calendar-absolute-from-gregorian (list m2 d y2))))))
17639 ;; Make sure n1 is the earlier date
17640 (setq n0 n1 n1 (min n1 n2) n2 (max n0 n2))
17641 (if show-all
17642 (cond
17643 ((eq prefer 'past) (if (= cday n2) n2 n1))
17644 ((eq prefer 'future) (if (= cday n1) n1 n2))
17645 (t (if (> (abs (- cday n1)) (abs (- cday n2))) n2 n1)))
17646 (cond
17647 ((eq prefer 'past) (if (= cday n2) n2 n1))
17648 ((eq prefer 'future) (if (= cday n1) n1 n2))
17649 (t (if (= cday n1) n1 n2)))))))
17651 (defun org-date-to-gregorian (date)
17652 "Turn any specification of DATE into a Gregorian date for the calendar."
17653 (cond ((integerp date) (calendar-gregorian-from-absolute date))
17654 ((and (listp date) (= (length date) 3)) date)
17655 ((stringp date)
17656 (setq date (org-parse-time-string date))
17657 (list (nth 4 date) (nth 3 date) (nth 5 date)))
17658 ((listp date)
17659 (list (nth 4 date) (nth 3 date) (nth 5 date)))))
17661 (defun org-parse-time-string (s &optional nodefault)
17662 "Parse the standard Org-mode time string.
17663 This should be a lot faster than the normal `parse-time-string'.
17664 If time is not given, defaults to 0:00. However, with optional NODEFAULT,
17665 hour and minute fields will be nil if not given."
17666 (cond ((string-match org-ts-regexp0 s)
17667 (list 0
17668 (if (or (match-beginning 8) (not nodefault))
17669 (string-to-number (or (match-string 8 s) "0")))
17670 (if (or (match-beginning 7) (not nodefault))
17671 (string-to-number (or (match-string 7 s) "0")))
17672 (string-to-number (match-string 4 s))
17673 (string-to-number (match-string 3 s))
17674 (string-to-number (match-string 2 s))
17675 nil nil nil))
17676 ((string-match "^<[^>]+>$" s)
17677 (decode-time (seconds-to-time (org-matcher-time s))))
17678 (t (error "Not a standard Org-mode time string: %s" s))))
17680 (defun org-timestamp-up (&optional arg)
17681 "Increase the date item at the cursor by one.
17682 If the cursor is on the year, change the year. If it is on the month,
17683 the day or the time, change that.
17684 With prefix ARG, change by that many units."
17685 (interactive "p")
17686 (org-timestamp-change (prefix-numeric-value arg) nil 'updown))
17688 (defun org-timestamp-down (&optional arg)
17689 "Decrease the date item at the cursor by one.
17690 If the cursor is on the year, change the year. If it is on the month,
17691 the day or the time, change that.
17692 With prefix ARG, change by that many units."
17693 (interactive "p")
17694 (org-timestamp-change (- (prefix-numeric-value arg)) nil 'updown))
17696 (defun org-timestamp-up-day (&optional arg)
17697 "Increase the date in the time stamp by one day.
17698 With prefix ARG, change that many days."
17699 (interactive "p")
17700 (if (and (not (org-at-timestamp-p t))
17701 (org-at-heading-p))
17702 (org-todo 'up)
17703 (org-timestamp-change (prefix-numeric-value arg) 'day 'updown)))
17705 (defun org-timestamp-down-day (&optional arg)
17706 "Decrease the date in the time stamp by one day.
17707 With prefix ARG, change that many days."
17708 (interactive "p")
17709 (if (and (not (org-at-timestamp-p t))
17710 (org-at-heading-p))
17711 (org-todo 'down)
17712 (org-timestamp-change (- (prefix-numeric-value arg)) 'day) 'updown))
17714 (defun org-at-timestamp-p (&optional inactive-ok)
17715 "Determine if the cursor is in or at a timestamp."
17716 (interactive)
17717 (let* ((tsr (if inactive-ok org-ts-regexp3 org-ts-regexp2))
17718 (pos (point))
17719 (ans (or (looking-at tsr)
17720 (save-excursion
17721 (skip-chars-backward "^[<\n\r\t")
17722 (if (> (point) (point-min)) (backward-char 1))
17723 (and (looking-at tsr)
17724 (> (- (match-end 0) pos) -1))))))
17725 (and ans
17726 (boundp 'org-ts-what)
17727 (setq org-ts-what
17728 (cond
17729 ((= pos (match-beginning 0)) 'bracket)
17730 ;; Point is considered to be "on the bracket" whether
17731 ;; it's really on it or right after it.
17732 ((= pos (1- (match-end 0))) 'bracket)
17733 ((= pos (match-end 0)) 'after)
17734 ((org-pos-in-match-range pos 2) 'year)
17735 ((org-pos-in-match-range pos 3) 'month)
17736 ((org-pos-in-match-range pos 7) 'hour)
17737 ((org-pos-in-match-range pos 8) 'minute)
17738 ((or (org-pos-in-match-range pos 4)
17739 (org-pos-in-match-range pos 5)) 'day)
17740 ((and (> pos (or (match-end 8) (match-end 5)))
17741 (< pos (match-end 0)))
17742 (- pos (or (match-end 8) (match-end 5))))
17743 (t 'day))))
17744 ans))
17746 (defun org-toggle-timestamp-type ()
17747 "Toggle the type (<active> or [inactive]) of a time stamp."
17748 (interactive)
17749 (when (org-at-timestamp-p t)
17750 (let ((beg (match-beginning 0)) (end (match-end 0))
17751 (map '((?\[ . "<") (?\] . ">") (?< . "[") (?> . "]"))))
17752 (save-excursion
17753 (goto-char beg)
17754 (while (re-search-forward "[][<>]" end t)
17755 (replace-match (cdr (assoc (char-after (match-beginning 0)) map))
17756 t t)))
17757 (message "Timestamp is now %sactive"
17758 (if (equal (char-after beg) ?<) "" "in")))))
17760 (defun org-at-clock-log-p nil
17761 "Is the cursor on the clock log line?"
17762 (save-excursion
17763 (move-beginning-of-line 1)
17764 (looking-at org-clock-line-re)))
17766 (defvar org-clock-history) ; defined in org-clock.el
17767 (defvar org-clock-adjust-closest nil) ; defined in org-clock.el
17768 (defun org-timestamp-change (n &optional what updown suppress-tmp-delay)
17769 "Change the date in the time stamp at point.
17770 The date will be changed by N times WHAT. WHAT can be `day', `month',
17771 `year', `minute', `second'. If WHAT is not given, the cursor position
17772 in the timestamp determines what will be changed.
17773 When SUPPRESS-TMP-DELAY is non-nil, suppress delays like \"--2d\"."
17774 (let ((origin (point)) origin-cat
17775 with-hm inactive
17776 (dm (max (nth 1 org-time-stamp-rounding-minutes) 1))
17777 org-ts-what
17778 extra rem
17779 ts time time0 fixnext clrgx)
17780 (if (not (org-at-timestamp-p t))
17781 (user-error "Not at a timestamp"))
17782 (if (and (not what) (eq org-ts-what 'bracket))
17783 (org-toggle-timestamp-type)
17784 ;; Point isn't on brackets. Remember the part of the time-stamp
17785 ;; the point was in. Indeed, size of time-stamps may change,
17786 ;; but point must be kept in the same category nonetheless.
17787 (setq origin-cat org-ts-what)
17788 (if (and (not what) (not (eq org-ts-what 'day))
17789 org-display-custom-times
17790 (get-text-property (point) 'display)
17791 (not (get-text-property (1- (point)) 'display)))
17792 (setq org-ts-what 'day))
17793 (setq org-ts-what (or what org-ts-what)
17794 inactive (= (char-after (match-beginning 0)) ?\[)
17795 ts (match-string 0))
17796 (replace-match "")
17797 (when (string-match
17798 "\\(\\(-[012][0-9]:[0-5][0-9]\\)?\\( +[.+]?-?[-+][0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)*\\)[]>]"
17800 (setq extra (match-string 1 ts))
17801 (if suppress-tmp-delay
17802 (setq extra (replace-regexp-in-string " --[0-9]+[hdwmy]" "" extra))))
17803 (if (string-match "^.\\{10\\}.*?[0-9]+:[0-9][0-9]" ts)
17804 (setq with-hm t))
17805 (setq time0 (org-parse-time-string ts))
17806 (when (and updown
17807 (eq org-ts-what 'minute)
17808 (not current-prefix-arg))
17809 ;; This looks like s-up and s-down. Change by one rounding step.
17810 (setq n (* dm (cond ((> n 0) 1) ((< n 0) -1) (t 0))))
17811 (when (not (= 0 (setq rem (% (nth 1 time0) dm))))
17812 (setcar (cdr time0) (+ (nth 1 time0)
17813 (if (> n 0) (- rem) (- dm rem))))))
17814 (setq time
17815 (encode-time (or (car time0) 0)
17816 (+ (if (eq org-ts-what 'minute) n 0) (nth 1 time0))
17817 (+ (if (eq org-ts-what 'hour) n 0) (nth 2 time0))
17818 (+ (if (eq org-ts-what 'day) n 0) (nth 3 time0))
17819 (+ (if (eq org-ts-what 'month) n 0) (nth 4 time0))
17820 (+ (if (eq org-ts-what 'year) n 0) (nth 5 time0))
17821 (nthcdr 6 time0)))
17822 (when (and (member org-ts-what '(hour minute))
17823 extra
17824 (string-match "-\\([012][0-9]\\):\\([0-5][0-9]\\)" extra))
17825 (setq extra (org-modify-ts-extra
17826 extra
17827 (if (eq org-ts-what 'hour) 2 5)
17828 n dm)))
17829 (when (integerp org-ts-what)
17830 (setq extra (org-modify-ts-extra extra org-ts-what n dm)))
17831 (if (eq what 'calendar)
17832 (let ((cal-date (org-get-date-from-calendar)))
17833 (setcar (nthcdr 4 time0) (nth 0 cal-date)) ; month
17834 (setcar (nthcdr 3 time0) (nth 1 cal-date)) ; day
17835 (setcar (nthcdr 5 time0) (nth 2 cal-date)) ; year
17836 (setcar time0 (or (car time0) 0))
17837 (setcar (nthcdr 1 time0) (or (nth 1 time0) 0))
17838 (setcar (nthcdr 2 time0) (or (nth 2 time0) 0))
17839 (setq time (apply 'encode-time time0))))
17840 ;; Insert the new time-stamp, and ensure point stays in the same
17841 ;; category as before (i.e. not after the last position in that
17842 ;; category).
17843 (let ((pos (point)))
17844 ;; Stay before inserted string. `save-excursion' is of no use.
17845 (setq org-last-changed-timestamp
17846 (org-insert-time-stamp time with-hm inactive nil nil extra))
17847 (goto-char pos))
17848 (save-match-data
17849 (looking-at org-ts-regexp3)
17850 (goto-char (cond
17851 ;; `day' category ends before `hour' if any, or at
17852 ;; the end of the day name.
17853 ((eq origin-cat 'day)
17854 (min (or (match-beginning 7) (1- (match-end 5))) origin))
17855 ((eq origin-cat 'hour) (min (match-end 7) origin))
17856 ((eq origin-cat 'minute) (min (1- (match-end 8)) origin))
17857 ((integerp origin-cat) (min (1- (match-end 0)) origin))
17858 ;; `year' and `month' have both fixed size: point
17859 ;; couldn't have moved into another part.
17860 (t origin))))
17861 ;; Update clock if on a CLOCK line.
17862 (org-clock-update-time-maybe)
17863 ;; Maybe adjust the closest clock in `org-clock-history'
17864 (when org-clock-adjust-closest
17865 (if (not (and (org-at-clock-log-p)
17866 (< 1 (length (delq nil (mapcar 'marker-position
17867 org-clock-history))))))
17868 (message "No clock to adjust")
17869 (cond ((save-excursion ; fix previous clock?
17870 (re-search-backward org-ts-regexp0 nil t)
17871 (org-looking-back (concat org-clock-string " \\[")))
17872 (setq fixnext 1 clrgx (concat org-ts-regexp0 "\\] =>.*$")))
17873 ((save-excursion ; fix next clock?
17874 (re-search-backward org-ts-regexp0 nil t)
17875 (looking-at (concat org-ts-regexp0 "\\] =>")))
17876 (setq fixnext -1 clrgx (concat org-clock-string " \\[" org-ts-regexp0))))
17877 (save-window-excursion
17878 ;; Find closest clock to point, adjust the previous/next one in history
17879 (let* ((p (save-excursion (org-back-to-heading t)))
17880 (cl (mapcar (lambda(c) (abs (- (marker-position c) p))) org-clock-history))
17881 (clfixnth
17882 (+ fixnext (- (length cl) (or (length (member (apply 'min cl) cl)) 100))))
17883 (clfixpos (if (> 0 clfixnth) nil (nth clfixnth org-clock-history))))
17884 (if (not clfixpos)
17885 (message "No clock to adjust")
17886 (save-excursion
17887 (org-goto-marker-or-bmk clfixpos)
17888 (org-show-subtree)
17889 (when (re-search-forward clrgx nil t)
17890 (goto-char (match-beginning 1))
17891 (let (org-clock-adjust-closest)
17892 (org-timestamp-change n org-ts-what updown))
17893 (message "Clock adjusted in %s for heading: %s"
17894 (file-name-nondirectory (buffer-file-name))
17895 (org-get-heading t t)))))))))
17896 ;; Try to recenter the calendar window, if any.
17897 (if (and org-calendar-follow-timestamp-change
17898 (get-buffer-window "*Calendar*" t)
17899 (memq org-ts-what '(day month year)))
17900 (org-recenter-calendar (time-to-days time))))))
17902 (defun org-modify-ts-extra (s pos n dm)
17903 "Change the different parts of the lead-time and repeat fields in timestamp."
17904 (let ((idx '(("d" . 0) ("w" . 1) ("m" . 2) ("y" . 3) ("d" . -1) ("y" . 4)))
17905 ng h m new rem)
17906 (when (string-match "\\(-\\([012][0-9]\\):\\([0-5][0-9]\\)\\)?\\( +\\+\\([0-9]+\\)\\([dmwy]\\)\\)?\\( +-\\([0-9]+\\)\\([dmwy]\\)\\)?" s)
17907 (cond
17908 ((or (org-pos-in-match-range pos 2)
17909 (org-pos-in-match-range pos 3))
17910 (setq m (string-to-number (match-string 3 s))
17911 h (string-to-number (match-string 2 s)))
17912 (if (org-pos-in-match-range pos 2)
17913 (setq h (+ h n))
17914 (setq n (* dm (org-no-warnings (signum n))))
17915 (when (not (= 0 (setq rem (% m dm))))
17916 (setq m (+ m (if (> n 0) (- rem) (- dm rem)))))
17917 (setq m (+ m n)))
17918 (if (< m 0) (setq m (+ m 60) h (1- h)))
17919 (if (> m 59) (setq m (- m 60) h (1+ h)))
17920 (setq h (min 24 (max 0 h)))
17921 (setq ng 1 new (format "-%02d:%02d" h m)))
17922 ((org-pos-in-match-range pos 6)
17923 (setq ng 6 new (car (rassoc (+ n (cdr (assoc (match-string 6 s) idx))) idx))))
17924 ((org-pos-in-match-range pos 5)
17925 (setq ng 5 new (format "%d" (max 1 (+ n (string-to-number (match-string 5 s)))))))
17927 ((org-pos-in-match-range pos 9)
17928 (setq ng 9 new (car (rassoc (+ n (cdr (assoc (match-string 9 s) idx))) idx))))
17929 ((org-pos-in-match-range pos 8)
17930 (setq ng 8 new (format "%d" (max 0 (+ n (string-to-number (match-string 8 s))))))))
17932 (when ng
17933 (setq s (concat
17934 (substring s 0 (match-beginning ng))
17936 (substring s (match-end ng))))))
17939 (defun org-recenter-calendar (date)
17940 "If the calendar is visible, recenter it to DATE."
17941 (let ((cwin (get-buffer-window "*Calendar*" t)))
17942 (when cwin
17943 (let ((calendar-move-hook nil))
17944 (with-selected-window cwin
17945 (calendar-goto-date (if (listp date) date
17946 (calendar-gregorian-from-absolute date))))))))
17948 (defun org-goto-calendar (&optional arg)
17949 "Go to the Emacs calendar at the current date.
17950 If there is a time stamp in the current line, go to that date.
17951 A prefix ARG can be used to force the current date."
17952 (interactive "P")
17953 (let ((tsr org-ts-regexp) diff
17954 (calendar-move-hook nil)
17955 (calendar-view-holidays-initially-flag nil)
17956 (calendar-view-diary-initially-flag nil))
17957 (if (or (org-at-timestamp-p)
17958 (save-excursion
17959 (beginning-of-line 1)
17960 (looking-at (concat ".*" tsr))))
17961 (let ((d1 (time-to-days (current-time)))
17962 (d2 (time-to-days
17963 (org-time-string-to-time (match-string 1)))))
17964 (setq diff (- d2 d1))))
17965 (calendar)
17966 (calendar-goto-today)
17967 (if (and diff (not arg)) (calendar-forward-day diff))))
17969 (defun org-get-date-from-calendar ()
17970 "Return a list (month day year) of date at point in calendar."
17971 (with-current-buffer "*Calendar*"
17972 (save-match-data
17973 (calendar-cursor-to-date))))
17975 (defun org-date-from-calendar ()
17976 "Insert time stamp corresponding to cursor date in *Calendar* buffer.
17977 If there is already a time stamp at the cursor position, update it."
17978 (interactive)
17979 (if (org-at-timestamp-p t)
17980 (org-timestamp-change 0 'calendar)
17981 (let ((cal-date (org-get-date-from-calendar)))
17982 (org-insert-time-stamp
17983 (encode-time 0 0 0 (nth 1 cal-date) (car cal-date) (nth 2 cal-date))))))
17985 (defcustom org-effort-durations
17986 `(("min" . 1)
17987 ("h" . 60)
17988 ("d" . ,(* 60 8))
17989 ("w" . ,(* 60 8 5))
17990 ("m" . ,(* 60 8 5 4))
17991 ("y" . ,(* 60 8 5 40)))
17992 "Conversion factor to minutes for an effort modifier.
17994 Each entry has the form (MODIFIER . MINUTES).
17996 In an effort string, a number followed by MODIFIER is multiplied
17997 by the specified number of MINUTES to obtain an effort in
17998 minutes.
18000 For example, if the value of this variable is ((\"hours\" . 60)), then an
18001 effort string \"2hours\" is equivalent to 120 minutes."
18002 :group 'org-agenda
18003 :version "25.1"
18004 :package-version '(Org . "8.3")
18005 :type '(alist :key-type (string :tag "Modifier")
18006 :value-type (number :tag "Minutes")))
18008 (defun org-minutes-to-clocksum-string (m)
18009 "Format number of minutes as a clocksum string.
18010 The format is determined by `org-time-clocksum-format',
18011 `org-time-clocksum-use-fractional' and
18012 `org-time-clocksum-fractional-format' and
18013 `org-time-clocksum-use-effort-durations'."
18014 (let ((clocksum "")
18015 (m (round m)) ; Don't allow fractions of minutes
18016 h d w mo y fmt n)
18017 (setq h (if org-time-clocksum-use-effort-durations
18018 (cdr (assoc "h" org-effort-durations)) 60)
18019 d (if org-time-clocksum-use-effort-durations
18020 (/ (cdr (assoc "d" org-effort-durations)) h) 24)
18021 w (if org-time-clocksum-use-effort-durations
18022 (/ (cdr (assoc "w" org-effort-durations)) (* d h)) 7)
18023 mo (if org-time-clocksum-use-effort-durations
18024 (/ (cdr (assoc "m" org-effort-durations)) (* d h)) 30)
18025 y (if org-time-clocksum-use-effort-durations
18026 (/ (cdr (assoc "y" org-effort-durations)) (* d h)) 365))
18027 ;; fractional format
18028 (if org-time-clocksum-use-fractional
18029 (cond
18030 ;; single format string
18031 ((stringp org-time-clocksum-fractional-format)
18032 (format org-time-clocksum-fractional-format (/ m (float h))))
18033 ;; choice of fractional formats for different time units
18034 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :years))
18035 (> (/ (truncate m) (* y d h)) 0))
18036 (format fmt (/ m (* y d (float h)))))
18037 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :months))
18038 (> (/ (truncate m) (* mo d h)) 0))
18039 (format fmt (/ m (* mo d (float h)))))
18040 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :weeks))
18041 (> (/ (truncate m) (* w d h)) 0))
18042 (format fmt (/ m (* w d (float h)))))
18043 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :days))
18044 (> (/ (truncate m) (* d h)) 0))
18045 (format fmt (/ m (* d (float h)))))
18046 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :hours))
18047 (> (/ (truncate m) h) 0))
18048 (format fmt (/ m (float h))))
18049 ((setq fmt (plist-get org-time-clocksum-fractional-format :minutes))
18050 (format fmt m))
18051 ;; fall back to smallest time unit with a format
18052 ((setq fmt (plist-get org-time-clocksum-fractional-format :hours))
18053 (format fmt (/ m (float h))))
18054 ((setq fmt (plist-get org-time-clocksum-fractional-format :days))
18055 (format fmt (/ m (* d (float h)))))
18056 ((setq fmt (plist-get org-time-clocksum-fractional-format :weeks))
18057 (format fmt (/ m (* w d (float h)))))
18058 ((setq fmt (plist-get org-time-clocksum-fractional-format :months))
18059 (format fmt (/ m (* mo d (float h)))))
18060 ((setq fmt (plist-get org-time-clocksum-fractional-format :years))
18061 (format fmt (/ m (* y d (float h))))))
18062 ;; standard (non-fractional) format, with single format string
18063 (if (stringp org-time-clocksum-format)
18064 (format org-time-clocksum-format (setq n (/ m h)) (- m (* h n)))
18065 ;; separate formats components
18066 (and (setq fmt (plist-get org-time-clocksum-format :years))
18067 (or (> (setq n (/ (truncate m) (* y d h))) 0)
18068 (plist-get org-time-clocksum-format :require-years))
18069 (setq clocksum (concat clocksum (format fmt n))
18070 m (- m (* n y d h))))
18071 (and (setq fmt (plist-get org-time-clocksum-format :months))
18072 (or (> (setq n (/ (truncate m) (* mo d h))) 0)
18073 (plist-get org-time-clocksum-format :require-months))
18074 (setq clocksum (concat clocksum (format fmt n))
18075 m (- m (* n mo d h))))
18076 (and (setq fmt (plist-get org-time-clocksum-format :weeks))
18077 (or (> (setq n (/ (truncate m) (* w d h))) 0)
18078 (plist-get org-time-clocksum-format :require-weeks))
18079 (setq clocksum (concat clocksum (format fmt n))
18080 m (- m (* n w d h))))
18081 (and (setq fmt (plist-get org-time-clocksum-format :days))
18082 (or (> (setq n (/ (truncate m) (* d h))) 0)
18083 (plist-get org-time-clocksum-format :require-days))
18084 (setq clocksum (concat clocksum (format fmt n))
18085 m (- m (* n d h))))
18086 (and (setq fmt (plist-get org-time-clocksum-format :hours))
18087 (or (> (setq n (/ (truncate m) h)) 0)
18088 (plist-get org-time-clocksum-format :require-hours))
18089 (setq clocksum (concat clocksum (format fmt n))
18090 m (- m (* n h))))
18091 (and (setq fmt (plist-get org-time-clocksum-format :minutes))
18092 (or (> m 0) (plist-get org-time-clocksum-format :require-minutes))
18093 (setq clocksum (concat clocksum (format fmt m))))
18094 ;; return formatted time duration
18095 clocksum))))
18097 (defalias 'org-minutes-to-hh:mm-string 'org-minutes-to-clocksum-string)
18098 (make-obsolete 'org-minutes-to-hh:mm-string 'org-minutes-to-clocksum-string
18099 "Org mode version 8.0")
18101 (defun org-hours-to-clocksum-string (n)
18102 (org-minutes-to-clocksum-string (* n 60)))
18104 (defun org-hh:mm-string-to-minutes (s)
18105 "Convert a string H:MM to a number of minutes.
18106 If the string is just a number, interpret it as minutes.
18107 In fact, the first hh:mm or number in the string will be taken,
18108 there can be extra stuff in the string.
18109 If no number is found, the return value is 0."
18110 (cond
18111 ((integerp s) s)
18112 ((string-match "\\([0-9]+\\):\\([0-9]+\\)" s)
18113 (+ (* (string-to-number (match-string 1 s)) 60)
18114 (string-to-number (match-string 2 s))))
18115 ((string-match "\\([0-9]+\\)" s)
18116 (string-to-number (match-string 1 s)))
18117 (t 0)))
18119 (defcustom org-image-actual-width t
18120 "Should we use the actual width of images when inlining them?
18122 When set to `t', always use the image width.
18124 When set to a number, use imagemagick (when available) to set
18125 the image's width to this value.
18127 When set to a number in a list, try to get the width from any
18128 #+ATTR.* keyword if it matches a width specification like
18130 #+ATTR_HTML: :width 300px
18132 and fall back on that number if none is found.
18134 When set to nil, try to get the width from an #+ATTR.* keyword
18135 and fall back on the original width if none is found.
18137 This requires Emacs >= 24.1, build with imagemagick support."
18138 :group 'org-appearance
18139 :version "24.4"
18140 :package-version '(Org . "8.0")
18141 :type '(choice
18142 (const :tag "Use the image width" t)
18143 (integer :tag "Use a number of pixels")
18144 (list :tag "Use #+ATTR* or a number of pixels" (integer))
18145 (const :tag "Use #+ATTR* or don't resize" nil)))
18147 (defcustom org-agenda-inhibit-startup nil
18148 "Inhibit startup when preparing agenda buffers.
18149 When this variable is `t', the initialization of the Org agenda
18150 buffers is inhibited: e.g. the visibility state is not set, the
18151 tables are not re-aligned, etc."
18152 :type 'boolean
18153 :version "24.3"
18154 :group 'org-agenda)
18156 (define-obsolete-variable-alias
18157 'org-agenda-ignore-drawer-properties
18158 'org-agenda-ignore-properties "25.1")
18160 (defcustom org-agenda-ignore-properties nil
18161 "Avoid updating text properties when building the agenda.
18162 Properties are used to prepare buffers for effort estimates,
18163 appointments, statistics and subtree-local categories.
18164 If you don't use these in the agenda, you can add them to this
18165 list and agenda building will be a bit faster.
18166 The value is a list, with zero or more of the symbols `effort', `appt',
18167 `stats' or `category'."
18168 :type '(set :greedy t
18169 (const effort)
18170 (const appt)
18171 (const stats)
18172 (const category))
18173 :version "25.1"
18174 :package-version '(Org . "8.3")
18175 :group 'org-agenda)
18177 (defun org-duration-string-to-minutes (s &optional output-to-string)
18178 "Convert a duration string S to minutes.
18180 A bare number is interpreted as minutes, modifiers can be set by
18181 customizing `org-effort-durations' (which see).
18183 Entries containing a colon are interpreted as H:MM by
18184 `org-hh:mm-string-to-minutes'."
18185 (let ((result 0)
18186 (re (concat "\\([0-9.]+\\) *\\("
18187 (regexp-opt (mapcar 'car org-effort-durations))
18188 "\\)")))
18189 (while (string-match re s)
18190 (incf result (* (cdr (assoc (match-string 2 s) org-effort-durations))
18191 (string-to-number (match-string 1 s))))
18192 (setq s (replace-match "" nil t s)))
18193 (setq result (floor result))
18194 (incf result (org-hh:mm-string-to-minutes s))
18195 (if output-to-string (number-to-string result) result)))
18197 ;;;; Files
18199 (defun org-save-all-org-buffers ()
18200 "Save all Org-mode buffers without user confirmation."
18201 (interactive)
18202 (message "Saving all Org-mode buffers...")
18203 (save-some-buffers t (lambda () (derived-mode-p 'org-mode)))
18204 (when (featurep 'org-id) (org-id-locations-save))
18205 (message "Saving all Org-mode buffers... done"))
18207 (defun org-revert-all-org-buffers ()
18208 "Revert all Org-mode buffers.
18209 Prompt for confirmation when there are unsaved changes.
18210 Be sure you know what you are doing before letting this function
18211 overwrite your changes.
18213 This function is useful in a setup where one tracks org files
18214 with a version control system, to revert on one machine after pulling
18215 changes from another. I believe the procedure must be like this:
18217 1. M-x org-save-all-org-buffers
18218 2. Pull changes from the other machine, resolve conflicts
18219 3. M-x org-revert-all-org-buffers"
18220 (interactive)
18221 (unless (yes-or-no-p "Revert all Org buffers from their files? ")
18222 (user-error "Abort"))
18223 (save-excursion
18224 (save-window-excursion
18225 (mapc
18226 (lambda (b)
18227 (when (and (with-current-buffer b (derived-mode-p 'org-mode))
18228 (with-current-buffer b buffer-file-name))
18229 (org-pop-to-buffer-same-window b)
18230 (revert-buffer t 'no-confirm)))
18231 (buffer-list))
18232 (when (and (featurep 'org-id) org-id-track-globally)
18233 (org-id-locations-load)))))
18235 ;;;; Agenda files
18237 ;;;###autoload
18238 (defun org-switchb (&optional arg)
18239 "Switch between Org buffers.
18240 With one prefix argument, restrict available buffers to files.
18241 With two prefix arguments, restrict available buffers to agenda files.
18243 Defaults to `iswitchb' for buffer name completion.
18244 Set `org-completion-use-ido' to make it use ido instead."
18245 (interactive "P")
18246 (let ((blist (cond ((equal arg '(4)) (org-buffer-list 'files))
18247 ((equal arg '(16)) (org-buffer-list 'agenda))
18248 (t (org-buffer-list))))
18249 (org-completion-use-iswitchb org-completion-use-iswitchb)
18250 (org-completion-use-ido org-completion-use-ido))
18251 (unless (or org-completion-use-ido org-completion-use-iswitchb)
18252 (setq org-completion-use-iswitchb t))
18253 (org-pop-to-buffer-same-window
18254 (org-icompleting-read "Org buffer: "
18255 (mapcar 'list (mapcar 'buffer-name blist))
18256 nil t))))
18258 ;;; Define some older names previously used for this functionality
18259 ;;;###autoload
18260 (defalias 'org-ido-switchb 'org-switchb)
18261 ;;;###autoload
18262 (defalias 'org-iswitchb 'org-switchb)
18264 (defun org-buffer-list (&optional predicate exclude-tmp)
18265 "Return a list of Org buffers.
18266 PREDICATE can be `export', `files' or `agenda'.
18268 export restrict the list to Export buffers.
18269 files restrict the list to buffers visiting Org files.
18270 agenda restrict the list to buffers visiting agenda files.
18272 If EXCLUDE-TMP is non-nil, ignore temporary buffers."
18273 (let* ((bfn nil)
18274 (agenda-files (and (eq predicate 'agenda)
18275 (mapcar 'file-truename (org-agenda-files t))))
18276 (filter
18277 (cond
18278 ((eq predicate 'files)
18279 (lambda (b) (with-current-buffer b (derived-mode-p 'org-mode))))
18280 ((eq predicate 'export)
18281 (lambda (b) (string-match "\*Org .*Export" (buffer-name b))))
18282 ((eq predicate 'agenda)
18283 (lambda (b)
18284 (with-current-buffer b
18285 (and (derived-mode-p 'org-mode)
18286 (setq bfn (buffer-file-name b))
18287 (member (file-truename bfn) agenda-files)))))
18288 (t (lambda (b) (with-current-buffer b
18289 (or (derived-mode-p 'org-mode)
18290 (string-match "\*Org .*Export"
18291 (buffer-name b)))))))))
18292 (delq nil
18293 (mapcar
18294 (lambda(b)
18295 (if (and (funcall filter b)
18296 (or (not exclude-tmp)
18297 (not (string-match "tmp" (buffer-name b)))))
18299 nil))
18300 (buffer-list)))))
18302 (defun org-agenda-files (&optional unrestricted archives)
18303 "Get the list of agenda files.
18304 Optional UNRESTRICTED means return the full list even if a restriction
18305 is currently in place.
18306 When ARCHIVES is t, include all archive files that are really being
18307 used by the agenda files. If ARCHIVE is `ifmode', do this only if
18308 `org-agenda-archives-mode' is t."
18309 (let ((files
18310 (cond
18311 ((and (not unrestricted) (get 'org-agenda-files 'org-restrict)))
18312 ((stringp org-agenda-files) (org-read-agenda-file-list))
18313 ((listp org-agenda-files) org-agenda-files)
18314 (t (error "Invalid value of `org-agenda-files'")))))
18315 (setq files (apply 'append
18316 (mapcar (lambda (f)
18317 (if (file-directory-p f)
18318 (directory-files
18319 f t org-agenda-file-regexp)
18320 (list f)))
18321 files)))
18322 (when org-agenda-skip-unavailable-files
18323 (setq files (delq nil
18324 (mapcar (function
18325 (lambda (file)
18326 (and (file-readable-p file) file)))
18327 files))))
18328 (when (or (eq archives t)
18329 (and (eq archives 'ifmode) (eq org-agenda-archives-mode t)))
18330 (setq files (org-add-archive-files files)))
18331 files))
18333 (defun org-agenda-file-p (&optional file)
18334 "Return non-nil, if FILE is an agenda file.
18335 If FILE is omitted, use the file associated with the current
18336 buffer."
18337 (let ((fname (or file (buffer-file-name))))
18338 (and fname
18339 (member (file-truename fname)
18340 (mapcar #'file-truename (org-agenda-files t))))))
18342 (defun org-edit-agenda-file-list ()
18343 "Edit the list of agenda files.
18344 Depending on setup, this either uses customize to edit the variable
18345 `org-agenda-files', or it visits the file that is holding the list. In the
18346 latter case, the buffer is set up in a way that saving it automatically kills
18347 the buffer and restores the previous window configuration."
18348 (interactive)
18349 (if (stringp org-agenda-files)
18350 (let ((cw (current-window-configuration)))
18351 (find-file org-agenda-files)
18352 (org-set-local 'org-window-configuration cw)
18353 (org-add-hook 'after-save-hook
18354 (lambda ()
18355 (set-window-configuration
18356 (prog1 org-window-configuration
18357 (kill-buffer (current-buffer))))
18358 (org-install-agenda-files-menu)
18359 (message "New agenda file list installed"))
18360 nil 'local)
18361 (message "%s" (substitute-command-keys
18362 "Edit list and finish with \\[save-buffer]")))
18363 (customize-variable 'org-agenda-files)))
18365 (defun org-store-new-agenda-file-list (list)
18366 "Set new value for the agenda file list and save it correctly."
18367 (if (stringp org-agenda-files)
18368 (let ((fe (org-read-agenda-file-list t)) b u)
18369 (while (setq b (find-buffer-visiting org-agenda-files))
18370 (kill-buffer b))
18371 (with-temp-file org-agenda-files
18372 (insert
18373 (mapconcat
18374 (lambda (f) ;; Keep un-expanded entries.
18375 (if (setq u (assoc f fe))
18376 (cdr u)
18378 list "\n")
18379 "\n")))
18380 (let ((org-mode-hook nil) (org-inhibit-startup t)
18381 (org-insert-mode-line-in-empty-file nil))
18382 (setq org-agenda-files list)
18383 (customize-save-variable 'org-agenda-files org-agenda-files))))
18385 (defun org-read-agenda-file-list (&optional pair-with-expansion)
18386 "Read the list of agenda files from a file.
18387 If PAIR-WITH-EXPANSION is t return pairs with un-expanded
18388 filenames, used by `org-store-new-agenda-file-list' to write back
18389 un-expanded file names."
18390 (when (file-directory-p org-agenda-files)
18391 (error "`org-agenda-files' cannot be a single directory"))
18392 (when (stringp org-agenda-files)
18393 (with-temp-buffer
18394 (insert-file-contents org-agenda-files)
18395 (mapcar
18396 (lambda (f)
18397 (let ((e (expand-file-name (substitute-in-file-name f)
18398 org-directory)))
18399 (if pair-with-expansion
18400 (cons e f)
18401 e)))
18402 (org-split-string (buffer-string) "[ \t\r\n]*?[\r\n][ \t\r\n]*")))))
18404 ;;;###autoload
18405 (defun org-cycle-agenda-files ()
18406 "Cycle through the files in `org-agenda-files'.
18407 If the current buffer visits an agenda file, find the next one in the list.
18408 If the current buffer does not, find the first agenda file."
18409 (interactive)
18410 (let* ((fs (org-agenda-files t))
18411 (files (append fs (list (car fs))))
18412 (tcf (if buffer-file-name (file-truename buffer-file-name)))
18413 file)
18414 (unless files (user-error "No agenda files"))
18415 (catch 'exit
18416 (while (setq file (pop files))
18417 (if (equal (file-truename file) tcf)
18418 (when (car files)
18419 (find-file (car files))
18420 (throw 'exit t))))
18421 (find-file (car fs)))
18422 (if (buffer-base-buffer) (org-pop-to-buffer-same-window (buffer-base-buffer)))))
18424 (defun org-agenda-file-to-front (&optional to-end)
18425 "Move/add the current file to the top of the agenda file list.
18426 If the file is not present in the list, it is added to the front. If it is
18427 present, it is moved there. With optional argument TO-END, add/move to the
18428 end of the list."
18429 (interactive "P")
18430 (let ((org-agenda-skip-unavailable-files nil)
18431 (file-alist (mapcar (lambda (x)
18432 (cons (file-truename x) x))
18433 (org-agenda-files t)))
18434 (ctf (file-truename
18435 (or buffer-file-name
18436 (user-error "Please save the current buffer to a file"))))
18437 x had)
18438 (setq x (assoc ctf file-alist) had x)
18440 (if (not x) (setq x (cons ctf (abbreviate-file-name buffer-file-name))))
18441 (if to-end
18442 (setq file-alist (append (delq x file-alist) (list x)))
18443 (setq file-alist (cons x (delq x file-alist))))
18444 (org-store-new-agenda-file-list (mapcar 'cdr file-alist))
18445 (org-install-agenda-files-menu)
18446 (message "File %s to %s of agenda file list"
18447 (if had "moved" "added") (if to-end "end" "front"))))
18449 (defun org-remove-file (&optional file)
18450 "Remove current file from the list of files in variable `org-agenda-files'.
18451 These are the files which are being checked for agenda entries.
18452 Optional argument FILE means use this file instead of the current."
18453 (interactive)
18454 (let* ((org-agenda-skip-unavailable-files nil)
18455 (file (or file buffer-file-name
18456 (user-error "Current buffer does not visit a file")))
18457 (true-file (file-truename file))
18458 (afile (abbreviate-file-name file))
18459 (files (delq nil (mapcar
18460 (lambda (x)
18461 (if (equal true-file
18462 (file-truename x))
18463 nil x))
18464 (org-agenda-files t)))))
18465 (if (not (= (length files) (length (org-agenda-files t))))
18466 (progn
18467 (org-store-new-agenda-file-list files)
18468 (org-install-agenda-files-menu)
18469 (message "Removed file: %s" afile))
18470 (message "File was not in list: %s (not removed)" afile))))
18472 (defun org-file-menu-entry (file)
18473 (vector file (list 'find-file file) t))
18475 (defun org-check-agenda-file (file)
18476 "Make sure FILE exists. If not, ask user what to do."
18477 (when (not (file-exists-p file))
18478 (message "Non-existent agenda file %s. [R]emove from list or [A]bort?"
18479 (abbreviate-file-name file))
18480 (let ((r (downcase (read-char-exclusive))))
18481 (cond
18482 ((equal r ?r)
18483 (org-remove-file file)
18484 (throw 'nextfile t))
18485 (t (user-error "Abort"))))))
18487 (defun org-get-agenda-file-buffer (file)
18488 "Get an agenda buffer visiting FILE.
18489 If the buffer needs to be created, add it to the list of buffers
18490 which might be released later."
18491 (let ((buf (org-find-base-buffer-visiting file)))
18492 (if buf
18493 buf ; just return it
18494 ;; Make a new buffer and remember it
18495 (setq buf (find-file-noselect file))
18496 (if buf (push buf org-agenda-new-buffers))
18497 buf)))
18499 (defun org-release-buffers (blist)
18500 "Release all buffers in list, asking the user for confirmation when needed.
18501 When a buffer is unmodified, it is just killed. When modified, it is saved
18502 \(if the user agrees) and then killed."
18503 (let (buf file)
18504 (while (setq buf (pop blist))
18505 (setq file (buffer-file-name buf))
18506 (when (and (buffer-modified-p buf)
18507 file
18508 (y-or-n-p (format "Save file %s? " file)))
18509 (with-current-buffer buf (save-buffer)))
18510 (kill-buffer buf))))
18512 (defun org-agenda-prepare-buffers (files)
18513 "Create buffers for all agenda files, protect archived trees and comments."
18514 (interactive)
18515 (let ((pa '(:org-archived t))
18516 (pc '(:org-comment t))
18517 (pall '(:org-archived t :org-comment t))
18518 (inhibit-read-only t)
18519 (org-inhibit-startup org-agenda-inhibit-startup)
18520 (rea (concat ":" org-archive-tag ":"))
18521 file re pos)
18522 (setq org-tag-alist-for-agenda nil
18523 org-tag-groups-alist-for-agenda nil)
18524 (save-excursion
18525 (save-restriction
18526 (while (setq file (pop files))
18527 (catch 'nextfile
18528 (if (bufferp file)
18529 (set-buffer file)
18530 (org-check-agenda-file file)
18531 (set-buffer (org-get-agenda-file-buffer file)))
18532 (widen)
18533 (org-set-regexps-and-options 'tags-only)
18534 (setq pos (point))
18535 (or (memq 'category org-agenda-ignore-properties)
18536 (org-refresh-category-properties))
18537 (or (memq 'stats org-agenda-ignore-properties)
18538 (org-refresh-stats-properties))
18539 (or (memq 'effort org-agenda-ignore-properties)
18540 (org-refresh-effort-properties))
18541 (or (memq 'appt org-agenda-ignore-properties)
18542 (org-refresh-properties "APPT_WARNTIME" 'org-appt-warntime))
18543 (setq org-todo-keywords-for-agenda
18544 (append org-todo-keywords-for-agenda org-todo-keywords-1))
18545 (setq org-done-keywords-for-agenda
18546 (append org-done-keywords-for-agenda org-done-keywords))
18547 (setq org-todo-keyword-alist-for-agenda
18548 (append org-todo-keyword-alist-for-agenda org-todo-key-alist))
18549 (setq org-tag-alist-for-agenda
18550 (org-uniquify
18551 (append org-tag-alist-for-agenda
18552 org-tag-alist
18553 org-tag-persistent-alist)))
18554 (if org-group-tags
18555 (setq org-tag-groups-alist-for-agenda
18556 (org-uniquify-alist
18557 (append org-tag-groups-alist-for-agenda org-tag-groups-alist))))
18558 (org-with-silent-modifications
18559 (save-excursion
18560 (remove-text-properties (point-min) (point-max) pall)
18561 (when org-agenda-skip-archived-trees
18562 (goto-char (point-min))
18563 (while (re-search-forward rea nil t)
18564 (if (org-at-heading-p t)
18565 (add-text-properties (point-at-bol) (org-end-of-subtree t) pa))))
18566 (goto-char (point-min))
18567 (setq re (format "^\\* .*\\<%s\\>" org-comment-string))
18568 (while (re-search-forward re nil t)
18569 (when (save-match-data (org-in-commented-heading-p t))
18570 (add-text-properties
18571 (match-beginning 0) (org-end-of-subtree t) pc)))))
18572 (goto-char pos)))))
18573 (setq org-todo-keywords-for-agenda
18574 (org-uniquify org-todo-keywords-for-agenda))
18575 (setq org-todo-keyword-alist-for-agenda
18576 (org-uniquify org-todo-keyword-alist-for-agenda))))
18579 ;;;; CDLaTeX minor mode
18581 (defvar org-cdlatex-mode-map (make-sparse-keymap)
18582 "Keymap for the minor `org-cdlatex-mode'.")
18584 (org-defkey org-cdlatex-mode-map "_" 'org-cdlatex-underscore-caret)
18585 (org-defkey org-cdlatex-mode-map "^" 'org-cdlatex-underscore-caret)
18586 (org-defkey org-cdlatex-mode-map "`" 'cdlatex-math-symbol)
18587 (org-defkey org-cdlatex-mode-map "'" 'org-cdlatex-math-modify)
18588 (org-defkey org-cdlatex-mode-map "\C-c{" 'org-cdlatex-environment-indent)
18590 (defvar org-cdlatex-texmathp-advice-is-done nil
18591 "Flag remembering if we have applied the advice to texmathp already.")
18593 (define-minor-mode org-cdlatex-mode
18594 "Toggle the minor `org-cdlatex-mode'.
18595 This mode supports entering LaTeX environment and math in LaTeX fragments
18596 in Org-mode.
18597 \\{org-cdlatex-mode-map}"
18598 nil " OCDL" nil
18599 (when org-cdlatex-mode
18600 (require 'cdlatex)
18601 (run-hooks 'cdlatex-mode-hook)
18602 (cdlatex-compute-tables))
18603 (unless org-cdlatex-texmathp-advice-is-done
18604 (setq org-cdlatex-texmathp-advice-is-done t)
18605 (defadvice texmathp (around org-math-always-on activate)
18606 "Always return t in org-mode buffers.
18607 This is because we want to insert math symbols without dollars even outside
18608 the LaTeX math segments. If Orgmode thinks that point is actually inside
18609 an embedded LaTeX fragment, let texmathp do its job.
18610 \\[org-cdlatex-mode-map]"
18611 (interactive)
18612 (let (p)
18613 (cond
18614 ((not (derived-mode-p 'org-mode)) ad-do-it)
18615 ((eq this-command 'cdlatex-math-symbol)
18616 (setq ad-return-value t
18617 texmathp-why '("cdlatex-math-symbol in org-mode" . 0)))
18619 (let ((p (org-inside-LaTeX-fragment-p)))
18620 (if (and p (member (car p) (plist-get org-format-latex-options :matchers)))
18621 (setq ad-return-value t
18622 texmathp-why '("Org-mode embedded math" . 0))
18623 (if p ad-do-it)))))))))
18625 (defun turn-on-org-cdlatex ()
18626 "Unconditionally turn on `org-cdlatex-mode'."
18627 (org-cdlatex-mode 1))
18629 (defun org-try-cdlatex-tab ()
18630 "Check if it makes sense to execute `cdlatex-tab', and do it if yes.
18631 It makes sense to do so if `org-cdlatex-mode' is active and if the cursor is
18632 - inside a LaTeX fragment, or
18633 - after the first word in a line, where an abbreviation expansion could
18634 insert a LaTeX environment."
18635 (when org-cdlatex-mode
18636 (cond
18637 ;; Before any word on the line: No expansion possible.
18638 ((save-excursion (skip-chars-backward " \t") (bolp)) nil)
18639 ;; Just after first word on the line: Expand it. Make sure it
18640 ;; cannot happen on headlines, though.
18641 ((save-excursion
18642 (skip-chars-backward "a-zA-Z0-9*")
18643 (skip-chars-backward " \t")
18644 (and (bolp) (not (org-at-heading-p))))
18645 (cdlatex-tab) t)
18646 ((org-inside-LaTeX-fragment-p) (cdlatex-tab) t))))
18648 (defun org-cdlatex-underscore-caret (&optional arg)
18649 "Execute `cdlatex-sub-superscript' in LaTeX fragments.
18650 Revert to the normal definition outside of these fragments."
18651 (interactive "P")
18652 (if (org-inside-LaTeX-fragment-p)
18653 (call-interactively 'cdlatex-sub-superscript)
18654 (let (org-cdlatex-mode)
18655 (call-interactively (key-binding (vector last-input-event))))))
18657 (defun org-cdlatex-math-modify (&optional arg)
18658 "Execute `cdlatex-math-modify' in LaTeX fragments.
18659 Revert to the normal definition outside of these fragments."
18660 (interactive "P")
18661 (if (org-inside-LaTeX-fragment-p)
18662 (call-interactively 'cdlatex-math-modify)
18663 (let (org-cdlatex-mode)
18664 (call-interactively (key-binding (vector last-input-event))))))
18666 (defun org-cdlatex-environment-indent (&optional environment item)
18667 "Execute `cdlatex-environment' and indent the inserted environment."
18668 (interactive)
18669 (cdlatex-environment environment item)
18670 (let ((element (org-element-at-point)))
18671 (org-indent-region (org-element-property :begin element)
18672 (org-element-property :end element))))
18675 ;;;; LaTeX fragments
18677 (defun org-inside-LaTeX-fragment-p ()
18678 "Test if point is inside a LaTeX fragment.
18679 I.e. after a \\begin, \\(, \\[, $, or $$, without the corresponding closing
18680 sequence appearing also before point.
18681 Even though the matchers for math are configurable, this function assumes
18682 that \\begin, \\(, \\[, and $$ are always used. Only the single dollar
18683 delimiters are skipped when they have been removed by customization.
18684 The return value is nil, or a cons cell with the delimiter and the
18685 position of this delimiter.
18687 This function does a reasonably good job, but can locally be fooled by
18688 for example currency specifications. For example it will assume being in
18689 inline math after \"$22.34\". The LaTeX fragment formatter will only format
18690 fragments that are properly closed, but during editing, we have to live
18691 with the uncertainty caused by missing closing delimiters. This function
18692 looks only before point, not after."
18693 (catch 'exit
18694 (let ((pos (point))
18695 (dodollar (member "$" (plist-get org-format-latex-options :matchers)))
18696 (lim (progn
18697 (re-search-backward (concat "^\\(" paragraph-start "\\)") nil t)
18698 (point)))
18699 dd-on str (start 0) m re)
18700 (goto-char pos)
18701 (when dodollar
18702 (setq str (concat (buffer-substring lim (point)) "\000 X$.")
18703 re (nth 1 (assoc "$" org-latex-regexps)))
18704 (while (string-match re str start)
18705 (cond
18706 ((= (match-end 0) (length str))
18707 (throw 'exit (cons "$" (+ lim (match-beginning 0) 1))))
18708 ((= (match-end 0) (- (length str) 5))
18709 (throw 'exit nil))
18710 (t (setq start (match-end 0))))))
18711 (when (setq m (re-search-backward "\\(\\\\begin{[^}]*}\\|\\\\(\\|\\\\\\[\\)\\|\\(\\\\end{[^}]*}\\|\\\\)\\|\\\\\\]\\)\\|\\(\\$\\$\\)" lim t))
18712 (goto-char pos)
18713 (and (match-beginning 1) (throw 'exit (cons (match-string 1) m)))
18714 (and (match-beginning 2) (throw 'exit nil))
18715 ;; count $$
18716 (while (re-search-backward "\\$\\$" lim t)
18717 (setq dd-on (not dd-on)))
18718 (goto-char pos)
18719 (if dd-on (cons "$$" m))))))
18721 (defun org-inside-latex-macro-p ()
18722 "Is point inside a LaTeX macro or its arguments?"
18723 (save-match-data
18724 (org-in-regexp
18725 "\\\\[a-zA-Z]+\\*?\\(\\(\\[[^][\n{}]*\\]\\)\\|\\({[^{}\n]*}\\)\\)*")))
18727 (defvar org-latex-fragment-image-overlays nil
18728 "List of overlays carrying the images of latex fragments.")
18729 (make-variable-buffer-local 'org-latex-fragment-image-overlays)
18731 (defun org-remove-latex-fragment-image-overlays ()
18732 "Remove all overlays with LaTeX fragment images in current buffer."
18733 (mapc 'delete-overlay org-latex-fragment-image-overlays)
18734 (setq org-latex-fragment-image-overlays nil))
18736 (define-obsolete-function-alias
18737 'org-preview-latex-fragment 'org-toggle-latex-fragment "24.4")
18738 (defun org-toggle-latex-fragment (&optional subtree)
18739 "Preview the LaTeX fragment at point, or all locally or globally.
18740 If the cursor is in a LaTeX fragment, create the image and overlay
18741 it over the source code. If there is no fragment at point, display
18742 all fragments in the current text, from one headline to the next. With
18743 prefix SUBTREE, display all fragments in the current subtree. With a
18744 double prefix arg \\[universal-argument] \\[universal-argument], or when \
18745 the cursor is before the first headline,
18746 display all fragments in the buffer.
18747 The images can be removed again with \\[org-toggle-latex-fragment]."
18748 (interactive "P")
18749 (unless (buffer-file-name (buffer-base-buffer))
18750 (user-error "Can't preview LaTeX fragment in a non-file buffer"))
18751 (if org-latex-fragment-image-overlays
18752 (progn (org-remove-latex-fragment-image-overlays)
18753 (message "LaTeX fragments images removed"))
18754 (when (display-graphic-p)
18755 (org-remove-latex-fragment-image-overlays)
18756 (org-with-wide-buffer
18757 (let (beg end msg)
18758 (cond
18759 ((equal subtree '(16))
18760 (setq beg (point-min) end (point-max)
18761 msg "Creating images for buffer...%s"))
18762 ((equal subtree '(4))
18763 (org-back-to-heading)
18764 (setq beg (point) end (org-end-of-subtree t)
18765 msg "Creating images for subtree...%s"))
18766 ((let ((context (org-element-context)))
18767 (when (memq (org-element-type context)
18768 '(latex-environment latex-fragment))
18769 (setq beg (org-element-property :begin context)
18770 end (org-element-property :end context)
18771 msg "Creating image...%s"))))
18772 ((org-before-first-heading-p)
18773 (setq beg (point-min) end (point-max)
18774 msg "Creating images for buffer...%s"))
18776 (org-back-to-heading)
18777 (setq beg (point) end (progn (outline-next-heading) (point))
18778 msg "Creating images for entry...%s")))
18779 (message msg "")
18780 (narrow-to-region beg end)
18781 (goto-char beg)
18782 (org-format-latex
18783 (concat org-latex-preview-ltxpng-directory
18784 (file-name-sans-extension
18785 (file-name-nondirectory
18786 (buffer-file-name (buffer-base-buffer)))))
18787 default-directory 'overlays msg 'forbuffer
18788 org-latex-create-formula-image-program)
18789 (message msg "done. Use `C-c C-x C-l' to remove images."))))))
18791 (defun org-format-latex
18792 (prefix &optional dir overlays msg forbuffer processing-type)
18793 "Replace LaTeX fragments with links to an image, and produce images.
18794 Some of the options can be changed using the variable
18795 `org-format-latex-options'."
18796 (when (and overlays (fboundp 'clear-image-cache)) (clear-image-cache))
18797 (unless (eq processing-type 'verbatim)
18798 (let* ((math-regexp "\\$\\|\\\\[([]\\|^[ \t]*\\\\begin{[A-Za-z0-9*]+}")
18799 (cnt 0)
18800 checkdir-flag)
18801 (goto-char (point-min))
18802 (while (re-search-forward math-regexp nil t)
18803 (unless (and overlays
18804 (eq (get-char-property (point) 'org-overlay-type)
18805 'org-latex-overlay))
18806 (let* ((context (org-element-context))
18807 (type (org-element-type context)))
18808 (when (memq type '(latex-environment latex-fragment))
18809 (let ((block-type (eq type 'latex-environment))
18810 (value (org-element-property :value context))
18811 (beg (org-element-property :begin context))
18812 (end (save-excursion
18813 (goto-char (org-element-property :end context))
18814 (skip-chars-backward " \r\t\n")
18815 (point))))
18816 (case processing-type
18817 (mathjax
18818 ;; Prepare for MathJax processing.
18819 (if (eq (char-after beg) ?$)
18820 (save-excursion
18821 (delete-region beg end)
18822 (insert "\\(" (substring value 1 -1) "\\)"))
18823 (goto-char end)))
18824 ((dvipng imagemagick)
18825 ;; Process to an image.
18826 (incf cnt)
18827 (goto-char beg)
18828 (let* ((face (face-at-point))
18829 ;; Get the colors from the face at point.
18831 (let ((color (plist-get org-format-latex-options
18832 :foreground)))
18833 (if (and forbuffer (eq color 'auto))
18834 (face-attribute face :foreground nil 'default)
18835 color)))
18837 (let ((color (plist-get org-format-latex-options
18838 :background)))
18839 (if (and forbuffer (eq color 'auto))
18840 (face-attribute face :background nil 'default)
18841 color)))
18842 (hash (sha1 (prin1-to-string
18843 (list org-format-latex-header
18844 org-latex-default-packages-alist
18845 org-latex-packages-alist
18846 org-format-latex-options
18847 forbuffer value fg bg))))
18848 (absprefix (expand-file-name prefix dir))
18849 (linkfile (format "%s_%s.png" prefix hash))
18850 (movefile (format "%s_%s.png" absprefix hash))
18851 (sep (and block-type "\n\n"))
18852 (link (concat sep "[[file:" linkfile "]]" sep))
18853 (options
18854 (org-combine-plists
18855 org-format-latex-options
18856 `(:foreground ,fg :background ,bg))))
18857 (when msg (message msg cnt))
18858 (unless checkdir-flag ; Ensure the directory exists.
18859 (setq checkdir-flag t)
18860 (let ((todir (file-name-directory absprefix)))
18861 (unless (file-directory-p todir)
18862 (make-directory todir t))))
18863 (unless (file-exists-p movefile)
18864 (org-create-formula-image
18865 value movefile options forbuffer processing-type))
18866 (if overlays
18867 (progn
18868 (dolist (o (overlays-in beg end))
18869 (when (eq (overlay-get o 'org-overlay-type)
18870 'org-latex-overlay)
18871 (delete-overlay o)))
18872 (let ((ov (make-overlay beg end)))
18873 (overlay-put ov
18874 'org-overlay-type
18875 'org-latex-overlay)
18876 (if (featurep 'xemacs)
18877 (progn
18878 (overlay-put ov 'invisible t)
18879 (overlay-put
18880 ov 'end-glyph
18881 (make-glyph
18882 (vector 'png :file movefile))))
18883 (overlay-put
18884 ov 'display
18885 (list 'image
18886 :type 'png
18887 :file movefile
18888 :ascent 'center)))
18889 (push ov org-latex-fragment-image-overlays))
18890 (goto-char end))
18891 (delete-region beg end)
18892 (insert
18893 (org-add-props link
18894 (list 'org-latex-src
18895 (replace-regexp-in-string "\"" "" value)
18896 'org-latex-src-embed-type
18897 (if block-type 'paragraph 'character)))))))
18898 (mathml
18899 ;; Process to MathML.
18900 (unless (org-format-latex-mathml-available-p)
18901 (user-error "LaTeX to MathML converter not configured"))
18902 (incf cnt)
18903 (when msg (message msg cnt))
18904 (goto-char beg)
18905 (delete-region beg end)
18906 (insert (org-format-latex-as-mathml
18907 value block-type prefix dir)))
18908 (otherwise
18909 (error "Unknown conversion type %s for LaTeX fragments"
18910 processing-type)))))))))))
18912 (defun org-create-math-formula (latex-frag &optional mathml-file)
18913 "Convert LATEX-FRAG to MathML and store it in MATHML-FILE.
18914 Use `org-latex-to-mathml-convert-command'. If the conversion is
18915 sucessful, return the portion between \"<math...> </math>\"
18916 elements otherwise return nil. When MATHML-FILE is specified,
18917 write the results in to that file. When invoked as an
18918 interactive command, prompt for LATEX-FRAG, with initial value
18919 set to the current active region and echo the results for user
18920 inspection."
18921 (interactive (list (let ((frag (when (org-region-active-p)
18922 (buffer-substring-no-properties
18923 (region-beginning) (region-end)))))
18924 (read-string "LaTeX Fragment: " frag nil frag))))
18925 (unless latex-frag (user-error "Invalid LaTeX fragment"))
18926 (let* ((tmp-in-file (file-relative-name
18927 (make-temp-name (expand-file-name "ltxmathml-in"))))
18928 (ignore (write-region latex-frag nil tmp-in-file))
18929 (tmp-out-file (file-relative-name
18930 (make-temp-name (expand-file-name "ltxmathml-out"))))
18931 (cmd (format-spec
18932 org-latex-to-mathml-convert-command
18933 `((?j . ,(shell-quote-argument
18934 (expand-file-name org-latex-to-mathml-jar-file)))
18935 (?I . ,(shell-quote-argument tmp-in-file))
18936 (?o . ,(shell-quote-argument tmp-out-file)))))
18937 mathml shell-command-output)
18938 (when (org-called-interactively-p 'any)
18939 (unless (org-format-latex-mathml-available-p)
18940 (user-error "LaTeX to MathML converter not configured")))
18941 (message "Running %s" cmd)
18942 (setq shell-command-output (shell-command-to-string cmd))
18943 (setq mathml
18944 (when (file-readable-p tmp-out-file)
18945 (with-current-buffer (find-file-noselect tmp-out-file t)
18946 (goto-char (point-min))
18947 (when (re-search-forward
18948 (concat
18949 (regexp-quote
18950 "<math xmlns=\"http://www.w3.org/1998/Math/MathML\">")
18951 "\\(.\\|\n\\)*"
18952 (regexp-quote "</math>")) nil t)
18953 (prog1 (match-string 0) (kill-buffer))))))
18954 (cond
18955 (mathml
18956 (setq mathml
18957 (concat "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" mathml))
18958 (when mathml-file
18959 (write-region mathml nil mathml-file))
18960 (when (org-called-interactively-p 'any)
18961 (message mathml)))
18962 ((message "LaTeX to MathML conversion failed")
18963 (message shell-command-output)))
18964 (delete-file tmp-in-file)
18965 (when (file-exists-p tmp-out-file)
18966 (delete-file tmp-out-file))
18967 mathml))
18969 (defun org-format-latex-as-mathml (latex-frag latex-frag-type
18970 prefix &optional dir)
18971 "Use `org-create-math-formula' but check local cache first."
18972 (let* ((absprefix (expand-file-name prefix dir))
18973 (print-length nil) (print-level nil)
18974 (formula-id (concat
18975 "formula-"
18976 (sha1
18977 (prin1-to-string
18978 (list latex-frag
18979 org-latex-to-mathml-convert-command)))))
18980 (formula-cache (format "%s-%s.mathml" absprefix formula-id))
18981 (formula-cache-dir (file-name-directory formula-cache)))
18983 (unless (file-directory-p formula-cache-dir)
18984 (make-directory formula-cache-dir t))
18986 (unless (file-exists-p formula-cache)
18987 (org-create-math-formula latex-frag formula-cache))
18989 (if (file-exists-p formula-cache)
18990 ;; Successful conversion. Return the link to MathML file.
18991 (org-add-props
18992 (format "[[file:%s]]" (file-relative-name formula-cache dir))
18993 (list 'org-latex-src (replace-regexp-in-string "\"" "" latex-frag)
18994 'org-latex-src-embed-type (if latex-frag-type
18995 'paragraph 'character)))
18996 ;; Failed conversion. Return the LaTeX fragment verbatim
18997 latex-frag)))
18999 (defun org-create-formula-image (string tofile options buffer &optional type)
19000 "Create an image from LaTeX source using dvipng or convert.
19001 This function calls either `org-create-formula-image-with-dvipng'
19002 or `org-create-formula-image-with-imagemagick' depending on the
19003 value of `org-latex-create-formula-image-program' or on the value
19004 of the optional TYPE variable.
19006 Note: ultimately these two function should be combined as they
19007 share a good deal of logic."
19008 (org-check-external-command
19009 "latex" "needed to convert LaTeX fragments to images")
19010 (funcall
19011 (case (or type org-latex-create-formula-image-program)
19012 ('dvipng
19013 (org-check-external-command
19014 "dvipng" "needed to convert LaTeX fragments to images")
19015 'org-create-formula-image-with-dvipng)
19016 ('imagemagick
19017 (org-check-external-command
19018 "convert" "you need to install imagemagick")
19019 'org-create-formula-image-with-imagemagick)
19020 (t (error
19021 "Invalid value of `org-latex-create-formula-image-program'")))
19022 string tofile options buffer))
19024 (declare-function org-export-get-backend "ox" (name))
19025 (declare-function org-export--get-global-options "ox" (&optional backend))
19026 (declare-function org-export--get-inbuffer-options "ox" (&optional backend))
19027 (declare-function org-latex-guess-inputenc "ox-latex" (header))
19028 (declare-function org-latex-guess-babel-language "ox-latex" (header info))
19029 (defun org-create-formula--latex-header ()
19030 "Return LaTeX header appropriate for previewing a LaTeX snippet."
19031 (let ((info (org-combine-plists (org-export--get-global-options
19032 (org-export-get-backend 'latex))
19033 (org-export--get-inbuffer-options
19034 (org-export-get-backend 'latex)))))
19035 (org-latex-guess-babel-language
19036 (org-latex-guess-inputenc
19037 (org-splice-latex-header
19038 org-format-latex-header
19039 org-latex-default-packages-alist
19040 org-latex-packages-alist t
19041 (plist-get info :latex-header)))
19042 info)))
19044 ;; This function borrows from Ganesh Swami's latex2png.el
19045 (defun org-create-formula-image-with-dvipng (string tofile options buffer)
19046 "This calls dvipng."
19047 (require 'ox-latex)
19048 (let* ((tmpdir (if (featurep 'xemacs)
19049 (temp-directory)
19050 temporary-file-directory))
19051 (texfilebase (make-temp-name
19052 (expand-file-name "orgtex" tmpdir)))
19053 (texfile (concat texfilebase ".tex"))
19054 (dvifile (concat texfilebase ".dvi"))
19055 (pngfile (concat texfilebase ".png"))
19056 (fnh (if (featurep 'xemacs)
19057 (font-height (face-font 'default))
19058 (face-attribute 'default :height nil)))
19059 (scale (or (plist-get options (if buffer :scale :html-scale)) 1.0))
19060 (dpi (number-to-string (* scale (floor (* 0.9 (if buffer fnh 140.))))))
19061 (fg (or (plist-get options (if buffer :foreground :html-foreground))
19062 "Black"))
19063 (bg (or (plist-get options (if buffer :background :html-background))
19064 "Transparent")))
19065 (if (eq fg 'default) (setq fg (org-dvipng-color :foreground))
19066 (unless (string= fg "Transparent") (setq fg (org-dvipng-color-format fg))))
19067 (if (eq bg 'default) (setq bg (org-dvipng-color :background))
19068 (unless (string= bg "Transparent") (setq bg (org-dvipng-color-format bg))))
19069 (let ((latex-header (org-create-formula--latex-header)))
19070 (with-temp-file texfile
19071 (insert latex-header)
19072 (insert "\n\\begin{document}\n" string "\n\\end{document}\n")))
19073 (let ((dir default-directory))
19074 (ignore-errors
19075 (cd tmpdir)
19076 (call-process "latex" nil nil nil texfile))
19077 (cd dir))
19078 (if (not (file-exists-p dvifile))
19079 (progn (message "Failed to create dvi file from %s" texfile) nil)
19080 (ignore-errors
19081 (if (featurep 'xemacs)
19082 (call-process "dvipng" nil nil nil
19083 "-fg" fg "-bg" bg
19084 "-T" "tight"
19085 "-o" pngfile
19086 dvifile)
19087 (call-process "dvipng" nil nil nil
19088 "-fg" fg "-bg" bg
19089 "-D" dpi
19090 ;;"-x" scale "-y" scale
19091 "-T" "tight"
19092 "-o" pngfile
19093 dvifile)))
19094 (if (not (file-exists-p pngfile))
19095 (if org-format-latex-signal-error
19096 (error "Failed to create png file from %s" texfile)
19097 (message "Failed to create png file from %s" texfile)
19098 nil)
19099 ;; Use the requested file name and clean up
19100 (copy-file pngfile tofile 'replace)
19101 (loop for e in '(".dvi" ".tex" ".aux" ".log" ".png" ".out") do
19102 (if (file-exists-p (concat texfilebase e))
19103 (delete-file (concat texfilebase e))))
19104 pngfile))))
19106 (declare-function org-latex-compile "ox-latex" (texfile &optional snippet))
19107 (defun org-create-formula-image-with-imagemagick (string tofile options buffer)
19108 "This calls convert, which is included into imagemagick."
19109 (require 'ox-latex)
19110 (let* ((tmpdir (if (featurep 'xemacs)
19111 (temp-directory)
19112 temporary-file-directory))
19113 (texfilebase (make-temp-name
19114 (expand-file-name "orgtex" tmpdir)))
19115 (texfile (concat texfilebase ".tex"))
19116 (pdffile (concat texfilebase ".pdf"))
19117 (pngfile (concat texfilebase ".png"))
19118 (fnh (if (featurep 'xemacs)
19119 (font-height (face-font 'default))
19120 (face-attribute 'default :height nil)))
19121 (scale (or (plist-get options (if buffer :scale :html-scale)) 1.0))
19122 (dpi (number-to-string (* scale (floor (if buffer fnh 120.)))))
19123 (fg (or (plist-get options (if buffer :foreground :html-foreground))
19124 "black"))
19125 (bg (or (plist-get options (if buffer :background :html-background))
19126 "white")))
19127 (if (eq fg 'default) (setq fg (org-latex-color :foreground))
19128 (setq fg (org-latex-color-format fg)))
19129 (if (eq bg 'default) (setq bg (org-latex-color :background))
19130 (setq bg (org-latex-color-format
19131 (if (string= bg "Transparent") "white" bg))))
19132 (let ((latex-header (org-create-formula--latex-header)))
19133 (with-temp-file texfile
19134 (insert latex-header)
19135 (insert "\n\\begin{document}\n"
19136 "\\definecolor{fg}{rgb}{" fg "}\n"
19137 "\\definecolor{bg}{rgb}{" bg "}\n"
19138 "\n\\pagecolor{bg}\n"
19139 "\n{\\color{fg}\n"
19140 string
19141 "\n}\n"
19142 "\n\\end{document}\n")))
19143 (org-latex-compile texfile t)
19144 (if (not (file-exists-p pdffile))
19145 (progn (message "Failed to create pdf file from %s" texfile) nil)
19146 (ignore-errors
19147 (if (featurep 'xemacs)
19148 (call-process "convert" nil nil nil
19149 "-density" "96"
19150 "-trim"
19151 "-antialias"
19152 pdffile
19153 "-quality" "100"
19154 ;; "-sharpen" "0x1.0"
19155 pngfile)
19156 (call-process "convert" nil nil nil
19157 "-density" dpi
19158 "-trim"
19159 "-antialias"
19160 pdffile
19161 "-quality" "100"
19162 ;; "-sharpen" "0x1.0"
19163 pngfile)))
19164 (if (not (file-exists-p pngfile))
19165 (if org-format-latex-signal-error
19166 (error "Failed to create png file from %s" texfile)
19167 (message "Failed to create png file from %s" texfile)
19168 nil)
19169 ;; Use the requested file name and clean up
19170 (copy-file pngfile tofile 'replace)
19171 (loop for e in '(".pdf" ".tex" ".aux" ".log" ".png") do
19172 (if (file-exists-p (concat texfilebase e))
19173 (delete-file (concat texfilebase e))))
19174 pngfile))))
19176 (defun org-splice-latex-header (tpl def-pkg pkg snippets-p &optional extra)
19177 "Fill a LaTeX header template TPL.
19178 In the template, the following place holders will be recognized:
19180 [DEFAULT-PACKAGES] \\usepackage statements for DEF-PKG
19181 [NO-DEFAULT-PACKAGES] do not include DEF-PKG
19182 [PACKAGES] \\usepackage statements for PKG
19183 [NO-PACKAGES] do not include PKG
19184 [EXTRA] the string EXTRA
19185 [NO-EXTRA] do not include EXTRA
19187 For backward compatibility, if both the positive and the negative place
19188 holder is missing, the positive one (without the \"NO-\") will be
19189 assumed to be present at the end of the template.
19190 DEF-PKG and PKG are assumed to be alists of options/packagename lists.
19191 EXTRA is a string.
19192 SNIPPETS-P indicates if this is run to create snippet images for HTML."
19193 (let (rpl (end ""))
19194 (if (string-match "^[ \t]*\\[\\(NO-\\)?DEFAULT-PACKAGES\\][ \t]*\n?" tpl)
19195 (setq rpl (if (or (match-end 1) (not def-pkg))
19196 "" (org-latex-packages-to-string def-pkg snippets-p t))
19197 tpl (replace-match rpl t t tpl))
19198 (if def-pkg (setq end (org-latex-packages-to-string def-pkg snippets-p))))
19200 (if (string-match "\\[\\(NO-\\)?PACKAGES\\][ \t]*\n?" tpl)
19201 (setq rpl (if (or (match-end 1) (not pkg))
19202 "" (org-latex-packages-to-string pkg snippets-p t))
19203 tpl (replace-match rpl t t tpl))
19204 (if pkg (setq end
19205 (concat end "\n"
19206 (org-latex-packages-to-string pkg snippets-p)))))
19208 (if (string-match "\\[\\(NO-\\)?EXTRA\\][ \t]*\n?" tpl)
19209 (setq rpl (if (or (match-end 1) (not extra))
19210 "" (concat extra "\n"))
19211 tpl (replace-match rpl t t tpl))
19212 (if (and extra (string-match "\\S-" extra))
19213 (setq end (concat end "\n" extra))))
19215 (if (string-match "\\S-" end)
19216 (concat tpl "\n" end)
19217 tpl)))
19219 (defun org-latex-packages-to-string (pkg &optional snippets-p newline)
19220 "Turn an alist of packages into a string with the \\usepackage macros."
19221 (setq pkg (mapconcat (lambda(p)
19222 (cond
19223 ((stringp p) p)
19224 ((and snippets-p (>= (length p) 3) (not (nth 2 p)))
19225 (format "%% Package %s omitted" (cadr p)))
19226 ((equal "" (car p))
19227 (format "\\usepackage{%s}" (cadr p)))
19229 (format "\\usepackage[%s]{%s}"
19230 (car p) (cadr p)))))
19232 "\n"))
19233 (if newline (concat pkg "\n") pkg))
19235 (defun org-dvipng-color (attr)
19236 "Return a RGB color specification for dvipng."
19237 (apply 'format "rgb %s %s %s"
19238 (mapcar 'org-normalize-color
19239 (if (featurep 'xemacs)
19240 (color-rgb-components
19241 (face-property 'default
19242 (cond ((eq attr :foreground) 'foreground)
19243 ((eq attr :background) 'background))))
19244 (color-values (face-attribute 'default attr nil))))))
19246 (defun org-dvipng-color-format (color-name)
19247 "Convert COLOR-NAME to a RGB color value for dvipng."
19248 (apply 'format "rgb %s %s %s"
19249 (mapcar 'org-normalize-color
19250 (color-values color-name))))
19252 (defun org-latex-color (attr)
19253 "Return a RGB color for the LaTeX color package."
19254 (apply 'format "%s,%s,%s"
19255 (mapcar 'org-normalize-color
19256 (if (featurep 'xemacs)
19257 (color-rgb-components
19258 (face-property 'default
19259 (cond ((eq attr :foreground) 'foreground)
19260 ((eq attr :background) 'background))))
19261 (color-values (face-attribute 'default attr nil))))))
19263 (defun org-latex-color-format (color-name)
19264 "Convert COLOR-NAME to a RGB color value."
19265 (apply 'format "%s,%s,%s"
19266 (mapcar 'org-normalize-color
19267 (color-values color-name))))
19269 (defun org-normalize-color (value)
19270 "Return string to be used as color value for an RGB component."
19271 (format "%g" (/ value 65535.0)))
19275 ;; Image display
19277 (defvar org-inline-image-overlays nil)
19278 (make-variable-buffer-local 'org-inline-image-overlays)
19280 (defun org-toggle-inline-images (&optional include-linked)
19281 "Toggle the display of inline images.
19282 INCLUDE-LINKED is passed to `org-display-inline-images'."
19283 (interactive "P")
19284 (if org-inline-image-overlays
19285 (progn
19286 (org-remove-inline-images)
19287 (message "Inline image display turned off"))
19288 (org-display-inline-images include-linked)
19289 (if (and (org-called-interactively-p)
19290 org-inline-image-overlays)
19291 (message "%d images displayed inline"
19292 (length org-inline-image-overlays))
19293 (message "No images to display inline"))))
19295 (defun org-redisplay-inline-images ()
19296 "Refresh the display of inline images."
19297 (interactive)
19298 (if (not org-inline-image-overlays)
19299 (org-toggle-inline-images)
19300 (org-toggle-inline-images)
19301 (org-toggle-inline-images)))
19303 (defun org-display-inline-images (&optional include-linked refresh beg end)
19304 "Display inline images.
19306 An inline image is a link which follows either of these
19307 conventions:
19309 1. Its path is a file with an extension matching return value
19310 from `image-file-name-regexp' and it has no contents.
19312 2. Its description consists in a single link of the previous
19313 type.
19315 When optional argument INCLUDE-LINKED is non-nil, also links with
19316 a text description part will be inlined. This can be nice for
19317 a quick look at those images, but it does not reflect what
19318 exported files will look like.
19320 When optional argument REFRESH is non-nil, refresh existing
19321 images between BEG and END. This will create new image displays
19322 only if necessary. BEG and END default to the buffer
19323 boundaries."
19324 (interactive "P")
19325 (when (display-graphic-p)
19326 (unless refresh
19327 (org-remove-inline-images)
19328 (when (fboundp 'clear-image-cache) (clear-image-cache)))
19329 (org-with-wide-buffer
19330 (goto-char (or beg (point-min)))
19331 (let ((case-fold-search t)
19332 (file-extension-re (org-image-file-name-regexp)))
19333 (while (re-search-forward "[][]\\[\\(?:file\\|[./~]\\)" end t)
19334 (let ((link (save-match-data (org-element-context))))
19335 ;; Check if we're at an inline image.
19336 (when (and (equal (org-element-property :type link) "file")
19337 (or include-linked
19338 (not (org-element-property :contents-begin link)))
19339 (let ((parent (org-element-property :parent link)))
19340 (or (not (eq (org-element-type parent) 'link))
19341 (not (cdr (org-element-contents parent)))))
19342 (org-string-match-p file-extension-re
19343 (org-element-property :path link)))
19344 (let ((file (expand-file-name (org-element-property :path link))))
19345 (when (file-exists-p file)
19346 (let ((width
19347 ;; Apply `org-image-actual-width' specifications.
19348 (cond
19349 ((not (image-type-available-p 'imagemagick)) nil)
19350 ((eq org-image-actual-width t) nil)
19351 ((listp org-image-actual-width)
19353 ;; First try to find a width among
19354 ;; attributes associated to the paragraph
19355 ;; containing link.
19356 (let ((paragraph
19357 (let ((e link))
19358 (while (and (setq e (org-element-property
19359 :parent e))
19360 (not (eq (org-element-type e)
19361 'paragraph))))
19362 e)))
19363 (when paragraph
19364 (save-excursion
19365 (goto-char (org-element-property :begin paragraph))
19366 (when
19367 (re-search-forward
19368 "^[ \t]*#\\+attr_.*?: +.*?:width +\\(\\S-+\\)"
19369 (org-element-property
19370 :post-affiliated paragraph)
19372 (string-to-number (match-string 1))))))
19373 ;; Otherwise, fall-back to provided number.
19374 (car org-image-actual-width)))
19375 ((numberp org-image-actual-width)
19376 org-image-actual-width)))
19377 (old (get-char-property-and-overlay
19378 (org-element-property :begin link)
19379 'org-image-overlay)))
19380 (if (and (car-safe old) refresh)
19381 (image-refresh (overlay-get (cdr old) 'display))
19382 (let ((image (create-image file
19383 (and width 'imagemagick)
19385 :width width)))
19386 (when image
19387 (let* ((link
19388 ;; If inline image is the description
19389 ;; of another link, be sure to
19390 ;; consider the latter as the one to
19391 ;; apply the overlay on.
19392 (let ((parent
19393 (org-element-property :parent link)))
19394 (if (eq (org-element-type parent) 'link)
19395 parent
19396 link)))
19397 (ov (make-overlay
19398 (org-element-property :begin link)
19399 (progn
19400 (goto-char
19401 (org-element-property :end link))
19402 (skip-chars-backward " \t")
19403 (point)))))
19404 (overlay-put ov 'display image)
19405 (overlay-put ov 'face 'default)
19406 (overlay-put ov 'org-image-overlay t)
19407 (overlay-put
19408 ov 'modification-hooks
19409 (list 'org-display-inline-remove-overlay))
19410 (push ov org-inline-image-overlays)))))))))))))))
19412 (define-obsolete-function-alias
19413 'org-display-inline-modification-hook 'org-display-inline-remove-overlay "24.3")
19415 (defun org-display-inline-remove-overlay (ov after beg end &optional len)
19416 "Remove inline-display overlay if a corresponding region is modified."
19417 (let ((inhibit-modification-hooks t))
19418 (when (and ov after)
19419 (delete ov org-inline-image-overlays)
19420 (delete-overlay ov))))
19422 (defun org-remove-inline-images ()
19423 "Remove inline display of images."
19424 (interactive)
19425 (mapc 'delete-overlay org-inline-image-overlays)
19426 (setq org-inline-image-overlays nil))
19428 ;;;; Key bindings
19430 ;; Outline functions from `outline-mode-prefix-map'
19431 ;; that can be remapped in Org:
19432 (define-key org-mode-map [remap outline-mark-subtree] 'org-mark-subtree)
19433 (define-key org-mode-map [remap show-subtree] 'org-show-subtree)
19434 (define-key org-mode-map [remap outline-forward-same-level]
19435 'org-forward-heading-same-level)
19436 (define-key org-mode-map [remap outline-backward-same-level]
19437 'org-backward-heading-same-level)
19438 (define-key org-mode-map [remap show-branches]
19439 'org-kill-note-or-show-branches)
19440 (define-key org-mode-map [remap outline-promote] 'org-promote-subtree)
19441 (define-key org-mode-map [remap outline-demote] 'org-demote-subtree)
19442 (define-key org-mode-map [remap outline-insert-heading] 'org-ctrl-c-ret)
19444 ;; Outline functions from `outline-mode-prefix-map' that can not
19445 ;; be remapped in Org:
19447 ;; - the column "key binding" shows whether the Outline function is still
19448 ;; available in Org mode on the same key that it has been bound to in
19449 ;; Outline mode:
19450 ;; - "overridden": key used for a different functionality in Org mode
19451 ;; - else: key still bound to the same Outline function in Org mode
19453 ;; | Outline function | key binding | Org replacement |
19454 ;; |------------------------------------+-------------+-----------------------|
19455 ;; | `outline-next-visible-heading' | `C-c C-n' | still same function |
19456 ;; | `outline-previous-visible-heading' | `C-c C-p' | still same function |
19457 ;; | `outline-up-heading' | `C-c C-u' | still same function |
19458 ;; | `outline-move-subtree-up' | overridden | better: org-shiftup |
19459 ;; | `outline-move-subtree-down' | overridden | better: org-shiftdown |
19460 ;; | `show-entry' | overridden | no replacement |
19461 ;; | `show-children' | `C-c C-i' | visibility cycling |
19462 ;; | `show-branches' | `C-c C-k' | still same function |
19463 ;; | `show-subtree' | overridden | visibility cycling |
19464 ;; | `show-all' | overridden | no replacement |
19465 ;; | `hide-subtree' | overridden | visibility cycling |
19466 ;; | `hide-body' | overridden | no replacement |
19467 ;; | `hide-entry' | overridden | visibility cycling |
19468 ;; | `hide-leaves' | overridden | no replacement |
19469 ;; | `hide-sublevels' | overridden | no replacement |
19470 ;; | `hide-other' | overridden | no replacement |
19472 ;; Make `C-c C-x' a prefix key
19473 (org-defkey org-mode-map "\C-c\C-x" (make-sparse-keymap))
19475 ;; TAB key with modifiers
19476 (org-defkey org-mode-map "\C-i" 'org-cycle)
19477 (org-defkey org-mode-map [(tab)] 'org-cycle)
19478 (org-defkey org-mode-map [(control tab)] 'org-force-cycle-archived)
19479 (org-defkey org-mode-map "\M-\t" 'pcomplete)
19480 ;; The following line is necessary under Suse GNU/Linux
19481 (unless (featurep 'xemacs)
19482 (org-defkey org-mode-map [S-iso-lefttab] 'org-shifttab))
19483 (org-defkey org-mode-map [(shift tab)] 'org-shifttab)
19484 (define-key org-mode-map [backtab] 'org-shifttab)
19486 (org-defkey org-mode-map [(shift return)] 'org-table-copy-down)
19487 (org-defkey org-mode-map [(meta shift return)] 'org-insert-todo-heading)
19488 (org-defkey org-mode-map [(meta return)] 'org-meta-return)
19490 ;; Cursor keys with modifiers
19491 (org-defkey org-mode-map [(meta left)] 'org-metaleft)
19492 (org-defkey org-mode-map [(meta right)] 'org-metaright)
19493 (org-defkey org-mode-map [(meta up)] 'org-metaup)
19494 (org-defkey org-mode-map [(meta down)] 'org-metadown)
19496 (org-defkey org-mode-map [(control meta shift right)] 'org-increase-number-at-point)
19497 (org-defkey org-mode-map [(control meta shift left)] 'org-decrease-number-at-point)
19498 (org-defkey org-mode-map [(meta shift left)] 'org-shiftmetaleft)
19499 (org-defkey org-mode-map [(meta shift right)] 'org-shiftmetaright)
19500 (org-defkey org-mode-map [(meta shift up)] 'org-shiftmetaup)
19501 (org-defkey org-mode-map [(meta shift down)] 'org-shiftmetadown)
19503 (org-defkey org-mode-map [(shift up)] 'org-shiftup)
19504 (org-defkey org-mode-map [(shift down)] 'org-shiftdown)
19505 (org-defkey org-mode-map [(shift left)] 'org-shiftleft)
19506 (org-defkey org-mode-map [(shift right)] 'org-shiftright)
19508 (org-defkey org-mode-map [(control shift right)] 'org-shiftcontrolright)
19509 (org-defkey org-mode-map [(control shift left)] 'org-shiftcontrolleft)
19510 (org-defkey org-mode-map [(control shift up)] 'org-shiftcontrolup)
19511 (org-defkey org-mode-map [(control shift down)] 'org-shiftcontroldown)
19513 ;; Babel keys
19514 (define-key org-mode-map org-babel-key-prefix org-babel-map)
19515 (mapc (lambda (pair)
19516 (define-key org-babel-map (car pair) (cdr pair)))
19517 org-babel-key-bindings)
19519 ;;; Extra keys for tty access.
19520 ;; We only set them when really needed because otherwise the
19521 ;; menus don't show the simple keys
19523 (when (or org-use-extra-keys
19524 (featurep 'xemacs) ;; because XEmacs supports multi-device stuff
19525 (not window-system))
19526 (org-defkey org-mode-map "\C-c\C-xc" 'org-table-copy-down)
19527 (org-defkey org-mode-map "\C-c\C-xM" 'org-insert-todo-heading)
19528 (org-defkey org-mode-map "\C-c\C-xm" 'org-meta-return)
19529 (org-defkey org-mode-map [?\e (return)] 'org-meta-return)
19530 (org-defkey org-mode-map [?\e (left)] 'org-metaleft)
19531 (org-defkey org-mode-map "\C-c\C-xl" 'org-metaleft)
19532 (org-defkey org-mode-map [?\e (right)] 'org-metaright)
19533 (org-defkey org-mode-map "\C-c\C-xr" 'org-metaright)
19534 (org-defkey org-mode-map [?\e (up)] 'org-metaup)
19535 (org-defkey org-mode-map "\C-c\C-xu" 'org-metaup)
19536 (org-defkey org-mode-map [?\e (down)] 'org-metadown)
19537 (org-defkey org-mode-map "\C-c\C-xd" 'org-metadown)
19538 (org-defkey org-mode-map "\C-c\C-xL" 'org-shiftmetaleft)
19539 (org-defkey org-mode-map "\C-c\C-xR" 'org-shiftmetaright)
19540 (org-defkey org-mode-map "\C-c\C-xU" 'org-shiftmetaup)
19541 (org-defkey org-mode-map "\C-c\C-xD" 'org-shiftmetadown)
19542 (org-defkey org-mode-map [?\C-c (up)] 'org-shiftup)
19543 (org-defkey org-mode-map [?\C-c (down)] 'org-shiftdown)
19544 (org-defkey org-mode-map [?\C-c (left)] 'org-shiftleft)
19545 (org-defkey org-mode-map [?\C-c (right)] 'org-shiftright)
19546 (org-defkey org-mode-map [?\C-c ?\C-x (right)] 'org-shiftcontrolright)
19547 (org-defkey org-mode-map [?\C-c ?\C-x (left)] 'org-shiftcontrolleft)
19548 (org-defkey org-mode-map [?\e (tab)] 'pcomplete)
19549 (org-defkey org-mode-map [?\e (shift return)] 'org-insert-todo-heading)
19550 (org-defkey org-mode-map [?\e (shift left)] 'org-shiftmetaleft)
19551 (org-defkey org-mode-map [?\e (shift right)] 'org-shiftmetaright)
19552 (org-defkey org-mode-map [?\e (shift up)] 'org-shiftmetaup)
19553 (org-defkey org-mode-map [?\e (shift down)] 'org-shiftmetadown))
19555 ;; All the other keys
19557 (org-defkey org-mode-map "\C-c\C-a" 'show-all) ; in case allout messed up.
19558 (org-defkey org-mode-map "\C-c\C-r" 'org-reveal)
19559 (if (boundp 'narrow-map)
19560 (org-defkey narrow-map "s" 'org-narrow-to-subtree)
19561 (org-defkey org-mode-map "\C-xns" 'org-narrow-to-subtree))
19562 (if (boundp 'narrow-map)
19563 (org-defkey narrow-map "b" 'org-narrow-to-block)
19564 (org-defkey org-mode-map "\C-xnb" 'org-narrow-to-block))
19565 (if (boundp 'narrow-map)
19566 (org-defkey narrow-map "e" 'org-narrow-to-element)
19567 (org-defkey org-mode-map "\C-xne" 'org-narrow-to-element))
19568 (org-defkey org-mode-map "\C-\M-t" 'org-transpose-element)
19569 (org-defkey org-mode-map "\M-}" 'org-forward-element)
19570 (org-defkey org-mode-map "\M-{" 'org-backward-element)
19571 (org-defkey org-mode-map "\C-c\C-^" 'org-up-element)
19572 (org-defkey org-mode-map "\C-c\C-_" 'org-down-element)
19573 (org-defkey org-mode-map "\C-c\C-f" 'org-forward-heading-same-level)
19574 (org-defkey org-mode-map "\C-c\C-b" 'org-backward-heading-same-level)
19575 (org-defkey org-mode-map "\C-c\M-f" 'org-next-block)
19576 (org-defkey org-mode-map "\C-c\M-b" 'org-previous-block)
19577 (org-defkey org-mode-map "\C-c$" 'org-archive-subtree)
19578 (org-defkey org-mode-map "\C-c\C-x\C-s" 'org-advertized-archive-subtree)
19579 (org-defkey org-mode-map "\C-c\C-x\C-a" 'org-archive-subtree-default)
19580 (org-defkey org-mode-map "\C-c\C-xd" 'org-insert-drawer)
19581 (org-defkey org-mode-map "\C-c\C-xa" 'org-toggle-archive-tag)
19582 (org-defkey org-mode-map "\C-c\C-xA" 'org-archive-to-archive-sibling)
19583 (org-defkey org-mode-map "\C-c\C-xb" 'org-tree-to-indirect-buffer)
19584 (org-defkey org-mode-map "\C-c\C-xq" 'org-toggle-tags-groups)
19585 (org-defkey org-mode-map "\C-c\C-j" 'org-goto)
19586 (org-defkey org-mode-map "\C-c\C-t" 'org-todo)
19587 (org-defkey org-mode-map "\C-c\C-q" 'org-set-tags-command)
19588 (org-defkey org-mode-map "\C-c\C-s" 'org-schedule)
19589 (org-defkey org-mode-map "\C-c\C-d" 'org-deadline)
19590 (org-defkey org-mode-map "\C-c;" 'org-toggle-comment)
19591 (org-defkey org-mode-map "\C-c\C-w" 'org-refile)
19592 (org-defkey org-mode-map "\C-c\M-w" 'org-copy)
19593 (org-defkey org-mode-map "\C-c/" 'org-sparse-tree) ; Minor-mode reserved
19594 (org-defkey org-mode-map "\C-c\\" 'org-match-sparse-tree) ; Minor-mode res.
19595 (org-defkey org-mode-map "\C-c\C-m" 'org-ctrl-c-ret)
19596 (org-defkey org-mode-map "\M-\C-m" 'org-insert-heading)
19597 (org-defkey org-mode-map "\C-c\C-xc" 'org-clone-subtree-with-time-shift)
19598 (org-defkey org-mode-map "\C-c\C-xv" 'org-copy-visible)
19599 (org-defkey org-mode-map [(control return)] 'org-insert-heading-respect-content)
19600 (org-defkey org-mode-map [(shift control return)] 'org-insert-todo-heading-respect-content)
19601 (org-defkey org-mode-map "\C-c\C-x\C-n" 'org-next-link)
19602 (org-defkey org-mode-map "\C-c\C-x\C-p" 'org-previous-link)
19603 (org-defkey org-mode-map "\C-c\C-l" 'org-insert-link)
19604 (org-defkey org-mode-map "\C-c\M-l" 'org-insert-last-stored-link)
19605 (org-defkey org-mode-map "\C-c\C-\M-l" 'org-insert-all-links)
19606 (org-defkey org-mode-map "\C-c\C-o" 'org-open-at-point)
19607 (org-defkey org-mode-map "\C-c%" 'org-mark-ring-push)
19608 (org-defkey org-mode-map "\C-c&" 'org-mark-ring-goto)
19609 (org-defkey org-mode-map "\C-c\C-z" 'org-add-note) ; Alternative binding
19610 (org-defkey org-mode-map "\C-c." 'org-time-stamp) ; Minor-mode reserved
19611 (org-defkey org-mode-map "\C-c!" 'org-time-stamp-inactive) ; Minor-mode r.
19612 (org-defkey org-mode-map "\C-c," 'org-priority) ; Minor-mode reserved
19613 (org-defkey org-mode-map "\C-c\C-y" 'org-evaluate-time-range)
19614 (org-defkey org-mode-map "\C-c>" 'org-goto-calendar)
19615 (org-defkey org-mode-map "\C-c<" 'org-date-from-calendar)
19616 (org-defkey org-mode-map [(control ?,)] 'org-cycle-agenda-files)
19617 (org-defkey org-mode-map [(control ?\')] 'org-cycle-agenda-files)
19618 (org-defkey org-mode-map "\C-c[" 'org-agenda-file-to-front)
19619 (org-defkey org-mode-map "\C-c]" 'org-remove-file)
19620 (org-defkey org-mode-map "\C-c\C-x<" 'org-agenda-set-restriction-lock)
19621 (org-defkey org-mode-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
19622 (org-defkey org-mode-map "\C-c-" 'org-ctrl-c-minus)
19623 (org-defkey org-mode-map "\C-c*" 'org-ctrl-c-star)
19624 (org-defkey org-mode-map "\C-c^" 'org-sort)
19625 (org-defkey org-mode-map "\C-c\C-c" 'org-ctrl-c-ctrl-c)
19626 (org-defkey org-mode-map "\C-c\C-k" 'org-kill-note-or-show-branches)
19627 (org-defkey org-mode-map "\C-c#" 'org-update-statistics-cookies)
19628 (org-defkey org-mode-map [remap open-line] 'org-open-line)
19629 (org-defkey org-mode-map [remap comment-dwim] 'org-comment-dwim)
19630 (org-defkey org-mode-map [remap forward-paragraph] 'org-forward-paragraph)
19631 (org-defkey org-mode-map [remap backward-paragraph] 'org-backward-paragraph)
19632 (org-defkey org-mode-map "\C-m" 'org-return)
19633 (org-defkey org-mode-map "\C-j" 'org-return-indent)
19634 (org-defkey org-mode-map "\C-c?" 'org-table-field-info)
19635 (org-defkey org-mode-map "\C-c " 'org-table-blank-field)
19636 (org-defkey org-mode-map "\C-c+" 'org-table-sum)
19637 (org-defkey org-mode-map "\C-c=" 'org-table-eval-formula)
19638 (org-defkey org-mode-map "\C-c'" 'org-edit-special)
19639 (org-defkey org-mode-map "\C-c`" 'org-table-edit-field)
19640 (org-defkey org-mode-map "\C-c\"a" 'orgtbl-ascii-plot)
19641 (org-defkey org-mode-map "\C-c\"g" 'org-plot/gnuplot)
19642 (org-defkey org-mode-map "\C-c|" 'org-table-create-or-convert-from-region)
19643 (org-defkey org-mode-map [(control ?#)] 'org-table-rotate-recalc-marks)
19644 (org-defkey org-mode-map "\C-c~" 'org-table-create-with-table.el)
19645 (org-defkey org-mode-map "\C-c\C-a" 'org-attach)
19646 (org-defkey org-mode-map "\C-c}" 'org-table-toggle-coordinate-overlays)
19647 (org-defkey org-mode-map "\C-c{" 'org-table-toggle-formula-debugger)
19648 (org-defkey org-mode-map "\C-c\C-e" 'org-export-dispatch)
19649 (org-defkey org-mode-map "\C-c:" 'org-toggle-fixed-width)
19650 (org-defkey org-mode-map "\C-c\C-x\C-f" 'org-emphasize)
19651 (org-defkey org-mode-map "\C-c\C-xf" 'org-footnote-action)
19652 (org-defkey org-mode-map "\C-c\C-x\C-mg" 'org-mobile-pull)
19653 (org-defkey org-mode-map "\C-c\C-x\C-mp" 'org-mobile-push)
19654 (org-defkey org-mode-map "\C-c@" 'org-mark-subtree)
19655 (org-defkey org-mode-map "\M-h" 'org-mark-element)
19656 (org-defkey org-mode-map [?\C-c (control ?*)] 'org-list-make-subtree)
19657 ;;(org-defkey org-mode-map [?\C-c (control ?-)] 'org-list-make-list-from-subtree)
19659 (org-defkey org-mode-map "\C-c\C-x\C-w" 'org-cut-special)
19660 (org-defkey org-mode-map "\C-c\C-x\M-w" 'org-copy-special)
19661 (org-defkey org-mode-map "\C-c\C-x\C-y" 'org-paste-special)
19663 (org-defkey org-mode-map "\C-c\C-x\C-t" 'org-toggle-time-stamp-overlays)
19664 (org-defkey org-mode-map "\C-c\C-x\C-i" 'org-clock-in)
19665 (org-defkey org-mode-map "\C-c\C-x\C-x" 'org-clock-in-last)
19666 (org-defkey org-mode-map "\C-c\C-x\C-z" 'org-resolve-clocks)
19667 (org-defkey org-mode-map "\C-c\C-x\C-o" 'org-clock-out)
19668 (org-defkey org-mode-map "\C-c\C-x\C-j" 'org-clock-goto)
19669 (org-defkey org-mode-map "\C-c\C-x\C-q" 'org-clock-cancel)
19670 (org-defkey org-mode-map "\C-c\C-x\C-d" 'org-clock-display)
19671 (org-defkey org-mode-map "\C-c\C-x\C-r" 'org-clock-report)
19672 (org-defkey org-mode-map "\C-c\C-x\C-u" 'org-dblock-update)
19673 (org-defkey org-mode-map "\C-c\C-x\C-l" 'org-toggle-latex-fragment)
19674 (org-defkey org-mode-map "\C-c\C-x\C-v" 'org-toggle-inline-images)
19675 (org-defkey org-mode-map "\C-c\C-x\C-\M-v" 'org-redisplay-inline-images)
19676 (org-defkey org-mode-map "\C-c\C-x\\" 'org-toggle-pretty-entities)
19677 (org-defkey org-mode-map "\C-c\C-x\C-b" 'org-toggle-checkbox)
19678 (org-defkey org-mode-map "\C-c\C-xp" 'org-set-property)
19679 (org-defkey org-mode-map "\C-c\C-xP" 'org-set-property-and-value)
19680 (org-defkey org-mode-map "\C-c\C-xe" 'org-set-effort)
19681 (org-defkey org-mode-map "\C-c\C-xE" 'org-inc-effort)
19682 (org-defkey org-mode-map "\C-c\C-xo" 'org-toggle-ordered-property)
19683 (org-defkey org-mode-map "\C-c\C-xi" 'org-insert-columns-dblock)
19684 (org-defkey org-mode-map [(control ?c) (control ?x) ?\;] 'org-timer-set-timer)
19685 (org-defkey org-mode-map [(control ?c) (control ?x) ?\:] 'org-timer-cancel-timer)
19687 (org-defkey org-mode-map "\C-c\C-x." 'org-timer)
19688 (org-defkey org-mode-map "\C-c\C-x-" 'org-timer-item)
19689 (org-defkey org-mode-map "\C-c\C-x0" 'org-timer-start)
19690 (org-defkey org-mode-map "\C-c\C-x_" 'org-timer-stop)
19691 (org-defkey org-mode-map "\C-c\C-x," 'org-timer-pause-or-continue)
19693 (define-key org-mode-map "\C-c\C-x\C-c" 'org-columns)
19695 (define-key org-mode-map "\C-c\C-x!" 'org-reload)
19697 (define-key org-mode-map "\C-c\C-xg" 'org-feed-update-all)
19698 (define-key org-mode-map "\C-c\C-xG" 'org-feed-goto-inbox)
19700 (define-key org-mode-map "\C-c\C-x[" 'org-reftex-citation)
19703 (when (featurep 'xemacs)
19704 (org-defkey org-mode-map 'button3 'popup-mode-menu))
19707 (defconst org-speed-commands-default
19709 ("Outline Navigation")
19710 ("n" . (org-speed-move-safe 'outline-next-visible-heading))
19711 ("p" . (org-speed-move-safe 'outline-previous-visible-heading))
19712 ("f" . (org-speed-move-safe 'org-forward-heading-same-level))
19713 ("b" . (org-speed-move-safe 'org-backward-heading-same-level))
19714 ("F" . org-next-block)
19715 ("B" . org-previous-block)
19716 ("u" . (org-speed-move-safe 'outline-up-heading))
19717 ("j" . org-goto)
19718 ("g" . (org-refile t))
19719 ("Outline Visibility")
19720 ("c" . org-cycle)
19721 ("C" . org-shifttab)
19722 (" " . org-display-outline-path)
19723 ("s" . org-narrow-to-subtree)
19724 ("=" . org-columns)
19725 ("Outline Structure Editing")
19726 ("U" . org-metaup)
19727 ("D" . org-metadown)
19728 ("r" . org-metaright)
19729 ("l" . org-metaleft)
19730 ("R" . org-shiftmetaright)
19731 ("L" . org-shiftmetaleft)
19732 ("i" . (progn (forward-char 1) (call-interactively
19733 'org-insert-heading-respect-content)))
19734 ("^" . org-sort)
19735 ("w" . org-refile)
19736 ("a" . org-archive-subtree-default-with-confirmation)
19737 ("@" . org-mark-subtree)
19738 ("#" . org-toggle-comment)
19739 ("Clock Commands")
19740 ("I" . org-clock-in)
19741 ("O" . org-clock-out)
19742 ("Meta Data Editing")
19743 ("t" . org-todo)
19744 ("," . (org-priority))
19745 ("0" . (org-priority ?\ ))
19746 ("1" . (org-priority ?A))
19747 ("2" . (org-priority ?B))
19748 ("3" . (org-priority ?C))
19749 (":" . org-set-tags-command)
19750 ("e" . org-set-effort)
19751 ("E" . org-inc-effort)
19752 ("W" . (lambda(m) (interactive "sMinutes before warning: ")
19753 (org-entry-put (point) "APPT_WARNTIME" m)))
19754 ("Agenda Views etc")
19755 ("v" . org-agenda)
19756 ("/" . org-sparse-tree)
19757 ("Misc")
19758 ("o" . org-open-at-point)
19759 ("?" . org-speed-command-help)
19760 ("<" . (org-agenda-set-restriction-lock 'subtree))
19761 (">" . (org-agenda-remove-restriction-lock))
19763 "The default speed commands.")
19765 (defun org-print-speed-command (e)
19766 (if (> (length (car e)) 1)
19767 (progn
19768 (princ "\n")
19769 (princ (car e))
19770 (princ "\n")
19771 (princ (make-string (length (car e)) ?-))
19772 (princ "\n"))
19773 (princ (car e))
19774 (princ " ")
19775 (if (symbolp (cdr e))
19776 (princ (symbol-name (cdr e)))
19777 (prin1 (cdr e)))
19778 (princ "\n")))
19780 (defun org-speed-command-help ()
19781 "Show the available speed commands."
19782 (interactive)
19783 (if (not org-use-speed-commands)
19784 (user-error "Speed commands are not activated, customize `org-use-speed-commands'")
19785 (with-output-to-temp-buffer "*Help*"
19786 (princ "User-defined Speed commands\n===========================\n")
19787 (mapc 'org-print-speed-command org-speed-commands-user)
19788 (princ "\n")
19789 (princ "Built-in Speed commands\n=======================\n")
19790 (mapc 'org-print-speed-command org-speed-commands-default))
19791 (with-current-buffer "*Help*"
19792 (setq truncate-lines t))))
19794 (defun org-speed-move-safe (cmd)
19795 "Execute CMD, but make sure that the cursor always ends up in a headline.
19796 If not, return to the original position and throw an error."
19797 (interactive)
19798 (let ((pos (point)))
19799 (call-interactively cmd)
19800 (unless (and (bolp) (org-at-heading-p))
19801 (goto-char pos)
19802 (error "Boundary reached while executing %s" cmd))))
19804 (defvar org-self-insert-command-undo-counter 0)
19806 (defvar org-table-auto-blank-field) ; defined in org-table.el
19807 (defvar org-speed-command nil)
19809 (define-obsolete-function-alias
19810 'org-speed-command-default-hook 'org-speed-command-activate "24.3")
19812 (defun org-speed-command-activate (keys)
19813 "Hook for activating single-letter speed commands.
19814 `org-speed-commands-default' specifies a minimal command set.
19815 Use `org-speed-commands-user' for further customization."
19816 (when (or (and (bolp) (looking-at org-outline-regexp))
19817 (and (functionp org-use-speed-commands)
19818 (funcall org-use-speed-commands)))
19819 (cdr (assoc keys (append org-speed-commands-user
19820 org-speed-commands-default)))))
19822 (define-obsolete-function-alias
19823 'org-babel-speed-command-hook 'org-babel-speed-command-activate "24.3")
19825 (defun org-babel-speed-command-activate (keys)
19826 "Hook for activating single-letter code block commands."
19827 (when (and (bolp) (looking-at org-babel-src-block-regexp))
19828 (cdr (assoc keys org-babel-key-bindings))))
19830 (defcustom org-speed-command-hook
19831 '(org-speed-command-default-hook org-babel-speed-command-hook)
19832 "Hook for activating speed commands at strategic locations.
19833 Hook functions are called in sequence until a valid handler is
19834 found.
19836 Each hook takes a single argument, a user-pressed command key
19837 which is also a `self-insert-command' from the global map.
19839 Within the hook, examine the cursor position and the command key
19840 and return nil or a valid handler as appropriate. Handler could
19841 be one of an interactive command, a function, or a form.
19843 Set `org-use-speed-commands' to non-nil value to enable this
19844 hook. The default setting is `org-speed-command-activate'."
19845 :group 'org-structure
19846 :version "24.1"
19847 :type 'hook)
19849 (defun org-self-insert-command (N)
19850 "Like `self-insert-command', use overwrite-mode for whitespace in tables.
19851 If the cursor is in a table looking at whitespace, the whitespace is
19852 overwritten, and the table is not marked as requiring realignment."
19853 (interactive "p")
19854 (org-check-before-invisible-edit 'insert)
19855 (cond
19856 ((and org-use-speed-commands
19857 (let ((kv (this-command-keys-vector)))
19858 (setq org-speed-command
19859 (run-hook-with-args-until-success
19860 'org-speed-command-hook
19861 (make-string 1 (aref kv (1- (length kv))))))))
19862 (cond
19863 ((commandp org-speed-command)
19864 (setq this-command org-speed-command)
19865 (call-interactively org-speed-command))
19866 ((functionp org-speed-command)
19867 (funcall org-speed-command))
19868 ((and org-speed-command (listp org-speed-command))
19869 (eval org-speed-command))
19870 (t (let (org-use-speed-commands)
19871 (call-interactively 'org-self-insert-command)))))
19872 ((and
19873 (org-table-p)
19874 (progn
19875 ;; check if we blank the field, and if that triggers align
19876 (and (featurep 'org-table) org-table-auto-blank-field
19877 (member last-command
19878 '(org-cycle org-return org-shifttab org-ctrl-c-ctrl-c yas-expand))
19879 (if (or (equal (char-after) ?\ ) (looking-at "[^|\n]* |"))
19880 ;; got extra space, this field does not determine column width
19881 (let (org-table-may-need-update) (org-table-blank-field))
19882 ;; no extra space, this field may determine column width
19883 (org-table-blank-field)))
19885 (eq N 1)
19886 (looking-at "[^|\n]* |"))
19887 (let (org-table-may-need-update)
19888 (goto-char (1- (match-end 0)))
19889 (backward-delete-char 1)
19890 (goto-char (match-beginning 0))
19891 (self-insert-command N)))
19893 (setq org-table-may-need-update t)
19894 (self-insert-command N)
19895 (org-fix-tags-on-the-fly)
19896 (if org-self-insert-cluster-for-undo
19897 (if (not (eq last-command 'org-self-insert-command))
19898 (setq org-self-insert-command-undo-counter 1)
19899 (if (>= org-self-insert-command-undo-counter 20)
19900 (setq org-self-insert-command-undo-counter 1)
19901 (and (> org-self-insert-command-undo-counter 0)
19902 buffer-undo-list (listp buffer-undo-list)
19903 (not (cadr buffer-undo-list)) ; remove nil entry
19904 (setcdr buffer-undo-list (cddr buffer-undo-list)))
19905 (setq org-self-insert-command-undo-counter
19906 (1+ org-self-insert-command-undo-counter))))))))
19908 (defun org-check-before-invisible-edit (kind)
19909 "Check is editing if kind KIND would be dangerous with invisible text around.
19910 The detailed reaction depends on the user option `org-catch-invisible-edits'."
19911 ;; First, try to get out of here as quickly as possible, to reduce overhead
19912 (if (and org-catch-invisible-edits
19913 (or (not (boundp 'visible-mode)) (not visible-mode))
19914 (or (get-char-property (point) 'invisible)
19915 (get-char-property (max (point-min) (1- (point))) 'invisible)))
19916 ;; OK, we need to take a closer look
19917 (let* ((invisible-at-point (get-char-property (point) 'invisible))
19918 (invisible-before-point (if (bobp) nil (get-char-property
19919 (1- (point)) 'invisible)))
19920 (border-and-ok-direction
19922 ;; Check if we are acting predictably before invisible text
19923 (and invisible-at-point (not invisible-before-point)
19924 (memq kind '(insert delete-backward)))
19925 ;; Check if we are acting predictably after invisible text
19926 ;; This works not well, and I have turned it off. It seems
19927 ;; better to always show and stop after invisible text.
19928 ;; (and (not invisible-at-point) invisible-before-point
19929 ;; (memq kind '(insert delete)))
19931 (when (or (memq invisible-at-point '(outline org-hide-block t))
19932 (memq invisible-before-point '(outline org-hide-block t)))
19933 (if (eq org-catch-invisible-edits 'error)
19934 (user-error "Editing in invisible areas is prohibited, make them visible first"))
19935 (if (and org-custom-properties-overlays
19936 (y-or-n-p "Display invisible properties in this buffer? "))
19937 (org-toggle-custom-properties-visibility)
19938 ;; Make the area visible
19939 (save-excursion
19940 (if invisible-before-point
19941 (goto-char (previous-single-char-property-change
19942 (point) 'invisible)))
19943 (show-subtree))
19944 (cond
19945 ((eq org-catch-invisible-edits 'show)
19946 ;; That's it, we do the edit after showing
19947 (message
19948 "Unfolding invisible region around point before editing")
19949 (sit-for 1))
19950 ((and (eq org-catch-invisible-edits 'smart)
19951 border-and-ok-direction)
19952 (message "Unfolding invisible region around point before editing"))
19954 ;; Don't do the edit, make the user repeat it in full visibility
19955 (user-error "Edit in invisible region aborted, repeat to confirm with text visible"))))))))
19957 (defun org-fix-tags-on-the-fly ()
19958 (when (and (equal (char-after (point-at-bol)) ?*)
19959 (org-at-heading-p))
19960 (org-align-tags-here org-tags-column)))
19962 (defun org-delete-backward-char (N)
19963 "Like `delete-backward-char', insert whitespace at field end in tables.
19964 When deleting backwards, in tables this function will insert whitespace in
19965 front of the next \"|\" separator, to keep the table aligned. The table will
19966 still be marked for re-alignment if the field did fill the entire column,
19967 because, in this case the deletion might narrow the column."
19968 (interactive "p")
19969 (save-match-data
19970 (org-check-before-invisible-edit 'delete-backward)
19971 (if (and (org-table-p)
19972 (eq N 1)
19973 (string-match "|" (buffer-substring (point-at-bol) (point)))
19974 (looking-at ".*?|"))
19975 (let ((pos (point))
19976 (noalign (looking-at "[^|\n\r]* |"))
19977 (c org-table-may-need-update))
19978 (backward-delete-char N)
19979 (if (not overwrite-mode)
19980 (progn
19981 (skip-chars-forward "^|")
19982 (insert " ")
19983 (goto-char (1- pos))))
19984 ;; noalign: if there were two spaces at the end, this field
19985 ;; does not determine the width of the column.
19986 (if noalign (setq org-table-may-need-update c)))
19987 (backward-delete-char N)
19988 (org-fix-tags-on-the-fly))))
19990 (defun org-delete-char (N)
19991 "Like `delete-char', but insert whitespace at field end in tables.
19992 When deleting characters, in tables this function will insert whitespace in
19993 front of the next \"|\" separator, to keep the table aligned. The table will
19994 still be marked for re-alignment if the field did fill the entire column,
19995 because, in this case the deletion might narrow the column."
19996 (interactive "p")
19997 (save-match-data
19998 (org-check-before-invisible-edit 'delete)
19999 (if (and (org-table-p)
20000 (not (bolp))
20001 (not (= (char-after) ?|))
20002 (eq N 1))
20003 (if (looking-at ".*?|")
20004 (let ((pos (point))
20005 (noalign (looking-at "[^|\n\r]* |"))
20006 (c org-table-may-need-update))
20007 (replace-match
20008 (concat (substring (match-string 0) 1 -1) " |") nil t)
20009 (goto-char pos)
20010 ;; noalign: if there were two spaces at the end, this field
20011 ;; does not determine the width of the column.
20012 (if noalign (setq org-table-may-need-update c)))
20013 (delete-char N))
20014 (delete-char N)
20015 (org-fix-tags-on-the-fly))))
20017 ;; Make `delete-selection-mode' work with org-mode and orgtbl-mode
20018 (put 'org-self-insert-command 'delete-selection
20019 (lambda ()
20020 (not (run-hook-with-args-until-success
20021 'self-insert-uses-region-functions))))
20022 (put 'orgtbl-self-insert-command 'delete-selection
20023 (lambda ()
20024 (not (run-hook-with-args-until-success
20025 'self-insert-uses-region-functions))))
20026 (put 'org-delete-char 'delete-selection 'supersede)
20027 (put 'org-delete-backward-char 'delete-selection 'supersede)
20028 (put 'org-yank 'delete-selection 'yank)
20030 ;; Make `flyspell-mode' delay after some commands
20031 (put 'org-self-insert-command 'flyspell-delayed t)
20032 (put 'orgtbl-self-insert-command 'flyspell-delayed t)
20033 (put 'org-delete-char 'flyspell-delayed t)
20034 (put 'org-delete-backward-char 'flyspell-delayed t)
20036 ;; Make pabbrev-mode expand after org-mode commands
20037 (put 'org-self-insert-command 'pabbrev-expand-after-command t)
20038 (put 'orgtbl-self-insert-command 'pabbrev-expand-after-command t)
20040 (defun org-remap (map &rest commands)
20041 "In MAP, remap the functions given in COMMANDS.
20042 COMMANDS is a list of alternating OLDDEF NEWDEF command names."
20043 (let (new old)
20044 (while commands
20045 (setq old (pop commands) new (pop commands))
20046 (if (fboundp 'command-remapping)
20047 (org-defkey map (vector 'remap old) new)
20048 (substitute-key-definition old new map global-map)))))
20050 (defun org-transpose-words ()
20051 "Transpose words for Org.
20052 This uses the `org-mode-transpose-word-syntax-table' syntax
20053 table, which interprets characters in `org-emphasis-alist' as
20054 word constituents."
20055 (interactive)
20056 (with-syntax-table org-mode-transpose-word-syntax-table
20057 (call-interactively 'transpose-words)))
20058 (org-remap org-mode-map 'transpose-words 'org-transpose-words)
20060 (when (eq org-enable-table-editor 'optimized)
20061 ;; If the user wants maximum table support, we need to hijack
20062 ;; some standard editing functions
20063 (org-remap org-mode-map
20064 'self-insert-command 'org-self-insert-command
20065 'delete-char 'org-delete-char
20066 'delete-backward-char 'org-delete-backward-char)
20067 (org-defkey org-mode-map "|" 'org-force-self-insert))
20069 (defvar org-ctrl-c-ctrl-c-hook nil
20070 "Hook for functions attaching themselves to `C-c C-c'.
20072 This can be used to add additional functionality to the C-c C-c
20073 key which executes context-dependent commands. This hook is run
20074 before any other test, while `org-ctrl-c-ctrl-c-final-hook' is
20075 run after the last test.
20077 Each function will be called with no arguments. The function
20078 must check if the context is appropriate for it to act. If yes,
20079 it should do its thing and then return a non-nil value. If the
20080 context is wrong, just do nothing and return nil.")
20082 (defvar org-ctrl-c-ctrl-c-final-hook nil
20083 "Hook for functions attaching themselves to `C-c C-c'.
20085 This can be used to add additional functionality to the C-c C-c
20086 key which executes context-dependent commands. This hook is run
20087 after any other test, while `org-ctrl-c-ctrl-c-hook' is run
20088 before the first test.
20090 Each function will be called with no arguments. The function
20091 must check if the context is appropriate for it to act. If yes,
20092 it should do its thing and then return a non-nil value. If the
20093 context is wrong, just do nothing and return nil.")
20095 (defvar org-tab-first-hook nil
20096 "Hook for functions to attach themselves to TAB.
20097 See `org-ctrl-c-ctrl-c-hook' for more information.
20098 This hook runs as the first action when TAB is pressed, even before
20099 `org-cycle' messes around with the `outline-regexp' to cater for
20100 inline tasks and plain list item folding.
20101 If any function in this hook returns t, any other actions that
20102 would have been caused by TAB (such as table field motion or visibility
20103 cycling) will not occur.")
20105 (defvar org-tab-after-check-for-table-hook nil
20106 "Hook for functions to attach themselves to TAB.
20107 See `org-ctrl-c-ctrl-c-hook' for more information.
20108 This hook runs after it has been established that the cursor is not in a
20109 table, but before checking if the cursor is in a headline or if global cycling
20110 should be done.
20111 If any function in this hook returns t, not other actions like visibility
20112 cycling will be done.")
20114 (defvar org-tab-after-check-for-cycling-hook nil
20115 "Hook for functions to attach themselves to TAB.
20116 See `org-ctrl-c-ctrl-c-hook' for more information.
20117 This hook runs after it has been established that not table field motion and
20118 not visibility should be done because of current context. This is probably
20119 the place where a package like yasnippets can hook in.")
20121 (defvar org-tab-before-tab-emulation-hook nil
20122 "Hook for functions to attach themselves to TAB.
20123 See `org-ctrl-c-ctrl-c-hook' for more information.
20124 This hook runs after every other options for TAB have been exhausted, but
20125 before indentation and \t insertion takes place.")
20127 (defvar org-metaleft-hook nil
20128 "Hook for functions attaching themselves to `M-left'.
20129 See `org-ctrl-c-ctrl-c-hook' for more information.")
20130 (defvar org-metaright-hook nil
20131 "Hook for functions attaching themselves to `M-right'.
20132 See `org-ctrl-c-ctrl-c-hook' for more information.")
20133 (defvar org-metaup-hook nil
20134 "Hook for functions attaching themselves to `M-up'.
20135 See `org-ctrl-c-ctrl-c-hook' for more information.")
20136 (defvar org-metadown-hook nil
20137 "Hook for functions attaching themselves to `M-down'.
20138 See `org-ctrl-c-ctrl-c-hook' for more information.")
20139 (defvar org-shiftmetaleft-hook nil
20140 "Hook for functions attaching themselves to `M-S-left'.
20141 See `org-ctrl-c-ctrl-c-hook' for more information.")
20142 (defvar org-shiftmetaright-hook nil
20143 "Hook for functions attaching themselves to `M-S-right'.
20144 See `org-ctrl-c-ctrl-c-hook' for more information.")
20145 (defvar org-shiftmetaup-hook nil
20146 "Hook for functions attaching themselves to `M-S-up'.
20147 See `org-ctrl-c-ctrl-c-hook' for more information.")
20148 (defvar org-shiftmetadown-hook nil
20149 "Hook for functions attaching themselves to `M-S-down'.
20150 See `org-ctrl-c-ctrl-c-hook' for more information.")
20151 (defvar org-metareturn-hook nil
20152 "Hook for functions attaching themselves to `M-RET'.
20153 See `org-ctrl-c-ctrl-c-hook' for more information.")
20154 (defvar org-shiftup-hook nil
20155 "Hook for functions attaching themselves to `S-up'.
20156 See `org-ctrl-c-ctrl-c-hook' for more information.")
20157 (defvar org-shiftup-final-hook nil
20158 "Hook for functions attaching themselves to `S-up'.
20159 This one runs after all other options except shift-select have been excluded.
20160 See `org-ctrl-c-ctrl-c-hook' for more information.")
20161 (defvar org-shiftdown-hook nil
20162 "Hook for functions attaching themselves to `S-down'.
20163 See `org-ctrl-c-ctrl-c-hook' for more information.")
20164 (defvar org-shiftdown-final-hook nil
20165 "Hook for functions attaching themselves to `S-down'.
20166 This one runs after all other options except shift-select have been excluded.
20167 See `org-ctrl-c-ctrl-c-hook' for more information.")
20168 (defvar org-shiftleft-hook nil
20169 "Hook for functions attaching themselves to `S-left'.
20170 See `org-ctrl-c-ctrl-c-hook' for more information.")
20171 (defvar org-shiftleft-final-hook nil
20172 "Hook for functions attaching themselves to `S-left'.
20173 This one runs after all other options except shift-select have been excluded.
20174 See `org-ctrl-c-ctrl-c-hook' for more information.")
20175 (defvar org-shiftright-hook nil
20176 "Hook for functions attaching themselves to `S-right'.
20177 See `org-ctrl-c-ctrl-c-hook' for more information.")
20178 (defvar org-shiftright-final-hook nil
20179 "Hook for functions attaching themselves to `S-right'.
20180 This one runs after all other options except shift-select have been excluded.
20181 See `org-ctrl-c-ctrl-c-hook' for more information.")
20183 (defun org-modifier-cursor-error ()
20184 "Throw an error, a modified cursor command was applied in wrong context."
20185 (user-error "This command is active in special context like tables, headlines or items"))
20187 (defun org-shiftselect-error ()
20188 "Throw an error because Shift-Cursor command was applied in wrong context."
20189 (if (and (boundp 'shift-select-mode) shift-select-mode)
20190 (user-error "To use shift-selection with Org-mode, customize `org-support-shift-select'")
20191 (user-error "This command works only in special context like headlines or timestamps")))
20193 (defun org-call-for-shift-select (cmd)
20194 (let ((this-command-keys-shift-translated t))
20195 (call-interactively cmd)))
20197 (defun org-shifttab (&optional arg)
20198 "Global visibility cycling or move to previous table field.
20199 Call `org-table-previous-field' within a table.
20200 When ARG is nil, cycle globally through visibility states.
20201 When ARG is a numeric prefix, show contents of this level."
20202 (interactive "P")
20203 (cond
20204 ((org-at-table-p) (call-interactively 'org-table-previous-field))
20205 ((integerp arg)
20206 (let ((arg2 (if org-odd-levels-only (1- (* 2 arg)) arg)))
20207 (message "Content view to level: %d" arg)
20208 (org-content (prefix-numeric-value arg2))
20209 (org-cycle-show-empty-lines t)
20210 (setq org-cycle-global-status 'overview)))
20211 (t (call-interactively 'org-global-cycle))))
20213 (defun org-shiftmetaleft ()
20214 "Promote subtree or delete table column.
20215 Calls `org-promote-subtree', `org-outdent-item-tree', or
20216 `org-table-delete-column', depending on context. See the
20217 individual commands for more information."
20218 (interactive)
20219 (cond
20220 ((run-hook-with-args-until-success 'org-shiftmetaleft-hook))
20221 ((org-at-table-p) (call-interactively 'org-table-delete-column))
20222 ((org-at-heading-p) (call-interactively 'org-promote-subtree))
20223 ((if (not (org-region-active-p)) (org-at-item-p)
20224 (save-excursion (goto-char (region-beginning))
20225 (org-at-item-p)))
20226 (call-interactively 'org-outdent-item-tree))
20227 (t (org-modifier-cursor-error))))
20229 (defun org-shiftmetaright ()
20230 "Demote subtree or insert table column.
20231 Calls `org-demote-subtree', `org-indent-item-tree', or
20232 `org-table-insert-column', depending on context. See the
20233 individual commands for more information."
20234 (interactive)
20235 (cond
20236 ((run-hook-with-args-until-success 'org-shiftmetaright-hook))
20237 ((org-at-table-p) (call-interactively 'org-table-insert-column))
20238 ((org-at-heading-p) (call-interactively 'org-demote-subtree))
20239 ((if (not (org-region-active-p)) (org-at-item-p)
20240 (save-excursion (goto-char (region-beginning))
20241 (org-at-item-p)))
20242 (call-interactively 'org-indent-item-tree))
20243 (t (org-modifier-cursor-error))))
20245 (defun org-shiftmetaup (&optional arg)
20246 "Drag the line at point up.
20247 In a table, kill the current row.
20248 On a clock timestamp, update the value of the timestamp like `S-<up>'
20249 but also adjust the previous clocked item in the clock history.
20250 Everywhere else, drag the line at point up."
20251 (interactive "P")
20252 (cond
20253 ((run-hook-with-args-until-success 'org-shiftmetaup-hook))
20254 ((org-at-table-p) (call-interactively 'org-table-kill-row))
20255 ((org-at-clock-log-p) (let ((org-clock-adjust-closest t))
20256 (call-interactively 'org-timestamp-up)))
20257 (t (call-interactively 'org-drag-line-backward))))
20259 (defun org-shiftmetadown (&optional arg)
20260 "Drag the line at point down.
20261 In a table, insert an empty row at the current line.
20262 On a clock timestamp, update the value of the timestamp like `S-<down>'
20263 but also adjust the previous clocked item in the clock history.
20264 Everywhere else, drag the line at point down."
20265 (interactive "P")
20266 (cond
20267 ((run-hook-with-args-until-success 'org-shiftmetadown-hook))
20268 ((org-at-table-p) (call-interactively 'org-table-insert-row))
20269 ((org-at-clock-log-p) (let ((org-clock-adjust-closest t))
20270 (call-interactively 'org-timestamp-down)))
20271 (t (call-interactively 'org-drag-line-forward))))
20273 (defsubst org-hidden-tree-error ()
20274 (user-error
20275 "Hidden subtree, open with TAB or use subtree command M-S-<left>/<right>"))
20277 (defun org-metaleft (&optional arg)
20278 "Promote heading or move table column to left.
20279 Calls `org-do-promote' or `org-table-move-column', depending on context.
20280 With no specific context, calls the Emacs default `backward-word'.
20281 See the individual commands for more information."
20282 (interactive "P")
20283 (cond
20284 ((run-hook-with-args-until-success 'org-metaleft-hook))
20285 ((org-at-table-p) (org-call-with-arg 'org-table-move-column 'left))
20286 ((org-with-limited-levels
20287 (or (org-at-heading-p)
20288 (and (org-region-active-p)
20289 (save-excursion
20290 (goto-char (region-beginning))
20291 (org-at-heading-p)))))
20292 (when (org-check-for-hidden 'headlines) (org-hidden-tree-error))
20293 (call-interactively 'org-do-promote))
20294 ;; At an inline task.
20295 ((org-at-heading-p)
20296 (call-interactively 'org-inlinetask-promote))
20297 ((or (org-at-item-p)
20298 (and (org-region-active-p)
20299 (save-excursion
20300 (goto-char (region-beginning))
20301 (org-at-item-p))))
20302 (when (org-check-for-hidden 'items) (org-hidden-tree-error))
20303 (call-interactively 'org-outdent-item))
20304 (t (call-interactively 'backward-word))))
20306 (defun org-metaright (&optional arg)
20307 "Demote a subtree, a list item or move table column to right.
20308 In front of a drawer or a block keyword, indent it correctly.
20309 With no specific context, calls the Emacs default `forward-word'.
20310 See the individual commands for more information."
20311 (interactive "P")
20312 (cond
20313 ((run-hook-with-args-until-success 'org-metaright-hook))
20314 ((org-at-table-p) (call-interactively 'org-table-move-column))
20315 ((org-at-drawer-p) (call-interactively 'org-indent-drawer))
20316 ((org-at-block-p) (call-interactively 'org-indent-block))
20317 ((org-with-limited-levels
20318 (or (org-at-heading-p)
20319 (and (org-region-active-p)
20320 (save-excursion
20321 (goto-char (region-beginning))
20322 (org-at-heading-p)))))
20323 (when (org-check-for-hidden 'headlines) (org-hidden-tree-error))
20324 (call-interactively 'org-do-demote))
20325 ;; At an inline task.
20326 ((org-at-heading-p)
20327 (call-interactively 'org-inlinetask-demote))
20328 ((or (org-at-item-p)
20329 (and (org-region-active-p)
20330 (save-excursion
20331 (goto-char (region-beginning))
20332 (org-at-item-p))))
20333 (when (org-check-for-hidden 'items) (org-hidden-tree-error))
20334 (call-interactively 'org-indent-item))
20335 (t (call-interactively 'forward-word))))
20337 (defun org-check-for-hidden (what)
20338 "Check if there are hidden headlines/items in the current visual line.
20339 WHAT can be either `headlines' or `items'. If the current line is
20340 an outline or item heading and it has a folded subtree below it,
20341 this function returns t, nil otherwise."
20342 (let ((re (cond
20343 ((eq what 'headlines) org-outline-regexp-bol)
20344 ((eq what 'items) (org-item-beginning-re))
20345 (t (error "This should not happen"))))
20346 beg end)
20347 (save-excursion
20348 (catch 'exit
20349 (unless (org-region-active-p)
20350 (setq beg (point-at-bol))
20351 (beginning-of-line 2)
20352 (while (and (not (eobp)) ;; this is like `next-line'
20353 (get-char-property (1- (point)) 'invisible))
20354 (beginning-of-line 2))
20355 (setq end (point))
20356 (goto-char beg)
20357 (goto-char (point-at-eol))
20358 (setq end (max end (point)))
20359 (while (re-search-forward re end t)
20360 (if (get-char-property (match-beginning 0) 'invisible)
20361 (throw 'exit t))))
20362 nil))))
20364 (defun org-metaup (&optional arg)
20365 "Move subtree up or move table row up.
20366 Calls `org-move-subtree-up' or `org-table-move-row' or
20367 `org-move-item-up', depending on context. See the individual commands
20368 for more information."
20369 (interactive "P")
20370 (cond
20371 ((run-hook-with-args-until-success 'org-metaup-hook))
20372 ((org-region-active-p)
20373 (let* ((a (min (region-beginning) (region-end)))
20374 (b (1- (max (region-beginning) (region-end))))
20375 (c (save-excursion (goto-char a)
20376 (move-beginning-of-line 0)))
20377 (d (save-excursion (goto-char a)
20378 (move-end-of-line 0) (point))))
20379 (transpose-regions a b c d)
20380 (goto-char c)))
20381 ((org-at-table-p) (org-call-with-arg 'org-table-move-row 'up))
20382 ((org-at-heading-p) (call-interactively 'org-move-subtree-up))
20383 ((org-at-item-p) (call-interactively 'org-move-item-up))
20384 (t (org-drag-element-backward))))
20386 (defun org-metadown (&optional arg)
20387 "Move subtree down or move table row down.
20388 Calls `org-move-subtree-down' or `org-table-move-row' or
20389 `org-move-item-down', depending on context. See the individual
20390 commands for more information."
20391 (interactive "P")
20392 (cond
20393 ((run-hook-with-args-until-success 'org-metadown-hook))
20394 ((org-region-active-p)
20395 (let* ((a (min (region-beginning) (region-end)))
20396 (b (max (region-beginning) (region-end)))
20397 (c (save-excursion (goto-char b)
20398 (move-beginning-of-line 1)))
20399 (d (save-excursion (goto-char b)
20400 (move-end-of-line 1) (1+ (point)))))
20401 (transpose-regions a b c d)
20402 (goto-char d)))
20403 ((org-at-table-p) (call-interactively 'org-table-move-row))
20404 ((org-at-heading-p) (call-interactively 'org-move-subtree-down))
20405 ((org-at-item-p) (call-interactively 'org-move-item-down))
20406 (t (org-drag-element-forward))))
20408 (defun org-shiftup (&optional arg)
20409 "Increase item in timestamp or increase priority of current headline.
20410 Calls `org-timestamp-up' or `org-priority-up', or `org-previous-item',
20411 depending on context. See the individual commands for more information."
20412 (interactive "P")
20413 (cond
20414 ((run-hook-with-args-until-success 'org-shiftup-hook))
20415 ((and org-support-shift-select (org-region-active-p))
20416 (org-call-for-shift-select 'previous-line))
20417 ((org-at-timestamp-p t)
20418 (call-interactively (if org-edit-timestamp-down-means-later
20419 'org-timestamp-down 'org-timestamp-up)))
20420 ((and (not (eq org-support-shift-select 'always))
20421 org-enable-priority-commands
20422 (org-at-heading-p))
20423 (call-interactively 'org-priority-up))
20424 ((and (not org-support-shift-select) (org-at-item-p))
20425 (call-interactively 'org-previous-item))
20426 ((org-clocktable-try-shift 'up arg))
20427 ((run-hook-with-args-until-success 'org-shiftup-final-hook))
20428 (org-support-shift-select
20429 (org-call-for-shift-select 'previous-line))
20430 (t (org-shiftselect-error))))
20432 (defun org-shiftdown (&optional arg)
20433 "Decrease item in timestamp or decrease priority of current headline.
20434 Calls `org-timestamp-down' or `org-priority-down', or `org-next-item'
20435 depending on context. See the individual commands for more information."
20436 (interactive "P")
20437 (cond
20438 ((run-hook-with-args-until-success 'org-shiftdown-hook))
20439 ((and org-support-shift-select (org-region-active-p))
20440 (org-call-for-shift-select 'next-line))
20441 ((org-at-timestamp-p t)
20442 (call-interactively (if org-edit-timestamp-down-means-later
20443 'org-timestamp-up 'org-timestamp-down)))
20444 ((and (not (eq org-support-shift-select 'always))
20445 org-enable-priority-commands
20446 (org-at-heading-p))
20447 (call-interactively 'org-priority-down))
20448 ((and (not org-support-shift-select) (org-at-item-p))
20449 (call-interactively 'org-next-item))
20450 ((org-clocktable-try-shift 'down arg))
20451 ((run-hook-with-args-until-success 'org-shiftdown-final-hook))
20452 (org-support-shift-select
20453 (org-call-for-shift-select 'next-line))
20454 (t (org-shiftselect-error))))
20456 (defun org-shiftright (&optional arg)
20457 "Cycle the thing at point or in the current line, depending on context.
20458 Depending on context, this does one of the following:
20460 - switch a timestamp at point one day into the future
20461 - on a headline, switch to the next TODO keyword.
20462 - on an item, switch entire list to the next bullet type
20463 - on a property line, switch to the next allowed value
20464 - on a clocktable definition line, move time block into the future"
20465 (interactive "P")
20466 (cond
20467 ((run-hook-with-args-until-success 'org-shiftright-hook))
20468 ((and org-support-shift-select (org-region-active-p))
20469 (org-call-for-shift-select 'forward-char))
20470 ((org-at-timestamp-p t) (call-interactively 'org-timestamp-up-day))
20471 ((and (not (eq org-support-shift-select 'always))
20472 (org-at-heading-p))
20473 (let ((org-inhibit-logging
20474 (not org-treat-S-cursor-todo-selection-as-state-change))
20475 (org-inhibit-blocking
20476 (not org-treat-S-cursor-todo-selection-as-state-change)))
20477 (org-call-with-arg 'org-todo 'right)))
20478 ((or (and org-support-shift-select
20479 (not (eq org-support-shift-select 'always))
20480 (org-at-item-bullet-p))
20481 (and (not org-support-shift-select) (org-at-item-p)))
20482 (org-call-with-arg 'org-cycle-list-bullet nil))
20483 ((and (not (eq org-support-shift-select 'always))
20484 (org-at-property-p))
20485 (call-interactively 'org-property-next-allowed-value))
20486 ((org-clocktable-try-shift 'right arg))
20487 ((run-hook-with-args-until-success 'org-shiftright-final-hook))
20488 (org-support-shift-select
20489 (org-call-for-shift-select 'forward-char))
20490 (t (org-shiftselect-error))))
20492 (defun org-shiftleft (&optional arg)
20493 "Cycle the thing at point or in the current line, depending on context.
20494 Depending on context, this does one of the following:
20496 - switch a timestamp at point one day into the past
20497 - on a headline, switch to the previous TODO keyword.
20498 - on an item, switch entire list to the previous bullet type
20499 - on a property line, switch to the previous allowed value
20500 - on a clocktable definition line, move time block into the past"
20501 (interactive "P")
20502 (cond
20503 ((run-hook-with-args-until-success 'org-shiftleft-hook))
20504 ((and org-support-shift-select (org-region-active-p))
20505 (org-call-for-shift-select 'backward-char))
20506 ((org-at-timestamp-p t) (call-interactively 'org-timestamp-down-day))
20507 ((and (not (eq org-support-shift-select 'always))
20508 (org-at-heading-p))
20509 (let ((org-inhibit-logging
20510 (not org-treat-S-cursor-todo-selection-as-state-change))
20511 (org-inhibit-blocking
20512 (not org-treat-S-cursor-todo-selection-as-state-change)))
20513 (org-call-with-arg 'org-todo 'left)))
20514 ((or (and org-support-shift-select
20515 (not (eq org-support-shift-select 'always))
20516 (org-at-item-bullet-p))
20517 (and (not org-support-shift-select) (org-at-item-p)))
20518 (org-call-with-arg 'org-cycle-list-bullet 'previous))
20519 ((and (not (eq org-support-shift-select 'always))
20520 (org-at-property-p))
20521 (call-interactively 'org-property-previous-allowed-value))
20522 ((org-clocktable-try-shift 'left arg))
20523 ((run-hook-with-args-until-success 'org-shiftleft-final-hook))
20524 (org-support-shift-select
20525 (org-call-for-shift-select 'backward-char))
20526 (t (org-shiftselect-error))))
20528 (defun org-shiftcontrolright ()
20529 "Switch to next TODO set."
20530 (interactive)
20531 (cond
20532 ((and org-support-shift-select (org-region-active-p))
20533 (org-call-for-shift-select 'forward-word))
20534 ((and (not (eq org-support-shift-select 'always))
20535 (org-at-heading-p))
20536 (org-call-with-arg 'org-todo 'nextset))
20537 (org-support-shift-select
20538 (org-call-for-shift-select 'forward-word))
20539 (t (org-shiftselect-error))))
20541 (defun org-shiftcontrolleft ()
20542 "Switch to previous TODO set."
20543 (interactive)
20544 (cond
20545 ((and org-support-shift-select (org-region-active-p))
20546 (org-call-for-shift-select 'backward-word))
20547 ((and (not (eq org-support-shift-select 'always))
20548 (org-at-heading-p))
20549 (org-call-with-arg 'org-todo 'previousset))
20550 (org-support-shift-select
20551 (org-call-for-shift-select 'backward-word))
20552 (t (org-shiftselect-error))))
20554 (defun org-shiftcontrolup (&optional n)
20555 "Change timestamps synchronously up in CLOCK log lines.
20556 Optional argument N tells to change by that many units."
20557 (interactive "P")
20558 (if (and (org-at-clock-log-p) (org-at-timestamp-p t))
20559 (let (org-support-shift-select)
20560 (org-clock-timestamps-up n))
20561 (user-error "Not at a clock log")))
20563 (defun org-shiftcontroldown (&optional n)
20564 "Change timestamps synchronously down in CLOCK log lines.
20565 Optional argument N tells to change by that many units."
20566 (interactive "P")
20567 (if (and (org-at-clock-log-p) (org-at-timestamp-p t))
20568 (let (org-support-shift-select)
20569 (org-clock-timestamps-down n))
20570 (user-error "Not at a clock log")))
20572 (defun org-increase-number-at-point (&optional inc)
20573 "Increment the number at point.
20574 With an optional prefix numeric argument INC, increment using
20575 this numeric value."
20576 (interactive "p")
20577 (if (not (number-at-point))
20578 (user-error "Not on a number")
20579 (unless inc (setq inc 1))
20580 (let ((pos (point))
20581 (beg (skip-chars-backward "-+^/*0-9eE."))
20582 (end (skip-chars-forward "-+^/*0-9eE^.")) nap)
20583 (setq nap (buffer-substring-no-properties
20584 (+ pos beg) (+ pos beg end)))
20585 (delete-region (+ pos beg) (+ pos beg end))
20586 (insert (calc-eval (concat (number-to-string inc) "+" nap))))
20587 (when (org-at-table-p)
20588 (org-table-align)
20589 (org-table-end-of-field 1))))
20591 (defun org-decrease-number-at-point (&optional inc)
20592 "Decrement the number at point.
20593 With an optional prefix numeric argument INC, decrement using
20594 this numeric value."
20595 (interactive "p")
20596 (org-increase-number-at-point (- inc)))
20598 (defun org-ctrl-c-ret ()
20599 "Call `org-table-hline-and-move' or `org-insert-heading' dep. on context."
20600 (interactive)
20601 (cond
20602 ((org-at-table-p) (call-interactively 'org-table-hline-and-move))
20603 (t (call-interactively 'org-insert-heading))))
20605 (defun org-find-visible ()
20606 (let ((s (point)))
20607 (while (and (not (= (point-max) (setq s (next-overlay-change s))))
20608 (get-char-property s 'invisible)))
20610 (defun org-find-invisible ()
20611 (let ((s (point)))
20612 (while (and (not (= (point-max) (setq s (next-overlay-change s))))
20613 (not (get-char-property s 'invisible))))
20616 (defun org-copy-visible (beg end)
20617 "Copy the visible parts of the region."
20618 (interactive "r")
20619 (let (snippets s)
20620 (save-excursion
20621 (save-restriction
20622 (narrow-to-region beg end)
20623 (setq s (goto-char (point-min)))
20624 (while (not (= (point) (point-max)))
20625 (goto-char (org-find-invisible))
20626 (push (buffer-substring s (point)) snippets)
20627 (setq s (goto-char (org-find-visible))))))
20628 (kill-new (apply 'concat (nreverse snippets)))))
20630 (defun org-copy-special ()
20631 "Copy region in table or copy current subtree.
20632 Calls `org-table-copy' or `org-copy-subtree', depending on context.
20633 See the individual commands for more information."
20634 (interactive)
20635 (call-interactively
20636 (if (org-at-table-p) 'org-table-copy-region 'org-copy-subtree)))
20638 (defun org-cut-special ()
20639 "Cut region in table or cut current subtree.
20640 Calls `org-table-copy' or `org-cut-subtree', depending on context.
20641 See the individual commands for more information."
20642 (interactive)
20643 (call-interactively
20644 (if (org-at-table-p) 'org-table-cut-region 'org-cut-subtree)))
20646 (defun org-paste-special (arg)
20647 "Paste rectangular region into table, or past subtree relative to level.
20648 Calls `org-table-paste-rectangle' or `org-paste-subtree', depending on context.
20649 See the individual commands for more information."
20650 (interactive "P")
20651 (if (org-at-table-p)
20652 (org-table-paste-rectangle)
20653 (org-paste-subtree arg)))
20655 (defsubst org-in-fixed-width-region-p ()
20656 "Is point in a fixed-width region?"
20657 (save-match-data
20658 (eq 'fixed-width (org-element-type (org-element-at-point)))))
20660 (defun org-edit-special (&optional arg)
20661 "Call a special editor for the element at point.
20662 When at a table, call the formula editor with `org-table-edit-formulas'.
20663 When in a source code block, call `org-edit-src-code'.
20664 When in a fixed-width region, call `org-edit-fixed-width-region'.
20665 When at an #+INCLUDE keyword, visit the included file.
20666 On a link, call `ffap' to visit the link at point.
20667 Otherwise, return a user error."
20668 (interactive "P")
20669 (let ((element (org-element-at-point)))
20670 (assert (not buffer-read-only) nil
20671 "Buffer is read-only: %s" (buffer-name))
20672 (case (org-element-type element)
20673 (src-block
20674 (if (not arg) (org-edit-src-code)
20675 (let* ((info (org-babel-get-src-block-info))
20676 (lang (nth 0 info))
20677 (params (nth 2 info))
20678 (session (cdr (assq :session params))))
20679 (if (not session) (org-edit-src-code)
20680 ;; At a src-block with a session and function called with
20681 ;; an ARG: switch to the buffer related to the inferior
20682 ;; process.
20683 (switch-to-buffer
20684 (funcall (intern (concat "org-babel-prep-session:" lang))
20685 session params))))))
20686 (keyword
20687 (if (member (org-element-property :key element) '("INCLUDE" "SETUPFILE"))
20688 (org-open-link-from-string
20689 (format "[[%s]]"
20690 (expand-file-name
20691 (let ((value (org-element-property :value element)))
20692 (cond ((not (org-string-nw-p value))
20693 (user-error "No file to edit"))
20694 ((string-match "\\`\"\\(.*?\\)\"" value)
20695 (match-string 1 value))
20696 ((string-match "\\`[^ \t\"]\\S-*" value)
20697 (match-string 0 value))
20698 (t (user-error "No valid file specified")))))))
20699 (user-error "No special environment to edit here")))
20700 (table
20701 (if (eq (org-element-property :type element) 'table.el)
20702 (org-edit-src-code)
20703 (call-interactively 'org-table-edit-formulas)))
20704 ;; Only Org tables contain `table-row' type elements.
20705 (table-row (call-interactively 'org-table-edit-formulas))
20706 ((example-block export-block) (org-edit-src-code))
20707 (fixed-width (org-edit-fixed-width-region))
20708 (otherwise
20709 ;; No notable element at point. Though, we may be at a link,
20710 ;; which is an object. Thus, scan deeper.
20711 (if (eq (org-element-type (org-element-context element)) 'link)
20712 (call-interactively 'ffap)
20713 (user-error "No special environment to edit here"))))))
20715 (defvar org-table-coordinate-overlays) ; defined in org-table.el
20716 (defun org-ctrl-c-ctrl-c (&optional arg)
20717 "Set tags in headline, or update according to changed information at point.
20719 This command does many different things, depending on context:
20721 - If a function in `org-ctrl-c-ctrl-c-hook' recognizes this location,
20722 this is what we do.
20724 - If the cursor is on a statistics cookie, update it.
20726 - If the cursor is in a headline, prompt for tags and insert them
20727 into the current line, aligned to `org-tags-column'. When called
20728 with prefix arg, realign all tags in the current buffer.
20730 - If the cursor is in one of the special #+KEYWORD lines, this
20731 triggers scanning the buffer for these lines and updating the
20732 information.
20734 - If the cursor is inside a table, realign the table. This command
20735 works even if the automatic table editor has been turned off.
20737 - If the cursor is on a #+TBLFM line, re-apply the formulas to
20738 the entire table.
20740 - If the cursor is at a footnote reference or definition, jump to
20741 the corresponding definition or references, respectively.
20743 - If the cursor is a the beginning of a dynamic block, update it.
20745 - If the current buffer is a capture buffer, close note and file it.
20747 - If the cursor is on a <<<target>>>, update radio targets and
20748 corresponding links in this buffer.
20750 - If the cursor is on a numbered item in a plain list, renumber the
20751 ordered list.
20753 - If the cursor is on a checkbox, toggle it.
20755 - If the cursor is on a code block, evaluate it. The variable
20756 `org-confirm-babel-evaluate' can be used to control prompting
20757 before code block evaluation, by default every code block
20758 evaluation requires confirmation. Code block evaluation can be
20759 inhibited by setting `org-babel-no-eval-on-ctrl-c-ctrl-c'."
20760 (interactive "P")
20761 (cond
20762 ((or (and (boundp 'org-clock-overlays) org-clock-overlays)
20763 org-occur-highlights)
20764 (and (boundp 'org-clock-overlays) (org-clock-remove-overlays))
20765 (org-remove-occur-highlights)
20766 (message "Temporary highlights/overlays removed from current buffer"))
20767 ((and (local-variable-p 'org-finish-function (current-buffer))
20768 (fboundp org-finish-function))
20769 (funcall org-finish-function))
20770 ((run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-hook))
20772 (let* ((context (org-element-context)) (type (org-element-type context)))
20773 ;; Test if point is within a blank line.
20774 (if (save-excursion (beginning-of-line) (looking-at "[ \t]*$"))
20775 (or (run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-final-hook)
20776 (user-error "C-c C-c can do nothing useful at this location"))
20777 (case type
20778 ;; When at a link, act according to the parent instead.
20779 (link (setq context (org-element-property :parent context))
20780 (setq type (org-element-type context)))
20781 ;; Unsupported object types: refer to the first supported
20782 ;; element or object containing it.
20783 ((bold code entity export-snippet inline-babel-call inline-src-block
20784 italic latex-fragment line-break macro strike-through subscript
20785 superscript underline verbatim)
20786 (while (and (setq context (org-element-property :parent context))
20787 (not (memq (setq type (org-element-type context))
20788 '(radio-target paragraph verse-block
20789 table-cell)))))))
20790 ;; For convenience: at the first line of a paragraph on the
20791 ;; same line as an item, apply function on that item instead.
20792 (when (eq type 'paragraph)
20793 (let ((parent (org-element-property :parent context)))
20794 (when (and (eq (org-element-type parent) 'item)
20795 (= (point-at-bol) (org-element-property :begin parent)))
20796 (setq context parent type 'item))))
20797 ;; Act according to type of element or object at point.
20798 (case type
20799 (clock (org-clock-update-time-maybe))
20800 (dynamic-block
20801 (save-excursion
20802 (goto-char (org-element-property :post-affiliated context))
20803 (org-update-dblock)))
20804 (footnote-definition
20805 (goto-char (org-element-property :post-affiliated context))
20806 (call-interactively 'org-footnote-action))
20807 (footnote-reference (call-interactively 'org-footnote-action))
20808 ((headline inlinetask)
20809 (save-excursion (goto-char (org-element-property :begin context))
20810 (call-interactively 'org-set-tags)))
20811 (item
20812 ;; At an item: a double C-u set checkbox to "[-]"
20813 ;; unconditionally, whereas a single one will toggle its
20814 ;; presence. Without an universal argument, if the item
20815 ;; has a checkbox, toggle it. Otherwise repair the list.
20816 (let* ((box (org-element-property :checkbox context))
20817 (struct (org-element-property :structure context))
20818 (old-struct (copy-tree struct))
20819 (parents (org-list-parents-alist struct))
20820 (prevs (org-list-prevs-alist struct))
20821 (orderedp (org-not-nil (org-entry-get nil "ORDERED"))))
20822 (org-list-set-checkbox
20823 (org-element-property :begin context) struct
20824 (cond ((equal arg '(16)) "[-]")
20825 ((and (not box) (equal arg '(4))) "[ ]")
20826 ((or (not box) (equal arg '(4))) nil)
20827 ((eq box 'on) "[ ]")
20828 (t "[X]")))
20829 ;; Mimic `org-list-write-struct' but with grabbing
20830 ;; a return value from `org-list-struct-fix-box'.
20831 (org-list-struct-fix-ind struct parents 2)
20832 (org-list-struct-fix-item-end struct)
20833 (org-list-struct-fix-bul struct prevs)
20834 (org-list-struct-fix-ind struct parents)
20835 (let ((block-item
20836 (org-list-struct-fix-box struct parents prevs orderedp)))
20837 (if (and box (equal struct old-struct))
20838 (if (equal arg '(16))
20839 (message "Checkboxes already reset")
20840 (user-error "Cannot toggle this checkbox: %s"
20841 (if (eq box 'on)
20842 "all subitems checked"
20843 "unchecked subitems")))
20844 (org-list-struct-apply-struct struct old-struct)
20845 (org-update-checkbox-count-maybe))
20846 (when block-item
20847 (message "Checkboxes were removed due to empty box at line %d"
20848 (org-current-line block-item))))))
20849 (keyword
20850 (let ((org-inhibit-startup-visibility-stuff t)
20851 (org-startup-align-all-tables nil))
20852 (when (boundp 'org-table-coordinate-overlays)
20853 (mapc 'delete-overlay org-table-coordinate-overlays)
20854 (setq org-table-coordinate-overlays nil))
20855 (org-save-outline-visibility 'use-markers (org-mode-restart)))
20856 (message "Local setup has been refreshed"))
20857 (plain-list
20858 ;; At a plain list, with a double C-u argument, set
20859 ;; checkboxes of each item to "[-]", whereas a single one
20860 ;; will toggle their presence according to the state of the
20861 ;; first item in the list. Without an argument, repair the
20862 ;; list.
20863 (let* ((begin (org-element-property :contents-begin context))
20864 (beginm (move-marker (make-marker) begin))
20865 (struct (org-element-property :structure context))
20866 (old-struct (copy-tree struct))
20867 (first-box (save-excursion
20868 (goto-char begin)
20869 (looking-at org-list-full-item-re)
20870 (match-string-no-properties 3)))
20871 (new-box (cond ((equal arg '(16)) "[-]")
20872 ((equal arg '(4)) (unless first-box "[ ]"))
20873 ((equal first-box "[X]") "[ ]")
20874 (t "[X]"))))
20875 (cond
20876 (arg
20877 (mapc (lambda (pos) (org-list-set-checkbox pos struct new-box))
20878 (org-list-get-all-items
20879 begin struct (org-list-prevs-alist struct))))
20880 ((and first-box (eq (point) begin))
20881 ;; For convenience, when point is at bol on the first
20882 ;; item of the list and no argument is provided, simply
20883 ;; toggle checkbox of that item, if any.
20884 (org-list-set-checkbox begin struct new-box)))
20885 (org-list-write-struct
20886 struct (org-list-parents-alist struct) old-struct)
20887 (org-update-checkbox-count-maybe)
20888 (save-excursion (goto-char beginm) (org-list-send-list 'maybe))))
20889 ((property-drawer node-property)
20890 (call-interactively 'org-property-action))
20891 ((radio-target target)
20892 (call-interactively 'org-update-radio-target-regexp))
20893 (statistics-cookie
20894 (call-interactively 'org-update-statistics-cookies))
20895 ((table table-cell table-row)
20896 ;; At a table, recalculate every field and align it. Also
20897 ;; send the table if necessary. If the table has
20898 ;; a `table.el' type, just give up. At a table row or
20899 ;; cell, maybe recalculate line but always align table.
20900 (if (eq (org-element-property :type context) 'table.el)
20901 (message "Use C-c ' to edit table.el tables")
20902 (let ((org-enable-table-editor t))
20903 (if (or (eq type 'table)
20904 ;; Check if point is at a TBLFM line.
20905 (and (eq type 'table-row)
20906 (= (point) (org-element-property :end context))))
20907 (save-excursion
20908 (if (org-at-TBLFM-p)
20909 (progn (require 'org-table)
20910 (org-table-calc-current-TBLFM))
20911 (goto-char (org-element-property :contents-begin context))
20912 (org-call-with-arg 'org-table-recalculate (or arg t))
20913 (orgtbl-send-table 'maybe)))
20914 (org-table-maybe-eval-formula)
20915 (cond (arg (call-interactively 'org-table-recalculate))
20916 ((org-table-maybe-recalculate-line))
20917 (t (org-table-align)))))))
20918 (timestamp (org-timestamp-change 0 'day))
20919 (otherwise
20920 (or (run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-final-hook)
20921 (user-error
20922 "C-c C-c can do nothing useful at this location")))))))))
20924 (defun org-mode-restart ()
20925 (interactive)
20926 (let ((indent-status (org-bound-and-true-p org-indent-mode)))
20927 (funcall major-mode)
20928 (hack-local-variables)
20929 (when (and indent-status (not (org-bound-and-true-p org-indent-mode)))
20930 (org-indent-mode -1)))
20931 (message "%s restarted" major-mode))
20933 (defun org-kill-note-or-show-branches ()
20934 "If this is a Note buffer, abort storing the note. Else call `show-branches'."
20935 (interactive)
20936 (if (not org-finish-function)
20937 (progn
20938 (hide-subtree)
20939 (call-interactively 'show-branches))
20940 (let ((org-note-abort t))
20941 (funcall org-finish-function))))
20943 (defun org-open-line (n)
20944 "Insert a new row in tables, call `open-line' elsewhere.
20945 If `org-special-ctrl-o' is nil, just call `open-line' everywhere."
20946 (interactive "*p")
20947 (cond
20948 ((not org-special-ctrl-o)
20949 (open-line n))
20950 ((org-at-table-p)
20951 (org-table-insert-row))
20953 (open-line n))))
20955 (defun org-return (&optional indent)
20956 "Goto next table row or insert a newline.
20957 Calls `org-table-next-row' or `newline', depending on context.
20958 See the individual commands for more information."
20959 (interactive)
20960 (let (org-ts-what)
20961 (cond
20962 ((or (bobp) (org-in-src-block-p))
20963 (if indent (newline-and-indent) (newline)))
20964 ((org-at-table-p)
20965 (org-table-justify-field-maybe)
20966 (call-interactively 'org-table-next-row))
20967 ;; when `newline-and-indent' is called within a list, make sure
20968 ;; text moved stays inside the item.
20969 ((and (org-in-item-p) indent)
20970 (if (and (org-at-item-p) (>= (point) (match-end 0)))
20971 (progn
20972 (save-match-data (newline))
20973 (org-indent-line-to (length (match-string 0))))
20974 (let ((ind (org-get-indentation)))
20975 (newline)
20976 (if (org-looking-back org-list-end-re)
20977 (org-indent-line)
20978 (org-indent-line-to ind)))))
20979 ((and org-return-follows-link
20980 (org-at-timestamp-p t)
20981 (not (eq org-ts-what 'after)))
20982 (org-follow-timestamp-link))
20983 ((and org-return-follows-link
20984 (let ((tprop (get-text-property (point) 'face)))
20985 (or (eq tprop 'org-link)
20986 (and (listp tprop) (memq 'org-link tprop)))))
20987 (call-interactively 'org-open-at-point))
20988 ((and (org-at-heading-p)
20989 (looking-at
20990 (org-re "\\([ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)[ \t]*$")))
20991 (org-show-entry)
20992 (end-of-line 1)
20993 (newline))
20994 (t (if indent (newline-and-indent) (newline))))))
20996 (defun org-return-indent ()
20997 "Goto next table row or insert a newline and indent.
20998 Calls `org-table-next-row' or `newline-and-indent', depending on
20999 context. See the individual commands for more information."
21000 (interactive)
21001 (org-return t))
21003 (defun org-ctrl-c-star ()
21004 "Compute table, or change heading status of lines.
21005 Calls `org-table-recalculate' or `org-toggle-heading',
21006 depending on context."
21007 (interactive)
21008 (cond
21009 ((org-at-table-p)
21010 (call-interactively 'org-table-recalculate))
21012 ;; Convert all lines in region to list items
21013 (call-interactively 'org-toggle-heading))))
21015 (defun org-ctrl-c-minus ()
21016 "Insert separator line in table or modify bullet status of line.
21017 Also turns a plain line or a region of lines into list items.
21018 Calls `org-table-insert-hline', `org-toggle-item', or
21019 `org-cycle-list-bullet', depending on context."
21020 (interactive)
21021 (cond
21022 ((org-at-table-p)
21023 (call-interactively 'org-table-insert-hline))
21024 ((org-region-active-p)
21025 (call-interactively 'org-toggle-item))
21026 ((org-in-item-p)
21027 (call-interactively 'org-cycle-list-bullet))
21029 (call-interactively 'org-toggle-item))))
21031 (defun org-toggle-item (arg)
21032 "Convert headings or normal lines to items, items to normal lines.
21033 If there is no active region, only the current line is considered.
21035 If the first non blank line in the region is a headline, convert
21036 all headlines to items, shifting text accordingly.
21038 If it is an item, convert all items to normal lines.
21040 If it is normal text, change region into a list of items.
21041 With a prefix argument ARG, change the region in a single item."
21042 (interactive "P")
21043 (let ((shift-text
21044 (function
21045 ;; Shift text in current section to IND, from point to END.
21046 ;; The function leaves point to END line.
21047 (lambda (ind end)
21048 (let ((min-i 1000) (end (copy-marker end)))
21049 ;; First determine the minimum indentation (MIN-I) of
21050 ;; the text.
21051 (save-excursion
21052 (catch 'exit
21053 (while (< (point) end)
21054 (let ((i (org-get-indentation)))
21055 (cond
21056 ;; Skip blank lines and inline tasks.
21057 ((looking-at "^[ \t]*$"))
21058 ((looking-at org-outline-regexp-bol))
21059 ;; We can't find less than 0 indentation.
21060 ((zerop i) (throw 'exit (setq min-i 0)))
21061 ((< i min-i) (setq min-i i))))
21062 (forward-line))))
21063 ;; Then indent each line so that a line indented to
21064 ;; MIN-I becomes indented to IND. Ignore blank lines
21065 ;; and inline tasks in the process.
21066 (let ((delta (- ind min-i)))
21067 (while (< (point) end)
21068 (unless (or (looking-at "^[ \t]*$")
21069 (looking-at org-outline-regexp-bol))
21070 (org-indent-line-to (+ (org-get-indentation) delta)))
21071 (forward-line)))))))
21072 (skip-blanks
21073 (function
21074 ;; Return beginning of first non-blank line, starting from
21075 ;; line at POS.
21076 (lambda (pos)
21077 (save-excursion
21078 (goto-char pos)
21079 (skip-chars-forward " \r\t\n")
21080 (point-at-bol)))))
21081 beg end)
21082 ;; Determine boundaries of changes.
21083 (if (org-region-active-p)
21084 (setq beg (funcall skip-blanks (region-beginning))
21085 end (copy-marker (region-end)))
21086 (setq beg (funcall skip-blanks (point-at-bol))
21087 end (copy-marker (point-at-eol))))
21088 ;; Depending on the starting line, choose an action on the text
21089 ;; between BEG and END.
21090 (org-with-limited-levels
21091 (save-excursion
21092 (goto-char beg)
21093 (cond
21094 ;; Case 1. Start at an item: de-itemize. Note that it only
21095 ;; happens when a region is active: `org-ctrl-c-minus'
21096 ;; would call `org-cycle-list-bullet' otherwise.
21097 ((org-at-item-p)
21098 (while (< (point) end)
21099 (when (org-at-item-p)
21100 (skip-chars-forward " \t")
21101 (delete-region (point) (match-end 0)))
21102 (forward-line)))
21103 ;; Case 2. Start at an heading: convert to items.
21104 ((org-at-heading-p)
21105 (let* ((bul (org-list-bullet-string "-"))
21106 (bul-len (length bul))
21107 (done (org-entry-is-done-p))
21108 (todo (org-entry-is-todo-p))
21109 ;; Indentation of the first heading. It should be
21110 ;; relative to the indentation of its parent, if any.
21111 (start-ind (save-excursion
21112 (cond
21113 ((not org-adapt-indentation) 0)
21114 ((not (outline-previous-heading)) 0)
21115 (t (length (match-string 0))))))
21116 ;; Level of first heading. Further headings will be
21117 ;; compared to it to determine hierarchy in the list.
21118 (ref-level (org-reduced-level (org-outline-level))))
21119 (when (or done todo) (org-todo ""))
21120 (while (< (point) end)
21121 (let* ((level (org-reduced-level (org-outline-level)))
21122 (delta (max 0 (- level ref-level))))
21123 ;; If current headline is less indented than the first
21124 ;; one, set it as reference, in order to preserve
21125 ;; subtrees.
21126 (when (< level ref-level) (setq ref-level level))
21127 (replace-match bul t t)
21128 (org-indent-line-to (+ start-ind (* delta bul-len)))
21129 (when (or done todo)
21130 (let* ((struct (org-list-struct))
21131 (old (copy-tree struct)))
21132 (org-list-set-checkbox (line-beginning-position)
21133 struct
21134 (if done "[X]" "[ ]"))
21135 (org-list-write-struct struct
21136 (org-list-parents-alist struct)
21137 old)))
21138 ;; Ensure all text down to END (or SECTION-END) belongs
21139 ;; to the newly created item.
21140 (let ((section-end (save-excursion
21141 (or (outline-next-heading) (point)))))
21142 (forward-line)
21143 (funcall shift-text
21144 (+ start-ind (* (1+ delta) bul-len))
21145 (min end section-end)))))))
21146 ;; Case 3. Normal line with ARG: make the first line of region
21147 ;; an item, and shift indentation of others lines to
21148 ;; set them as item's body.
21149 (arg (let* ((bul (org-list-bullet-string "-"))
21150 (bul-len (length bul))
21151 (ref-ind (org-get-indentation)))
21152 (skip-chars-forward " \t")
21153 (insert bul)
21154 (forward-line)
21155 (while (< (point) end)
21156 ;; Ensure that lines less indented than first one
21157 ;; still get included in item body.
21158 (funcall shift-text
21159 (+ ref-ind bul-len)
21160 (min end (save-excursion (or (outline-next-heading)
21161 (point)))))
21162 (forward-line))))
21163 ;; Case 4. Normal line without ARG: turn each non-item line
21164 ;; into an item.
21166 (while (< (point) end)
21167 (unless (or (org-at-heading-p) (org-at-item-p))
21168 (if (looking-at "\\([ \t]*\\)\\(\\S-\\)")
21169 (replace-match
21170 (concat "\\1" (org-list-bullet-string "-") "\\2"))))
21171 (forward-line))))))))
21173 (defun org-toggle-heading (&optional nstars)
21174 "Convert headings to normal text, or items or text to headings.
21175 If there is no active region, only convert the current line.
21177 With a \\[universal-argument] prefix, convert the whole list at
21178 point into heading.
21180 In a region:
21182 - If the first non blank line is a headline, remove the stars
21183 from all headlines in the region.
21185 - If it is a normal line, turn each and every normal line (i.e.,
21186 not an heading or an item) in the region into headings. If you
21187 want to convert only the first line of this region, use one
21188 universal prefix argument.
21190 - If it is a plain list item, turn all plain list items into headings.
21192 When converting a line into a heading, the number of stars is chosen
21193 such that the lines become children of the current entry. However,
21194 when a numeric prefix argument is given, its value determines the
21195 number of stars to add."
21196 (interactive "P")
21197 (let ((skip-blanks
21198 (function
21199 ;; Return beginning of first non-blank line, starting from
21200 ;; line at POS.
21201 (lambda (pos)
21202 (save-excursion
21203 (goto-char pos)
21204 (while (org-at-comment-p) (forward-line))
21205 (skip-chars-forward " \r\t\n")
21206 (point-at-bol)))))
21207 beg end toggled)
21208 ;; Determine boundaries of changes. If a universal prefix has
21209 ;; been given, put the list in a region. If region ends at a bol,
21210 ;; do not consider the last line to be in the region.
21212 (when (and current-prefix-arg (org-at-item-p))
21213 (if (listp current-prefix-arg) (setq current-prefix-arg 1))
21214 (org-mark-element))
21216 (if (org-region-active-p)
21217 (setq beg (funcall skip-blanks (region-beginning))
21218 end (copy-marker (save-excursion
21219 (goto-char (region-end))
21220 (if (bolp) (point) (point-at-eol)))))
21221 (setq beg (funcall skip-blanks (point-at-bol))
21222 end (copy-marker (point-at-eol))))
21223 ;; Ensure inline tasks don't count as headings.
21224 (org-with-limited-levels
21225 (save-excursion
21226 (goto-char beg)
21227 (cond
21228 ;; Case 1. Started at an heading: de-star headings.
21229 ((org-at-heading-p)
21230 (while (< (point) end)
21231 (when (org-at-heading-p t)
21232 (looking-at org-outline-regexp) (replace-match "")
21233 (setq toggled t))
21234 (forward-line)))
21235 ;; Case 2. Started at an item: change items into headlines.
21236 ;; One star will be added by `org-list-to-subtree'.
21237 ((org-at-item-p)
21238 (let* ((stars (make-string
21239 ;; subtract the star that will be added again by
21240 ;; `org-list-to-subtree'
21241 (if (numberp nstars) (1- nstars)
21242 (or (org-current-level) 0))
21243 ?*))
21244 (add-stars
21245 (cond (nstars "") ; stars from prefix only
21246 ((equal stars "") "") ; before first heading
21247 (org-odd-levels-only "*") ; inside heading, odd
21248 (t "")))) ; inside heading, oddeven
21249 (while (< (point) end)
21250 (when (org-at-item-p)
21251 ;; Pay attention to cases when region ends before list.
21252 (let* ((struct (org-list-struct))
21253 (list-end (min (org-list-get-bottom-point struct) (1+ end))))
21254 (save-restriction
21255 (narrow-to-region (point) list-end)
21256 (insert
21257 (org-list-to-subtree
21258 (org-list-parse-list t)
21259 '(:istart (concat stars add-stars (funcall get-stars depth))
21260 :icount (concat stars add-stars (funcall get-stars depth)))))))
21261 (setq toggled t))
21262 (forward-line))))
21263 ;; Case 3. Started at normal text: make every line an heading,
21264 ;; skipping headlines and items.
21265 (t (let* ((stars
21266 (make-string
21267 (if (numberp nstars) nstars (or (org-current-level) 0)) ?*))
21268 (add-stars
21269 (cond (nstars "") ; stars from prefix only
21270 ((equal stars "") "*") ; before first heading
21271 (org-odd-levels-only "**") ; inside heading, odd
21272 (t "*"))) ; inside heading, oddeven
21273 (rpl (concat stars add-stars " "))
21274 (lend (if (listp nstars) (save-excursion (end-of-line) (point)))))
21275 (while (< (point) (if (equal nstars '(4)) lend end))
21276 (when (and (not (or (org-at-heading-p) (org-at-item-p) (org-at-comment-p)))
21277 (looking-at "\\([ \t]*\\)\\(\\S-\\)"))
21278 (replace-match (concat rpl (match-string 2))) (setq toggled t))
21279 (forward-line)))))))
21280 (unless toggled (message "Cannot toggle heading from here"))))
21282 (defun org-meta-return (&optional arg)
21283 "Insert a new heading or wrap a region in a table.
21284 Calls `org-insert-heading' or `org-table-wrap-region', depending
21285 on context. See the individual commands for more information."
21286 (interactive "P")
21287 (org-check-before-invisible-edit 'insert)
21288 (or (run-hook-with-args-until-success 'org-metareturn-hook)
21289 (let* ((element (org-element-at-point))
21290 (type (org-element-type element)))
21291 (when (eq type 'table-row)
21292 (setq element (org-element-property :parent element))
21293 (setq type 'table))
21294 (if (and (eq type 'table)
21295 (eq (org-element-property :type element) 'org)
21296 (>= (point) (org-element-property :contents-begin element))
21297 (< (point) (org-element-property :contents-end element)))
21298 (call-interactively 'org-table-wrap-region)
21299 (call-interactively 'org-insert-heading)))))
21301 ;;; Menu entries
21303 (defsubst org-in-subtree-not-table-p ()
21304 "Are we in a subtree and not in a table?"
21305 (and (not (org-before-first-heading-p))
21306 (not (org-at-table-p))))
21308 ;; Define the Org-mode menus
21309 (easy-menu-define org-tbl-menu org-mode-map "Tbl menu"
21310 '("Tbl"
21311 ["Align" org-ctrl-c-ctrl-c :active (org-at-table-p)]
21312 ["Next Field" org-cycle (org-at-table-p)]
21313 ["Previous Field" org-shifttab (org-at-table-p)]
21314 ["Next Row" org-return (org-at-table-p)]
21315 "--"
21316 ["Blank Field" org-table-blank-field (org-at-table-p)]
21317 ["Edit Field" org-table-edit-field (org-at-table-p)]
21318 ["Copy Field from Above" org-table-copy-down (org-at-table-p)]
21319 "--"
21320 ("Column"
21321 ["Move Column Left" org-metaleft (org-at-table-p)]
21322 ["Move Column Right" org-metaright (org-at-table-p)]
21323 ["Delete Column" org-shiftmetaleft (org-at-table-p)]
21324 ["Insert Column" org-shiftmetaright (org-at-table-p)])
21325 ("Row"
21326 ["Move Row Up" org-metaup (org-at-table-p)]
21327 ["Move Row Down" org-metadown (org-at-table-p)]
21328 ["Delete Row" org-shiftmetaup (org-at-table-p)]
21329 ["Insert Row" org-shiftmetadown (org-at-table-p)]
21330 ["Sort lines in region" org-table-sort-lines (org-at-table-p)]
21331 "--"
21332 ["Insert Hline" org-ctrl-c-minus (org-at-table-p)])
21333 ("Rectangle"
21334 ["Copy Rectangle" org-copy-special (org-at-table-p)]
21335 ["Cut Rectangle" org-cut-special (org-at-table-p)]
21336 ["Paste Rectangle" org-paste-special (org-at-table-p)]
21337 ["Fill Rectangle" org-table-wrap-region (org-at-table-p)])
21338 "--"
21339 ("Calculate"
21340 ["Set Column Formula" org-table-eval-formula (org-at-table-p)]
21341 ["Set Field Formula" (org-table-eval-formula '(4)) :active (org-at-table-p) :keys "C-u C-c ="]
21342 ["Edit Formulas" org-edit-special (org-at-table-p)]
21343 "--"
21344 ["Recalculate line" org-table-recalculate (org-at-table-p)]
21345 ["Recalculate all" (lambda () (interactive) (org-table-recalculate '(4))) :active (org-at-table-p) :keys "C-u C-c *"]
21346 ["Iterate all" (lambda () (interactive) (org-table-recalculate '(16))) :active (org-at-table-p) :keys "C-u C-u C-c *"]
21347 "--"
21348 ["Toggle Recalculate Mark" org-table-rotate-recalc-marks (org-at-table-p)]
21349 "--"
21350 ["Sum Column/Rectangle" org-table-sum
21351 (or (org-at-table-p) (org-region-active-p))]
21352 ["Which Column?" org-table-current-column (org-at-table-p)])
21353 ["Debug Formulas"
21354 org-table-toggle-formula-debugger
21355 :style toggle :selected (org-bound-and-true-p org-table-formula-debug)]
21356 ["Show Col/Row Numbers"
21357 org-table-toggle-coordinate-overlays
21358 :style toggle
21359 :selected (org-bound-and-true-p org-table-overlay-coordinates)]
21360 "--"
21361 ["Create" org-table-create (and (not (org-at-table-p))
21362 org-enable-table-editor)]
21363 ["Convert Region" org-table-convert-region (not (org-at-table-p 'any))]
21364 ["Import from File" org-table-import (not (org-at-table-p))]
21365 ["Export to File" org-table-export (org-at-table-p)]
21366 "--"
21367 ["Create/Convert from/to table.el" org-table-create-with-table.el t]
21368 "--"
21369 ("Plot"
21370 ["Ascii plot" orgtbl-ascii-plot :active (org-at-table-p) :keys "C-c \" a"]
21371 ["Gnuplot" org-plot/gnuplot :active (org-at-table-p) :keys "C-c \" g"])))
21373 (easy-menu-define org-org-menu org-mode-map "Org menu"
21374 '("Org"
21375 ("Show/Hide"
21376 ["Cycle Visibility" org-cycle :active (or (bobp) (outline-on-heading-p))]
21377 ["Cycle Global Visibility" org-shifttab :active (not (org-at-table-p))]
21378 ["Sparse Tree..." org-sparse-tree t]
21379 ["Reveal Context" org-reveal t]
21380 ["Show All" show-all t]
21381 "--"
21382 ["Subtree to indirect buffer" org-tree-to-indirect-buffer t])
21383 "--"
21384 ["New Heading" org-insert-heading t]
21385 ("Navigate Headings"
21386 ["Up" outline-up-heading t]
21387 ["Next" outline-next-visible-heading t]
21388 ["Previous" outline-previous-visible-heading t]
21389 ["Next Same Level" outline-forward-same-level t]
21390 ["Previous Same Level" outline-backward-same-level t]
21391 "--"
21392 ["Jump" org-goto t])
21393 ("Edit Structure"
21394 ["Refile Subtree" org-refile (org-in-subtree-not-table-p)]
21395 "--"
21396 ["Move Subtree Up" org-metaup (org-at-heading-p)]
21397 ["Move Subtree Down" org-metadown (org-at-heading-p)]
21398 "--"
21399 ["Copy Subtree" org-copy-special (org-in-subtree-not-table-p)]
21400 ["Cut Subtree" org-cut-special (org-in-subtree-not-table-p)]
21401 ["Paste Subtree" org-paste-special (not (org-at-table-p))]
21402 "--"
21403 ["Clone subtree, shift time" org-clone-subtree-with-time-shift t]
21404 "--"
21405 ["Copy visible text" org-copy-visible t]
21406 "--"
21407 ["Promote Heading" org-metaleft (org-in-subtree-not-table-p)]
21408 ["Promote Subtree" org-shiftmetaleft (org-in-subtree-not-table-p)]
21409 ["Demote Heading" org-metaright (org-in-subtree-not-table-p)]
21410 ["Demote Subtree" org-shiftmetaright (org-in-subtree-not-table-p)]
21411 "--"
21412 ["Sort Region/Children" org-sort t]
21413 "--"
21414 ["Convert to odd levels" org-convert-to-odd-levels t]
21415 ["Convert to odd/even levels" org-convert-to-oddeven-levels t])
21416 ("Editing"
21417 ["Emphasis..." org-emphasize t]
21418 ["Edit Source Example" org-edit-special t]
21419 "--"
21420 ["Footnote new/jump" org-footnote-action t]
21421 ["Footnote extra" (org-footnote-action t) :active t :keys "C-u C-c C-x f"])
21422 ("Archive"
21423 ["Archive (default method)" org-archive-subtree-default (org-in-subtree-not-table-p)]
21424 "--"
21425 ["Move Subtree to Archive file" org-advertized-archive-subtree (org-in-subtree-not-table-p)]
21426 ["Toggle ARCHIVE tag" org-toggle-archive-tag (org-in-subtree-not-table-p)]
21427 ["Move subtree to Archive sibling" org-archive-to-archive-sibling (org-in-subtree-not-table-p)]
21429 "--"
21430 ("Hyperlinks"
21431 ["Store Link (Global)" org-store-link t]
21432 ["Find existing link to here" org-occur-link-in-agenda-files t]
21433 ["Insert Link" org-insert-link t]
21434 ["Follow Link" org-open-at-point t]
21435 "--"
21436 ["Next link" org-next-link t]
21437 ["Previous link" org-previous-link t]
21438 "--"
21439 ["Descriptive Links"
21440 org-toggle-link-display
21441 :style radio
21442 :selected org-descriptive-links
21444 ["Literal Links"
21445 org-toggle-link-display
21446 :style radio
21447 :selected (not org-descriptive-links)])
21448 "--"
21449 ("TODO Lists"
21450 ["TODO/DONE/-" org-todo t]
21451 ("Select keyword"
21452 ["Next keyword" org-shiftright (org-at-heading-p)]
21453 ["Previous keyword" org-shiftleft (org-at-heading-p)]
21454 ["Complete Keyword" pcomplete (assq :todo-keyword (org-context))]
21455 ["Next keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-at-heading-p))]
21456 ["Previous keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-at-heading-p))])
21457 ["Show TODO Tree" org-show-todo-tree :active t :keys "C-c / t"]
21458 ["Global TODO list" org-todo-list :active t :keys "C-c a t"]
21459 "--"
21460 ["Enforce dependencies" (customize-variable 'org-enforce-todo-dependencies)
21461 :selected org-enforce-todo-dependencies :style toggle :active t]
21462 "Settings for tree at point"
21463 ["Do Children sequentially" org-toggle-ordered-property :style radio
21464 :selected (org-entry-get nil "ORDERED")
21465 :active org-enforce-todo-dependencies :keys "C-c C-x o"]
21466 ["Do Children parallel" org-toggle-ordered-property :style radio
21467 :selected (not (org-entry-get nil "ORDERED"))
21468 :active org-enforce-todo-dependencies :keys "C-c C-x o"]
21469 "--"
21470 ["Set Priority" org-priority t]
21471 ["Priority Up" org-shiftup t]
21472 ["Priority Down" org-shiftdown t]
21473 "--"
21474 ["Get news from all feeds" org-feed-update-all t]
21475 ["Go to the inbox of a feed..." org-feed-goto-inbox t]
21476 ["Customize feeds" (customize-variable 'org-feed-alist) t])
21477 ("TAGS and Properties"
21478 ["Set Tags" org-set-tags-command (not (org-before-first-heading-p))]
21479 ["Change tag in region" org-change-tag-in-region (org-region-active-p)]
21480 "--"
21481 ["Set property" org-set-property (not (org-before-first-heading-p))]
21482 ["Column view of properties" org-columns t]
21483 ["Insert Column View DBlock" org-insert-columns-dblock t])
21484 ("Dates and Scheduling"
21485 ["Timestamp" org-time-stamp (not (org-before-first-heading-p))]
21486 ["Timestamp (inactive)" org-time-stamp-inactive (not (org-before-first-heading-p))]
21487 ("Change Date"
21488 ["1 Day Later" org-shiftright (org-at-timestamp-p)]
21489 ["1 Day Earlier" org-shiftleft (org-at-timestamp-p)]
21490 ["1 ... Later" org-shiftup (org-at-timestamp-p)]
21491 ["1 ... Earlier" org-shiftdown (org-at-timestamp-p)])
21492 ["Compute Time Range" org-evaluate-time-range t]
21493 ["Schedule Item" org-schedule (not (org-before-first-heading-p))]
21494 ["Deadline" org-deadline (not (org-before-first-heading-p))]
21495 "--"
21496 ["Custom time format" org-toggle-time-stamp-overlays
21497 :style radio :selected org-display-custom-times]
21498 "--"
21499 ["Goto Calendar" org-goto-calendar t]
21500 ["Date from Calendar" org-date-from-calendar t]
21501 "--"
21502 ["Start/Restart Timer" org-timer-start t]
21503 ["Pause/Continue Timer" org-timer-pause-or-continue t]
21504 ["Stop Timer" org-timer-pause-or-continue :active t :keys "C-u C-c C-x ,"]
21505 ["Insert Timer String" org-timer t]
21506 ["Insert Timer Item" org-timer-item t])
21507 ("Logging work"
21508 ["Clock in" org-clock-in :active t :keys "C-c C-x C-i"]
21509 ["Switch task" (lambda () (interactive) (org-clock-in '(4))) :active t :keys "C-u C-c C-x C-i"]
21510 ["Clock out" org-clock-out t]
21511 ["Clock cancel" org-clock-cancel t]
21512 "--"
21513 ["Mark as default task" org-clock-mark-default-task t]
21514 ["Clock in, mark as default" (lambda () (interactive) (org-clock-in '(16))) :active t :keys "C-u C-u C-c C-x C-i"]
21515 ["Goto running clock" org-clock-goto t]
21516 "--"
21517 ["Display times" org-clock-display t]
21518 ["Create clock table" org-clock-report t]
21519 "--"
21520 ["Record DONE time"
21521 (progn (setq org-log-done (not org-log-done))
21522 (message "Switching to %s will %s record a timestamp"
21523 (car org-done-keywords)
21524 (if org-log-done "automatically" "not")))
21525 :style toggle :selected org-log-done])
21526 "--"
21527 ["Agenda Command..." org-agenda t]
21528 ["Set Restriction Lock" org-agenda-set-restriction-lock t]
21529 ("File List for Agenda")
21530 ("Special views current file"
21531 ["TODO Tree" org-show-todo-tree t]
21532 ["Check Deadlines" org-check-deadlines t]
21533 ["Timeline" org-timeline t]
21534 ["Tags/Property tree" org-match-sparse-tree t])
21535 "--"
21536 ["Export/Publish..." org-export-dispatch t]
21537 ("LaTeX"
21538 ["Org CDLaTeX mode" org-cdlatex-mode :style toggle
21539 :selected org-cdlatex-mode]
21540 ["Insert Environment" cdlatex-environment (fboundp 'cdlatex-environment)]
21541 ["Insert math symbol" cdlatex-math-symbol (fboundp 'cdlatex-math-symbol)]
21542 ["Modify math symbol" org-cdlatex-math-modify
21543 (org-inside-LaTeX-fragment-p)]
21544 ["Insert citation" org-reftex-citation t]
21545 "--"
21546 ["Template for BEAMER" (org-beamer-insert-options-template) t])
21547 "--"
21548 ("MobileOrg"
21549 ["Push Files and Views" org-mobile-push t]
21550 ["Get Captured and Flagged" org-mobile-pull t]
21551 ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "C-c a ?"]
21552 "--"
21553 ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
21554 "--"
21555 ("Documentation"
21556 ["Show Version" org-version t]
21557 ["Info Documentation" org-info t])
21558 ("Customize"
21559 ["Browse Org Group" org-customize t]
21560 "--"
21561 ["Expand This Menu" org-create-customize-menu
21562 (fboundp 'customize-menu-create)])
21563 ["Send bug report" org-submit-bug-report t]
21564 "--"
21565 ("Refresh/Reload"
21566 ["Refresh setup current buffer" org-mode-restart t]
21567 ["Reload Org (after update)" org-reload t]
21568 ["Reload Org uncompiled" (org-reload t) :active t :keys "C-u C-c C-x !"])
21571 (defun org-info (&optional node)
21572 "Read documentation for Org-mode in the info system.
21573 With optional NODE, go directly to that node."
21574 (interactive)
21575 (info (format "(org)%s" (or node ""))))
21577 ;;;###autoload
21578 (defun org-submit-bug-report ()
21579 "Submit a bug report on Org-mode via mail.
21581 Don't hesitate to report any problems or inaccurate documentation.
21583 If you don't have setup sending mail from (X)Emacs, please copy the
21584 output buffer into your mail program, as it gives us important
21585 information about your Org-mode version and configuration."
21586 (interactive)
21587 (require 'reporter)
21588 (org-load-modules-maybe)
21589 (org-require-autoloaded-modules)
21590 (let ((reporter-prompt-for-summary-p "Bug report subject: "))
21591 (reporter-submit-bug-report
21592 "emacs-orgmode@gnu.org"
21593 (org-version nil 'full)
21594 (let (list)
21595 (save-window-excursion
21596 (org-pop-to-buffer-same-window (get-buffer-create "*Warn about privacy*"))
21597 (delete-other-windows)
21598 (erase-buffer)
21599 (insert "You are about to submit a bug report to the Org-mode mailing list.
21601 We would like to add your full Org-mode and Outline configuration to the
21602 bug report. This greatly simplifies the work of the maintainer and
21603 other experts on the mailing list.
21605 HOWEVER, some variables you have customized may contain private
21606 information. The names of customers, colleagues, or friends, might
21607 appear in the form of file names, tags, todo states, or search strings.
21608 If you answer yes to the prompt, you might want to check and remove
21609 such private information before sending the email.")
21610 (add-text-properties (point-min) (point-max) '(face org-warning))
21611 (when (yes-or-no-p "Include your Org-mode configuration ")
21612 (mapatoms
21613 (lambda (v)
21614 (and (boundp v)
21615 (string-match "\\`\\(org-\\|outline-\\)" (symbol-name v))
21616 (or (and (symbol-value v)
21617 (string-match "\\(-hook\\|-function\\)\\'" (symbol-name v)))
21618 (and
21619 (get v 'custom-type) (get v 'standard-value)
21620 (not (equal (symbol-value v) (eval (car (get v 'standard-value)))))))
21621 (push v list)))))
21622 (kill-buffer (get-buffer "*Warn about privacy*"))
21623 list))
21624 nil nil
21625 "Remember to cover the basics, that is, what you expected to happen and
21626 what in fact did happen. You don't know how to make a good report? See
21628 http://orgmode.org/manual/Feedback.html#Feedback
21630 Your bug report will be posted to the Org-mode mailing list.
21631 ------------------------------------------------------------------------")
21632 (save-excursion
21633 (if (re-search-backward "^\\(Subject: \\)Org-mode version \\(.*?\\);[ \t]*\\(.*\\)" nil t)
21634 (replace-match "\\1Bug: \\3 [\\2]")))))
21637 (defun org-install-agenda-files-menu ()
21638 (let ((bl (buffer-list)))
21639 (save-excursion
21640 (while bl
21641 (set-buffer (pop bl))
21642 (if (derived-mode-p 'org-mode) (setq bl nil)))
21643 (when (derived-mode-p 'org-mode)
21644 (easy-menu-change
21645 '("Org") "File List for Agenda"
21646 (append
21647 (list
21648 ["Edit File List" (org-edit-agenda-file-list) t]
21649 ["Add/Move Current File to Front of List" org-agenda-file-to-front t]
21650 ["Remove Current File from List" org-remove-file t]
21651 ["Cycle through agenda files" org-cycle-agenda-files t]
21652 ["Occur in all agenda files" org-occur-in-agenda-files t]
21653 "--")
21654 (mapcar 'org-file-menu-entry (org-agenda-files t))))))))
21656 ;;;; Documentation
21658 (defun org-require-autoloaded-modules ()
21659 (interactive)
21660 (mapc 'require
21661 '(org-agenda org-archive org-attach org-clock org-colview org-id
21662 org-table org-timer)))
21664 ;;;###autoload
21665 (defun org-reload (&optional uncompiled)
21666 "Reload all org lisp files.
21667 With prefix arg UNCOMPILED, load the uncompiled versions."
21668 (interactive "P")
21669 (require 'loadhist)
21670 (let* ((org-dir (org-find-library-dir "org"))
21671 (contrib-dir (or (org-find-library-dir "org-contribdir") org-dir))
21672 (feature-re "^\\(org\\|ob\\|ox\\)\\(-.*\\)?")
21673 (remove-re (mapconcat 'identity
21674 (mapcar (lambda (f) (concat "^" f "$"))
21675 (list (if (featurep 'xemacs)
21676 "org-colview"
21677 "org-colview-xemacs")
21678 "org" "org-loaddefs" "org-version"))
21679 "\\|"))
21680 (feats (delete-dups
21681 (mapcar 'file-name-sans-extension
21682 (mapcar 'file-name-nondirectory
21683 (delq nil
21684 (mapcar 'feature-file
21685 features))))))
21686 (lfeat (append
21687 (sort
21688 (setq feats
21689 (delq nil (mapcar
21690 (lambda (f)
21691 (if (and (string-match feature-re f)
21692 (not (string-match remove-re f)))
21693 f nil))
21694 feats)))
21695 'string-lessp)
21696 (list "org-version" "org")))
21697 (load-suffixes (when (boundp 'load-suffixes) load-suffixes))
21698 (load-suffixes (if uncompiled (reverse load-suffixes) load-suffixes))
21699 load-uncore load-misses)
21700 (setq load-misses
21701 (delq 't
21702 (mapcar (lambda (f)
21703 (or (org-load-noerror-mustsuffix (concat org-dir f))
21704 (and (string= org-dir contrib-dir)
21705 (org-load-noerror-mustsuffix (concat contrib-dir f)))
21706 (and (org-load-noerror-mustsuffix (concat (org-find-library-dir f) f))
21707 (add-to-list 'load-uncore f 'append)
21710 lfeat)))
21711 (if load-uncore
21712 (message "The following feature%s found in load-path, please check if that's correct:\n%s"
21713 (if (> (length load-uncore) 1) "s were" " was") load-uncore))
21714 (if load-misses
21715 (message "Some error occurred while reloading Org feature%s\n%s\nPlease check *Messages*!\n%s"
21716 (if (> (length load-misses) 1) "s" "") load-misses (org-version nil 'full))
21717 (message "Successfully reloaded Org\n%s" (org-version nil 'full)))))
21719 ;;;###autoload
21720 (defun org-customize ()
21721 "Call the customize function with org as argument."
21722 (interactive)
21723 (org-load-modules-maybe)
21724 (org-require-autoloaded-modules)
21725 (customize-browse 'org))
21727 (defun org-create-customize-menu ()
21728 "Create a full customization menu for Org-mode, insert it into the menu."
21729 (interactive)
21730 (org-load-modules-maybe)
21731 (org-require-autoloaded-modules)
21732 (if (fboundp 'customize-menu-create)
21733 (progn
21734 (easy-menu-change
21735 '("Org") "Customize"
21736 `(["Browse Org group" org-customize t]
21737 "--"
21738 ,(customize-menu-create 'org)
21739 ["Set" Custom-set t]
21740 ["Save" Custom-save t]
21741 ["Reset to Current" Custom-reset-current t]
21742 ["Reset to Saved" Custom-reset-saved t]
21743 ["Reset to Standard Settings" Custom-reset-standard t]))
21744 (message "\"Org\"-menu now contains full customization menu"))
21745 (error "Cannot expand menu (outdated version of cus-edit.el)")))
21747 ;;;; Miscellaneous stuff
21749 ;;; Generally useful functions
21751 (defsubst org-get-at-eol (property n)
21752 "Get text property PROPERTY at the end of line less N characters."
21753 (get-text-property (- (point-at-eol) n) property))
21755 (defun org-find-text-property-in-string (prop s)
21756 "Return the first non-nil value of property PROP in string S."
21757 (or (get-text-property 0 prop s)
21758 (get-text-property (or (next-single-property-change 0 prop s) 0)
21759 prop s)))
21761 (defun org-display-warning (message) ;; Copied from Emacs-Muse
21762 "Display the given MESSAGE as a warning."
21763 (if (fboundp 'display-warning)
21764 (display-warning 'org message
21765 (if (featurep 'xemacs) 'warning :warning))
21766 (let ((buf (get-buffer-create "*Org warnings*")))
21767 (with-current-buffer buf
21768 (goto-char (point-max))
21769 (insert "Warning (Org): " message)
21770 (unless (bolp)
21771 (newline)))
21772 (display-buffer buf)
21773 (sit-for 0))))
21775 (defun org-eval (form)
21776 "Eval FORM and return result."
21777 (condition-case error
21778 (eval form)
21779 (error (format "%%![Error: %s]" error))))
21781 (defun org-in-clocktable-p ()
21782 "Check if the cursor is in a clocktable."
21783 (let ((pos (point)) start)
21784 (save-excursion
21785 (end-of-line 1)
21786 (and (re-search-backward "^[ \t]*#\\+BEGIN:[ \t]+clocktable" nil t)
21787 (setq start (match-beginning 0))
21788 (re-search-forward "^[ \t]*#\\+END:.*" nil t)
21789 (>= (match-end 0) pos)
21790 start))))
21792 (defun org-in-verbatim-emphasis ()
21793 (save-match-data
21794 (and (org-in-regexp org-emph-re 2)
21795 (>= (point) (match-beginning 3))
21796 (<= (point) (match-end 4))
21797 (member (match-string 3) '("=" "~")))))
21799 (defun org-goto-marker-or-bmk (marker &optional bookmark)
21800 "Go to MARKER, widen if necessary. When marker is not live, try BOOKMARK."
21801 (if (and marker (marker-buffer marker)
21802 (buffer-live-p (marker-buffer marker)))
21803 (progn
21804 (org-pop-to-buffer-same-window (marker-buffer marker))
21805 (if (or (> marker (point-max)) (< marker (point-min)))
21806 (widen))
21807 (goto-char marker)
21808 (org-show-context 'org-goto))
21809 (if bookmark
21810 (bookmark-jump bookmark)
21811 (error "Cannot find location"))))
21813 (defun org-quote-csv-field (s)
21814 "Quote field for inclusion in CSV material."
21815 (if (string-match "[\",]" s)
21816 (concat "\"" (mapconcat 'identity (split-string s "\"") "\"\"") "\"")
21819 (defun org-force-self-insert (N)
21820 "Needed to enforce self-insert under remapping."
21821 (interactive "p")
21822 (self-insert-command N))
21824 (defun org-string-width (s)
21825 "Compute width of string, ignoring invisible characters.
21826 This ignores character with invisibility property `org-link', and also
21827 characters with property `org-cwidth', because these will become invisible
21828 upon the next fontification round."
21829 (let (b l)
21830 (when (or (eq t buffer-invisibility-spec)
21831 (assq 'org-link buffer-invisibility-spec))
21832 (while (setq b (text-property-any 0 (length s)
21833 'invisible 'org-link s))
21834 (setq s (concat (substring s 0 b)
21835 (substring s (or (next-single-property-change
21836 b 'invisible s) (length s)))))))
21837 (while (setq b (text-property-any 0 (length s) 'org-cwidth t s))
21838 (setq s (concat (substring s 0 b)
21839 (substring s (or (next-single-property-change
21840 b 'org-cwidth s) (length s))))))
21841 (setq l (string-width s) b -1)
21842 (while (setq b (text-property-any (1+ b) (length s) 'org-dwidth t s))
21843 (setq l (- l (get-text-property b 'org-dwidth-n s))))
21846 (defun org-shorten-string (s maxlength)
21847 "Shorten string S so tht it is no longer than MAXLENGTH characters.
21848 If the string is shorter or has length MAXLENGTH, just return the
21849 original string. If it is longer, the functions finds a space in the
21850 string, breaks this string off at that locations and adds three dots
21851 as ellipsis. Including the ellipsis, the string will not be longer
21852 than MAXLENGTH. If finding a good breaking point in the string does
21853 not work, the string is just chopped off in the middle of a word
21854 if necessary."
21855 (if (<= (length s) maxlength)
21857 (let* ((n (max (- maxlength 4) 1))
21858 (re (concat "\\`\\(.\\{1," (int-to-string n) "\\}[^ ]\\)\\([ ]\\|\\'\\)")))
21859 (if (string-match re s)
21860 (concat (match-string 1 s) "...")
21861 (concat (substring s 0 (max (- maxlength 3) 0)) "...")))))
21863 (defun org-get-indentation (&optional line)
21864 "Get the indentation of the current line, interpreting tabs.
21865 When LINE is given, assume it represents a line and compute its indentation."
21866 (if line
21867 (if (string-match "^ *" (org-remove-tabs line))
21868 (match-end 0))
21869 (save-excursion
21870 (beginning-of-line 1)
21871 (skip-chars-forward " \t")
21872 (current-column))))
21874 (defun org-get-string-indentation (s)
21875 "What indentation has S due to SPACE and TAB at the beginning of the string?"
21876 (let ((n -1) (i 0) (w tab-width) c)
21877 (catch 'exit
21878 (while (< (setq n (1+ n)) (length s))
21879 (setq c (aref s n))
21880 (cond ((= c ?\ ) (setq i (1+ i)))
21881 ((= c ?\t) (setq i (* (/ (+ w i) w) w)))
21882 (t (throw 'exit t)))))
21885 (defun org-remove-tabs (s &optional width)
21886 "Replace tabulators in S with spaces.
21887 Assumes that s is a single line, starting in column 0."
21888 (setq width (or width tab-width))
21889 (while (string-match "\t" s)
21890 (setq s (replace-match
21891 (make-string
21892 (- (* width (/ (+ (match-beginning 0) width) width))
21893 (match-beginning 0)) ?\ )
21894 t t s)))
21897 (defun org-fix-indentation (line ind)
21898 "Fix indentation in LINE.
21899 IND is a cons cell with target and minimum indentation.
21900 If the current indentation in LINE is smaller than the minimum,
21901 leave it alone. If it is larger than ind, set it to the target."
21902 (let* ((l (org-remove-tabs line))
21903 (i (org-get-indentation l))
21904 (i1 (car ind)) (i2 (cdr ind)))
21905 (if (>= i i2) (setq l (substring line i2)))
21906 (if (> i1 0)
21907 (concat (make-string i1 ?\ ) l)
21908 l)))
21910 (defun org-remove-indentation (code &optional n)
21911 "Remove the maximum common indentation from the lines in CODE.
21912 N may optionally be the number of spaces to remove."
21913 (with-temp-buffer
21914 (insert code)
21915 (org-do-remove-indentation n)
21916 (buffer-string)))
21918 (defun org-do-remove-indentation (&optional n)
21919 "Remove the maximum common indentation from the buffer."
21920 (untabify (point-min) (point-max))
21921 (let ((min 10000) re)
21922 (if n
21923 (setq min n)
21924 (goto-char (point-min))
21925 (while (re-search-forward "^ *[^ \n]" nil t)
21926 (setq min (min min (1- (- (match-end 0) (match-beginning 0)))))))
21927 (unless (or (= min 0) (= min 10000))
21928 (setq re (format "^ \\{%d\\}" min))
21929 (goto-char (point-min))
21930 (while (re-search-forward re nil t)
21931 (replace-match "")
21932 (end-of-line 1))
21933 min)))
21935 (defun org-fill-template (template alist)
21936 "Find each %key of ALIST in TEMPLATE and replace it."
21937 (let ((case-fold-search nil)
21938 entry key value)
21939 (setq alist (sort (copy-sequence alist)
21940 (lambda (a b) (< (length (car a)) (length (car b))))))
21941 (while (setq entry (pop alist))
21942 (setq template
21943 (replace-regexp-in-string
21944 (concat "%" (regexp-quote (car entry)))
21945 (or (cdr entry) "") template t t)))
21946 template))
21948 (defun org-base-buffer (buffer)
21949 "Return the base buffer of BUFFER, if it has one. Else return the buffer."
21950 (if (not buffer)
21951 buffer
21952 (or (buffer-base-buffer buffer)
21953 buffer)))
21955 (defun org-wrap (string &optional width lines)
21956 "Wrap string to either a number of lines, or a width in characters.
21957 If WIDTH is non-nil, the string is wrapped to that width, however many lines
21958 that costs. If there is a word longer than WIDTH, the text is actually
21959 wrapped to the length of that word.
21960 IF WIDTH is nil and LINES is non-nil, the string is forced into at most that
21961 many lines, whatever width that takes.
21962 The return value is a list of lines, without newlines at the end."
21963 (let* ((words (org-split-string string "[ \t\n]+"))
21964 (maxword (apply 'max (mapcar 'org-string-width words)))
21965 w ll)
21966 (cond (width
21967 (org-do-wrap words (max maxword width)))
21968 (lines
21969 (setq w maxword)
21970 (setq ll (org-do-wrap words maxword))
21971 (if (<= (length ll) lines)
21973 (setq ll words)
21974 (while (> (length ll) lines)
21975 (setq w (1+ w))
21976 (setq ll (org-do-wrap words w)))
21977 ll))
21978 (t (error "Cannot wrap this")))))
21980 (defun org-do-wrap (words width)
21981 "Create lines of maximum width WIDTH (in characters) from word list WORDS."
21982 (let (lines line)
21983 (while words
21984 (setq line (pop words))
21985 (while (and words (< (+ (length line) (length (car words))) width))
21986 (setq line (concat line " " (pop words))))
21987 (setq lines (push line lines)))
21988 (nreverse lines)))
21990 (defun org-split-string (string &optional separators)
21991 "Splits STRING into substrings at SEPARATORS.
21992 No empty strings are returned if there are matches at the beginning
21993 and end of string."
21994 (let ((rexp (or separators "[ \f\t\n\r\v]+"))
21995 (start 0)
21996 notfirst
21997 (list nil))
21998 (while (and (string-match rexp string
21999 (if (and notfirst
22000 (= start (match-beginning 0))
22001 (< start (length string)))
22002 (1+ start) start))
22003 (< (match-beginning 0) (length string)))
22004 (setq notfirst t)
22005 (or (eq (match-beginning 0) 0)
22006 (and (eq (match-beginning 0) (match-end 0))
22007 (eq (match-beginning 0) start))
22008 (setq list
22009 (cons (substring string start (match-beginning 0))
22010 list)))
22011 (setq start (match-end 0)))
22012 (or (eq start (length string))
22013 (setq list
22014 (cons (substring string start)
22015 list)))
22016 (nreverse list)))
22018 (defun org-quote-vert (s)
22019 "Replace \"|\" with \"\\vert\"."
22020 (while (string-match "|" s)
22021 (setq s (replace-match "\\vert" t t s)))
22024 (defun org-uuidgen-p (s)
22025 "Is S an ID created by UUIDGEN?"
22026 (string-match "\\`[0-9a-f]\\{8\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{12\\}\\'" (downcase s)))
22028 (defun org-in-src-block-p (&optional inside)
22029 "Whether point is in a code source block.
22030 When INSIDE is non-nil, don't consider we are within a src block
22031 when point is at #+BEGIN_SRC or #+END_SRC."
22032 (let ((case-fold-search t) ov)
22033 (or (and (eq (get-char-property (point) 'src-block) t))
22034 (and (not inside)
22035 (save-match-data
22036 (save-excursion
22037 (beginning-of-line)
22038 (looking-at ".*#\\+\\(begin\\|end\\)_src")))))))
22040 (defun org-context ()
22041 "Return a list of contexts of the current cursor position.
22042 If several contexts apply, all are returned.
22043 Each context entry is a list with a symbol naming the context, and
22044 two positions indicating start and end of the context. Possible
22045 contexts are:
22047 :headline anywhere in a headline
22048 :headline-stars on the leading stars in a headline
22049 :todo-keyword on a TODO keyword (including DONE) in a headline
22050 :tags on the TAGS in a headline
22051 :priority on the priority cookie in a headline
22052 :item on the first line of a plain list item
22053 :item-bullet on the bullet/number of a plain list item
22054 :checkbox on the checkbox in a plain list item
22055 :table in an org-mode table
22056 :table-special on a special filed in a table
22057 :table-table in a table.el table
22058 :clocktable in a clocktable
22059 :src-block in a source block
22060 :link on a hyperlink
22061 :keyword on a keyword: SCHEDULED, DEADLINE, CLOSE, COMMENT.
22062 :target on a <<target>>
22063 :radio-target on a <<<radio-target>>>
22064 :latex-fragment on a LaTeX fragment
22065 :latex-preview on a LaTeX fragment with overlaid preview image
22067 This function expects the position to be visible because it uses font-lock
22068 faces as a help to recognize the following contexts: :table-special, :link,
22069 and :keyword."
22070 (let* ((f (get-text-property (point) 'face))
22071 (faces (if (listp f) f (list f)))
22072 (case-fold-search t)
22073 (p (point)) clist o)
22074 ;; First the large context
22075 (cond
22076 ((org-at-heading-p t)
22077 (push (list :headline (point-at-bol) (point-at-eol)) clist)
22078 (when (progn
22079 (beginning-of-line 1)
22080 (looking-at org-todo-line-tags-regexp))
22081 (push (org-point-in-group p 1 :headline-stars) clist)
22082 (push (org-point-in-group p 2 :todo-keyword) clist)
22083 (push (org-point-in-group p 4 :tags) clist))
22084 (goto-char p)
22085 (skip-chars-backward "^[\n\r \t") (or (bobp) (backward-char 1))
22086 (if (looking-at "\\[#[A-Z0-9]\\]")
22087 (push (org-point-in-group p 0 :priority) clist)))
22089 ((org-at-item-p)
22090 (push (org-point-in-group p 2 :item-bullet) clist)
22091 (push (list :item (point-at-bol)
22092 (save-excursion (org-end-of-item) (point)))
22093 clist)
22094 (and (org-at-item-checkbox-p)
22095 (push (org-point-in-group p 0 :checkbox) clist)))
22097 ((org-at-table-p)
22098 (push (list :table (org-table-begin) (org-table-end)) clist)
22099 (if (memq 'org-formula faces)
22100 (push (list :table-special
22101 (previous-single-property-change p 'face)
22102 (next-single-property-change p 'face)) clist)))
22103 ((org-at-table-p 'any)
22104 (push (list :table-table) clist)))
22105 (goto-char p)
22107 (let ((case-fold-search t))
22108 ;; New the "medium" contexts: clocktables, source blocks
22109 (cond ((org-in-clocktable-p)
22110 (push (list :clocktable
22111 (and (or (looking-at "[ \t]*\\(#\\+BEGIN: clocktable\\)")
22112 (re-search-backward "[ \t]*\\(#+BEGIN: clocktable\\)" nil t))
22113 (match-beginning 1))
22114 (and (re-search-forward "[ \t]*#\\+END:?" nil t)
22115 (match-end 0))) clist))
22116 ((org-in-src-block-p)
22117 (push (list :src-block
22118 (and (or (looking-at "[ \t]*\\(#\\+BEGIN_SRC\\)")
22119 (re-search-backward "[ \t]*\\(#+BEGIN_SRC\\)" nil t))
22120 (match-beginning 1))
22121 (and (search-forward "#+END_SRC" nil t)
22122 (match-beginning 0))) clist))))
22123 (goto-char p)
22125 ;; Now the small context
22126 (cond
22127 ((org-at-timestamp-p)
22128 (push (org-point-in-group p 0 :timestamp) clist))
22129 ((memq 'org-link faces)
22130 (push (list :link
22131 (previous-single-property-change p 'face)
22132 (next-single-property-change p 'face)) clist))
22133 ((memq 'org-special-keyword faces)
22134 (push (list :keyword
22135 (previous-single-property-change p 'face)
22136 (next-single-property-change p 'face)) clist))
22137 ((org-at-target-p)
22138 (push (org-point-in-group p 0 :target) clist)
22139 (goto-char (1- (match-beginning 0)))
22140 (if (looking-at org-radio-target-regexp)
22141 (push (org-point-in-group p 0 :radio-target) clist))
22142 (goto-char p))
22143 ((setq o (car (delq nil
22144 (mapcar
22145 (lambda (x)
22146 (if (memq x org-latex-fragment-image-overlays) x))
22147 (overlays-at (point))))))
22148 (push (list :latex-fragment
22149 (overlay-start o) (overlay-end o)) clist)
22150 (push (list :latex-preview
22151 (overlay-start o) (overlay-end o)) clist))
22152 ((org-inside-LaTeX-fragment-p)
22153 ;; FIXME: positions wrong.
22154 (push (list :latex-fragment (point) (point)) clist)))
22156 (setq clist (nreverse (delq nil clist)))
22157 clist))
22159 ;; FIXME: Compare with at-regexp-p Do we need both?
22160 (defun org-in-regexp (re &optional nlines visually)
22161 "Check if point is inside a match of regexp.
22162 Normally only the current line is checked, but you can include NLINES extra
22163 lines both before and after point into the search.
22164 If VISUALLY is set, require that the cursor is not after the match but
22165 really on, so that the block visually is on the match."
22166 (catch 'exit
22167 (let ((pos (point))
22168 (eol (point-at-eol (+ 1 (or nlines 0))))
22169 (inc (if visually 1 0)))
22170 (save-excursion
22171 (beginning-of-line (- 1 (or nlines 0)))
22172 (while (re-search-forward re eol t)
22173 (if (and (<= (match-beginning 0) pos)
22174 (>= (+ inc (match-end 0)) pos))
22175 (throw 'exit (cons (match-beginning 0) (match-end 0)))))))))
22177 (defun org-at-regexp-p (regexp)
22178 "Is point inside a match of REGEXP in the current line?"
22179 (catch 'exit
22180 (save-excursion
22181 (let ((pos (point)) (end (point-at-eol)))
22182 (beginning-of-line 1)
22183 (while (re-search-forward regexp end t)
22184 (if (and (<= (match-beginning 0) pos)
22185 (>= (match-end 0) pos))
22186 (throw 'exit t)))
22187 nil))))
22189 (defun org-between-regexps-p (start-re end-re &optional lim-up lim-down)
22190 "Non-nil when point is between matches of START-RE and END-RE.
22192 Also return a non-nil value when point is on one of the matches.
22194 Optional arguments LIM-UP and LIM-DOWN bound the search; they are
22195 buffer positions. Default values are the positions of headlines
22196 surrounding the point.
22198 The functions returns a cons cell whose car (resp. cdr) is the
22199 position before START-RE (resp. after END-RE)."
22200 (save-match-data
22201 (let ((pos (point))
22202 (limit-up (or lim-up (save-excursion (outline-previous-heading))))
22203 (limit-down (or lim-down (save-excursion (outline-next-heading))))
22204 beg end)
22205 (save-excursion
22206 ;; Point is on a block when on START-RE or if START-RE can be
22207 ;; found before it...
22208 (and (or (org-at-regexp-p start-re)
22209 (re-search-backward start-re limit-up t))
22210 (setq beg (match-beginning 0))
22211 ;; ... and END-RE after it...
22212 (goto-char (match-end 0))
22213 (re-search-forward end-re limit-down t)
22214 (> (setq end (match-end 0)) pos)
22215 ;; ... without another START-RE in-between.
22216 (goto-char (match-beginning 0))
22217 (not (re-search-backward start-re (1+ beg) t))
22218 ;; Return value.
22219 (cons beg end))))))
22221 (defun org-in-block-p (names)
22222 "Non-nil when point belongs to a block whose name belongs to NAMES.
22224 NAMES is a list of strings containing names of blocks.
22226 Return first block name matched, or nil. Beware that in case of
22227 nested blocks, the returned name may not belong to the closest
22228 block from point."
22229 (save-match-data
22230 (catch 'exit
22231 (let ((case-fold-search t)
22232 (lim-up (save-excursion (outline-previous-heading)))
22233 (lim-down (save-excursion (outline-next-heading))))
22234 (mapc (lambda (name)
22235 (let ((n (regexp-quote name)))
22236 (when (org-between-regexps-p
22237 (concat "^[ \t]*#\\+begin_" n)
22238 (concat "^[ \t]*#\\+end_" n)
22239 lim-up lim-down)
22240 (throw 'exit n))))
22241 names))
22242 nil)))
22244 (defun org-in-drawer-p ()
22245 "Non-nil if point is within a drawer.
22246 If point is within a drawer, return it, as parsed data."
22247 (let ((element (save-match-data (org-element-at-point))))
22248 (while (and element (not (memq (org-element-type element)
22249 '(drawer property-drawer))))
22250 (setq element (org-element-property :parent element)))
22251 element))
22253 (defun org-occur-in-agenda-files (regexp &optional nlines)
22254 "Call `multi-occur' with buffers for all agenda files."
22255 (interactive "sOrg-files matching: \np")
22256 (let* ((files (org-agenda-files))
22257 (tnames (mapcar 'file-truename files))
22258 (extra org-agenda-text-search-extra-files)
22260 (when (eq (car extra) 'agenda-archives)
22261 (setq extra (cdr extra))
22262 (setq files (org-add-archive-files files)))
22263 (while (setq f (pop extra))
22264 (unless (member (file-truename f) tnames)
22265 (add-to-list 'files f 'append)
22266 (add-to-list 'tnames (file-truename f) 'append)))
22267 (multi-occur
22268 (mapcar (lambda (x)
22269 (with-current-buffer
22270 (or (get-file-buffer x) (find-file-noselect x))
22271 (widen)
22272 (current-buffer)))
22273 files)
22274 regexp)))
22276 (if (boundp 'occur-mode-find-occurrence-hook)
22277 ;; Emacs 23
22278 (add-hook 'occur-mode-find-occurrence-hook
22279 (lambda ()
22280 (when (derived-mode-p 'org-mode)
22281 (org-reveal))))
22282 ;; Emacs 22
22283 (defadvice occur-mode-goto-occurrence
22284 (after org-occur-reveal activate)
22285 (and (derived-mode-p 'org-mode) (org-reveal)))
22286 (defadvice occur-mode-goto-occurrence-other-window
22287 (after org-occur-reveal activate)
22288 (and (derived-mode-p 'org-mode) (org-reveal)))
22289 (defadvice occur-mode-display-occurrence
22290 (after org-occur-reveal activate)
22291 (when (derived-mode-p 'org-mode)
22292 (let ((pos (occur-mode-find-occurrence)))
22293 (with-current-buffer (marker-buffer pos)
22294 (save-excursion
22295 (goto-char pos)
22296 (org-reveal)))))))
22298 (defun org-occur-link-in-agenda-files ()
22299 "Create a link and search for it in the agendas.
22300 The link is not stored in `org-stored-links', it is just created
22301 for the search purpose."
22302 (interactive)
22303 (let ((link (condition-case nil
22304 (org-store-link nil)
22305 (error "Unable to create a link to here"))))
22306 (org-occur-in-agenda-files (regexp-quote link))))
22308 (defun org-reverse-string (string)
22309 "Return the reverse of STRING."
22310 (apply 'string (reverse (string-to-list string))))
22312 ;; defsubst org-uniquify must be defined before first use
22314 (defun org-uniquify-alist (alist)
22315 "Merge elements of ALIST with the same key.
22317 For example, in this alist:
22319 \(org-uniquify-alist '((a 1) (b 2) (a 3)))
22320 => '((a 1 3) (b 2))
22322 merge (a 1) and (a 3) into (a 1 3).
22324 The function returns the new ALIST."
22325 (let (rtn)
22326 (mapc
22327 (lambda (e)
22328 (let (n)
22329 (if (not (assoc (car e) rtn))
22330 (push e rtn)
22331 (setq n (cons (car e) (append (cdr (assoc (car e) rtn)) (cdr e))))
22332 (setq rtn (assq-delete-all (car e) rtn))
22333 (push n rtn))))
22334 alist)
22335 rtn))
22337 (defun org-delete-all (elts list)
22338 "Remove all elements in ELTS from LIST."
22339 (while elts
22340 (setq list (delete (pop elts) list)))
22341 list)
22343 (defun org-count (cl-item cl-seq)
22344 "Count the number of occurrences of ITEM in SEQ.
22345 Taken from `count' in cl-seq.el with all keyword arguments removed."
22346 (let ((cl-end (length cl-seq)) (cl-start 0) (cl-count 0) cl-x)
22347 (when (consp cl-seq) (setq cl-seq (nthcdr cl-start cl-seq)))
22348 (while (< cl-start cl-end)
22349 (setq cl-x (if (consp cl-seq) (pop cl-seq) (aref cl-seq cl-start)))
22350 (if (equal cl-item cl-x) (setq cl-count (1+ cl-count)))
22351 (setq cl-start (1+ cl-start)))
22352 cl-count))
22354 (defun org-remove-if (predicate seq)
22355 "Remove everything from SEQ that fulfills PREDICATE."
22356 (let (res e)
22357 (while seq
22358 (setq e (pop seq))
22359 (if (not (funcall predicate e)) (push e res)))
22360 (nreverse res)))
22362 (defun org-remove-if-not (predicate seq)
22363 "Remove everything from SEQ that does not fulfill PREDICATE."
22364 (let (res e)
22365 (while seq
22366 (setq e (pop seq))
22367 (if (funcall predicate e) (push e res)))
22368 (nreverse res)))
22370 (defun org-reduce (cl-func cl-seq &rest cl-keys)
22371 "Reduce two-argument FUNCTION across SEQ.
22372 Taken from `reduce' in cl-seq.el with all keyword arguments but
22373 \":initial-value\" removed."
22374 (let ((cl-accum (cond ((memq :initial-value cl-keys)
22375 (cadr (memq :initial-value cl-keys)))
22376 (cl-seq (pop cl-seq))
22377 (t (funcall cl-func)))))
22378 (while cl-seq
22379 (setq cl-accum (funcall cl-func cl-accum (pop cl-seq))))
22380 cl-accum))
22382 (defun org-every (pred seq)
22383 "Return true if PREDICATE is true of every element of SEQ.
22384 Adapted from `every' in cl.el."
22385 (catch 'org-every
22386 (mapc (lambda (e) (unless (funcall pred e) (throw 'org-every nil))) seq)
22389 (defun org-some (pred seq)
22390 "Return true if PREDICATE is true of any element of SEQ.
22391 Adapted from `some' in cl.el."
22392 (catch 'org-some
22393 (mapc (lambda (e) (when (funcall pred e) (throw 'org-some t))) seq)
22394 nil))
22396 (defun org-back-over-empty-lines ()
22397 "Move backwards over whitespace, to the beginning of the first empty line.
22398 Returns the number of empty lines passed."
22399 (let ((pos (point)))
22400 (if (cdr (assoc 'heading org-blank-before-new-entry))
22401 (skip-chars-backward " \t\n\r")
22402 (unless (eobp)
22403 (forward-line -1)))
22404 (beginning-of-line 2)
22405 (goto-char (min (point) pos))
22406 (count-lines (point) pos)))
22408 (defun org-skip-whitespace ()
22409 (skip-chars-forward " \t\n\r"))
22411 (defun org-point-in-group (point group &optional context)
22412 "Check if POINT is in match-group GROUP.
22413 If CONTEXT is non-nil, return a list with CONTEXT and the boundaries of the
22414 match. If the match group does not exist or point is not inside it,
22415 return nil."
22416 (and (match-beginning group)
22417 (>= point (match-beginning group))
22418 (<= point (match-end group))
22419 (if context
22420 (list context (match-beginning group) (match-end group))
22421 t)))
22423 (defun org-switch-to-buffer-other-window (&rest args)
22424 "Switch to buffer in a second window on the current frame.
22425 In particular, do not allow pop-up frames.
22426 Returns the newly created buffer."
22427 (org-no-popups
22428 (apply 'switch-to-buffer-other-window args)))
22430 (defun org-combine-plists (&rest plists)
22431 "Create a single property list from all plists in PLISTS.
22432 The process starts by copying the first list, and then setting properties
22433 from the other lists. Settings in the last list are the most significant
22434 ones and overrule settings in the other lists."
22435 (let ((rtn (copy-sequence (pop plists)))
22436 p v ls)
22437 (while plists
22438 (setq ls (pop plists))
22439 (while ls
22440 (setq p (pop ls) v (pop ls))
22441 (setq rtn (plist-put rtn p v))))
22442 rtn))
22444 (defun org-replace-escapes (string table)
22445 "Replace %-escapes in STRING with values in TABLE.
22446 TABLE is an association list with keys like \"%a\" and string values.
22447 The sequences in STRING may contain normal field width and padding information,
22448 for example \"%-5s\". Replacements happen in the sequence given by TABLE,
22449 so values can contain further %-escapes if they are define later in TABLE."
22450 (let ((tbl (copy-alist table))
22451 (case-fold-search nil)
22452 (pchg 0)
22453 e re rpl)
22454 (while (setq e (pop tbl))
22455 (setq re (concat "%-?[0-9.]*" (substring (car e) 1)))
22456 (when (and (cdr e) (string-match re (cdr e)))
22457 (let ((sref (substring (cdr e) (match-beginning 0) (match-end 0)))
22458 (safe "SREF"))
22459 (add-text-properties 0 3 (list 'sref sref) safe)
22460 (setcdr e (replace-match safe t t (cdr e)))))
22461 (while (string-match re string)
22462 (setq rpl (format (concat (substring (match-string 0 string) 0 -1) "s")
22463 (cdr e)))
22464 (setq string (replace-match rpl t t string))))
22465 (while (setq pchg (next-property-change pchg string))
22466 (let ((sref (get-text-property pchg 'sref string)))
22467 (when (and sref (string-match "SREF" string pchg))
22468 (setq string (replace-match sref t t string)))))
22469 string))
22471 (defun org-sublist (list start end)
22472 "Return a section of LIST, from START to END.
22473 Counting starts at 1."
22474 (let (rtn (c start))
22475 (setq list (nthcdr (1- start) list))
22476 (while (and list (<= c end))
22477 (push (pop list) rtn)
22478 (setq c (1+ c)))
22479 (nreverse rtn)))
22481 (defun org-find-base-buffer-visiting (file)
22482 "Like `find-buffer-visiting' but always return the base buffer and
22483 not an indirect buffer."
22484 (let ((buf (or (get-file-buffer file)
22485 (find-buffer-visiting file))))
22486 (if buf
22487 (or (buffer-base-buffer buf) buf)
22488 nil)))
22490 (defun org-image-file-name-regexp (&optional extensions)
22491 "Return regexp matching the file names of images.
22492 If EXTENSIONS is given, only match these."
22493 (if (and (not extensions) (fboundp 'image-file-name-regexp))
22494 (image-file-name-regexp)
22495 (let ((image-file-name-extensions
22496 (or extensions
22497 '("png" "jpeg" "jpg" "gif" "tiff" "tif"
22498 "xbm" "xpm" "pbm" "pgm" "ppm"))))
22499 (concat "\\."
22500 (regexp-opt (nconc (mapcar 'upcase
22501 image-file-name-extensions)
22502 image-file-name-extensions)
22504 "\\'"))))
22506 (defun org-file-image-p (file &optional extensions)
22507 "Return non-nil if FILE is an image."
22508 (save-match-data
22509 (string-match (org-image-file-name-regexp extensions) file)))
22511 (defun org-get-cursor-date (&optional with-time)
22512 "Return the date at cursor in as a time.
22513 This works in the calendar and in the agenda, anywhere else it just
22514 returns the current time.
22515 If WITH-TIME is non-nil, returns the time of the event at point (in
22516 the agenda) or the current time of the day."
22517 (let (date day defd tp tm hod mod)
22518 (when with-time
22519 (setq tp (get-text-property (point) 'time))
22520 (when (and tp (string-match "\\([0-9][0-9]\\):\\([0-9][0-9]\\)" tp))
22521 (setq hod (string-to-number (match-string 1 tp))
22522 mod (string-to-number (match-string 2 tp))))
22523 (or tp (setq hod (nth 2 (decode-time (current-time)))
22524 mod (nth 1 (decode-time (current-time))))))
22525 (cond
22526 ((eq major-mode 'calendar-mode)
22527 (setq date (calendar-cursor-to-date)
22528 defd (encode-time 0 (or mod 0) (or hod 0)
22529 (nth 1 date) (nth 0 date) (nth 2 date))))
22530 ((eq major-mode 'org-agenda-mode)
22531 (setq day (get-text-property (point) 'day))
22532 (if day
22533 (setq date (calendar-gregorian-from-absolute day)
22534 defd (encode-time 0 (or mod 0) (or hod 0)
22535 (nth 1 date) (nth 0 date) (nth 2 date))))))
22536 (or defd (current-time))))
22538 (defun org-mark-subtree (&optional up)
22539 "Mark the current subtree.
22540 This puts point at the start of the current subtree, and mark at
22541 the end. If a numeric prefix UP is given, move up into the
22542 hierarchy of headlines by UP levels before marking the subtree."
22543 (interactive "P")
22544 (org-with-limited-levels
22545 (cond ((org-at-heading-p) (beginning-of-line))
22546 ((org-before-first-heading-p) (user-error "Not in a subtree"))
22547 (t (outline-previous-visible-heading 1))))
22548 (when up (while (and (> up 0) (org-up-heading-safe)) (decf up)))
22549 (if (org-called-interactively-p 'any)
22550 (call-interactively 'org-mark-element)
22551 (org-mark-element)))
22554 ;;; Indentation
22556 (defun org--get-expected-indentation (element contentsp)
22557 "Expected indentation column for current line, according to ELEMENT.
22558 ELEMENT is an element containing point. CONTENTSP is non-nil
22559 when indentation is to be computed according to contents of
22560 ELEMENT."
22561 (let ((type (org-element-type element))
22562 (start (org-element-property :begin element)))
22563 (org-with-wide-buffer
22564 (cond
22565 (contentsp
22566 (case type
22567 (footnote-definition 0)
22568 ((headline inlinetask nil)
22569 (if (not org-adapt-indentation) 0
22570 (let ((level (org-current-level)))
22571 (if level (1+ level) 0))))
22572 (item
22573 (org-list-item-body-column
22574 (org-element-property :post-affiliated element)))
22575 (plain-list
22576 (save-excursion
22577 (goto-char (org-element-property :post-affiliated element))
22578 (org-get-indentation)))
22579 (otherwise
22580 (goto-char start)
22581 (org-get-indentation))))
22582 ((memq type '(headline inlinetask nil))
22583 (if (save-excursion (beginning-of-line) (looking-at "[ \t]*$"))
22584 (org--get-expected-indentation element t)
22586 ((eq type 'footnote-definition) 0)
22587 ;; First paragraph of a footnote definition or an item.
22588 ;; Indent like parent.
22589 ((< (line-beginning-position) start)
22590 (org--get-expected-indentation
22591 (org-element-property :parent element) t))
22592 ;; At first line: indent according to previous sibling, if any,
22593 ;; ignoring footnote definitions and inline tasks, or parent's
22594 ;; contents.
22595 ((= (line-beginning-position) start)
22596 (catch 'exit
22597 (while t
22598 (if (= (point-min) start) (throw 'exit 0)
22599 (goto-char (1- start))
22600 (let* ((previous (org-element-at-point))
22601 (parent previous))
22602 (while (and parent (<= (org-element-property :end parent) start))
22603 (setq previous parent
22604 parent (org-element-property :parent parent)))
22605 (cond
22606 ((not previous) (throw 'exit 0))
22607 ((> (org-element-property :end previous) start)
22608 (throw 'exit (org--get-expected-indentation previous t)))
22609 ((memq (org-element-type previous)
22610 '(footnote-definition inlinetask))
22611 (setq start (org-element-property :begin previous)))
22612 (t (goto-char (org-element-property :begin previous))
22613 (throw 'exit
22614 (if (bolp) (org-get-indentation)
22615 ;; At first paragraph in an item or
22616 ;; a footnote definition.
22617 (org--get-expected-indentation
22618 (org-element-property :parent previous) t))))))))))
22619 ;; Otherwise, move to the first non-blank line above.
22621 (beginning-of-line)
22622 (let ((pos (point)))
22623 (skip-chars-backward " \r\t\n")
22624 (cond
22625 ;; Two blank lines end a footnote definition or a plain
22626 ;; list. When we indent an empty line after them, the
22627 ;; containing list or footnote definition is over, so it
22628 ;; qualifies as a previous sibling. Therefore, we indent
22629 ;; like its first line.
22630 ((and (memq type '(footnote-definition plain-list))
22631 (> (count-lines (point) pos) 2))
22632 (goto-char start)
22633 (org-get-indentation))
22634 ;; Line above is the first one of a paragraph at the
22635 ;; beginning of an item or a footnote definition. Indent
22636 ;; like parent.
22637 ((< (line-beginning-position) start)
22638 (org--get-expected-indentation
22639 (org-element-property :parent element) t))
22640 ;; POS is after contents in a greater element. Indent like
22641 ;; the beginning of the element.
22643 ;; As a special case, if point is at the end of a footnote
22644 ;; definition or an item, indent like the very last element
22645 ;; within.
22646 ((let ((cend (org-element-property :contents-end element)))
22647 (and cend (<= cend pos)))
22648 (if (memq type '(footnote-definition item plain-list))
22649 (org--get-expected-indentation (org-element-at-point) nil)
22650 (goto-char start)
22651 (org-get-indentation)))
22652 ;; In any other case, indent like the current line.
22653 (t (org-get-indentation)))))))))
22655 (defun org--align-node-property ()
22656 "Align node property at point.
22657 Alignment is done according to `org-property-format', which see."
22658 (when (save-excursion
22659 (beginning-of-line)
22660 (looking-at org-property-re))
22661 (replace-match
22662 (concat (match-string 4)
22663 (org-trim
22664 (format org-property-format (match-string 1) (match-string 3))))
22665 t t)))
22667 (defun org-indent-line ()
22668 "Indent line depending on context.
22670 Indentation is done according to the following rules:
22672 - Footnote definitions, headlines and inline tasks have to
22673 start at column 0.
22675 - On the very first line of an element, consider, in order, the
22676 next rules until one matches:
22678 1. If there's a sibling element before, ignoring footnote
22679 definitions and inline tasks, indent like its first line.
22681 2. If element has a parent, indent like its contents. More
22682 precisely, if parent is an item, indent after the
22683 description part, if any, or the bullet (see
22684 ``org-list-description-max-indent'). Else, indent like
22685 parent's first line.
22687 3. Otherwise, indent relatively to current level, if
22688 `org-adapt-indentation' is non-nil, or to left margin.
22690 - On a blank line at the end of a plain list, an item, or
22691 a footnote definition, indent like the very last element
22692 within.
22694 - In the code part of a source block, use language major mode
22695 to indent current line if `org-src-tab-acts-natively' is
22696 non-nil. If it is nil, do nothing.
22698 - Otherwise, indent like the first non-blank line above.
22700 The function doesn't indent an item as it could break the whole
22701 list structure. Instead, use \\<org-mode-map>\\[org-shiftmetaleft] or \
22702 \\[org-shiftmetaright].
22704 Also align node properties according to `org-property-format'."
22705 (interactive)
22706 (cond
22707 (orgstruct-is-++
22708 (let ((indent-line-function
22709 (cadadr (assq 'indent-line-function org-fb-vars))))
22710 (indent-according-to-mode)))
22711 ((org-at-heading-p) 'noindent)
22713 (let* ((element (save-excursion (beginning-of-line) (org-element-at-point)))
22714 (type (org-element-type element)))
22715 (cond ((and (memq type '(plain-list item))
22716 (= (line-beginning-position)
22717 (org-element-property :post-affiliated element)))
22718 'noindent)
22719 ((and (eq type 'src-block)
22720 org-src-tab-acts-natively
22721 (> (line-beginning-position)
22722 (org-element-property :post-affiliated element))
22723 (< (line-beginning-position)
22724 (org-with-wide-buffer
22725 (goto-char (org-element-property :end element))
22726 (skip-chars-backward " \r\t\n")
22727 (line-beginning-position))))
22728 (let ((org-src-strip-leading-and-trailing-blank-lines nil))
22729 (org-babel-do-key-sequence-in-edit-buffer (kbd "TAB"))))
22731 (let ((column (org--get-expected-indentation element nil)))
22732 ;; Preserve current column.
22733 (if (<= (current-column) (current-indentation))
22734 (org-indent-line-to column)
22735 (save-excursion (org-indent-line-to column))))
22736 ;; Align node property. Also preserve current column.
22737 (when (eq type 'node-property)
22738 (let ((column (current-column)))
22739 (org--align-node-property)
22740 (org-move-to-column column)))))))))
22742 (defun org-indent-region (start end)
22743 "Indent each non-blank line in the region.
22744 Called from a program, START and END specify the region to
22745 indent. The function will not indent contents of example blocks,
22746 verse blocks and export blocks as leading white spaces are
22747 assumed to be significant there."
22748 (interactive "r")
22749 (save-excursion
22750 (goto-char start)
22751 (skip-chars-forward " \r\t\n")
22752 (unless (eobp) (beginning-of-line))
22753 (let ((indent-to
22754 (lambda (ind pos)
22755 ;; Set IND as indentation for all lines between point and
22756 ;; POS or END, whichever comes first. Blank lines are
22757 ;; ignored. Leave point after POS once done.
22758 (let ((limit (copy-marker (min end pos))))
22759 (while (< (point) limit)
22760 (unless (org-looking-at-p "[ \t]*$") (org-indent-line-to ind))
22761 (forward-line))
22762 (set-marker limit nil))))
22763 (end (copy-marker end)))
22764 (while (< (point) end)
22765 (if (or (org-looking-at-p " \r\t\n") (org-at-heading-p)) (forward-line)
22766 (let* ((element (org-element-at-point))
22767 (type (org-element-type element))
22768 (element-end (copy-marker (org-element-property :end element)))
22769 (ind (org--get-expected-indentation element nil)))
22770 (cond
22771 ((or (memq type '(paragraph table table-row))
22772 (not (or (org-element-property :contents-begin element)
22773 (memq type
22774 '(example-block export-block src-block)))))
22775 ;; Elements here are indented as a single block. Also
22776 ;; align node properties.
22777 (when (eq type 'node-property)
22778 (org--align-node-property)
22779 (beginning-of-line))
22780 (funcall indent-to ind element-end))
22782 ;; Elements in this category consist of three parts:
22783 ;; before the contents, the contents, and after the
22784 ;; contents. The contents are treated specially,
22785 ;; according to the element type, or not indented at
22786 ;; all. Other parts are indented as a single block.
22787 (let* ((post (copy-marker
22788 (org-element-property :post-affiliated element)))
22789 (cbeg
22790 (copy-marker
22791 (cond
22792 ((not (org-element-property :contents-begin element))
22793 ;; Fake contents for source blocks.
22794 (org-with-wide-buffer
22795 (goto-char post)
22796 (forward-line)
22797 (point)))
22798 ((memq type '(footnote-definition item plain-list))
22799 ;; Contents in these elements could start on
22800 ;; the same line as the beginning of the
22801 ;; element. Make sure we start indenting
22802 ;; from the second line.
22803 (org-with-wide-buffer
22804 (goto-char post)
22805 (end-of-line)
22806 (skip-chars-forward " \r\t\n")
22807 (if (eobp) (point) (line-beginning-position))))
22808 (t (org-element-property :contents-begin element)))))
22809 (cend (copy-marker
22810 (or (org-element-property :contents-end element)
22811 ;; Fake contents for source blocks.
22812 (org-with-wide-buffer
22813 (goto-char element-end)
22814 (skip-chars-backward " \r\t\n")
22815 (line-beginning-position))))))
22816 ;; Do not change items indentation individually as it
22817 ;; might break the list as a whole. On the other
22818 ;; hand, when at a plain list, indent it as a whole.
22819 (cond ((eq type 'plain-list)
22820 (let ((offset (- ind (org-get-indentation))))
22821 (unless (zerop offset)
22822 (indent-rigidly (org-element-property :begin element)
22823 (org-element-property :end element)
22824 offset))
22825 (goto-char cbeg)))
22826 ((eq type 'item) (goto-char cbeg))
22827 (t (funcall indent-to ind cbeg)))
22828 (when (< (point) end)
22829 (case type
22830 ((example-block export-block verse-block))
22831 (src-block
22832 ;; In a source block, indent source code
22833 ;; according to language major mode, but only if
22834 ;; `org-src-tab-acts-natively' is non-nil.
22835 (when (and (< (point) end) org-src-tab-acts-natively)
22836 (ignore-errors
22837 (let (org-src-strip-leading-and-trailing-blank-lines
22838 ;; Region boundaries in edit buffer.
22839 (start (1+ (- (point) cbeg)))
22840 (end (- (min cend end) cbeg)))
22841 (org-babel-do-in-edit-buffer
22842 (indent-region start end))))))
22843 (t (org-indent-region (point) (min cend end))))
22844 (goto-char (min cend end))
22845 (when (< (point) end) (funcall indent-to ind element-end)))
22846 (set-marker post nil)
22847 (set-marker cbeg nil)
22848 (set-marker cend nil))))
22849 (set-marker element-end nil))))
22850 (set-marker end nil))))
22852 (defun org-indent-drawer ()
22853 "Indent the drawer at point."
22854 (interactive)
22855 (unless (save-excursion
22856 (beginning-of-line)
22857 (org-looking-at-p org-drawer-regexp))
22858 (user-error "Not at a drawer"))
22859 (let ((element (org-element-at-point)))
22860 (unless (memq (org-element-type element) '(drawer property-drawer))
22861 (user-error "Not at a drawer"))
22862 (org-with-wide-buffer
22863 (org-indent-region (org-element-property :begin element)
22864 (org-element-property :end element))))
22865 (message "Drawer at point indented"))
22867 (defun org-indent-block ()
22868 "Indent the block at point."
22869 (interactive)
22870 (unless (save-excursion
22871 (beginning-of-line)
22872 (let ((case-fold-search t))
22873 (org-looking-at-p "[ \t]*#\\+\\(begin\\|end\\)_")))
22874 (user-error "Not at a block"))
22875 (let ((element (org-element-at-point)))
22876 (unless (memq (org-element-type element)
22877 '(comment-block center-block dynamic-block example-block
22878 export-block quote-block special-block
22879 src-block verse-block))
22880 (user-error "Not at a block"))
22881 (org-with-wide-buffer
22882 (org-indent-region (org-element-property :begin element)
22883 (org-element-property :end element))))
22884 (message "Block at point indented"))
22887 ;;; Filling
22889 ;; We use our own fill-paragraph and auto-fill functions.
22891 ;; `org-fill-paragraph' relies on adaptive filling and context
22892 ;; checking. Appropriate `fill-prefix' is computed with
22893 ;; `org-adaptive-fill-function'.
22895 ;; `org-auto-fill-function' takes care of auto-filling. It calls
22896 ;; `do-auto-fill' only on valid areas with `fill-prefix' shadowed with
22897 ;; `org-adaptive-fill-function' value. Internally,
22898 ;; `org-comment-line-break-function' breaks the line.
22900 ;; `org-setup-filling' installs filling and auto-filling related
22901 ;; variables during `org-mode' initialization.
22903 (defvar org-element-paragraph-separate) ; org-element.el
22904 (defun org-setup-filling ()
22905 (require 'org-element)
22906 ;; Prevent auto-fill from inserting unwanted new items.
22907 (when (boundp 'fill-nobreak-predicate)
22908 (org-set-local
22909 'fill-nobreak-predicate
22910 (org-uniquify
22911 (append fill-nobreak-predicate
22912 '(org-fill-line-break-nobreak-p
22913 org-fill-paragraph-with-timestamp-nobreak-p)))))
22914 (let ((paragraph-ending (substring org-element-paragraph-separate 1)))
22915 (org-set-local 'paragraph-start paragraph-ending)
22916 (org-set-local 'paragraph-separate paragraph-ending))
22917 (org-set-local 'fill-paragraph-function 'org-fill-paragraph)
22918 (org-set-local 'auto-fill-inhibit-regexp nil)
22919 (org-set-local 'adaptive-fill-function 'org-adaptive-fill-function)
22920 (org-set-local 'normal-auto-fill-function 'org-auto-fill-function)
22921 (org-set-local 'comment-line-break-function 'org-comment-line-break-function))
22923 (defun org-fill-line-break-nobreak-p ()
22924 "Non-nil when a new line at point would create an Org line break."
22925 (save-excursion
22926 (skip-chars-backward "[ \t]")
22927 (skip-chars-backward "\\\\")
22928 (looking-at "\\\\\\\\\\($\\|[^\\\\]\\)")))
22930 (defun org-fill-paragraph-with-timestamp-nobreak-p ()
22931 "Non-nil when a new line at point would split a timestamp."
22932 (and (org-at-timestamp-p t)
22933 (not (looking-at org-ts-regexp-both))))
22935 (declare-function message-in-body-p "message" ())
22936 (defvar orgtbl-line-start-regexp) ; From org-table.el
22937 (defun org-adaptive-fill-function ()
22938 "Compute a fill prefix for the current line.
22939 Return fill prefix, as a string, or nil if current line isn't
22940 meant to be filled. For convenience, if `adaptive-fill-regexp'
22941 matches in paragraphs or comments, use it."
22942 (catch 'exit
22943 (when (derived-mode-p 'message-mode)
22944 (save-excursion
22945 (beginning-of-line)
22946 (cond ((or (not (message-in-body-p))
22947 (looking-at orgtbl-line-start-regexp))
22948 (throw 'exit nil))
22949 ((looking-at message-cite-prefix-regexp)
22950 (throw 'exit (match-string-no-properties 0)))
22951 ((looking-at org-outline-regexp)
22952 (throw 'exit (make-string (length (match-string 0)) ?\s))))))
22953 (org-with-wide-buffer
22954 (unless (org-at-heading-p)
22955 (let* ((p (line-beginning-position))
22956 (element (save-excursion
22957 (beginning-of-line)
22958 (org-element-at-point)))
22959 (type (org-element-type element))
22960 (post-affiliated (org-element-property :post-affiliated element)))
22961 (unless (< p post-affiliated)
22962 (case type
22963 (comment
22964 (save-excursion
22965 (beginning-of-line)
22966 (looking-at "[ \t]*")
22967 (concat (match-string 0) "# ")))
22968 (footnote-definition "")
22969 ((item plain-list)
22970 (make-string (org-list-item-body-column post-affiliated) ?\s))
22971 (paragraph
22972 ;; Fill prefix is usually the same as the current line,
22973 ;; unless the paragraph is at the beginning of an item.
22974 (let ((parent (org-element-property :parent element)))
22975 (save-excursion
22976 (beginning-of-line)
22977 (cond ((eq (org-element-type parent) 'item)
22978 (make-string (org-list-item-body-column
22979 (org-element-property :begin parent))
22980 ?\s))
22981 ((and adaptive-fill-regexp
22982 ;; Locally disable
22983 ;; `adaptive-fill-function' to let
22984 ;; `fill-context-prefix' handle
22985 ;; `adaptive-fill-regexp' variable.
22986 (let (adaptive-fill-function)
22987 (fill-context-prefix
22988 post-affiliated
22989 (org-element-property :end element)))))
22990 ((looking-at "[ \t]+") (match-string 0))
22991 (t "")))))
22992 (comment-block
22993 ;; Only fill contents if P is within block boundaries.
22994 (let* ((cbeg (save-excursion (goto-char post-affiliated)
22995 (forward-line)
22996 (point)))
22997 (cend (save-excursion
22998 (goto-char (org-element-property :end element))
22999 (skip-chars-backward " \r\t\n")
23000 (line-beginning-position))))
23001 (when (and (>= p cbeg) (< p cend))
23002 (if (save-excursion (beginning-of-line) (looking-at "[ \t]+"))
23003 (match-string 0)
23004 "")))))))))))
23006 (declare-function message-goto-body "message" ())
23007 (defvar message-cite-prefix-regexp) ; From message.el
23008 (defun org-fill-paragraph (&optional justify)
23009 "Fill element at point, when applicable.
23011 This function only applies to comment blocks, comments, example
23012 blocks and paragraphs. Also, as a special case, re-align table
23013 when point is at one.
23015 If JUSTIFY is non-nil (interactively, with prefix argument),
23016 justify as well. If `sentence-end-double-space' is non-nil, then
23017 period followed by one space does not end a sentence, so don't
23018 break a line there. The variable `fill-column' controls the
23019 width for filling.
23021 For convenience, when point is at a plain list, an item or
23022 a footnote definition, try to fill the first paragraph within."
23023 (interactive)
23024 (if (and (derived-mode-p 'message-mode)
23025 (or (not (message-in-body-p))
23026 (save-excursion (move-beginning-of-line 1)
23027 (looking-at message-cite-prefix-regexp))))
23028 ;; First ensure filling is correct in message-mode.
23029 (let ((fill-paragraph-function
23030 (cadadr (assoc 'fill-paragraph-function org-fb-vars)))
23031 (fill-prefix (cadadr (assoc 'fill-prefix org-fb-vars)))
23032 (paragraph-start (cadadr (assoc 'paragraph-start org-fb-vars)))
23033 (paragraph-separate
23034 (cadadr (assoc 'paragraph-separate org-fb-vars))))
23035 (fill-paragraph nil))
23036 (with-syntax-table org-mode-transpose-word-syntax-table
23037 ;; Move to end of line in order to get the first paragraph
23038 ;; within a plain list or a footnote definition.
23039 (let ((element (save-excursion
23040 (end-of-line)
23041 (or (ignore-errors (org-element-at-point))
23042 (user-error "An element cannot be parsed line %d"
23043 (line-number-at-pos (point)))))))
23044 ;; First check if point is in a blank line at the beginning of
23045 ;; the buffer. In that case, ignore filling.
23046 (case (org-element-type element)
23047 ;; Use major mode filling function is src blocks.
23048 (src-block (org-babel-do-key-sequence-in-edit-buffer (kbd "M-q")))
23049 ;; Align Org tables, leave table.el tables as-is.
23050 (table-row (org-table-align) t)
23051 (table
23052 (when (eq (org-element-property :type element) 'org)
23053 (save-excursion
23054 (goto-char (org-element-property :post-affiliated element))
23055 (org-table-align)))
23057 (paragraph
23058 ;; Paragraphs may contain `line-break' type objects.
23059 (let ((beg (max (point-min)
23060 (org-element-property :contents-begin element)))
23061 (end (min (point-max)
23062 (org-element-property :contents-end element))))
23063 ;; Do nothing if point is at an affiliated keyword.
23064 (if (< (line-end-position) beg) t
23065 (when (derived-mode-p 'message-mode)
23066 ;; In `message-mode', do not fill following citation
23067 ;; in current paragraph nor text before message body.
23068 (let ((body-start (save-excursion (message-goto-body))))
23069 (when body-start (setq beg (max body-start beg))))
23070 (when (save-excursion
23071 (re-search-forward
23072 (concat "^" message-cite-prefix-regexp) end t))
23073 (setq end (match-beginning 0))))
23074 ;; Fill paragraph, taking line breaks into account.
23075 (save-excursion
23076 (goto-char beg)
23077 (let ((cuts (list beg)))
23078 (while (re-search-forward "\\\\\\\\[ \t]*\n" end t)
23079 (when (eq 'line-break
23080 (org-element-type
23081 (save-excursion (backward-char)
23082 (org-element-context))))
23083 (push (point) cuts)))
23084 (dolist (c (delq end cuts))
23085 (fill-region-as-paragraph c end justify)
23086 (setq end c))))
23087 t)))
23088 ;; Contents of `comment-block' type elements should be
23089 ;; filled as plain text, but only if point is within block
23090 ;; markers.
23091 (comment-block
23092 (let* ((case-fold-search t)
23093 (beg (save-excursion
23094 (goto-char (org-element-property :begin element))
23095 (re-search-forward "^[ \t]*#\\+begin_comment" nil t)
23096 (forward-line)
23097 (point)))
23098 (end (save-excursion
23099 (goto-char (org-element-property :end element))
23100 (re-search-backward "^[ \t]*#\\+end_comment" nil t)
23101 (line-beginning-position))))
23102 (if (or (< (point) beg) (> (point) end)) t
23103 (fill-region-as-paragraph
23104 (save-excursion (end-of-line)
23105 (re-search-backward "^[ \t]*$" beg 'move)
23106 (line-beginning-position))
23107 (save-excursion (beginning-of-line)
23108 (re-search-forward "^[ \t]*$" end 'move)
23109 (line-beginning-position))
23110 justify))))
23111 ;; Fill comments.
23112 (comment
23113 (let ((begin (org-element-property :post-affiliated element))
23114 (end (org-element-property :end element)))
23115 (when (and (>= (point) begin) (<= (point) end))
23116 (let ((begin (save-excursion
23117 (end-of-line)
23118 (if (re-search-backward "^[ \t]*#[ \t]*$" begin t)
23119 (progn (forward-line) (point))
23120 begin)))
23121 (end (save-excursion
23122 (end-of-line)
23123 (if (re-search-forward "^[ \t]*#[ \t]*$" end 'move)
23124 (1- (line-beginning-position))
23125 (skip-chars-backward " \r\t\n")
23126 (line-end-position)))))
23127 ;; Do not fill comments when at a blank line.
23128 (when (> end begin)
23129 (let ((fill-prefix
23130 (save-excursion
23131 (beginning-of-line)
23132 (looking-at "[ \t]*#")
23133 (let ((comment-prefix (match-string 0)))
23134 (goto-char (match-end 0))
23135 (if (looking-at adaptive-fill-regexp)
23136 (concat comment-prefix (match-string 0))
23137 (concat comment-prefix " "))))))
23138 (save-excursion
23139 (fill-region-as-paragraph begin end justify))))))
23141 ;; Ignore every other element.
23142 (otherwise t))))))
23144 (defun org-auto-fill-function ()
23145 "Auto-fill function."
23146 ;; Check if auto-filling is meaningful.
23147 (let ((fc (current-fill-column)))
23148 (when (and fc (> (current-column) fc))
23149 (let* ((fill-prefix (org-adaptive-fill-function))
23150 ;; Enforce empty fill prefix, if required. Otherwise, it
23151 ;; will be computed again.
23152 (adaptive-fill-mode (not (equal fill-prefix ""))))
23153 (when fill-prefix (do-auto-fill))))))
23155 (defun org-comment-line-break-function (&optional soft)
23156 "Break line at point and indent, continuing comment if within one.
23157 The inserted newline is marked hard if variable
23158 `use-hard-newlines' is true, unless optional argument SOFT is
23159 non-nil."
23160 (if soft (insert-and-inherit ?\n) (newline 1))
23161 (save-excursion (forward-char -1) (delete-horizontal-space))
23162 (delete-horizontal-space)
23163 (indent-to-left-margin)
23164 (insert-before-markers-and-inherit fill-prefix))
23167 ;;; Fixed Width Areas
23169 (defun org-toggle-fixed-width ()
23170 "Toggle fixed-width markup.
23172 Add or remove fixed-width markup on current line, whenever it
23173 makes sense. Return an error otherwise.
23175 If a region is active and if it contains only fixed-width areas
23176 or blank lines, remove all fixed-width markup in it. If the
23177 region contains anything else, convert all non-fixed-width lines
23178 to fixed-width ones.
23180 Blank lines at the end of the region are ignored unless the
23181 region only contains such lines."
23182 (interactive)
23183 (if (not (org-region-active-p))
23184 ;; No region:
23186 ;; Remove fixed width marker only in a fixed-with element.
23188 ;; Add fixed width maker in paragraphs, in blank lines after
23189 ;; elements or at the beginning of a headline or an inlinetask,
23190 ;; and before any one-line elements (e.g., a clock).
23191 (progn
23192 (beginning-of-line)
23193 (let* ((element (org-element-at-point))
23194 (type (org-element-type element)))
23195 (cond
23196 ((and (eq type 'fixed-width)
23197 (looking-at "[ \t]*\\(:\\(?: \\|$\\)\\)"))
23198 (replace-match
23199 "" nil nil nil (if (= (line-end-position) (match-end 0)) 0 1)))
23200 ((and (memq type '(babel-call clock comment diary-sexp headline
23201 horizontal-rule keyword paragraph
23202 planning))
23203 (<= (org-element-property :post-affiliated element) (point)))
23204 (skip-chars-forward " \t")
23205 (insert ": "))
23206 ((and (org-looking-at-p "[ \t]*$")
23207 (or (eq type 'inlinetask)
23208 (save-excursion
23209 (skip-chars-forward " \r\t\n")
23210 (<= (org-element-property :end element) (point)))))
23211 (delete-region (point) (line-end-position))
23212 (org-indent-line)
23213 (insert ": "))
23214 (t (user-error "Cannot insert a fixed-width line here")))))
23215 ;; Region active.
23216 (let* ((begin (save-excursion
23217 (goto-char (region-beginning))
23218 (line-beginning-position)))
23219 (end (copy-marker
23220 (save-excursion
23221 (goto-char (region-end))
23222 (unless (eolp) (beginning-of-line))
23223 (if (save-excursion (re-search-backward "\\S-" begin t))
23224 (progn (skip-chars-backward " \r\t\n") (point))
23225 (point)))))
23226 (all-fixed-width-p
23227 (catch 'not-all-p
23228 (save-excursion
23229 (goto-char begin)
23230 (skip-chars-forward " \r\t\n")
23231 (when (eobp) (throw 'not-all-p nil))
23232 (while (< (point) end)
23233 (let ((element (org-element-at-point)))
23234 (if (eq (org-element-type element) 'fixed-width)
23235 (goto-char (org-element-property :end element))
23236 (throw 'not-all-p nil))))
23237 t))))
23238 (if all-fixed-width-p
23239 (save-excursion
23240 (goto-char begin)
23241 (while (< (point) end)
23242 (when (looking-at "[ \t]*\\(:\\(?: \\|$\\)\\)")
23243 (replace-match
23244 "" nil nil nil
23245 (if (= (line-end-position) (match-end 0)) 0 1)))
23246 (forward-line)))
23247 (let ((min-ind (point-max)))
23248 ;; Find minimum indentation across all lines.
23249 (save-excursion
23250 (goto-char begin)
23251 (if (not (save-excursion (re-search-forward "\\S-" end t)))
23252 (setq min-ind 0)
23253 (catch 'zerop
23254 (while (< (point) end)
23255 (unless (org-looking-at-p "[ \t]*$")
23256 (let ((ind (org-get-indentation)))
23257 (setq min-ind (min min-ind ind))
23258 (when (zerop ind) (throw 'zerop t))))
23259 (forward-line)))))
23260 ;; Loop over all lines and add fixed-width markup everywhere
23261 ;; but in fixed-width lines.
23262 (save-excursion
23263 (goto-char begin)
23264 (while (< (point) end)
23265 (cond
23266 ((org-at-heading-p)
23267 (insert ": ")
23268 (forward-line)
23269 (while (and (< (point) end) (org-looking-at-p "[ \t]*$"))
23270 (insert ":")
23271 (forward-line)))
23272 ((org-looking-at-p "[ \t]*:\\( \\|$\\)")
23273 (let* ((element (org-element-at-point))
23274 (element-end (org-element-property :end element)))
23275 (if (eq (org-element-type element) 'fixed-width)
23276 (progn (goto-char element-end)
23277 (skip-chars-backward " \r\t\n")
23278 (forward-line))
23279 (let ((limit (min end element-end)))
23280 (while (< (point) limit)
23281 (org-move-to-column min-ind t)
23282 (insert ": ")
23283 (forward-line))))))
23285 (org-move-to-column min-ind t)
23286 (insert ": ")
23287 (forward-line)))))))
23288 (set-marker end nil))))
23291 ;;; Comments
23293 ;; Org comments syntax is quite complex. It requires the entire line
23294 ;; to be just a comment. Also, even with the right syntax at the
23295 ;; beginning of line, some some elements (i.e. verse-block or
23296 ;; example-block) don't accept comments. Usual Emacs comment commands
23297 ;; cannot cope with those requirements. Therefore, Org replaces them.
23299 ;; Org still relies on `comment-dwim', but cannot trust
23300 ;; `comment-only-p'. So, `comment-region-function' and
23301 ;; `uncomment-region-function' both point
23302 ;; to`org-comment-or-uncomment-region'. Eventually,
23303 ;; `org-insert-comment' takes care of insertion of comments at the
23304 ;; beginning of line.
23306 ;; `org-setup-comments-handling' install comments related variables
23307 ;; during `org-mode' initialization.
23309 (defun org-setup-comments-handling ()
23310 (interactive)
23311 (org-set-local 'comment-use-syntax nil)
23312 (org-set-local 'comment-start "# ")
23313 (org-set-local 'comment-start-skip "^\\s-*#\\(?: \\|$\\)")
23314 (org-set-local 'comment-insert-comment-function 'org-insert-comment)
23315 (org-set-local 'comment-region-function 'org-comment-or-uncomment-region)
23316 (org-set-local 'uncomment-region-function 'org-comment-or-uncomment-region))
23318 (defun org-insert-comment ()
23319 "Insert an empty comment above current line.
23320 If the line is empty, insert comment at its beginning. When
23321 point is within a source block, comment according to the related
23322 major mode."
23323 (if (let ((element (org-element-at-point)))
23324 (and (eq (org-element-type element) 'src-block)
23325 (< (save-excursion
23326 (goto-char (org-element-property :post-affiliated element))
23327 (line-end-position))
23328 (point))
23329 (> (save-excursion
23330 (goto-char (org-element-property :end element))
23331 (skip-chars-backward " \r\t\n")
23332 (line-beginning-position))
23333 (point))))
23334 (org-babel-do-in-edit-buffer (call-interactively 'comment-dwim))
23335 (beginning-of-line)
23336 (if (looking-at "\\s-*$") (delete-region (point) (point-at-eol))
23337 (open-line 1))
23338 (org-indent-line)
23339 (insert "# ")))
23341 (defvar comment-empty-lines) ; From newcomment.el.
23342 (defun org-comment-or-uncomment-region (beg end &rest ignore)
23343 "Comment or uncomment each non-blank line in the region.
23344 Uncomment each non-blank line between BEG and END if it only
23345 contains commented lines. Otherwise, comment them. If region is
23346 strictly within a source block, use appropriate comment syntax."
23347 (if (let ((element (org-element-at-point)))
23348 (and (eq (org-element-type element) 'src-block)
23349 (< (save-excursion
23350 (goto-char (org-element-property :post-affiliated element))
23351 (line-end-position))
23352 beg)
23353 (>= (save-excursion
23354 (goto-char (org-element-property :end element))
23355 (skip-chars-backward " \r\t\n")
23356 (line-beginning-position))
23357 end)))
23358 (org-babel-do-in-edit-buffer (call-interactively 'comment-dwim))
23359 (save-restriction
23360 ;; Restrict region
23361 (narrow-to-region (save-excursion (goto-char beg)
23362 (skip-chars-forward " \r\t\n" end)
23363 (line-beginning-position))
23364 (save-excursion (goto-char end)
23365 (skip-chars-backward " \r\t\n" beg)
23366 (line-end-position)))
23367 (let ((uncommentp
23368 ;; UNCOMMENTP is non-nil when every non blank line between
23369 ;; BEG and END is a comment.
23370 (save-excursion
23371 (goto-char (point-min))
23372 (while (and (not (eobp))
23373 (let ((element (org-element-at-point)))
23374 (and (eq (org-element-type element) 'comment)
23375 (goto-char (min (point-max)
23376 (org-element-property
23377 :end element)))))))
23378 (eobp))))
23379 (if uncommentp
23380 ;; Only blank lines and comments in region: uncomment it.
23381 (save-excursion
23382 (goto-char (point-min))
23383 (while (not (eobp))
23384 (when (looking-at "[ \t]*\\(#\\(?: \\|$\\)\\)")
23385 (replace-match "" nil nil nil 1))
23386 (forward-line)))
23387 ;; Comment each line in region.
23388 (let ((min-indent (point-max)))
23389 ;; First find the minimum indentation across all lines.
23390 (save-excursion
23391 (goto-char (point-min))
23392 (while (and (not (eobp)) (not (zerop min-indent)))
23393 (unless (looking-at "[ \t]*$")
23394 (setq min-indent (min min-indent (current-indentation))))
23395 (forward-line)))
23396 ;; Then loop over all lines.
23397 (save-excursion
23398 (goto-char (point-min))
23399 (while (not (eobp))
23400 (unless (and (not comment-empty-lines) (looking-at "[ \t]*$"))
23401 ;; Don't get fooled by invisible text (e.g. link path)
23402 ;; when moving to column MIN-INDENT.
23403 (let ((buffer-invisibility-spec nil))
23404 (org-move-to-column min-indent t))
23405 (insert comment-start))
23406 (forward-line)))))))))
23408 (defun org-comment-dwim (arg)
23409 "Call `comment-dwim' within a source edit buffer if needed."
23410 (interactive "*P")
23411 (if (org-in-src-block-p)
23412 (org-babel-do-in-edit-buffer (call-interactively 'comment-dwim))
23413 (call-interactively 'comment-dwim)))
23416 ;;; Planning
23418 ;; This section contains tools to operate on timestamp objects, as
23419 ;; returned by, e.g. `org-element-context'.
23421 (defun org-timestamp-has-time-p (timestamp)
23422 "Non-nil when TIMESTAMP has a time specified."
23423 (org-element-property :hour-start timestamp))
23425 (defun org-timestamp-format (timestamp format &optional end utc)
23426 "Format a TIMESTAMP element into a string.
23428 FORMAT is a format specifier to be passed to
23429 `format-time-string'.
23431 When optional argument END is non-nil, use end of date-range or
23432 time-range, if possible.
23434 When optional argument UTC is non-nil, time will be expressed as
23435 Universal Time."
23436 (format-time-string
23437 format
23438 (apply 'encode-time
23439 (cons 0
23440 (mapcar
23441 (lambda (prop) (or (org-element-property prop timestamp) 0))
23442 (if end '(:minute-end :hour-end :day-end :month-end :year-end)
23443 '(:minute-start :hour-start :day-start :month-start
23444 :year-start)))))
23445 utc))
23447 (defun org-timestamp-split-range (timestamp &optional end)
23448 "Extract a timestamp object from a date or time range.
23450 TIMESTAMP is a timestamp object. END, when non-nil, means extract
23451 the end of the range. Otherwise, extract its start.
23453 Return a new timestamp object sharing the same parent as
23454 TIMESTAMP."
23455 (let ((type (org-element-property :type timestamp)))
23456 (if (memq type '(active inactive diary)) timestamp
23457 (let ((split-ts (list 'timestamp (copy-sequence (nth 1 timestamp)))))
23458 ;; Set new type.
23459 (org-element-put-property
23460 split-ts :type (if (eq type 'active-range) 'active 'inactive))
23461 ;; Copy start properties over end properties if END is
23462 ;; non-nil. Otherwise, copy end properties over `start' ones.
23463 (let ((p-alist '((:minute-start . :minute-end)
23464 (:hour-start . :hour-end)
23465 (:day-start . :day-end)
23466 (:month-start . :month-end)
23467 (:year-start . :year-end))))
23468 (dolist (p-cell p-alist)
23469 (org-element-put-property
23470 split-ts
23471 (funcall (if end 'car 'cdr) p-cell)
23472 (org-element-property
23473 (funcall (if end 'cdr 'car) p-cell) split-ts)))
23474 ;; Eventually refresh `:raw-value'.
23475 (org-element-put-property split-ts :raw-value nil)
23476 (org-element-put-property
23477 split-ts :raw-value (org-element-interpret-data split-ts)))))))
23479 (defun org-timestamp-translate (timestamp &optional boundary)
23480 "Apply `org-translate-time' on a TIMESTAMP object.
23481 When optional argument BOUNDARY is non-nil, it is either the
23482 symbol `start' or `end'. In this case, only translate the
23483 starting or ending part of TIMESTAMP if it is a date or time
23484 range. Otherwise, translate both parts."
23485 (if (and (not boundary)
23486 (memq (org-element-property :type timestamp)
23487 '(active-range inactive-range)))
23488 (concat
23489 (org-translate-time
23490 (org-element-property :raw-value
23491 (org-timestamp-split-range timestamp)))
23492 "--"
23493 (org-translate-time
23494 (org-element-property :raw-value
23495 (org-timestamp-split-range timestamp t))))
23496 (org-translate-time
23497 (org-element-property
23498 :raw-value
23499 (if (not boundary) timestamp
23500 (org-timestamp-split-range timestamp (eq boundary 'end)))))))
23504 ;;; Other stuff.
23506 (defun org-reftex-citation ()
23507 "Use reftex-citation to insert a citation into the buffer.
23508 This looks for a line like
23510 #+BIBLIOGRAPHY: foo plain option:-d
23512 and derives from it that foo.bib is the bibliography file relevant
23513 for this document. It then installs the necessary environment for RefTeX
23514 to work in this buffer and calls `reftex-citation' to insert a citation
23515 into the buffer.
23517 Export of such citations to both LaTeX and HTML is handled by the contributed
23518 package ox-bibtex by Taru Karttunen."
23519 (interactive)
23520 (let ((reftex-docstruct-symbol 'rds)
23521 (reftex-cite-format "\\cite{%l}")
23522 rds bib)
23523 (save-excursion
23524 (save-restriction
23525 (widen)
23526 (let ((case-fold-search t)
23527 (re "^[ \t]*#\\+BIBLIOGRAPHY:[ \t]+\\([^ \t\n]+\\)"))
23528 (if (not (save-excursion
23529 (or (re-search-forward re nil t)
23530 (re-search-backward re nil t))))
23531 (user-error "No bibliography defined in file")
23532 (setq bib (concat (match-string 1) ".bib")
23533 rds (list (list 'bib bib)))))))
23534 (call-interactively 'reftex-citation)))
23536 ;;;; Functions extending outline functionality
23538 (defun org-beginning-of-line (&optional arg)
23539 "Go to the beginning of the current line. If that is invisible, continue
23540 to a visible line beginning. This makes the function of C-a more intuitive.
23541 If this is a headline, and `org-special-ctrl-a/e' is set, ignore tags on the
23542 first attempt, and only move to after the tags when the cursor is already
23543 beyond the end of the headline."
23544 (interactive "P")
23545 (let ((pos (point))
23546 (special (if (consp org-special-ctrl-a/e)
23547 (car org-special-ctrl-a/e)
23548 org-special-ctrl-a/e))
23549 deactivate-mark refpos)
23550 (if (org-bound-and-true-p visual-line-mode)
23551 (beginning-of-visual-line 1)
23552 (beginning-of-line 1))
23553 (if (and arg (fboundp 'move-beginning-of-line))
23554 (call-interactively 'move-beginning-of-line)
23555 (if (bobp)
23557 (backward-char 1)
23558 (if (org-truely-invisible-p)
23559 (while (and (not (bobp)) (org-truely-invisible-p))
23560 (backward-char 1)
23561 (beginning-of-line 1))
23562 (forward-char 1))))
23563 (when special
23564 (cond
23565 ((and (looking-at org-complex-heading-regexp)
23566 (= (char-after (match-end 1)) ?\ ))
23567 (setq refpos (min (1+ (or (match-end 3) (match-end 2) (match-end 1)))
23568 (point-at-eol)))
23569 (goto-char
23570 (if (eq special t)
23571 (cond ((> pos refpos) refpos)
23572 ((= pos (point)) refpos)
23573 (t (point)))
23574 (cond ((> pos (point)) (point))
23575 ((not (eq last-command this-command)) (point))
23576 (t refpos)))))
23577 ((org-at-item-p)
23578 ;; Being at an item and not looking at an the item means point
23579 ;; was previously moved to beginning of a visual line, which
23580 ;; doesn't contain the item. Therefore, do nothing special,
23581 ;; just stay here.
23582 (when (looking-at org-list-full-item-re)
23583 ;; Set special position at first white space character after
23584 ;; bullet, and check-box, if any.
23585 (let ((after-bullet
23586 (let ((box (match-end 3)))
23587 (if (not box) (match-end 1)
23588 (let ((after (char-after box)))
23589 (if (and after (= after ? )) (1+ box) box))))))
23590 ;; Special case: Move point to special position when
23591 ;; currently after it or at beginning of line.
23592 (if (eq special t)
23593 (when (or (> pos after-bullet) (= (point) pos))
23594 (goto-char after-bullet))
23595 ;; Reversed case: Move point to special position when
23596 ;; point was already at beginning of line and command is
23597 ;; repeated.
23598 (when (and (= (point) pos) (eq last-command this-command))
23599 (goto-char after-bullet))))))))
23600 (org-no-warnings
23601 (and (featurep 'xemacs) (setq zmacs-region-stays t))))
23602 (setq disable-point-adjustment
23603 (or (not (invisible-p (point)))
23604 (not (invisible-p (max (point-min) (1- (point))))))))
23606 (defun org-end-of-line (&optional arg)
23607 "Go to the end of the line.
23608 If this is a headline, and `org-special-ctrl-a/e' is set, ignore
23609 tags on the first attempt, and only move to after the tags when
23610 the cursor is already beyond the end of the headline."
23611 (interactive "P")
23612 (let ((special (if (consp org-special-ctrl-a/e) (cdr org-special-ctrl-a/e)
23613 org-special-ctrl-a/e))
23614 (move-fun (cond ((org-bound-and-true-p visual-line-mode)
23615 'end-of-visual-line)
23616 ((fboundp 'move-end-of-line) 'move-end-of-line)
23617 (t 'end-of-line)))
23618 deactivate-mark)
23619 (if (or (not special) arg) (call-interactively move-fun)
23620 (let* ((element (save-excursion (beginning-of-line)
23621 (org-element-at-point)))
23622 (type (org-element-type element)))
23623 (cond
23624 ((memq type '(headline inlinetask))
23625 (let ((pos (point)))
23626 (beginning-of-line 1)
23627 (if (looking-at (org-re ".*?\\(?:\\([ \t]*\\)\\(:[[:alnum:]_@#%:]+:\\)?[ \t]*\\)?$"))
23628 (if (eq special t)
23629 (if (or (< pos (match-beginning 1)) (= pos (match-end 0)))
23630 (goto-char (match-beginning 1))
23631 (goto-char (match-end 0)))
23632 (if (or (< pos (match-end 0))
23633 (not (eq this-command last-command)))
23634 (goto-char (match-end 0))
23635 (goto-char (match-beginning 1))))
23636 (call-interactively move-fun))))
23637 ((outline-invisible-p (line-end-position))
23638 ;; If element is hidden, `move-end-of-line' would put point
23639 ;; after it. Use `end-of-line' to stay on current line.
23640 (call-interactively 'end-of-line))
23641 (t (call-interactively move-fun)))))
23642 (org-no-warnings (and (featurep 'xemacs) (setq zmacs-region-stays t))))
23643 (setq disable-point-adjustment
23644 (or (not (invisible-p (point)))
23645 (not (invisible-p (max (point-min) (1- (point))))))))
23647 (define-key org-mode-map "\C-a" 'org-beginning-of-line)
23648 (define-key org-mode-map "\C-e" 'org-end-of-line)
23650 (defun org-backward-sentence (&optional arg)
23651 "Go to beginning of sentence, or beginning of table field.
23652 This will call `backward-sentence' or `org-table-beginning-of-field',
23653 depending on context."
23654 (interactive "P")
23655 (cond
23656 ((org-at-table-p) (call-interactively 'org-table-beginning-of-field))
23657 (t (call-interactively 'backward-sentence))))
23659 (defun org-forward-sentence (&optional arg)
23660 "Go to end of sentence, or end of table field.
23661 This will call `forward-sentence' or `org-table-end-of-field',
23662 depending on context."
23663 (interactive "P")
23664 (cond
23665 ((org-at-table-p) (call-interactively 'org-table-end-of-field))
23666 (t (call-interactively 'forward-sentence))))
23668 (define-key org-mode-map "\M-a" 'org-backward-sentence)
23669 (define-key org-mode-map "\M-e" 'org-forward-sentence)
23671 (defun org-kill-line (&optional arg)
23672 "Kill line, to tags or end of line."
23673 (interactive "P")
23674 (cond
23675 ((or (not org-special-ctrl-k)
23676 (bolp)
23677 (not (org-at-heading-p)))
23678 (if (and (get-char-property (min (point-max) (point-at-eol)) 'invisible)
23679 org-ctrl-k-protect-subtree)
23680 (if (or (eq org-ctrl-k-protect-subtree 'error)
23681 (not (y-or-n-p "Kill hidden subtree along with headline? ")))
23682 (user-error "C-k aborted as it would kill a hidden subtree")))
23683 (call-interactively
23684 (if (org-bound-and-true-p visual-line-mode) 'kill-visual-line 'kill-line)))
23685 ((looking-at (org-re ".*?\\S-\\([ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)[ \t]*$"))
23686 (kill-region (point) (match-beginning 1))
23687 (org-set-tags nil t))
23688 (t (kill-region (point) (point-at-eol)))))
23690 (define-key org-mode-map "\C-k" 'org-kill-line)
23692 (defun org-yank (&optional arg)
23693 "Yank. If the kill is a subtree, treat it specially.
23694 This command will look at the current kill and check if is a single
23695 subtree, or a series of subtrees[1]. If it passes the test, and if the
23696 cursor is at the beginning of a line or after the stars of a currently
23697 empty headline, then the yank is handled specially. How exactly depends
23698 on the value of the following variables, both set by default.
23700 `org-yank-folded-subtrees'
23701 When set, the subtree(s) will be folded after insertion, but only
23702 if doing so would now swallow text after the yanked text.
23704 `org-yank-adjusted-subtrees'
23705 When set, the subtree will be promoted or demoted in order to
23706 fit into the local outline tree structure, which means that the
23707 level will be adjusted so that it becomes the smaller one of the
23708 two *visible* surrounding headings.
23710 Any prefix to this command will cause `yank' to be called directly with
23711 no special treatment. In particular, a simple \\[universal-argument] prefix \
23712 will just
23713 plainly yank the text as it is.
23715 \[1] The test checks if the first non-white line is a heading
23716 and if there are no other headings with fewer stars."
23717 (interactive "P")
23718 (org-yank-generic 'yank arg))
23720 (defun org-yank-generic (command arg)
23721 "Perform some yank-like command.
23723 This function implements the behavior described in the `org-yank'
23724 documentation. However, it has been generalized to work for any
23725 interactive command with similar behavior."
23727 ;; pretend to be command COMMAND
23728 (setq this-command command)
23730 (if arg
23731 (call-interactively command)
23733 (let ((subtreep ; is kill a subtree, and the yank position appropriate?
23734 (and (org-kill-is-subtree-p)
23735 (or (bolp)
23736 (and (looking-at "[ \t]*$")
23737 (string-match
23738 "\\`\\*+\\'"
23739 (buffer-substring (point-at-bol) (point)))))))
23740 swallowp)
23741 (cond
23742 ((and subtreep org-yank-folded-subtrees)
23743 (let ((beg (point))
23744 end)
23745 (if (and subtreep org-yank-adjusted-subtrees)
23746 (org-paste-subtree nil nil 'for-yank)
23747 (call-interactively command))
23749 (setq end (point))
23750 (goto-char beg)
23751 (when (and (bolp) subtreep
23752 (not (setq swallowp
23753 (org-yank-folding-would-swallow-text beg end))))
23754 (org-with-limited-levels
23755 (or (looking-at org-outline-regexp)
23756 (re-search-forward org-outline-regexp-bol end t))
23757 (while (and (< (point) end) (looking-at org-outline-regexp))
23758 (hide-subtree)
23759 (org-cycle-show-empty-lines 'folded)
23760 (condition-case nil
23761 (outline-forward-same-level 1)
23762 (error (goto-char end))))))
23763 (when swallowp
23764 (message
23765 "Inserted text not folded because that would swallow text"))
23767 (goto-char end)
23768 (skip-chars-forward " \t\n\r")
23769 (beginning-of-line 1)
23770 (push-mark beg 'nomsg)))
23771 ((and subtreep org-yank-adjusted-subtrees)
23772 (let ((beg (point-at-bol)))
23773 (org-paste-subtree nil nil 'for-yank)
23774 (push-mark beg 'nomsg)))
23776 (call-interactively command))))))
23778 (defun org-yank-folding-would-swallow-text (beg end)
23779 "Would hide-subtree at BEG swallow any text after END?"
23780 (let (level)
23781 (org-with-limited-levels
23782 (save-excursion
23783 (goto-char beg)
23784 (when (or (looking-at org-outline-regexp)
23785 (re-search-forward org-outline-regexp-bol end t))
23786 (setq level (org-outline-level)))
23787 (goto-char end)
23788 (skip-chars-forward " \t\r\n\v\f")
23789 (if (or (eobp)
23790 (and (bolp) (looking-at org-outline-regexp)
23791 (<= (org-outline-level) level)))
23792 nil ; Nothing would be swallowed
23793 t))))) ; something would swallow
23795 (define-key org-mode-map "\C-y" 'org-yank)
23797 (defun org-truely-invisible-p ()
23798 "Check if point is at a character currently not visible.
23799 This version does not only check the character property, but also
23800 `visible-mode'."
23801 ;; Early versions of noutline don't have `outline-invisible-p'.
23802 (if (org-bound-and-true-p visible-mode)
23804 (outline-invisible-p)))
23806 (defun org-invisible-p2 ()
23807 "Check if point is at a character currently not visible."
23808 (save-excursion
23809 (if (and (eolp) (not (bobp))) (backward-char 1))
23810 ;; Early versions of noutline don't have `outline-invisible-p'.
23811 (outline-invisible-p)))
23813 (defun org-back-to-heading (&optional invisible-ok)
23814 "Call `outline-back-to-heading', but provide a better error message."
23815 (condition-case nil
23816 (outline-back-to-heading invisible-ok)
23817 (error (error "Before first headline at position %d in buffer %s"
23818 (point) (current-buffer)))))
23820 (defun org-before-first-heading-p ()
23821 "Before first heading?"
23822 (save-excursion
23823 (end-of-line)
23824 (null (re-search-backward org-outline-regexp-bol nil t))))
23826 (defun org-at-heading-p (&optional ignored)
23827 (outline-on-heading-p t))
23828 ;; Compatibility alias with Org versions < 7.8.03
23829 (defalias 'org-on-heading-p 'org-at-heading-p)
23831 (defun org-in-commented-heading-p (&optional no-inheritance)
23832 "Non-nil if point is under a commented heading.
23833 This function also checks ancestors of the current headline,
23834 unless optional argument NO-INHERITANCE is non-nil."
23835 (cond
23836 ((org-before-first-heading-p) nil)
23837 ((let ((headline (nth 4 (org-heading-components))))
23838 (and headline
23839 (let ((case-fold-search nil))
23840 (org-string-match-p (concat "^" org-comment-string "\\(?: \\|$\\)")
23841 headline)))))
23842 (no-inheritance nil)
23844 (save-excursion (and (org-up-heading-safe) (org-in-commented-heading-p))))))
23846 (defun org-at-comment-p nil
23847 "Is cursor in a commented line?"
23848 (save-excursion
23849 (save-match-data
23850 (beginning-of-line)
23851 (looking-at "^[ \t]*# "))))
23853 (defun org-at-drawer-p nil
23854 "Is cursor at a drawer keyword?"
23855 (save-excursion
23856 (move-beginning-of-line 1)
23857 (looking-at org-drawer-regexp)))
23859 (defun org-at-block-p nil
23860 "Is cursor at a block keyword?"
23861 (save-excursion
23862 (move-beginning-of-line 1)
23863 (looking-at org-block-regexp)))
23865 (defun org-point-at-end-of-empty-headline ()
23866 "If point is at the end of an empty headline, return t, else nil.
23867 If the heading only contains a TODO keyword, it is still still considered
23868 empty."
23869 (and (looking-at "[ \t]*$")
23870 (when org-todo-line-regexp
23871 (save-excursion
23872 (beginning-of-line 1)
23873 (let ((case-fold-search nil))
23874 (looking-at org-todo-line-regexp)
23875 (string= (match-string 3) ""))))))
23877 (defun org-at-heading-or-item-p ()
23878 (or (org-at-heading-p) (org-at-item-p)))
23880 (defun org-at-target-p ()
23881 (or (org-in-regexp org-radio-target-regexp)
23882 (org-in-regexp org-target-regexp)))
23883 ;; Compatibility alias with Org versions < 7.8.03
23884 (defalias 'org-on-target-p 'org-at-target-p)
23886 (defun org-up-heading-all (arg)
23887 "Move to the heading line of which the present line is a subheading.
23888 This function considers both visible and invisible heading lines.
23889 With argument, move up ARG levels."
23890 (if (fboundp 'outline-up-heading-all)
23891 (outline-up-heading-all arg) ; emacs 21 version of outline.el
23892 (outline-up-heading arg t))) ; emacs 22 version of outline.el
23894 (defun org-up-heading-safe ()
23895 "Move to the heading line of which the present line is a subheading.
23896 This version will not throw an error. It will return the level of the
23897 headline found, or nil if no higher level is found.
23899 Also, this function will be a lot faster than `outline-up-heading',
23900 because it relies on stars being the outline starters. This can really
23901 make a significant difference in outlines with very many siblings."
23902 (when (ignore-errors (org-back-to-heading t))
23903 (let ((level-up (1- (funcall outline-level))))
23904 (and (> level-up 0)
23905 (re-search-backward (format "^\\*\\{1,%d\\} " level-up) nil t)
23906 (funcall outline-level)))))
23908 (defun org-first-sibling-p ()
23909 "Is this heading the first child of its parents?"
23910 (interactive)
23911 (let ((re org-outline-regexp-bol)
23912 level l)
23913 (unless (org-at-heading-p t)
23914 (user-error "Not at a heading"))
23915 (setq level (funcall outline-level))
23916 (save-excursion
23917 (if (not (re-search-backward re nil t))
23919 (setq l (funcall outline-level))
23920 (< l level)))))
23922 (defun org-goto-sibling (&optional previous)
23923 "Goto the next sibling, even if it is invisible.
23924 When PREVIOUS is set, go to the previous sibling instead. Returns t
23925 when a sibling was found. When none is found, return nil and don't
23926 move point."
23927 (let ((fun (if previous 're-search-backward 're-search-forward))
23928 (pos (point))
23929 (re org-outline-regexp-bol)
23930 level l)
23931 (when (ignore-errors (org-back-to-heading t))
23932 (setq level (funcall outline-level))
23933 (catch 'exit
23934 (or previous (forward-char 1))
23935 (while (funcall fun re nil t)
23936 (setq l (funcall outline-level))
23937 (when (< l level) (goto-char pos) (throw 'exit nil))
23938 (when (= l level) (goto-char (match-beginning 0)) (throw 'exit t)))
23939 (goto-char pos)
23940 nil))))
23942 (defun org-show-siblings ()
23943 "Show all siblings of the current headline."
23944 (save-excursion
23945 (while (org-goto-sibling) (org-flag-heading nil)))
23946 (save-excursion
23947 (while (org-goto-sibling 'previous)
23948 (org-flag-heading nil))))
23950 (defun org-goto-first-child ()
23951 "Goto the first child, even if it is invisible.
23952 Return t when a child was found. Otherwise don't move point and
23953 return nil."
23954 (let (level (pos (point)) (re org-outline-regexp-bol))
23955 (when (ignore-errors (org-back-to-heading t))
23956 (setq level (outline-level))
23957 (forward-char 1)
23958 (if (and (re-search-forward re nil t) (> (outline-level) level))
23959 (progn (goto-char (match-beginning 0)) t)
23960 (goto-char pos) nil))))
23962 (defun org-show-hidden-entry ()
23963 "Show an entry where even the heading is hidden."
23964 (save-excursion
23965 (org-show-entry)))
23967 (defun org-flag-heading (flag &optional entry)
23968 "Flag the current heading. FLAG non-nil means make invisible.
23969 When ENTRY is non-nil, show the entire entry."
23970 (save-excursion
23971 (org-back-to-heading t)
23972 ;; Check if we should show the entire entry
23973 (if entry
23974 (progn
23975 (org-show-entry)
23976 (save-excursion
23977 (and (outline-next-heading)
23978 (org-flag-heading nil))))
23979 (outline-flag-region (max (point-min) (1- (point)))
23980 (save-excursion (outline-end-of-heading) (point))
23981 flag))))
23983 (defun org-get-next-sibling ()
23984 "Move to next heading of the same level, and return point.
23985 If there is no such heading, return nil.
23986 This is like outline-next-sibling, but invisible headings are ok."
23987 (let ((level (funcall outline-level)))
23988 (outline-next-heading)
23989 (while (and (not (eobp)) (> (funcall outline-level) level))
23990 (outline-next-heading))
23991 (if (or (eobp) (< (funcall outline-level) level))
23993 (point))))
23995 (defun org-get-last-sibling ()
23996 "Move to previous heading of the same level, and return point.
23997 If there is no such heading, return nil."
23998 (let ((opoint (point))
23999 (level (funcall outline-level)))
24000 (outline-previous-heading)
24001 (when (and (/= (point) opoint) (outline-on-heading-p t))
24002 (while (and (> (funcall outline-level) level)
24003 (not (bobp)))
24004 (outline-previous-heading))
24005 (if (< (funcall outline-level) level)
24007 (point)))))
24009 (defun org-end-of-subtree (&optional invisible-ok to-heading)
24010 "Goto to the end of a subtree."
24011 ;; This contains an exact copy of the original function, but it uses
24012 ;; `org-back-to-heading', to make it work also in invisible
24013 ;; trees. And is uses an invisible-ok argument.
24014 ;; Under Emacs this is not needed, but the old outline.el needs this fix.
24015 ;; Furthermore, when used inside Org, finding the end of a large subtree
24016 ;; with many children and grandchildren etc, this can be much faster
24017 ;; than the outline version.
24018 (org-back-to-heading invisible-ok)
24019 (let ((first t)
24020 (level (funcall outline-level)))
24021 (if (and (derived-mode-p 'org-mode) (< level 1000))
24022 ;; A true heading (not a plain list item), in Org-mode
24023 ;; This means we can easily find the end by looking
24024 ;; only for the right number of stars. Using a regexp to do
24025 ;; this is so much faster than using a Lisp loop.
24026 (let ((re (concat "^\\*\\{1," (int-to-string level) "\\} ")))
24027 (forward-char 1)
24028 (and (re-search-forward re nil 'move) (beginning-of-line 1)))
24029 ;; something else, do it the slow way
24030 (while (and (not (eobp))
24031 (or first (> (funcall outline-level) level)))
24032 (setq first nil)
24033 (outline-next-heading)))
24034 (unless to-heading
24035 (if (memq (preceding-char) '(?\n ?\^M))
24036 (progn
24037 ;; Go to end of line before heading
24038 (forward-char -1)
24039 (if (memq (preceding-char) '(?\n ?\^M))
24040 ;; leave blank line before heading
24041 (forward-char -1))))))
24042 (point))
24044 (defun org-end-of-meta-data-and-drawers ()
24045 "Jump to the first text after meta data and drawers in the current entry.
24046 This will move over empty lines, lines with planning time stamps,
24047 clocking lines, and drawers."
24048 (org-back-to-heading t)
24049 (let ((end (save-excursion (outline-next-heading) (point)))
24050 (re (concat "\\(" org-drawer-regexp "\\)"
24051 "\\|" "[ \t]*" org-keyword-time-regexp)))
24052 (forward-line 1)
24053 (while (re-search-forward re end t)
24054 (if (not (match-end 1))
24055 ;; empty or planning line
24056 (forward-line 1)
24057 ;; a drawer, find the end
24058 (re-search-forward "^[ \t]*:END:" end 'move)
24059 (forward-line 1)))
24060 (and (re-search-forward "[^\n]" nil t) (backward-char 1))
24061 (point)))
24063 (defun org-forward-heading-same-level (arg &optional invisible-ok)
24064 "Move forward to the ARG'th subheading at same level as this one.
24065 Stop at the first and last subheadings of a superior heading.
24066 Normally this only looks at visible headings, but when INVISIBLE-OK is
24067 non-nil it will also look at invisible ones."
24068 (interactive "p")
24069 (if (not (ignore-errors (org-back-to-heading invisible-ok)))
24070 (if (and arg (< arg 0))
24071 (goto-char (point-min))
24072 (outline-next-heading))
24073 (org-at-heading-p)
24074 (let ((level (- (match-end 0) (match-beginning 0) 1))
24075 (f (if (and arg (< arg 0))
24076 're-search-backward
24077 're-search-forward))
24078 (count (if arg (abs arg) 1))
24079 (result (point)))
24080 (while (and (prog1 (> count 0)
24081 (forward-char (if (and arg (< arg 0)) -1 1)))
24082 (funcall f org-outline-regexp-bol nil 'move))
24083 (let ((l (- (match-end 0) (match-beginning 0) 1)))
24084 (cond ((< l level) (setq count 0))
24085 ((and (= l level)
24086 (or invisible-ok
24087 (progn
24088 (goto-char (line-beginning-position))
24089 (not (outline-invisible-p)))))
24090 (setq count (1- count))
24091 (when (eq l level)
24092 (setq result (point)))))))
24093 (goto-char result))
24094 (beginning-of-line 1)))
24096 (defun org-backward-heading-same-level (arg &optional invisible-ok)
24097 "Move backward to the ARG'th subheading at same level as this one.
24098 Stop at the first and last subheadings of a superior heading."
24099 (interactive "p")
24100 (org-forward-heading-same-level (if arg (- arg) -1) invisible-ok))
24102 (defun org-next-block (arg &optional backward block-regexp)
24103 "Jump to the next block.
24104 With a prefix argument ARG, jump forward ARG many source blocks.
24105 When BACKWARD is non-nil, jump to the previous block.
24106 When BLOCK-REGEXP is non-nil, use this regexp to find blocks."
24107 (interactive "p")
24108 (let ((re (or block-regexp org-block-regexp))
24109 (re-search-fn (or (and backward 're-search-backward)
24110 're-search-forward)))
24111 (if (looking-at re) (forward-char 1))
24112 (condition-case nil
24113 (funcall re-search-fn re nil nil arg)
24114 (error (user-error "No %s code blocks"
24115 (if backward "previous" "further" ))))
24116 (goto-char (match-beginning 0)) (org-show-context)))
24118 (defun org-previous-block (arg &optional block-regexp)
24119 "Jump to the previous block.
24120 With a prefix argument ARG, jump backward ARG many source blocks.
24121 When BLOCK-REGEXP is non-nil, use this regexp to find blocks."
24122 (interactive "p")
24123 (org-next-block arg t block-regexp))
24125 (defun org-forward-paragraph ()
24126 "Move forward to beginning of next paragraph or equivalent.
24128 The function moves point to the beginning of the next visible
24129 structural element, which can be a paragraph, a table, a list
24130 item, etc. It also provides some special moves for convenience:
24132 - On an affiliated keyword, jump to the beginning of the
24133 relative element.
24134 - On an item or a footnote definition, move to the second
24135 element inside, if any.
24136 - On a table or a property drawer, jump after it.
24137 - On a verse or source block, stop after blank lines."
24138 (interactive)
24139 (when (eobp) (user-error "Cannot move further down"))
24140 (let* ((deactivate-mark nil)
24141 (element (org-element-at-point))
24142 (type (org-element-type element))
24143 (post-affiliated (org-element-property :post-affiliated element))
24144 (contents-begin (org-element-property :contents-begin element))
24145 (contents-end (org-element-property :contents-end element))
24146 (end (let ((end (org-element-property :end element)) (parent element))
24147 (while (and (setq parent (org-element-property :parent parent))
24148 (= (org-element-property :contents-end parent) end))
24149 (setq end (org-element-property :end parent)))
24150 end)))
24151 (cond ((not element)
24152 (skip-chars-forward " \r\t\n")
24153 (or (eobp) (beginning-of-line)))
24154 ;; On affiliated keywords, move to element's beginning.
24155 ((< (point) post-affiliated)
24156 (goto-char post-affiliated))
24157 ;; At a table row, move to the end of the table. Similarly,
24158 ;; at a node property, move to the end of the property
24159 ;; drawer.
24160 ((memq type '(node-property table-row))
24161 (goto-char (org-element-property
24162 :end (org-element-property :parent element))))
24163 ((memq type '(property-drawer table)) (goto-char end))
24164 ;; Consider blank lines as separators in verse and source
24165 ;; blocks to ease editing.
24166 ((memq type '(src-block verse-block))
24167 (when (eq type 'src-block)
24168 (setq contents-end
24169 (save-excursion (goto-char end)
24170 (skip-chars-backward " \r\t\n")
24171 (line-beginning-position))))
24172 (beginning-of-line)
24173 (when (looking-at "[ \t]*$") (skip-chars-forward " \r\t\n"))
24174 (if (not (re-search-forward "^[ \t]*$" contents-end t))
24175 (goto-char end)
24176 (skip-chars-forward " \r\t\n")
24177 (if (= (point) contents-end) (goto-char end)
24178 (beginning-of-line))))
24179 ;; With no contents, just skip element.
24180 ((not contents-begin) (goto-char end))
24181 ;; If contents are invisible, skip the element altogether.
24182 ((outline-invisible-p (line-end-position))
24183 (case type
24184 (headline
24185 (org-with-limited-levels (outline-next-visible-heading 1)))
24186 ;; At a plain list, make sure we move to the next item
24187 ;; instead of skipping the whole list.
24188 (plain-list (forward-char)
24189 (org-forward-paragraph))
24190 (otherwise (goto-char end))))
24191 ((>= (point) contents-end) (goto-char end))
24192 ((>= (point) contents-begin)
24193 ;; This can only happen on paragraphs and plain lists.
24194 (case type
24195 (paragraph (goto-char end))
24196 ;; At a plain list, try to move to second element in
24197 ;; first item, if possible.
24198 (plain-list (end-of-line)
24199 (org-forward-paragraph))))
24200 ;; When contents start on the middle of a line (e.g. in
24201 ;; items and footnote definitions), try to reach first
24202 ;; element starting after current line.
24203 ((> (line-end-position) contents-begin)
24204 (end-of-line)
24205 (org-forward-paragraph))
24206 (t (goto-char contents-begin)))))
24208 (defun org-backward-paragraph ()
24209 "Move backward to start of previous paragraph or equivalent.
24211 The function moves point to the beginning of the current
24212 structural element, which can be a paragraph, a table, a list
24213 item, etc., or to the beginning of the previous visible one if
24214 point is already there. It also provides some special moves for
24215 convenience:
24217 - On an affiliated keyword, jump to the first one.
24218 - On a table or a property drawer, move to its beginning.
24219 - On a verse or source block, stop before blank lines."
24220 (interactive)
24221 (when (bobp) (user-error "Cannot move further up"))
24222 (let* ((deactivate-mark nil)
24223 (element (org-element-at-point))
24224 (type (org-element-type element))
24225 (contents-begin (org-element-property :contents-begin element))
24226 (contents-end (org-element-property :contents-end element))
24227 (post-affiliated (org-element-property :post-affiliated element))
24228 (begin (org-element-property :begin element)))
24229 (cond
24230 ((not element) (goto-char (point-min)))
24231 ((= (point) begin)
24232 (backward-char)
24233 (org-backward-paragraph))
24234 ((<= (point) post-affiliated) (goto-char begin))
24235 ((memq type '(node-property table-row))
24236 (goto-char (org-element-property
24237 :post-affiliated (org-element-property :parent element))))
24238 ((memq type '(property-drawer table)) (goto-char begin))
24239 ((memq type '(src-block verse-block))
24240 (when (eq type 'src-block)
24241 (setq contents-begin
24242 (save-excursion (goto-char begin) (forward-line) (point))))
24243 (if (= (point) contents-begin) (goto-char post-affiliated)
24244 ;; Inside a verse block, see blank lines as paragraph
24245 ;; separators.
24246 (let ((origin (point)))
24247 (skip-chars-backward " \r\t\n" contents-begin)
24248 (when (re-search-backward "^[ \t]*$" contents-begin 'move)
24249 (skip-chars-forward " \r\t\n" origin)
24250 (if (= (point) origin) (goto-char contents-begin)
24251 (beginning-of-line))))))
24252 ((not contents-begin) (goto-char (or post-affiliated begin)))
24253 ((eq type 'paragraph)
24254 (goto-char contents-begin)
24255 ;; When at first paragraph in an item or a footnote definition,
24256 ;; move directly to beginning of line.
24257 (let ((parent-contents
24258 (org-element-property
24259 :contents-begin (org-element-property :parent element))))
24260 (when (and parent-contents (= parent-contents contents-begin))
24261 (beginning-of-line))))
24262 ;; At the end of a greater element, move to the beginning of the
24263 ;; last element within.
24264 ((>= (point) contents-end)
24265 (goto-char (1- contents-end))
24266 (org-backward-paragraph))
24267 (t (goto-char (or post-affiliated begin))))
24268 ;; Ensure we never leave point invisible.
24269 (when (outline-invisible-p (point)) (beginning-of-visual-line))))
24271 (defun org-forward-element ()
24272 "Move forward by one element.
24273 Move to the next element at the same level, when possible."
24274 (interactive)
24275 (cond ((eobp) (user-error "Cannot move further down"))
24276 ((org-with-limited-levels (org-at-heading-p))
24277 (let ((origin (point)))
24278 (goto-char (org-end-of-subtree nil t))
24279 (unless (org-with-limited-levels (org-at-heading-p))
24280 (goto-char origin)
24281 (user-error "Cannot move further down"))))
24283 (let* ((elem (org-element-at-point))
24284 (end (org-element-property :end elem))
24285 (parent (org-element-property :parent elem)))
24286 (cond ((and parent (= (org-element-property :contents-end parent) end))
24287 (goto-char (org-element-property :end parent)))
24288 ((integer-or-marker-p end) (goto-char end))
24289 (t (message "No element at point")))))))
24291 (defun org-backward-element ()
24292 "Move backward by one element.
24293 Move to the previous element at the same level, when possible."
24294 (interactive)
24295 (cond ((bobp) (user-error "Cannot move further up"))
24296 ((org-with-limited-levels (org-at-heading-p))
24297 ;; At a headline, move to the previous one, if any, or stay
24298 ;; here.
24299 (let ((origin (point)))
24300 (org-with-limited-levels (org-backward-heading-same-level 1))
24301 ;; When current headline has no sibling above, move to its
24302 ;; parent.
24303 (when (= (point) origin)
24304 (or (org-with-limited-levels (org-up-heading-safe))
24305 (progn (goto-char origin)
24306 (user-error "Cannot move further up"))))))
24308 (let* ((elem (org-element-at-point))
24309 (beg (org-element-property :begin elem)))
24310 (cond
24311 ;; Move to beginning of current element if point isn't
24312 ;; there already.
24313 ((null beg) (message "No element at point"))
24314 ((/= (point) beg) (goto-char beg))
24315 (t (goto-char beg)
24316 (skip-chars-backward " \r\t\n")
24317 (unless (bobp)
24318 (let ((prev (org-element-at-point)))
24319 (goto-char (org-element-property :begin prev))
24320 (while (and (setq prev (org-element-property :parent prev))
24321 (<= (org-element-property :end prev) beg))
24322 (goto-char (org-element-property :begin prev)))))))))))
24324 (defun org-up-element ()
24325 "Move to upper element."
24326 (interactive)
24327 (if (org-with-limited-levels (org-at-heading-p))
24328 (unless (org-up-heading-safe) (user-error "No surrounding element"))
24329 (let* ((elem (org-element-at-point))
24330 (parent (org-element-property :parent elem)))
24331 (if parent (goto-char (org-element-property :begin parent))
24332 (if (org-with-limited-levels (org-before-first-heading-p))
24333 (user-error "No surrounding element")
24334 (org-with-limited-levels (org-back-to-heading)))))))
24336 (defvar org-element-greater-elements)
24337 (defun org-down-element ()
24338 "Move to inner element."
24339 (interactive)
24340 (let ((element (org-element-at-point)))
24341 (cond
24342 ((memq (org-element-type element) '(plain-list table))
24343 (goto-char (org-element-property :contents-begin element))
24344 (forward-char))
24345 ((memq (org-element-type element) org-element-greater-elements)
24346 ;; If contents are hidden, first disclose them.
24347 (when (outline-invisible-p (line-end-position)) (org-cycle))
24348 (goto-char (or (org-element-property :contents-begin element)
24349 (user-error "No content for this element"))))
24350 (t (user-error "No inner element")))))
24352 (defun org-drag-element-backward ()
24353 "Move backward element at point."
24354 (interactive)
24355 (if (org-with-limited-levels (org-at-heading-p)) (org-move-subtree-up)
24356 (let* ((elem (org-element-at-point))
24357 (prev-elem
24358 (save-excursion
24359 (goto-char (org-element-property :begin elem))
24360 (skip-chars-backward " \r\t\n")
24361 (unless (bobp)
24362 (let* ((beg (org-element-property :begin elem))
24363 (prev (org-element-at-point))
24364 (up prev))
24365 (while (and (setq up (org-element-property :parent up))
24366 (<= (org-element-property :end up) beg))
24367 (setq prev up))
24368 prev)))))
24369 ;; Error out if no previous element or previous element is
24370 ;; a parent of the current one.
24371 (if (or (not prev-elem) (org-element-nested-p elem prev-elem))
24372 (user-error "Cannot drag element backward")
24373 (let ((pos (point)))
24374 (org-element-swap-A-B prev-elem elem)
24375 (goto-char (+ (org-element-property :begin prev-elem)
24376 (- pos (org-element-property :begin elem)))))))))
24378 (defun org-drag-element-forward ()
24379 "Move forward element at point."
24380 (interactive)
24381 (let* ((pos (point))
24382 (elem (org-element-at-point)))
24383 (when (= (point-max) (org-element-property :end elem))
24384 (user-error "Cannot drag element forward"))
24385 (goto-char (org-element-property :end elem))
24386 (let ((next-elem (org-element-at-point)))
24387 (when (or (org-element-nested-p elem next-elem)
24388 (and (eq (org-element-type next-elem) 'headline)
24389 (not (eq (org-element-type elem) 'headline))))
24390 (goto-char pos)
24391 (user-error "Cannot drag element forward"))
24392 ;; Compute new position of point: it's shifted by NEXT-ELEM
24393 ;; body's length (without final blanks) and by the length of
24394 ;; blanks between ELEM and NEXT-ELEM.
24395 (let ((size-next (- (save-excursion
24396 (goto-char (org-element-property :end next-elem))
24397 (skip-chars-backward " \r\t\n")
24398 (forward-line)
24399 ;; Small correction if buffer doesn't end
24400 ;; with a newline character.
24401 (if (and (eolp) (not (bolp))) (1+ (point)) (point)))
24402 (org-element-property :begin next-elem)))
24403 (size-blank (- (org-element-property :end elem)
24404 (save-excursion
24405 (goto-char (org-element-property :end elem))
24406 (skip-chars-backward " \r\t\n")
24407 (forward-line)
24408 (point)))))
24409 (org-element-swap-A-B elem next-elem)
24410 (goto-char (+ pos size-next size-blank))))))
24412 (defun org-drag-line-forward (arg)
24413 "Drag the line at point ARG lines forward."
24414 (interactive "p")
24415 (dotimes (n (abs arg))
24416 (let ((c (current-column)))
24417 (if (< 0 arg)
24418 (progn
24419 (beginning-of-line 2)
24420 (transpose-lines 1)
24421 (beginning-of-line 0))
24422 (transpose-lines 1)
24423 (beginning-of-line -1))
24424 (org-move-to-column c))))
24426 (defun org-drag-line-backward (arg)
24427 "Drag the line at point ARG lines backward."
24428 (interactive "p")
24429 (org-drag-line-forward (- arg)))
24431 (defun org-mark-element ()
24432 "Put point at beginning of this element, mark at end.
24434 Interactively, if this command is repeated or (in Transient Mark
24435 mode) if the mark is active, it marks the next element after the
24436 ones already marked."
24437 (interactive)
24438 (let (deactivate-mark)
24439 (if (and (org-called-interactively-p 'any)
24440 (or (and (eq last-command this-command) (mark t))
24441 (and transient-mark-mode mark-active)))
24442 (set-mark
24443 (save-excursion
24444 (goto-char (mark))
24445 (goto-char (org-element-property :end (org-element-at-point)))))
24446 (let ((element (org-element-at-point)))
24447 (end-of-line)
24448 (push-mark (org-element-property :end element) t t)
24449 (goto-char (org-element-property :begin element))))))
24451 (defun org-narrow-to-element ()
24452 "Narrow buffer to current element."
24453 (interactive)
24454 (let ((elem (org-element-at-point)))
24455 (cond
24456 ((eq (car elem) 'headline)
24457 (narrow-to-region
24458 (org-element-property :begin elem)
24459 (org-element-property :end elem)))
24460 ((memq (car elem) org-element-greater-elements)
24461 (narrow-to-region
24462 (org-element-property :contents-begin elem)
24463 (org-element-property :contents-end elem)))
24465 (narrow-to-region
24466 (org-element-property :begin elem)
24467 (org-element-property :end elem))))))
24469 (defun org-transpose-element ()
24470 "Transpose current and previous elements, keeping blank lines between.
24471 Point is moved after both elements."
24472 (interactive)
24473 (org-skip-whitespace)
24474 (let ((end (org-element-property :end (org-element-at-point))))
24475 (org-drag-element-backward)
24476 (goto-char end)))
24478 (defun org-unindent-buffer ()
24479 "Un-indent the visible part of the buffer.
24480 Relative indentation (between items, inside blocks, etc.) isn't
24481 modified."
24482 (interactive)
24483 (unless (eq major-mode 'org-mode)
24484 (user-error "Cannot un-indent a buffer not in Org mode"))
24485 (let* ((parse-tree (org-element-parse-buffer 'greater-element))
24486 unindent-tree ; For byte-compiler.
24487 (unindent-tree
24488 (function
24489 (lambda (contents)
24490 (mapc
24491 (lambda (element)
24492 (if (memq (org-element-type element) '(headline section))
24493 (funcall unindent-tree (org-element-contents element))
24494 (save-excursion
24495 (save-restriction
24496 (narrow-to-region
24497 (org-element-property :begin element)
24498 (org-element-property :end element))
24499 (org-do-remove-indentation)))))
24500 (reverse contents))))))
24501 (funcall unindent-tree (org-element-contents parse-tree))))
24503 (defun org-show-subtree ()
24504 "Show everything after this heading at deeper levels."
24505 (interactive)
24506 (outline-flag-region
24507 (point)
24508 (save-excursion
24509 (org-end-of-subtree t t))
24510 nil))
24512 (defun org-show-entry ()
24513 "Show the body directly following this heading.
24514 Show the heading too, if it is currently invisible."
24515 (interactive)
24516 (save-excursion
24517 (ignore-errors
24518 (org-back-to-heading t)
24519 (outline-flag-region
24520 (max (point-min) (1- (point)))
24521 (save-excursion
24522 (if (re-search-forward
24523 (concat "[\r\n]\\(" org-outline-regexp "\\)") nil t)
24524 (match-beginning 1)
24525 (point-max)))
24526 nil)
24527 (org-cycle-hide-drawers 'children))))
24529 (defun org-make-options-regexp (kwds &optional extra)
24530 "Make a regular expression for keyword lines.
24531 KWDS is a list of keywords, as strings. Optional argument EXTRA,
24532 when non-nil, is a regexp matching keywords names."
24533 (concat "^[ \t]*#\\+\\("
24534 (regexp-opt kwds)
24535 (and extra (concat (and kwds "\\|") extra))
24536 "\\):[ \t]*\\(.*\\)"))
24538 ;; Make isearch reveal the necessary context
24539 (defun org-isearch-end ()
24540 "Reveal context after isearch exits."
24541 (when isearch-success ; only if search was successful
24542 (if (featurep 'xemacs)
24543 ;; Under XEmacs, the hook is run in the correct place,
24544 ;; we directly show the context.
24545 (org-show-context 'isearch)
24546 ;; In Emacs the hook runs *before* restoring the overlays.
24547 ;; So we have to use a one-time post-command-hook to do this.
24548 ;; (Emacs 22 has a special variable, see function `org-mode')
24549 (unless (and (boundp 'isearch-mode-end-hook-quit)
24550 isearch-mode-end-hook-quit)
24551 ;; Only when the isearch was not quitted.
24552 (org-add-hook 'post-command-hook 'org-isearch-post-command
24553 'append 'local)))))
24555 (defun org-isearch-post-command ()
24556 "Remove self from hook, and show context."
24557 (remove-hook 'post-command-hook 'org-isearch-post-command 'local)
24558 (org-show-context 'isearch))
24561 ;;;; Integration with and fixes for other packages
24563 ;;; Imenu support
24565 (defvar org-imenu-markers nil
24566 "All markers currently used by Imenu.")
24567 (make-variable-buffer-local 'org-imenu-markers)
24569 (defun org-imenu-new-marker (&optional pos)
24570 "Return a new marker for use by Imenu, and remember the marker."
24571 (let ((m (make-marker)))
24572 (move-marker m (or pos (point)))
24573 (push m org-imenu-markers)
24576 (defun org-imenu-get-tree ()
24577 "Produce the index for Imenu."
24578 (mapc (lambda (x) (move-marker x nil)) org-imenu-markers)
24579 (setq org-imenu-markers nil)
24580 (let* ((n org-imenu-depth)
24581 (re (concat "^" (org-get-limited-outline-regexp)))
24582 (subs (make-vector (1+ n) nil))
24583 (last-level 0)
24584 m level head0 head)
24585 (save-excursion
24586 (save-restriction
24587 (widen)
24588 (goto-char (point-max))
24589 (while (re-search-backward re nil t)
24590 (setq level (org-reduced-level (funcall outline-level)))
24591 (when (and (<= level n)
24592 (looking-at org-complex-heading-regexp)
24593 (setq head0 (org-match-string-no-properties 4)))
24594 (setq head (org-link-display-format head0)
24595 m (org-imenu-new-marker))
24596 (org-add-props head nil 'org-imenu-marker m 'org-imenu t)
24597 (if (>= level last-level)
24598 (push (cons head m) (aref subs level))
24599 (push (cons head (aref subs (1+ level))) (aref subs level))
24600 (loop for i from (1+ level) to n do (aset subs i nil)))
24601 (setq last-level level)))))
24602 (aref subs 1)))
24604 (eval-after-load "imenu"
24605 '(progn
24606 (add-hook 'imenu-after-jump-hook
24607 (lambda ()
24608 (if (derived-mode-p 'org-mode)
24609 (org-show-context 'org-goto))))))
24611 (defun org-link-display-format (link)
24612 "Replace a link with its the description.
24613 If there is no description, use the link target."
24614 (save-match-data
24615 (if (string-match org-bracket-link-analytic-regexp link)
24616 (replace-match (if (match-end 5)
24617 (match-string 5 link)
24618 (concat (match-string 1 link)
24619 (match-string 3 link)))
24620 nil t link)
24621 link)))
24623 (defun org-toggle-link-display ()
24624 "Toggle the literal or descriptive display of links."
24625 (interactive)
24626 (if org-descriptive-links
24627 (progn (org-remove-from-invisibility-spec '(org-link))
24628 (org-restart-font-lock)
24629 (setq org-descriptive-links nil))
24630 (progn (add-to-invisibility-spec '(org-link))
24631 (org-restart-font-lock)
24632 (setq org-descriptive-links t))))
24634 ;; Speedbar support
24636 (defvar org-speedbar-restriction-lock-overlay (make-overlay 1 1)
24637 "Overlay marking the agenda restriction line in speedbar.")
24638 (overlay-put org-speedbar-restriction-lock-overlay
24639 'face 'org-agenda-restriction-lock)
24640 (overlay-put org-speedbar-restriction-lock-overlay
24641 'help-echo "Agendas are currently limited to this item.")
24642 (org-detach-overlay org-speedbar-restriction-lock-overlay)
24644 (defun org-speedbar-set-agenda-restriction ()
24645 "Restrict future agenda commands to the location at point in speedbar.
24646 To get rid of the restriction, use \\[org-agenda-remove-restriction-lock]."
24647 (interactive)
24648 (require 'org-agenda)
24649 (let (p m tp np dir txt)
24650 (cond
24651 ((setq p (text-property-any (point-at-bol) (point-at-eol)
24652 'org-imenu t))
24653 (setq m (get-text-property p 'org-imenu-marker))
24654 (with-current-buffer (marker-buffer m)
24655 (goto-char m)
24656 (org-agenda-set-restriction-lock 'subtree)))
24657 ((setq p (text-property-any (point-at-bol) (point-at-eol)
24658 'speedbar-function 'speedbar-find-file))
24659 (setq tp (previous-single-property-change
24660 (1+ p) 'speedbar-function)
24661 np (next-single-property-change
24662 tp 'speedbar-function)
24663 dir (speedbar-line-directory)
24664 txt (buffer-substring-no-properties (or tp (point-min))
24665 (or np (point-max))))
24666 (with-current-buffer (find-file-noselect
24667 (let ((default-directory dir))
24668 (expand-file-name txt)))
24669 (unless (derived-mode-p 'org-mode)
24670 (user-error "Cannot restrict to non-Org-mode file"))
24671 (org-agenda-set-restriction-lock 'file)))
24672 (t (user-error "Don't know how to restrict Org-mode's agenda")))
24673 (move-overlay org-speedbar-restriction-lock-overlay
24674 (point-at-bol) (point-at-eol))
24675 (setq current-prefix-arg nil)
24676 (org-agenda-maybe-redo)))
24678 (defvar speedbar-file-key-map)
24679 (declare-function speedbar-add-supported-extension "speedbar" (extension))
24680 (eval-after-load "speedbar"
24681 '(progn
24682 (speedbar-add-supported-extension ".org")
24683 (define-key speedbar-file-key-map "<" 'org-speedbar-set-agenda-restriction)
24684 (define-key speedbar-file-key-map "\C-c\C-x<" 'org-speedbar-set-agenda-restriction)
24685 (define-key speedbar-file-key-map ">" 'org-agenda-remove-restriction-lock)
24686 (define-key speedbar-file-key-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
24687 (add-hook 'speedbar-visiting-tag-hook
24688 (lambda () (and (derived-mode-p 'org-mode) (org-show-context 'org-goto))))))
24690 ;;; Fixes and Hacks for problems with other packages
24692 (defun org--flyspell-object-check-p (element)
24693 "Non-nil when Flyspell can check object at point.
24694 ELEMENT is the element at point."
24695 (let ((object (save-excursion
24696 (when (org-looking-at-p "\\>") (backward-char))
24697 (org-element-context element))))
24698 (case (org-element-type object)
24699 ;; Prevent checks in links due to keybinding conflict with
24700 ;; Flyspell.
24701 ((code entity export-snippet inline-babel-call
24702 inline-src-block line-break latex-fragment link macro
24703 statistics-cookie target timestamp verbatim)
24704 nil)
24705 (footnote-reference
24706 ;; Only in inline footnotes, within the definition.
24707 (and (eq (org-element-property :type object) 'inline)
24708 (< (save-excursion
24709 (goto-char (org-element-property :begin object))
24710 (search-forward ":" nil t 2))
24711 (point))))
24712 (otherwise t))))
24714 (defun org-mode-flyspell-verify ()
24715 "Function used for `flyspell-generic-check-word-predicate'."
24716 (if (org-at-heading-p)
24717 ;; At a headline or an inlinetask, check title only. This is
24718 ;; faster than relying on `org-element-at-point'.
24719 (and (save-excursion (beginning-of-line)
24720 (and (let ((case-fold-search t))
24721 (not (looking-at "\\*+ END[ \t]*$")))
24722 (looking-at org-complex-heading-regexp)))
24723 (match-beginning 4)
24724 (>= (point) (match-beginning 4))
24725 (or (not (match-beginning 5))
24726 (< (point) (match-beginning 5))))
24727 (let* ((element (org-element-at-point))
24728 (post-affiliated (org-element-property :post-affiliated element)))
24729 (cond
24730 ;; Ignore checks in all affiliated keywords but captions.
24731 ((< (point) post-affiliated)
24732 (and (save-excursion
24733 (beginning-of-line)
24734 (let ((case-fold-search t)) (looking-at "[ \t]*#\\+CAPTION:")))
24735 (> (point) (match-end 0))
24736 (org--flyspell-object-check-p element)))
24737 ;; Ignore checks in LOGBOOK (or equivalent) drawer.
24738 ((and org-log-into-drawer
24739 (let ((log (or (org-string-nw-p org-log-into-drawer) "LOGBOOK"))
24740 (parent element))
24741 (while (and parent (not (eq (org-element-type parent) 'drawer)))
24742 (setq parent (org-element-property :parent parent)))
24743 (and parent
24744 (eq (compare-strings
24745 log nil nil
24746 (org-element-property :drawer-name parent) nil nil t)
24747 t))))
24748 nil)
24750 (case (org-element-type element)
24751 ((comment quote-section) t)
24752 (comment-block
24753 ;; Allow checks between block markers, not on them.
24754 (and (> (line-beginning-position) post-affiliated)
24755 (save-excursion
24756 (end-of-line)
24757 (skip-chars-forward " \r\t\n")
24758 (< (point) (org-element-property :end element)))))
24759 ;; Arbitrary list of keywords where checks are meaningful.
24760 ;; Make sure point is on the value part of the element.
24761 (keyword
24762 (and (member (org-element-property :key element)
24763 '("DESCRIPTION" "TITLE"))
24764 (< (save-excursion
24765 (beginning-of-line) (search-forward ":") (point))
24766 (point))))
24767 ;; Check is globally allowed in paragraphs verse blocks and
24768 ;; table rows (after affiliated keywords) but some objects
24769 ;; must not be affected.
24770 ((paragraph table-row verse-block)
24771 (let ((cbeg (org-element-property :contents-begin element))
24772 (cend (org-element-property :contents-end element)))
24773 (and cbeg (>= (point) cbeg) (< (point) cend)
24774 (org--flyspell-object-check-p element))))))))))
24775 (put 'org-mode 'flyspell-mode-predicate 'org-mode-flyspell-verify)
24777 (defun org-remove-flyspell-overlays-in (beg end)
24778 "Remove flyspell overlays in region."
24779 (and (org-bound-and-true-p flyspell-mode)
24780 (fboundp 'flyspell-delete-region-overlays)
24781 (flyspell-delete-region-overlays beg end)))
24783 (defvar flyspell-delayed-commands)
24784 (eval-after-load "flyspell"
24785 '(add-to-list 'flyspell-delayed-commands 'org-self-insert-command))
24787 ;; Make `bookmark-jump' shows the jump location if it was hidden.
24788 (eval-after-load "bookmark"
24789 '(if (boundp 'bookmark-after-jump-hook)
24790 ;; We can use the hook
24791 (add-hook 'bookmark-after-jump-hook 'org-bookmark-jump-unhide)
24792 ;; Hook not available, use advice
24793 (defadvice bookmark-jump (after org-make-visible activate)
24794 "Make the position visible."
24795 (org-bookmark-jump-unhide))))
24797 ;; Make sure saveplace shows the location if it was hidden
24798 (eval-after-load "saveplace"
24799 '(defadvice save-place-find-file-hook (after org-make-visible activate)
24800 "Make the position visible."
24801 (org-bookmark-jump-unhide)))
24803 ;; Make sure ecb shows the location if it was hidden
24804 (eval-after-load "ecb"
24805 '(defadvice ecb-method-clicked (after esf/org-show-context activate)
24806 "Make hierarchy visible when jumping into location from ECB tree buffer."
24807 (if (derived-mode-p 'org-mode)
24808 (org-show-context))))
24810 (defun org-bookmark-jump-unhide ()
24811 "Unhide the current position, to show the bookmark location."
24812 (and (derived-mode-p 'org-mode)
24813 (or (outline-invisible-p)
24814 (save-excursion (goto-char (max (point-min) (1- (point))))
24815 (outline-invisible-p)))
24816 (org-show-context 'bookmark-jump)))
24818 (defun org-mark-jump-unhide ()
24819 "Make the point visible with `org-show-context' after jumping to the mark."
24820 (when (and (derived-mode-p 'org-mode)
24821 (outline-invisible-p))
24822 (org-show-context 'mark-goto)))
24824 (eval-after-load "simple"
24825 '(defadvice pop-to-mark-command (after org-make-visible activate)
24826 "Make the point visible with `org-show-context'."
24827 (org-mark-jump-unhide)))
24829 (eval-after-load "simple"
24830 '(defadvice exchange-point-and-mark (after org-make-visible activate)
24831 "Make the point visible with `org-show-context'."
24832 (org-mark-jump-unhide)))
24834 (eval-after-load "simple"
24835 '(defadvice pop-global-mark (after org-make-visible activate)
24836 "Make the point visible with `org-show-context'."
24837 (org-mark-jump-unhide)))
24839 ;; Make session.el ignore our circular variable
24840 (defvar session-globals-exclude)
24841 (eval-after-load "session"
24842 '(add-to-list 'session-globals-exclude 'org-mark-ring))
24844 ;;;; Finish up
24846 (provide 'org)
24848 (run-hooks 'org-load-hook)
24850 ;;; org.el ends here