Merge branch 'maint'
[org-mode.git] / lisp / org.el
blobd07b61dccfe3f2ebaed0e0ffb5334abe64dc68eb
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)))) (org-insert-item)))
7768 ;; Maybe move at the end of the subtree
7769 (when (equal arg '(16))
7770 (org-up-heading-safe)
7771 (org-end-of-subtree t))
7772 ;; Insert a heading
7773 (save-restriction
7774 (widen)
7775 (let* ((level nil)
7776 (on-heading (org-at-heading-p))
7777 (empty-line-p (if on-heading
7778 (org-previous-line-empty-p)
7779 ;; We will decide later
7780 nil))
7781 ;; Get a level string to fall back on
7782 (fix-level
7783 (if (org-before-first-heading-p) "*"
7784 (save-excursion
7785 (org-back-to-heading t)
7786 (if (org-previous-line-empty-p) (setq empty-line-p t))
7787 (looking-at org-outline-regexp)
7788 (make-string (1- (length (match-string 0))) ?*))))
7789 (stars
7790 (save-excursion
7791 (condition-case nil
7792 (progn
7793 (org-back-to-heading invisible-ok)
7794 (when (and (not on-heading)
7795 (featurep 'org-inlinetask)
7796 (integerp org-inlinetask-min-level)
7797 (>= (length (match-string 0))
7798 org-inlinetask-min-level))
7799 ;; Find a heading level before the inline task
7800 (while (and (setq level (org-up-heading-safe))
7801 (>= level org-inlinetask-min-level)))
7802 (if (org-at-heading-p)
7803 (org-back-to-heading invisible-ok)
7804 (error "This should not happen")))
7805 (unless (and (save-excursion
7806 (save-match-data
7807 (org-backward-heading-same-level
7808 1 invisible-ok))
7809 (= (point) (match-beginning 0)))
7810 (not (org-previous-line-empty-p t)))
7811 (setq empty-line-p (or empty-line-p
7812 (org-previous-line-empty-p))))
7813 (match-string 0))
7814 (error (or fix-level "* ")))))
7815 (blank-a (cdr (assq 'heading org-blank-before-new-entry)))
7816 (blank (if (eq blank-a 'auto) empty-line-p blank-a))
7817 pos hide-previous previous-pos)
7819 ;; If we insert after content, move there and clean up whitespace
7820 (when (and respect-content
7821 (not (org-looking-at-p org-outline-regexp-bol)))
7822 (if (not (org-before-first-heading-p))
7823 (org-end-of-subtree nil t)
7824 (re-search-forward org-outline-regexp-bol)
7825 (beginning-of-line 0))
7826 (skip-chars-backward " \r\n")
7827 (and (not (looking-back "^\\*+"))
7828 (looking-at "[ \t]+") (replace-match ""))
7829 (unless (eobp) (forward-char 1))
7830 (when (looking-at "^\\*")
7831 (unless (bobp) (backward-char 1))
7832 (insert "\n")))
7834 ;; If we are splitting, grab the text that should be moved to the new headline
7835 (when may-split
7836 (if (org-on-heading-p)
7837 ;; This is a heading, we split intelligently (keeping tags)
7838 (let ((pos (point)))
7839 (goto-char (point-at-bol))
7840 (unless (looking-at org-complex-heading-regexp)
7841 (error "This should not happen"))
7842 (when (and (match-beginning 4)
7843 (> pos (match-beginning 4))
7844 (< pos (match-end 4)))
7845 (setq initial-content (buffer-substring pos (match-end 4)))
7846 (goto-char pos)
7847 (delete-region (point) (match-end 4))
7848 (if (looking-at "[ \t]*$")
7849 (replace-match "")
7850 (insert (make-string (length initial-content) ?\ )))
7851 (setq initial-content (org-trim initial-content)))
7852 (goto-char pos))
7853 ;; a normal line
7854 (setq initial-content
7855 (org-trim (buffer-substring (point) (point-at-eol))))
7856 (delete-region (point) (point-at-eol))))
7858 ;; If we are at the beginning of the line, insert before it. Else after
7859 (cond
7860 ((and (bolp) (looking-at "[ \t]*$")))
7861 ((and (bolp) (not (looking-at "[ \t]*$")))
7862 (open-line 1))
7864 (goto-char (point-at-eol))
7865 (insert "\n")))
7867 ;; Insert the new heading
7868 (insert stars)
7869 (just-one-space)
7870 (insert initial-content)
7871 (when adjust-empty-lines
7872 (if (or (not blank)
7873 (and blank (not (org-previous-line-empty-p))))
7874 (org-N-empty-lines-before-current (if blank 1 0))))
7875 (run-hooks 'org-insert-heading-hook)))))))
7877 (defun org-N-empty-lines-before-current (N)
7878 "Make the number of empty lines before current exactly N.
7879 So this will delete or add empty lines."
7880 (save-excursion
7881 (beginning-of-line)
7882 (let ((p (point)))
7883 (skip-chars-backward " \r\t\n")
7884 (unless (bolp) (forward-line))
7885 (delete-region (point) p))
7886 (when (> N 0) (insert (make-string N ?\n)))))
7888 (defun org-get-heading (&optional no-tags no-todo)
7889 "Return the heading of the current entry, without the stars.
7890 When NO-TAGS is non-nil, don't include tags.
7891 When NO-TODO is non-nil, don't include TODO keywords."
7892 (save-excursion
7893 (org-back-to-heading t)
7894 (cond
7895 ((and no-tags no-todo)
7896 (looking-at org-complex-heading-regexp)
7897 (match-string 4))
7898 (no-tags
7899 (looking-at (concat org-outline-regexp
7900 "\\(.*?\\)"
7901 "\\(?:[ \t]+:[[:alnum:]:_@#%]+:\\)?[ \t]*$"))
7902 (match-string 1))
7903 (no-todo
7904 (looking-at org-todo-line-regexp)
7905 (match-string 3))
7906 (t (looking-at org-heading-regexp)
7907 (match-string 2)))))
7909 (defvar orgstruct-mode) ; defined below
7911 (defun org-heading-components ()
7912 "Return the components of the current heading.
7913 This is a list with the following elements:
7914 - the level as an integer
7915 - the reduced level, different if `org-odd-levels-only' is set.
7916 - the TODO keyword, or nil
7917 - the priority character, like ?A, or nil if no priority is given
7918 - the headline text itself, or the tags string if no headline text
7919 - the tags string, or nil."
7920 (save-excursion
7921 (org-back-to-heading t)
7922 (if (let (case-fold-search)
7923 (looking-at
7924 (if orgstruct-mode
7925 org-heading-regexp
7926 org-complex-heading-regexp)))
7927 (if orgstruct-mode
7928 (list (length (match-string 1))
7929 (org-reduced-level (length (match-string 1)))
7932 (match-string 2)
7933 nil)
7934 (list (length (match-string 1))
7935 (org-reduced-level (length (match-string 1)))
7936 (org-match-string-no-properties 2)
7937 (and (match-end 3) (aref (match-string 3) 2))
7938 (org-match-string-no-properties 4)
7939 (org-match-string-no-properties 5))))))
7941 (defun org-get-entry ()
7942 "Get the entry text, after heading, entire subtree."
7943 (save-excursion
7944 (org-back-to-heading t)
7945 (buffer-substring (point-at-bol 2) (org-end-of-subtree t))))
7947 (defun org-insert-heading-after-current ()
7948 "Insert a new heading with same level as current, after current subtree."
7949 (interactive)
7950 (org-back-to-heading)
7951 (org-insert-heading)
7952 (org-move-subtree-down)
7953 (end-of-line 1))
7955 (defun org-insert-heading-respect-content (&optional invisible-ok)
7956 "Insert heading with `org-insert-heading-respect-content' set to t."
7957 (interactive)
7958 (org-insert-heading '(4) invisible-ok))
7960 (defun org-insert-todo-heading-respect-content (&optional force-state)
7961 "Insert TODO heading with `org-insert-heading-respect-content' set to t."
7962 (interactive)
7963 (org-insert-todo-heading force-state '(4)))
7965 (defun org-insert-todo-heading (arg &optional force-heading)
7966 "Insert a new heading with the same level and TODO state as current heading.
7967 If the heading has no TODO state, or if the state is DONE, use the first
7968 state (TODO by default). Also with one prefix arg, force first state. With
7969 two prefix args, force inserting at the end of the parent subtree."
7970 (interactive "P")
7971 (when (or force-heading (not (org-insert-item 'checkbox)))
7972 (org-insert-heading (or (and (equal arg '(16)) '(16))
7973 force-heading))
7974 (save-excursion
7975 (org-back-to-heading)
7976 (outline-previous-heading)
7977 (looking-at org-todo-line-regexp))
7978 (let*
7979 ((new-mark-x
7980 (if (or (equal arg '(4))
7981 (not (match-beginning 2))
7982 (member (match-string 2) org-done-keywords))
7983 (car org-todo-keywords-1)
7984 (match-string 2)))
7985 (new-mark
7987 (run-hook-with-args-until-success
7988 'org-todo-get-default-hook new-mark-x nil)
7989 new-mark-x)))
7990 (beginning-of-line 1)
7991 (and (looking-at org-outline-regexp) (goto-char (match-end 0))
7992 (if org-treat-insert-todo-heading-as-state-change
7993 (org-todo new-mark)
7994 (insert new-mark " "))))
7995 (when org-provide-todo-statistics
7996 (org-update-parent-todo-statistics))))
7998 (defun org-insert-subheading (arg)
7999 "Insert a new subheading and demote it.
8000 Works for outline headings and for plain lists alike."
8001 (interactive "P")
8002 (org-insert-heading arg)
8003 (cond
8004 ((org-at-heading-p) (org-do-demote))
8005 ((org-at-item-p) (org-indent-item))))
8007 (defun org-insert-todo-subheading (arg)
8008 "Insert a new subheading with TODO keyword or checkbox and demote it.
8009 Works for outline headings and for plain lists alike."
8010 (interactive "P")
8011 (org-insert-todo-heading arg)
8012 (cond
8013 ((org-at-heading-p) (org-do-demote))
8014 ((org-at-item-p) (org-indent-item))))
8016 ;;; Promotion and Demotion
8018 (defvar org-after-demote-entry-hook nil
8019 "Hook run after an entry has been demoted.
8020 The cursor will be at the beginning of the entry.
8021 When a subtree is being demoted, the hook will be called for each node.")
8023 (defvar org-after-promote-entry-hook nil
8024 "Hook run after an entry has been promoted.
8025 The cursor will be at the beginning of the entry.
8026 When a subtree is being promoted, the hook will be called for each node.")
8028 (defun org-promote-subtree ()
8029 "Promote the entire subtree.
8030 See also `org-promote'."
8031 (interactive)
8032 (save-excursion
8033 (org-with-limited-levels (org-map-tree 'org-promote)))
8034 (org-fix-position-after-promote))
8036 (defun org-demote-subtree ()
8037 "Demote the entire subtree. See `org-demote'.
8038 See also `org-promote'."
8039 (interactive)
8040 (save-excursion
8041 (org-with-limited-levels (org-map-tree 'org-demote)))
8042 (org-fix-position-after-promote))
8045 (defun org-do-promote ()
8046 "Promote the current heading higher up the tree.
8047 If the region is active in `transient-mark-mode', promote all headings
8048 in the region."
8049 (interactive)
8050 (save-excursion
8051 (if (org-region-active-p)
8052 (org-map-region 'org-promote (region-beginning) (region-end))
8053 (org-promote)))
8054 (org-fix-position-after-promote))
8056 (defun org-do-demote ()
8057 "Demote the current heading lower down the tree.
8058 If the region is active in `transient-mark-mode', demote all headings
8059 in the region."
8060 (interactive)
8061 (save-excursion
8062 (if (org-region-active-p)
8063 (org-map-region 'org-demote (region-beginning) (region-end))
8064 (org-demote)))
8065 (org-fix-position-after-promote))
8067 (defun org-fix-position-after-promote ()
8068 "Make sure that after pro/demotion cursor position is right."
8069 (let ((pos (point)))
8070 (when (save-excursion
8071 (beginning-of-line 1)
8072 (looking-at org-todo-line-regexp)
8073 (or (equal pos (match-end 1)) (equal pos (match-end 2))))
8074 (cond ((eobp) (insert " "))
8075 ((eolp) (insert " "))
8076 ((equal (char-after) ?\ ) (forward-char 1))))))
8078 (defun org-current-level ()
8079 "Return the level of the current entry, or nil if before the first headline.
8080 The level is the number of stars at the beginning of the headline."
8081 (save-excursion
8082 (org-with-limited-levels
8083 (if (ignore-errors (org-back-to-heading t))
8084 (funcall outline-level)))))
8086 (defun org-get-previous-line-level ()
8087 "Return the outline depth of the last headline before the current line.
8088 Returns 0 for the first headline in the buffer, and nil if before the
8089 first headline."
8090 (and (org-current-level)
8091 (or (and (/= (line-beginning-position) (point-min))
8092 (save-excursion (beginning-of-line 0) (org-current-level)))
8093 0)))
8095 (defun org-reduced-level (l)
8096 "Compute the effective level of a heading.
8097 This takes into account the setting of `org-odd-levels-only'."
8098 (cond
8099 ((zerop l) 0)
8100 (org-odd-levels-only (1+ (floor (/ l 2))))
8101 (t l)))
8103 (defun org-level-increment ()
8104 "Return the number of stars that will be added or removed at a
8105 time to headlines when structure editing, based on the value of
8106 `org-odd-levels-only'."
8107 (if org-odd-levels-only 2 1))
8109 (defun org-get-valid-level (level &optional change)
8110 "Rectify a level change under the influence of `org-odd-levels-only'
8111 LEVEL is a current level, CHANGE is by how much the level should be
8112 modified. Even if CHANGE is nil, LEVEL may be returned modified because
8113 even level numbers will become the next higher odd number."
8114 (if org-odd-levels-only
8115 (cond ((or (not change) (= 0 change)) (1+ (* 2 (/ level 2))))
8116 ((> change 0) (1+ (* 2 (/ (+ level (* 2 change)) 2))))
8117 ((< change 0) (max 1 (1+ (* 2 (/ (+ level (* 2 change)) 2))))))
8118 (max 1 (+ level (or change 0)))))
8120 (if (boundp 'define-obsolete-function-alias)
8121 (if (or (featurep 'xemacs) (< emacs-major-version 23))
8122 (define-obsolete-function-alias 'org-get-legal-level
8123 'org-get-valid-level)
8124 (define-obsolete-function-alias 'org-get-legal-level
8125 'org-get-valid-level "23.1")))
8127 (defun org-promote ()
8128 "Promote the current heading higher up the tree."
8129 (org-with-wide-buffer
8130 (org-back-to-heading t)
8131 (let* ((after-change-functions (remq 'flyspell-after-change-function
8132 after-change-functions))
8133 (level (save-match-data (funcall outline-level)))
8134 (up-head (concat (make-string (org-get-valid-level level -1) ?*) " "))
8135 (diff (abs (- level (length up-head) -1))))
8136 (cond
8137 ((and (= level 1) org-allow-promoting-top-level-subtree)
8138 (replace-match "# " nil t))
8139 ((= level 1)
8140 (user-error "Cannot promote to level 0. UNDO to recover if necessary"))
8141 (t (replace-match up-head nil t)))
8142 (unless (= level 1)
8143 (when org-auto-align-tags (org-set-tags nil 'ignore-column))
8144 (when org-adapt-indentation (org-fixup-indentation (- diff))))
8145 (run-hooks 'org-after-promote-entry-hook))))
8147 (defun org-demote ()
8148 "Demote the current heading lower down the tree."
8149 (org-with-wide-buffer
8150 (org-back-to-heading t)
8151 (let* ((after-change-functions (remq 'flyspell-after-change-function
8152 after-change-functions))
8153 (level (save-match-data (funcall outline-level)))
8154 (down-head (concat (make-string (org-get-valid-level level 1) ?*) " "))
8155 (diff (abs (- level (length down-head) -1))))
8156 (replace-match down-head nil t)
8157 (when org-auto-align-tags (org-set-tags nil 'ignore-column))
8158 (when org-adapt-indentation (org-fixup-indentation diff))
8159 (run-hooks 'org-after-demote-entry-hook))))
8161 (defun org-cycle-level ()
8162 "Cycle the level of an empty headline through possible states.
8163 This goes first to child, then to parent, level, then up the hierarchy.
8164 After top level, it switches back to sibling level."
8165 (interactive)
8166 (let ((org-adapt-indentation nil))
8167 (when (org-point-at-end-of-empty-headline)
8168 (setq this-command 'org-cycle-level) ; Only needed for caching
8169 (let ((cur-level (org-current-level))
8170 (prev-level (org-get-previous-line-level)))
8171 (cond
8172 ;; If first headline in file, promote to top-level.
8173 ((= prev-level 0)
8174 (loop repeat (/ (- cur-level 1) (org-level-increment))
8175 do (org-do-promote)))
8176 ;; If same level as prev, demote one.
8177 ((= prev-level cur-level)
8178 (org-do-demote))
8179 ;; If parent is top-level, promote to top level if not already.
8180 ((= prev-level 1)
8181 (loop repeat (/ (- cur-level 1) (org-level-increment))
8182 do (org-do-promote)))
8183 ;; If top-level, return to prev-level.
8184 ((= cur-level 1)
8185 (loop repeat (/ (- prev-level 1) (org-level-increment))
8186 do (org-do-demote)))
8187 ;; If less than prev-level, promote one.
8188 ((< cur-level prev-level)
8189 (org-do-promote))
8190 ;; If deeper than prev-level, promote until higher than
8191 ;; prev-level.
8192 ((> cur-level prev-level)
8193 (loop repeat (+ 1 (/ (- cur-level prev-level) (org-level-increment)))
8194 do (org-do-promote))))
8195 t))))
8197 (defun org-map-tree (fun)
8198 "Call FUN for every heading underneath the current one."
8199 (org-back-to-heading)
8200 (let ((level (funcall outline-level)))
8201 (save-excursion
8202 (funcall fun)
8203 (while (and (progn
8204 (outline-next-heading)
8205 (> (funcall outline-level) level))
8206 (not (eobp)))
8207 (funcall fun)))))
8209 (defun org-map-region (fun beg end)
8210 "Call FUN for every heading between BEG and END."
8211 (let ((org-ignore-region t))
8212 (save-excursion
8213 (setq end (copy-marker end))
8214 (goto-char beg)
8215 (if (and (re-search-forward org-outline-regexp-bol nil t)
8216 (< (point) end))
8217 (funcall fun))
8218 (while (and (progn
8219 (outline-next-heading)
8220 (< (point) end))
8221 (not (eobp)))
8222 (funcall fun)))))
8224 (defun org-fixup-indentation (diff)
8225 "Change the indentation in the current entry by DIFF.
8227 DIFF is an integer. Indentation is done according to the
8228 following rules:
8230 - Planning information and property drawers are always indented
8231 according to the new level of the headline;
8233 - Footnote definitions and their contents are ignored;
8235 - Inlinetasks' boundaries are not shifted;
8237 - Empty lines are ignored;
8239 - Other lines' indentation are shifted by DIFF columns, unless
8240 it would introduce a structural change in the document, in
8241 which case no shifting is done at all.
8243 Assume point is at a heading or an inlinetask beginning."
8244 (org-with-wide-buffer
8245 (narrow-to-region (line-beginning-position)
8246 (save-excursion
8247 (if (org-with-limited-levels (org-at-heading-p))
8248 (org-with-limited-levels (outline-next-heading))
8249 (org-inlinetask-goto-end))
8250 (point)))
8251 (forward-line)
8252 ;; Indent properly planning info and property drawer.
8253 (when (org-looking-at-p org-planning-line-re)
8254 (org-indent-line)
8255 (forward-line))
8256 (when (looking-at org-property-drawer-re)
8257 (goto-char (match-end 0))
8258 (forward-line)
8259 (save-excursion (org-indent-region (match-beginning 0) (match-end 0))))
8260 (catch 'no-shift
8261 (when (zerop diff) (throw 'no-shift nil))
8262 ;; If DIFF is negative, first check if a shift is possible at all
8263 ;; (e.g., it doesn't break structure). This can only happen if
8264 ;; some contents are not properly indented.
8265 (let ((case-fold-search t))
8266 (when (< diff 0)
8267 (let ((diff (- diff))
8268 (forbidden-re (concat org-outline-regexp
8269 "\\|"
8270 (substring org-footnote-definition-re 1))))
8271 (save-excursion
8272 (while (not (eobp))
8273 (cond
8274 ((org-looking-at-p "[ \t]*$") (forward-line))
8275 ((and (org-looking-at-p org-footnote-definition-re)
8276 (let ((e (org-element-at-point)))
8277 (and (eq (org-element-type e) 'footnote-definition)
8278 (goto-char (org-element-property :end e))))))
8279 ((org-looking-at-p org-outline-regexp) (forward-line))
8280 ;; Give up if shifting would move before column 0 or
8281 ;; if it would introduce a headline or a footnote
8282 ;; definition.
8284 (skip-chars-forward " \t")
8285 (let ((ind (current-column)))
8286 (when (or (< ind diff)
8287 (and (= ind diff) (org-looking-at-p forbidden-re)))
8288 (throw 'no-shift nil)))
8289 ;; Ignore contents of example blocks and source
8290 ;; blocks if their indentation is meant to be
8291 ;; preserved. Jump to block's closing line.
8292 (beginning-of-line)
8293 (or (and (org-looking-at-p "[ \t]*#\\+BEGIN_\\(EXAMPLE\\|SRC\\)")
8294 (let ((e (org-element-at-point)))
8295 (and (memq (org-element-type e)
8296 '(example-block src-block))
8297 (or org-src-preserve-indentation
8298 (org-element-property :preserve-indent e))
8299 (goto-char (org-element-property :end e))
8300 (progn (skip-chars-backward " \r\t\n")
8301 (beginning-of-line)
8302 t))))
8303 (forward-line))))))))
8304 ;; Shift lines but footnote definitions, inlinetasks boundaries
8305 ;; by DIFF. Also skip contents of source or example blocks
8306 ;; when indentation is meant to be preserved.
8307 (while (not (eobp))
8308 (cond
8309 ((and (org-looking-at-p org-footnote-definition-re)
8310 (let ((e (org-element-at-point)))
8311 (and (eq (org-element-type e) 'footnote-definition)
8312 (goto-char (org-element-property :end e))))))
8313 ((org-looking-at-p org-outline-regexp) (forward-line))
8314 ((org-looking-at-p "[ \t]*$") (forward-line))
8316 (org-indent-line-to (+ (org-get-indentation) diff))
8317 (beginning-of-line)
8318 (or (and (org-looking-at-p "[ \t]*#\\+BEGIN_\\(EXAMPLE\\|SRC\\)")
8319 (let ((e (org-element-at-point)))
8320 (and (memq (org-element-type e)
8321 '(example-block src-block))
8322 (or org-src-preserve-indentation
8323 (org-element-property :preserve-indent e))
8324 (goto-char (org-element-property :end e))
8325 (progn (skip-chars-backward " \r\t\n")
8326 (beginning-of-line)
8327 t))))
8328 (forward-line)))))))))
8330 (defun org-convert-to-odd-levels ()
8331 "Convert an org-mode file with all levels allowed to one with odd levels.
8332 This will leave level 1 alone, convert level 2 to level 3, level 3 to
8333 level 5 etc."
8334 (interactive)
8335 (when (yes-or-no-p "Are you sure you want to globally change levels to odd? ")
8336 (let ((outline-level 'org-outline-level)
8337 (org-odd-levels-only nil) n)
8338 (save-excursion
8339 (goto-char (point-min))
8340 (while (re-search-forward "^\\*\\*+ " nil t)
8341 (setq n (- (length (match-string 0)) 2))
8342 (while (>= (setq n (1- n)) 0)
8343 (org-demote))
8344 (end-of-line 1))))))
8346 (defun org-convert-to-oddeven-levels ()
8347 "Convert an org-mode file with only odd levels to one with odd/even levels.
8348 This promotes level 3 to level 2, level 5 to level 3 etc. If the
8349 file contains a section with an even level, conversion would
8350 destroy the structure of the file. An error is signaled in this
8351 case."
8352 (interactive)
8353 (goto-char (point-min))
8354 ;; First check if there are no even levels
8355 (when (re-search-forward "^\\(\\*\\*\\)+ " nil t)
8356 (org-show-context t)
8357 (error "Not all levels are odd in this file. Conversion not possible"))
8358 (when (yes-or-no-p "Are you sure you want to globally change levels to odd-even? ")
8359 (let ((outline-regexp org-outline-regexp)
8360 (outline-level 'org-outline-level)
8361 (org-odd-levels-only nil) n)
8362 (save-excursion
8363 (goto-char (point-min))
8364 (while (re-search-forward "^\\*\\*+ " nil t)
8365 (setq n (/ (1- (length (match-string 0))) 2))
8366 (while (>= (setq n (1- n)) 0)
8367 (org-promote))
8368 (end-of-line 1))))))
8370 (defun org-tr-level (n)
8371 "Make N odd if required."
8372 (if org-odd-levels-only (1+ (/ n 2)) n))
8374 ;;; Vertical tree motion, cutting and pasting of subtrees
8376 (defun org-move-subtree-up (&optional arg)
8377 "Move the current subtree up past ARG headlines of the same level."
8378 (interactive "p")
8379 (org-move-subtree-down (- (prefix-numeric-value arg))))
8381 (defun org-move-subtree-down (&optional arg)
8382 "Move the current subtree down past ARG headlines of the same level."
8383 (interactive "p")
8384 (setq arg (prefix-numeric-value arg))
8385 (let ((movfunc (if (> arg 0) 'org-get-next-sibling
8386 'org-get-last-sibling))
8387 (ins-point (make-marker))
8388 (cnt (abs arg))
8389 (col (current-column))
8390 beg beg0 end txt folded ne-beg ne-end ne-ins ins-end)
8391 ;; Select the tree
8392 (org-back-to-heading)
8393 (setq beg0 (point))
8394 (save-excursion
8395 (setq ne-beg (org-back-over-empty-lines))
8396 (setq beg (point)))
8397 (save-match-data
8398 (save-excursion (outline-end-of-heading)
8399 (setq folded (outline-invisible-p)))
8400 (progn (org-end-of-subtree nil t)
8401 (unless (eobp) (backward-char))))
8402 (outline-next-heading)
8403 (setq ne-end (org-back-over-empty-lines))
8404 (setq end (point))
8405 (goto-char beg0)
8406 (when (and (> arg 0) (org-first-sibling-p) (< ne-end ne-beg))
8407 ;; include less whitespace
8408 (save-excursion
8409 (goto-char beg)
8410 (forward-line (- ne-beg ne-end))
8411 (setq beg (point))))
8412 ;; Find insertion point, with error handling
8413 (while (> cnt 0)
8414 (or (and (funcall movfunc) (looking-at org-outline-regexp))
8415 (progn (goto-char beg0)
8416 (user-error "Cannot move past superior level or buffer limit")))
8417 (setq cnt (1- cnt)))
8418 (if (> arg 0)
8419 ;; Moving forward - still need to move over subtree
8420 (progn (org-end-of-subtree t t)
8421 (save-excursion
8422 (org-back-over-empty-lines)
8423 (or (bolp) (newline)))))
8424 (setq ne-ins (org-back-over-empty-lines))
8425 (move-marker ins-point (point))
8426 (setq txt (buffer-substring beg end))
8427 (org-save-markers-in-region beg end)
8428 (delete-region beg end)
8429 (org-remove-empty-overlays-at beg)
8430 (or (= beg (point-min)) (outline-flag-region (1- beg) beg nil))
8431 (or (bobp) (outline-flag-region (1- (point)) (point) nil))
8432 (and (not (bolp)) (looking-at "\n") (forward-char 1))
8433 (let ((bbb (point)))
8434 (insert-before-markers txt)
8435 (org-reinstall-markers-in-region bbb)
8436 (move-marker ins-point bbb))
8437 (or (bolp) (insert "\n"))
8438 (setq ins-end (point))
8439 (goto-char ins-point)
8440 (org-skip-whitespace)
8441 (when (and (< arg 0)
8442 (org-first-sibling-p)
8443 (> ne-ins ne-beg))
8444 ;; Move whitespace back to beginning
8445 (save-excursion
8446 (goto-char ins-end)
8447 (let ((kill-whole-line t))
8448 (kill-line (- ne-ins ne-beg)) (point)))
8449 (insert (make-string (- ne-ins ne-beg) ?\n)))
8450 (move-marker ins-point nil)
8451 (if folded
8452 (hide-subtree)
8453 (org-show-entry)
8454 (show-children)
8455 (org-cycle-hide-drawers 'children))
8456 (org-clean-visibility-after-subtree-move)
8457 ;; move back to the initial column we were at
8458 (move-to-column col)))
8460 (defvar org-subtree-clip ""
8461 "Clipboard for cut and paste of subtrees.
8462 This is actually only a copy of the kill, because we use the normal kill
8463 ring. We need it to check if the kill was created by `org-copy-subtree'.")
8465 (defvar org-subtree-clip-folded nil
8466 "Was the last copied subtree folded?
8467 This is used to fold the tree back after pasting.")
8469 (defun org-cut-subtree (&optional n)
8470 "Cut the current subtree into the clipboard.
8471 With prefix arg N, cut this many sequential subtrees.
8472 This is a short-hand for marking the subtree and then cutting it."
8473 (interactive "p")
8474 (org-copy-subtree n 'cut))
8476 (defun org-copy-subtree (&optional n cut force-store-markers nosubtrees)
8477 "Copy the current subtree it in the clipboard.
8478 With prefix arg N, copy this many sequential subtrees.
8479 This is a short-hand for marking the subtree and then copying it.
8480 If CUT is non-nil, actually cut the subtree.
8481 If FORCE-STORE-MARKERS is non-nil, store the relative locations
8482 of some markers in the region, even if CUT is non-nil. This is
8483 useful if the caller implements cut-and-paste as copy-then-paste-then-cut."
8484 (interactive "p")
8485 (let (beg end folded (beg0 (point)))
8486 (if (org-called-interactively-p 'any)
8487 (org-back-to-heading nil) ; take what looks like a subtree
8488 (org-back-to-heading t)) ; take what is really there
8489 (setq beg (point))
8490 (skip-chars-forward " \t\r\n")
8491 (save-match-data
8492 (if nosubtrees
8493 (outline-next-heading)
8494 (save-excursion (outline-end-of-heading)
8495 (setq folded (outline-invisible-p)))
8496 (ignore-errors (org-forward-heading-same-level (1- n) t))
8497 (org-end-of-subtree t t)))
8498 (setq end (point))
8499 (goto-char beg0)
8500 (when (> end beg)
8501 (setq org-subtree-clip-folded folded)
8502 (when (or cut force-store-markers)
8503 (org-save-markers-in-region beg end))
8504 (if cut (kill-region beg end) (copy-region-as-kill beg end))
8505 (setq org-subtree-clip (current-kill 0))
8506 (message "%s: Subtree(s) with %d characters"
8507 (if cut "Cut" "Copied")
8508 (length org-subtree-clip)))))
8510 (defun org-paste-subtree (&optional level tree for-yank remove)
8511 "Paste the clipboard as a subtree, with modification of headline level.
8512 The entire subtree is promoted or demoted in order to match a new headline
8513 level.
8515 If the cursor is at the beginning of a headline, the same level as
8516 that headline is used to paste the tree.
8518 If not, the new level is derived from the *visible* headings
8519 before and after the insertion point, and taken to be the inferior headline
8520 level of the two. So if the previous visible heading is level 3 and the
8521 next is level 4 (or vice versa), level 4 will be used for insertion.
8522 This makes sure that the subtree remains an independent subtree and does
8523 not swallow low level entries.
8525 You can also force a different level, either by using a numeric prefix
8526 argument, or by inserting the heading marker by hand. For example, if the
8527 cursor is after \"*****\", then the tree will be shifted to level 5.
8529 If optional TREE is given, use this text instead of the kill ring.
8531 When FOR-YANK is set, this is called by `org-yank'. In this case, do not
8532 move back over whitespace before inserting, and move point to the end of
8533 the inserted text when done.
8535 When REMOVE is non-nil, remove the subtree from the clipboard."
8536 (interactive "P")
8537 (setq tree (or tree (and kill-ring (current-kill 0))))
8538 (unless (org-kill-is-subtree-p tree)
8539 (user-error "%s"
8540 (substitute-command-keys
8541 "The kill is not a (set of) tree(s) - please use \\[yank] to yank anyway")))
8542 (org-with-limited-levels
8543 (let* ((visp (not (outline-invisible-p)))
8544 (txt tree)
8545 (^re_ "\\(\\*+\\)[ \t]*")
8546 (old-level (if (string-match org-outline-regexp-bol txt)
8547 (- (match-end 0) (match-beginning 0) 1)
8548 -1))
8549 (force-level (cond (level (prefix-numeric-value level))
8550 ((and (looking-at "[ \t]*$")
8551 (string-match
8552 "^\\*+$" (buffer-substring
8553 (point-at-bol) (point))))
8554 (- (match-end 0) (match-beginning 0)))
8555 ((and (bolp)
8556 (looking-at org-outline-regexp))
8557 (- (match-end 0) (point) 1))))
8558 (previous-level (save-excursion
8559 (condition-case nil
8560 (progn
8561 (outline-previous-visible-heading 1)
8562 (if (looking-at ^re_)
8563 (- (match-end 0) (match-beginning 0) 1)
8565 (error 1))))
8566 (next-level (save-excursion
8567 (condition-case nil
8568 (progn
8569 (or (looking-at org-outline-regexp)
8570 (outline-next-visible-heading 1))
8571 (if (looking-at ^re_)
8572 (- (match-end 0) (match-beginning 0) 1)
8574 (error 1))))
8575 (new-level (or force-level (max previous-level next-level)))
8576 (shift (if (or (= old-level -1)
8577 (= new-level -1)
8578 (= old-level new-level))
8580 (- new-level old-level)))
8581 (delta (if (> shift 0) -1 1))
8582 (func (if (> shift 0) 'org-demote 'org-promote))
8583 (org-odd-levels-only nil)
8584 beg end newend)
8585 ;; Remove the forced level indicator
8586 (if force-level
8587 (delete-region (point-at-bol) (point)))
8588 ;; Paste
8589 (beginning-of-line (if (bolp) 1 2))
8590 (setq beg (point))
8591 (and (fboundp 'org-id-paste-tracker) (org-id-paste-tracker txt))
8592 (insert-before-markers txt)
8593 (unless (string-match "\n\\'" txt) (insert "\n"))
8594 (setq newend (point))
8595 (org-reinstall-markers-in-region beg)
8596 (setq end (point))
8597 (goto-char beg)
8598 (skip-chars-forward " \t\n\r")
8599 (setq beg (point))
8600 (if (and (outline-invisible-p) visp)
8601 (save-excursion (outline-show-heading)))
8602 ;; Shift if necessary
8603 (unless (= shift 0)
8604 (save-restriction
8605 (narrow-to-region beg end)
8606 (while (not (= shift 0))
8607 (org-map-region func (point-min) (point-max))
8608 (setq shift (+ delta shift)))
8609 (goto-char (point-min))
8610 (setq newend (point-max))))
8611 (when (or (org-called-interactively-p 'interactive) for-yank)
8612 (message "Clipboard pasted as level %d subtree" new-level))
8613 (if (and (not for-yank) ; in this case, org-yank will decide about folding
8614 kill-ring
8615 (eq org-subtree-clip (current-kill 0))
8616 org-subtree-clip-folded)
8617 ;; The tree was folded before it was killed/copied
8618 (hide-subtree))
8619 (and for-yank (goto-char newend))
8620 (and remove (setq kill-ring (cdr kill-ring))))))
8622 (defun org-kill-is-subtree-p (&optional txt)
8623 "Check if the current kill is an outline subtree, or a set of trees.
8624 Returns nil if kill does not start with a headline, or if the first
8625 headline level is not the largest headline level in the tree.
8626 So this will actually accept several entries of equal levels as well,
8627 which is OK for `org-paste-subtree'.
8628 If optional TXT is given, check this string instead of the current kill."
8629 (let* ((kill (or txt (and kill-ring (current-kill 0)) ""))
8630 (re (org-get-limited-outline-regexp))
8631 (^re (concat "^" re))
8632 (start-level (and kill
8633 (string-match
8634 (concat "\\`\\([ \t\n\r]*?\n\\)?\\(" re "\\)")
8635 kill)
8636 (- (match-end 2) (match-beginning 2) 1)))
8637 (start (1+ (or (match-beginning 2) -1))))
8638 (if (not start-level)
8639 (progn
8640 nil) ;; does not even start with a heading
8641 (catch 'exit
8642 (while (setq start (string-match ^re kill (1+ start)))
8643 (when (< (- (match-end 0) (match-beginning 0) 1) start-level)
8644 (throw 'exit nil)))
8645 t))))
8647 (defvar org-markers-to-move nil
8648 "Markers that should be moved with a cut-and-paste operation.
8649 Those markers are stored together with their positions relative to
8650 the start of the region.")
8652 (defun org-save-markers-in-region (beg end)
8653 "Check markers in region.
8654 If these markers are between BEG and END, record their position relative
8655 to BEG, so that after moving the block of text, we can put the markers back
8656 into place.
8657 This function gets called just before an entry or tree gets cut from the
8658 buffer. After re-insertion, `org-reinstall-markers-in-region' must be
8659 called immediately, to move the markers with the entries."
8660 (setq org-markers-to-move nil)
8661 (when (featurep 'org-clock)
8662 (org-clock-save-markers-for-cut-and-paste beg end))
8663 (when (featurep 'org-agenda)
8664 (org-agenda-save-markers-for-cut-and-paste beg end)))
8666 (defun org-check-and-save-marker (marker beg end)
8667 "Check if MARKER is between BEG and END.
8668 If yes, remember the marker and the distance to BEG."
8669 (when (and (marker-buffer marker)
8670 (equal (marker-buffer marker) (current-buffer)))
8671 (if (and (>= marker beg) (< marker end))
8672 (push (cons marker (- marker beg)) org-markers-to-move))))
8674 (defun org-reinstall-markers-in-region (beg)
8675 "Move all remembered markers to their position relative to BEG."
8676 (mapc (lambda (x)
8677 (move-marker (car x) (+ beg (cdr x))))
8678 org-markers-to-move)
8679 (setq org-markers-to-move nil))
8681 (defun org-narrow-to-subtree ()
8682 "Narrow buffer to the current subtree."
8683 (interactive)
8684 (save-excursion
8685 (save-match-data
8686 (org-with-limited-levels
8687 (narrow-to-region
8688 (progn (org-back-to-heading t) (point))
8689 (progn (org-end-of-subtree t t)
8690 (if (and (org-at-heading-p) (not (eobp))) (backward-char 1))
8691 (point)))))))
8693 (defun org-narrow-to-block ()
8694 "Narrow buffer to the current block."
8695 (interactive)
8696 (let* ((case-fold-search t)
8697 (blockp (org-between-regexps-p "^[ \t]*#\\+begin_.*"
8698 "^[ \t]*#\\+end_.*")))
8699 (if blockp
8700 (narrow-to-region (car blockp) (cdr blockp))
8701 (user-error "Not in a block"))))
8703 (defun org-clone-subtree-with-time-shift (n &optional shift)
8704 "Clone the task (subtree) at point N times.
8705 The clones will be inserted as siblings.
8707 In interactive use, the user will be prompted for the number of
8708 clones to be produced. If the entry has a timestamp, the user
8709 will also be prompted for a time shift, which may be a repeater
8710 as used in time stamps, for example `+3d'. To disable this,
8711 you can call the function with a universal prefix argument.
8713 When a valid repeater is given and the entry contains any time
8714 stamps, the clones will become a sequence in time, with time
8715 stamps in the subtree shifted for each clone produced. If SHIFT
8716 is nil or the empty string, time stamps will be left alone. The
8717 ID property of the original subtree is removed.
8719 If the original subtree did contain time stamps with a repeater,
8720 the following will happen:
8721 - the repeater will be removed in each clone
8722 - an additional clone will be produced, with the current, unshifted
8723 date(s) in the entry.
8724 - the original entry will be placed *after* all the clones, with
8725 repeater intact.
8726 - the start days in the repeater in the original entry will be shifted
8727 to past the last clone.
8728 In this way you can spell out a number of instances of a repeating task,
8729 and still retain the repeater to cover future instances of the task."
8730 (interactive "nNumber of clones to produce: ")
8731 (let ((shift
8732 (or shift
8733 (if (and (not (equal current-prefix-arg '(4)))
8734 (save-excursion
8735 (re-search-forward org-ts-regexp-both
8736 (save-excursion
8737 (org-end-of-subtree t)
8738 (point)) t)))
8739 (read-from-minibuffer
8740 "Date shift per clone (e.g. +1w, empty to copy unchanged): ")
8741 ""))) ;; No time shift
8742 (n-no-remove -1)
8743 (drawer-re org-drawer-regexp)
8744 (org-clock-re (format "^[ \t]*%s.*$" org-clock-string))
8745 beg end template task idprop
8746 shift-n shift-what doshift nmin nmax)
8747 (if (not (and (integerp n) (> n 0)))
8748 (user-error "Invalid number of replications %s" n))
8749 (if (and (setq doshift (and (stringp shift) (string-match "\\S-" shift)))
8750 (not (string-match "\\`[ \t]*\\+?\\([0-9]+\\)\\([hdwmy]\\)[ \t]*\\'"
8751 shift)))
8752 (user-error "Invalid shift specification %s" shift))
8753 (when doshift
8754 (setq shift-n (string-to-number (match-string 1 shift))
8755 shift-what (cdr (assoc (match-string 2 shift)
8756 '(("d" . day) ("w" . week)
8757 ("m" . month) ("y" . year))))))
8758 (if (eq shift-what 'week) (setq shift-n (* 7 shift-n) shift-what 'day))
8759 (setq nmin 1 nmax n)
8760 (org-back-to-heading t)
8761 (setq beg (point))
8762 (setq idprop (org-entry-get nil "ID"))
8763 (org-end-of-subtree t t)
8764 (or (bolp) (insert "\n"))
8765 (setq end (point))
8766 (setq template (buffer-substring beg end))
8767 (when (and doshift
8768 (string-match "<[^<>\n]+ [.+]?\\+[0-9]+[hdwmy][^<>\n]*>" template))
8769 (delete-region beg end)
8770 (setq end beg)
8771 (setq nmin 0 nmax (1+ nmax) n-no-remove nmax))
8772 (goto-char end)
8773 (loop for n from nmin to nmax do
8774 ;; prepare clone
8775 (with-temp-buffer
8776 (insert template)
8777 (org-mode)
8778 (goto-char (point-min))
8779 (org-show-subtree)
8780 (and idprop (if org-clone-delete-id
8781 (org-entry-delete nil "ID")
8782 (org-id-get-create t)))
8783 (unless (= n 0)
8784 (while (re-search-forward org-clock-re nil t)
8785 (kill-whole-line))
8786 (goto-char (point-min))
8787 (while (re-search-forward drawer-re nil t)
8788 (org-remove-empty-drawer-at (point))))
8789 (goto-char (point-min))
8790 (when doshift
8791 (while (re-search-forward org-ts-regexp-both nil t)
8792 (org-timestamp-change (* n shift-n) shift-what))
8793 (unless (= n n-no-remove)
8794 (goto-char (point-min))
8795 (while (re-search-forward org-ts-regexp nil t)
8796 (save-excursion
8797 (goto-char (match-beginning 0))
8798 (if (looking-at "<[^<>\n]+\\( +[.+]?\\+[0-9]+[hdwmy]\\)")
8799 (delete-region (match-beginning 1) (match-end 1)))))))
8800 (setq task (buffer-string)))
8801 (insert task))
8802 (goto-char beg)))
8804 ;;; Outline Sorting
8806 (defun org-sort (with-case)
8807 "Call `org-sort-entries', `org-table-sort-lines' or `org-sort-list'.
8808 Optional argument WITH-CASE means sort case-sensitively."
8809 (interactive "P")
8810 (cond
8811 ((org-at-table-p) (org-call-with-arg 'org-table-sort-lines with-case))
8812 ((org-at-item-p) (org-call-with-arg 'org-sort-list with-case))
8814 (org-call-with-arg 'org-sort-entries with-case))))
8816 (defun org-sort-remove-invisible (s)
8817 "Remove invisible links from string S."
8818 (remove-text-properties 0 (length s) org-rm-props s)
8819 (while (string-match org-bracket-link-regexp s)
8820 (setq s (replace-match (if (match-end 2)
8821 (match-string 3 s)
8822 (match-string 1 s)) t t s)))
8823 (let ((st (format " %s " s)))
8824 (while (string-match org-emph-re st)
8825 (setq st (replace-match (format " %s " (match-string 4 st)) t t st)))
8826 (setq s (substring st 1 -1)))
8829 (defvar org-priority-regexp) ; defined later in the file
8831 (defvar org-after-sorting-entries-or-items-hook nil
8832 "Hook that is run after a bunch of entries or items have been sorted.
8833 When children are sorted, the cursor is in the parent line when this
8834 hook gets called. When a region or a plain list is sorted, the cursor
8835 will be in the first entry of the sorted region/list.")
8837 (defun org-sort-entries
8838 (&optional with-case sorting-type getkey-func compare-func property)
8839 "Sort entries on a certain level of an outline tree.
8840 If there is an active region, the entries in the region are sorted.
8841 Else, if the cursor is before the first entry, sort the top-level items.
8842 Else, the children of the entry at point are sorted.
8844 Sorting can be alphabetically, numerically, by date/time as given by
8845 a time stamp, by a property, by priority order, or by a custom function.
8847 The command prompts for the sorting type unless it has been given to the
8848 function through the SORTING-TYPE argument, which needs to be a character,
8849 \(?n ?N ?a ?A ?t ?T ?s ?S ?d ?D ?p ?P ?o ?O ?r ?R ?f ?F ?k ?K). Here is
8850 the precise meaning of each character:
8852 a Alphabetically, ignoring the TODO keyword and the priority, if any.
8853 c By creation time, which is assumed to be the first inactive time stamp
8854 at the beginning of a line.
8855 d By deadline date/time.
8856 k By clocking time.
8857 n Numerically, by converting the beginning of the entry/item to a number.
8858 o By order of TODO keywords.
8859 p By priority according to the cookie.
8860 r By the value of a property.
8861 s By scheduled date/time.
8862 t By date/time, either the first active time stamp in the entry, or, if
8863 none exist, by the first inactive one.
8865 Capital letters will reverse the sort order.
8867 If the SORTING-TYPE is ?f or ?F, then GETKEY-FUNC specifies a function to be
8868 called with point at the beginning of the record. It must return either
8869 a string or a number that should serve as the sorting key for that record.
8871 Comparing entries ignores case by default. However, with an optional argument
8872 WITH-CASE, the sorting considers case as well.
8874 Sorting is done against the visible part of the headlines, it ignores hidden
8875 links.
8877 When sorting is done, call `org-after-sorting-entries-or-items-hook'."
8878 (interactive "P")
8879 (let ((case-func (if with-case 'identity 'downcase))
8880 (cmstr
8881 ;; The clock marker is lost when using `sort-subr', let's
8882 ;; store the clocking string.
8883 (when (equal (marker-buffer org-clock-marker) (current-buffer))
8884 (save-excursion
8885 (goto-char org-clock-marker)
8886 (looking-back "^.*") (match-string-no-properties 0))))
8887 start beg end stars re re2
8888 txt what tmp)
8889 ;; Find beginning and end of region to sort
8890 (cond
8891 ((org-region-active-p)
8892 ;; we will sort the region
8893 (setq end (region-end)
8894 what "region")
8895 (goto-char (region-beginning))
8896 (if (not (org-at-heading-p)) (outline-next-heading))
8897 (setq start (point)))
8898 ((or (org-at-heading-p)
8899 (ignore-errors (progn (org-back-to-heading) t)))
8900 ;; we will sort the children of the current headline
8901 (org-back-to-heading)
8902 (setq start (point)
8903 end (progn (org-end-of-subtree t t)
8904 (or (bolp) (insert "\n"))
8905 (when (>= (org-back-over-empty-lines) 1)
8906 (forward-line 1))
8907 (point))
8908 what "children")
8909 (goto-char start)
8910 (show-subtree)
8911 (outline-next-heading))
8913 ;; we will sort the top-level entries in this file
8914 (goto-char (point-min))
8915 (or (org-at-heading-p) (outline-next-heading))
8916 (setq start (point))
8917 (goto-char (point-max))
8918 (beginning-of-line 1)
8919 (when (looking-at ".*?\\S-")
8920 ;; File ends in a non-white line
8921 (end-of-line 1)
8922 (insert "\n"))
8923 (setq end (point-max))
8924 (setq what "top-level")
8925 (goto-char start)
8926 (show-all)))
8928 (setq beg (point))
8929 (when (>= beg end) (goto-char start) (user-error "Nothing to sort"))
8931 (looking-at "\\(\\*+\\)")
8932 (setq stars (match-string 1)
8933 re (concat "^" (regexp-quote stars) " +")
8934 re2 (concat "^" (regexp-quote (substring stars 0 -1)) "[ \t\n]")
8935 txt (buffer-substring beg end))
8936 (if (not (equal (substring txt -1) "\n")) (setq txt (concat txt "\n")))
8937 (if (and (not (equal stars "*")) (string-match re2 txt))
8938 (user-error "Region to sort contains a level above the first entry"))
8940 (unless sorting-type
8941 (message
8942 "Sort %s: [a]lpha [n]umeric [p]riority p[r]operty todo[o]rder [f]unc
8943 [t]ime [s]cheduled [d]eadline [c]reated cloc[k]ing
8944 A/N/P/R/O/F/T/S/D/C/K means reversed:"
8945 what)
8946 (setq sorting-type (read-char-exclusive))
8948 (unless getkey-func
8949 (and (= (downcase sorting-type) ?f)
8950 (setq getkey-func
8951 (org-icompleting-read "Sort using function: "
8952 obarray 'fboundp t nil nil))
8953 (setq getkey-func (intern getkey-func))))
8955 (and (= (downcase sorting-type) ?r)
8956 (not property)
8957 (setq property
8958 (org-icompleting-read "Property: "
8959 (mapcar 'list (org-buffer-property-keys t))
8960 nil t))))
8962 (when (member sorting-type '(?k ?K)) (org-clock-sum))
8963 (message "Sorting entries...")
8965 (save-restriction
8966 (narrow-to-region start end)
8967 (let ((dcst (downcase sorting-type))
8968 (case-fold-search nil)
8969 (now (current-time)))
8970 (sort-subr
8971 (/= dcst sorting-type)
8972 ;; This function moves to the beginning character of the "record" to
8973 ;; be sorted.
8974 (lambda nil
8975 (if (re-search-forward re nil t)
8976 (goto-char (match-beginning 0))
8977 (goto-char (point-max))))
8978 ;; This function moves to the last character of the "record" being
8979 ;; sorted.
8980 (lambda nil
8981 (save-match-data
8982 (condition-case nil
8983 (outline-forward-same-level 1)
8984 (error
8985 (goto-char (point-max))))))
8986 ;; This function returns the value that gets sorted against.
8987 (lambda nil
8988 (cond
8989 ((= dcst ?n)
8990 (if (looking-at org-complex-heading-regexp)
8991 (string-to-number (org-sort-remove-invisible (match-string 4)))
8992 nil))
8993 ((= dcst ?a)
8994 (if (looking-at org-complex-heading-regexp)
8995 (funcall case-func (org-sort-remove-invisible (match-string 4)))
8996 nil))
8997 ((= dcst ?k)
8998 (or (get-text-property (point) :org-clock-minutes) 0))
8999 ((= dcst ?t)
9000 (let ((end (save-excursion (outline-next-heading) (point))))
9001 (if (or (re-search-forward org-ts-regexp end t)
9002 (re-search-forward org-ts-regexp-both end t))
9003 (org-time-string-to-seconds (match-string 0))
9004 (org-float-time now))))
9005 ((= dcst ?c)
9006 (let ((end (save-excursion (outline-next-heading) (point))))
9007 (if (re-search-forward
9008 (concat "^[ \t]*\\[" org-ts-regexp1 "\\]")
9009 end t)
9010 (org-time-string-to-seconds (match-string 0))
9011 (org-float-time now))))
9012 ((= dcst ?s)
9013 (let ((end (save-excursion (outline-next-heading) (point))))
9014 (if (re-search-forward org-scheduled-time-regexp end t)
9015 (org-time-string-to-seconds (match-string 1))
9016 (org-float-time now))))
9017 ((= dcst ?d)
9018 (let ((end (save-excursion (outline-next-heading) (point))))
9019 (if (re-search-forward org-deadline-time-regexp end t)
9020 (org-time-string-to-seconds (match-string 1))
9021 (org-float-time now))))
9022 ((= dcst ?p)
9023 (if (re-search-forward org-priority-regexp (point-at-eol) t)
9024 (string-to-char (match-string 2))
9025 org-default-priority))
9026 ((= dcst ?r)
9027 (or (org-entry-get nil property) ""))
9028 ((= dcst ?o)
9029 (if (looking-at org-complex-heading-regexp)
9030 (let* ((m (match-string 2))
9031 (s (if (member m org-done-keywords) '- '+)))
9032 (- 99 (funcall s (length (member m org-todo-keywords-1)))))))
9033 ((= dcst ?f)
9034 (if getkey-func
9035 (progn
9036 (setq tmp (funcall getkey-func))
9037 (if (stringp tmp) (setq tmp (funcall case-func tmp)))
9038 tmp)
9039 (error "Invalid key function `%s'" getkey-func)))
9040 (t (error "Invalid sorting type `%c'" sorting-type))))
9042 (cond
9043 ((= dcst ?a) 'string<)
9044 ((= dcst ?f) compare-func)
9045 ((member dcst '(?p ?t ?s ?d ?c ?k)) '<)))))
9046 (run-hooks 'org-after-sorting-entries-or-items-hook)
9047 ;; Reset the clock marker if needed
9048 (when cmstr
9049 (save-excursion
9050 (goto-char start)
9051 (search-forward cmstr nil t)
9052 (move-marker org-clock-marker (point))))
9053 (message "Sorting entries...done")))
9055 (defun org-do-sort (table what &optional with-case sorting-type)
9056 "Sort TABLE of WHAT according to SORTING-TYPE.
9057 The user will be prompted for the SORTING-TYPE if the call to this
9058 function does not specify it.
9059 WHAT is only for the prompt, to indicate what is being sorted.
9060 The sorting key will be extracted from the car of the elements of
9061 the table.
9062 If WITH-CASE is non-nil, the sorting will be case-sensitive."
9063 (unless sorting-type
9064 (message
9065 "Sort %s: [a]lphabetic, [n]umeric, [t]ime. A/N/T means reversed:"
9066 what)
9067 (setq sorting-type (read-char-exclusive)))
9068 (let ((dcst (downcase sorting-type))
9069 extractfun comparefun)
9070 ;; Define the appropriate functions
9071 (cond
9072 ((= dcst ?n)
9073 (setq extractfun 'string-to-number
9074 comparefun (if (= dcst sorting-type) '< '>)))
9075 ((= dcst ?a)
9076 (setq extractfun (if with-case (lambda(x) (org-sort-remove-invisible x))
9077 (lambda(x) (downcase (org-sort-remove-invisible x))))
9078 comparefun (if (= dcst sorting-type)
9079 'string<
9080 (lambda (a b) (and (not (string< a b))
9081 (not (string= a b)))))))
9082 ((= dcst ?t)
9083 (setq extractfun
9084 (lambda (x)
9085 (cond ((or (string-match org-ts-regexp x)
9086 (string-match org-ts-regexp-both x))
9087 (org-float-time
9088 (org-time-string-to-time (match-string 0 x))))
9089 ((string-match "[0-9]\\{1,2\\}:[0-9]\\{2\\}" x)
9090 (org-hh:mm-string-to-minutes x))
9091 (t 0)))
9092 comparefun (if (= dcst sorting-type) '< '>)))
9093 (t (error "Invalid sorting type `%c'" sorting-type)))
9095 (sort (mapcar (lambda (x) (cons (funcall extractfun (car x)) (cdr x)))
9096 table)
9097 (lambda (a b) (funcall comparefun (car a) (car b))))))
9100 ;;; The orgstruct minor mode
9102 ;; Define a minor mode which can be used in other modes in order to
9103 ;; integrate the org-mode structure editing commands.
9105 ;; This is really a hack, because the org-mode structure commands use
9106 ;; keys which normally belong to the major mode. Here is how it
9107 ;; works: The minor mode defines all the keys necessary to operate the
9108 ;; structure commands, but wraps the commands into a function which
9109 ;; tests if the cursor is currently at a headline or a plain list
9110 ;; item. If that is the case, the structure command is used,
9111 ;; temporarily setting many Org-mode variables like regular
9112 ;; expressions for filling etc. However, when any of those keys is
9113 ;; used at a different location, function uses `key-binding' to look
9114 ;; up if the key has an associated command in another currently active
9115 ;; keymap (minor modes, major mode, global), and executes that
9116 ;; command. There might be problems if any of the keys is otherwise
9117 ;; used as a prefix key.
9119 (defcustom orgstruct-heading-prefix-regexp ""
9120 "Regexp that matches the custom prefix of Org headlines in
9121 orgstruct(++)-mode."
9122 :group 'org
9123 :version "24.4"
9124 :package-version '(Org . "8.3")
9125 :type 'regexp)
9126 ;;;###autoload(put 'orgstruct-heading-prefix-regexp 'safe-local-variable 'stringp)
9128 (defcustom orgstruct-setup-hook nil
9129 "Hook run after orgstruct-mode-map is filled."
9130 :group 'org
9131 :version "24.4"
9132 :package-version '(Org . "8.0")
9133 :type 'hook)
9135 (defvar orgstruct-initialized nil)
9137 (defvar org-local-vars nil
9138 "List of local variables, for use by `orgstruct-mode'.")
9140 ;;;###autoload
9141 (define-minor-mode orgstruct-mode
9142 "Toggle the minor mode `orgstruct-mode'.
9143 This mode is for using Org-mode structure commands in other
9144 modes. The following keys behave as if Org-mode were active, if
9145 the cursor is on a headline, or on a plain list item (both as
9146 defined by Org-mode)."
9147 nil " OrgStruct" (make-sparse-keymap)
9148 (funcall (if orgstruct-mode
9149 'add-to-invisibility-spec
9150 'remove-from-invisibility-spec)
9151 '(outline . t))
9152 (when orgstruct-mode
9153 (org-load-modules-maybe)
9154 (unless orgstruct-initialized
9155 (orgstruct-setup)
9156 (setq orgstruct-initialized t))))
9158 ;;;###autoload
9159 (defun turn-on-orgstruct ()
9160 "Unconditionally turn on `orgstruct-mode'."
9161 (orgstruct-mode 1))
9163 (defvar org-fb-vars nil)
9164 (make-variable-buffer-local 'org-fb-vars)
9165 (defun orgstruct++-mode (&optional arg)
9166 "Toggle `orgstruct-mode', the enhanced version of it.
9167 In addition to setting orgstruct-mode, this also exports all
9168 indentation and autofilling variables from org-mode into the
9169 buffer. It will also recognize item context in multiline items."
9170 (interactive "P")
9171 (setq arg (prefix-numeric-value (or arg (if orgstruct-mode -1 1))))
9172 (if (< arg 1)
9173 (progn (orgstruct-mode -1)
9174 (mapc (lambda(v)
9175 (org-set-local (car v)
9176 (if (eq (car-safe (cadr v)) 'quote) (cadadr v) (cadr v))))
9177 org-fb-vars))
9178 (orgstruct-mode 1)
9179 (setq org-fb-vars nil)
9180 (unless org-local-vars
9181 (setq org-local-vars (org-get-local-variables)))
9182 (let (var val)
9183 (mapc
9184 (lambda (x)
9185 (when (string-match
9186 "^\\(paragraph-\\|auto-fill\\|normal-auto-fill\\|fill-paragraph\\|fill-prefix\\|indent-\\)"
9187 (symbol-name (car x)))
9188 (setq var (car x) val (nth 1 x))
9189 (push (list var `(quote ,(eval var))) org-fb-vars)
9190 (org-set-local var (if (eq (car-safe val) 'quote) (nth 1 val) val))))
9191 org-local-vars)
9192 (org-set-local 'orgstruct-is-++ t))))
9194 (defvar orgstruct-is-++ nil
9195 "Is `orgstruct-mode' in ++ version in the current-buffer?")
9196 (make-variable-buffer-local 'orgstruct-is-++)
9198 ;;;###autoload
9199 (defun turn-on-orgstruct++ ()
9200 "Unconditionally turn on `orgstruct++-mode'."
9201 (orgstruct++-mode 1))
9203 (defun orgstruct-error ()
9204 "Error when there is no default binding for a structure key."
9205 (interactive)
9206 (funcall (if (fboundp 'user-error)
9207 'user-error
9208 'error)
9209 "This key has no function outside structure elements"))
9211 (defun orgstruct-setup ()
9212 "Setup orgstruct keymap."
9213 (dolist (cell '((org-demote . t)
9214 (org-metaleft . t)
9215 (org-metaright . t)
9216 (org-promote . t)
9217 (org-shiftmetaleft . t)
9218 (org-shiftmetaright . t)
9219 org-backward-element
9220 org-backward-heading-same-level
9221 org-ctrl-c-ret
9222 org-ctrl-c-minus
9223 org-ctrl-c-star
9224 org-cycle
9225 org-forward-heading-same-level
9226 org-insert-heading
9227 org-insert-heading-respect-content
9228 org-kill-note-or-show-branches
9229 org-mark-subtree
9230 org-meta-return
9231 org-metadown
9232 org-metaup
9233 org-narrow-to-subtree
9234 org-promote-subtree
9235 org-reveal
9236 org-shiftdown
9237 org-shiftleft
9238 org-shiftmetadown
9239 org-shiftmetaup
9240 org-shiftright
9241 org-shifttab
9242 org-shifttab
9243 org-shiftup
9244 org-show-subtree
9245 org-sort
9246 org-up-element
9247 outline-demote
9248 outline-next-visible-heading
9249 outline-previous-visible-heading
9250 outline-promote
9251 outline-up-heading
9252 show-children))
9253 (let ((f (or (car-safe cell) cell))
9254 (disable-when-heading-prefix (cdr-safe cell)))
9255 (when (fboundp f)
9256 (let ((new-bindings))
9257 (dolist (binding (nconc (where-is-internal f org-mode-map)
9258 (where-is-internal f outline-mode-map)))
9259 (push binding new-bindings)
9260 ;; TODO use local-function-key-map
9261 (dolist (rep '(("<tab>" . "TAB")
9262 ("<return>" . "RET")
9263 ("<escape>" . "ESC")
9264 ("<delete>" . "DEL")))
9265 (setq binding (read-kbd-macro
9266 (let ((case-fold-search))
9267 (replace-regexp-in-string
9268 (regexp-quote (cdr rep))
9269 (car rep)
9270 (key-description binding)))))
9271 (pushnew binding new-bindings :test 'equal)))
9272 (dolist (binding new-bindings)
9273 (let ((key (lookup-key orgstruct-mode-map binding)))
9274 (when (or (not key) (numberp key))
9275 (ignore-errors
9276 (org-defkey orgstruct-mode-map
9277 binding
9278 (orgstruct-make-binding
9279 f binding disable-when-heading-prefix))))))))))
9280 (run-hooks 'orgstruct-setup-hook))
9282 (defun orgstruct-make-binding (fun key disable-when-heading-prefix)
9283 "Create a function for binding in the structure minor mode.
9284 FUN is the command to call inside a table. KEY is the key that
9285 should be checked in for a command to execute outside of tables.
9286 Non-nil `disable-when-heading-prefix' means to disable the command
9287 if `orgstruct-heading-prefix-regexp' is not empty."
9288 (let ((name (concat "orgstruct-hijacker-" (symbol-name fun))))
9289 (let ((nname name)
9290 (i 0))
9291 (while (fboundp (intern nname))
9292 (setq nname (format "%s-%d" name (setq i (1+ i)))))
9293 (setq name (intern nname)))
9294 (eval
9295 (let ((bindings '((org-heading-regexp
9296 (concat "^"
9297 orgstruct-heading-prefix-regexp
9298 "\\(\\*+\\)\\(?: +\\(.*?\\)\\)?[ ]*$"))
9299 (org-outline-regexp
9300 (concat orgstruct-heading-prefix-regexp "\\*+ "))
9301 (org-outline-regexp-bol
9302 (concat "^" org-outline-regexp))
9303 (outline-regexp org-outline-regexp)
9304 (outline-heading-end-regexp "\n")
9305 (outline-level 'org-outline-level)
9306 (outline-heading-alist))))
9307 `(defun ,name (arg)
9308 ,(concat "In Structure, run `" (symbol-name fun) "'.\n"
9309 "Outside of structure, run the binding of `"
9310 (key-description key) "'."
9311 (when disable-when-heading-prefix
9312 (concat
9313 "\nIf `orgstruct-heading-prefix-regexp' is not empty, this command will always fall\n"
9314 "back to the default binding due to limitations of Org's implementation of\n"
9315 "`" (symbol-name fun) "'.")))
9316 (interactive "p")
9317 (let* ((disable
9318 ,(and disable-when-heading-prefix
9319 '(not (string= orgstruct-heading-prefix-regexp ""))))
9320 (fallback
9321 (or disable
9322 (not
9323 (let* ,bindings
9324 (org-context-p 'headline 'item
9325 ,(when (memq fun
9326 '(org-insert-heading
9327 org-insert-heading-respect-content
9328 org-meta-return))
9329 '(when orgstruct-is-++
9330 'item-body))))))))
9331 (if fallback
9332 (let* ((orgstruct-mode)
9333 (binding
9334 (let ((key ,key))
9335 (catch 'exit
9336 (dolist
9337 (rep
9338 '(nil
9339 ("<\\([^>]*\\)tab>" . "\\1TAB")
9340 ("<\\([^>]*\\)return>" . "\\1RET")
9341 ("<\\([^>]*\\)escape>" . "\\1ESC")
9342 ("<\\([^>]*\\)delete>" . "\\1DEL"))
9343 nil)
9344 (when rep
9345 (setq key (read-kbd-macro
9346 (let ((case-fold-search))
9347 (replace-regexp-in-string
9348 (car rep)
9349 (cdr rep)
9350 (key-description key))))))
9351 (when (key-binding key)
9352 (throw 'exit (key-binding key))))))))
9353 (if (keymapp binding)
9354 (org-set-transient-map binding)
9355 (let ((func (or binding
9356 (unless disable
9357 'orgstruct-error))))
9358 (when func
9359 (call-interactively func)))))
9360 (org-run-like-in-org-mode
9361 (lambda ()
9362 (interactive)
9363 (let* ,bindings
9364 (call-interactively ',fun)))))))))
9365 name))
9367 (defun org-contextualize-keys (alist contexts)
9368 "Return valid elements in ALIST depending on CONTEXTS.
9370 `org-agenda-custom-commands' or `org-capture-templates' are the
9371 values used for ALIST, and `org-agenda-custom-commands-contexts'
9372 or `org-capture-templates-contexts' are the associated contexts
9373 definitions."
9374 (let ((contexts
9375 ;; normalize contexts
9376 (mapcar
9377 (lambda(c) (cond ((listp (cadr c))
9378 (list (car c) (car c) (cadr c)))
9379 ((string= "" (cadr c))
9380 (list (car c) (car c) (caddr c)))
9381 (t c))) contexts))
9382 (a alist) c r s)
9383 ;; loop over all commands or templates
9384 (while (setq c (pop a))
9385 (let (vrules repl)
9386 (cond
9387 ((not (assoc (car c) contexts))
9388 (push c r))
9389 ((and (assoc (car c) contexts)
9390 (setq vrules (org-contextualize-validate-key
9391 (car c) contexts)))
9392 (mapc (lambda (vr)
9393 (when (not (equal (car vr) (cadr vr)))
9394 (setq repl vr))) vrules)
9395 (if (not repl) (push c r)
9396 (push (cadr repl) s)
9397 (push
9398 (cons (car c)
9399 (cdr (or (assoc (cadr repl) alist)
9400 (error "Undefined key `%s' as contextual replacement for `%s'"
9401 (cadr repl) (car c)))))
9402 r))))))
9403 ;; Return limited ALIST, possibly with keys modified, and deduplicated
9404 (delq
9406 (delete-dups
9407 (mapcar (lambda (x)
9408 (let ((tpl (car x)))
9409 (when (not (delq
9411 (mapcar (lambda(y)
9412 (equal y tpl)) s))) x)))
9413 (reverse r))))))
9415 (defun org-contextualize-validate-key (key contexts)
9416 "Check CONTEXTS for agenda or capture KEY."
9417 (let (r rr res)
9418 (while (setq r (pop contexts))
9419 (mapc
9420 (lambda (rr)
9421 (when
9422 (and (equal key (car r))
9423 (if (functionp rr) (funcall rr)
9424 (or (and (eq (car rr) 'in-file)
9425 (buffer-file-name)
9426 (string-match (cdr rr) (buffer-file-name)))
9427 (and (eq (car rr) 'in-mode)
9428 (string-match (cdr rr) (symbol-name major-mode)))
9429 (and (eq (car rr) 'in-buffer)
9430 (string-match (cdr rr) (buffer-name)))
9431 (when (and (eq (car rr) 'not-in-file)
9432 (buffer-file-name))
9433 (not (string-match (cdr rr) (buffer-file-name))))
9434 (when (eq (car rr) 'not-in-mode)
9435 (not (string-match (cdr rr) (symbol-name major-mode))))
9436 (when (eq (car rr) 'not-in-buffer)
9437 (not (string-match (cdr rr) (buffer-name)))))))
9438 (push r res)))
9439 (car (last r))))
9440 (delete-dups (delq nil res))))
9442 (defun org-context-p (&rest contexts)
9443 "Check if local context is any of CONTEXTS.
9444 Possible values in the list of contexts are `table', `headline', and `item'."
9445 (let ((pos (point)))
9446 (goto-char (point-at-bol))
9447 (prog1 (or (and (memq 'table contexts)
9448 (looking-at "[ \t]*|"))
9449 (and (memq 'headline contexts)
9450 (looking-at org-outline-regexp))
9451 (and (memq 'item contexts)
9452 (looking-at "[ \t]*\\([-+*] \\|[0-9]+[.)] \\)"))
9453 (and (memq 'item-body contexts)
9454 (org-in-item-p)))
9455 (goto-char pos))))
9457 (defun org-get-local-variables ()
9458 "Return a list of all local variables in an Org mode buffer."
9459 (let (varlist)
9460 (with-current-buffer (get-buffer-create "*Org tmp*")
9461 (erase-buffer)
9462 (org-mode)
9463 (setq varlist (buffer-local-variables)))
9464 (kill-buffer "*Org tmp*")
9465 (delq nil
9466 (mapcar
9467 (lambda (x)
9468 (setq x
9469 (if (symbolp x)
9470 (list x)
9471 (list (car x) (cdr x))))
9472 (if (and (not (get (car x) 'org-state))
9473 (string-match
9474 "^\\(org-\\|orgtbl-\\|outline-\\|comment-\\|paragraph-\\|auto-fill\\|normal-auto-fill\\|fill-paragraph\\|indent-\\)"
9475 (symbol-name (car x))))
9476 x nil))
9477 varlist))))
9479 (defun org-clone-local-variables (from-buffer &optional regexp)
9480 "Clone local variables from FROM-BUFFER.
9481 Optional argument REGEXP selects variables to clone."
9482 (mapc
9483 (lambda (pair)
9484 (and (symbolp (car pair))
9485 (or (null regexp)
9486 (string-match regexp (symbol-name (car pair))))
9487 (set (make-local-variable (car pair))
9488 (cdr pair))))
9489 (buffer-local-variables from-buffer)))
9491 ;;;###autoload
9492 (defun org-run-like-in-org-mode (cmd)
9493 "Run a command, pretending that the current buffer is in Org-mode.
9494 This will temporarily bind local variables that are typically bound in
9495 Org-mode to the values they have in Org-mode, and then interactively
9496 call CMD."
9497 (org-load-modules-maybe)
9498 (unless org-local-vars
9499 (setq org-local-vars (org-get-local-variables)))
9500 (let (binds)
9501 (dolist (var org-local-vars)
9502 (when (or (not (boundp (car var)))
9503 (eq (symbol-value (car var))
9504 (default-value (car var))))
9505 (push (list (car var) `(quote ,(cadr var))) binds)))
9506 (eval `(let ,binds
9507 (call-interactively (quote ,cmd))))))
9509 (defun org-get-category (&optional pos force-refresh)
9510 "Get the category applying to position POS."
9511 (save-match-data
9512 (if force-refresh (org-refresh-category-properties))
9513 (let ((pos (or pos (point))))
9514 (or (get-text-property pos 'org-category)
9515 (progn (org-refresh-category-properties)
9516 (get-text-property pos 'org-category))))))
9518 ;;; Refresh properties
9520 (defun org-refresh-properties (dprop tprop)
9521 "Refresh buffer text properties.
9522 DPROP is the drawer property and TPROP is either the
9523 corresponding text property to set, or an alist with each element
9524 being a text property (as a symbol) and a function to apply to
9525 the value of the drawer property."
9526 (let ((case-fold-search t)
9527 (inhibit-read-only t))
9528 (org-with-silent-modifications
9529 (save-excursion
9530 (save-restriction
9531 (widen)
9532 (goto-char (point-min))
9533 (while (re-search-forward (concat "^[ \t]*:" dprop ": +\\(.*\\)[ \t]*$") nil t)
9534 (org-refresh-property tprop (org-match-string-no-properties 1))))))))
9536 (defun org-refresh-property (tprop p)
9537 "Refresh the buffer text property TPROP from the drawer property P.
9538 The refresh happens only for the current tree (not subtree)."
9539 (save-excursion
9540 (org-back-to-heading t)
9541 ;; tprop is a text property symbol
9542 (if (symbolp tprop)
9543 (put-text-property
9544 (point) (or (outline-next-heading) (point-max)) tprop p)
9545 ;; tprop is an alist with (properties . function) elements
9546 (mapc (lambda(al)
9547 (save-excursion
9548 (put-text-property
9549 (point-at-bol) (or (outline-next-heading) (point-max))
9550 (car al)
9551 (funcall (cdr al) p))))
9552 tprop))))
9554 (defun org-refresh-category-properties ()
9555 "Refresh category text properties in the buffer."
9556 (let ((case-fold-search t)
9557 (inhibit-read-only t)
9558 (def-cat (cond
9559 ((null org-category)
9560 (if buffer-file-name
9561 (file-name-sans-extension
9562 (file-name-nondirectory buffer-file-name))
9563 "???"))
9564 ((symbolp org-category) (symbol-name org-category))
9565 (t org-category)))
9566 beg end cat pos optionp)
9567 (org-with-silent-modifications
9568 (save-excursion
9569 (save-restriction
9570 (widen)
9571 (goto-char (point-min))
9572 (put-text-property (point) (point-max) 'org-category def-cat)
9573 (while (re-search-forward
9574 "^[ \t]*\\(\\(?:#\\+\\|:\\)CATEGORY:\\)\\(.*\\)" nil t)
9575 (setq pos (match-end 0)
9576 optionp (equal (char-after (match-beginning 0)) ?#)
9577 cat (org-trim (match-string 2)))
9578 (if optionp
9579 (setq beg (point-at-bol) end (point-max))
9580 (org-back-to-heading t)
9581 (setq beg (point) end (org-end-of-subtree t t)))
9582 (put-text-property beg end 'org-category cat)
9583 (goto-char pos)))))))
9585 (defun org-refresh-stats-properties ()
9586 "Refresh stats text properties in the buffer."
9587 (let (stats)
9588 (org-with-silent-modifications
9589 (save-excursion
9590 (save-restriction
9591 (widen)
9592 (goto-char (point-min))
9593 (while (re-search-forward
9594 (concat org-outline-regexp-bol ".*"
9595 "\\(?:\\[\\([0-9]+\\)%\\|\\([0-9]+\\)/\\([0-9]+\\)\\]\\)")
9596 nil t)
9597 (setq stats (cond ((equal (match-string 3) "0") 0)
9598 ((match-string 2)
9599 (/ (* (string-to-number (match-string 2)) 100)
9600 (string-to-number (match-string 3))))
9601 (t (string-to-number (match-string 1)))))
9602 (org-back-to-heading t)
9603 (put-text-property (point) (progn (org-end-of-subtree t t) (point))
9604 'org-stats stats)))))))
9606 (defun org-refresh-effort-properties ()
9607 "Refresh effort properties"
9608 (org-refresh-properties
9609 org-effort-property
9610 '((effort . identity)
9611 (effort-minutes . org-duration-string-to-minutes))))
9613 ;;;; Link Stuff
9615 ;;; Link abbreviations
9617 (defun org-link-expand-abbrev (link)
9618 "Apply replacements as defined in `org-link-abbrev-alist'."
9619 (if (string-match "^\\([^:]*\\)\\(::?\\(.*\\)\\)?$" link)
9620 (let* ((key (match-string 1 link))
9621 (as (or (assoc key org-link-abbrev-alist-local)
9622 (assoc key org-link-abbrev-alist)))
9623 (tag (and (match-end 2) (match-string 3 link)))
9624 rpl)
9625 (if (not as)
9626 link
9627 (setq rpl (cdr as))
9628 (cond
9629 ((symbolp rpl) (funcall rpl tag))
9630 ((string-match "%(\\([^)]+\\))" rpl)
9631 (replace-match
9632 (save-match-data
9633 (funcall (intern-soft (match-string 1 rpl)) tag)) t t rpl))
9634 ((string-match "%s" rpl) (replace-match (or tag "") t t rpl))
9635 ((string-match "%h" rpl)
9636 (replace-match (url-hexify-string (or tag "")) t t rpl))
9637 (t (concat rpl tag)))))
9638 link))
9640 ;;; Storing and inserting links
9642 (defvar org-insert-link-history nil
9643 "Minibuffer history for links inserted with `org-insert-link'.")
9645 (defvar org-stored-links nil
9646 "Contains the links stored with `org-store-link'.")
9648 (defvar org-store-link-plist nil
9649 "Plist with info about the most recently link created with `org-store-link'.")
9651 (defvar org-link-protocols nil
9652 "Link protocols added to Org-mode using `org-add-link-type'.")
9654 (defvar org-store-link-functions nil
9655 "List of functions that are called to create and store a link.
9656 Each function will be called in turn until one returns a non-nil
9657 value. Each function should check if it is responsible for creating
9658 this link (for example by looking at the major mode).
9659 If not, it must exit and return nil.
9660 If yes, it should return a non-nil value after a calling
9661 `org-store-link-props' with a list of properties and values.
9662 Special properties are:
9664 :type The link prefix, like \"http\". This must be given.
9665 :link The link, like \"http://www.astro.uva.nl/~dominik\".
9666 This is obligatory as well.
9667 :description Optional default description for the second pair
9668 of brackets in an Org-mode link. The user can still change
9669 this when inserting this link into an Org-mode buffer.
9671 In addition to these, any additional properties can be specified
9672 and then used in capture templates.")
9674 (defun org-add-link-type (type &optional follow export)
9675 "Add TYPE to the list of `org-link-types'.
9676 Re-compute all regular expressions depending on `org-link-types'
9678 FOLLOW and EXPORT are two functions.
9680 FOLLOW should take the link path as the single argument and do whatever
9681 is necessary to follow the link, for example find a file or display
9682 a mail message.
9684 EXPORT should format the link path for export to one of the export formats.
9685 It should be a function accepting three arguments:
9687 path the path of the link, the text after the prefix (like \"http:\")
9688 desc the description of the link, if any, or a description added by
9689 org-export-normalize-links if there is none
9690 format the export format, a symbol like `html' or `latex' or `ascii'..
9692 The function may use the FORMAT information to return different values
9693 depending on the format. The return value will be put literally into
9694 the exported file. If the return value is nil, this means Org should
9695 do what it normally does with links which do not have EXPORT defined.
9697 Org mode has a built-in default for exporting links. If you are happy with
9698 this default, there is no need to define an export function for the link
9699 type. For a simple example of an export function, see `org-bbdb.el'."
9700 (add-to-list 'org-link-types type t)
9701 (org-make-link-regexps)
9702 (org-element-update-syntax)
9703 (if (assoc type org-link-protocols)
9704 (setcdr (assoc type org-link-protocols) (list follow export))
9705 (push (list type follow export) org-link-protocols)))
9707 (defvar org-agenda-buffer-name) ; Defined in org-agenda.el
9708 (defvar org-id-link-to-org-use-id) ; Defined in org-id.el
9710 ;;;###autoload
9711 (defun org-store-link (arg)
9712 "\\<org-mode-map>Store an org-link to the current location.
9713 This link is added to `org-stored-links' and can later be inserted
9714 into an org-buffer with \\[org-insert-link].
9716 For some link types, a prefix arg is interpreted.
9717 For links to Usenet articles, arg negates `org-gnus-prefer-web-links'.
9718 For file links, arg negates `org-context-in-file-links'.
9720 A double prefix arg force skipping storing functions that are not
9721 part of Org's core.
9723 A triple prefix arg force storing a link for each line in the
9724 active region."
9725 (interactive "P")
9726 (org-load-modules-maybe)
9727 (if (and (equal arg '(64)) (org-region-active-p))
9728 (save-excursion
9729 (let ((end (region-end)))
9730 (goto-char (region-beginning))
9731 (set-mark (point))
9732 (while (< (point-at-eol) end)
9733 (move-end-of-line 1) (activate-mark)
9734 (let (current-prefix-arg)
9735 (call-interactively 'org-store-link))
9736 (move-beginning-of-line 2)
9737 (set-mark (point)))))
9738 (org-with-limited-levels
9739 (setq org-store-link-plist nil)
9740 (let (link cpltxt desc description search
9741 txt custom-id agenda-link sfuns sfunsn)
9742 (cond
9744 ;; Store a link using an external link type
9745 ((and (not (equal arg '(16)))
9746 (setq sfuns
9747 (delq
9748 nil (mapcar (lambda (f)
9749 (let (fs) (if (funcall f) (push f fs))))
9750 org-store-link-functions))
9751 sfunsn (mapcar (lambda (fu) (symbol-name (car fu))) sfuns))
9752 (or (and (cdr sfuns)
9753 (funcall (intern
9754 (completing-read
9755 "Which function for creating the link? "
9756 sfunsn nil t (car sfunsn)))))
9757 (funcall (caar sfuns)))
9758 (setq link (plist-get org-store-link-plist :link)
9759 desc (or (plist-get org-store-link-plist
9760 :description) link))))
9762 ;; Store a link from a source code buffer
9763 ((org-src-edit-buffer-p)
9764 (let (label gc)
9765 (while (or (not label)
9766 (save-excursion
9767 (save-restriction
9768 (widen)
9769 (goto-char (point-min))
9770 (re-search-forward
9771 (regexp-quote (format org-coderef-label-format label))
9772 nil t))))
9773 (when label (message "Label exists already") (sit-for 2))
9774 (setq label (read-string "Code line label: " label)))
9775 (end-of-line 1)
9776 (setq link (format org-coderef-label-format label))
9777 (setq gc (- 79 (length link)))
9778 (if (< (current-column) gc) (org-move-to-column gc t) (insert " "))
9779 (insert link)
9780 (setq link (concat "(" label ")") desc nil)))
9782 ;; We are in the agenda, link to referenced location
9783 ((equal (org-bound-and-true-p org-agenda-buffer-name) (buffer-name))
9784 (let ((m (or (get-text-property (point) 'org-hd-marker)
9785 (get-text-property (point) 'org-marker))))
9786 (when m
9787 (org-with-point-at m
9788 (setq agenda-link
9789 (if (org-called-interactively-p 'any)
9790 (call-interactively 'org-store-link)
9791 (org-store-link nil)))))))
9793 ((eq major-mode 'calendar-mode)
9794 (let ((cd (calendar-cursor-to-date)))
9795 (setq link
9796 (format-time-string
9797 (car org-time-stamp-formats)
9798 (apply 'encode-time
9799 (list 0 0 0 (nth 1 cd) (nth 0 cd) (nth 2 cd)
9800 nil nil nil))))
9801 (org-store-link-props :type "calendar" :date cd)))
9803 ((eq major-mode 'help-mode)
9804 (setq link (concat "help:" (save-excursion
9805 (goto-char (point-min))
9806 (looking-at "^[^ ]+")
9807 (match-string 0))))
9808 (org-store-link-props :type "help"))
9810 ((eq major-mode 'w3-mode)
9811 (setq cpltxt (if (and (buffer-name)
9812 (not (string-match "Untitled" (buffer-name))))
9813 (buffer-name)
9814 (url-view-url t))
9815 link (url-view-url t))
9816 (org-store-link-props :type "w3" :url (url-view-url t)))
9818 ((eq major-mode 'image-mode)
9819 (setq cpltxt (concat "file:"
9820 (abbreviate-file-name buffer-file-name))
9821 link cpltxt)
9822 (org-store-link-props :type "image" :file buffer-file-name))
9824 ;; In dired, store a link to the file of the current line
9825 ((derived-mode-p 'dired-mode)
9826 (let ((file (dired-get-filename nil t)))
9827 (setq file (if file
9828 (abbreviate-file-name
9829 (expand-file-name (dired-get-filename nil t)))
9830 ;; otherwise, no file so use current directory.
9831 default-directory))
9832 (setq cpltxt (concat "file:" file)
9833 link cpltxt)))
9835 ((setq search (run-hook-with-args-until-success
9836 'org-create-file-search-functions))
9837 (setq link (concat "file:" (abbreviate-file-name buffer-file-name)
9838 "::" search))
9839 (setq cpltxt (or description link)))
9841 ((and (buffer-file-name (buffer-base-buffer)) (derived-mode-p 'org-mode))
9842 (setq custom-id (org-entry-get nil "CUSTOM_ID"))
9843 (cond
9844 ;; Store a link using the target at point
9845 ((org-in-regexp "[^<]<<\\([^<>]+\\)>>[^>]" 1)
9846 (setq cpltxt
9847 (concat "file:"
9848 (abbreviate-file-name
9849 (buffer-file-name (buffer-base-buffer)))
9850 "::" (match-string 1))
9851 link cpltxt))
9852 ((and (featurep 'org-id)
9853 (or (eq org-id-link-to-org-use-id t)
9854 (and (org-called-interactively-p 'any)
9855 (or (eq org-id-link-to-org-use-id 'create-if-interactive)
9856 (and (eq org-id-link-to-org-use-id
9857 'create-if-interactive-and-no-custom-id)
9858 (not custom-id))))
9859 (and org-id-link-to-org-use-id (org-entry-get nil "ID"))))
9860 ;; Store a link using the ID at point
9861 (setq link (condition-case nil
9862 (prog1 (org-id-store-link)
9863 (setq desc (or (plist-get org-store-link-plist
9864 :description)
9865 "")))
9866 (error
9867 ;; Probably before first headline, link only to file
9868 (concat "file:"
9869 (abbreviate-file-name
9870 (buffer-file-name (buffer-base-buffer))))))))
9872 ;; Just link to current headline
9873 (setq cpltxt (concat "file:"
9874 (abbreviate-file-name
9875 (buffer-file-name (buffer-base-buffer)))))
9876 ;; Add a context search string
9877 (when (org-xor org-context-in-file-links arg)
9878 (let* ((ee (org-element-at-point))
9879 (et (org-element-type ee))
9880 (ev (plist-get (cadr ee) :value))
9881 (ek (plist-get (cadr ee) :key))
9882 (eok (and (stringp ek) (string-match "name" ek))))
9883 (setq txt (cond
9884 ((org-at-heading-p) nil)
9885 ((and (eq et 'keyword) eok) ev)
9886 ((org-region-active-p)
9887 (buffer-substring (region-beginning) (region-end)))))
9888 (when (or (null txt) (string-match "\\S-" txt))
9889 (setq cpltxt
9890 (concat cpltxt "::"
9891 (condition-case nil
9892 (org-make-org-heading-search-string txt)
9893 (error "")))
9894 desc (or (and (eq et 'keyword) eok ev)
9895 (nth 4 (ignore-errors (org-heading-components)))
9896 "NONE")))))
9897 (if (string-match "::\\'" cpltxt)
9898 (setq cpltxt (substring cpltxt 0 -2)))
9899 (setq link cpltxt))))
9901 ((buffer-file-name (buffer-base-buffer))
9902 ;; Just link to this file here.
9903 (setq cpltxt (concat "file:"
9904 (abbreviate-file-name
9905 (buffer-file-name (buffer-base-buffer)))))
9906 ;; Add a context string.
9907 (when (org-xor org-context-in-file-links arg)
9908 (setq txt (if (org-region-active-p)
9909 (buffer-substring (region-beginning) (region-end))
9910 (buffer-substring (point-at-bol) (point-at-eol))))
9911 ;; Only use search option if there is some text.
9912 (when (string-match "\\S-" txt)
9913 (setq cpltxt
9914 (concat cpltxt "::" (org-make-org-heading-search-string txt))
9915 desc "NONE")))
9916 (setq link cpltxt))
9918 ((org-called-interactively-p 'interactive)
9919 (user-error "No method for storing a link from this buffer"))
9921 (t (setq link nil)))
9923 ;; We're done setting link and desc, clean up
9924 (if (consp link) (setq cpltxt (car link) link (cdr link)))
9925 (setq link (or link cpltxt)
9926 desc (or desc cpltxt))
9927 (cond ((equal desc "NONE") (setq desc nil))
9928 ((and desc (string-match org-bracket-link-analytic-regexp desc))
9929 (let ((d0 (match-string 3 desc))
9930 (p0 (match-string 5 desc)))
9931 (setq desc
9932 (replace-regexp-in-string
9933 org-bracket-link-regexp
9934 (concat (or p0 d0)
9935 (if (equal (length (match-string 0 desc))
9936 (length desc)) "*" "")) desc)))))
9938 ;; Return the link
9939 (if (not (and (or (org-called-interactively-p 'any)
9940 executing-kbd-macro) link))
9941 (or agenda-link (and link (org-make-link-string link desc)))
9942 (push (list link desc) org-stored-links)
9943 (message "Stored: %s" (or desc link))
9944 (when custom-id
9945 (setq link (concat "file:" (abbreviate-file-name
9946 (buffer-file-name)) "::#" custom-id))
9947 (push (list link desc) org-stored-links))
9948 (car org-stored-links))))))
9950 (defun org-store-link-props (&rest plist)
9951 "Store link properties, extract names and addresses."
9952 (let (x adr)
9953 (when (setq x (plist-get plist :from))
9954 (setq adr (mail-extract-address-components x))
9955 (setq plist (plist-put plist :fromname (car adr)))
9956 (setq plist (plist-put plist :fromaddress (nth 1 adr))))
9957 (when (setq x (plist-get plist :to))
9958 (setq adr (mail-extract-address-components x))
9959 (setq plist (plist-put plist :toname (car adr)))
9960 (setq plist (plist-put plist :toaddress (nth 1 adr)))))
9961 (let ((from (plist-get plist :from))
9962 (to (plist-get plist :to)))
9963 (when (and from to org-from-is-user-regexp)
9964 (setq plist
9965 (plist-put plist :fromto
9966 (if (string-match org-from-is-user-regexp from)
9967 (concat "to %t")
9968 (concat "from %f"))))))
9969 (setq org-store-link-plist plist))
9971 (defun org-add-link-props (&rest plist)
9972 "Add these properties to the link property list."
9973 (let (key value)
9974 (while plist
9975 (setq key (pop plist) value (pop plist))
9976 (setq org-store-link-plist
9977 (plist-put org-store-link-plist key value)))))
9979 (defun org-email-link-description (&optional fmt)
9980 "Return the description part of an email link.
9981 This takes information from `org-store-link-plist' and formats it
9982 according to FMT (default from `org-email-link-description-format')."
9983 (setq fmt (or fmt org-email-link-description-format))
9984 (let* ((p org-store-link-plist)
9985 (to (plist-get p :toaddress))
9986 (from (plist-get p :fromaddress))
9987 (table
9988 (list
9989 (cons "%c" (plist-get p :fromto))
9990 (cons "%F" (plist-get p :from))
9991 (cons "%f" (or (plist-get p :fromname) (plist-get p :fromaddress) "?"))
9992 (cons "%T" (plist-get p :to))
9993 (cons "%t" (or (plist-get p :toname) (plist-get p :toaddress) "?"))
9994 (cons "%s" (plist-get p :subject))
9995 (cons "%d" (plist-get p :date))
9996 (cons "%m" (plist-get p :message-id)))))
9997 (when (string-match "%c" fmt)
9998 ;; Check if the user wrote this message
9999 (if (and org-from-is-user-regexp from to
10000 (save-match-data (string-match org-from-is-user-regexp from)))
10001 (setq fmt (replace-match "to %t" t t fmt))
10002 (setq fmt (replace-match "from %f" t t fmt))))
10003 (org-replace-escapes fmt table)))
10005 (defun org-make-org-heading-search-string (&optional string)
10006 "Make search string for the current headline or STRING."
10007 (let ((s (or string
10008 (and (derived-mode-p 'org-mode)
10009 (save-excursion
10010 (org-back-to-heading t)
10011 (org-element-property :raw-value (org-element-at-point))))))
10012 (lines org-context-in-file-links))
10013 (or string (setq s (concat "*" s))) ; Add * for headlines
10014 (setq s (replace-regexp-in-string "\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]" "" s))
10015 (when (and string (integerp lines) (> lines 0))
10016 (let ((slines (org-split-string s "\n")))
10017 (when (< lines (length slines))
10018 (setq s (mapconcat
10019 'identity
10020 (reverse (nthcdr (- (length slines) lines)
10021 (reverse slines))) "\n")))))
10022 (mapconcat 'identity (org-split-string s "[ \t]+") " ")))
10024 (defun org-make-link-string (link &optional description)
10025 "Make a link with brackets, consisting of LINK and DESCRIPTION."
10026 (unless (string-match "\\S-" link)
10027 (error "Empty link"))
10028 (when (and description
10029 (stringp description)
10030 (not (string-match "\\S-" description)))
10031 (setq description nil))
10032 (when (stringp description)
10033 ;; Remove brackets from the description, they are fatal.
10034 (while (string-match "\\[" description)
10035 (setq description (replace-match "{" t t description)))
10036 (while (string-match "\\]" description)
10037 (setq description (replace-match "}" t t description))))
10038 (when (equal link description)
10039 ;; No description needed, it is identical
10040 (setq description nil))
10041 (when (and (not description)
10042 (not (string-match (org-image-file-name-regexp) link))
10043 (not (equal link (org-link-escape link))))
10044 (setq description (org-extract-attributes link)))
10045 (setq link
10046 (cond ((string-match (org-image-file-name-regexp) link) link)
10047 ((string-match org-link-types-re link)
10048 (concat (match-string 1 link)
10049 (org-link-escape (substring link (match-end 1)))))
10050 (t (org-link-escape link))))
10051 (concat "[[" link "]"
10052 (if description (concat "[" description "]") "")
10053 "]"))
10055 (defconst org-link-escape-chars
10056 ;;%20 %5B %5D
10057 '(?\ ?\[ ?\])
10058 "List of characters that should be escaped in a link when stored to Org.
10059 This is the list that is used for internal purposes.")
10061 (defconst org-link-escape-chars-browser
10062 ;;%20 %22
10063 '(?\ ?\")
10064 "List of characters to be escaped before handing over to the browser.
10065 If you consider using this constant then you probably want to use
10066 the function `org-link-escape-browser' instead. See there why
10067 this constant is a candidate to be removed once Org drops support
10068 for Emacs 24.1 and 24.2.")
10070 (defun org-link-escape (text &optional table merge)
10071 "Return percent escaped representation of TEXT.
10072 TEXT is a string with the text to escape.
10073 Optional argument TABLE is a list with characters that should be
10074 escaped. When nil, `org-link-escape-chars' is used.
10075 If optional argument MERGE is set, merge TABLE into
10076 `org-link-escape-chars'."
10077 ;; Don't escape chars in internal links
10078 (if (string-match "^\\*[[:alnum:]]+" text)
10079 text
10080 (cond
10081 ((and table merge)
10082 (mapc (lambda (defchr)
10083 (unless (member defchr table)
10084 (setq table (cons defchr table))))
10085 org-link-escape-chars))
10086 ((null table)
10087 (setq table org-link-escape-chars)))
10088 (mapconcat
10089 (lambda (char)
10090 (if (or (member char table)
10091 (and (or (< char 32) (= char ?\%) (> char 126))
10092 org-url-hexify-p))
10093 (mapconcat (lambda (sequence-element)
10094 (format "%%%.2X" sequence-element))
10095 (or (encode-coding-char char 'utf-8)
10096 (error "Unable to percent escape character: %s"
10097 (char-to-string char))) "")
10098 (char-to-string char))) text "")))
10100 (defun org-link-escape-browser (text)
10101 "Escape some characters before handing over to the browser.
10102 This function is a candidate to be removed together with the
10103 constant `org-link-escape-chars-browser' once Org drops support
10104 for Emacs 24.1 and 24.2. All calls to this function will have to
10105 be replaced with `url-encode-url' which is available since Emacs
10106 24.3.1."
10107 ;; Example with the Org link
10108 ;; [[http://lists.gnu.org/archive/cgi-bin/namazu.cgi?idxname=emacs-orgmode&query=%252Bsubject:"Release+8.2"]]
10109 ;; to open the browser with +subject:"Release 8.2" filled into the
10110 ;; query field: In this case the variable TEXT contains the
10111 ;; unescaped [...]=%2Bsubject:"Release+8.2". Then `url-encode-url'
10112 ;; converts correctly to [...]=%2Bsubject:%22Release+8.2%22 or
10113 ;; `org-link-escape' with `org-link-escape-chars-browser' converts
10114 ;; wrongly to [...]=%252Bsubject:%22Release+8.2%22.
10115 (if (fboundp 'url-encode-url)
10116 (url-encode-url text)
10117 (if (org-string-match-p
10118 (concat "[[:nonascii:]" org-link-escape-chars-browser "]")
10119 text)
10120 (org-link-escape text org-link-escape-chars-browser)
10121 text)))
10123 (defun org-link-unescape (str)
10124 "Unhex hexified Unicode strings as returned from the JavaScript function
10125 encodeURIComponent. E.g. `%C3%B6' is the german o-Umlaut."
10126 (unless (and (null str) (string= "" str))
10127 (let ((pos 0) (case-fold-search t) unhexed)
10128 (while (setq pos (string-match "\\(%[0-9a-f][0-9a-f]\\)+" str pos))
10129 (setq unhexed (org-link-unescape-compound (match-string 0 str)))
10130 (setq str (replace-match unhexed t t str))
10131 (setq pos (+ pos (length unhexed))))))
10132 str)
10134 (defun org-link-unescape-compound (hex)
10135 "Unhexify Unicode hex-chars. E.g. `%C3%B6' is the German o-Umlaut.
10136 Note: this function also decodes single byte encodings like
10137 `%E1' (a-acute) if not followed by another `%[A-F0-9]{2}' group."
10138 (save-match-data
10139 (let* ((bytes (cdr (split-string hex "%")))
10140 (ret "")
10141 (eat 0)
10142 (sum 0))
10143 (while bytes
10144 (let* ((val (string-to-number (pop bytes) 16))
10145 (shift-xor
10146 (if (= 0 eat)
10147 (cond
10148 ((>= val 252) (cons 6 252))
10149 ((>= val 248) (cons 5 248))
10150 ((>= val 240) (cons 4 240))
10151 ((>= val 224) (cons 3 224))
10152 ((>= val 192) (cons 2 192))
10153 (t (cons 0 0)))
10154 (cons 6 128))))
10155 (if (>= val 192) (setq eat (car shift-xor)))
10156 (setq val (logxor val (cdr shift-xor)))
10157 (setq sum (+ (lsh sum (car shift-xor)) val))
10158 (if (> eat 0) (setq eat (- eat 1)))
10159 (cond
10160 ((= 0 eat) ;multi byte
10161 (setq ret (concat ret (org-char-to-string sum)))
10162 (setq sum 0))
10163 ((not bytes) ; single byte(s)
10164 (setq ret (org-link-unescape-single-byte-sequence hex))))))
10165 ret)))
10167 (defun org-link-unescape-single-byte-sequence (hex)
10168 "Unhexify hex-encoded single byte character sequences."
10169 (mapconcat (lambda (byte)
10170 (char-to-string (string-to-number byte 16)))
10171 (cdr (split-string hex "%")) ""))
10173 (defun org-xor (a b)
10174 "Exclusive or."
10175 (if a (not b) b))
10177 (defun org-fixup-message-id-for-http (s)
10178 "Replace special characters in a message id, so it can be used in an http query."
10179 (when (string-match "%" s)
10180 (setq s (mapconcat (lambda (c)
10181 (if (eq c ?%)
10182 "%25"
10183 (char-to-string c)))
10184 s "")))
10185 (while (string-match "<" s)
10186 (setq s (replace-match "%3C" t t s)))
10187 (while (string-match ">" s)
10188 (setq s (replace-match "%3E" t t s)))
10189 (while (string-match "@" s)
10190 (setq s (replace-match "%40" t t s)))
10193 (defun org-link-prettify (link)
10194 "Return a human-readable representation of LINK.
10195 The car of LINK must be a raw link.
10196 The cdr of LINK must be either a link description or nil."
10197 (let ((desc (or (cadr link) "<no description>")))
10198 (concat (format "%-45s" (substring desc 0 (min (length desc) 40)))
10199 "<" (car link) ">")))
10201 ;;;###autoload
10202 (defun org-insert-link-global ()
10203 "Insert a link like Org-mode does.
10204 This command can be called in any mode to insert a link in Org-mode syntax."
10205 (interactive)
10206 (org-load-modules-maybe)
10207 (org-run-like-in-org-mode 'org-insert-link))
10209 (defun org-insert-all-links (arg &optional pre post)
10210 "Insert all links in `org-stored-links'.
10211 When a universal prefix, do not delete the links from `org-stored-links'.
10212 When `ARG' is a number, insert the last N link(s).
10213 `PRE' and `POST' are optional arguments to define a string to
10214 prepend or to append."
10215 (interactive "P")
10216 (let ((org-keep-stored-link-after-insertion (equal arg '(4)))
10217 (links (copy-seq org-stored-links))
10218 (pr (or pre "- "))
10219 (po (or post "\n"))
10220 (cnt 1) l)
10221 (if (null org-stored-links)
10222 (message "No link to insert")
10223 (while (and (or (listp arg) (>= arg cnt))
10224 (setq l (if (listp arg)
10225 (pop links)
10226 (pop org-stored-links))))
10227 (setq cnt (1+ cnt))
10228 (insert pr)
10229 (org-insert-link nil (car l) (or (cadr l) "<no description>"))
10230 (insert po)))))
10232 (defun org-insert-last-stored-link (arg)
10233 "Insert the last link stored in `org-stored-links'."
10234 (interactive "p")
10235 (org-insert-all-links arg "" "\n"))
10237 (defun org-link-fontify-links-to-this-file ()
10238 "Fontify links to the current file in `org-stored-links'."
10239 (let ((f (buffer-file-name)) a b)
10240 (setq a (mapcar (lambda(l)
10241 (let ((ll (car l)))
10242 (when (and (string-match "^file:\\(.+\\)::" ll)
10243 (equal f (expand-file-name (match-string 1 ll))))
10244 ll)))
10245 org-stored-links))
10246 (when (featurep 'org-id)
10247 (setq b (mapcar (lambda(l)
10248 (let ((ll (car l)))
10249 (when (and (string-match "^id:\\(.+\\)$" ll)
10250 (equal f (expand-file-name
10251 (or (org-id-find-id-file
10252 (match-string 1 ll)) ""))))
10253 ll)))
10254 org-stored-links)))
10255 (mapcar (lambda(l)
10256 (put-text-property 0 (length l) 'face 'font-lock-comment-face l))
10257 (delq nil (append a b)))))
10259 (defvar org-link-links-in-this-file nil)
10260 (defun org-insert-link (&optional complete-file link-location default-description)
10261 "Insert a link. At the prompt, enter the link.
10263 Completion can be used to insert any of the link protocol prefixes like
10264 http or ftp in use.
10266 The history can be used to select a link previously stored with
10267 `org-store-link'. When the empty string is entered (i.e. if you just
10268 press RET at the prompt), the link defaults to the most recently
10269 stored link. As SPC triggers completion in the minibuffer, you need to
10270 use M-SPC or C-q SPC to force the insertion of a space character.
10272 You will also be prompted for a description, and if one is given, it will
10273 be displayed in the buffer instead of the link.
10275 If there is already a link at point, this command will allow you to edit link
10276 and description parts.
10278 With a \\[universal-argument] prefix, prompts for a file to link to. The file name can
10279 be selected using completion. The path to the file will be relative to the
10280 current directory if the file is in the current directory or a subdirectory.
10281 Otherwise, the link will be the absolute path as completed in the minibuffer
10282 \(i.e. normally ~/path/to/file). You can configure this behavior using the
10283 option `org-link-file-path-type'.
10285 With two \\[universal-argument] prefixes, enforce an absolute path even if the file is in
10286 the current directory or below.
10288 With three \\[universal-argument] prefixes, negate the meaning of
10289 `org-keep-stored-link-after-insertion'.
10291 If `org-make-link-description-function' is non-nil, this function will be
10292 called with the link target, and the result will be the default
10293 link description.
10295 If the LINK-LOCATION parameter is non-nil, this value will be
10296 used as the link location instead of reading one interactively.
10298 If the DEFAULT-DESCRIPTION parameter is non-nil, this value will
10299 be used as the default description."
10300 (interactive "P")
10301 (let* ((wcf (current-window-configuration))
10302 (origbuf (current-buffer))
10303 (region (if (org-region-active-p)
10304 (buffer-substring (region-beginning) (region-end))))
10305 (remove (and region (list (region-beginning) (region-end))))
10306 (desc region)
10307 tmphist ; byte-compile incorrectly complains about this
10308 (link link-location)
10309 (abbrevs org-link-abbrev-alist-local)
10310 entry file all-prefixes auto-desc)
10311 (cond
10312 (link-location) ; specified by arg, just use it.
10313 ((org-in-regexp org-bracket-link-regexp 1)
10314 ;; We do have a link at point, and we are going to edit it.
10315 (setq remove (list (match-beginning 0) (match-end 0)))
10316 (setq desc (if (match-end 3) (org-match-string-no-properties 3)))
10317 (setq link (read-string "Link: "
10318 (org-link-unescape
10319 (org-match-string-no-properties 1)))))
10320 ((or (org-in-regexp org-angle-link-re)
10321 (org-in-regexp org-plain-link-re))
10322 ;; Convert to bracket link
10323 (setq remove (list (match-beginning 0) (match-end 0))
10324 link (read-string "Link: "
10325 (org-remove-angle-brackets (match-string 0)))))
10326 ((member complete-file '((4) (16)))
10327 ;; Completing read for file names.
10328 (setq link (org-file-complete-link complete-file)))
10330 ;; Read link, with completion for stored links.
10331 (org-link-fontify-links-to-this-file)
10332 (org-switch-to-buffer-other-window "*Org Links*")
10333 (with-current-buffer "*Org Links*"
10334 (erase-buffer)
10335 (insert "Insert a link.
10336 Use TAB to complete link prefixes, then RET for type-specific completion support\n")
10337 (when org-stored-links
10338 (insert "\nStored links are available with <up>/<down> or M-p/n (most recent with RET):\n\n")
10339 (insert (mapconcat 'org-link-prettify
10340 (reverse org-stored-links) "\n")))
10341 (goto-char (point-min)))
10342 (let ((cw (selected-window)))
10343 (select-window (get-buffer-window "*Org Links*" 'visible))
10344 (with-current-buffer "*Org Links*" (setq truncate-lines t))
10345 (unless (pos-visible-in-window-p (point-max))
10346 (org-fit-window-to-buffer))
10347 (and (window-live-p cw) (select-window cw)))
10348 ;; Fake a link history, containing the stored links.
10349 (setq tmphist (append (mapcar 'car org-stored-links)
10350 org-insert-link-history))
10351 (setq all-prefixes (append (mapcar 'car abbrevs)
10352 (mapcar 'car org-link-abbrev-alist)
10353 org-link-types))
10354 (unwind-protect
10355 (progn
10356 (setq link
10357 (org-completing-read
10358 "Link: "
10359 (append
10360 (mapcar (lambda (x) (concat x ":"))
10361 all-prefixes)
10362 (mapcar 'car org-stored-links))
10363 nil nil nil
10364 'tmphist
10365 (caar org-stored-links)))
10366 (if (not (string-match "\\S-" link))
10367 (user-error "No link selected"))
10368 (mapc (lambda(l)
10369 (when (equal link (cadr l)) (setq link (car l) auto-desc t)))
10370 org-stored-links)
10371 (if (or (member link all-prefixes)
10372 (and (equal ":" (substring link -1))
10373 (member (substring link 0 -1) all-prefixes)
10374 (setq link (substring link 0 -1))))
10375 (setq link (with-current-buffer origbuf
10376 (org-link-try-special-completion link)))))
10377 (set-window-configuration wcf)
10378 (kill-buffer "*Org Links*"))
10379 (setq entry (assoc link org-stored-links))
10380 (or entry (push link org-insert-link-history))
10381 (setq desc (or desc (nth 1 entry)))))
10383 (if (funcall (if (equal complete-file '(64)) 'not 'identity)
10384 (not org-keep-stored-link-after-insertion))
10385 (setq org-stored-links (delq (assoc link org-stored-links)
10386 org-stored-links)))
10388 (if (and (string-match org-plain-link-re link)
10389 (not (string-match org-ts-regexp link)))
10390 ;; URL-like link, normalize the use of angular brackets.
10391 (setq link (org-remove-angle-brackets link)))
10393 ;; Check if we are linking to the current file with a search
10394 ;; option If yes, simplify the link by using only the search
10395 ;; option.
10396 (when (and buffer-file-name
10397 (string-match "^file:\\(.+?\\)::\\(.+\\)" link))
10398 (let* ((path (match-string 1 link))
10399 (case-fold-search nil)
10400 (search (match-string 2 link)))
10401 (save-match-data
10402 (if (equal (file-truename buffer-file-name) (file-truename path))
10403 ;; We are linking to this same file, with a search option
10404 (setq link search)))))
10406 ;; Check if we can/should use a relative path. If yes, simplify the link
10407 (when (string-match "^\\(file:\\|docview:\\)\\(.*\\)" link)
10408 (let* ((type (match-string 1 link))
10409 (path (match-string 2 link))
10410 (origpath path)
10411 (case-fold-search nil))
10412 (cond
10413 ((or (eq org-link-file-path-type 'absolute)
10414 (equal complete-file '(16)))
10415 (setq path (abbreviate-file-name (expand-file-name path))))
10416 ((eq org-link-file-path-type 'noabbrev)
10417 (setq path (expand-file-name path)))
10418 ((eq org-link-file-path-type 'relative)
10419 (setq path (file-relative-name path)))
10421 (save-match-data
10422 (if (string-match (concat "^" (regexp-quote
10423 (expand-file-name
10424 (file-name-as-directory
10425 default-directory))))
10426 (expand-file-name path))
10427 ;; We are linking a file with relative path name.
10428 (setq path (substring (expand-file-name path)
10429 (match-end 0)))
10430 (setq path (abbreviate-file-name (expand-file-name path)))))))
10431 (setq link (concat type path))
10432 (if (equal desc origpath)
10433 (setq desc path))))
10435 (if org-make-link-description-function
10436 (setq desc
10437 (or (condition-case nil
10438 (funcall org-make-link-description-function link desc)
10439 (error (progn (message "Can't get link description from `%s'"
10440 (symbol-name org-make-link-description-function))
10441 (sit-for 2) nil)))
10442 (read-string "Description: " default-description)))
10443 (if default-description (setq desc default-description)
10444 (setq desc (or (and auto-desc desc)
10445 (read-string "Description: " desc)))))
10447 (unless (string-match "\\S-" desc) (setq desc nil))
10448 (if remove (apply 'delete-region remove))
10449 (insert (org-make-link-string link desc))))
10451 (defun org-link-try-special-completion (type)
10452 "If there is completion support for link type TYPE, offer it."
10453 (let ((fun (intern (concat "org-" type "-complete-link"))))
10454 (if (functionp fun)
10455 (funcall fun)
10456 (read-string "Link (no completion support): " (concat type ":")))))
10458 (defun org-file-complete-link (&optional arg)
10459 "Create a file link using completion."
10460 (let (file link)
10461 (setq file (org-iread-file-name "File: "))
10462 (let ((pwd (file-name-as-directory (expand-file-name ".")))
10463 (pwd1 (file-name-as-directory (abbreviate-file-name
10464 (expand-file-name ".")))))
10465 (cond
10466 ((equal arg '(16))
10467 (setq link (concat
10468 "file:"
10469 (abbreviate-file-name (expand-file-name file)))))
10470 ((string-match (concat "^" (regexp-quote pwd1) "\\(.+\\)") file)
10471 (setq link (concat "file:" (match-string 1 file))))
10472 ((string-match (concat "^" (regexp-quote pwd) "\\(.+\\)")
10473 (expand-file-name file))
10474 (setq link (concat
10475 "file:" (match-string 1 (expand-file-name file)))))
10476 (t (setq link (concat "file:" file)))))
10477 link))
10479 (defun org-iread-file-name (&rest args)
10480 "Read-file-name using `ido-mode' speedup if available.
10481 ARGS are arguments that may be passed to `ido-read-file-name' or `read-file-name'.
10482 See `read-file-name' for a description of parameters."
10483 (org-without-partial-completion
10484 (if (and org-completion-use-ido
10485 (fboundp 'ido-read-file-name)
10486 (boundp 'ido-mode) ido-mode
10487 (listp (second args)))
10488 (let ((ido-enter-matching-directory nil))
10489 (apply 'ido-read-file-name args))
10490 (apply 'read-file-name args))))
10492 (defun org-completing-read (&rest args)
10493 "Completing-read with SPACE being a normal character."
10494 (let ((enable-recursive-minibuffers t)
10495 (minibuffer-local-completion-map
10496 (copy-keymap minibuffer-local-completion-map)))
10497 (org-defkey minibuffer-local-completion-map " " 'self-insert-command)
10498 (org-defkey minibuffer-local-completion-map "?" 'self-insert-command)
10499 (org-defkey minibuffer-local-completion-map (kbd "C-c !") 'org-time-stamp-inactive)
10500 (apply 'org-icompleting-read args)))
10502 (defun org-completing-read-no-i (&rest args)
10503 (let (org-completion-use-ido org-completion-use-iswitchb)
10504 (apply 'org-completing-read args)))
10506 (defun org-iswitchb-completing-read (prompt choices &rest args)
10507 "Use iswitch as a completing-read replacement to choose from choices.
10508 PROMPT is a string to prompt with. CHOICES is a list of strings to choose
10509 from."
10510 (let* ((iswitchb-use-virtual-buffers nil)
10511 (iswitchb-make-buflist-hook
10512 (lambda ()
10513 (setq iswitchb-temp-buflist choices))))
10514 (iswitchb-read-buffer prompt)))
10516 (defun org-icompleting-read (&rest args)
10517 "Completing-read using `ido-mode' or `iswitchb' speedups if available."
10518 (org-without-partial-completion
10519 (if (and org-completion-use-ido
10520 (fboundp 'ido-completing-read)
10521 (boundp 'ido-mode) ido-mode
10522 (listp (second args)))
10523 (let ((ido-enter-matching-directory nil))
10524 (apply 'ido-completing-read (concat (car args))
10525 (if (consp (car (nth 1 args)))
10526 (mapcar 'car (nth 1 args))
10527 (nth 1 args))
10528 (cddr args)))
10529 (if (and org-completion-use-iswitchb
10530 (boundp 'iswitchb-mode) iswitchb-mode
10531 (listp (second args)))
10532 (apply 'org-iswitchb-completing-read (concat (car args))
10533 (if (consp (car (nth 1 args)))
10534 (mapcar 'car (nth 1 args))
10535 (nth 1 args))
10536 (cddr args))
10537 (apply 'completing-read args)))))
10539 (defun org-extract-attributes (s)
10540 "Extract the attributes cookie from a string and set as text property."
10541 (let (a attr (start 0) key value)
10542 (save-match-data
10543 (when (string-match "{{\\([^}]+\\)}}$" s)
10544 (setq a (match-string 1 s) s (substring s 0 (match-beginning 0)))
10545 (while (string-match "\\([a-zA-Z]+\\)=\"\\([^\"]*\\)\"" a start)
10546 (setq key (match-string 1 a) value (match-string 2 a)
10547 start (match-end 0)
10548 attr (plist-put attr (intern key) value))))
10549 (org-add-props s nil 'org-attr attr))
10552 ;;; Opening/following a link
10554 (defvar org-link-search-failed nil)
10556 (defvar org-open-link-functions nil
10557 "Hook for functions finding a plain text link.
10558 These functions must take a single argument, the link content.
10559 They will be called for links that look like [[link text][description]]
10560 when LINK TEXT does not have a protocol like \"http:\" and does not look
10561 like a filename (e.g. \"./blue.png\").
10563 These functions will be called *before* Org attempts to resolve the
10564 link by doing text searches in the current buffer - so if you want a
10565 link \"[[target]]\" to still find \"<<target>>\", your function should
10566 handle this as a special case.
10568 When the function does handle the link, it must return a non-nil value.
10569 If it decides that it is not responsible for this link, it must return
10570 nil to indicate that that Org-mode can continue with other options
10571 like exact and fuzzy text search.")
10573 (defun org-next-link (&optional search-backward)
10574 "Move forward to the next link.
10575 If the link is in hidden text, expose it."
10576 (interactive "P")
10577 (when (and org-link-search-failed (eq this-command last-command))
10578 (goto-char (point-min))
10579 (message "Link search wrapped back to beginning of buffer"))
10580 (setq org-link-search-failed nil)
10581 (let* ((pos (point))
10582 (ct (org-context))
10583 (a (assoc :link ct))
10584 (srch-fun (if search-backward 're-search-backward 're-search-forward)))
10585 (cond (a (goto-char (nth (if search-backward 1 2) a)))
10586 ((looking-at org-any-link-re)
10587 ;; Don't stay stuck at link without an org-link face
10588 (forward-char (if search-backward -1 1))))
10589 (if (funcall srch-fun org-any-link-re nil t)
10590 (progn
10591 (goto-char (match-beginning 0))
10592 (if (outline-invisible-p) (org-show-context)))
10593 (goto-char pos)
10594 (setq org-link-search-failed t)
10595 (message "No further link found"))))
10597 (defun org-previous-link ()
10598 "Move backward to the previous link.
10599 If the link is in hidden text, expose it."
10600 (interactive)
10601 (funcall 'org-next-link t))
10603 (defun org-translate-link (s)
10604 "Translate a link string if a translation function has been defined."
10605 (if (and org-link-translation-function
10606 (fboundp org-link-translation-function)
10607 (string-match "\\([a-zA-Z0-9]+\\):\\(.*\\)" s))
10608 (progn
10609 (setq s (funcall org-link-translation-function
10610 (match-string 1 s) (match-string 2 s)))
10611 (concat (car s) ":" (cdr s)))
10614 (defun org-translate-link-from-planner (type path)
10615 "Translate a link from Emacs Planner syntax so that Org can follow it.
10616 This is still an experimental function, your mileage may vary."
10617 (cond
10618 ((member type '("http" "https" "news" "ftp"))
10619 ;; standard Internet links are the same.
10620 nil)
10621 ((and (equal type "irc") (string-match "^//" path))
10622 ;; Planner has two / at the beginning of an irc link, we have 1.
10623 ;; We should have zero, actually....
10624 (setq path (substring path 1)))
10625 ((and (equal type "lisp") (string-match "^/" path))
10626 ;; Planner has a slash, we do not.
10627 (setq type "elisp" path (substring path 1)))
10628 ((string-match "^//\\(.?*\\)/\\(<.*>\\)$" path)
10629 ;; A typical message link. Planner has the id after the final slash,
10630 ;; we separate it with a hash mark
10631 (setq path (concat (match-string 1 path) "#"
10632 (org-remove-angle-brackets (match-string 2 path))))))
10633 (cons type path))
10635 (defun org-find-file-at-mouse (ev)
10636 "Open file link or URL at mouse."
10637 (interactive "e")
10638 (mouse-set-point ev)
10639 (org-open-at-point 'in-emacs))
10641 (defun org-open-at-mouse (ev)
10642 "Open file link or URL at mouse.
10643 See the docstring of `org-open-file' for details."
10644 (interactive "e")
10645 (mouse-set-point ev)
10646 (if (eq major-mode 'org-agenda-mode)
10647 (org-agenda-copy-local-variable 'org-link-abbrev-alist-local))
10648 (org-open-at-point))
10650 (defvar org-window-config-before-follow-link nil
10651 "The window configuration before following a link.
10652 This is saved in case the need arises to restore it.")
10654 (defvar org-open-link-marker (make-marker)
10655 "Marker pointing to the location where `org-open-at-point' was called.")
10657 ;;;###autoload
10658 (defun org-open-at-point-global ()
10659 "Follow a link like Org-mode does.
10660 This command can be called in any mode to follow a link that has
10661 Org-mode syntax."
10662 (interactive)
10663 (org-run-like-in-org-mode 'org-open-at-point))
10665 ;;;###autoload
10666 (defun org-open-link-from-string (s &optional arg reference-buffer)
10667 "Open a link in the string S, as if it was in Org-mode."
10668 (interactive "sLink: \nP")
10669 (let ((reference-buffer (or reference-buffer (current-buffer))))
10670 (with-temp-buffer
10671 (let ((org-inhibit-startup (not reference-buffer)))
10672 (org-mode)
10673 (insert s)
10674 (goto-char (point-min))
10675 (when reference-buffer
10676 (setq org-link-abbrev-alist-local
10677 (with-current-buffer reference-buffer
10678 org-link-abbrev-alist-local)))
10679 (org-open-at-point arg reference-buffer)))))
10681 (defvar org-open-at-point-functions nil
10682 "Hook that is run when following a link at point.
10684 Functions in this hook must return t if they identify and follow
10685 a link at point. If they don't find anything interesting at point,
10686 they must return nil.")
10688 (defvar org-link-search-inhibit-query nil) ;; dynamically scoped
10689 (defvar clean-buffer-list-kill-buffer-names) ; Defined in midnight.el
10690 (defun org-open-at-point (&optional arg reference-buffer)
10691 "Open link, timestamp, footnote or tags at point.
10693 When point is on a link, follow it. Normally, files will be
10694 opened by an appropriate application. If the optional prefix
10695 argument ARG is non-nil, Emacs will visit the file. With
10696 a double prefix argument, try to open outside of Emacs, in the
10697 application the system uses for this file type.
10699 When point is on a timestamp, open the agenda at the day
10700 specified.
10702 When point is a footnote definition, move to the first reference
10703 found. If it is on a reference, move to the associated
10704 definition.
10706 When point is on a headline, display a list of every link in the
10707 entry, so it is possible to pick one, or all, of them. If point
10708 is on a tag, call `org-tags-view' instead.
10710 When optional argument REFERENCE-BUFFER is non-nil, it should
10711 specify a buffer from where the link search should happen. This
10712 is used internally by `org-open-link-from-string'.
10714 On top of syntactically correct links, this function will open
10715 the link at point in comments or comment blocks and the first
10716 link in a property drawer line."
10717 (interactive "P")
10718 ;; On a code block, open block's results.
10719 (unless (call-interactively 'org-babel-open-src-block-result)
10720 (org-load-modules-maybe)
10721 (move-marker org-open-link-marker (point))
10722 (setq org-window-config-before-follow-link (current-window-configuration))
10723 (org-remove-occur-highlights nil nil t)
10724 (unless (run-hook-with-args-until-success 'org-open-at-point-functions)
10725 (let* ((context (org-element-context)) type value)
10726 ;; On an unsupported type, check if point is contained within
10727 ;; a support one.
10728 (while (and (not (memq (setq type (org-element-type context))
10729 '(comment comment-block
10730 headline inlinetask link
10731 footnote-definition footnote-reference
10732 node-property timestamp)))
10733 (setq context (org-element-property :parent context))))
10734 (setq value (org-element-property :value context))
10735 (cond
10736 ;; Blank lines at the beginning of buffer: bail out.
10737 ((not context) (user-error "No link found"))
10738 ;; Exception n°1: links in property drawers
10739 ((eq type 'node-property)
10740 (org-open-link-from-string
10741 (and (string-match org-any-link-re value)
10742 (match-string-no-properties 0 value))))
10743 ;; Exception n°2: links in comments.
10744 ((memq type '(comment comment-block))
10745 (save-excursion
10746 (skip-chars-forward "\\S-" (point-at-eol))
10747 (let ((string-rear (replace-regexp-in-string
10748 "^[ \t]*# [ \t]*" ""
10749 (buffer-substring (point) (line-beginning-position))))
10750 (string-front (buffer-substring (point) (line-end-position))))
10751 (with-temp-buffer
10752 (let ((org-inhibit-startup t)) (org-mode))
10753 (insert value)
10754 (goto-char (point-min))
10755 (when (and (search-forward string-rear nil t)
10756 (search-forward string-front (line-end-position) t))
10757 (goto-char (match-beginning 0))
10758 (org-open-at-point)
10759 (when (string= string-rear "") (forward-char)))))))
10760 ;; On a headline or an inlinetask, but not on a timestamp,
10761 ;; a link, a footnote reference or on tags.
10762 ((and (memq type '(headline inlinetask))
10763 ;; Not on tags.
10764 (progn (save-excursion (beginning-of-line)
10765 (looking-at org-complex-heading-regexp))
10766 (or (not (match-beginning 5))
10767 (< (point) (match-beginning 5)))))
10768 (let* ((data (org-offer-links-in-entry (current-buffer) (point) arg))
10769 (links (car data))
10770 (links-end (cdr data)))
10771 (if links
10772 (dolist (link (if (stringp links) (list links) links))
10773 (search-forward link nil links-end)
10774 (goto-char (match-beginning 0))
10775 (org-open-at-point))
10776 (require 'org-attach)
10777 (org-attach-reveal 'if-exists))))
10778 ;; Do nothing on white spaces after an object, unless point
10779 ;; is right after it.
10780 ((> (point)
10781 (save-excursion
10782 (goto-char (org-element-property :end context))
10783 (skip-chars-backward " \t")
10784 (point)))
10785 (user-error "No link found"))
10786 ((eq type 'timestamp) (org-follow-timestamp-link))
10787 ;; On tags within a headline or an inlinetask.
10788 ((and (memq type '(headline inlinetask))
10789 (progn (save-excursion (beginning-of-line)
10790 (looking-at org-complex-heading-regexp))
10791 (and (match-beginning 5)
10792 (>= (point) (match-beginning 5)))))
10793 (org-tags-view arg (substring (match-string 5) 0 -1)))
10794 ((eq type 'link)
10795 (let ((type (org-element-property :type context))
10796 (path (org-link-unescape (org-element-property :path context))))
10797 ;; Switch back to REFERENCE-BUFFER needed when called in
10798 ;; a temporary buffer through `org-open-link-from-string'.
10799 (with-current-buffer (or reference-buffer (current-buffer))
10800 (cond
10801 ((equal type "file")
10802 (if (string-match "[*?{]" (file-name-nondirectory path))
10803 (dired path)
10804 ;; Look into `org-link-protocols' in order to find
10805 ;; a DEDICATED-FUNCTION to open file. The function
10806 ;; will be applied on raw link instead of parsed
10807 ;; link due to the limitation in `org-add-link-type'
10808 ;; ("open" function called with a single argument).
10809 ;; If no such function is found, fallback to
10810 ;; `org-open-file'.
10812 ;; Note : "file+emacs" and "file+sys" types are
10813 ;; hard-coded in order to escape the previous
10814 ;; limitation.
10815 (let* ((option (org-element-property :search-option context))
10816 (app (org-element-property :application context))
10817 (dedicated-function
10818 (nth 1 (assoc app org-link-protocols))))
10819 (if dedicated-function
10820 (funcall dedicated-function
10821 (concat path
10822 (and option (concat "::" option))))
10823 (apply 'org-open-file
10824 path
10825 (cond (arg)
10826 ((equal app "emacs") 'emacs)
10827 ((equal app "sys") 'system))
10828 (cond ((not option) nil)
10829 ((org-string-match-p "\\`[0-9]+\\'" option)
10830 (list (string-to-number option)))
10831 (t (list nil
10832 (org-link-unescape option)))))))))
10833 ((assoc type org-link-protocols)
10834 (funcall (nth 1 (assoc type org-link-protocols)) path))
10835 ((equal type "help")
10836 (let ((f-or-v (intern path)))
10837 (cond ((fboundp f-or-v) (describe-function f-or-v))
10838 ((boundp f-or-v) (describe-variable f-or-v))
10839 (t (error "Not a known function or variable")))))
10840 ((member type '("http" "https" "ftp" "mailto" "news"))
10841 (browse-url (org-link-escape-browser (concat type ":" path))))
10842 ((equal type "doi")
10843 (browse-url
10844 (org-link-escape-browser (concat org-doi-server-url path))))
10845 ((equal type "message") (browse-url (concat type ":" path)))
10846 ((equal type "shell")
10847 (let ((buf (generate-new-buffer "*Org Shell Output*"))
10848 (cmd path))
10849 (if (or (and (org-string-nw-p
10850 org-confirm-shell-link-not-regexp)
10851 (string-match
10852 org-confirm-shell-link-not-regexp cmd))
10853 (not org-confirm-shell-link-function)
10854 (funcall org-confirm-shell-link-function
10855 (format "Execute \"%s\" in shell? "
10856 (org-add-props cmd nil
10857 'face 'org-warning))))
10858 (progn
10859 (message "Executing %s" cmd)
10860 (shell-command cmd buf)
10861 (when (featurep 'midnight)
10862 (setq clean-buffer-list-kill-buffer-names
10863 (cons buf
10864 clean-buffer-list-kill-buffer-names))))
10865 (user-error "Abort"))))
10866 ((equal type "elisp")
10867 (let ((cmd path))
10868 (if (or (and (org-string-nw-p
10869 org-confirm-elisp-link-not-regexp)
10870 (org-string-match-p
10871 org-confirm-elisp-link-not-regexp cmd))
10872 (not org-confirm-elisp-link-function)
10873 (funcall org-confirm-elisp-link-function
10874 (format "Execute \"%s\" as elisp? "
10875 (org-add-props cmd nil
10876 'face 'org-warning))))
10877 (message "%s => %s" cmd
10878 (if (eq (string-to-char cmd) ?\()
10879 (eval (read cmd))
10880 (call-interactively (read cmd))))
10881 (user-error "Abort"))))
10882 ((equal type "id")
10883 (require 'ord-id)
10884 (funcall (nth 1 (assoc "id" org-link-protocols)) path))
10885 ((member type '("coderef" "custom-id" "fuzzy" "radio"))
10886 (unless (run-hook-with-args-until-success
10887 'org-open-link-functions path)
10888 (if (not arg) (org-mark-ring-push)
10889 (switch-to-buffer-other-window
10890 (org-get-buffer-for-internal-link (current-buffer))))
10891 (let ((cmd `(org-link-search
10892 ,(if (member type '("custom-id" "coderef"))
10893 (org-element-property :raw-link context)
10894 path)
10895 ,(cond ((equal arg '(4)) 'occur)
10896 ((equal arg '(16)) 'org-occur))
10897 ,(org-element-property :begin context))))
10898 (condition-case nil
10899 (let ((org-link-search-inhibit-query t))
10900 (eval cmd))
10901 (error (progn (widen) (eval cmd)))))))
10902 (t (browse-url-at-point))))))
10903 ;; On a footnote reference or at a footnote definition's label.
10904 ((or (eq type 'footnote-reference)
10905 (and (eq type 'footnote-definition)
10906 (save-excursion
10907 ;; Do not validate action when point is on the
10908 ;; spaces right after the footnote label, in
10909 ;; order to be on par with behaviour on links.
10910 (skip-chars-forward " \t")
10911 (let ((begin
10912 (org-element-property :contents-begin context)))
10913 (if begin (< (point) begin)
10914 (= (org-element-property :post-affiliated context)
10915 (line-beginning-position)))))))
10916 (org-footnote-action))
10917 (t (user-error "No link found")))))
10918 (move-marker org-open-link-marker nil)
10919 (run-hook-with-args 'org-follow-link-hook)))
10921 (defun org-offer-links-in-entry (buffer marker &optional nth zero)
10922 "Offer links in the current entry and return the selected link.
10923 If there is only one link, return it.
10924 If NTH is an integer, return the NTH link found.
10925 If ZERO is a string, check also this string for a link, and if
10926 there is one, return it."
10927 (with-current-buffer buffer
10928 (save-excursion
10929 (save-restriction
10930 (widen)
10931 (goto-char marker)
10932 (let ((cnt ?0)
10933 (in-emacs (if (integerp nth) nil nth))
10934 have-zero end links link c)
10935 (when (and (stringp zero) (string-match org-bracket-link-regexp zero))
10936 (push (match-string 0 zero) links)
10937 (setq cnt (1- cnt) have-zero t))
10938 (save-excursion
10939 (org-back-to-heading t)
10940 (setq end (save-excursion (outline-next-heading) (point)))
10941 (while (re-search-forward org-any-link-re end t)
10942 (push (match-string 0) links))
10943 (setq links (org-uniquify (reverse links))))
10944 (cond
10945 ((null links)
10946 (message "No links"))
10947 ((equal (length links) 1)
10948 (setq link (car links)))
10949 ((and (integerp nth) (>= (length links) (if have-zero (1+ nth) nth)))
10950 (setq link (nth (if have-zero nth (1- nth)) links)))
10951 (t ; we have to select a link
10952 (save-excursion
10953 (save-window-excursion
10954 (delete-other-windows)
10955 (with-output-to-temp-buffer "*Select Link*"
10956 (mapc (lambda (l)
10957 (if (not (string-match org-bracket-link-regexp l))
10958 (princ (format "[%c] %s\n" (incf cnt)
10959 (org-remove-angle-brackets l)))
10960 (if (match-end 3)
10961 (princ (format "[%c] %s (%s)\n" (incf cnt)
10962 (match-string 3 l) (match-string 1 l)))
10963 (princ (format "[%c] %s\n" (incf cnt)
10964 (match-string 1 l))))))
10965 links))
10966 (org-fit-window-to-buffer (get-buffer-window "*Select Link*"))
10967 (message "Select link to open, RET to open all:")
10968 (setq c (read-char-exclusive))
10969 (and (get-buffer "*Select Link*") (kill-buffer "*Select Link*"))))
10970 (when (equal c ?q) (user-error "Abort"))
10971 (if (equal c ?\C-m)
10972 (setq link links)
10973 (setq nth (- c ?0))
10974 (if have-zero (setq nth (1+ nth)))
10975 (unless (and (integerp nth) (>= (length links) nth))
10976 (user-error "Invalid link selection"))
10977 (setq link (nth (1- nth) links)))))
10978 (cons link end))))))
10980 ;; TODO: These functions are deprecated since `org-open-at-point'
10981 ;; hard-codes behaviour for "file+emacs" and "file+sys" types.
10982 (defun org-open-file-with-system (path)
10983 "Open file at PATH using the system way of opening it."
10984 (org-open-file path 'system))
10985 (defun org-open-file-with-emacs (path)
10986 "Open file at PATH in Emacs."
10987 (org-open-file path 'emacs))
10990 ;;; File search
10992 (defvar org-create-file-search-functions nil
10993 "List of functions to construct the right search string for a file link.
10994 These functions are called in turn with point at the location to
10995 which the link should point.
10997 A function in the hook should first test if it would like to
10998 handle this file type, for example by checking the `major-mode'
10999 or the file extension. If it decides not to handle this file, it
11000 should just return nil to give other functions a chance. If it
11001 does handle the file, it must return the search string to be used
11002 when following the link. The search string will be part of the
11003 file link, given after a double colon, and `org-open-at-point'
11004 will automatically search for it. If special measures must be
11005 taken to make the search successful, another function should be
11006 added to the companion hook `org-execute-file-search-functions',
11007 which see.
11009 A function in this hook may also use `setq' to set the variable
11010 `description' to provide a suggestion for the descriptive text to
11011 be used for this link when it gets inserted into an Org-mode
11012 buffer with \\[org-insert-link].")
11014 (defvar org-execute-file-search-functions nil
11015 "List of functions to execute a file search triggered by a link.
11017 Functions added to this hook must accept a single argument, the
11018 search string that was part of the file link, the part after the
11019 double colon. The function must first check if it would like to
11020 handle this search, for example by checking the `major-mode' or
11021 the file extension. If it decides not to handle this search, it
11022 should just return nil to give other functions a chance. If it
11023 does handle the search, it must return a non-nil value to keep
11024 other functions from trying.
11026 Each function can access the current prefix argument through the
11027 variable `current-prefix-arg'. Note that a single prefix is used
11028 to force opening a link in Emacs, so it may be good to only use a
11029 numeric or double prefix to guide the search function.
11031 In case this is needed, a function in this hook can also restore
11032 the window configuration before `org-open-at-point' was called using:
11034 (set-window-configuration org-window-config-before-follow-link)")
11036 (defun org-link-search (s &optional type avoid-pos stealth)
11037 "Search for a link search option.
11038 If S is surrounded by forward slashes, it is interpreted as a
11039 regular expression. In org-mode files, this will create an `org-occur'
11040 sparse tree. In ordinary files, `occur' will be used to list matches.
11041 If the current buffer is in `dired-mode', grep will be used to search
11042 in all files. If AVOID-POS is given, ignore matches near that position.
11044 When optional argument STEALTH is non-nil, do not modify
11045 visibility around point, thus ignoring
11046 `org-show-hierarchy-above', `org-show-following-heading' and
11047 `org-show-siblings' variables."
11048 (let ((case-fold-search t)
11049 (s0 (mapconcat 'identity (org-split-string s "[ \t\r\n]+") " "))
11050 (markers (concat "\\(?:" (mapconcat (lambda (x) (regexp-quote (car x)))
11051 (append '(("") (" ") ("\t") ("\n"))
11052 org-emphasis-alist)
11053 "\\|") "\\)"))
11054 (pos (point))
11055 (pre nil) (post nil)
11056 words re0 re1 re2 re3 re4_ re4 re5 re2a re2a_ reall)
11057 (cond
11058 ;; First check if there are any special search functions
11059 ((run-hook-with-args-until-success 'org-execute-file-search-functions s))
11060 ;; Now try the builtin stuff
11061 ((and (equal (string-to-char s0) ?#)
11062 (> (length s0) 1)
11063 (save-excursion
11064 (goto-char (point-min))
11065 (and
11066 (re-search-forward
11067 (concat "^[ \t]*:CUSTOM_ID:[ \t]+"
11068 (regexp-quote (substring s0 1)) "[ \t]*$") nil t)
11069 (setq type 'dedicated
11070 pos (match-beginning 0))))
11071 ;; There is an exact target for this
11072 (goto-char pos)
11073 (org-back-to-heading t)))
11074 ((save-excursion
11075 (goto-char (point-min))
11076 (and
11077 (re-search-forward
11078 (concat "<<" (regexp-quote s0) ">>") nil t)
11079 (setq type 'dedicated
11080 pos (match-beginning 0))))
11081 ;; There is an exact target for this
11082 (goto-char pos))
11083 ((save-excursion
11084 (goto-char (point-min))
11085 (and
11086 (re-search-forward
11087 (format "^[ \t]*#\\+NAME: %s" (regexp-quote s0)) nil t)
11088 (setq type 'dedicated pos (match-beginning 0))))
11089 ;; Found an element with a matching #+name affiliated keyword.
11090 (goto-char pos))
11091 ((and (string-match "^(\\(.*\\))$" s0)
11092 (save-excursion
11093 (goto-char (point-min))
11094 (and
11095 (re-search-forward
11096 (concat "[^[]" (regexp-quote
11097 (format org-coderef-label-format
11098 (match-string 1 s0))))
11099 nil t)
11100 (setq type 'dedicated
11101 pos (1+ (match-beginning 0))))))
11102 ;; There is a coderef target for this
11103 (goto-char pos))
11104 ((string-match "^/\\(.*\\)/$" s)
11105 ;; A regular expression
11106 (cond
11107 ((derived-mode-p 'org-mode)
11108 (org-occur (match-string 1 s)))
11109 (t (org-do-occur (match-string 1 s)))))
11110 ((and (derived-mode-p 'org-mode) org-link-search-must-match-exact-headline)
11111 (and (equal (string-to-char s) ?*) (setq s (substring s 1)))
11112 (goto-char (point-min))
11113 (cond
11114 ((let (case-fold-search)
11115 (re-search-forward (format org-complex-heading-regexp-format
11116 (regexp-quote s))
11117 nil t))
11118 ;; OK, found a match
11119 (setq type 'dedicated)
11120 (goto-char (match-beginning 0)))
11121 ((and (not org-link-search-inhibit-query)
11122 (eq org-link-search-must-match-exact-headline 'query-to-create)
11123 (y-or-n-p "No match - create this as a new heading? "))
11124 (goto-char (point-max))
11125 (or (bolp) (newline))
11126 (insert "* " s "\n")
11127 (beginning-of-line 0))
11129 (goto-char pos)
11130 (error "No match"))))
11132 ;; A normal search string
11133 (when (equal (string-to-char s) ?*)
11134 ;; Anchor on headlines, post may include tags.
11135 (setq pre "^\\*+[ \t]+\\(?:\\sw+\\)?[ \t]*"
11136 post (org-re "[ \t]*\\(?:[ \t]+:[[:alnum:]_@#%:+]:[ \t]*\\)?$")
11137 s (substring s 1)))
11138 (remove-text-properties
11139 0 (length s)
11140 '(face nil mouse-face nil keymap nil fontified nil) s)
11141 ;; Make a series of regular expressions to find a match
11142 (setq words (org-split-string s "[ \n\r\t]+")
11144 re0 (concat "\\(<<" (regexp-quote s0) ">>\\)")
11145 re2 (concat markers "\\(" (mapconcat 'downcase words "[ \t]+")
11146 "\\)" markers)
11147 re2a_ (concat "\\(" (mapconcat 'downcase words
11148 "[ \t\r\n]+") "\\)[ \t\r\n]")
11149 re2a (concat "[ \t\r\n]" re2a_)
11150 re4_ (concat "\\(" (mapconcat 'downcase words
11151 "[^a-zA-Z_\r\n]+") "\\)[^a-zA-Z_]")
11152 re4 (concat "[^a-zA-Z_]" re4_)
11154 re1 (concat pre re2 post)
11155 re3 (concat pre (if pre re4_ re4) post)
11156 re5 (concat pre ".*" re4)
11157 re2 (concat pre re2)
11158 re2a (concat pre (if pre re2a_ re2a))
11159 re4 (concat pre (if pre re4_ re4))
11160 reall (concat "\\(" re0 "\\)\\|\\(" re1 "\\)\\|\\(" re2
11161 "\\)\\|\\(" re3 "\\)\\|\\(" re4 "\\)\\|\\("
11162 re5 "\\)"))
11163 (cond
11164 ((eq type 'org-occur) (org-occur reall))
11165 ((eq type 'occur) (org-do-occur (downcase reall) 'cleanup))
11166 (t (goto-char (point-min))
11167 (setq type 'fuzzy)
11168 (if (or (and (org-search-not-self 1 re0 nil t)
11169 (setq type 'dedicated))
11170 (org-search-not-self 1 re1 nil t)
11171 (org-search-not-self 1 re2 nil t)
11172 (org-search-not-self 1 re2a nil t)
11173 (org-search-not-self 1 re3 nil t)
11174 (org-search-not-self 1 re4 nil t)
11175 (org-search-not-self 1 re5 nil t))
11176 (goto-char (match-beginning 1))
11177 (goto-char pos)
11178 (error "No match"))))))
11179 (and (derived-mode-p 'org-mode)
11180 (not stealth)
11181 (org-show-context 'link-search))
11182 type))
11184 (defun org-search-not-self (group &rest args)
11185 "Execute `re-search-forward', but only accept matches that do not
11186 enclose the position of `org-open-link-marker'."
11187 (let ((m org-open-link-marker))
11188 (catch 'exit
11189 (while (apply 're-search-forward args)
11190 (unless (get-text-property (match-end group) 'intangible) ; Emacs 21
11191 (goto-char (match-end group))
11192 (if (and (or (not (eq (marker-buffer m) (current-buffer)))
11193 (> (match-beginning 0) (marker-position m))
11194 (< (match-end 0) (marker-position m)))
11195 (save-match-data
11196 (or (not (org-in-regexp
11197 org-bracket-link-analytic-regexp 1))
11198 (not (match-end 4)) ; no description
11199 (and (<= (match-beginning 4) (point))
11200 (>= (match-end 4) (point))))))
11201 (throw 'exit (point))))))))
11203 (defun org-get-buffer-for-internal-link (buffer)
11204 "Return a buffer to be used for displaying the link target of internal links."
11205 (cond
11206 ((not org-display-internal-link-with-indirect-buffer)
11207 buffer)
11208 ((string-match "(Clone)$" (buffer-name buffer))
11209 (message "Buffer is already a clone, not making another one")
11210 ;; we also do not modify visibility in this case
11211 buffer)
11212 (t ; make a new indirect buffer for displaying the link
11213 (let* ((bn (buffer-name buffer))
11214 (ibn (concat bn "(Clone)"))
11215 (ib (or (get-buffer ibn) (make-indirect-buffer buffer ibn 'clone))))
11216 (with-current-buffer ib (org-overview))
11217 ib))))
11219 (defun org-do-occur (regexp &optional cleanup)
11220 "Call the Emacs command `occur'.
11221 If CLEANUP is non-nil, remove the printout of the regular expression
11222 in the *Occur* buffer. This is useful if the regex is long and not useful
11223 to read."
11224 (occur regexp)
11225 (when cleanup
11226 (let ((cwin (selected-window)) win beg end)
11227 (when (setq win (get-buffer-window "*Occur*"))
11228 (select-window win))
11229 (goto-char (point-min))
11230 (when (re-search-forward "match[a-z]+" nil t)
11231 (setq beg (match-end 0))
11232 (if (re-search-forward "^[ \t]*[0-9]+" nil t)
11233 (setq end (1- (match-beginning 0)))))
11234 (and beg end (let ((inhibit-read-only t)) (delete-region beg end)))
11235 (goto-char (point-min))
11236 (select-window cwin))))
11238 ;;; The mark ring for links jumps
11240 (defvar org-mark-ring nil
11241 "Mark ring for positions before jumps in Org-mode.")
11242 (defvar org-mark-ring-last-goto nil
11243 "Last position in the mark ring used to go back.")
11244 ;; Fill and close the ring
11245 (setq org-mark-ring nil org-mark-ring-last-goto nil) ;; in case file is reloaded
11246 (loop for i from 1 to org-mark-ring-length do
11247 (push (make-marker) org-mark-ring))
11248 (setcdr (nthcdr (1- org-mark-ring-length) org-mark-ring)
11249 org-mark-ring)
11251 (defun org-mark-ring-push (&optional pos buffer)
11252 "Put the current position or POS into the mark ring and rotate it."
11253 (interactive)
11254 (setq pos (or pos (point)))
11255 (setq org-mark-ring (nthcdr (1- org-mark-ring-length) org-mark-ring))
11256 (move-marker (car org-mark-ring)
11257 (or pos (point))
11258 (or buffer (current-buffer)))
11259 (message "%s"
11260 (substitute-command-keys
11261 "Position saved to mark ring, go back with \\[org-mark-ring-goto].")))
11263 (defun org-mark-ring-goto (&optional n)
11264 "Jump to the previous position in the mark ring.
11265 With prefix arg N, jump back that many stored positions. When
11266 called several times in succession, walk through the entire ring.
11267 Org-mode commands jumping to a different position in the current file,
11268 or to another Org-mode file, automatically push the old position
11269 onto the ring."
11270 (interactive "p")
11271 (let (p m)
11272 (if (eq last-command this-command)
11273 (setq p (nthcdr n (or org-mark-ring-last-goto org-mark-ring)))
11274 (setq p org-mark-ring))
11275 (setq org-mark-ring-last-goto p)
11276 (setq m (car p))
11277 (org-pop-to-buffer-same-window (marker-buffer m))
11278 (goto-char m)
11279 (if (or (outline-invisible-p) (org-invisible-p2)) (org-show-context 'mark-goto))))
11281 (defun org-remove-angle-brackets (s)
11282 (if (equal (substring s 0 1) "<") (setq s (substring s 1)))
11283 (if (equal (substring s -1) ">") (setq s (substring s 0 -1)))
11285 (defun org-add-angle-brackets (s)
11286 (if (equal (substring s 0 1) "<") nil (setq s (concat "<" s)))
11287 (if (equal (substring s -1) ">") nil (setq s (concat s ">")))
11289 (defun org-remove-double-quotes (s)
11290 (if (equal (substring s 0 1) "\"") (setq s (substring s 1)))
11291 (if (equal (substring s -1) "\"") (setq s (substring s 0 -1)))
11294 ;;; Following specific links
11296 (defun org-follow-timestamp-link ()
11297 "Open an agenda view for the time-stamp date/range at point."
11298 (cond
11299 ((org-at-date-range-p t)
11300 (let ((org-agenda-start-on-weekday)
11301 (t1 (match-string 1))
11302 (t2 (match-string 2)) tt1 tt2)
11303 (setq tt1 (time-to-days (org-time-string-to-time t1))
11304 tt2 (time-to-days (org-time-string-to-time t2)))
11305 (let ((org-agenda-buffer-tmp-name
11306 (format "*Org Agenda(a:%s)"
11307 (concat (substring t1 0 10) "--" (substring t2 0 10)))))
11308 (org-agenda-list nil tt1 (1+ (- tt2 tt1))))))
11309 ((org-at-timestamp-p t)
11310 (let ((org-agenda-buffer-tmp-name
11311 (format "*Org Agenda(a:%s)" (substring (match-string 1) 0 10))))
11312 (org-agenda-list nil (time-to-days (org-time-string-to-time
11313 (substring (match-string 1) 0 10)))
11314 1)))
11315 (t (error "This should not happen"))))
11318 ;;; Following file links
11319 (declare-function mailcap-parse-mailcaps "mailcap" (&optional path force))
11320 (declare-function mailcap-extension-to-mime "mailcap" (extn))
11321 (declare-function mailcap-mime-info
11322 "mailcap" (string &optional request no-decode))
11323 (defvar org-wait nil)
11324 (defun org-open-file (path &optional in-emacs line search)
11325 "Open the file at PATH.
11326 First, this expands any special file name abbreviations. Then the
11327 configuration variable `org-file-apps' is checked if it contains an
11328 entry for this file type, and if yes, the corresponding command is launched.
11330 If no application is found, Emacs simply visits the file.
11332 With optional prefix argument IN-EMACS, Emacs will visit the file.
11333 With a double \\[universal-argument] \\[universal-argument] \
11334 prefix arg, Org tries to avoid opening in Emacs
11335 and to use an external application to visit the file.
11337 Optional LINE specifies a line to go to, optional SEARCH a string
11338 to search for. If LINE or SEARCH is given, the file will be
11339 opened in Emacs, unless an entry from org-file-apps that makes
11340 use of groups in a regexp matches.
11342 If you want to change the way frames are used when following a
11343 link, please customize `org-link-frame-setup'.
11345 If the file does not exist, an error is thrown."
11346 (let* ((file (if (equal path "")
11347 buffer-file-name
11348 (substitute-in-file-name (expand-file-name path))))
11349 (file-apps (append org-file-apps (org-default-apps)))
11350 (apps (org-remove-if
11351 'org-file-apps-entry-match-against-dlink-p file-apps))
11352 (apps-dlink (org-remove-if-not
11353 'org-file-apps-entry-match-against-dlink-p file-apps))
11354 (remp (and (assq 'remote apps) (org-file-remote-p file)))
11355 (dirp (if remp nil (file-directory-p file)))
11356 (file (if (and dirp org-open-directory-means-index-dot-org)
11357 (concat (file-name-as-directory file) "index.org")
11358 file))
11359 (a-m-a-p (assq 'auto-mode apps))
11360 (dfile (downcase file))
11361 ;; reconstruct the original file: link from the PATH, LINE and SEARCH args
11362 (link (cond ((and (eq line nil)
11363 (eq search nil))
11364 file)
11365 (line
11366 (concat file "::" (number-to-string line)))
11367 (search
11368 (concat file "::" search))))
11369 (dlink (downcase link))
11370 (old-buffer (current-buffer))
11371 (old-pos (point))
11372 (old-mode major-mode)
11373 ext cmd link-match-data)
11374 (if (string-match "^.*\\.\\([a-zA-Z0-9]+\\.gz\\)$" dfile)
11375 (setq ext (match-string 1 dfile))
11376 (if (string-match "^.*\\.\\([a-zA-Z0-9]+\\)$" dfile)
11377 (setq ext (match-string 1 dfile))))
11378 (cond
11379 ((member in-emacs '((16) system))
11380 (setq cmd (cdr (assoc 'system apps))))
11381 (in-emacs (setq cmd 'emacs))
11383 (setq cmd (or (and remp (cdr (assoc 'remote apps)))
11384 (and dirp (cdr (assoc 'directory apps)))
11385 ; first, try matching against apps-dlink
11386 ; if we get a match here, store the match data for later
11387 (let ((match (assoc-default dlink apps-dlink
11388 'string-match)))
11389 (if match
11390 (progn (setq link-match-data (match-data))
11391 match)
11392 (progn (setq in-emacs (or in-emacs line search))
11393 nil))) ; if we have no match in apps-dlink,
11394 ; always open the file in emacs if line or search
11395 ; is given (for backwards compatibility)
11396 (assoc-default dfile (org-apps-regexp-alist apps a-m-a-p)
11397 'string-match)
11398 (cdr (assoc ext apps))
11399 (cdr (assoc t apps))))))
11400 (when (eq cmd 'system)
11401 (setq cmd (cdr (assoc 'system apps))))
11402 (when (eq cmd 'default)
11403 (setq cmd (cdr (assoc t apps))))
11404 (when (eq cmd 'mailcap)
11405 (require 'mailcap)
11406 (mailcap-parse-mailcaps)
11407 (let* ((mime-type (mailcap-extension-to-mime (or ext "")))
11408 (command (mailcap-mime-info mime-type)))
11409 (if (stringp command)
11410 (setq cmd command)
11411 (setq cmd 'emacs))))
11412 (if (and (not (eq cmd 'emacs)) ; Emacs has no problems with non-ex files
11413 (not (file-exists-p file))
11414 (not org-open-non-existing-files))
11415 (user-error "No such file: %s" file))
11416 (cond
11417 ((and (stringp cmd) (not (string-match "^\\s-*$" cmd)))
11418 ;; Remove quotes around the file name - we'll use shell-quote-argument.
11419 (while (string-match "['\"]%s['\"]" cmd)
11420 (setq cmd (replace-match "%s" t t cmd)))
11421 (while (string-match "%s" cmd)
11422 (setq cmd (replace-match
11423 (save-match-data
11424 (shell-quote-argument
11425 (convert-standard-filename file)))
11426 t t cmd)))
11428 ;; Replace "%1", "%2" etc. in command with group matches from regex
11429 (save-match-data
11430 (let ((match-index 1)
11431 (number-of-groups (- (/ (length link-match-data) 2) 1)))
11432 (set-match-data link-match-data)
11433 (while (<= match-index number-of-groups)
11434 (let ((regex (concat "%" (number-to-string match-index)))
11435 (replace-with (match-string match-index dlink)))
11436 (while (string-match regex cmd)
11437 (setq cmd (replace-match replace-with t t cmd))))
11438 (setq match-index (+ match-index 1)))))
11440 (save-window-excursion
11441 (message "Running %s...done" cmd)
11442 (start-process-shell-command cmd nil cmd)
11443 (and (boundp 'org-wait) (numberp org-wait) (sit-for org-wait))))
11444 ((or (stringp cmd)
11445 (eq cmd 'emacs))
11446 (funcall (cdr (assq 'file org-link-frame-setup)) file)
11447 (widen)
11448 (if line (progn (org-goto-line line)
11449 (if (derived-mode-p 'org-mode)
11450 (org-reveal)))
11451 (if search (org-link-search search))))
11452 ((consp cmd)
11453 (let ((file (convert-standard-filename file)))
11454 (save-match-data
11455 (set-match-data link-match-data)
11456 (eval cmd))))
11457 (t (funcall (cdr (assq 'file org-link-frame-setup)) file)))
11458 (and (derived-mode-p 'org-mode) (eq old-mode 'org-mode)
11459 (or (not (equal old-buffer (current-buffer)))
11460 (not (equal old-pos (point))))
11461 (org-mark-ring-push old-pos old-buffer))))
11463 (defun org-file-apps-entry-match-against-dlink-p (entry)
11464 "This function returns non-nil if `entry' uses a regular
11465 expression which should be matched against the whole link by
11466 org-open-file.
11468 It assumes that is the case when the entry uses a regular
11469 expression which has at least one grouping construct and the
11470 action is either a lisp form or a command string containing
11471 '%1', i.e. using at least one subexpression match as a
11472 parameter."
11473 (let ((selector (car entry))
11474 (action (cdr entry)))
11475 (if (stringp selector)
11476 (and (> (regexp-opt-depth selector) 0)
11477 (or (and (stringp action)
11478 (string-match "%[0-9]" action))
11479 (consp action)))
11480 nil)))
11482 (defun org-default-apps ()
11483 "Return the default applications for this operating system."
11484 (cond
11485 ((eq system-type 'darwin)
11486 org-file-apps-defaults-macosx)
11487 ((eq system-type 'windows-nt)
11488 org-file-apps-defaults-windowsnt)
11489 (t org-file-apps-defaults-gnu)))
11491 (defun org-apps-regexp-alist (list &optional add-auto-mode)
11492 "Convert extensions to regular expressions in the cars of LIST.
11493 Also, weed out any non-string entries, because the return value is used
11494 only for regexp matching.
11495 When ADD-AUTO-MODE is set, make all matches in `auto-mode-alist'
11496 point to the symbol `emacs', indicating that the file should
11497 be opened in Emacs."
11498 (append
11499 (delq nil
11500 (mapcar (lambda (x)
11501 (if (not (stringp (car x)))
11503 (if (string-match "\\W" (car x))
11505 (cons (concat "\\." (car x) "\\'") (cdr x)))))
11506 list))
11507 (if add-auto-mode
11508 (mapcar (lambda (x) (cons (car x) 'emacs)) auto-mode-alist))))
11510 (defvar ange-ftp-name-format) ; to silence the XEmacs compiler.
11511 (defun org-file-remote-p (file)
11512 "Test whether FILE specifies a location on a remote system.
11513 Return non-nil if the location is indeed remote.
11515 For example, the filename \"/user@host:/foo\" specifies a location
11516 on the system \"/user@host:\"."
11517 (cond ((fboundp 'file-remote-p)
11518 (file-remote-p file))
11519 ((fboundp 'tramp-handle-file-remote-p)
11520 (tramp-handle-file-remote-p file))
11521 ((and (boundp 'ange-ftp-name-format)
11522 (string-match (car ange-ftp-name-format) file))
11523 t)))
11526 ;;;; Refiling
11528 (defun org-get-org-file ()
11529 "Read a filename, with default directory `org-directory'."
11530 (let ((default (or org-default-notes-file remember-data-file)))
11531 (read-file-name (format "File name [%s]: " default)
11532 (file-name-as-directory org-directory)
11533 default)))
11535 (defun org-notes-order-reversed-p ()
11536 "Check if the current file should receive notes in reversed order."
11537 (cond
11538 ((not org-reverse-note-order) nil)
11539 ((eq t org-reverse-note-order) t)
11540 ((not (listp org-reverse-note-order)) nil)
11541 (t (catch 'exit
11542 (let ((all org-reverse-note-order)
11543 entry)
11544 (while (setq entry (pop all))
11545 (if (string-match (car entry) buffer-file-name)
11546 (throw 'exit (cdr entry))))
11547 nil)))))
11549 (defvar org-refile-target-table nil
11550 "The list of refile targets, created by `org-refile'.")
11552 (defvar org-agenda-new-buffers nil
11553 "Buffers created to visit agenda files.")
11555 (defvar org-refile-cache nil
11556 "Cache for refile targets.")
11558 (defvar org-refile-markers nil
11559 "All the markers used for caching refile locations.")
11561 (defun org-refile-marker (pos)
11562 "Get a new refile marker, but only if caching is in use."
11563 (if (not org-refile-use-cache)
11565 (let ((m (make-marker)))
11566 (move-marker m pos)
11567 (push m org-refile-markers)
11568 m)))
11570 (defun org-refile-cache-clear ()
11571 "Clear the refile cache and disable all the markers."
11572 (mapc (lambda (m) (move-marker m nil)) org-refile-markers)
11573 (setq org-refile-markers nil)
11574 (setq org-refile-cache nil)
11575 (message "Refile cache has been cleared"))
11577 (defun org-refile-cache-check-set (set)
11578 "Check if all the markers in the cache still have live buffers."
11579 (let (marker)
11580 (catch 'exit
11581 (while (and set (setq marker (nth 3 (pop set))))
11582 ;; If `org-refile-use-outline-path' is 'file, marker may be nil
11583 (when (and marker (null (marker-buffer marker)))
11584 (message "Please regenerate the refile cache with `C-0 C-c C-w'")
11585 (sit-for 3)
11586 (throw 'exit nil)))
11587 t)))
11589 (defun org-refile-cache-put (set &rest identifiers)
11590 "Push the refile targets SET into the cache, under IDENTIFIERS."
11591 (let* ((key (sha1 (prin1-to-string identifiers)))
11592 (entry (assoc key org-refile-cache)))
11593 (if entry
11594 (setcdr entry set)
11595 (push (cons key set) org-refile-cache))))
11597 (defun org-refile-cache-get (&rest identifiers)
11598 "Retrieve the cached value for refile targets given by IDENTIFIERS."
11599 (cond
11600 ((not org-refile-cache) nil)
11601 ((not org-refile-use-cache) (org-refile-cache-clear) nil)
11603 (let ((set (cdr (assoc (sha1 (prin1-to-string identifiers))
11604 org-refile-cache))))
11605 (and set (org-refile-cache-check-set set) set)))))
11607 (defun org-refile-get-targets (&optional default-buffer excluded-entries)
11608 "Produce a table with refile targets."
11609 (let ((case-fold-search nil)
11610 ;; otherwise org confuses "TODO" as a kw and "Todo" as a word
11611 (entries (or org-refile-targets '((nil . (:level . 1)))))
11612 targets tgs txt re files f desc descre fast-path-p level pos0)
11613 (message "Getting targets...")
11614 (with-current-buffer (or default-buffer (current-buffer))
11615 (while (setq entry (pop entries))
11616 (setq files (car entry) desc (cdr entry))
11617 (setq fast-path-p nil)
11618 (cond
11619 ((null files) (setq files (list (current-buffer))))
11620 ((eq files 'org-agenda-files)
11621 (setq files (org-agenda-files 'unrestricted)))
11622 ((and (symbolp files) (fboundp files))
11623 (setq files (funcall files)))
11624 ((and (symbolp files) (boundp files))
11625 (setq files (symbol-value files))))
11626 (if (stringp files) (setq files (list files)))
11627 (cond
11628 ((eq (car desc) :tag)
11629 (setq descre (concat "^\\*+[ \t]+.*?:" (regexp-quote (cdr desc)) ":")))
11630 ((eq (car desc) :todo)
11631 (setq descre (concat "^\\*+[ \t]+" (regexp-quote (cdr desc)) "[ \t]")))
11632 ((eq (car desc) :regexp)
11633 (setq descre (cdr desc)))
11634 ((eq (car desc) :level)
11635 (setq descre (concat "^\\*\\{" (number-to-string
11636 (if org-odd-levels-only
11637 (1- (* 2 (cdr desc)))
11638 (cdr desc)))
11639 "\\}[ \t]")))
11640 ((eq (car desc) :maxlevel)
11641 (setq fast-path-p t)
11642 (setq descre (concat "^\\*\\{1," (number-to-string
11643 (if org-odd-levels-only
11644 (1- (* 2 (cdr desc)))
11645 (cdr desc)))
11646 "\\}[ \t]")))
11647 (t (error "Bad refiling target description %s" desc)))
11648 (while (setq f (pop files))
11649 (with-current-buffer
11650 (if (bufferp f) f (org-get-agenda-file-buffer f))
11652 (setq tgs (org-refile-cache-get (buffer-file-name) descre))
11653 (progn
11654 (if (bufferp f) (setq f (buffer-file-name
11655 (buffer-base-buffer f))))
11656 (setq f (and f (expand-file-name f)))
11657 (if (eq org-refile-use-outline-path 'file)
11658 (push (list (file-name-nondirectory f) f nil nil) tgs))
11659 (save-excursion
11660 (save-restriction
11661 (widen)
11662 (goto-char (point-min))
11663 (while (re-search-forward descre nil t)
11664 (goto-char (setq pos0 (point-at-bol)))
11665 (catch 'next
11666 (when org-refile-target-verify-function
11667 (save-match-data
11668 (or (funcall org-refile-target-verify-function)
11669 (throw 'next t))))
11670 (when (and (looking-at org-complex-heading-regexp)
11671 (not (member (match-string 4) excluded-entries))
11672 (match-string 4))
11673 (setq level (org-reduced-level
11674 (- (match-end 1) (match-beginning 1)))
11675 txt (org-link-display-format (match-string 4))
11676 txt (replace-regexp-in-string "\\( *\[[0-9]+/?[0-9]*%?\]\\)+$" "" txt)
11677 re (format org-complex-heading-regexp-format
11678 (regexp-quote (match-string 4))))
11679 (when org-refile-use-outline-path
11680 (setq txt (mapconcat
11681 'org-protect-slash
11682 (append
11683 (if (eq org-refile-use-outline-path
11684 'file)
11685 (list (file-name-nondirectory
11686 (buffer-file-name
11687 (buffer-base-buffer))))
11688 (if (eq org-refile-use-outline-path
11689 'full-file-path)
11690 (list (buffer-file-name
11691 (buffer-base-buffer)))))
11692 (org-get-outline-path fast-path-p
11693 level txt)
11694 (list txt))
11695 "/")))
11696 (push (list txt f re (org-refile-marker (point)))
11697 tgs)))
11698 (when (= (point) pos0)
11699 ;; verification function has not moved point
11700 (goto-char (point-at-eol))))))))
11701 (when org-refile-use-cache
11702 (org-refile-cache-put tgs (buffer-file-name) descre))
11703 (setq targets (append tgs targets))))))
11704 (message "Getting targets...done")
11705 (nreverse targets)))
11707 (defun org-protect-slash (s)
11708 (while (string-match "/" s)
11709 (setq s (replace-match "\\" t t s)))
11712 (defvar org-olpa (make-vector 20 nil))
11714 (defun org-get-outline-path (&optional fastp level heading)
11715 "Return the outline path to the current entry, as a list.
11717 The parameters FASTP, LEVEL, and HEADING are for use by a scanner
11718 routine which makes outline path derivations for an entire file,
11719 avoiding backtracing. Refile target collection makes use of that."
11720 (if fastp
11721 (progn
11722 (if (> level 19)
11723 (error "Outline path failure, more than 19 levels"))
11724 (loop for i from level upto 19 do
11725 (aset org-olpa i nil))
11726 (prog1
11727 (delq nil (append org-olpa nil))
11728 (aset org-olpa level heading)))
11729 (let (rtn case-fold-search)
11730 (save-excursion
11731 (save-restriction
11732 (widen)
11733 (while (org-up-heading-safe)
11734 (when (looking-at org-complex-heading-regexp)
11735 (push (org-trim
11736 (replace-regexp-in-string
11737 ;; Remove statistical/checkboxes cookies
11738 "\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]" ""
11739 (org-match-string-no-properties 4)))
11740 rtn)))
11741 rtn)))))
11743 (defun org-format-outline-path (path &optional width prefix separator)
11744 "Format the outline path PATH for display.
11745 WIDTH is the maximum number of characters that is available.
11746 PREFIX is a prefix to be included in the returned string,
11747 such as the file name.
11748 SEPARATOR is inserted between the different parts of the path,
11749 the default is \"/\"."
11750 (setq width (or width 79))
11751 (if prefix (setq width (- width (length prefix))))
11752 (if (not path)
11753 (or prefix "")
11754 (let* ((nsteps (length path))
11755 (total-width (+ nsteps (apply '+ (mapcar 'length path))))
11756 (maxwidth (if (<= total-width width)
11757 10000 ;; everything fits
11758 ;; we need to shorten the level headings
11759 (/ (- width nsteps) nsteps)))
11760 (org-odd-levels-only nil)
11761 (n 0)
11762 (total (1+ (length prefix))))
11763 (setq maxwidth (max maxwidth 10))
11764 (concat prefix
11765 (if prefix (or separator "/"))
11766 (mapconcat
11767 (lambda (h)
11768 (setq n (1+ n))
11769 (if (and (= n nsteps) (< maxwidth 10000))
11770 (setq maxwidth (- total-width total)))
11771 (if (< (length h) maxwidth)
11772 (progn (setq total (+ total (length h) 1)) h)
11773 (setq h (substring h 0 (- maxwidth 2))
11774 total (+ total maxwidth 1))
11775 (if (string-match "[ \t]+\\'" h)
11776 (setq h (substring h 0 (match-beginning 0))))
11777 (setq h (concat h "..")))
11778 (org-add-props h nil 'face
11779 (nth (% (1- n) org-n-level-faces)
11780 org-level-faces))
11782 path (or separator "/"))))))
11784 (defun org-display-outline-path (&optional file current separator just-return-string)
11785 "Display the current outline path in the echo area.
11787 If FILE is non-nil, prepend the output with the file name.
11788 If CURRENT is non-nil, append the current heading to the output.
11789 SEPARATOR is passed through to `org-format-outline-path'. It separates
11790 the different parts of the path and defaults to \"/\".
11791 If JUST-RETURN-STRING is non-nil, return a string, don't display a message."
11792 (interactive "P")
11793 (let* (case-fold-search
11794 (bfn (buffer-file-name (buffer-base-buffer)))
11795 (path (and (derived-mode-p 'org-mode) (org-get-outline-path)))
11796 res)
11797 (if current (setq path (append path
11798 (save-excursion
11799 (org-back-to-heading t)
11800 (if (looking-at org-complex-heading-regexp)
11801 (list (match-string 4)))))))
11802 (setq res
11803 (org-format-outline-path
11804 path
11805 (1- (frame-width))
11806 (and file bfn (concat (file-name-nondirectory bfn) separator))
11807 separator))
11808 (if just-return-string
11809 (org-no-properties res)
11810 (org-unlogged-message "%s" res))))
11812 (defvar org-refile-history nil
11813 "History for refiling operations.")
11815 (defvar org-after-refile-insert-hook nil
11816 "Hook run after `org-refile' has inserted its stuff at the new location.
11817 Note that this is still *before* the stuff will be removed from
11818 the *old* location.")
11820 (defvar org-capture-last-stored-marker)
11821 (defvar org-refile-keep nil
11822 "Non-nil means `org-refile' will copy instead of refile.")
11824 (defun org-copy ()
11825 "Like `org-refile', but copy."
11826 (interactive)
11827 (let ((org-refile-keep t))
11828 (funcall 'org-refile nil nil nil "Copy")))
11830 (defun org-refile (&optional arg default-buffer rfloc msg)
11831 "Move the entry or entries at point to another heading.
11832 The list of target headings is compiled using the information in
11833 `org-refile-targets', which see.
11835 At the target location, the entry is filed as a subitem of the
11836 target heading. Depending on `org-reverse-note-order', the new
11837 subitem will either be the first or the last subitem.
11839 If there is an active region, all entries in that region will be
11840 refiled. However, the region must fulfill the requirement that
11841 the first heading sets the top-level of the moved text.
11843 With prefix arg ARG, the command will only visit the target
11844 location and not actually move anything.
11846 With a double prefix arg \\[universal-argument] \\[universal-argument], go to the location where the last
11847 refiling operation has put the subtree.
11849 With a numeric prefix argument of `2', refile to the running clock.
11851 With a numeric prefix argument of `3', emulate `org-refile-keep'
11852 being set to `t' and copy to the target location, don't move it.
11853 Beware that keeping refiled entries may result in duplicated ID
11854 properties.
11856 RFLOC can be a refile location obtained in a different way.
11858 MSG is a string to replace \"Refile\" in the default prompt with
11859 another verb. E.g. `org-copy' sets this parameter to \"Copy\".
11861 See also `org-refile-use-outline-path' and `org-completion-use-ido'.
11863 If you are using target caching (see `org-refile-use-cache'), you
11864 have to clear the target cache in order to find new targets.
11865 This can be done with a 0 prefix (`C-0 C-c C-w') or a triple
11866 prefix argument (`C-u C-u C-u C-c C-w')."
11867 (interactive "P")
11868 (if (member arg '(0 (64)))
11869 (org-refile-cache-clear)
11870 (let* ((actionmsg (cond (msg msg)
11871 ((equal arg 3) "Refile (and keep)")
11872 (t "Refile")))
11873 (cbuf (current-buffer))
11874 (regionp (org-region-active-p))
11875 (region-start (and regionp (region-beginning)))
11876 (region-end (and regionp (region-end)))
11877 (filename (buffer-file-name (buffer-base-buffer cbuf)))
11878 (org-refile-keep (if (equal arg 3) t org-refile-keep))
11879 pos it nbuf file re level reversed)
11880 (setq last-command nil)
11881 (when regionp
11882 (goto-char region-start)
11883 (or (bolp) (goto-char (point-at-bol)))
11884 (setq region-start (point))
11885 (unless (or (org-kill-is-subtree-p
11886 (buffer-substring region-start region-end))
11887 (prog1 org-refile-active-region-within-subtree
11888 (let ((s (point-at-eol)))
11889 (org-toggle-heading)
11890 (setq region-end (+ (- (point-at-eol) s) region-end)))))
11891 (user-error "The region is not a (sequence of) subtree(s)")))
11892 (if (equal arg '(16))
11893 (org-refile-goto-last-stored)
11894 (when (or
11895 (and (equal arg 2)
11896 org-clock-hd-marker (marker-buffer org-clock-hd-marker)
11897 (prog1
11898 (setq it (list (or org-clock-heading "running clock")
11899 (buffer-file-name
11900 (marker-buffer org-clock-hd-marker))
11902 (marker-position org-clock-hd-marker)))
11903 (setq arg nil)))
11904 (setq it (or rfloc
11905 (let (heading-text)
11906 (save-excursion
11907 (unless (and arg (listp arg))
11908 (org-back-to-heading t)
11909 (setq heading-text
11910 (replace-regexp-in-string
11911 org-bracket-link-regexp
11912 "\\3"
11913 (nth 4 (org-heading-components)))))
11914 (org-refile-get-location
11915 (cond ((and arg (listp arg)) "Goto")
11916 (regionp (concat actionmsg " region to"))
11917 (t (concat actionmsg " subtree \""
11918 heading-text "\" to")))
11919 default-buffer
11920 (and (not (equal '(4) arg))
11921 org-refile-allow-creating-parent-nodes)
11922 arg))))))
11923 (setq file (nth 1 it)
11924 re (nth 2 it)
11925 pos (nth 3 it))
11926 (if (and (not arg)
11928 (equal (buffer-file-name) file)
11929 (if regionp
11930 (and (>= pos region-start)
11931 (<= pos region-end))
11932 (and (>= pos (point))
11933 (< pos (save-excursion
11934 (org-end-of-subtree t t))))))
11935 (error "Cannot refile to position inside the tree or region"))
11936 (setq nbuf (or (find-buffer-visiting file)
11937 (find-file-noselect file)))
11938 (if (and arg (not (equal arg 3)))
11939 (progn
11940 (org-pop-to-buffer-same-window nbuf)
11941 (goto-char pos)
11942 (org-show-context 'org-goto))
11943 (if regionp
11944 (progn
11945 (org-kill-new (buffer-substring region-start region-end))
11946 (org-save-markers-in-region region-start region-end))
11947 (org-copy-subtree 1 nil t))
11948 (with-current-buffer (setq nbuf (or (find-buffer-visiting file)
11949 (find-file-noselect file)))
11950 (setq reversed (org-notes-order-reversed-p))
11951 (save-excursion
11952 (save-restriction
11953 (widen)
11954 (if pos
11955 (progn
11956 (goto-char pos)
11957 (looking-at org-outline-regexp)
11958 (setq level (org-get-valid-level (funcall outline-level) 1))
11959 (goto-char
11960 (if reversed
11961 (or (outline-next-heading) (point-max))
11962 (or (save-excursion (org-get-next-sibling))
11963 (org-end-of-subtree t t)
11964 (point-max)))))
11965 (setq level 1)
11966 (if (not reversed)
11967 (goto-char (point-max))
11968 (goto-char (point-min))
11969 (or (outline-next-heading) (goto-char (point-max)))))
11970 (if (not (bolp)) (newline))
11971 (org-paste-subtree level nil nil t)
11972 (when org-log-refile
11973 (org-add-log-setup 'refile nil nil 'findpos org-log-refile)
11974 (unless (eq org-log-refile 'note)
11975 (save-excursion (org-add-log-note))))
11976 (and org-auto-align-tags
11977 (let ((org-loop-over-headlines-in-active-region nil))
11978 (org-set-tags nil t)))
11979 (let ((bookmark-name (plist-get org-bookmark-names-plist
11980 :last-refile)))
11981 (when bookmark-name
11982 (with-demoted-errors
11983 (bookmark-set bookmark-name))))
11984 ;; If we are refiling for capture, make sure that the
11985 ;; last-capture pointers point here
11986 (when (org-bound-and-true-p org-refile-for-capture)
11987 (let ((bookmark-name (plist-get org-bookmark-names-plist
11988 :last-capture-marker)))
11989 (when bookmark-name
11990 (with-demoted-errors
11991 (bookmark-set bookmark-name))))
11992 (move-marker org-capture-last-stored-marker (point)))
11993 (if (fboundp 'deactivate-mark) (deactivate-mark))
11994 (run-hooks 'org-after-refile-insert-hook))))
11995 (unless org-refile-keep
11996 (if regionp
11997 (delete-region (point) (+ (point) (- region-end region-start)))
11998 (delete-region
11999 (and (org-back-to-heading t) (point))
12000 (min (1+ (buffer-size)) (org-end-of-subtree t t) (point)))))
12001 (when (featurep 'org-inlinetask)
12002 (org-inlinetask-remove-END-maybe))
12003 (setq org-markers-to-move nil)
12004 (message (concat actionmsg " to \"%s\" in file %s: done") (car it) file)))))))
12006 (defun org-refile-goto-last-stored ()
12007 "Go to the location where the last refile was stored."
12008 (interactive)
12009 (bookmark-jump (plist-get org-bookmark-names-plist :last-refile))
12010 (message "This is the location of the last refile"))
12012 (defun org-refile--get-location (refloc tbl)
12013 "When user refile to REFLOC, find the associated target in TBL.
12014 Also check `org-refile-target-table'."
12015 (car (delq
12017 (mapcar
12018 (lambda (r) (or (assoc r tbl)
12019 (assoc r org-refile-target-table)))
12020 (list (replace-regexp-in-string "/$" "" refloc)
12021 (replace-regexp-in-string "\\([^/]\\)$" "\\1/" refloc))))))
12023 (defun org-refile-get-location (&optional prompt default-buffer new-nodes
12024 no-exclude)
12025 "Prompt the user for a refile location, using PROMPT.
12026 PROMPT should not be suffixed with a colon and a space, because
12027 this function appends the default value from
12028 `org-refile-history' automatically, if that is not empty.
12029 When NO-EXCLUDE is set, do not exclude headlines in the current subtree,
12030 this is used for the GOTO interface."
12031 (let ((org-refile-targets org-refile-targets)
12032 (org-refile-use-outline-path org-refile-use-outline-path)
12033 excluded-entries)
12034 (when (and (derived-mode-p 'org-mode)
12035 (not org-refile-use-cache)
12036 (not no-exclude))
12037 (org-map-tree
12038 (lambda()
12039 (setq excluded-entries
12040 (append excluded-entries (list (org-get-heading t t)))))))
12041 (setq org-refile-target-table
12042 (org-refile-get-targets default-buffer excluded-entries)))
12043 (unless org-refile-target-table
12044 (user-error "No refile targets"))
12045 (let* ((cbuf (current-buffer))
12046 (partial-completion-mode nil)
12047 (cfn (buffer-file-name (buffer-base-buffer cbuf)))
12048 (cfunc (if (and org-refile-use-outline-path
12049 org-outline-path-complete-in-steps)
12050 'org-olpath-completing-read
12051 'org-icompleting-read))
12052 (extra (if org-refile-use-outline-path "/" ""))
12053 (cbnex (concat (buffer-name) extra))
12054 (filename (and cfn (expand-file-name cfn)))
12055 (tbl (mapcar
12056 (lambda (x)
12057 (if (and (not (member org-refile-use-outline-path
12058 '(file full-file-path)))
12059 (not (equal filename (nth 1 x))))
12060 (cons (concat (car x) extra " ("
12061 (file-name-nondirectory (nth 1 x)) ")")
12062 (cdr x))
12063 (cons (concat (car x) extra) (cdr x))))
12064 org-refile-target-table))
12065 (completion-ignore-case t)
12066 cdef
12067 (prompt (concat prompt
12068 (or (and (car org-refile-history)
12069 (concat " (default " (car org-refile-history) ")"))
12070 (and (assoc cbnex tbl) (setq cdef cbnex)
12071 (concat " (default " cbnex ")"))) ": "))
12072 pa answ parent-target child parent old-hist)
12073 (setq old-hist org-refile-history)
12074 (setq answ (funcall cfunc prompt tbl nil (not new-nodes)
12075 nil 'org-refile-history (or cdef (car org-refile-history))))
12076 (if (setq pa (org-refile--get-location answ tbl))
12077 (progn
12078 (org-refile-check-position pa)
12079 (when (or (not org-refile-history)
12080 (not (eq old-hist org-refile-history))
12081 (not (equal (car pa) (car org-refile-history))))
12082 (setq org-refile-history
12083 (cons (car pa) (if (assoc (car org-refile-history) tbl)
12084 org-refile-history
12085 (cdr org-refile-history))))
12086 (if (equal (car org-refile-history) (nth 1 org-refile-history))
12087 (pop org-refile-history)))
12089 (if (string-match "\\`\\(.*\\)/\\([^/]+\\)\\'" answ)
12090 (progn
12091 (setq parent (match-string 1 answ)
12092 child (match-string 2 answ))
12093 (setq parent-target (org-refile--get-location parent tbl))
12094 (when (and parent-target
12095 (or (eq new-nodes t)
12096 (and (eq new-nodes 'confirm)
12097 (y-or-n-p (format "Create new node \"%s\"? "
12098 child)))))
12099 (org-refile-new-child parent-target child)))
12100 (user-error "Invalid target location")))))
12102 (declare-function org-string-nw-p "org-macs" (s))
12103 (defun org-refile-check-position (refile-pointer)
12104 "Check if the refile pointer matches the headline to which it points."
12105 (let* ((file (nth 1 refile-pointer))
12106 (re (nth 2 refile-pointer))
12107 (pos (nth 3 refile-pointer))
12108 buffer)
12109 (if (and (not (markerp pos)) (not file))
12110 (user-error "Please indicate a target file in the refile path")
12111 (when (org-string-nw-p re)
12112 (setq buffer (if (markerp pos)
12113 (marker-buffer pos)
12114 (or (find-buffer-visiting file)
12115 (find-file-noselect file))))
12116 (with-current-buffer buffer
12117 (save-excursion
12118 (save-restriction
12119 (widen)
12120 (goto-char pos)
12121 (beginning-of-line 1)
12122 (unless (org-looking-at-p re)
12123 (user-error "Invalid refile position, please clear the cache with `C-0 C-c C-w' before refiling")))))))))
12125 (defun org-refile-new-child (parent-target child)
12126 "Use refile target PARENT-TARGET to add new CHILD below it."
12127 (unless parent-target
12128 (error "Cannot find parent for new node"))
12129 (let ((file (nth 1 parent-target))
12130 (pos (nth 3 parent-target))
12131 level)
12132 (with-current-buffer (or (find-buffer-visiting file)
12133 (find-file-noselect file))
12134 (save-excursion
12135 (save-restriction
12136 (widen)
12137 (if pos
12138 (goto-char pos)
12139 (goto-char (point-max))
12140 (if (not (bolp)) (newline)))
12141 (when (looking-at org-outline-regexp)
12142 (setq level (funcall outline-level))
12143 (org-end-of-subtree t t))
12144 (org-back-over-empty-lines)
12145 (insert "\n" (make-string
12146 (if pos (org-get-valid-level level 1) 1) ?*)
12147 " " child "\n")
12148 (beginning-of-line 0)
12149 (list (concat (car parent-target) "/" child) file "" (point)))))))
12151 (defun org-olpath-completing-read (prompt collection &rest args)
12152 "Read an outline path like a file name."
12153 (let ((thetable collection)
12154 (org-completion-use-ido nil) ; does not work with ido.
12155 (org-completion-use-iswitchb nil)) ; or iswitchb
12156 (apply
12157 'org-icompleting-read prompt
12158 (lambda (string predicate &optional flag)
12159 (let (rtn r f (l (length string)))
12160 (cond
12161 ((eq flag nil)
12162 ;; try completion
12163 (try-completion string thetable))
12164 ((eq flag t)
12165 ;; all-completions
12166 (setq rtn (all-completions string thetable predicate))
12167 (mapcar
12168 (lambda (x)
12169 (setq r (substring x l))
12170 (if (string-match " ([^)]*)$" x)
12171 (setq f (match-string 0 x))
12172 (setq f ""))
12173 (if (string-match "/" r)
12174 (concat string (substring r 0 (match-end 0)) f)
12176 rtn))
12177 ((eq flag 'lambda)
12178 ;; exact match?
12179 (assoc string thetable)))))
12180 args)))
12182 ;;;; Dynamic blocks
12184 (defun org-find-dblock (name)
12185 "Find the first dynamic block with name NAME in the buffer.
12186 If not found, stay at current position and return nil."
12187 (let ((case-fold-search t) pos)
12188 (save-excursion
12189 (goto-char (point-min))
12190 (setq pos (and (re-search-forward
12191 (concat "^[ \t]*#\\+\\(?:BEGIN\\|begin\\):[ \t]+" name "\\>") nil t)
12192 (match-beginning 0))))
12193 (if pos (goto-char pos))
12194 pos))
12196 (defun org-create-dblock (plist)
12197 "Create a dynamic block section, with parameters taken from PLIST.
12198 PLIST must contain a :name entry which is used as the name of the block."
12199 (when (string-match "\\S-" (buffer-substring (point-at-bol) (point-at-eol)))
12200 (end-of-line 1)
12201 (newline))
12202 (let ((col (current-column))
12203 (name (plist-get plist :name)))
12204 (insert "#+BEGIN: " name)
12205 (while plist
12206 (if (eq (car plist) :name)
12207 (setq plist (cddr plist))
12208 (insert " " (prin1-to-string (pop plist)))))
12209 (insert "\n\n" (make-string col ?\ ) "#+END:\n")
12210 (beginning-of-line -2)))
12212 (defun org-prepare-dblock ()
12213 "Prepare dynamic block for refresh.
12214 This empties the block, puts the cursor at the insert position and returns
12215 the property list including an extra property :name with the block name."
12216 (unless (looking-at org-dblock-start-re)
12217 (user-error "Not at a dynamic block"))
12218 (let* ((begdel (1+ (match-end 0)))
12219 (name (org-no-properties (match-string 1)))
12220 (params (append (list :name name)
12221 (read (concat "(" (match-string 3) ")")))))
12222 (save-excursion
12223 (beginning-of-line 1)
12224 (skip-chars-forward " \t")
12225 (setq params (plist-put params :indentation-column (current-column))))
12226 (unless (re-search-forward org-dblock-end-re nil t)
12227 (error "Dynamic block not terminated"))
12228 (setq params
12229 (append params
12230 (list :content (buffer-substring
12231 begdel (match-beginning 0)))))
12232 (delete-region begdel (match-beginning 0))
12233 (goto-char begdel)
12234 (open-line 1)
12235 params))
12237 (defun org-map-dblocks (&optional command)
12238 "Apply COMMAND to all dynamic blocks in the current buffer.
12239 If COMMAND is not given, use `org-update-dblock'."
12240 (let ((cmd (or command 'org-update-dblock)))
12241 (save-excursion
12242 (goto-char (point-min))
12243 (while (re-search-forward org-dblock-start-re nil t)
12244 (goto-char (match-beginning 0))
12245 (save-excursion
12246 (condition-case nil
12247 (funcall cmd)
12248 (error (message "Error during update of dynamic block"))))
12249 (unless (re-search-forward org-dblock-end-re nil t)
12250 (error "Dynamic block not terminated"))))))
12252 (defun org-dblock-update (&optional arg)
12253 "User command for updating dynamic blocks.
12254 Update the dynamic block at point. With prefix ARG, update all dynamic
12255 blocks in the buffer."
12256 (interactive "P")
12257 (if arg
12258 (org-update-all-dblocks)
12259 (or (looking-at org-dblock-start-re)
12260 (org-beginning-of-dblock))
12261 (org-update-dblock)))
12263 (defun org-update-dblock ()
12264 "Update the dynamic block at point.
12265 This means to empty the block, parse for parameters and then call
12266 the correct writing function."
12267 (interactive)
12268 (save-excursion
12269 (let* ((win (selected-window))
12270 (pos (point))
12271 (line (org-current-line))
12272 (params (org-prepare-dblock))
12273 (name (plist-get params :name))
12274 (indent (plist-get params :indentation-column))
12275 (cmd (intern (concat "org-dblock-write:" name))))
12276 (message "Updating dynamic block `%s' at line %d..." name line)
12277 (funcall cmd params)
12278 (message "Updating dynamic block `%s' at line %d...done" name line)
12279 (goto-char pos)
12280 (when (and indent (> indent 0))
12281 (setq indent (make-string indent ?\ ))
12282 (save-excursion
12283 (select-window win)
12284 (org-beginning-of-dblock)
12285 (forward-line 1)
12286 (while (not (looking-at org-dblock-end-re))
12287 (insert indent)
12288 (beginning-of-line 2))
12289 (when (looking-at org-dblock-end-re)
12290 (and (looking-at "[ \t]+")
12291 (replace-match ""))
12292 (insert indent)))))))
12294 (defun org-beginning-of-dblock ()
12295 "Find the beginning of the dynamic block at point.
12296 Error if there is no such block at point."
12297 (let ((pos (point))
12298 beg)
12299 (end-of-line 1)
12300 (if (and (re-search-backward org-dblock-start-re nil t)
12301 (setq beg (match-beginning 0))
12302 (re-search-forward org-dblock-end-re nil t)
12303 (> (match-end 0) pos))
12304 (goto-char beg)
12305 (goto-char pos)
12306 (error "Not in a dynamic block"))))
12308 (defun org-update-all-dblocks ()
12309 "Update all dynamic blocks in the buffer.
12310 This function can be used in a hook."
12311 (interactive)
12312 (when (derived-mode-p 'org-mode)
12313 (org-map-dblocks 'org-update-dblock)))
12316 ;;;; Completion
12318 (declare-function org-export-backend-name "org-export" (cl-x))
12319 (declare-function org-export-backend-options "org-export" (cl-x))
12320 (defun org-get-export-keywords ()
12321 "Return a list of all currently understood export keywords.
12322 Export keywords include options, block names, attributes and
12323 keywords relative to each registered export back-end."
12324 (let (keywords)
12325 (dolist (backend
12326 (org-bound-and-true-p org-export--registered-backends)
12327 (delq nil keywords))
12328 ;; Back-end name (for keywords, like #+LATEX:)
12329 (push (upcase (symbol-name (org-export-backend-name backend))) keywords)
12330 (dolist (option-entry (org-export-backend-options backend))
12331 ;; Back-end options.
12332 (push (nth 1 option-entry) keywords)))))
12334 (defconst org-options-keywords
12335 '("ARCHIVE:" "AUTHOR:" "BIND:" "CATEGORY:" "COLUMNS:" "CREATOR:" "DATE:"
12336 "DESCRIPTION:" "DRAWERS:" "EMAIL:" "EXCLUDE_TAGS:" "FILETAGS:" "INCLUDE:"
12337 "INDEX:" "KEYWORDS:" "LANGUAGE:" "MACRO:" "OPTIONS:" "PROPERTY:"
12338 "PRIORITIES:" "SELECT_TAGS:" "SEQ_TODO:" "SETUPFILE:" "STARTUP:" "TAGS:"
12339 "TITLE:" "TODO:" "TYP_TODO:" "SELECT_TAGS:" "EXCLUDE_TAGS:"))
12341 (defcustom org-structure-template-alist
12342 '(("s" "#+BEGIN_SRC ?\n\n#+END_SRC")
12343 ("e" "#+BEGIN_EXAMPLE\n?\n#+END_EXAMPLE")
12344 ("q" "#+BEGIN_QUOTE\n?\n#+END_QUOTE")
12345 ("v" "#+BEGIN_VERSE\n?\n#+END_VERSE")
12346 ("V" "#+BEGIN_VERBATIM\n?\n#+END_VERBATIM")
12347 ("c" "#+BEGIN_CENTER\n?\n#+END_CENTER")
12348 ("l" "#+BEGIN_LaTeX\n?\n#+END_LaTeX")
12349 ("L" "#+LaTeX: ")
12350 ("h" "#+BEGIN_HTML\n?\n#+END_HTML")
12351 ("H" "#+HTML: ")
12352 ("a" "#+BEGIN_ASCII\n?\n#+END_ASCII")
12353 ("A" "#+ASCII: ")
12354 ("i" "#+INDEX: ?")
12355 ("I" "#+INCLUDE: %file ?"))
12356 "Structure completion elements.
12357 This is a list of abbreviation keys and values. The value gets inserted
12358 if you type `<' followed by the key and then press the completion key,
12359 usually `TAB'. %file will be replaced by a file name after prompting
12360 for the file using completion. The cursor will be placed at the position
12361 of the `?` in the template.
12362 There are two templates for each key, the first uses the original Org syntax,
12363 the second uses Emacs Muse-like syntax tags. These Muse-like tags become
12364 the default when the /org-mtags.el/ module has been loaded. See also the
12365 variable `org-mtags-prefer-muse-templates'."
12366 :group 'org-completion
12367 :type '(repeat
12368 (list
12369 (string :tag "Key")
12370 (string :tag "Template")))
12371 :version "25.1"
12372 :package-version '(Org . "8.3"))
12374 (defun org-try-structure-completion ()
12375 "Try to complete a structure template before point.
12376 This looks for strings like \"<e\" on an otherwise empty line and
12377 expands them."
12378 (let ((l (buffer-substring (point-at-bol) (point)))
12380 (when (and (looking-at "[ \t]*$")
12381 (string-match "^[ \t]*<\\([a-zA-Z]+\\)$" l)
12382 (setq a (assoc (match-string 1 l) org-structure-template-alist)))
12383 (org-complete-expand-structure-template (+ -1 (point-at-bol)
12384 (match-beginning 1)) a)
12385 t)))
12387 (defun org-complete-expand-structure-template (start cell)
12388 "Expand a structure template."
12389 (let ((rpl (nth 1 cell))
12390 (ind ""))
12391 (delete-region start (point))
12392 (when (string-match "\\`[ \t]*#\\+" rpl)
12393 (cond
12394 ((bolp))
12395 ((not (string-match "\\S-" (buffer-substring (point-at-bol) (point))))
12396 (setq ind (buffer-substring (point-at-bol) (point))))
12397 (t (newline))))
12398 (setq start (point))
12399 (if (string-match "%file" rpl)
12400 (setq rpl (replace-match
12401 (concat
12402 "\""
12403 (save-match-data
12404 (abbreviate-file-name (read-file-name "Include file: ")))
12405 "\"")
12406 t t rpl)))
12407 (setq rpl (mapconcat 'identity (split-string rpl "\n")
12408 (concat "\n" ind)))
12409 (insert rpl)
12410 (if (re-search-backward "\\?" start t) (delete-char 1))))
12412 ;;;; TODO, DEADLINE, Comments
12414 (defun org-toggle-comment ()
12415 "Change the COMMENT state of an entry."
12416 (interactive)
12417 (save-excursion
12418 (org-back-to-heading)
12419 (looking-at org-complex-heading-regexp)
12420 (goto-char (or (match-end 3) (match-end 2) (match-end 1)))
12421 (skip-chars-forward " \t")
12422 (unless (memq (char-before) '(?\s ?\t)) (insert " "))
12423 (if (org-in-commented-heading-p t)
12424 (delete-region (point)
12425 (progn (search-forward " " (line-end-position) 'move)
12426 (skip-chars-forward " \t")
12427 (point)))
12428 (insert org-comment-string)
12429 (unless (eolp) (insert " ")))))
12431 (defvar org-last-todo-state-is-todo nil
12432 "This is non-nil when the last TODO state change led to a TODO state.
12433 If the last change removed the TODO tag or switched to DONE, then
12434 this is nil.")
12436 (defvar org-setting-tags nil) ; dynamically skipped
12438 (defvar org-todo-setup-filter-hook nil
12439 "Hook for functions that pre-filter todo specs.
12440 Each function takes a todo spec and returns either nil or the spec
12441 transformed into canonical form." )
12443 (defvar org-todo-get-default-hook nil
12444 "Hook for functions that get a default item for todo.
12445 Each function takes arguments (NEW-MARK OLD-MARK) and returns either
12446 nil or a string to be used for the todo mark." )
12448 (defvar org-agenda-headline-snapshot-before-repeat)
12450 (defun org-current-effective-time ()
12451 "Return current time adjusted for `org-extend-today-until' variable."
12452 (let* ((ct (org-current-time))
12453 (dct (decode-time ct))
12454 (ct1
12455 (cond
12456 (org-use-last-clock-out-time-as-effective-time
12457 (or (org-clock-get-last-clock-out-time) ct))
12458 ((and org-use-effective-time (< (nth 2 dct) org-extend-today-until))
12459 (encode-time 0 59 23 (1- (nth 3 dct)) (nth 4 dct) (nth 5 dct)))
12460 (t ct))))
12461 ct1))
12463 (defun org-todo-yesterday (&optional arg)
12464 "Like `org-todo' but the time of change will be 23:59 of yesterday."
12465 (interactive "P")
12466 (if (eq major-mode 'org-agenda-mode)
12467 (apply 'org-agenda-todo-yesterday arg)
12468 (let* ((hour (third (decode-time
12469 (org-current-time))))
12470 (org-extend-today-until (1+ hour)))
12471 (org-todo arg))))
12473 (defvar org-block-entry-blocking ""
12474 "First entry preventing the TODO state change.")
12476 (defun org-cancel-repeater ()
12477 "Cancel a repeater by setting its numeric value to zero."
12478 (interactive)
12479 (save-excursion
12480 (org-back-to-heading t)
12481 (let ((bound1 (point))
12482 (bound0 (save-excursion (outline-next-heading) (point))))
12483 (when (re-search-forward
12484 (concat "\\(" org-scheduled-time-regexp "\\)\\|\\("
12485 org-deadline-time-regexp "\\)\\|\\("
12486 org-ts-regexp "\\)")
12487 bound0 t)
12488 (if (re-search-backward "[ \t]+\\(?:[.+]\\)?\\+\\([0-9]+\\)[hdwmy]" bound1 t)
12489 (replace-match "0" t nil nil 1))))))
12491 (defun org-todo (&optional arg)
12492 "Change the TODO state of an item.
12493 The state of an item is given by a keyword at the start of the heading,
12494 like
12495 *** TODO Write paper
12496 *** DONE Call mom
12498 The different keywords are specified in the variable `org-todo-keywords'.
12499 By default the available states are \"TODO\" and \"DONE\".
12500 So for this example: when the item starts with TODO, it is changed to DONE.
12501 When it starts with DONE, the DONE is removed. And when neither TODO nor
12502 DONE are present, add TODO at the beginning of the heading.
12504 With \\[universal-argument] prefix arg, use completion to determine the new \
12505 state.
12506 With numeric prefix arg, switch to that state.
12507 With a double \\[universal-argument] prefix, switch to the next set of TODO \
12508 keywords (nextset).
12509 With a triple \\[universal-argument] prefix, circumvent any state blocking.
12510 With a numeric prefix arg of 0, inhibit note taking for the change.
12511 With a numeric prefix arg of -1, cancel repeater to allow marking as DONE.
12513 When called through ELisp, arg is also interpreted in the following way:
12514 'none -> empty state
12515 \"\"(empty string) -> switch to empty state
12516 'done -> switch to DONE
12517 'nextset -> switch to the next set of keywords
12518 'previousset -> switch to the previous set of keywords
12519 \"WAITING\" -> switch to the specified keyword, but only if it
12520 really is a member of `org-todo-keywords'."
12521 (interactive "P")
12522 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
12523 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
12524 'region-start-level 'region))
12525 org-loop-over-headlines-in-active-region)
12526 (org-map-entries
12527 `(org-todo ,arg)
12528 org-loop-over-headlines-in-active-region
12529 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
12530 (if (equal arg '(16)) (setq arg 'nextset))
12531 (when (equal arg -1) (org-cancel-repeater) (setq arg nil))
12532 (let ((org-blocker-hook org-blocker-hook)
12533 commentp
12534 case-fold-search)
12535 (when (equal arg '(64))
12536 (setq arg nil org-blocker-hook nil))
12537 (when (and org-blocker-hook
12538 (or org-inhibit-blocking
12539 (org-entry-get nil "NOBLOCKING")))
12540 (setq org-blocker-hook nil))
12541 (save-excursion
12542 (catch 'exit
12543 (org-back-to-heading t)
12544 (when (org-in-commented-heading-p t)
12545 (org-toggle-comment)
12546 (setq commentp t))
12547 (if (looking-at org-outline-regexp) (goto-char (1- (match-end 0))))
12548 (or (looking-at (concat " +" org-todo-regexp "\\( +\\|[ \t]*$\\)"))
12549 (looking-at "\\(?: *\\|[ \t]*$\\)"))
12550 (let* ((match-data (match-data))
12551 (startpos (point-at-bol))
12552 (logging (save-match-data (org-entry-get nil "LOGGING" t t)))
12553 (org-log-done org-log-done)
12554 (org-log-repeat org-log-repeat)
12555 (org-todo-log-states org-todo-log-states)
12556 (org-inhibit-logging
12557 (if (equal arg 0)
12558 (progn (setq arg nil) 'note) org-inhibit-logging))
12559 (this (match-string 1))
12560 (hl-pos (match-beginning 0))
12561 (head (org-get-todo-sequence-head this))
12562 (ass (assoc head org-todo-kwd-alist))
12563 (interpret (nth 1 ass))
12564 (done-word (nth 3 ass))
12565 (final-done-word (nth 4 ass))
12566 (org-last-state (or this ""))
12567 (completion-ignore-case t)
12568 (member (member this org-todo-keywords-1))
12569 (tail (cdr member))
12570 (org-state (cond
12571 ((and org-todo-key-trigger
12572 (or (and (equal arg '(4))
12573 (eq org-use-fast-todo-selection 'prefix))
12574 (and (not arg) org-use-fast-todo-selection
12575 (not (eq org-use-fast-todo-selection
12576 'prefix)))))
12577 ;; Use fast selection
12578 (org-fast-todo-selection))
12579 ((and (equal arg '(4))
12580 (or (not org-use-fast-todo-selection)
12581 (not org-todo-key-trigger)))
12582 ;; Read a state with completion
12583 (org-icompleting-read
12584 "State: " (mapcar 'list org-todo-keywords-1)
12585 nil t))
12586 ((eq arg 'right)
12587 (if this
12588 (if tail (car tail) nil)
12589 (car org-todo-keywords-1)))
12590 ((eq arg 'left)
12591 (if (equal member org-todo-keywords-1)
12593 (if this
12594 (nth (- (length org-todo-keywords-1)
12595 (length tail) 2)
12596 org-todo-keywords-1)
12597 (org-last org-todo-keywords-1))))
12598 ((and (eq org-use-fast-todo-selection t) (equal arg '(4))
12599 (setq arg nil))) ; hack to fall back to cycling
12600 (arg
12601 ;; user or caller requests a specific state
12602 (cond
12603 ((equal arg "") nil)
12604 ((eq arg 'none) nil)
12605 ((eq arg 'done) (or done-word (car org-done-keywords)))
12606 ((eq arg 'nextset)
12607 (or (car (cdr (member head org-todo-heads)))
12608 (car org-todo-heads)))
12609 ((eq arg 'previousset)
12610 (let ((org-todo-heads (reverse org-todo-heads)))
12611 (or (car (cdr (member head org-todo-heads)))
12612 (car org-todo-heads))))
12613 ((car (member arg org-todo-keywords-1)))
12614 ((stringp arg)
12615 (user-error "State `%s' not valid in this file" arg))
12616 ((nth (1- (prefix-numeric-value arg))
12617 org-todo-keywords-1))))
12618 ((null member) (or head (car org-todo-keywords-1)))
12619 ((equal this final-done-word) nil) ;; -> make empty
12620 ((null tail) nil) ;; -> first entry
12621 ((memq interpret '(type priority))
12622 (if (eq this-command last-command)
12623 (car tail)
12624 (if (> (length tail) 0)
12625 (or done-word (car org-done-keywords))
12626 nil)))
12628 (car tail))))
12629 (org-state (or
12630 (run-hook-with-args-until-success
12631 'org-todo-get-default-hook org-state org-last-state)
12632 org-state))
12633 (next (if org-state (concat " " org-state " ") " "))
12634 (change-plist (list :type 'todo-state-change :from this :to org-state
12635 :position startpos))
12636 dolog now-done-p)
12637 (when org-blocker-hook
12638 (setq org-last-todo-state-is-todo
12639 (not (member this org-done-keywords)))
12640 (unless (save-excursion
12641 (save-match-data
12642 (org-with-wide-buffer
12643 (run-hook-with-args-until-failure
12644 'org-blocker-hook change-plist))))
12645 (if (org-called-interactively-p 'interactive)
12646 (user-error "TODO state change from %s to %s blocked (by \"%s\")"
12647 this org-state org-block-entry-blocking)
12648 ;; fail silently
12649 (message "TODO state change from %s to %s blocked (by \"%s\")"
12650 this org-state org-block-entry-blocking)
12651 (throw 'exit nil))))
12652 (store-match-data match-data)
12653 (replace-match next t t)
12654 (cond ((equal this org-state)
12655 (message "TODO state was already %s" (org-trim next)))
12656 ((pos-visible-in-window-p hl-pos)
12657 (message "TODO state changed to %s" (org-trim next))))
12658 (unless head
12659 (setq head (org-get-todo-sequence-head org-state)
12660 ass (assoc head org-todo-kwd-alist)
12661 interpret (nth 1 ass)
12662 done-word (nth 3 ass)
12663 final-done-word (nth 4 ass)))
12664 (when (memq arg '(nextset previousset))
12665 (message "Keyword-Set %d/%d: %s"
12666 (- (length org-todo-sets) -1
12667 (length (memq (assoc org-state org-todo-sets) org-todo-sets)))
12668 (length org-todo-sets)
12669 (mapconcat 'identity (assoc org-state org-todo-sets) " ")))
12670 (setq org-last-todo-state-is-todo
12671 (not (member org-state org-done-keywords)))
12672 (setq now-done-p (and (member org-state org-done-keywords)
12673 (not (member this org-done-keywords))))
12674 (and logging (org-local-logging logging))
12675 (when (and (or org-todo-log-states org-log-done)
12676 (not (eq org-inhibit-logging t))
12677 (not (memq arg '(nextset previousset))))
12678 ;; we need to look at recording a time and note
12679 (setq dolog (or (nth 1 (assoc org-state org-todo-log-states))
12680 (nth 2 (assoc this org-todo-log-states))))
12681 (if (and (eq dolog 'note) (eq org-inhibit-logging 'note))
12682 (setq dolog 'time))
12683 (when (or (and (not org-state) (not org-closed-keep-when-no-todo))
12684 (and org-state
12685 (member org-state org-not-done-keywords)
12686 (not (member this org-not-done-keywords))))
12687 ;; This is now a todo state and was not one before
12688 ;; If there was a CLOSED time stamp, get rid of it.
12689 (org-add-planning-info nil nil 'closed))
12690 (when (and now-done-p org-log-done)
12691 ;; It is now done, and it was not done before
12692 (org-add-planning-info 'closed (org-current-effective-time))
12693 (if (and (not dolog) (eq 'note org-log-done))
12694 (org-add-log-setup 'done org-state this 'findpos 'note)))
12695 (when (and org-state dolog)
12696 ;; This is a non-nil state, and we need to log it
12697 (org-add-log-setup 'state org-state this 'findpos dolog)))
12698 ;; Fixup tag positioning
12699 (org-todo-trigger-tag-changes org-state)
12700 (and org-auto-align-tags (not org-setting-tags) (org-set-tags nil t))
12701 (when org-provide-todo-statistics
12702 (org-update-parent-todo-statistics))
12703 (run-hooks 'org-after-todo-state-change-hook)
12704 (if (and arg (not (member org-state org-done-keywords)))
12705 (setq head (org-get-todo-sequence-head org-state)))
12706 (put-text-property (point-at-bol) (point-at-eol) 'org-todo-head head)
12707 ;; Do we need to trigger a repeat?
12708 (when now-done-p
12709 (when (boundp 'org-agenda-headline-snapshot-before-repeat)
12710 ;; This is for the agenda, take a snapshot of the headline.
12711 (save-match-data
12712 (setq org-agenda-headline-snapshot-before-repeat
12713 (org-get-heading))))
12714 (org-auto-repeat-maybe org-state))
12715 ;; Fixup cursor location if close to the keyword
12716 (if (and (outline-on-heading-p)
12717 (not (bolp))
12718 (save-excursion (beginning-of-line 1)
12719 (looking-at org-todo-line-regexp))
12720 (< (point) (+ 2 (or (match-end 2) (match-end 1)))))
12721 (progn
12722 (goto-char (or (match-end 2) (match-end 1)))
12723 (and (looking-at " ") (just-one-space))))
12724 (when org-trigger-hook
12725 (save-excursion
12726 (run-hook-with-args 'org-trigger-hook change-plist)))
12727 (when commentp (org-toggle-comment))))))))
12729 (defun org-block-todo-from-children-or-siblings-or-parent (change-plist)
12730 "Block turning an entry into a TODO, using the hierarchy.
12731 This checks whether the current task should be blocked from state
12732 changes. Such blocking occurs when:
12734 1. The task has children which are not all in a completed state.
12736 2. A task has a parent with the property :ORDERED:, and there
12737 are siblings prior to the current task with incomplete
12738 status.
12740 3. The parent of the task is blocked because it has siblings that should
12741 be done first, or is child of a block grandparent TODO entry."
12743 (if (not org-enforce-todo-dependencies)
12744 t ; if locally turned off don't block
12745 (catch 'dont-block
12746 ;; If this is not a todo state change, or if this entry is already DONE,
12747 ;; do not block
12748 (when (or (not (eq (plist-get change-plist :type) 'todo-state-change))
12749 (member (plist-get change-plist :from)
12750 (cons 'done org-done-keywords))
12751 (member (plist-get change-plist :to)
12752 (cons 'todo org-not-done-keywords))
12753 (not (plist-get change-plist :to)))
12754 (throw 'dont-block t))
12755 ;; If this task has children, and any are undone, it's blocked
12756 (save-excursion
12757 (org-back-to-heading t)
12758 (let ((this-level (funcall outline-level)))
12759 (outline-next-heading)
12760 (let ((child-level (funcall outline-level)))
12761 (while (and (not (eobp))
12762 (> child-level this-level))
12763 ;; this todo has children, check whether they are all
12764 ;; completed
12765 (if (and (not (org-entry-is-done-p))
12766 (org-entry-is-todo-p))
12767 (progn (setq org-block-entry-blocking (org-get-heading))
12768 (throw 'dont-block nil)))
12769 (outline-next-heading)
12770 (setq child-level (funcall outline-level))))))
12771 ;; Otherwise, if the task's parent has the :ORDERED: property, and
12772 ;; any previous siblings are undone, it's blocked
12773 (save-excursion
12774 (org-back-to-heading t)
12775 (let* ((pos (point))
12776 (parent-pos (and (org-up-heading-safe) (point))))
12777 (if (not parent-pos) (throw 'dont-block t)) ; no parent
12778 (when (and (org-not-nil (org-entry-get (point) "ORDERED"))
12779 (forward-line 1)
12780 (re-search-forward org-not-done-heading-regexp pos t))
12781 (setq org-block-entry-blocking (match-string 0))
12782 (throw 'dont-block nil)) ; block, there is an older sibling not done.
12783 ;; Search further up the hierarchy, to see if an ancestor is blocked
12784 (while t
12785 (goto-char parent-pos)
12786 (if (not (looking-at org-not-done-heading-regexp))
12787 (throw 'dont-block t)) ; do not block, parent is not a TODO
12788 (setq pos (point))
12789 (setq parent-pos (and (org-up-heading-safe) (point)))
12790 (if (not parent-pos) (throw 'dont-block t)) ; no parent
12791 (when (and (org-not-nil (org-entry-get (point) "ORDERED"))
12792 (forward-line 1)
12793 (re-search-forward org-not-done-heading-regexp pos t)
12794 (setq org-block-entry-blocking (org-get-heading)))
12795 (throw 'dont-block nil)))))))) ; block, older sibling not done.
12797 (defcustom org-track-ordered-property-with-tag nil
12798 "Should the ORDERED property also be shown as a tag?
12799 The ORDERED property decides if an entry should require subtasks to be
12800 completed in sequence. Since a property is not very visible, setting
12801 this option means that toggling the ORDERED property with the command
12802 `org-toggle-ordered-property' will also toggle a tag ORDERED. That tag is
12803 not relevant for the behavior, but it makes things more visible.
12805 Note that toggling the tag with tags commands will not change the property
12806 and therefore not influence behavior!
12808 This can be t, meaning the tag ORDERED should be used, It can also be a
12809 string to select a different tag for this task."
12810 :group 'org-todo
12811 :type '(choice
12812 (const :tag "No tracking" nil)
12813 (const :tag "Track with ORDERED tag" t)
12814 (string :tag "Use other tag")))
12816 (defun org-toggle-ordered-property ()
12817 "Toggle the ORDERED property of the current entry.
12818 For better visibility, you can track the value of this property with a tag.
12819 See variable `org-track-ordered-property-with-tag'."
12820 (interactive)
12821 (let* ((t1 org-track-ordered-property-with-tag)
12822 (tag (and t1 (if (stringp t1) t1 "ORDERED"))))
12823 (save-excursion
12824 (org-back-to-heading)
12825 (if (org-entry-get nil "ORDERED")
12826 (progn
12827 (org-delete-property "ORDERED")
12828 (and tag (org-toggle-tag tag 'off))
12829 (message "Subtasks can be completed in arbitrary order"))
12830 (org-entry-put nil "ORDERED" "t")
12831 (and tag (org-toggle-tag tag 'on))
12832 (message "Subtasks must be completed in sequence")))))
12834 (defvar org-blocked-by-checkboxes) ; dynamically scoped
12835 (defun org-block-todo-from-checkboxes (change-plist)
12836 "Block turning an entry into a TODO, using checkboxes.
12837 This checks whether the current task should be blocked from state
12838 changes because there are unchecked boxes in this entry."
12839 (if (not org-enforce-todo-checkbox-dependencies)
12840 t ; if locally turned off don't block
12841 (catch 'dont-block
12842 ;; If this is not a todo state change, or if this entry is already DONE,
12843 ;; do not block
12844 (when (or (not (eq (plist-get change-plist :type) 'todo-state-change))
12845 (member (plist-get change-plist :from)
12846 (cons 'done org-done-keywords))
12847 (member (plist-get change-plist :to)
12848 (cons 'todo org-not-done-keywords))
12849 (not (plist-get change-plist :to)))
12850 (throw 'dont-block t))
12851 ;; If this task has checkboxes that are not checked, it's blocked
12852 (save-excursion
12853 (org-back-to-heading t)
12854 (let ((beg (point)) end)
12855 (outline-next-heading)
12856 (setq end (point))
12857 (goto-char beg)
12858 (if (org-list-search-forward
12859 (concat (org-item-beginning-re)
12860 "\\(?:\\[@\\(?:start:\\)?\\([0-9]+\\|[A-Za-z]\\)\\][ \t]*\\)?"
12861 "\\[[- ]\\]")
12862 end t)
12863 (progn
12864 (if (boundp 'org-blocked-by-checkboxes)
12865 (setq org-blocked-by-checkboxes t))
12866 (throw 'dont-block nil)))))
12867 t))) ; do not block
12869 (defun org-entry-blocked-p ()
12870 "Is the current entry blocked?"
12871 (org-with-silent-modifications
12872 (if (org-entry-get nil "NOBLOCKING")
12873 nil ;; Never block this entry
12874 (not (run-hook-with-args-until-failure
12875 'org-blocker-hook
12876 (list :type 'todo-state-change
12877 :position (point)
12878 :from 'todo
12879 :to 'done))))))
12881 (defun org-update-statistics-cookies (all)
12882 "Update the statistics cookie, either from TODO or from checkboxes.
12883 This should be called with the cursor in a line with a statistics cookie."
12884 (interactive "P")
12885 (if all
12886 (progn
12887 (org-update-checkbox-count 'all)
12888 (org-map-entries 'org-update-parent-todo-statistics))
12889 (if (not (org-at-heading-p))
12890 (org-update-checkbox-count)
12891 (let ((pos (point-marker))
12892 end l1 l2)
12893 (ignore-errors (org-back-to-heading t))
12894 (if (not (org-at-heading-p))
12895 (org-update-checkbox-count)
12896 (setq l1 (org-outline-level))
12897 (setq end (save-excursion
12898 (outline-next-heading)
12899 (if (org-at-heading-p) (setq l2 (org-outline-level)))
12900 (point)))
12901 (if (and (save-excursion
12902 (re-search-forward
12903 "^[ \t]*\\([-+*]\\|[0-9]+[.)]\\) \\[[- X]\\]" end t))
12904 (not (save-excursion (re-search-forward
12905 ":COOKIE_DATA:.*\\<todo\\>" end t))))
12906 (org-update-checkbox-count)
12907 (if (and l2 (> l2 l1))
12908 (progn
12909 (goto-char end)
12910 (org-update-parent-todo-statistics))
12911 (goto-char pos)
12912 (beginning-of-line 1)
12913 (while (re-search-forward
12914 "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)"
12915 (point-at-eol) t)
12916 (replace-match (if (match-end 2) "[100%]" "[0/0]") t t)))))
12917 (goto-char pos)
12918 (move-marker pos nil)))))
12920 (defvar org-entry-property-inherited-from) ;; defined below
12921 (defun org-update-parent-todo-statistics ()
12922 "Update any statistics cookie in the parent of the current headline.
12923 When `org-hierarchical-todo-statistics' is nil, statistics will cover
12924 the entire subtree and this will travel up the hierarchy and update
12925 statistics everywhere."
12926 (let* ((prop (save-excursion (org-up-heading-safe)
12927 (org-entry-get nil "COOKIE_DATA" 'inherit)))
12928 (recursive (or (not org-hierarchical-todo-statistics)
12929 (and prop (string-match "\\<recursive\\>" prop))))
12930 (lim (or (and prop (marker-position org-entry-property-inherited-from))
12932 (first t)
12933 (box-re "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)")
12934 level ltoggle l1 new ndel
12935 (cnt-all 0) (cnt-done 0) is-percent kwd
12936 checkbox-beg ov ovs ove cookie-present)
12937 (catch 'exit
12938 (save-excursion
12939 (beginning-of-line 1)
12940 (setq ltoggle (funcall outline-level))
12941 ;; Three situations are to consider:
12943 ;; 1. if `org-hierarchical-todo-statistics' is nil, repeat up
12944 ;; to the top-level ancestor on the headline;
12946 ;; 2. If parent has "recursive" property, repeat up to the
12947 ;; headline setting that property, taking inheritance into
12948 ;; account;
12950 ;; 3. Else, move up to direct parent and proceed only once.
12951 (while (and (setq level (org-up-heading-safe))
12952 (or recursive first)
12953 (>= (point) lim))
12954 (setq first nil cookie-present nil)
12955 (unless (and level
12956 (not (string-match
12957 "\\<checkbox\\>"
12958 (downcase (or (org-entry-get nil "COOKIE_DATA")
12959 "")))))
12960 (throw 'exit nil))
12961 (while (re-search-forward box-re (point-at-eol) t)
12962 (setq cnt-all 0 cnt-done 0 cookie-present t)
12963 (setq is-percent (match-end 2) checkbox-beg (match-beginning 0))
12964 (save-match-data
12965 (unless (outline-next-heading) (throw 'exit nil))
12966 (while (and (looking-at org-complex-heading-regexp)
12967 (> (setq l1 (length (match-string 1))) level))
12968 (setq kwd (and (or recursive (= l1 ltoggle))
12969 (match-string 2)))
12970 (if (or (eq org-provide-todo-statistics 'all-headlines)
12971 (and (eq org-provide-todo-statistics t)
12972 (or (member kwd org-done-keywords)))
12973 (and (listp org-provide-todo-statistics)
12974 (stringp (car org-provide-todo-statistics))
12975 (or (member kwd org-provide-todo-statistics)
12976 (member kwd org-done-keywords)))
12977 (and (listp org-provide-todo-statistics)
12978 (listp (car org-provide-todo-statistics))
12979 (or (member kwd (car org-provide-todo-statistics))
12980 (and (member kwd org-done-keywords)
12981 (member kwd (cadr org-provide-todo-statistics))))))
12982 (setq cnt-all (1+ cnt-all))
12983 (if (eq org-provide-todo-statistics t)
12984 (and kwd (setq cnt-all (1+ cnt-all)))))
12985 (when (or (and (member org-provide-todo-statistics '(t all-headlines))
12986 (member kwd org-done-keywords))
12987 (and (listp org-provide-todo-statistics)
12988 (listp (car org-provide-todo-statistics))
12989 (member kwd org-done-keywords)
12990 (member kwd (cadr org-provide-todo-statistics)))
12991 (and (listp org-provide-todo-statistics)
12992 (stringp (car org-provide-todo-statistics))
12993 (member kwd org-done-keywords)))
12994 (setq cnt-done (1+ cnt-done)))
12995 (outline-next-heading)))
12996 (setq new
12997 (if is-percent
12998 (format "[%d%%]" (/ (* 100 cnt-done) (max 1 cnt-all)))
12999 (format "[%d/%d]" cnt-done cnt-all))
13000 ndel (- (match-end 0) checkbox-beg))
13001 ;; handle overlays when updating cookie from column view
13002 (when (setq ov (car (overlays-at checkbox-beg)))
13003 (setq ovs (overlay-start ov) ove (overlay-end ov))
13004 (delete-overlay ov))
13005 (goto-char checkbox-beg)
13006 (insert new)
13007 (delete-region (point) (+ (point) ndel))
13008 (when org-auto-align-tags (org-fix-tags-on-the-fly))
13009 (when ov (move-overlay ov ovs ove)))
13010 (when cookie-present
13011 (run-hook-with-args 'org-after-todo-statistics-hook
13012 cnt-done (- cnt-all cnt-done))))))
13013 (run-hooks 'org-todo-statistics-hook)))
13015 (defvar org-after-todo-statistics-hook nil
13016 "Hook that is called after a TODO statistics cookie has been updated.
13017 Each function is called with two arguments: the number of not-done entries
13018 and the number of done entries.
13020 For example, the following function, when added to this hook, will switch
13021 an entry to DONE when all children are done, and back to TODO when new
13022 entries are set to a TODO status. Note that this hook is only called
13023 when there is a statistics cookie in the headline!
13025 (defun org-summary-todo (n-done n-not-done)
13026 \"Switch entry to DONE when all subentries are done, to TODO otherwise.\"
13027 (let (org-log-done org-log-states) ; turn off logging
13028 (org-todo (if (= n-not-done 0) \"DONE\" \"TODO\"))))
13031 (defvar org-todo-statistics-hook nil
13032 "Hook that is run whenever Org thinks TODO statistics should be updated.
13033 This hook runs even if there is no statistics cookie present, in which case
13034 `org-after-todo-statistics-hook' would not run.")
13036 (defun org-todo-trigger-tag-changes (state)
13037 "Apply the changes defined in `org-todo-state-tags-triggers'."
13038 (let ((l org-todo-state-tags-triggers)
13039 changes)
13040 (when (or (not state) (equal state ""))
13041 (setq changes (append changes (cdr (assoc "" l)))))
13042 (when (and (stringp state) (> (length state) 0))
13043 (setq changes (append changes (cdr (assoc state l)))))
13044 (when (member state org-not-done-keywords)
13045 (setq changes (append changes (cdr (assoc 'todo l)))))
13046 (when (member state org-done-keywords)
13047 (setq changes (append changes (cdr (assoc 'done l)))))
13048 (dolist (c changes)
13049 (org-toggle-tag (car c) (if (cdr c) 'on 'off)))))
13051 (defun org-local-logging (value)
13052 "Get logging settings from a property VALUE."
13053 (let* (words w a)
13054 ;; directly set the variables, they are already local.
13055 (setq org-log-done nil
13056 org-log-repeat nil
13057 org-todo-log-states nil)
13058 (setq words (org-split-string value))
13059 (while (setq w (pop words))
13060 (cond
13061 ((setq a (assoc w org-startup-options))
13062 (and (member (nth 1 a) '(org-log-done org-log-repeat))
13063 (set (nth 1 a) (nth 2 a))))
13064 ((setq a (org-extract-log-state-settings w))
13065 (and (member (car a) org-todo-keywords-1)
13066 (push a org-todo-log-states)))))))
13068 (defun org-get-todo-sequence-head (kwd)
13069 "Return the head of the TODO sequence to which KWD belongs.
13070 If KWD is not set, check if there is a text property remembering the
13071 right sequence."
13072 (let (p)
13073 (cond
13074 ((not kwd)
13075 (or (get-text-property (point-at-bol) 'org-todo-head)
13076 (progn
13077 (setq p (next-single-property-change (point-at-bol) 'org-todo-head
13078 nil (point-at-eol)))
13079 (get-text-property p 'org-todo-head))))
13080 ((not (member kwd org-todo-keywords-1))
13081 (car org-todo-keywords-1))
13082 (t (nth 2 (assoc kwd org-todo-kwd-alist))))))
13084 (defun org-fast-todo-selection ()
13085 "Fast TODO keyword selection with single keys.
13086 Returns the new TODO keyword, or nil if no state change should occur."
13087 (let* ((fulltable org-todo-key-alist)
13088 (done-keywords org-done-keywords) ;; needed for the faces.
13089 (maxlen (apply 'max (mapcar
13090 (lambda (x)
13091 (if (stringp (car x)) (string-width (car x)) 0))
13092 fulltable)))
13093 (expert nil)
13094 (fwidth (+ maxlen 3 1 3))
13095 (ncol (/ (- (window-width) 4) fwidth))
13096 tg cnt e c tbl
13097 groups ingroup)
13098 (save-excursion
13099 (save-window-excursion
13100 (if expert
13101 (set-buffer (get-buffer-create " *Org todo*"))
13102 (org-switch-to-buffer-other-window (get-buffer-create " *Org todo*")))
13103 (erase-buffer)
13104 (org-set-local 'org-done-keywords done-keywords)
13105 (setq tbl fulltable cnt 0)
13106 (while (setq e (pop tbl))
13107 (cond
13108 ((equal e '(:startgroup))
13109 (push '() groups) (setq ingroup t)
13110 (when (not (= cnt 0))
13111 (setq cnt 0)
13112 (insert "\n"))
13113 (insert "{ "))
13114 ((equal e '(:endgroup))
13115 (setq ingroup nil cnt 0)
13116 (insert "}\n"))
13117 ((equal e '(:newline))
13118 (when (not (= cnt 0))
13119 (setq cnt 0)
13120 (insert "\n")
13121 (setq e (car tbl))
13122 (while (equal (car tbl) '(:newline))
13123 (insert "\n")
13124 (setq tbl (cdr tbl)))))
13126 (setq tg (car e) c (cdr e))
13127 (if ingroup (push tg (car groups)))
13128 (setq tg (org-add-props tg nil 'face
13129 (org-get-todo-face tg)))
13130 (if (and (= cnt 0) (not ingroup)) (insert " "))
13131 (insert "[" c "] " tg (make-string
13132 (- fwidth 4 (length tg)) ?\ ))
13133 (when (= (setq cnt (1+ cnt)) ncol)
13134 (insert "\n")
13135 (if ingroup (insert " "))
13136 (setq cnt 0)))))
13137 (insert "\n")
13138 (goto-char (point-min))
13139 (if (not expert) (org-fit-window-to-buffer))
13140 (message "[a-z..]:Set [SPC]:clear")
13141 (setq c (let ((inhibit-quit t)) (read-char-exclusive)))
13142 (cond
13143 ((or (= c ?\C-g)
13144 (and (= c ?q) (not (rassoc c fulltable))))
13145 (setq quit-flag t))
13146 ((= c ?\ ) nil)
13147 ((setq e (rassoc c fulltable) tg (car e))
13149 (t (setq quit-flag t)))))))
13151 (defun org-entry-is-todo-p ()
13152 (member (org-get-todo-state) org-not-done-keywords))
13154 (defun org-entry-is-done-p ()
13155 (member (org-get-todo-state) org-done-keywords))
13157 (defun org-get-todo-state ()
13158 "Return the TODO keyword of the current subtree."
13159 (save-excursion
13160 (org-back-to-heading t)
13161 (and (looking-at org-todo-line-regexp)
13162 (match-end 2)
13163 (match-string 2))))
13165 (defun org-at-date-range-p (&optional inactive-ok)
13166 "Is the cursor inside a date range?"
13167 (interactive)
13168 (save-excursion
13169 (catch 'exit
13170 (let ((pos (point)))
13171 (skip-chars-backward "^[<\r\n")
13172 (skip-chars-backward "<[")
13173 (and (looking-at (if inactive-ok org-tr-regexp-both org-tr-regexp))
13174 (>= (match-end 0) pos)
13175 (throw 'exit t))
13176 (skip-chars-backward "^<[\r\n")
13177 (skip-chars-backward "<[")
13178 (and (looking-at (if inactive-ok org-tr-regexp-both org-tr-regexp))
13179 (>= (match-end 0) pos)
13180 (throw 'exit t)))
13181 nil)))
13183 (defun org-get-repeat (&optional tagline)
13184 "Check if there is a deadline/schedule with repeater in this entry."
13185 (save-match-data
13186 (save-excursion
13187 (org-back-to-heading t)
13188 (and (re-search-forward (if tagline
13189 (concat tagline "\\s-*" org-repeat-re)
13190 org-repeat-re)
13191 (org-entry-end-position) t)
13192 (match-string-no-properties 1)))))
13194 (defvar org-last-changed-timestamp)
13195 (defvar org-last-inserted-timestamp)
13196 (defvar org-log-post-message)
13197 (defvar org-log-note-purpose)
13198 (defvar org-log-note-how nil)
13199 (defvar org-log-note-extra)
13200 (defun org-auto-repeat-maybe (done-word)
13201 "Check if the current headline contains a repeated deadline/schedule.
13202 If yes, set TODO state back to what it was and change the base date
13203 of repeating deadline/scheduled time stamps to new date.
13204 This function is run automatically after each state change to a DONE state."
13205 ;; last-state is dynamically scoped into this function
13206 (let* ((repeat (org-get-repeat))
13207 (aa (assoc org-last-state org-todo-kwd-alist))
13208 (interpret (nth 1 aa))
13209 (head (nth 2 aa))
13210 (whata '(("h" . hour) ("d" . day) ("m" . month) ("y" . year)))
13211 (msg "Entry repeats: ")
13212 (org-log-done nil)
13213 (org-todo-log-states nil)
13214 re type n what ts time to-state)
13215 (when (and repeat (not (zerop (string-to-number (substring repeat 1)))))
13216 (if (eq org-log-repeat t) (setq org-log-repeat 'state))
13217 (setq to-state (or (org-entry-get nil "REPEAT_TO_STATE")
13218 org-todo-repeat-to-state))
13219 (unless (and to-state (member to-state org-todo-keywords-1))
13220 (setq to-state (if (eq interpret 'type) org-last-state head)))
13221 (org-todo to-state)
13222 (when (or org-log-repeat (org-entry-get nil "CLOCK"))
13223 (org-entry-put nil "LAST_REPEAT" (format-time-string
13224 (org-time-stamp-format t t))))
13225 (when org-log-repeat
13226 (if (or (memq 'org-add-log-note (default-value 'post-command-hook))
13227 (memq 'org-add-log-note post-command-hook))
13228 ;; OK, we are already setup for some record
13229 (if (eq org-log-repeat 'note)
13230 ;; make sure we take a note, not only a time stamp
13231 (setq org-log-note-how 'note))
13232 ;; Set up for taking a record
13233 (org-add-log-setup 'state (or done-word (car org-done-keywords))
13234 org-last-state
13235 'findpos org-log-repeat)))
13236 (org-back-to-heading t)
13237 (org-add-planning-info nil nil 'closed)
13238 (setq re (concat "\\(" org-scheduled-time-regexp "\\)\\|\\("
13239 org-deadline-time-regexp "\\)\\|\\("
13240 org-ts-regexp "\\)"))
13241 (while (re-search-forward
13242 re (save-excursion (outline-next-heading) (point)) t)
13243 (setq type (if (match-end 1) org-scheduled-string
13244 (if (match-end 3) org-deadline-string "Plain:"))
13245 ts (match-string (if (match-end 2) 2 (if (match-end 4) 4 0))))
13246 (when (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([hdwmy]\\)" ts)
13247 (setq n (string-to-number (match-string 2 ts))
13248 what (match-string 3 ts))
13249 (if (equal what "w") (setq n (* n 7) what "d"))
13250 (if (and (equal what "h") (not (string-match "[0-9]\\{1,2\\}:[0-9]\\{2\\}" ts)))
13251 (user-error "Cannot repeat in Repeat in %d hour(s) because no hour has been set" n))
13252 ;; Preparation, see if we need to modify the start date for the change
13253 (when (match-end 1)
13254 (setq time (save-match-data (org-time-string-to-time ts)))
13255 (cond
13256 ((equal (match-string 1 ts) ".")
13257 ;; Shift starting date to today
13258 (org-timestamp-change
13259 (- (org-today) (time-to-days time))
13260 'day))
13261 ((equal (match-string 1 ts) "+")
13262 (let ((nshiftmax 10) (nshift 0))
13263 (while (or (= nshift 0)
13264 (<= (time-to-days time)
13265 (time-to-days (current-time))))
13266 (when (= (incf nshift) nshiftmax)
13267 (or (y-or-n-p (message "%d repeater intervals were not enough to shift date past today. Continue? " nshift))
13268 (user-error "Abort")))
13269 (org-timestamp-change n (cdr (assoc what whata)))
13270 (org-at-timestamp-p t)
13271 (setq ts (match-string 1))
13272 (setq time (save-match-data (org-time-string-to-time ts)))))
13273 (org-timestamp-change (- n) (cdr (assoc what whata)))
13274 ;; rematch, so that we have everything in place for the real shift
13275 (org-at-timestamp-p t)
13276 (setq ts (match-string 1))
13277 (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([hdwmy]\\)" ts))))
13278 (save-excursion (org-timestamp-change n (cdr (assoc what whata)) nil t))
13279 (setq msg (concat msg type " " org-last-changed-timestamp " "))))
13280 (setq org-log-post-message msg)
13281 (message "%s" msg))))
13283 (defun org-show-todo-tree (arg)
13284 "Make a compact tree which shows all headlines marked with TODO.
13285 The tree will show the lines where the regexp matches, and all higher
13286 headlines above the match.
13287 With a \\[universal-argument] prefix, prompt for a regexp to match.
13288 With a numeric prefix N, construct a sparse tree for the Nth element
13289 of `org-todo-keywords-1'."
13290 (interactive "P")
13291 (let ((case-fold-search nil)
13292 (kwd-re
13293 (cond ((null arg) org-not-done-regexp)
13294 ((equal arg '(4))
13295 (let ((kwd (org-icompleting-read "Keyword (or KWD1|KWD2|...): "
13296 (mapcar 'list org-todo-keywords-1))))
13297 (concat "\\("
13298 (mapconcat 'identity (org-split-string kwd "|") "\\|")
13299 "\\)\\>")))
13300 ((<= (prefix-numeric-value arg) (length org-todo-keywords-1))
13301 (regexp-quote (nth (1- (prefix-numeric-value arg))
13302 org-todo-keywords-1)))
13303 (t (user-error "Invalid prefix argument: %s" arg)))))
13304 (message "%d TODO entries found"
13305 (org-occur (concat "^" org-outline-regexp " *" kwd-re )))))
13307 (defun org-deadline (arg &optional time)
13308 "Insert the \"DEADLINE:\" string with a timestamp to make a deadline.
13309 With one universal prefix argument, remove any deadline from the item.
13310 With two universal prefix arguments, prompt for a warning delay.
13311 With argument TIME, set the deadline at the corresponding date. TIME
13312 can either be an Org date like \"2011-07-24\" or a delta like \"+2d\"."
13313 (interactive "P")
13314 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
13315 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
13316 'region-start-level 'region))
13317 org-loop-over-headlines-in-active-region)
13318 (org-map-entries
13319 `(org-deadline ',arg ,time)
13320 org-loop-over-headlines-in-active-region
13321 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
13322 (let* ((old-date (org-entry-get nil "DEADLINE"))
13323 (old-date-time (if old-date (org-time-string-to-time old-date)))
13324 (repeater (and old-date
13325 (string-match
13326 "\\([.+-]+[0-9]+[hdwmy]\\(?:[/ ][-+]?[0-9]+[hdwmy]\\)?\\) ?"
13327 old-date)
13328 (match-string 1 old-date))))
13329 (cond
13330 ((equal arg '(4))
13331 (when (and old-date org-log-redeadline)
13332 (org-add-log-setup 'deldeadline nil old-date 'findpos
13333 org-log-redeadline))
13334 (org-remove-timestamp-with-keyword org-deadline-string)
13335 (message "Item no longer has a deadline."))
13336 ((equal arg '(16))
13337 (save-excursion
13338 (org-back-to-heading t)
13339 (if (re-search-forward
13340 org-deadline-time-regexp
13341 (save-excursion (outline-next-heading) (point)) t)
13342 (let* ((rpl0 (match-string 1))
13343 (rpl (replace-regexp-in-string " -[0-9]+[hdwmy]" "" rpl0)))
13344 (replace-match
13345 (concat org-deadline-string
13346 " <" rpl
13347 (format " -%dd"
13348 (abs
13349 (- (time-to-days
13350 (save-match-data
13351 (org-read-date nil t nil "Warn starting from" old-date-time)))
13352 (time-to-days old-date-time))))
13353 ">") t t))
13354 (user-error "No deadline information to update"))))
13356 (org-add-planning-info 'deadline time 'closed)
13357 (when (and old-date org-log-redeadline
13358 (not (equal old-date
13359 (substring org-last-inserted-timestamp 1 -1))))
13360 (org-add-log-setup 'redeadline nil old-date 'findpos
13361 org-log-redeadline))
13362 (when repeater
13363 (save-excursion
13364 (org-back-to-heading t)
13365 (when (re-search-forward (concat org-deadline-string " "
13366 org-last-inserted-timestamp)
13367 (save-excursion
13368 (outline-next-heading) (point)) t)
13369 (goto-char (1- (match-end 0)))
13370 (insert " " repeater)
13371 (setq org-last-inserted-timestamp
13372 (concat (substring org-last-inserted-timestamp 0 -1)
13373 " " repeater
13374 (substring org-last-inserted-timestamp -1))))))
13375 (message "Deadline on %s" org-last-inserted-timestamp))))))
13377 (defun org-schedule (arg &optional time)
13378 "Insert the SCHEDULED: string with a timestamp to schedule a TODO item.
13379 With one universal prefix argument, remove any scheduling date from the item.
13380 With two universal prefix arguments, prompt for a delay cookie.
13381 With argument TIME, scheduled at the corresponding date. TIME can
13382 either be an Org date like \"2011-07-24\" or a delta like \"+2d\"."
13383 (interactive "P")
13384 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
13385 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
13386 'region-start-level 'region))
13387 org-loop-over-headlines-in-active-region)
13388 (org-map-entries
13389 `(org-schedule ',arg ,time)
13390 org-loop-over-headlines-in-active-region
13391 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
13392 (let* ((old-date (org-entry-get nil "SCHEDULED"))
13393 (old-date-time (if old-date (org-time-string-to-time old-date)))
13394 (repeater (and old-date
13395 (string-match
13396 "\\([.+-]+[0-9]+[hdwmy]\\(?:[/ ][-+]?[0-9]+[hdwmy]\\)?\\) ?"
13397 old-date)
13398 (match-string 1 old-date))))
13399 (cond
13400 ((equal arg '(4))
13401 (progn
13402 (when (and old-date org-log-reschedule)
13403 (org-add-log-setup 'delschedule nil old-date 'findpos
13404 org-log-reschedule))
13405 (org-remove-timestamp-with-keyword org-scheduled-string)
13406 (message "Item is no longer scheduled.")))
13407 ((equal arg '(16))
13408 (save-excursion
13409 (org-back-to-heading t)
13410 (if (re-search-forward
13411 org-scheduled-time-regexp
13412 (save-excursion (outline-next-heading) (point)) t)
13413 (let* ((rpl0 (match-string 1))
13414 (rpl (replace-regexp-in-string " -[0-9]+[hdwmy]" "" rpl0)))
13415 (replace-match
13416 (concat org-scheduled-string
13417 " <" rpl
13418 (format " -%dd"
13419 (abs
13420 (- (time-to-days
13421 (save-match-data
13422 (org-read-date nil t nil "Delay until" old-date-time)))
13423 (time-to-days old-date-time))))
13424 ">") t t))
13425 (user-error "No scheduled information to update"))))
13427 (org-add-planning-info 'scheduled time 'closed)
13428 (when (and old-date org-log-reschedule
13429 (not (equal old-date
13430 (substring org-last-inserted-timestamp 1 -1))))
13431 (org-add-log-setup 'reschedule nil old-date 'findpos
13432 org-log-reschedule))
13433 (when repeater
13434 (save-excursion
13435 (org-back-to-heading t)
13436 (when (re-search-forward (concat org-scheduled-string " "
13437 org-last-inserted-timestamp)
13438 (save-excursion
13439 (outline-next-heading) (point)) t)
13440 (goto-char (1- (match-end 0)))
13441 (insert " " repeater)
13442 (setq org-last-inserted-timestamp
13443 (concat (substring org-last-inserted-timestamp 0 -1)
13444 " " repeater
13445 (substring org-last-inserted-timestamp -1))))))
13446 (message "Scheduled to %s" org-last-inserted-timestamp))))))
13448 (defun org-get-scheduled-time (pom &optional inherit)
13449 "Get the scheduled time as a time tuple, of a format suitable
13450 for calling org-schedule with, or if there is no scheduling,
13451 returns nil."
13452 (let ((time (org-entry-get pom "SCHEDULED" inherit)))
13453 (when time
13454 (apply 'encode-time (org-parse-time-string time)))))
13456 (defun org-get-deadline-time (pom &optional inherit)
13457 "Get the deadline as a time tuple, of a format suitable for
13458 calling org-deadline with, or if there is no scheduling, returns
13459 nil."
13460 (let ((time (org-entry-get pom "DEADLINE" inherit)))
13461 (when time
13462 (apply 'encode-time (org-parse-time-string time)))))
13464 (defun org-remove-timestamp-with-keyword (keyword)
13465 "Remove all time stamps with KEYWORD in the current entry."
13466 (let ((re (concat "\\<" (regexp-quote keyword) " +<[^>\n]+>[ \t]*"))
13467 beg)
13468 (save-excursion
13469 (org-back-to-heading t)
13470 (setq beg (point))
13471 (outline-next-heading)
13472 (while (re-search-backward re beg t)
13473 (replace-match "")
13474 (if (and (string-match "\\S-" (buffer-substring (point-at-bol) (point)))
13475 (equal (char-before) ?\ ))
13476 (backward-delete-char 1)
13477 (if (string-match "^[ \t]*$" (buffer-substring
13478 (point-at-bol) (point-at-eol)))
13479 (delete-region (point-at-bol)
13480 (min (point-max) (1+ (point-at-eol))))))))))
13482 (defvar org-time-was-given) ; dynamically scoped parameter
13483 (defvar org-end-time-was-given) ; dynamically scoped parameter
13485 (defun org-add-planning-info (what &optional time &rest remove)
13486 "Insert new timestamp with keyword in the line directly after the headline.
13487 WHAT indicates what kind of time stamp to add. TIME indicates the time to use.
13488 If non is given, the user is prompted for a date.
13489 REMOVE indicates what kind of entries to remove. An old WHAT entry will also
13490 be removed."
13491 (interactive)
13492 (let (org-time-was-given org-end-time-was-given default-time default-input)
13493 (catch 'exit
13494 (when (and (memq what '(scheduled deadline))
13495 (or (not time)
13496 (and (stringp time)
13497 (string-match "^[-+]+[0-9]" time))))
13498 ;; Try to get a default date/time from existing timestamp
13499 (save-excursion
13500 (org-back-to-heading t)
13501 (let ((end (save-excursion (outline-next-heading) (point))) ts)
13502 (when (re-search-forward (if (eq what 'scheduled)
13503 org-scheduled-time-regexp
13504 org-deadline-time-regexp)
13505 end t)
13506 (setq ts (match-string 1)
13507 default-time (apply 'encode-time (org-parse-time-string ts))
13508 default-input (and ts (org-get-compact-tod ts)))))))
13509 (when what
13510 (setq time
13511 (if (stringp time)
13512 ;; This is a string (relative or absolute), set proper date
13513 (apply 'encode-time
13514 (org-read-date-analyze
13515 time default-time (decode-time default-time)))
13516 ;; If necessary, get the time from the user
13517 (or time (org-read-date nil 'to-time nil nil
13518 default-time default-input)))))
13520 (when (and org-insert-labeled-timestamps-at-point
13521 (memq what '(scheduled deadline)))
13522 (insert
13523 (if (eq what 'scheduled) org-scheduled-string org-deadline-string) " ")
13524 (org-insert-time-stamp time org-time-was-given
13525 nil nil nil (list org-end-time-was-given))
13526 (setq what nil))
13527 (org-with-wide-buffer
13528 (let (col list elt ts buffer-invisibility-spec)
13529 (org-back-to-heading t)
13530 (looking-at (concat org-outline-regexp "\\( *\\)[^\r\n]*"))
13531 (goto-char (match-end 1))
13532 (setq col (current-column))
13533 (goto-char (match-end 0))
13534 (if (eobp) (insert "\n") (forward-char 1))
13535 (unless (or what (org-looking-at-p org-planning-line-re))
13536 ;; Nothing to add, nothing to remove...... :-)
13537 (throw 'exit nil))
13538 (if (and (not (looking-at org-outline-regexp))
13539 (looking-at (concat "[^\r\n]*?" org-keyword-time-regexp
13540 "[^\r\n]*"))
13541 (not (equal (match-string 1) org-clock-string)))
13542 (narrow-to-region (match-beginning 0) (match-end 0))
13543 (insert-before-markers "\n")
13544 (backward-char 1)
13545 (narrow-to-region (point) (point))
13546 (and org-adapt-indentation (org-indent-to-column col)))
13547 ;; Check if we have to remove something.
13548 (setq list (cons what remove))
13549 (while list
13550 (setq elt (pop list))
13551 (when (or (and (eq elt 'scheduled)
13552 (re-search-forward org-scheduled-time-regexp nil t))
13553 (and (eq elt 'deadline)
13554 (re-search-forward org-deadline-time-regexp nil t))
13555 (and (eq elt 'closed)
13556 (re-search-forward org-closed-time-regexp nil t)))
13557 (replace-match "")
13558 (if (looking-at "--+<[^>]+>") (replace-match ""))))
13559 (and (looking-at "[ \t]+") (replace-match ""))
13560 (and org-adapt-indentation (bolp) (org-indent-to-column col))
13561 (when what
13562 (insert
13563 (if (or (bolp) (eq (char-before) ?\s)) "" " ")
13564 (cond ((eq what 'scheduled) org-scheduled-string)
13565 ((eq what 'deadline) org-deadline-string)
13566 ((eq what 'closed) org-closed-string))
13567 " ")
13568 (setq ts (org-insert-time-stamp
13569 time
13570 (or org-time-was-given
13571 (and (eq what 'closed) org-log-done-with-time))
13572 (eq what 'closed)
13573 nil nil (list org-end-time-was-given)))
13574 (unless (or (bolp)
13575 (eq (char-before) ?\s)
13576 (memq (char-after) '(?\n ?\s))
13577 (eobp))
13578 (insert " "))
13579 (end-of-line 1))
13580 (goto-char (point-min))
13581 (widen)
13582 (when (and (looking-at "[ \t]*\n") (eq (char-before) ?\n))
13583 (delete-region (1- (point)) (line-end-position)))
13584 ts)))))
13586 (defvar org-log-note-marker (make-marker))
13587 (defvar org-log-note-purpose nil)
13588 (defvar org-log-note-state nil)
13589 (defvar org-log-note-previous-state nil)
13590 (defvar org-log-note-extra nil)
13591 (defvar org-log-note-window-configuration nil)
13592 (defvar org-log-note-return-to (make-marker))
13593 (defvar org-log-note-effective-time nil
13594 "Remembered current time so that dynamically scoped
13595 `org-extend-today-until' affects tha timestamps in state change
13596 log")
13598 (defvar org-log-post-message nil
13599 "Message to be displayed after a log note has been stored.
13600 The auto-repeater uses this.")
13602 (defun org-add-note ()
13603 "Add a note to the current entry.
13604 This is done in the same way as adding a state change note."
13605 (interactive)
13606 (org-add-log-setup 'note nil nil 'findpos nil))
13608 (defun org-log-beginning (&optional create)
13609 "Return expected start of log notes in current entry.
13610 When optional argument CREATE is non-nil, the function creates
13611 a drawer to store notes, if necessary. Returned position ignores
13612 narrowing."
13613 (org-with-wide-buffer
13614 (org-back-to-heading t)
13615 ;; Skip planning info and property drawer.
13616 (forward-line)
13617 (when (org-looking-at-p org-planning-line-re) (forward-line))
13618 (when (looking-at org-property-drawer-re)
13619 (goto-char (match-end 0))
13620 (forward-line))
13621 (if (org-at-heading-p) (point)
13622 (let ((end (save-excursion (outline-next-heading) (point)))
13623 (drawer (cond ((stringp org-log-into-drawer) org-log-into-drawer)
13624 (org-log-into-drawer "LOGBOOK"))))
13625 (cond
13626 (drawer
13627 (let ((regexp (concat "^[ \t]*:" (regexp-quote drawer) ":[ \t]*$"))
13628 (case-fold-search t))
13629 (catch 'exit
13630 ;; Try to find existing drawer.
13631 (while (re-search-forward regexp end t)
13632 (let ((element (org-element-at-point)))
13633 (when (eq (org-element-type element) 'drawer)
13634 (let ((cend (org-element-property :contents-end element)))
13635 (when (and (not org-log-states-order-reversed) cend)
13636 (goto-char cend)))
13637 (throw 'exit nil))))
13638 ;; No drawer found. Create one, if permitted.
13639 (when create
13640 (unless (bolp) (insert "\n"))
13641 (let ((beg (point)))
13642 (insert ":" drawer ":\n:END:\n")
13643 (org-indent-region beg (point)))
13644 (end-of-line -1)))))
13645 (org-log-state-notes-insert-after-drawers
13646 (while (and (looking-at org-drawer-regexp)
13647 (progn (goto-char (match-end 0))
13648 (re-search-forward org-property-end-re end t)))
13649 (forward-line)))))
13650 (if (bolp) (point) (line-beginning-position 2)))))
13652 (defun org-add-log-setup (&optional purpose state prev-state findpos how extra)
13653 "Set up the post command hook to take a note.
13654 If this is about to TODO state change, the new state is expected in STATE.
13655 When FINDPOS is non-nil, find the correct position for the note in
13656 the current entry. If not, assume that it can be inserted at point.
13657 HOW is an indicator what kind of note should be created.
13658 EXTRA is additional text that will be inserted into the notes buffer."
13659 (org-with-wide-buffer
13660 (when findpos
13661 (goto-char (org-log-beginning t))
13662 (unless org-log-states-order-reversed
13663 (org-skip-over-state-notes)
13664 (skip-chars-backward " \t\n\r")
13665 (forward-line)))
13666 (move-marker org-log-note-marker (point))
13667 (setq org-log-note-purpose purpose
13668 org-log-note-state state
13669 org-log-note-previous-state prev-state
13670 org-log-note-how how
13671 org-log-note-extra extra
13672 org-log-note-effective-time (org-current-effective-time))
13673 (add-hook 'post-command-hook 'org-add-log-note 'append)))
13675 (defun org-skip-over-state-notes ()
13676 "Skip past the list of State notes in an entry."
13677 (when (ignore-errors (goto-char (org-in-item-p)))
13678 (let* ((struct (org-list-struct))
13679 (prevs (org-list-prevs-alist struct))
13680 (regexp
13681 (concat "[ \t]*- +"
13682 (replace-regexp-in-string
13683 " +" " +"
13684 (org-replace-escapes
13685 (regexp-quote (cdr (assq 'state org-log-note-headings)))
13686 `(("%d" . ,org-ts-regexp-inactive)
13687 ("%D" . ,org-ts-regexp)
13688 ("%s" . "\"\\S-+\"")
13689 ("%S" . "\"\\S-+\"")
13690 ("%t" . ,org-ts-regexp-inactive)
13691 ("%T" . ,org-ts-regexp)
13692 ("%u" . ".*?")
13693 ("%U" . ".*?")))))))
13694 (while (org-looking-at-p regexp)
13695 (goto-char (or (org-list-get-next-item (point) struct prevs)
13696 (org-list-get-item-end (point) struct)))))))
13698 (defun org-add-log-note (&optional purpose)
13699 "Pop up a window for taking a note, and add this note later at point."
13700 (remove-hook 'post-command-hook 'org-add-log-note)
13701 (setq org-log-note-window-configuration (current-window-configuration))
13702 (delete-other-windows)
13703 (move-marker org-log-note-return-to (point))
13704 (org-pop-to-buffer-same-window (marker-buffer org-log-note-marker))
13705 (goto-char org-log-note-marker)
13706 (org-switch-to-buffer-other-window "*Org Note*")
13707 (erase-buffer)
13708 (if (memq org-log-note-how '(time state))
13709 (let (current-prefix-arg) (org-store-log-note))
13710 (let ((org-inhibit-startup t)) (org-mode))
13711 (insert (format "# Insert note for %s.
13712 # Finish with C-c C-c, or cancel with C-c C-k.\n\n"
13713 (cond
13714 ((eq org-log-note-purpose 'clock-out) "stopped clock")
13715 ((eq org-log-note-purpose 'done) "closed todo item")
13716 ((eq org-log-note-purpose 'state)
13717 (format "state change from \"%s\" to \"%s\""
13718 (or org-log-note-previous-state "")
13719 (or org-log-note-state "")))
13720 ((eq org-log-note-purpose 'reschedule)
13721 "rescheduling")
13722 ((eq org-log-note-purpose 'delschedule)
13723 "no longer scheduled")
13724 ((eq org-log-note-purpose 'redeadline)
13725 "changing deadline")
13726 ((eq org-log-note-purpose 'deldeadline)
13727 "removing deadline")
13728 ((eq org-log-note-purpose 'refile)
13729 "refiling")
13730 ((eq org-log-note-purpose 'note)
13731 "this entry")
13732 (t (error "This should not happen")))))
13733 (if org-log-note-extra (insert org-log-note-extra))
13734 (org-set-local 'org-finish-function 'org-store-log-note)
13735 (run-hooks 'org-log-buffer-setup-hook)))
13737 (defvar org-note-abort nil) ; dynamically scoped
13738 (defun org-store-log-note ()
13739 "Finish taking a log note, and insert it to where it belongs."
13740 (let ((txt (buffer-string)))
13741 (kill-buffer (current-buffer))
13742 (let ((note (cdr (assq org-log-note-purpose org-log-note-headings))) lines)
13743 (while (string-match "\\`# .*\n[ \t\n]*" txt)
13744 (setq txt (replace-match "" t t txt)))
13745 (if (string-match "\\s-+\\'" txt)
13746 (setq txt (replace-match "" t t txt)))
13747 (setq lines (org-split-string txt "\n"))
13748 (when (and note (string-match "\\S-" note))
13749 (setq note
13750 (org-replace-escapes
13751 note
13752 (list (cons "%u" (user-login-name))
13753 (cons "%U" user-full-name)
13754 (cons "%t" (format-time-string
13755 (org-time-stamp-format 'long 'inactive)
13756 org-log-note-effective-time))
13757 (cons "%T" (format-time-string
13758 (org-time-stamp-format 'long nil)
13759 org-log-note-effective-time))
13760 (cons "%d" (format-time-string
13761 (org-time-stamp-format nil 'inactive)
13762 org-log-note-effective-time))
13763 (cons "%D" (format-time-string
13764 (org-time-stamp-format nil nil)
13765 org-log-note-effective-time))
13766 (cons "%s" (if org-log-note-state
13767 (concat "\"" org-log-note-state "\"")
13768 ""))
13769 (cons "%S" (if org-log-note-previous-state
13770 (concat "\"" org-log-note-previous-state "\"")
13771 "\"\"")))))
13772 (when lines (setq note (concat note " \\\\")))
13773 (push note lines))
13774 (when (or current-prefix-arg org-note-abort)
13775 (when (org-log-into-drawer)
13776 (org-remove-empty-drawer-at org-log-note-marker))
13777 (setq lines nil))
13778 (when lines
13779 (with-current-buffer (marker-buffer org-log-note-marker)
13780 (save-excursion
13781 (goto-char org-log-note-marker)
13782 (move-marker org-log-note-marker nil)
13783 ;; Make sure point is at the beginning of an empty line.
13784 (cond ((not (bolp)) (let ((inhibit-read-only t)) (insert "\n")))
13785 ((looking-at "[ \t]*\\S-") (save-excursion (insert "\n"))))
13786 ;; In an existing list, add a new item at the top level.
13787 ;; Otherwise, indent line like a regular one.
13788 (let ((itemp (org-in-item-p)))
13789 (if itemp
13790 (org-indent-line-to
13791 (let ((struct (save-excursion
13792 (goto-char itemp) (org-list-struct))))
13793 (org-list-get-ind (org-list-get-top-point struct) struct)))
13794 (org-indent-line)))
13795 (insert (org-list-bullet-string "-") (pop lines))
13796 (let ((ind (org-list-item-body-column (line-beginning-position))))
13797 (dolist (line lines)
13798 (insert "\n")
13799 (org-indent-line-to ind)
13800 (insert line)))
13801 (message "Note stored")
13802 (org-back-to-heading t)
13803 (org-cycle-hide-drawers 'children))
13804 ;; Fix `buffer-undo-list' when `org-store-log-note' is called
13805 ;; from within `org-add-log-note' because `buffer-undo-list'
13806 ;; is then modified outside of `org-with-remote-undo'.
13807 (when (eq this-command 'org-agenda-todo)
13808 (setcdr buffer-undo-list (cddr buffer-undo-list)))))))
13809 ;; Don't add undo information when called from `org-agenda-todo'
13810 (let ((buffer-undo-list (eq this-command 'org-agenda-todo)))
13811 (set-window-configuration org-log-note-window-configuration)
13812 (with-current-buffer (marker-buffer org-log-note-return-to)
13813 (goto-char org-log-note-return-to))
13814 (move-marker org-log-note-return-to nil)
13815 (and org-log-post-message (message "%s" org-log-post-message))))
13817 (defun org-remove-empty-drawer-at (pos)
13818 "Remove an empty drawer at position POS.
13819 POS may also be a marker."
13820 (with-current-buffer (if (markerp pos) (marker-buffer pos) (current-buffer))
13821 (org-with-wide-buffer
13822 (goto-char pos)
13823 (let ((drawer (org-element-at-point)))
13824 (when (and (memq (org-element-type drawer) '(drawer property-drawer))
13825 (not (org-element-property :contents-begin drawer)))
13826 (delete-region (org-element-property :begin drawer)
13827 (progn (goto-char (org-element-property :end drawer))
13828 (skip-chars-backward " \r\t\n")
13829 (forward-line)
13830 (point))))))))
13832 (defvar org-ts-type nil)
13833 (defun org-sparse-tree (&optional arg type)
13834 "Create a sparse tree, prompt for the details.
13835 This command can create sparse trees. You first need to select the type
13836 of match used to create the tree:
13838 t Show all TODO entries.
13839 T Show entries with a specific TODO keyword.
13840 m Show entries selected by a tags/property match.
13841 p Enter a property name and its value (both with completion on existing
13842 names/values) and show entries with that property.
13843 r Show entries matching a regular expression (`/' can be used as well).
13844 b Show deadlines and scheduled items before a date.
13845 a Show deadlines and scheduled items after a date.
13846 d Show deadlines due within `org-deadline-warning-days'.
13847 D Show deadlines and scheduled items between a date range."
13848 (interactive "P")
13849 (setq type (or type org-sparse-tree-default-date-type))
13850 (setq org-ts-type type)
13851 (message "Sparse tree: [/]regexp [t]odo [T]odo-kwd [m]atch [p]roperty
13852 [d]eadlines [b]efore-date [a]fter-date [D]ates range
13853 [c]ycle through date types: %s"
13854 (case type
13855 (all "all timestamps")
13856 (scheduled "only scheduled")
13857 (deadline "only deadline")
13858 (active "only active timestamps")
13859 (inactive "only inactive timestamps")
13860 (scheduled-or-deadline "scheduled/deadline")
13861 (closed "with a closed time-stamp")
13862 (otherwise "scheduled/deadline")))
13863 (let ((answer (read-char-exclusive)))
13864 (case answer
13866 (org-sparse-tree
13868 (cadr (memq type '(scheduled-or-deadline all scheduled deadline active
13869 inactive closed)))))
13870 (?d (call-interactively 'org-check-deadlines))
13871 (?b (call-interactively 'org-check-before-date))
13872 (?a (call-interactively 'org-check-after-date))
13873 (?D (call-interactively 'org-check-dates-range))
13874 (?t (call-interactively 'org-show-todo-tree))
13875 (?T (org-show-todo-tree '(4)))
13876 (?m (call-interactively 'org-match-sparse-tree))
13877 ((?p ?P)
13878 (let* ((kwd (org-icompleting-read
13879 "Property: " (mapcar 'list (org-buffer-property-keys))))
13880 (value (org-icompleting-read
13881 "Value: " (mapcar 'list (org-property-values kwd)))))
13882 (unless (string-match "\\`{.*}\\'" value)
13883 (setq value (concat "\"" value "\"")))
13884 (org-match-sparse-tree arg (concat kwd "=" value))))
13885 ((?r ?R ?/) (call-interactively 'org-occur))
13886 (otherwise (user-error "No such sparse tree command \"%c\"" answer)))))
13888 (defvar org-occur-highlights nil
13889 "List of overlays used for occur matches.")
13890 (make-variable-buffer-local 'org-occur-highlights)
13891 (defvar org-occur-parameters nil
13892 "Parameters of the active org-occur calls.
13893 This is a list, each call to org-occur pushes as cons cell,
13894 containing the regular expression and the callback, onto the list.
13895 The list can contain several entries if `org-occur' has been called
13896 several time with the KEEP-PREVIOUS argument. Otherwise, this list
13897 will only contain one set of parameters. When the highlights are
13898 removed (for example with `C-c C-c', or with the next edit (depending
13899 on `org-remove-highlights-with-change'), this variable is emptied
13900 as well.")
13901 (make-variable-buffer-local 'org-occur-parameters)
13903 (defun org-occur (regexp &optional keep-previous callback)
13904 "Make a compact tree which shows all matches of REGEXP.
13905 The tree will show the lines where the regexp matches, and all higher
13906 headlines above the match. It will also show the heading after the match,
13907 to make sure editing the matching entry is easy.
13908 If KEEP-PREVIOUS is non-nil, highlighting and exposing done by a previous
13909 call to `org-occur' will be kept, to allow stacking of calls to this
13910 command.
13911 If CALLBACK is non-nil, it is a function which is called to confirm
13912 that the match should indeed be shown."
13913 (interactive "sRegexp: \nP")
13914 (when (equal regexp "")
13915 (user-error "Regexp cannot be empty"))
13916 (unless keep-previous
13917 (org-remove-occur-highlights nil nil t))
13918 (push (cons regexp callback) org-occur-parameters)
13919 (let ((cnt 0))
13920 (save-excursion
13921 (goto-char (point-min))
13922 (if (or (not keep-previous) ; do not want to keep
13923 (not org-occur-highlights)) ; no previous matches
13924 ;; hide everything
13925 (org-overview))
13926 (while (re-search-forward regexp nil t)
13927 (when (or (not callback)
13928 (save-match-data (funcall callback)))
13929 (setq cnt (1+ cnt))
13930 (when org-highlight-sparse-tree-matches
13931 (org-highlight-new-match (match-beginning 0) (match-end 0)))
13932 (org-show-context 'occur-tree))))
13933 (when org-remove-highlights-with-change
13934 (org-add-hook 'before-change-functions 'org-remove-occur-highlights
13935 nil 'local))
13936 (unless org-sparse-tree-open-archived-trees
13937 (org-hide-archived-subtrees (point-min) (point-max)))
13938 (run-hooks 'org-occur-hook)
13939 (if (org-called-interactively-p 'interactive)
13940 (message "%d match(es) for regexp %s" cnt regexp))
13941 cnt))
13943 (defun org-occur-next-match (&optional n reset)
13944 "Function for `next-error-function' to find sparse tree matches.
13945 N is the number of matches to move, when negative move backwards.
13946 RESET is entirely ignored - this function always goes back to the
13947 starting point when no match is found."
13948 (let* ((limit (if (< n 0) (point-min) (point-max)))
13949 (search-func (if (< n 0)
13950 'previous-single-char-property-change
13951 'next-single-char-property-change))
13952 (n (abs n))
13953 (pos (point))
13955 (catch 'exit
13956 (while (setq p1 (funcall search-func (point) 'org-type))
13957 (when (equal p1 limit)
13958 (goto-char pos)
13959 (user-error "No more matches"))
13960 (when (equal (get-char-property p1 'org-type) 'org-occur)
13961 (setq n (1- n))
13962 (when (= n 0)
13963 (goto-char p1)
13964 (throw 'exit (point))))
13965 (goto-char p1))
13966 (goto-char p1)
13967 (user-error "No more matches"))))
13969 (defun org-show-context (&optional key)
13970 "Make sure point and context are visible.
13971 How much context is shown depends upon the variables
13972 `org-show-hierarchy-above', `org-show-following-heading',
13973 `org-show-entry-below' and `org-show-siblings'."
13974 (let ((heading-p (org-at-heading-p t))
13975 (hierarchy-p (org-get-alist-option org-show-hierarchy-above key))
13976 (following-p (org-get-alist-option org-show-following-heading key))
13977 (entry-p (org-get-alist-option org-show-entry-below key))
13978 (siblings-p (org-get-alist-option org-show-siblings key)))
13979 ;; Show heading or entry text
13980 (if (and heading-p (not entry-p))
13981 (org-flag-heading nil) ; only show the heading
13982 (and (or entry-p (outline-invisible-p) (org-invisible-p2))
13983 (org-show-hidden-entry))) ; show entire entry
13984 (when following-p
13985 ;; Show next sibling, or heading below text
13986 (save-excursion
13987 (and (if heading-p (org-goto-sibling) (outline-next-heading))
13988 (org-flag-heading nil))))
13989 (when siblings-p (org-show-siblings))
13990 (when hierarchy-p
13991 ;; show all higher headings, possibly with siblings
13992 (save-excursion
13993 (while (and (ignore-errors (progn (org-up-heading-all 1) t))
13994 (not (bobp)))
13995 (org-flag-heading nil)
13996 (when siblings-p (org-show-siblings)))))))
13998 (defvar org-reveal-start-hook nil
13999 "Hook run before revealing a location.")
14001 (defun org-reveal (&optional siblings)
14002 "Show current entry, hierarchy above it, and the following headline.
14003 This can be used to show a consistent set of context around locations
14004 exposed with `org-show-hierarchy-above' or `org-show-following-heading'
14005 not t for the search context.
14007 With optional argument SIBLINGS, on each level of the hierarchy all
14008 siblings are shown. This repairs the tree structure to what it would
14009 look like when opened with hierarchical calls to `org-cycle'.
14010 With double optional argument \\[universal-argument] \\[universal-argument], \
14011 go to the parent and show the
14012 entire tree."
14013 (interactive "P")
14014 (run-hooks 'org-reveal-start-hook)
14015 (let ((org-show-hierarchy-above t)
14016 (org-show-following-heading t)
14017 (org-show-siblings (if siblings t org-show-siblings)))
14018 (org-show-context nil))
14019 (when (equal siblings '(16))
14020 (save-excursion
14021 (when (org-up-heading-safe)
14022 (org-show-subtree)
14023 (run-hook-with-args 'org-cycle-hook 'subtree)))))
14025 (defun org-highlight-new-match (beg end)
14026 "Highlight from BEG to END and mark the highlight is an occur headline."
14027 (let ((ov (make-overlay beg end)))
14028 (overlay-put ov 'face 'secondary-selection)
14029 (overlay-put ov 'org-type 'org-occur)
14030 (push ov org-occur-highlights)))
14032 (defun org-remove-occur-highlights (&optional beg end noremove)
14033 "Remove the occur highlights from the buffer.
14034 BEG and END are ignored. If NOREMOVE is nil, remove this function
14035 from the `before-change-functions' in the current buffer."
14036 (interactive)
14037 (unless org-inhibit-highlight-removal
14038 (mapc 'delete-overlay org-occur-highlights)
14039 (setq org-occur-highlights nil)
14040 (setq org-occur-parameters nil)
14041 (unless noremove
14042 (remove-hook 'before-change-functions
14043 'org-remove-occur-highlights 'local))))
14045 ;;;; Priorities
14047 (defvar org-priority-regexp ".*?\\(\\[#\\([A-Z0-9]\\)\\] ?\\)"
14048 "Regular expression matching the priority indicator.")
14050 (defvar org-remove-priority-next-time nil)
14052 (defun org-priority-up ()
14053 "Increase the priority of the current item."
14054 (interactive)
14055 (org-priority 'up))
14057 (defun org-priority-down ()
14058 "Decrease the priority of the current item."
14059 (interactive)
14060 (org-priority 'down))
14062 (defun org-priority (&optional action show)
14063 "Change the priority of an item.
14064 ACTION can be `set', `up', `down', or a character."
14065 (interactive "P")
14066 (if (equal action '(4))
14067 (org-show-priority)
14068 (unless org-enable-priority-commands
14069 (user-error "Priority commands are disabled"))
14070 (setq action (or action 'set))
14071 (let (current new news have remove)
14072 (save-excursion
14073 (org-back-to-heading t)
14074 (if (looking-at org-priority-regexp)
14075 (setq current (string-to-char (match-string 2))
14076 have t))
14077 (cond
14078 ((eq action 'remove)
14079 (setq remove t new ?\ ))
14080 ((or (eq action 'set)
14081 (if (featurep 'xemacs) (characterp action) (integerp action)))
14082 (if (not (eq action 'set))
14083 (setq new action)
14084 (message "Priority %c-%c, SPC to remove: "
14085 org-highest-priority org-lowest-priority)
14086 (save-match-data
14087 (setq new (read-char-exclusive))))
14088 (if (and (= (upcase org-highest-priority) org-highest-priority)
14089 (= (upcase org-lowest-priority) org-lowest-priority))
14090 (setq new (upcase new)))
14091 (cond ((equal new ?\ ) (setq remove t))
14092 ((or (< (upcase new) org-highest-priority) (> (upcase new) org-lowest-priority))
14093 (user-error "Priority must be between `%c' and `%c'"
14094 org-highest-priority org-lowest-priority))))
14095 ((eq action 'up)
14096 (setq new (if have
14097 (1- current) ; normal cycling
14098 ;; last priority was empty
14099 (if (eq last-command this-command)
14100 org-lowest-priority ; wrap around empty to lowest
14101 ;; default
14102 (if org-priority-start-cycle-with-default
14103 org-default-priority
14104 (1- org-default-priority))))))
14105 ((eq action 'down)
14106 (setq new (if have
14107 (1+ current) ; normal cycling
14108 ;; last priority was empty
14109 (if (eq last-command this-command)
14110 org-highest-priority ; wrap around empty to highest
14111 ;; default
14112 (if org-priority-start-cycle-with-default
14113 org-default-priority
14114 (1+ org-default-priority))))))
14115 (t (user-error "Invalid action")))
14116 (if (or (< (upcase new) org-highest-priority)
14117 (> (upcase new) org-lowest-priority))
14118 (if (and (memq action '(up down))
14119 (not have) (not (eq last-command this-command)))
14120 ;; `new' is from default priority
14121 (error
14122 "The default can not be set, see `org-default-priority' why")
14123 ;; normal cycling: `new' is beyond highest/lowest priority
14124 ;; and is wrapped around to the empty priority
14125 (setq remove t)))
14126 (setq news (format "%c" new))
14127 (if have
14128 (if remove
14129 (replace-match "" t t nil 1)
14130 (replace-match news t t nil 2))
14131 (if remove
14132 (user-error "No priority cookie found in line")
14133 (let ((case-fold-search nil))
14134 (looking-at org-todo-line-regexp))
14135 (if (match-end 2)
14136 (progn
14137 (goto-char (match-end 2))
14138 (insert " [#" news "]"))
14139 (goto-char (match-beginning 3))
14140 (insert "[#" news "] "))))
14141 (org-set-tags nil 'align))
14142 (if remove
14143 (message "Priority removed")
14144 (message "Priority of current item set to %s" news)))))
14146 (defun org-show-priority ()
14147 "Show the priority of the current item.
14148 This priority is composed of the main priority given with the [#A] cookies,
14149 and by additional input from the age of a schedules or deadline entry."
14150 (interactive)
14151 (let ((pri (if (eq major-mode 'org-agenda-mode)
14152 (org-get-at-bol 'priority)
14153 (save-excursion
14154 (save-match-data
14155 (beginning-of-line)
14156 (and (looking-at org-heading-regexp)
14157 (org-get-priority (match-string 0))))))))
14158 (message "Priority is %d" (if pri pri -1000))))
14160 (defun org-get-priority (s)
14161 "Find priority cookie and return priority."
14162 (save-match-data
14163 (if (functionp org-get-priority-function)
14164 (funcall org-get-priority-function)
14165 (if (not (string-match org-priority-regexp s))
14166 (* 1000 (- org-lowest-priority org-default-priority))
14167 (* 1000 (- org-lowest-priority
14168 (string-to-char (match-string 2 s))))))))
14170 ;;;; Tags
14172 (defvar org-agenda-archives-mode)
14173 (defvar org-map-continue-from nil
14174 "Position from where mapping should continue.
14175 Can be set by the action argument to `org-scan-tags' and `org-map-entries'.")
14177 (defvar org-scanner-tags nil
14178 "The current tag list while the tags scanner is running.")
14179 (defvar org-trust-scanner-tags nil
14180 "Should `org-get-tags-at' use the tags for the scanner.
14181 This is for internal dynamical scoping only.
14182 When this is non-nil, the function `org-get-tags-at' will return the value
14183 of `org-scanner-tags' instead of building the list by itself. This
14184 can lead to large speed-ups when the tags scanner is used in a file with
14185 many entries, and when the list of tags is retrieved, for example to
14186 obtain a list of properties. Building the tags list for each entry in such
14187 a file becomes an N^2 operation - but with this variable set, it scales
14188 as N.")
14190 (defun org-scan-tags (action matcher todo-only &optional start-level)
14191 "Scan headline tags with inheritance and produce output ACTION.
14193 ACTION can be `sparse-tree' to produce a sparse tree in the current buffer,
14194 or `agenda' to produce an entry list for an agenda view. It can also be
14195 a Lisp form or a function that should be called at each matched headline, in
14196 this case the return value is a list of all return values from these calls.
14198 MATCHER is a Lisp form to be evaluated, testing if a given set of tags
14199 qualifies a headline for inclusion. When TODO-ONLY is non-nil,
14200 only lines with a not-done TODO keyword are included in the output.
14201 This should be the same variable that was scoped into
14202 and set by `org-make-tags-matcher' when it constructed MATCHER.
14204 START-LEVEL can be a string with asterisks, reducing the scope to
14205 headlines matching this string."
14206 (require 'org-agenda)
14207 (let* ((re (concat "^"
14208 (if start-level
14209 ;; Get the correct level to match
14210 (concat "\\*\\{" (number-to-string start-level) "\\} ")
14211 org-outline-regexp)
14212 " *\\(\\<\\("
14213 (mapconcat 'regexp-quote org-todo-keywords-1 "\\|")
14214 (org-re "\\)\\>\\)? *\\(.*?\\)\\(:[[:alnum:]_@#%:]+:\\)?[ \t]*$")))
14215 (props (list 'face 'default
14216 'done-face 'org-agenda-done
14217 'undone-face 'default
14218 'mouse-face 'highlight
14219 'org-not-done-regexp org-not-done-regexp
14220 'org-todo-regexp org-todo-regexp
14221 'org-complex-heading-regexp org-complex-heading-regexp
14222 'help-echo
14223 (format "mouse-2 or RET jump to org file %s"
14224 (abbreviate-file-name
14225 (or (buffer-file-name (buffer-base-buffer))
14226 (buffer-name (buffer-base-buffer)))))))
14227 (org-map-continue-from nil)
14228 lspos tags tags-list
14229 (tags-alist (list (cons 0 org-file-tags)))
14230 (llast 0) rtn rtn1 level category i txt
14231 todo marker entry priority)
14232 (when (not (or (member action '(agenda sparse-tree)) (functionp action)))
14233 (setq action (list 'lambda nil action)))
14234 (save-excursion
14235 (goto-char (point-min))
14236 (when (eq action 'sparse-tree)
14237 (org-overview)
14238 (org-remove-occur-highlights))
14239 (while (let (case-fold-search)
14240 (re-search-forward re nil t))
14241 (setq org-map-continue-from nil)
14242 (catch :skip
14243 (setq todo (if (match-end 1) (org-match-string-no-properties 2))
14244 tags (if (match-end 4) (org-match-string-no-properties 4)))
14245 (goto-char (setq lspos (match-beginning 0)))
14246 (setq level (org-reduced-level (org-outline-level))
14247 category (org-get-category))
14248 (setq i llast llast level)
14249 ;; remove tag lists from same and sublevels
14250 (while (>= i level)
14251 (when (setq entry (assoc i tags-alist))
14252 (setq tags-alist (delete entry tags-alist)))
14253 (setq i (1- i)))
14254 ;; add the next tags
14255 (when tags
14256 (setq tags (org-split-string tags ":")
14257 tags-alist
14258 (cons (cons level tags) tags-alist)))
14259 ;; compile tags for current headline
14260 (setq tags-list
14261 (if org-use-tag-inheritance
14262 (apply 'append (mapcar 'cdr (reverse tags-alist)))
14263 tags)
14264 org-scanner-tags tags-list)
14265 (when org-use-tag-inheritance
14266 (setcdr (car tags-alist)
14267 (mapcar (lambda (x)
14268 (setq x (copy-sequence x))
14269 (org-add-prop-inherited x))
14270 (cdar tags-alist))))
14271 (when (and tags org-use-tag-inheritance
14272 (or (not (eq t org-use-tag-inheritance))
14273 org-tags-exclude-from-inheritance))
14274 ;; selective inheritance, remove uninherited ones
14275 (setcdr (car tags-alist)
14276 (org-remove-uninherited-tags (cdar tags-alist))))
14277 (when (and
14279 ;; eval matcher only when the todo condition is OK
14280 (and (or (not todo-only) (member todo org-not-done-keywords))
14281 (let ((case-fold-search t) (org-trust-scanner-tags t))
14282 (eval matcher)))
14284 ;; Call the skipper, but return t if it does not skip,
14285 ;; so that the `and' form continues evaluating
14286 (progn
14287 (unless (eq action 'sparse-tree) (org-agenda-skip))
14290 ;; Check if timestamps are deselecting this entry
14291 (or (not todo-only)
14292 (and (member todo org-not-done-keywords)
14293 (or (not org-agenda-tags-todo-honor-ignore-options)
14294 (not (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item))))))
14296 ;; select this headline
14297 (cond
14298 ((eq action 'sparse-tree)
14299 (and org-highlight-sparse-tree-matches
14300 (org-get-heading) (match-end 0)
14301 (org-highlight-new-match
14302 (match-beginning 1) (match-end 1)))
14303 (org-show-context 'tags-tree))
14304 ((eq action 'agenda)
14305 (setq txt (org-agenda-format-item
14307 (concat
14308 (if (eq org-tags-match-list-sublevels 'indented)
14309 (make-string (1- level) ?.) "")
14310 (org-get-heading))
14311 level category
14312 tags-list)
14313 priority (org-get-priority txt))
14314 (goto-char lspos)
14315 (setq marker (org-agenda-new-marker))
14316 (org-add-props txt props
14317 'org-marker marker 'org-hd-marker marker 'org-category category
14318 'todo-state todo
14319 'priority priority 'type "tagsmatch")
14320 (push txt rtn))
14321 ((functionp action)
14322 (setq org-map-continue-from nil)
14323 (save-excursion
14324 (setq rtn1 (funcall action))
14325 (push rtn1 rtn)))
14326 (t (user-error "Invalid action")))
14328 ;; if we are to skip sublevels, jump to end of subtree
14329 (unless org-tags-match-list-sublevels
14330 (org-end-of-subtree t)
14331 (backward-char 1))))
14332 ;; Get the correct position from where to continue
14333 (if org-map-continue-from
14334 (goto-char org-map-continue-from)
14335 (and (= (point) lspos) (end-of-line 1)))))
14336 (when (and (eq action 'sparse-tree)
14337 (not org-sparse-tree-open-archived-trees))
14338 (org-hide-archived-subtrees (point-min) (point-max)))
14339 (nreverse rtn)))
14341 (defun org-remove-uninherited-tags (tags)
14342 "Remove all tags that are not inherited from the list TAGS."
14343 (cond
14344 ((eq org-use-tag-inheritance t)
14345 (if org-tags-exclude-from-inheritance
14346 (org-delete-all org-tags-exclude-from-inheritance tags)
14347 tags))
14348 ((not org-use-tag-inheritance) nil)
14349 ((stringp org-use-tag-inheritance)
14350 (delq nil (mapcar
14351 (lambda (x)
14352 (if (and (string-match org-use-tag-inheritance x)
14353 (not (member x org-tags-exclude-from-inheritance)))
14354 x nil))
14355 tags)))
14356 ((listp org-use-tag-inheritance)
14357 (delq nil (mapcar
14358 (lambda (x)
14359 (if (member x org-use-tag-inheritance) x nil))
14360 tags)))))
14362 (defun org-match-sparse-tree (&optional todo-only match)
14363 "Create a sparse tree according to tags string MATCH.
14364 MATCH can contain positive and negative selection of tags, like
14365 \"+WORK+URGENT-WITHBOSS\".
14366 If optional argument TODO-ONLY is non-nil, only select lines that are
14367 also TODO lines."
14368 (interactive "P")
14369 (org-agenda-prepare-buffers (list (current-buffer)))
14370 (org-scan-tags 'sparse-tree (cdr (org-make-tags-matcher match)) todo-only))
14372 (defalias 'org-tags-sparse-tree 'org-match-sparse-tree)
14374 (defvar org-cached-props nil)
14375 (defun org-cached-entry-get (pom property)
14376 (if (or (eq t org-use-property-inheritance)
14377 (and (stringp org-use-property-inheritance)
14378 (string-match org-use-property-inheritance property))
14379 (and (listp org-use-property-inheritance)
14380 (member property org-use-property-inheritance)))
14381 ;; Caching is not possible, check it directly
14382 (org-entry-get pom property 'inherit)
14383 ;; Get all properties, so that we can do complicated checks easily
14384 (cdr (assoc property (or org-cached-props
14385 (setq org-cached-props
14386 (org-entry-properties pom)))))))
14388 (defun org-global-tags-completion-table (&optional files)
14389 "Return the list of all tags in all agenda buffer/files.
14390 Optional FILES argument is a list of files which can be used
14391 instead of the agenda files."
14392 (save-excursion
14393 (org-uniquify
14394 (delq nil
14395 (apply 'append
14396 (mapcar
14397 (lambda (file)
14398 (set-buffer (find-file-noselect file))
14399 (append (org-get-buffer-tags)
14400 (mapcar (lambda (x) (if (stringp (car-safe x))
14401 (list (car-safe x)) nil))
14402 org-tag-alist)))
14403 (if (and files (car files))
14404 files
14405 (org-agenda-files))))))))
14407 (defun org-make-tags-matcher (match)
14408 "Create the TAGS/TODO matcher form for the selection string MATCH.
14410 The variable `todo-only' is scoped dynamically into this function.
14411 It will be set to t if the matcher restricts matching to TODO entries,
14412 otherwise will not be touched.
14414 Returns a cons of the selection string MATCH and the constructed
14415 lisp form implementing the matcher. The matcher is to be evaluated
14416 at an Org entry, with point on the headline, and returns t if the
14417 entry matches the selection string MATCH. The returned lisp form
14418 references two variables with information about the entry, which
14419 must be bound around the form's evaluation: todo, the TODO keyword
14420 at the entry (or nil of none); and tags-list, the list of all tags
14421 at the entry including inherited ones. Additionally, the category
14422 of the entry (if any) must be specified as the text property
14423 'org-category on the headline.
14425 See also `org-scan-tags'.
14427 (declare (special todo-only))
14428 (unless (boundp 'todo-only)
14429 (error "`org-make-tags-matcher' expects todo-only to be scoped in"))
14430 (unless match
14431 ;; Get a new match request, with completion against the global
14432 ;; tags table and the local tags in current buffer
14433 (let ((org-last-tags-completion-table
14434 (org-uniquify
14435 (delq nil (append (org-get-buffer-tags)
14436 (org-global-tags-completion-table))))))
14437 (setq match (org-completing-read-no-i
14438 "Match: " 'org-tags-completion-function nil nil nil
14439 'org-tags-history))))
14441 ;; Parse the string and create a lisp form
14442 (let ((match0 match)
14443 (re (org-re "^&?\\([-+:]\\)?\\({[^}]+}\\|LEVEL\\([<=>]\\{1,2\\}\\)\\([0-9]+\\)\\|\\(\\(?:[[:alnum:]_]+\\(?:\\\\-\\)*\\)+\\)\\([<>=]\\{1,2\\}\\)\\({[^}]+}\\|\"[^\"]*\"\\|-?[.0-9]+\\(?:[eE][-+]?[0-9]+\\)?\\)\\|[[:alnum:]_@#%]+\\)"))
14444 minus tag mm
14445 tagsmatch todomatch tagsmatcher todomatcher kwd matcher
14446 orterms term orlist re-p str-p level-p level-op time-p
14447 prop-p pn pv po gv rest (start 0) (ss 0))
14448 ;; Expand group tags
14449 (setq match (org-tags-expand match))
14451 ;; Check if there is a TODO part of this match, which would be the
14452 ;; part after a "/". TO make sure that this slash is not part of
14453 ;; a property value to be matched against, we also check that there
14454 ;; is no " after that slash.
14455 ;; First, find the last slash
14456 (while (string-match "/+" match ss)
14457 (setq start (match-beginning 0) ss (match-end 0)))
14458 (if (and (string-match "/+" match start)
14459 (not (save-match-data (string-match "\"" match start))))
14460 ;; match contains also a todo-matching request
14461 (progn
14462 (setq tagsmatch (substring match 0 (match-beginning 0))
14463 todomatch (substring match (match-end 0)))
14464 (if (string-match "^!" todomatch)
14465 (setq todo-only t todomatch (substring todomatch 1)))
14466 (if (string-match "^\\s-*$" todomatch)
14467 (setq todomatch nil)))
14468 ;; only matching tags
14469 (setq tagsmatch match todomatch nil))
14471 ;; Make the tags matcher
14472 (if (or (not tagsmatch) (not (string-match "\\S-" tagsmatch)))
14473 (setq tagsmatcher t)
14474 (setq orterms (org-split-string tagsmatch "|") orlist nil)
14475 (while (setq term (pop orterms))
14476 (while (and (equal (substring term -1) "\\") orterms)
14477 (setq term (concat term "|" (pop orterms)))) ; repair bad split
14478 (while (string-match re term)
14479 (setq rest (substring term (match-end 0))
14480 minus (and (match-end 1)
14481 (equal (match-string 1 term) "-"))
14482 tag (save-match-data (replace-regexp-in-string
14483 "\\\\-" "-"
14484 (match-string 2 term)))
14485 re-p (equal (string-to-char tag) ?{)
14486 level-p (match-end 4)
14487 prop-p (match-end 5)
14488 mm (cond
14489 (re-p `(org-match-any-p ,(substring tag 1 -1) tags-list))
14490 (level-p
14491 (setq level-op (org-op-to-function (match-string 3 term)))
14492 `(,level-op level ,(string-to-number
14493 (match-string 4 term))))
14494 (prop-p
14495 (setq pn (match-string 5 term)
14496 po (match-string 6 term)
14497 pv (match-string 7 term)
14498 re-p (equal (string-to-char pv) ?{)
14499 str-p (equal (string-to-char pv) ?\")
14500 time-p (save-match-data
14501 (string-match "^\"[[<].*[]>]\"$" pv))
14502 pv (if (or re-p str-p) (substring pv 1 -1) pv))
14503 (if time-p (setq pv (org-matcher-time pv)))
14504 (setq po (org-op-to-function po (if time-p 'time str-p)))
14505 (cond
14506 ((equal pn "CATEGORY")
14507 (setq gv '(get-text-property (point) 'org-category)))
14508 ((equal pn "TODO")
14509 (setq gv 'todo))
14511 (setq gv `(org-cached-entry-get nil ,pn))))
14512 (if re-p
14513 (if (eq po 'org<>)
14514 `(not (string-match ,pv (or ,gv "")))
14515 `(string-match ,pv (or ,gv "")))
14516 (if str-p
14517 `(,po (or ,gv "") ,pv)
14518 `(,po (string-to-number (or ,gv ""))
14519 ,(string-to-number pv) ))))
14520 (t `(member ,tag tags-list)))
14521 mm (if minus (list 'not mm) mm)
14522 term rest)
14523 (push mm tagsmatcher))
14524 (push (if (> (length tagsmatcher) 1)
14525 (cons 'and tagsmatcher)
14526 (car tagsmatcher))
14527 orlist)
14528 (setq tagsmatcher nil))
14529 (setq tagsmatcher (if (> (length orlist) 1) (cons 'or orlist) (car orlist)))
14530 (setq tagsmatcher
14531 (list 'progn '(setq org-cached-props nil) tagsmatcher)))
14532 ;; Make the todo matcher
14533 (if (or (not todomatch) (not (string-match "\\S-" todomatch)))
14534 (setq todomatcher t)
14535 (setq orterms (org-split-string todomatch "|") orlist nil)
14536 (while (setq term (pop orterms))
14537 (while (string-match re term)
14538 (setq minus (and (match-end 1)
14539 (equal (match-string 1 term) "-"))
14540 kwd (match-string 2 term)
14541 re-p (equal (string-to-char kwd) ?{)
14542 term (substring term (match-end 0))
14543 mm (if re-p
14544 `(string-match ,(substring kwd 1 -1) todo)
14545 (list 'equal 'todo kwd))
14546 mm (if minus (list 'not mm) mm))
14547 (push mm todomatcher))
14548 (push (if (> (length todomatcher) 1)
14549 (cons 'and todomatcher)
14550 (car todomatcher))
14551 orlist)
14552 (setq todomatcher nil))
14553 (setq todomatcher (if (> (length orlist) 1)
14554 (cons 'or orlist) (car orlist))))
14556 ;; Return the string and lisp forms of the matcher
14557 (setq matcher (if todomatcher
14558 (list 'and tagsmatcher todomatcher)
14559 tagsmatcher))
14560 (when todo-only
14561 (setq matcher (list 'and '(member todo org-not-done-keywords)
14562 matcher)))
14563 (cons match0 matcher)))
14565 (defun org-tags-expand (match &optional single-as-list downcased)
14566 "Expand group tags in MATCH.
14568 This replaces every group tag in MATCH with a regexp tag search.
14569 For example, a group tag \"Work\" defined as { Work : Lab Conf }
14570 will be replaced like this:
14572 Work => {\\(?:Work\\|Lab\\|Conf\\)}
14573 +Work => +{\\(?:Work\\|Lab\\|Conf\\)}
14574 -Work => -{\\(?:Work\\|Lab\\|Conf\\)}
14576 Replacing by a regexp preserves the structure of the match.
14577 E.g., this expansion
14579 Work|Home => {\\(?:Work\\|Lab\\|Conf\\}|Home
14581 will match anything tagged with \"Lab\" and \"Home\", or tagged
14582 with \"Conf\" and \"Home\" or tagged with \"Work\" and \"home\".
14584 When the optional argument SINGLE-AS-LIST is non-nil, MATCH is
14585 assumed to be a single group tag, and the function will return
14586 the list of tags in this group.
14588 When DOWNCASE is non-nil, expand downcased TAGS."
14589 (if org-group-tags
14590 (let* ((case-fold-search t)
14591 (stable org-mode-syntax-table)
14592 (tal (or org-tag-groups-alist-for-agenda
14593 org-tag-groups-alist))
14594 (tal (if downcased
14595 (mapcar (lambda(tg) (mapcar 'downcase tg)) tal) tal))
14596 (tml (mapcar 'car tal))
14597 (rtnmatch match) rpl)
14598 ;; @ and _ are allowed as word-components in tags
14599 (modify-syntax-entry ?@ "w" stable)
14600 (modify-syntax-entry ?_ "w" stable)
14601 (while (and tml
14602 (with-syntax-table stable
14603 (string-match
14604 (concat "\\(?1:[+-]?\\)\\(?2:\\<"
14605 (regexp-opt tml) "\\>\\)") rtnmatch)))
14606 (let* ((dir (match-string 1 rtnmatch))
14607 (tag (match-string 2 rtnmatch))
14608 (tag (if downcased (downcase tag) tag)))
14609 (setq tml (delete tag tml))
14610 (when (not (get-text-property 0 'grouptag (match-string 2 rtnmatch)))
14611 (setq rpl (append (org-uniquify rpl) (assoc tag tal)))
14612 (setq rpl (concat dir "{\\<" (regexp-opt rpl) "\\>}"))
14613 (if (stringp rpl) (org-add-props rpl '(grouptag t)))
14614 (setq rtnmatch (replace-match rpl t t rtnmatch)))))
14615 (if single-as-list
14616 (or (reverse rpl) (list rtnmatch))
14617 rtnmatch))
14618 (if single-as-list (list (if downcased (downcase match) match))
14619 match)))
14621 (defun org-op-to-function (op &optional stringp)
14622 "Turn an operator into the appropriate function."
14623 (setq op
14624 (cond
14625 ((equal op "<" ) '(< string< org-time<))
14626 ((equal op ">" ) '(> org-string> org-time>))
14627 ((member op '("<=" "=<")) '(<= org-string<= org-time<=))
14628 ((member op '(">=" "=>")) '(>= org-string>= org-time>=))
14629 ((member op '("=" "==")) '(= string= org-time=))
14630 ((member op '("<>" "!=")) '(org<> org-string<> org-time<>))))
14631 (nth (if (eq stringp 'time) 2 (if stringp 1 0)) op))
14633 (defun org<> (a b) (not (= a b)))
14634 (defun org-string<= (a b) (or (string= a b) (string< a b)))
14635 (defun org-string>= (a b) (not (string< a b)))
14636 (defun org-string> (a b) (and (not (string= a b)) (not (string< a b))))
14637 (defun org-string<> (a b) (not (string= a b)))
14638 (defun org-time= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (= a b)))
14639 (defun org-time< (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (< 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) (org<> a b)))
14644 (defun org-2ft (s)
14645 "Convert S to a floating point time.
14646 If S is already a number, just return it. If it is a string, parse
14647 it as a time string and apply `float-time' to it. If S is nil, just return 0."
14648 (cond
14649 ((numberp s) s)
14650 ((stringp s)
14651 (condition-case nil
14652 (float-time (apply 'encode-time (org-parse-time-string s)))
14653 (error 0.)))
14654 (t 0.)))
14656 (defun org-time-today ()
14657 "Time in seconds today at 0:00.
14658 Returns the float number of seconds since the beginning of the
14659 epoch to the beginning of today (00:00)."
14660 (float-time (apply 'encode-time
14661 (append '(0 0 0) (nthcdr 3 (decode-time))))))
14663 (defun org-matcher-time (s)
14664 "Interpret a time comparison value."
14665 (save-match-data
14666 (cond
14667 ((string= s "<now>") (float-time))
14668 ((string= s "<today>") (org-time-today))
14669 ((string= s "<tomorrow>") (+ 86400.0 (org-time-today)))
14670 ((string= s "<yesterday>") (- (org-time-today) 86400.0))
14671 ((string-match "^<\\([-+][0-9]+\\)\\([hdwmy]\\)>$" s)
14672 (+ (org-time-today)
14673 (* (string-to-number (match-string 1 s))
14674 (cdr (assoc (match-string 2 s)
14675 '(("d" . 86400.0) ("w" . 604800.0)
14676 ("m" . 2678400.0) ("y" . 31557600.0)))))))
14677 (t (org-2ft s)))))
14679 (defun org-match-any-p (re list)
14680 "Does re match any element of list?"
14681 (setq list (mapcar (lambda (x) (string-match re x)) list))
14682 (delq nil list))
14684 (defvar org-add-colon-after-tag-completion nil) ;; dynamically scoped param
14685 (defvar org-tags-overlay (make-overlay 1 1))
14686 (org-detach-overlay org-tags-overlay)
14688 (defun org-get-local-tags-at (&optional pos)
14689 "Get a list of tags defined in the current headline."
14690 (org-get-tags-at pos 'local))
14692 (defun org-get-local-tags ()
14693 "Get a list of tags defined in the current headline."
14694 (org-get-tags-at nil 'local))
14696 (defun org-get-tags-at (&optional pos local)
14697 "Get a list of all headline tags applicable at POS.
14698 POS defaults to point. If tags are inherited, the list contains
14699 the targets in the same sequence as the headlines appear, i.e.
14700 the tags of the current headline come last.
14701 When LOCAL is non-nil, only return tags from the current headline,
14702 ignore inherited ones."
14703 (interactive)
14704 (if (and org-trust-scanner-tags
14705 (or (not pos) (equal pos (point)))
14706 (not local))
14707 org-scanner-tags
14708 (let (tags ltags lastpos parent)
14709 (save-excursion
14710 (save-restriction
14711 (widen)
14712 (goto-char (or pos (point)))
14713 (save-match-data
14714 (catch 'done
14715 (condition-case nil
14716 (progn
14717 (org-back-to-heading t)
14718 (while (not (equal lastpos (point)))
14719 (setq lastpos (point))
14720 (when (looking-at
14721 (org-re "[^\r\n]+?:\\([[:alnum:]_@#%:]+\\):[ \t]*$"))
14722 (setq ltags (org-split-string
14723 (org-match-string-no-properties 1) ":"))
14724 (when parent
14725 (setq ltags (mapcar 'org-add-prop-inherited ltags)))
14726 (setq tags (append
14727 (if parent
14728 (org-remove-uninherited-tags ltags)
14729 ltags)
14730 tags)))
14731 (or org-use-tag-inheritance (throw 'done t))
14732 (if local (throw 'done t))
14733 (or (org-up-heading-safe) (error nil))
14734 (setq parent t)))
14735 (error nil)))))
14736 (if local
14737 tags
14738 (reverse (delete-dups
14739 (reverse (append
14740 (org-remove-uninherited-tags
14741 org-file-tags) tags)))))))))
14743 (defun org-add-prop-inherited (s)
14744 (add-text-properties 0 (length s) '(inherited t) s)
14747 (defun org-toggle-tag (tag &optional onoff)
14748 "Toggle the tag TAG for the current line.
14749 If ONOFF is `on' or `off', don't toggle but set to this state."
14750 (let (res current)
14751 (save-excursion
14752 (org-back-to-heading t)
14753 (if (re-search-forward (org-re "[ \t]:\\([[:alnum:]_@#%:]+\\):[ \t]*$")
14754 (point-at-eol) t)
14755 (progn
14756 (setq current (match-string 1))
14757 (replace-match ""))
14758 (setq current ""))
14759 (setq current (nreverse (org-split-string current ":")))
14760 (cond
14761 ((eq onoff 'on)
14762 (setq res t)
14763 (or (member tag current) (push tag current)))
14764 ((eq onoff 'off)
14765 (or (not (member tag current)) (setq current (delete tag current))))
14766 (t (if (member tag current)
14767 (setq current (delete tag current))
14768 (setq res t)
14769 (push tag current))))
14770 (end-of-line 1)
14771 (if current
14772 (progn
14773 (insert " :" (mapconcat 'identity (nreverse current) ":") ":")
14774 (org-set-tags nil t))
14775 (delete-horizontal-space))
14776 (run-hooks 'org-after-tags-change-hook))
14777 res))
14779 (defun org-align-tags-here (to-col)
14780 ;; Assumes that this is a headline
14781 "Align tags on the current headline to TO-COL."
14782 (let ((pos (point)) (col (current-column)) ncol tags-l p)
14783 (beginning-of-line 1)
14784 (if (and (looking-at (org-re ".*?\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
14785 (< pos (match-beginning 2)))
14786 (progn
14787 (setq tags-l (- (match-end 2) (match-beginning 2)))
14788 (goto-char (match-beginning 1))
14789 (insert " ")
14790 (delete-region (point) (1+ (match-beginning 2)))
14791 (setq ncol (max (current-column)
14792 (1+ col)
14793 (if (> to-col 0)
14794 to-col
14795 (- (abs to-col) tags-l))))
14796 (setq p (point))
14797 (insert (make-string (- ncol (current-column)) ?\ ))
14798 (setq ncol (current-column))
14799 (when indent-tabs-mode (tabify p (point-at-eol)))
14800 (org-move-to-column (min ncol col)))
14801 (goto-char pos))))
14803 (defun org-set-tags-command (&optional arg just-align)
14804 "Call the set-tags command for the current entry."
14805 (interactive "P")
14806 (if (or (org-at-heading-p) (and arg (org-before-first-heading-p)))
14807 (org-set-tags arg just-align)
14808 (save-excursion
14809 (unless (and (org-region-active-p)
14810 org-loop-over-headlines-in-active-region)
14811 (org-back-to-heading t))
14812 (org-set-tags arg just-align))))
14814 (defun org-set-tags-to (data)
14815 "Set the tags of the current entry to DATA, replacing the current tags.
14816 DATA may be a tags string like :aa:bb:cc:, or a list of tags.
14817 If DATA is nil or the empty string, any tags will be removed."
14818 (interactive "sTags: ")
14819 (setq data
14820 (cond
14821 ((eq data nil) "")
14822 ((equal data "") "")
14823 ((stringp data)
14824 (concat ":" (mapconcat 'identity (org-split-string data ":+") ":")
14825 ":"))
14826 ((listp data)
14827 (concat ":" (mapconcat 'identity data ":") ":"))))
14828 (when data
14829 (save-excursion
14830 (org-back-to-heading t)
14831 (when (looking-at org-complex-heading-regexp)
14832 (if (match-end 5)
14833 (progn
14834 (goto-char (match-beginning 5))
14835 (insert data)
14836 (delete-region (point) (point-at-eol))
14837 (org-set-tags nil 'align))
14838 (goto-char (point-at-eol))
14839 (insert " " data)
14840 (org-set-tags nil 'align)))
14841 (beginning-of-line 1)
14842 (if (looking-at ".*?\\([ \t]+\\)$")
14843 (delete-region (match-beginning 1) (match-end 1))))))
14845 (defun org-align-all-tags ()
14846 "Align the tags i all headings."
14847 (interactive)
14848 (save-excursion
14849 (or (ignore-errors (org-back-to-heading t))
14850 (outline-next-heading))
14851 (if (org-at-heading-p)
14852 (org-set-tags t)
14853 (message "No headings"))))
14855 (defvar org-indent-indentation-per-level)
14856 (defun org-set-tags (&optional arg just-align)
14857 "Set the tags for the current headline.
14858 With prefix ARG, realign all tags in headings in the current buffer.
14859 When JUST-ALIGN is non-nil, only align tags."
14860 (interactive "P")
14861 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
14862 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
14863 'region-start-level 'region))
14864 org-loop-over-headlines-in-active-region)
14865 (org-map-entries
14866 ;; We don't use ARG and JUST-ALIGN here because these args
14867 ;; are not useful when looping over headlines.
14868 `(org-set-tags)
14869 org-loop-over-headlines-in-active-region
14870 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
14871 (let* ((re org-outline-regexp-bol)
14872 (current (unless arg (org-get-tags-string)))
14873 (col (current-column))
14874 (org-setting-tags t)
14875 table current-tags inherited-tags ; computed below when needed
14876 tags p0 c0 c1 rpl di tc level)
14877 (if arg
14878 (save-excursion
14879 (goto-char (point-min))
14880 (let ((buffer-invisibility-spec (org-inhibit-invisibility)))
14881 (while (re-search-forward re nil t)
14882 (org-set-tags nil t)
14883 (end-of-line 1)))
14884 (message "All tags realigned to column %d" org-tags-column))
14885 (if just-align
14886 (setq tags current)
14887 ;; Get a new set of tags from the user
14888 (save-excursion
14889 (setq table (append org-tag-persistent-alist
14890 (or org-tag-alist (org-get-buffer-tags))
14891 (and
14892 org-complete-tags-always-offer-all-agenda-tags
14893 (org-global-tags-completion-table
14894 (org-agenda-files))))
14895 org-last-tags-completion-table table
14896 current-tags (org-split-string current ":")
14897 inherited-tags (nreverse
14898 (nthcdr (length current-tags)
14899 (nreverse (org-get-tags-at))))
14900 tags
14901 (if (or (eq t org-use-fast-tag-selection)
14902 (and org-use-fast-tag-selection
14903 (delq nil (mapcar 'cdr table))))
14904 (org-fast-tag-selection
14905 current-tags inherited-tags table
14906 (if org-fast-tag-selection-include-todo
14907 org-todo-key-alist))
14908 (let ((org-add-colon-after-tag-completion (< 1 (length table))))
14909 (org-trim
14910 (org-icompleting-read "Tags: "
14911 'org-tags-completion-function
14912 nil nil current 'org-tags-history))))))
14913 (while (string-match "[-+&]+" tags)
14914 ;; No boolean logic, just a list
14915 (setq tags (replace-match ":" t t tags))))
14917 (setq tags (replace-regexp-in-string "[,]" ":" tags))
14919 (if org-tags-sort-function
14920 (setq tags (mapconcat 'identity
14921 (sort (org-split-string
14922 tags (org-re "[^[:alnum:]_@#%]+"))
14923 org-tags-sort-function) ":")))
14925 (if (string-match "\\`[\t ]*\\'" tags)
14926 (setq tags "")
14927 (unless (string-match ":$" tags) (setq tags (concat tags ":")))
14928 (unless (string-match "^:" tags) (setq tags (concat ":" tags))))
14930 ;; Insert new tags at the correct column
14931 (beginning-of-line 1)
14932 (setq level (or (and (looking-at org-outline-regexp)
14933 (- (match-end 0) (point) 1))
14935 (cond
14936 ((and (equal current "") (equal tags "")))
14937 ((re-search-forward
14938 (concat "\\([ \t]*" (regexp-quote current) "\\)[ \t]*$")
14939 (point-at-eol) t)
14940 (if (equal tags "")
14941 (setq rpl "")
14942 (goto-char (match-beginning 0))
14943 (setq c0 (current-column)
14944 ;; compute offset for the case of org-indent-mode active
14945 di (if (org-bound-and-true-p org-indent-mode)
14946 (* (1- org-indent-indentation-per-level) (1- level))
14948 p0 (if (equal (char-before) ?*) (1+ (point)) (point))
14949 tc (+ org-tags-column (if (> org-tags-column 0) (- di) di))
14950 c1 (max (1+ c0) (if (> tc 0) tc (- (- tc) (string-width tags))))
14951 rpl (concat (make-string (max 0 (- c1 c0)) ?\ ) tags)))
14952 (replace-match rpl t t)
14953 (and (not (featurep 'xemacs)) c0 indent-tabs-mode (tabify p0 (point)))
14954 tags)
14955 (t (error "Tags alignment failed")))
14956 (org-move-to-column col)
14957 (unless just-align
14958 (run-hooks 'org-after-tags-change-hook))))))
14960 (defun org-change-tag-in-region (beg end tag off)
14961 "Add or remove TAG for each entry in the region.
14962 This works in the agenda, and also in an org-mode buffer."
14963 (interactive
14964 (list (region-beginning) (region-end)
14965 (let ((org-last-tags-completion-table
14966 (if (derived-mode-p 'org-mode)
14967 (org-uniquify
14968 (delq nil (append (org-get-buffer-tags)
14969 (org-global-tags-completion-table))))
14970 (org-global-tags-completion-table))))
14971 (org-icompleting-read
14972 "Tag: " 'org-tags-completion-function nil nil nil
14973 'org-tags-history))
14974 (progn
14975 (message "[s]et or [r]emove? ")
14976 (equal (read-char-exclusive) ?r))))
14977 (if (fboundp 'deactivate-mark) (deactivate-mark))
14978 (let ((agendap (equal major-mode 'org-agenda-mode))
14979 l1 l2 m buf pos newhead (cnt 0))
14980 (goto-char end)
14981 (setq l2 (1- (org-current-line)))
14982 (goto-char beg)
14983 (setq l1 (org-current-line))
14984 (loop for l from l1 to l2 do
14985 (org-goto-line l)
14986 (setq m (get-text-property (point) 'org-hd-marker))
14987 (when (or (and (derived-mode-p 'org-mode) (org-at-heading-p))
14988 (and agendap m))
14989 (setq buf (if agendap (marker-buffer m) (current-buffer))
14990 pos (if agendap m (point)))
14991 (with-current-buffer buf
14992 (save-excursion
14993 (save-restriction
14994 (goto-char pos)
14995 (setq cnt (1+ cnt))
14996 (org-toggle-tag tag (if off 'off 'on))
14997 (setq newhead (org-get-heading)))))
14998 (and agendap (org-agenda-change-all-lines newhead m))))
14999 (message "Tag :%s: %s in %d headings" tag (if off "removed" "set") cnt)))
15001 (defun org-tags-completion-function (string predicate &optional flag)
15002 (let (s1 s2 rtn (ctable org-last-tags-completion-table)
15003 (confirm (lambda (x) (stringp (car x)))))
15004 (if (string-match "^\\(.*[-+:&,|]\\)\\([^-+:&,|]*\\)$" string)
15005 (setq s1 (match-string 1 string)
15006 s2 (match-string 2 string))
15007 (setq s1 "" s2 string))
15008 (cond
15009 ((eq flag nil)
15010 ;; try completion
15011 (setq rtn (try-completion s2 ctable confirm))
15012 (if (stringp rtn)
15013 (setq rtn
15014 (concat s1 s2 (substring rtn (length s2))
15015 (if (and org-add-colon-after-tag-completion
15016 (assoc rtn ctable))
15017 ":" ""))))
15018 rtn)
15019 ((eq flag t)
15020 ;; all-completions
15021 (all-completions s2 ctable confirm))
15022 ((eq flag 'lambda)
15023 ;; exact match?
15024 (assoc s2 ctable)))))
15026 (defun org-fast-tag-insert (kwd tags face &optional end)
15027 "Insert KDW, and the TAGS, the latter with face FACE.
15028 Also insert END."
15029 (insert (format "%-12s" (concat kwd ":"))
15030 (org-add-props (mapconcat 'identity tags " ") nil 'face face)
15031 (or end "")))
15033 (defun org-fast-tag-show-exit (flag)
15034 (save-excursion
15035 (org-goto-line 3)
15036 (if (re-search-forward "[ \t]+Next change exits" (point-at-eol) t)
15037 (replace-match ""))
15038 (when flag
15039 (end-of-line 1)
15040 (org-move-to-column (- (window-width) 19) t)
15041 (insert (org-add-props " Next change exits" nil 'face 'org-warning)))))
15043 (defun org-set-current-tags-overlay (current prefix)
15044 "Add an overlay to CURRENT tag with PREFIX."
15045 (let ((s (concat ":" (mapconcat 'identity current ":") ":")))
15046 (if (featurep 'xemacs)
15047 (org-overlay-display org-tags-overlay (concat prefix s)
15048 'secondary-selection)
15049 (put-text-property 0 (length s) 'face '(secondary-selection org-tag) s)
15050 (org-overlay-display org-tags-overlay (concat prefix s)))))
15052 (defvar org-last-tag-selection-key nil)
15053 (defun org-fast-tag-selection (current inherited table &optional todo-table)
15054 "Fast tag selection with single keys.
15055 CURRENT is the current list of tags in the headline, INHERITED is the
15056 list of inherited tags, and TABLE is an alist of tags and corresponding keys,
15057 possibly with grouping information. TODO-TABLE is a similar table with
15058 TODO keywords, should these have keys assigned to them.
15059 If the keys are nil, a-z are automatically assigned.
15060 Returns the new tags string, or nil to not change the current settings."
15061 (let* ((fulltable (append table todo-table))
15062 (maxlen (apply 'max (mapcar
15063 (lambda (x)
15064 (if (stringp (car x)) (string-width (car x)) 0))
15065 fulltable)))
15066 (buf (current-buffer))
15067 (expert (eq org-fast-tag-selection-single-key 'expert))
15068 (buffer-tags nil)
15069 (fwidth (+ maxlen 3 1 3))
15070 (ncol (/ (- (window-width) 4) fwidth))
15071 (i-face 'org-done)
15072 (c-face 'org-todo)
15073 tg cnt e c char c1 c2 ntable tbl rtn
15074 ov-start ov-end ov-prefix
15075 (exit-after-next org-fast-tag-selection-single-key)
15076 (done-keywords org-done-keywords)
15077 groups ingroup)
15078 (save-excursion
15079 (beginning-of-line 1)
15080 (if (looking-at
15081 (org-re ".*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
15082 (setq ov-start (match-beginning 1)
15083 ov-end (match-end 1)
15084 ov-prefix "")
15085 (setq ov-start (1- (point-at-eol))
15086 ov-end (1+ ov-start))
15087 (skip-chars-forward "^\n\r")
15088 (setq ov-prefix
15089 (concat
15090 (buffer-substring (1- (point)) (point))
15091 (if (> (current-column) org-tags-column)
15093 (make-string (- org-tags-column (current-column)) ?\ ))))))
15094 (move-overlay org-tags-overlay ov-start ov-end)
15095 (save-window-excursion
15096 (if expert
15097 (set-buffer (get-buffer-create " *Org tags*"))
15098 (delete-other-windows)
15099 (set-window-buffer (split-window-vertically) (get-buffer-create " *Org tags*"))
15100 (org-switch-to-buffer-other-window " *Org tags*"))
15101 (erase-buffer)
15102 (org-set-local 'org-done-keywords done-keywords)
15103 (org-fast-tag-insert "Inherited" inherited i-face "\n")
15104 (org-fast-tag-insert "Current" current c-face "\n\n")
15105 (org-fast-tag-show-exit exit-after-next)
15106 (org-set-current-tags-overlay current ov-prefix)
15107 (setq tbl fulltable char ?a cnt 0)
15108 (while (setq e (pop tbl))
15109 (cond
15110 ((equal (car e) :startgroup)
15111 (push '() groups) (setq ingroup t)
15112 (when (not (= cnt 0))
15113 (setq cnt 0)
15114 (insert "\n"))
15115 (insert (if (cdr e) (format "%s: " (cdr e)) "") "{ "))
15116 ((equal (car e) :endgroup)
15117 (setq ingroup nil cnt 0)
15118 (insert "}" (if (cdr e) (format " (%s) " (cdr e)) "") "\n"))
15119 ((equal e '(:newline))
15120 (when (not (= cnt 0))
15121 (setq cnt 0)
15122 (insert "\n")
15123 (setq e (car tbl))
15124 (while (equal (car tbl) '(:newline))
15125 (insert "\n")
15126 (setq tbl (cdr tbl)))))
15127 ((equal e '(:grouptags)) nil)
15129 (setq tg (copy-sequence (car e)) c2 nil)
15130 (if (cdr e)
15131 (setq c (cdr e))
15132 ;; automatically assign a character.
15133 (setq c1 (string-to-char
15134 (downcase (substring
15135 tg (if (= (string-to-char tg) ?@) 1 0)))))
15136 (if (or (rassoc c1 ntable) (rassoc c1 table))
15137 (while (or (rassoc char ntable) (rassoc char table))
15138 (setq char (1+ char)))
15139 (setq c2 c1))
15140 (setq c (or c2 char)))
15141 (if ingroup (push tg (car groups)))
15142 (setq tg (org-add-props tg nil 'face
15143 (cond
15144 ((not (assoc tg table))
15145 (org-get-todo-face tg))
15146 ((member tg current) c-face)
15147 ((member tg inherited) i-face))))
15148 (if (equal (caar tbl) :grouptags)
15149 (org-add-props tg nil 'face 'org-tag-group))
15150 (if (and (= cnt 0) (not ingroup)) (insert " "))
15151 (insert "[" c "] " tg (make-string
15152 (- fwidth 4 (length tg)) ?\ ))
15153 (push (cons tg c) ntable)
15154 (when (= (setq cnt (1+ cnt)) ncol)
15155 (insert "\n")
15156 (if ingroup (insert " "))
15157 (setq cnt 0)))))
15158 (setq ntable (nreverse ntable))
15159 (insert "\n")
15160 (goto-char (point-min))
15161 (if (not expert) (org-fit-window-to-buffer))
15162 (setq rtn
15163 (catch 'exit
15164 (while t
15165 (message "[a-z..]:Toggle [SPC]:clear [RET]:accept [TAB]:free [!] %sgroups%s"
15166 (if (not groups) "no " "")
15167 (if expert " [C-c]:window" (if exit-after-next " [C-c]:single" " [C-c]:multi")))
15168 (setq c (let ((inhibit-quit t)) (read-char-exclusive)))
15169 (setq org-last-tag-selection-key c)
15170 (cond
15171 ((= c ?\r) (throw 'exit t))
15172 ((= c ?!)
15173 (setq groups (not groups))
15174 (goto-char (point-min))
15175 (while (re-search-forward "[{}]" nil t) (replace-match " ")))
15176 ((= c ?\C-c)
15177 (if (not expert)
15178 (org-fast-tag-show-exit
15179 (setq exit-after-next (not exit-after-next)))
15180 (setq expert nil)
15181 (delete-other-windows)
15182 (set-window-buffer (split-window-vertically) " *Org tags*")
15183 (org-switch-to-buffer-other-window " *Org tags*")
15184 (org-fit-window-to-buffer)))
15185 ((or (= c ?\C-g)
15186 (and (= c ?q) (not (rassoc c ntable))))
15187 (org-detach-overlay org-tags-overlay)
15188 (setq quit-flag t))
15189 ((= c ?\ )
15190 (setq current nil)
15191 (if exit-after-next (setq exit-after-next 'now)))
15192 ((= c ?\t)
15193 (condition-case nil
15194 (setq tg (org-icompleting-read
15195 "Tag: "
15196 (or buffer-tags
15197 (with-current-buffer buf
15198 (org-get-buffer-tags)))))
15199 (quit (setq tg "")))
15200 (when (string-match "\\S-" tg)
15201 (add-to-list 'buffer-tags (list tg))
15202 (if (member tg current)
15203 (setq current (delete tg current))
15204 (push tg current)))
15205 (if exit-after-next (setq exit-after-next 'now)))
15206 ((setq e (rassoc c todo-table) tg (car e))
15207 (with-current-buffer buf
15208 (save-excursion (org-todo tg)))
15209 (if exit-after-next (setq exit-after-next 'now)))
15210 ((setq e (rassoc c ntable) tg (car e))
15211 (if (member tg current)
15212 (setq current (delete tg current))
15213 (loop for g in groups do
15214 (if (member tg g)
15215 (mapc (lambda (x)
15216 (setq current (delete x current)))
15217 g)))
15218 (push tg current))
15219 (if exit-after-next (setq exit-after-next 'now))))
15221 ;; Create a sorted list
15222 (setq current
15223 (sort current
15224 (lambda (a b)
15225 (assoc b (cdr (memq (assoc a ntable) ntable))))))
15226 (if (eq exit-after-next 'now) (throw 'exit t))
15227 (goto-char (point-min))
15228 (beginning-of-line 2)
15229 (delete-region (point) (point-at-eol))
15230 (org-fast-tag-insert "Current" current c-face)
15231 (org-set-current-tags-overlay current ov-prefix)
15232 (while (re-search-forward
15233 (org-re "\\[.\\] \\([[:alnum:]_@#%]+\\)") nil t)
15234 (setq tg (match-string 1))
15235 (add-text-properties
15236 (match-beginning 1) (match-end 1)
15237 (list 'face
15238 (cond
15239 ((member tg current) c-face)
15240 ((member tg inherited) i-face)
15241 (t (get-text-property (match-beginning 1) 'face))))))
15242 (goto-char (point-min)))))
15243 (org-detach-overlay org-tags-overlay)
15244 (if rtn
15245 (mapconcat 'identity current ":")
15246 nil))))
15248 (defun org-get-tags-string ()
15249 "Get the TAGS string in the current headline."
15250 (unless (org-at-heading-p t)
15251 (user-error "Not on a heading"))
15252 (save-excursion
15253 (beginning-of-line 1)
15254 (if (looking-at (org-re ".*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
15255 (org-match-string-no-properties 1)
15256 "")))
15258 (defun org-get-tags ()
15259 "Get the list of tags specified in the current headline."
15260 (org-split-string (org-get-tags-string) ":"))
15262 (defun org-get-buffer-tags ()
15263 "Get a table of all tags used in the buffer, for completion."
15264 (org-with-wide-buffer
15265 (goto-char (point-min))
15266 (let ((tag-re (concat org-outline-regexp-bol
15267 "\\(?:.*?[ \t]\\)?"
15268 (org-re ":\\([[:alnum:]_@#%:]+\\):[ \t]*$")))
15269 tags)
15270 (while (re-search-forward tag-re nil t)
15271 (dolist (tag (org-split-string (org-match-string-no-properties 1) ":"))
15272 (push tag tags)))
15273 (mapcar #'list (append org-file-tags (org-uniquify tags))))))
15275 ;;;; The mapping API
15277 (defun org-map-entries (func &optional match scope &rest skip)
15278 "Call FUNC at each headline selected by MATCH in SCOPE.
15280 FUNC is a function or a lisp form. The function will be called without
15281 arguments, with the cursor positioned at the beginning of the headline.
15282 The return values of all calls to the function will be collected and
15283 returned as a list.
15285 The call to FUNC will be wrapped into a save-excursion form, so FUNC
15286 does not need to preserve point. After evaluation, the cursor will be
15287 moved to the end of the line (presumably of the headline of the
15288 processed entry) and search continues from there. Under some
15289 circumstances, this may not produce the wanted results. For example,
15290 if you have removed (e.g. archived) the current (sub)tree it could
15291 mean that the next entry will be skipped entirely. In such cases, you
15292 can specify the position from where search should continue by making
15293 FUNC set the variable `org-map-continue-from' to the desired buffer
15294 position.
15296 MATCH is a tags/property/todo match as it is used in the agenda tags view.
15297 Only headlines that are matched by this query will be considered during
15298 the iteration. When MATCH is nil or t, all headlines will be
15299 visited by the iteration.
15301 SCOPE determines the scope of this command. It can be any of:
15303 nil The current buffer, respecting the restriction if any
15304 tree The subtree started with the entry at point
15305 region The entries within the active region, if any
15306 region-start-level
15307 The entries within the active region, but only those at
15308 the same level than the first one.
15309 file The current buffer, without restriction
15310 file-with-archives
15311 The current buffer, and any archives associated with it
15312 agenda All agenda files
15313 agenda-with-archives
15314 All agenda files with any archive files associated with them
15315 \(file1 file2 ...)
15316 If this is a list, all files in the list will be scanned
15318 The remaining args are treated as settings for the skipping facilities of
15319 the scanner. The following items can be given here:
15321 archive skip trees with the archive tag
15322 comment skip trees with the COMMENT keyword
15323 function or Emacs Lisp form:
15324 will be used as value for `org-agenda-skip-function', so
15325 whenever the function returns a position, FUNC will not be
15326 called for that entry and search will continue from the
15327 position returned
15329 If your function needs to retrieve the tags including inherited tags
15330 at the *current* entry, you can use the value of the variable
15331 `org-scanner-tags' which will be much faster than getting the value
15332 with `org-get-tags-at'. If your function gets properties with
15333 `org-entry-properties' at the *current* entry, bind `org-trust-scanner-tags'
15334 to t around the call to `org-entry-properties' to get the same speedup.
15335 Note that if your function moves around to retrieve tags and properties at
15336 a *different* entry, you cannot use these techniques."
15337 (unless (and (or (eq scope 'region) (eq scope 'region-start-level))
15338 (not (org-region-active-p)))
15339 (let* ((org-agenda-archives-mode nil) ; just to make sure
15340 (org-agenda-skip-archived-trees (memq 'archive skip))
15341 (org-agenda-skip-comment-trees (memq 'comment skip))
15342 (org-agenda-skip-function
15343 (car (org-delete-all '(comment archive) skip)))
15344 (org-tags-match-list-sublevels t)
15345 (start-level (eq scope 'region-start-level))
15346 matcher file res
15347 org-todo-keywords-for-agenda
15348 org-done-keywords-for-agenda
15349 org-todo-keyword-alist-for-agenda
15350 org-tag-alist-for-agenda
15351 todo-only)
15353 (cond
15354 ((eq match t) (setq matcher t))
15355 ((eq match nil) (setq matcher t))
15356 (t (setq matcher (if match (cdr (org-make-tags-matcher match)) t))))
15358 (save-excursion
15359 (save-restriction
15360 (cond ((eq scope 'tree)
15361 (org-back-to-heading t)
15362 (org-narrow-to-subtree)
15363 (setq scope nil))
15364 ((and (or (eq scope 'region) (eq scope 'region-start-level))
15365 (org-region-active-p))
15366 ;; If needed, set start-level to a string like "2"
15367 (when start-level
15368 (save-excursion
15369 (goto-char (region-beginning))
15370 (unless (org-at-heading-p) (outline-next-heading))
15371 (setq start-level (org-current-level))))
15372 (narrow-to-region (region-beginning)
15373 (save-excursion
15374 (goto-char (region-end))
15375 (unless (and (bolp) (org-at-heading-p))
15376 (outline-next-heading))
15377 (point)))
15378 (setq scope nil)))
15380 (if (not scope)
15381 (progn
15382 (org-agenda-prepare-buffers
15383 (list (buffer-file-name (current-buffer))))
15384 (setq res (org-scan-tags func matcher todo-only start-level)))
15385 ;; Get the right scope
15386 (cond
15387 ((and scope (listp scope) (symbolp (car scope)))
15388 (setq scope (eval scope)))
15389 ((eq scope 'agenda)
15390 (setq scope (org-agenda-files t)))
15391 ((eq scope 'agenda-with-archives)
15392 (setq scope (org-agenda-files t))
15393 (setq scope (org-add-archive-files scope)))
15394 ((eq scope 'file)
15395 (setq scope (list (buffer-file-name))))
15396 ((eq scope 'file-with-archives)
15397 (setq scope (org-add-archive-files (list (buffer-file-name))))))
15398 (org-agenda-prepare-buffers scope)
15399 (while (setq file (pop scope))
15400 (with-current-buffer (org-find-base-buffer-visiting file)
15401 (save-excursion
15402 (save-restriction
15403 (widen)
15404 (goto-char (point-min))
15405 (setq res (append res (org-scan-tags func matcher todo-only))))))))))
15406 res)))
15408 ;;; Properties API
15410 (defconst org-special-properties
15411 '("ALLTAGS" "BLOCKED" "CLOCKSUM" "CLOCKSUM_T" "CLOSED" "DEADLINE" "FILE"
15412 "ITEM" "PRIORITY" "SCHEDULED" "TAGS" "TIMESTAMP" "TIMESTAMP_IA" "TODO")
15413 "The special properties valid in Org mode.
15414 These are properties that are not defined in the property drawer,
15415 but in some other way.")
15417 (defconst org-default-properties
15418 '("ARCHIVE" "CATEGORY" "SUMMARY" "DESCRIPTION" "CUSTOM_ID"
15419 "LOCATION" "LOGGING" "COLUMNS" "VISIBILITY"
15420 "TABLE_EXPORT_FORMAT" "TABLE_EXPORT_FILE"
15421 "EXPORT_OPTIONS" "EXPORT_TEXT" "EXPORT_FILE_NAME"
15422 "EXPORT_TITLE" "EXPORT_AUTHOR" "EXPORT_DATE" "UNNUMBERED"
15423 "ORDERED" "NOBLOCKING" "COOKIE_DATA" "LOG_INTO_DRAWER" "REPEAT_TO_STATE"
15424 "CLOCK_MODELINE_TOTAL" "STYLE" "HTML_CONTAINER_CLASS")
15425 "Some properties that are used by Org mode for various purposes.
15426 Being in this list makes sure that they are offered for completion.")
15428 (defun org--update-property-plist (key val props)
15429 "Associate KEY to VAL in alist PROPS.
15430 Modifications are made by side-effect. Return new alist."
15431 (let* ((appending (string= (substring key -1) "+"))
15432 (key (if appending (substring key 0 -1) key))
15433 (old (assoc-string key props t)))
15434 (if (not old) (cons (cons key val) props)
15435 (setcdr old (if appending (concat (cdr old) " " val) val))
15436 props)))
15438 (defun org-get-property-block (&optional beg force)
15439 "Return the (beg . end) range of the body of the property drawer.
15440 BEG is the beginning of the current subtree, or of the part
15441 before the first headline. If it is not given, it will be found.
15442 If the drawer does not exist, create it if FORCE is non-nil, or
15443 return nil."
15444 (org-with-wide-buffer
15445 (when beg (goto-char beg))
15446 (unless (org-before-first-heading-p)
15447 (let ((beg (cond (beg)
15448 ((or (not (featurep 'org-inlinetask))
15449 (org-inlinetask-in-task-p))
15450 (org-back-to-heading t))
15451 (t (org-with-limited-levels (org-back-to-heading t))))))
15452 (forward-line)
15453 (when (org-looking-at-p org-planning-line-re) (forward-line))
15454 (cond ((looking-at org-property-drawer-re)
15455 (forward-line)
15456 (cons (point) (progn (goto-char (match-end 0))
15457 (line-beginning-position))))
15458 (force
15459 (goto-char beg)
15460 (org-insert-property-drawer)
15461 (let ((pos (save-excursion (search-forward ":END:")
15462 (line-beginning-position))))
15463 (cons pos pos))))))))
15465 (defun org-at-property-p ()
15466 "Non-nil when point is inside a property drawer.
15467 See `org-property-re' for match data, if applicable."
15468 (save-excursion
15469 (beginning-of-line)
15470 (and (looking-at org-property-re)
15471 (let ((property-drawer (save-match-data (org-get-property-block))))
15472 (and property-drawer (< (point) (cdr property-drawer)))))))
15474 (defun org-property-action ()
15475 "Do an action on properties."
15476 (interactive)
15477 (unless (org-at-property-p) (user-error "Not at a property"))
15478 (message "Property Action: [s]et [d]elete [D]elete globally [c]ompute")
15479 (let ((c (read-char-exclusive)))
15480 (case c
15481 (?s (call-interactively #'org-set-property))
15482 (?d (call-interactively #'org-delete-property))
15483 (?D (call-interactively #'org-delete-property-globally))
15484 (?c (call-interactively #'org-compute-property-at-point))
15485 (otherwise (user-error "No such property action %c" c)))))
15487 (defun org-inc-effort ()
15488 "Increment the value of the effort property in the current entry."
15489 (interactive)
15490 (org-set-effort nil t))
15492 (defvar org-clock-effort) ; Defined in org-clock.el.
15493 (defvar org-clock-current-task) ; Defined in org-clock.el.
15494 (defun org-set-effort (&optional value increment)
15495 "Set the effort property of the current entry.
15496 With numerical prefix arg, use the nth allowed value, 0 stands for the
15497 10th allowed value.
15499 When INCREMENT is non-nil, set the property to the next allowed value."
15500 (interactive "P")
15501 (if (equal value 0) (setq value 10))
15502 (let* ((completion-ignore-case t)
15503 (prop org-effort-property)
15504 (cur (org-entry-get nil prop))
15505 (allowed (org-property-get-allowed-values nil prop 'table))
15506 (existing (mapcar 'list (org-property-values prop)))
15507 (heading (nth 4 (org-heading-components)))
15509 (val (cond
15510 ((stringp value) value)
15511 ((and allowed (integerp value))
15512 (or (car (nth (1- value) allowed))
15513 (car (org-last allowed))))
15514 ((and allowed increment)
15515 (or (caadr (member (list cur) allowed))
15516 (user-error "Allowed effort values are not set")))
15517 (allowed
15518 (message "Select 1-9,0, [RET%s]: %s"
15519 (if cur (concat "=" cur) "")
15520 (mapconcat 'car allowed " "))
15521 (setq rpl (read-char-exclusive))
15522 (if (equal rpl ?\r)
15524 (setq rpl (- rpl ?0))
15525 (if (equal rpl 0) (setq rpl 10))
15526 (if (and (> rpl 0) (<= rpl (length allowed)))
15527 (car (nth (1- rpl) allowed))
15528 (org-completing-read "Effort: " allowed nil))))
15530 (let (org-completion-use-ido org-completion-use-iswitchb)
15531 (org-completing-read
15532 (concat "Effort " (if (and cur (string-match "\\S-" cur))
15533 (concat "[" cur "]") "")
15534 ": ")
15535 existing nil nil "" nil cur))))))
15536 (unless (equal (org-entry-get nil prop) val)
15537 (org-entry-put nil prop val))
15538 (org-refresh-property
15539 '((effort . identity)
15540 (effort-minutes . org-duration-string-to-minutes))
15541 val)
15542 (when (string= heading org-clock-current-task)
15543 (setq org-clock-effort (get-text-property (point-at-bol) 'effort))
15544 (org-clock-update-mode-line))
15545 (message "%s is now %s" prop val)))
15547 (defun org-entry-properties (&optional pom which)
15548 "Get all properties of the current entry.
15550 When POM is a buffer position, get all properties from the entry
15551 there instead.
15553 This includes the TODO keyword, the tags, time strings for
15554 deadline, scheduled, and clocking, and any additional properties
15555 defined in the entry.
15557 If WHICH is nil or `all', get all properties. If WHICH is
15558 `special' or `standard', only get that subclass. If WHICH is
15559 a string, only get that property.
15561 Return value is an alist. Keys are properties, as upcased
15562 strings."
15563 (org-with-point-at pom
15564 (when (and (derived-mode-p 'org-mode)
15565 (ignore-errors (org-back-to-heading t)))
15566 (catch 'exit
15567 (let* ((beg (point))
15568 (specific (and (stringp which) (upcase which)))
15569 (which (cond ((not specific) which)
15570 ((member specific org-special-properties) 'special)
15571 (t 'standard)))
15572 props)
15573 ;; Get the special properties, like TODO and TAGS.
15574 (when (memq which '(nil all special))
15575 (when (or (not specific) (string= specific "CLOCKSUM"))
15576 (let ((clocksum (get-text-property (point) :org-clock-minutes)))
15577 (when clocksum
15578 (push (cons "CLOCKSUM"
15579 (org-columns-number-to-string
15580 (/ (float clocksum) 60.) 'add_times))
15581 props)))
15582 (when specific (throw 'exit props)))
15583 (when (or (not specific) (string= specific "CLOCKSUM_T"))
15584 (let ((clocksumt (get-text-property (point)
15585 :org-clock-minutes-today)))
15586 (when clocksumt
15587 (push (cons "CLOCKSUM_T"
15588 (org-columns-number-to-string
15589 (/ (float clocksumt) 60.) 'add_times))
15590 props)))
15591 (when specific (throw 'exit props)))
15592 (when (or (not specific) (string= specific "ITEM"))
15593 (when (looking-at org-complex-heading-regexp)
15594 (push (cons "ITEM"
15595 (concat
15596 (org-match-string-no-properties 1)
15597 (let ((title (org-match-string-no-properties 4)))
15598 (when (org-string-nw-p title)
15599 (concat " " (org-remove-tabs title))))))
15600 props))
15601 (when specific (throw 'exit props)))
15602 (when (or (not specific) (string= specific "TODO"))
15603 (when (and (looking-at org-todo-line-regexp) (match-end 2))
15604 (push (cons "TODO" (org-match-string-no-properties 2)) props))
15605 (when specific (throw 'exit props)))
15606 (when (or (not specific) (string= specific "PRIORITY"))
15607 (when (looking-at org-priority-regexp)
15608 (push (cons "PRIORITY" (org-match-string-no-properties 2)) props))
15609 (when specific (throw 'exit props)))
15610 (when (or (not specific) (string= specific "FILE"))
15611 (push (cons "FILE" (buffer-file-name (buffer-base-buffer)))
15612 props)
15613 (when specific (throw 'exit props)))
15614 (when (or (not specific) (string= specific "TAGS"))
15615 (let ((value (org-string-nw-p (org-get-tags-string))))
15616 (when value (push (cons "TAGS" value) props)))
15617 (when specific (throw 'exit props)))
15618 (when (or (not specific) (string= specific "ALLTAGS"))
15619 (let ((value (org-get-tags-at)))
15620 (when value
15621 (push (cons "ALLTAGS"
15622 (format ":%s:" (mapconcat #'identity value ":")))
15623 props)))
15624 (when specific (throw 'exit props)))
15625 (when (or (not specific) (string= specific "BLOCKED"))
15626 (push (cons "BLOCKED" (if (org-entry-blocked-p) "t" "")) props)
15627 (when specific (throw 'exit props)))
15628 (when (or (not specific)
15629 (member specific '("CLOSED" "DEADLINE" "SCHEDULED")))
15630 (forward-line)
15631 (when (org-looking-at-p org-planning-line-re)
15632 (end-of-line)
15633 (let ((bol (line-beginning-position)))
15634 ;; Backward compatibility: time keywords used to be
15635 ;; configurable (before 8.3). Make sure we get the
15636 ;; correct keyword.
15637 (dolist (k (if (not specific)
15638 (list org-closed-string
15639 org-deadline-string
15640 org-scheduled-string)
15641 (list (cond ((string= specific "CLOSED")
15642 org-closed-string)
15643 ((string= specific "DEADLINE")
15644 org-deadline-string)
15645 (t org-scheduled-string)))))
15646 (save-excursion
15647 (when (search-backward k bol t)
15648 (goto-char (match-end 0))
15649 (skip-chars-forward " \t")
15650 (and (looking-at org-ts-regexp-both)
15651 (push (cons specific (match-string 0)) props)))))))
15652 (when specific (throw 'exit props)))
15653 (when (or (not specific)
15654 (member specific '("TIMESTAMP" "TIMESTAMP_IA")))
15655 (let ((find-ts
15656 (lambda (end ts)
15657 (let ((regexp (if (or (string= specific "TIMESTAMP")
15658 (assoc "TIMESTAMP_IA" ts))
15659 org-ts-regexp
15660 org-ts-regexp-both)))
15661 (catch 'next
15662 (while (re-search-forward regexp end t)
15663 (backward-char)
15664 (let ((object (org-element-context)))
15665 ;; Accept to match timestamps in node
15666 ;; properties, too.
15667 (when (memq (org-element-type object)
15668 '(node-property timestamp))
15669 (let ((type
15670 (org-element-property :type object)))
15671 (cond
15672 ((and (memq type '(active active-range))
15673 (not (equal specific "TIMESTAMP_IA")))
15674 (unless (assoc "TIMESTAMP" ts)
15675 (push (cons "TIMESTAMP"
15676 (org-element-property
15677 :raw-value object))
15679 (when specific (throw 'exit ts))))
15680 ((and (memq type '(inactive inactive-range))
15681 (not (string= specific "TIMESTAMP")))
15682 (unless (assoc "TIMESTAMP_IA" ts)
15683 (push (cons "TIMESTAMP_IA"
15684 (org-element-property
15685 :raw-value object))
15687 (when specific (throw 'exit ts))))))
15688 ;; Both timestamp types are found,
15689 ;; move to next part.
15690 (when (= (length ts) 2) (throw 'next ts)))))
15691 ts)))))
15692 (goto-char beg)
15693 ;; First look for timestamps within headline.
15694 (let ((ts (funcall find-ts (line-end-position) nil)))
15695 (if (= (length ts) 2) (setq props (nconc ts props))
15696 (forward-line)
15697 ;; Then find timestamps in the section, skipping
15698 ;; planning line.
15699 (when (org-looking-at-p org-planning-line-re)
15700 (forward-line))
15701 (let ((end (save-excursion (outline-next-heading))))
15702 (setq props (nconc (funcall find-ts end ts) props))))))))
15703 ;; Get the standard properties, like :PROP:.
15704 (when (memq which '(nil all standard))
15705 ;; If we are looking after a specific property, delegate
15706 ;; to `org-entry-get', which is faster. However, make an
15707 ;; exception for "CATEGORY", since it can be also set
15708 ;; through keywords (i.e. #+CATEGORY).
15709 (if (and specific (not (equal specific "CATEGORY")))
15710 (let ((value (org-entry-get beg specific nil t)))
15711 (throw 'exit (and value (list (cons specific value)))))
15712 (let ((range (org-get-property-block beg)))
15713 (when range
15714 (let ((end (cdr range)) seen-base)
15715 (goto-char (car range))
15716 ;; Unlike to `org--update-property-plist', we
15717 ;; handle the case where base values is found
15718 ;; after its extension. We also forbid standard
15719 ;; properties to be named as special properties.
15720 (while (re-search-forward org-property-re end t)
15721 (let* ((key (upcase (org-match-string-no-properties 2)))
15722 (extendp (org-string-match-p "\\+\\'" key))
15723 (key-base (if extendp (substring key 0 -1) key))
15724 (value (org-match-string-no-properties 3)))
15725 (cond
15726 ((member-ignore-case key-base org-special-properties))
15727 (extendp
15728 (setq props
15729 (org--update-property-plist key value props)))
15730 ((member key seen-base))
15731 (t (push key seen-base)
15732 (let ((p (assoc-string key props t)))
15733 (if p (setcdr p (concat value " " (cdr p)))
15734 (push (cons key value) props))))))))))))
15735 (unless (assoc "CATEGORY" props)
15736 (push (cons "CATEGORY" (org-get-category)) props)
15737 (when (string= specific "CATEGORY") (throw 'exit props)))
15738 ;; Return value.
15739 (append (get-text-property beg 'org-summaries) props))))))
15741 (defun org-entry-get (pom property &optional inherit literal-nil)
15742 "Get value of PROPERTY for entry or content at point-or-marker POM.
15744 If INHERIT is non-nil and the entry does not have the property,
15745 then also check higher levels of the hierarchy. If INHERIT is
15746 the symbol `selective', use inheritance only if the setting in
15747 `org-use-property-inheritance' selects PROPERTY for inheritance.
15749 If the property is present but empty, the return value is the
15750 empty string. If the property is not present at all, nil is
15751 returned. In any other case, return the value as a string.
15752 Search is case-insensitive.
15754 If LITERAL-NIL is set, return the string value \"nil\" as
15755 a string, do not interpret it as the list atom nil. This is used
15756 for inheritance when a \"nil\" value can supersede a non-nil
15757 value higher up the hierarchy."
15758 (org-with-point-at pom
15759 (cond
15760 ((and inherit
15761 (or (not (eq inherit 'selective)) (org-property-inherit-p property)))
15762 (org-entry-get-with-inheritance property literal-nil))
15763 ((member-ignore-case property org-special-properties)
15764 ;; We need a special property. Use `org-entry-properties' to
15765 ;; retrieve it, but specify the wanted property.
15766 (cdr (assoc-string property (org-entry-properties nil property))))
15768 (let ((range (org-get-property-block)))
15769 (when range
15770 (let* ((case-fold-search t)
15771 (end (cdr range))
15772 (props
15773 (let ((global
15774 (or (assoc-string property org-file-properties t)
15775 (assoc-string property org-global-properties t)
15776 (assoc-string
15777 property org-global-properties-fixed t))))
15778 ;; Make sure to not re-use GLOBAL as
15779 ;; `org--update-property-plist' would alter it by
15780 ;; side-effect.
15781 (and global (list (cons property (cdr global))))))
15782 (find-value
15783 (lambda (key)
15784 (when (re-search-forward (org-re-property key nil t) end t)
15785 (setq props
15786 (org--update-property-plist
15787 key (org-match-string-no-properties 3) props))))))
15788 (goto-char (car range))
15789 ;; Find base value.
15790 (save-excursion (funcall find-value property))
15791 ;; Find additional values.
15792 (let ((property+ (concat property "+")))
15793 (while (funcall find-value property+)))
15794 ;; Return final value.
15795 (let ((val (cdr (assoc-string property props t))))
15796 (if literal-nil val (org-not-nil val))))))))))
15798 (defun org-property-or-variable-value (var &optional inherit)
15799 "Check if there is a property fixing the value of VAR.
15800 If yes, return this value. If not, return the current value of the variable."
15801 (let ((prop (org-entry-get nil (symbol-name var) inherit)))
15802 (if (and prop (stringp prop) (string-match "\\S-" prop))
15803 (read prop)
15804 (symbol-value var))))
15806 (defun org-entry-delete (pom property)
15807 "Delete the property PROPERTY from entry at point-or-marker POM."
15808 (unless (member property org-special-properties)
15809 (org-with-point-at pom
15810 (let ((range (org-get-property-block)))
15811 (when range
15812 (let ((begin (car range))
15813 (end (copy-marker (cdr range))))
15814 (goto-char begin)
15815 (when (re-search-forward (org-re-property property nil t) end t)
15816 (delete-region (match-beginning 0) (line-beginning-position 2))
15817 ;; If drawer is empty, remove it altogether.
15818 (when (= begin end)
15819 (delete-region (line-beginning-position 0)
15820 (line-beginning-position 2)))
15821 (set-marker end nil))))))))
15823 ;; Multi-values properties are properties that contain multiple values
15824 ;; These values are assumed to be single words, separated by whitespace.
15825 (defun org-entry-add-to-multivalued-property (pom property value)
15826 "Add VALUE to the words in the PROPERTY in entry at point-or-marker POM."
15827 (let* ((old (org-entry-get pom property))
15828 (values (and old (org-split-string old "[ \t]"))))
15829 (setq value (org-entry-protect-space value))
15830 (unless (member value values)
15831 (setq values (append values (list value)))
15832 (org-entry-put pom property
15833 (mapconcat 'identity values " ")))))
15835 (defun org-entry-remove-from-multivalued-property (pom property value)
15836 "Remove VALUE from words in the PROPERTY in entry at point-or-marker POM."
15837 (let* ((old (org-entry-get pom property))
15838 (values (and old (org-split-string old "[ \t]"))))
15839 (setq value (org-entry-protect-space value))
15840 (when (member value values)
15841 (setq values (delete value values))
15842 (org-entry-put pom property
15843 (mapconcat 'identity values " ")))))
15845 (defun org-entry-member-in-multivalued-property (pom property value)
15846 "Is VALUE one of the words in the PROPERTY in entry at point-or-marker POM?"
15847 (let* ((old (org-entry-get pom property))
15848 (values (and old (org-split-string old "[ \t]"))))
15849 (setq value (org-entry-protect-space value))
15850 (member value values)))
15852 (defun org-entry-get-multivalued-property (pom property)
15853 "Return a list of values in a multivalued property."
15854 (let* ((value (org-entry-get pom property))
15855 (values (and value (org-split-string value "[ \t]"))))
15856 (mapcar 'org-entry-restore-space values)))
15858 (defun org-entry-put-multivalued-property (pom property &rest values)
15859 "Set multivalued PROPERTY at point-or-marker POM to VALUES.
15860 VALUES should be a list of strings. Spaces will be protected."
15861 (org-entry-put pom property
15862 (mapconcat 'org-entry-protect-space values " "))
15863 (let* ((value (org-entry-get pom property))
15864 (values (and value (org-split-string value "[ \t]"))))
15865 (mapcar 'org-entry-restore-space values)))
15867 (defun org-entry-protect-space (s)
15868 "Protect spaces and newline in string S."
15869 (while (string-match " " s)
15870 (setq s (replace-match "%20" t t s)))
15871 (while (string-match "\n" s)
15872 (setq s (replace-match "%0A" t t s)))
15875 (defun org-entry-restore-space (s)
15876 "Restore spaces and newline in string S."
15877 (while (string-match "%20" s)
15878 (setq s (replace-match " " t t s)))
15879 (while (string-match "%0A" s)
15880 (setq s (replace-match "\n" t t s)))
15883 (defvar org-entry-property-inherited-from (make-marker)
15884 "Marker pointing to the entry from where a property was inherited.
15885 Each call to `org-entry-get-with-inheritance' will set this marker to the
15886 location of the entry where the inheritance search matched. If there was
15887 no match, the marker will point nowhere.
15888 Note that also `org-entry-get' calls this function, if the INHERIT flag
15889 is set.")
15891 (defun org-entry-get-with-inheritance (property &optional literal-nil)
15892 "Get PROPERTY of entry or content at point, search higher levels if needed.
15893 The search will stop at the first ancestor which has the property defined.
15894 If the value found is \"nil\", return nil to show that the property
15895 should be considered as undefined (this is the meaning of nil here).
15896 However, if LITERAL-NIL is set, return the string value \"nil\" instead."
15897 (move-marker org-entry-property-inherited-from nil)
15898 (let (value)
15899 (org-with-wide-buffer
15900 (catch 'exit
15901 (while t
15902 (when (setq value (org-entry-get nil property nil literal-nil))
15903 (org-back-to-heading t)
15904 (move-marker org-entry-property-inherited-from (point))
15905 (throw 'exit nil))
15906 (or (org-up-heading-safe) (throw 'exit nil)))))
15907 (unless value
15908 (setq value
15909 (cdr (or (assoc-string property org-file-properties t)
15910 (assoc-string property org-global-properties t)
15911 (assoc-string property org-global-properties-fixed t)))))
15912 (if literal-nil value (org-not-nil value))))
15914 (defvar org-property-changed-functions nil
15915 "Hook called when the value of a property has changed.
15916 Each hook function should accept two arguments, the name of the property
15917 and the new value.")
15919 (defun org-entry-put (pom property value)
15920 "Set PROPERTY to VALUE for entry at point-or-marker POM.
15922 If the value is `nil', it is converted to the empty string. If
15923 it is not a string, an error is raised.
15925 PROPERTY can be any regular property (see
15926 `org-special-properties'). It can also be \"TODO\",
15927 \"PRIORITY\", \"SCHEDULED\" and \"DEADLINE\".
15929 For the last two properties, VALUE may have any of the special
15930 values \"earlier\" and \"later\". The function then increases or
15931 decreases scheduled or deadline date by one day."
15932 (cond ((null value) (setq value ""))
15933 ((not (stringp value)) (error "Properties values should be strings")))
15934 (org-with-point-at pom
15935 (if (or (not (featurep 'org-inlinetask)) (org-inlinetask-in-task-p))
15936 (org-back-to-heading t)
15937 (org-with-limited-levels (org-back-to-heading t)))
15938 (let ((beg (point)))
15939 (cond
15940 ((equal property "TODO")
15941 (cond ((not (org-string-nw-p value)) (setq value 'none))
15942 ((not (member value org-todo-keywords-1))
15943 (user-error "\"%s\" is not a valid TODO state" value)))
15944 (org-todo value)
15945 (org-set-tags nil 'align))
15946 ((equal property "PRIORITY")
15947 (org-priority (if (org-string-nw-p value) (string-to-char value) ?\s))
15948 (org-set-tags nil 'align))
15949 ((equal property "SCHEDULED")
15950 (forward-line)
15951 (if (and (org-looking-at-p org-planning-line-re)
15952 (re-search-forward
15953 org-scheduled-time-regexp (line-end-position) t))
15954 (cond ((string= value "earlier") (org-timestamp-change -1 'day))
15955 ((string= value "later") (org-timestamp-change 1 'day))
15956 ((string= value "") (org-schedule '(4)))
15957 (t (org-schedule nil value)))
15958 (if (member value '("earlier" "later" ""))
15959 (call-interactively #'org-schedule)
15960 (org-schedule nil value))))
15961 ((equal property "DEADLINE")
15962 (forward-line)
15963 (if (and (org-looking-at-p org-planning-line-re)
15964 (re-search-forward
15965 org-deadline-time-regexp (line-end-position) t))
15966 (cond ((string= value "earlier") (org-timestamp-change -1 'day))
15967 ((string= value "later") (org-timestamp-change 1 'day))
15968 ((string= value "") (org-deadline '(4)))
15969 (t (org-deadline nil value)))
15970 (if (member value '("earlier" "later" ""))
15971 (call-interactively #'org-deadline)
15972 (org-deadline nil value))))
15973 ((member property org-special-properties)
15974 (error "The %s property cannot be set with `org-entry-put'" property))
15976 (let* ((range (org-get-property-block beg 'force))
15977 (end (cdr range))
15978 (case-fold-search t))
15979 (goto-char (car range))
15980 (if (re-search-forward (org-re-property property nil t) end t)
15981 (progn (delete-region (match-beginning 0) (match-end 0))
15982 (goto-char (match-beginning 0)))
15983 (goto-char end)
15984 (insert "\n")
15985 (backward-char))
15986 (insert ":" property ":")
15987 (when value (insert " " value))
15988 (org-indent-line)))))
15989 (run-hook-with-args 'org-property-changed-functions property value)))
15991 (defun org-buffer-property-keys (&optional specials defaults columns)
15992 "Get all property keys in the current buffer.
15994 When SPECIALS is non-nil, also list the special properties that
15995 reflect things like tags and TODO state.
15997 When DEFAULTS is non-nil, also include properties that has
15998 special meaning internally: ARCHIVE, CATEGORY, SUMMARY,
15999 DESCRIPTION, LOCATION, and LOGGING and others.
16001 When COLUMNS in non-nil, also include property names given in
16002 COLUMN formats in the current buffer."
16003 (let ((case-fold-search t)
16004 (props (append
16005 (and specials org-special-properties)
16006 (and defaults (cons org-effort-property org-default-properties))
16007 nil)))
16008 (org-with-wide-buffer
16009 (goto-char (point-min))
16010 (while (re-search-forward org-property-start-re nil t)
16011 (let ((range (org-get-property-block)))
16012 (catch 'skip
16013 (unless range
16014 (when (and (not (org-before-first-heading-p))
16015 (y-or-n-p (format "Malformed drawer at %d, repair?"
16016 (line-beginning-position))))
16017 (org-get-property-block nil t))
16018 (throw 'skip nil))
16019 (goto-char (car range))
16020 (let ((begin (car range))
16021 (end (cdr range)))
16022 ;; Make sure that found property block is not located
16023 ;; before current point, as it would generate an infloop.
16024 ;; It can happen, for example, in the following
16025 ;; situation:
16027 ;; * Headline
16028 ;; :PROPERTIES:
16029 ;; ...
16030 ;; :END:
16031 ;; *************** Inlinetask
16032 ;; #+BEGIN_EXAMPLE
16033 ;; :PROPERTIES:
16034 ;; #+END_EXAMPLE
16036 (if (< begin (point)) (throw 'skip nil) (goto-char begin))
16037 (while (< (point) end)
16038 (let ((p (progn (looking-at org-property-re)
16039 (org-match-string-no-properties 2))))
16040 ;; Only add true property name, not extension symbol.
16041 (add-to-list 'props
16042 (if (not (org-string-match-p "\\+\\'" p)) p
16043 (substring p 0 -1))))
16044 (forward-line))))
16045 (outline-next-heading)))
16046 (when columns
16047 (goto-char (point-min))
16048 (while (re-search-forward "^[ \t]*\\(?:#\\+\\|:\\)COLUMNS:" nil t)
16049 (let ((element (org-element-at-point)))
16050 (when (memq (org-element-type element) '(keyword node-property))
16051 (let ((value (org-element-property :value element))
16052 (start 0))
16053 (while (string-match "%[0-9]*\\(\\S-+\\)" value start)
16054 (setq start (match-end 0))
16055 (let ((p (org-match-string-no-properties 1 value)))
16056 (unless (member-ignore-case p org-special-properties)
16057 (add-to-list 'props p))))))))))
16058 (sort props (lambda (a b) (string< (upcase a) (upcase b))))))
16060 (defun org-property-values (key)
16061 "List all non-nil values of property KEY in current buffer."
16062 (org-with-wide-buffer
16063 (goto-char (point-min))
16064 (let ((case-fold-search t)
16065 (re (org-re-property key))
16066 values)
16067 (while (re-search-forward re nil t)
16068 (add-to-list 'values (org-entry-get (point) key)))
16069 values)))
16071 (defun org-insert-property-drawer ()
16072 "Insert a property drawer into the current entry."
16073 (org-with-wide-buffer
16074 (if (or (not (featurep 'org-inlinetask)) (org-inlinetask-in-task-p))
16075 (org-back-to-heading t)
16076 (org-with-limited-levels (org-back-to-heading t)))
16077 (forward-line)
16078 (when (org-looking-at-p org-planning-line-re) (forward-line))
16079 (unless (org-looking-at-p org-property-drawer-re)
16080 (let ((inhibit-read-only t))
16081 (unless (bolp) (insert "\n"))
16082 (let ((begin (point)))
16083 (insert ":PROPERTIES:\n:END:\n")
16084 (org-indent-region begin (point)))))))
16086 (defun org-insert-drawer (&optional arg drawer)
16087 "Insert a drawer at point.
16089 When optional argument ARG is non-nil, insert a property drawer.
16091 Optional argument DRAWER, when non-nil, is a string representing
16092 drawer's name. Otherwise, the user is prompted for a name.
16094 If a region is active, insert the drawer around that region
16095 instead.
16097 Point is left between drawer's boundaries."
16098 (interactive "P")
16099 (let* ((drawer (if arg "PROPERTIES"
16100 (or drawer (read-from-minibuffer "Drawer: ")))))
16101 (cond
16102 ;; With C-u, fall back on `org-insert-property-drawer'
16103 (arg (org-insert-property-drawer))
16104 ;; Check validity of suggested drawer's name.
16105 ((not (org-string-match-p org-drawer-regexp (format ":%s:" drawer)))
16106 (user-error "Invalid drawer name"))
16107 ;; With an active region, insert a drawer at point.
16108 ((not (org-region-active-p))
16109 (progn
16110 (unless (bolp) (insert "\n"))
16111 (insert (format ":%s:\n\n:END:\n" drawer))
16112 (forward-line -2)))
16113 ;; Otherwise, insert the drawer at point
16115 (let ((rbeg (region-beginning))
16116 (rend (copy-marker (region-end))))
16117 (unwind-protect
16118 (progn
16119 (goto-char rbeg)
16120 (beginning-of-line)
16121 (when (save-excursion
16122 (re-search-forward org-outline-regexp-bol rend t))
16123 (user-error "Drawers cannot contain headlines"))
16124 ;; Position point at the beginning of the first
16125 ;; non-blank line in region. Insert drawer's opening
16126 ;; there, then indent it.
16127 (org-skip-whitespace)
16128 (beginning-of-line)
16129 (insert ":" drawer ":\n")
16130 (forward-line -1)
16131 (indent-for-tab-command)
16132 ;; Move point to the beginning of the first blank line
16133 ;; after the last non-blank line in region. Insert
16134 ;; drawer's closing, then indent it.
16135 (goto-char rend)
16136 (skip-chars-backward " \r\t\n")
16137 (insert "\n:END:")
16138 (deactivate-mark t)
16139 (indent-for-tab-command)
16140 (unless (eolp) (insert "\n")))
16141 ;; Clear marker, whatever the outcome of insertion is.
16142 (set-marker rend nil)))))))
16144 (defvar org-property-set-functions-alist nil
16145 "Property set function alist.
16146 Each entry should have the following format:
16148 (PROPERTY . READ-FUNCTION)
16150 The read function will be called with the same argument as
16151 `org-completing-read'.")
16153 (defun org-set-property-function (property)
16154 "Get the function that should be used to set PROPERTY.
16155 This is computed according to `org-property-set-functions-alist'."
16156 (or (cdr (assoc property org-property-set-functions-alist))
16157 'org-completing-read))
16159 (defun org-read-property-value (property)
16160 "Read PROPERTY value from user."
16161 (let* ((completion-ignore-case t)
16162 (allowed (org-property-get-allowed-values nil property 'table))
16163 (cur (org-entry-get nil property))
16164 (prompt (concat property " value"
16165 (if (and cur (string-match "\\S-" cur))
16166 (concat " [" cur "]") "") ": "))
16167 (set-function (org-set-property-function property))
16168 (val (if allowed
16169 (funcall set-function prompt allowed nil
16170 (not (get-text-property 0 'org-unrestricted
16171 (caar allowed))))
16172 (let (org-completion-use-ido org-completion-use-iswitchb)
16173 (funcall set-function prompt
16174 (mapcar 'list (org-property-values property))
16175 nil nil "" nil cur)))))
16176 (org-trim val)))
16178 (defvar org-last-set-property nil)
16179 (defvar org-last-set-property-value nil)
16180 (defun org-read-property-name ()
16181 "Read a property name."
16182 (let* ((completion-ignore-case t)
16183 (keys (org-buffer-property-keys nil t t))
16184 (default-prop (or (save-excursion
16185 (save-match-data
16186 (beginning-of-line)
16187 (and (looking-at "^\\s-*:\\([^:\n]+\\):")
16188 (null (string= (match-string 1) "END"))
16189 (match-string 1))))
16190 org-last-set-property))
16191 (property (org-icompleting-read
16192 (concat "Property"
16193 (if default-prop (concat " [" default-prop "]") "")
16194 ": ")
16195 (mapcar 'list keys)
16196 nil nil nil nil
16197 default-prop)))
16198 (if (member property keys)
16199 property
16200 (or (cdr (assoc (downcase property)
16201 (mapcar (lambda (x) (cons (downcase x) x))
16202 keys)))
16203 property))))
16205 (defun org-set-property-and-value (use-last)
16206 "Allow to set [PROPERTY]: [value] direction from prompt.
16207 When use-default, don't even ask, just use the last
16208 \"[PROPERTY]: [value]\" string from the history."
16209 (interactive "P")
16210 (let* ((completion-ignore-case t)
16211 (pv (or (and use-last org-last-set-property-value)
16212 (org-completing-read
16213 "Enter a \"[Property]: [value]\" pair: "
16214 nil nil nil nil nil
16215 org-last-set-property-value)))
16216 prop val)
16217 (when (string-match "^[ \t]*\\([^:]+\\):[ \t]*\\(.*\\)[ \t]*$" pv)
16218 (setq prop (match-string 1 pv)
16219 val (match-string 2 pv))
16220 (org-set-property prop val))))
16222 (defun org-set-property (property value)
16223 "In the current entry, set PROPERTY to VALUE.
16224 When called interactively, this will prompt for a property name, offering
16225 completion on existing and default properties. And then it will prompt
16226 for a value, offering completion either on allowed values (via an inherited
16227 xxx_ALL property) or on existing values in other instances of this property
16228 in the current file."
16229 (interactive (list nil nil))
16230 (let* ((property (or property (org-read-property-name)))
16231 (value (or value (org-read-property-value property)))
16232 (fn (cdr (assoc property org-properties-postprocess-alist))))
16233 (setq org-last-set-property property)
16234 (setq org-last-set-property-value (concat property ": " value))
16235 ;; Possibly postprocess the inserted value:
16236 (when fn (setq value (funcall fn value)))
16237 (unless (equal (org-entry-get nil property) value)
16238 (org-entry-put nil property value))))
16240 (defun org-delete-property (property)
16241 "In the current entry, delete PROPERTY."
16242 (interactive
16243 (let* ((completion-ignore-case t)
16244 (cat (org-entry-get (point) "CATEGORY"))
16245 (props0 (org-entry-properties nil 'standard))
16246 (props (if cat props0
16247 (delete `("CATEGORY" . ,(org-get-category)) props0)))
16248 (prop (if (< 1 (length props))
16249 (org-icompleting-read "Property: " props nil t)
16250 (caar props))))
16251 (list prop)))
16252 (if (not property)
16253 (message "No property to delete in this entry")
16254 (org-entry-delete nil property)
16255 (message "Property \"%s\" deleted" property)))
16257 (defun org-delete-property-globally (property)
16258 "Remove PROPERTY globally, from all entries."
16259 (interactive
16260 (let* ((completion-ignore-case t)
16261 (prop (org-icompleting-read
16262 "Globally remove property: "
16263 (mapcar 'list (org-buffer-property-keys)))))
16264 (list prop)))
16265 (save-excursion
16266 (save-restriction
16267 (widen)
16268 (goto-char (point-min))
16269 (let ((cnt 0))
16270 (while (re-search-forward
16271 (org-re-property property)
16272 nil t)
16273 (setq cnt (1+ cnt))
16274 (delete-region (match-beginning 0) (1+ (point-at-eol))))
16275 (message "Property \"%s\" removed from %d entries" property cnt)))))
16277 (defvar org-columns-current-fmt-compiled) ; defined in org-colview.el
16279 (defun org-compute-property-at-point ()
16280 "Compute the property at point.
16281 This looks for an enclosing column format, extracts the operator and
16282 then applies it to the property in the column format's scope."
16283 (interactive)
16284 (unless (org-at-property-p)
16285 (user-error "Not at a property"))
16286 (let ((prop (org-match-string-no-properties 2)))
16287 (org-columns-get-format-and-top-level)
16288 (unless (nth 3 (assoc prop org-columns-current-fmt-compiled))
16289 (user-error "No operator defined for property %s" prop))
16290 (org-columns-compute prop)))
16292 (defvar org-property-allowed-value-functions nil
16293 "Hook for functions supplying allowed values for a specific property.
16294 The functions must take a single argument, the name of the property, and
16295 return a flat list of allowed values. If \":ETC\" is one of
16296 the values, this means that these values are intended as defaults for
16297 completion, but that other values should be allowed too.
16298 The functions must return nil if they are not responsible for this
16299 property.")
16301 (defun org-property-get-allowed-values (pom property &optional table)
16302 "Get allowed values for the property PROPERTY.
16303 When TABLE is non-nil, return an alist that can directly be used for
16304 completion."
16305 (let (vals)
16306 (cond
16307 ((equal property "TODO")
16308 (setq vals (org-with-point-at pom
16309 (append org-todo-keywords-1 '("")))))
16310 ((equal property "PRIORITY")
16311 (let ((n org-lowest-priority))
16312 (while (>= n org-highest-priority)
16313 (push (char-to-string n) vals)
16314 (setq n (1- n)))))
16315 ((member property org-special-properties))
16316 ((setq vals (run-hook-with-args-until-success
16317 'org-property-allowed-value-functions property)))
16319 (setq vals (org-entry-get pom (concat property "_ALL") 'inherit))
16320 (when (and vals (string-match "\\S-" vals))
16321 (setq vals (car (read-from-string (concat "(" vals ")"))))
16322 (setq vals (mapcar (lambda (x)
16323 (cond ((stringp x) x)
16324 ((numberp x) (number-to-string x))
16325 ((symbolp x) (symbol-name x))
16326 (t "???")))
16327 vals)))))
16328 (when (member ":ETC" vals)
16329 (setq vals (remove ":ETC" vals))
16330 (org-add-props (car vals) '(org-unrestricted t)))
16331 (if table (mapcar 'list vals) vals)))
16333 (defun org-property-previous-allowed-value (&optional previous)
16334 "Switch to the next allowed value for this property."
16335 (interactive)
16336 (org-property-next-allowed-value t))
16338 (defun org-property-next-allowed-value (&optional previous)
16339 "Switch to the next allowed value for this property."
16340 (interactive)
16341 (unless (org-at-property-p)
16342 (user-error "Not at a property"))
16343 (let* ((prop (car (save-match-data (org-split-string (match-string 1) ":"))))
16344 (key (match-string 2))
16345 (value (match-string 3))
16346 (allowed (or (org-property-get-allowed-values (point) key)
16347 (and (member value '("[ ]" "[-]" "[X]"))
16348 '("[ ]" "[X]"))))
16349 (heading (save-match-data (nth 4 (org-heading-components))))
16350 nval)
16351 (unless allowed
16352 (user-error "Allowed values for this property have not been defined"))
16353 (if previous (setq allowed (reverse allowed)))
16354 (if (member value allowed)
16355 (setq nval (car (cdr (member value allowed)))))
16356 (setq nval (or nval (car allowed)))
16357 (if (equal nval value)
16358 (user-error "Only one allowed value for this property"))
16359 (org-at-property-p)
16360 (replace-match (concat " :" key ": " nval) t t)
16361 (org-indent-line)
16362 (beginning-of-line 1)
16363 (skip-chars-forward " \t")
16364 (when (equal prop org-effort-property)
16365 (org-refresh-property
16366 '((effort . identity)
16367 (effort-minutes . org-duration-string-to-minutes))
16368 nval)
16369 (when (string= org-clock-current-task heading)
16370 (setq org-clock-effort nval)
16371 (org-clock-update-mode-line)))
16372 (run-hook-with-args 'org-property-changed-functions key nval)))
16374 (defun org-find-olp (path &optional this-buffer)
16375 "Return a marker pointing to the entry at outline path OLP.
16376 If anything goes wrong, throw an error.
16377 You can wrap this call to catch the error like this:
16379 (condition-case msg
16380 (org-mobile-locate-entry (match-string 4))
16381 (error (nth 1 msg)))
16383 The return value will then be either a string with the error message,
16384 or a marker if everything is OK.
16386 If THIS-BUFFER is set, the outline path does not contain a file,
16387 only headings."
16388 (let* ((file (if this-buffer buffer-file-name (pop path)))
16389 (buffer (if this-buffer (current-buffer) (find-file-noselect file)))
16390 (level 1)
16391 (lmin 1)
16392 (lmax 1)
16393 limit re end found pos heading cnt flevel)
16394 (unless buffer (error "File not found :%s" file))
16395 (with-current-buffer buffer
16396 (save-excursion
16397 (save-restriction
16398 (widen)
16399 (setq limit (point-max))
16400 (goto-char (point-min))
16401 (while (setq heading (pop path))
16402 (setq re (format org-complex-heading-regexp-format
16403 (regexp-quote heading)))
16404 (setq cnt 0 pos (point))
16405 (while (re-search-forward re end t)
16406 (setq level (- (match-end 1) (match-beginning 1)))
16407 (if (and (>= level lmin) (<= level lmax))
16408 (setq found (match-beginning 0) flevel level cnt (1+ cnt))))
16409 (when (= cnt 0) (error "Heading not found on level %d: %s"
16410 lmax heading))
16411 (when (> cnt 1) (error "Heading not unique on level %d: %s"
16412 lmax heading))
16413 (goto-char found)
16414 (setq lmin (1+ flevel) lmax (+ lmin (if org-odd-levels-only 1 0)))
16415 (setq end (save-excursion (org-end-of-subtree t t))))
16416 (when (org-at-heading-p)
16417 (point-marker)))))))
16419 (defun org-find-exact-headline-in-buffer (heading &optional buffer pos-only)
16420 "Find node HEADING in BUFFER.
16421 Return a marker to the heading if it was found, or nil if not.
16422 If POS-ONLY is set, return just the position instead of a marker.
16424 The heading text must match exact, but it may have a TODO keyword,
16425 a priority cookie and tags in the standard locations."
16426 (with-current-buffer (or buffer (current-buffer))
16427 (save-excursion
16428 (save-restriction
16429 (widen)
16430 (goto-char (point-min))
16431 (let (case-fold-search)
16432 (if (re-search-forward
16433 (format org-complex-heading-regexp-format
16434 (regexp-quote heading)) nil t)
16435 (if pos-only
16436 (match-beginning 0)
16437 (move-marker (make-marker) (match-beginning 0)))))))))
16439 (defun org-find-exact-heading-in-directory (heading &optional dir)
16440 "Find Org node headline HEADING in all .org files in directory DIR.
16441 When the target headline is found, return a marker to this location."
16442 (let ((files (directory-files (or dir default-directory)
16443 t "\\`[^.#].*\\.org\\'"))
16444 file visiting m buffer)
16445 (catch 'found
16446 (while (setq file (pop files))
16447 (message "trying %s" file)
16448 (setq visiting (org-find-base-buffer-visiting file))
16449 (setq buffer (or visiting (find-file-noselect file)))
16450 (setq m (org-find-exact-headline-in-buffer
16451 heading buffer))
16452 (when (and (not m) (not visiting)) (kill-buffer buffer))
16453 (and m (throw 'found m))))))
16455 (defun org-find-entry-with-id (ident)
16456 "Locate the entry that contains the ID property with exact value IDENT.
16457 IDENT can be a string, a symbol or a number, this function will search for
16458 the string representation of it.
16459 Return the position where this entry starts, or nil if there is no such entry."
16460 (interactive "sID: ")
16461 (let ((id (cond
16462 ((stringp ident) ident)
16463 ((symbol-name ident) (symbol-name ident))
16464 ((numberp ident) (number-to-string ident))
16465 (t (error "IDENT %s must be a string, symbol or number" ident))))
16466 (case-fold-search nil))
16467 (save-excursion
16468 (save-restriction
16469 (widen)
16470 (goto-char (point-min))
16471 (when (re-search-forward
16472 (concat "^[ \t]*:ID:[ \t]+" (regexp-quote id) "[ \t]*$")
16473 nil t)
16474 (org-back-to-heading t)
16475 (point))))))
16477 ;;;; Timestamps
16479 (defvar org-last-changed-timestamp nil)
16480 (defvar org-last-inserted-timestamp nil
16481 "The last time stamp inserted with `org-insert-time-stamp'.")
16482 (defvar org-ts-what) ; dynamically scoped parameter
16484 (defun org-time-stamp (arg &optional inactive)
16485 "Prompt for a date/time and insert a time stamp.
16486 If the user specifies a time like HH:MM or if this command is
16487 called with at least one prefix argument, the time stamp contains
16488 the date and the time. Otherwise, only the date is be included.
16490 All parts of a date not specified by the user is filled in from
16491 the current date/time. So if you just press return without
16492 typing anything, the time stamp will represent the current
16493 date/time.
16495 If there is already a timestamp at the cursor, it will be
16496 modified.
16498 With two universal prefix arguments, insert an active timestamp
16499 with the current time without prompting the user.
16501 When called from lisp, the timestamp is inactive if INACTIVE is
16502 non-nil."
16503 (interactive "P")
16504 (let* ((ts nil)
16505 (default-time
16506 ;; Default time is either today, or, when entering a range,
16507 ;; the range start.
16508 (if (or (and (org-at-timestamp-p t) (setq ts (match-string 0)))
16509 (save-excursion
16510 (re-search-backward
16511 (concat org-ts-regexp "--?-?\\=") ; 1-3 minuses
16512 (- (point) 20) t)))
16513 (apply 'encode-time (org-parse-time-string (match-string 1)))
16514 (current-time)))
16515 (default-input (and ts (org-get-compact-tod ts)))
16516 (repeater (save-excursion
16517 (save-match-data
16518 (beginning-of-line)
16519 (when (re-search-forward
16520 "\\([.+-]+[0-9]+[hdwmy] ?\\)+" ;;\\(?:[/ ][-+]?[0-9]+[hdwmy]\\)?\\) ?"
16521 (save-excursion (progn (end-of-line) (point))) t)
16522 (match-string 0)))))
16523 org-time-was-given org-end-time-was-given time)
16524 (cond
16525 ((and (org-at-timestamp-p t)
16526 (memq last-command '(org-time-stamp org-time-stamp-inactive))
16527 (memq this-command '(org-time-stamp org-time-stamp-inactive)))
16528 (insert "--")
16529 (setq time (let ((this-command this-command))
16530 (org-read-date arg 'totime nil nil
16531 default-time default-input inactive)))
16532 (org-insert-time-stamp time (or org-time-was-given arg) inactive))
16533 ((org-at-timestamp-p t)
16534 (setq time (let ((this-command this-command))
16535 (org-read-date arg 'totime nil nil default-time default-input inactive)))
16536 (when (org-at-timestamp-p t) ; just to get the match data
16537 ; (setq inactive (eq (char-after (match-beginning 0)) ?\[))
16538 (replace-match "")
16539 (setq org-last-changed-timestamp
16540 (org-insert-time-stamp
16541 time (or org-time-was-given arg)
16542 inactive nil nil (list org-end-time-was-given)))
16543 (when repeater (goto-char (1- (point))) (insert " " repeater)
16544 (setq org-last-changed-timestamp
16545 (concat (substring org-last-inserted-timestamp 0 -1)
16546 " " repeater ">"))))
16547 (message "Timestamp updated"))
16548 ((equal arg '(16))
16549 (org-insert-time-stamp (current-time) t inactive))
16551 (setq time (let ((this-command this-command))
16552 (org-read-date arg 'totime nil nil default-time default-input inactive)))
16553 (org-insert-time-stamp time (or org-time-was-given arg) inactive
16554 nil nil (list org-end-time-was-given))))))
16556 ;; FIXME: can we use this for something else, like computing time differences?
16557 (defun org-get-compact-tod (s)
16558 (when (string-match "\\(\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)\\(-\\(\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)\\)?" s)
16559 (let* ((t1 (match-string 1 s))
16560 (h1 (string-to-number (match-string 2 s)))
16561 (m1 (string-to-number (match-string 3 s)))
16562 (t2 (and (match-end 4) (match-string 5 s)))
16563 (h2 (and t2 (string-to-number (match-string 6 s))))
16564 (m2 (and t2 (string-to-number (match-string 7 s))))
16565 dh dm)
16566 (if (not t2)
16568 (setq dh (- h2 h1) dm (- m2 m1))
16569 (if (< dm 0) (setq dm (+ dm 60) dh (1- dh)))
16570 (concat t1 "+" (number-to-string dh)
16571 (and (/= 0 dm) (format ":%02d" dm)))))))
16573 (defun org-time-stamp-inactive (&optional arg)
16574 "Insert an inactive time stamp.
16575 An inactive time stamp is enclosed in square brackets instead of angle
16576 brackets. It is inactive in the sense that it does not trigger agenda entries,
16577 does not link to the calendar and cannot be changed with the S-cursor keys.
16578 So these are more for recording a certain time/date."
16579 (interactive "P")
16580 (org-time-stamp arg 'inactive))
16582 (defvar org-date-ovl (make-overlay 1 1))
16583 (overlay-put org-date-ovl 'face 'org-date-selected)
16584 (org-detach-overlay org-date-ovl)
16586 (defvar org-ans1) ; dynamically scoped parameter
16587 (defvar org-ans2) ; dynamically scoped parameter
16589 (defvar org-plain-time-of-day-regexp) ; defined below
16591 (defvar org-overriding-default-time nil) ; dynamically scoped
16592 (defvar org-read-date-overlay nil)
16593 (defvar org-dcst nil) ; dynamically scoped
16594 (defvar org-read-date-history nil)
16595 (defvar org-read-date-final-answer nil)
16596 (defvar org-read-date-analyze-futurep nil)
16597 (defvar org-read-date-analyze-forced-year nil)
16598 (defvar org-read-date-inactive)
16600 (defvar org-read-date-minibuffer-local-map
16601 (let* ((map (make-sparse-keymap)))
16602 (set-keymap-parent map minibuffer-local-map)
16603 (org-defkey map (kbd ".")
16604 (lambda () (interactive)
16605 ;; Are we at the beginning of the prompt?
16606 (if (looking-back "^[^:]+: ")
16607 (org-eval-in-calendar '(calendar-goto-today))
16608 (insert "."))))
16609 (org-defkey map (kbd "C-.")
16610 (lambda () (interactive)
16611 (org-eval-in-calendar '(calendar-goto-today))))
16612 (org-defkey map [(meta shift left)]
16613 (lambda () (interactive)
16614 (org-eval-in-calendar '(calendar-backward-month 1))))
16615 (org-defkey map [(meta shift right)]
16616 (lambda () (interactive)
16617 (org-eval-in-calendar '(calendar-forward-month 1))))
16618 (org-defkey map [(meta shift up)]
16619 (lambda () (interactive)
16620 (org-eval-in-calendar '(calendar-backward-year 1))))
16621 (org-defkey map [(meta shift down)]
16622 (lambda () (interactive)
16623 (org-eval-in-calendar '(calendar-forward-year 1))))
16624 (org-defkey map [?\e (shift left)]
16625 (lambda () (interactive)
16626 (org-eval-in-calendar '(calendar-backward-month 1))))
16627 (org-defkey map [?\e (shift right)]
16628 (lambda () (interactive)
16629 (org-eval-in-calendar '(calendar-forward-month 1))))
16630 (org-defkey map [?\e (shift up)]
16631 (lambda () (interactive)
16632 (org-eval-in-calendar '(calendar-backward-year 1))))
16633 (org-defkey map [?\e (shift down)]
16634 (lambda () (interactive)
16635 (org-eval-in-calendar '(calendar-forward-year 1))))
16636 (org-defkey map [(shift up)]
16637 (lambda () (interactive)
16638 (org-eval-in-calendar '(calendar-backward-week 1))))
16639 (org-defkey map [(shift down)]
16640 (lambda () (interactive)
16641 (org-eval-in-calendar '(calendar-forward-week 1))))
16642 (org-defkey map [(shift left)]
16643 (lambda () (interactive)
16644 (org-eval-in-calendar '(calendar-backward-day 1))))
16645 (org-defkey map [(shift right)]
16646 (lambda () (interactive)
16647 (org-eval-in-calendar '(calendar-forward-day 1))))
16648 (org-defkey map "!"
16649 (lambda () (interactive)
16650 (org-eval-in-calendar '(diary-view-entries))
16651 (message "")))
16652 (org-defkey map ">"
16653 (lambda () (interactive)
16654 (org-eval-in-calendar '(calendar-scroll-left 1))))
16655 (org-defkey map "<"
16656 (lambda () (interactive)
16657 (org-eval-in-calendar '(calendar-scroll-right 1))))
16658 (org-defkey map "\C-v"
16659 (lambda () (interactive)
16660 (org-eval-in-calendar
16661 '(calendar-scroll-left-three-months 1))))
16662 (org-defkey map "\M-v"
16663 (lambda () (interactive)
16664 (org-eval-in-calendar
16665 '(calendar-scroll-right-three-months 1))))
16666 map)
16667 "Keymap for minibuffer commands when using `org-read-date'.")
16669 (defvar org-def)
16670 (defvar org-defdecode)
16671 (defvar org-with-time)
16673 (defun org-read-date (&optional org-with-time to-time from-string prompt
16674 default-time default-input inactive)
16675 "Read a date, possibly a time, and make things smooth for the user.
16676 The prompt will suggest to enter an ISO date, but you can also enter anything
16677 which will at least partially be understood by `parse-time-string'.
16678 Unrecognized parts of the date will default to the current day, month, year,
16679 hour and minute. If this command is called to replace a timestamp at point,
16680 or to enter the second timestamp of a range, the default time is taken
16681 from the existing stamp. Furthermore, the command prefers the future,
16682 so if you are giving a date where the year is not given, and the day-month
16683 combination is already past in the current year, it will assume you
16684 mean next year. For details, see the manual. A few examples:
16686 3-2-5 --> 2003-02-05
16687 feb 15 --> currentyear-02-15
16688 2/15 --> currentyear-02-15
16689 sep 12 9 --> 2009-09-12
16690 12:45 --> today 12:45
16691 22 sept 0:34 --> currentyear-09-22 0:34
16692 12 --> currentyear-currentmonth-12
16693 Fri --> nearest Friday after today
16694 -Tue --> last Tuesday
16695 etc.
16697 Furthermore you can specify a relative date by giving, as the *first* thing
16698 in the input: a plus/minus sign, a number and a letter [hdwmy] to indicate
16699 change in days weeks, months, years.
16700 With a single plus or minus, the date is relative to today. With a double
16701 plus or minus, it is relative to the date in DEFAULT-TIME. E.g.
16702 +4d --> four days from today
16703 +4 --> same as above
16704 +2w --> two weeks from today
16705 ++5 --> five days from default date
16707 The function understands only English month and weekday abbreviations.
16709 While prompting, a calendar is popped up - you can also select the
16710 date with the mouse (button 1). The calendar shows a period of three
16711 months. To scroll it to other months, use the keys `>' and `<'.
16712 If you don't like the calendar, turn it off with
16713 \(setq org-read-date-popup-calendar nil)
16715 With optional argument TO-TIME, the date will immediately be converted
16716 to an internal time.
16717 With an optional argument ORG-WITH-TIME, the prompt will suggest to
16718 also insert a time. Note that when ORG-WITH-TIME is not set, you can
16719 still enter a time, and this function will inform the calling routine
16720 about this change. The calling routine may then choose to change the
16721 format used to insert the time stamp into the buffer to include the time.
16722 With optional argument FROM-STRING, read from this string instead from
16723 the user. PROMPT can overwrite the default prompt. DEFAULT-TIME is
16724 the time/date that is used for everything that is not specified by the
16725 user."
16726 (require 'parse-time)
16727 (let* ((org-time-stamp-rounding-minutes
16728 (if (equal org-with-time '(16)) '(0 0) org-time-stamp-rounding-minutes))
16729 (org-dcst org-display-custom-times)
16730 (ct (org-current-time))
16731 (org-def (or org-overriding-default-time default-time ct))
16732 (org-defdecode (decode-time org-def))
16733 (dummy (progn
16734 (when (< (nth 2 org-defdecode) org-extend-today-until)
16735 (setcar (nthcdr 2 org-defdecode) -1)
16736 (setcar (nthcdr 1 org-defdecode) 59)
16737 (setq org-def (apply 'encode-time org-defdecode)
16738 org-defdecode (decode-time org-def)))))
16739 (mouse-autoselect-window nil) ; Don't let the mouse jump
16740 (calendar-frame-setup nil)
16741 (calendar-setup nil)
16742 (calendar-move-hook nil)
16743 (calendar-view-diary-initially-flag nil)
16744 (calendar-view-holidays-initially-flag nil)
16745 (timestr (format-time-string
16746 (if org-with-time "%Y-%m-%d %H:%M" "%Y-%m-%d") org-def))
16747 (prompt (concat (if prompt (concat prompt " ") "")
16748 (format "Date+time [%s]: " timestr)))
16749 ans (org-ans0 "") org-ans1 org-ans2 final)
16751 (cond
16752 (from-string (setq ans from-string))
16753 (org-read-date-popup-calendar
16754 (save-excursion
16755 (save-window-excursion
16756 (calendar)
16757 (org-eval-in-calendar '(setq cursor-type nil) t)
16758 (unwind-protect
16759 (progn
16760 (calendar-forward-day (- (time-to-days org-def)
16761 (calendar-absolute-from-gregorian
16762 (calendar-current-date))))
16763 (org-eval-in-calendar nil t)
16764 (let* ((old-map (current-local-map))
16765 (map (copy-keymap calendar-mode-map))
16766 (minibuffer-local-map
16767 (copy-keymap org-read-date-minibuffer-local-map)))
16768 (org-defkey map (kbd "RET") 'org-calendar-select)
16769 (org-defkey map [mouse-1] 'org-calendar-select-mouse)
16770 (org-defkey map [mouse-2] 'org-calendar-select-mouse)
16771 (unwind-protect
16772 (progn
16773 (use-local-map map)
16774 (setq org-read-date-inactive inactive)
16775 (add-hook 'post-command-hook 'org-read-date-display)
16776 (setq org-ans0 (read-string prompt default-input
16777 'org-read-date-history nil))
16778 ;; org-ans0: from prompt
16779 ;; org-ans1: from mouse click
16780 ;; org-ans2: from calendar motion
16781 (setq ans (concat org-ans0 " " (or org-ans1 org-ans2))))
16782 (remove-hook 'post-command-hook 'org-read-date-display)
16783 (use-local-map old-map)
16784 (when org-read-date-overlay
16785 (delete-overlay org-read-date-overlay)
16786 (setq org-read-date-overlay nil)))))
16787 (bury-buffer "*Calendar*")))))
16789 (t ; Naked prompt only
16790 (unwind-protect
16791 (setq ans (read-string prompt default-input
16792 'org-read-date-history timestr))
16793 (when org-read-date-overlay
16794 (delete-overlay org-read-date-overlay)
16795 (setq org-read-date-overlay nil)))))
16797 (setq final (org-read-date-analyze ans org-def org-defdecode))
16799 (when org-read-date-analyze-forced-year
16800 (message "Year was forced into %s"
16801 (if org-read-date-force-compatible-dates
16802 "compatible range (1970-2037)"
16803 "range representable on this machine"))
16804 (ding))
16806 ;; One round trip to get rid of 34th of August and stuff like that....
16807 (setq final (decode-time (apply 'encode-time final)))
16809 (setq org-read-date-final-answer ans)
16811 (if to-time
16812 (apply 'encode-time final)
16813 (if (and (boundp 'org-time-was-given) org-time-was-given)
16814 (format "%04d-%02d-%02d %02d:%02d"
16815 (nth 5 final) (nth 4 final) (nth 3 final)
16816 (nth 2 final) (nth 1 final))
16817 (format "%04d-%02d-%02d" (nth 5 final) (nth 4 final) (nth 3 final))))))
16819 (defun org-read-date-display ()
16820 "Display the current date prompt interpretation in the minibuffer."
16821 (when org-read-date-display-live
16822 (when org-read-date-overlay
16823 (delete-overlay org-read-date-overlay))
16824 (when (minibufferp (current-buffer))
16825 (save-excursion
16826 (end-of-line 1)
16827 (while (not (equal (buffer-substring
16828 (max (point-min) (- (point) 4)) (point))
16829 " "))
16830 (insert " ")))
16831 (let* ((ans (concat (buffer-substring (point-at-bol) (point-max))
16832 " " (or org-ans1 org-ans2)))
16833 (org-end-time-was-given nil)
16834 (f (org-read-date-analyze ans org-def org-defdecode))
16835 (fmts (if org-dcst
16836 org-time-stamp-custom-formats
16837 org-time-stamp-formats))
16838 (fmt (if (or org-with-time
16839 (and (boundp 'org-time-was-given) org-time-was-given))
16840 (cdr fmts)
16841 (car fmts)))
16842 (txt (format-time-string fmt (apply 'encode-time f)))
16843 (txt (if org-read-date-inactive (concat "[" (substring txt 1 -1) "]") txt))
16844 (txt (concat "=> " txt)))
16845 (when (and org-end-time-was-given
16846 (string-match org-plain-time-of-day-regexp txt))
16847 (setq txt (concat (substring txt 0 (match-end 0)) "-"
16848 org-end-time-was-given
16849 (substring txt (match-end 0)))))
16850 (when org-read-date-analyze-futurep
16851 (setq txt (concat txt " (=>F)")))
16852 (setq org-read-date-overlay
16853 (make-overlay (1- (point-at-eol)) (point-at-eol)))
16854 (org-overlay-display org-read-date-overlay txt 'secondary-selection)))))
16856 (defun org-read-date-analyze (ans org-def org-defdecode)
16857 "Analyze the combined answer of the date prompt."
16858 ;; FIXME: cleanup and comment
16859 (let ((nowdecode (decode-time (current-time)))
16860 delta deltan deltaw deltadef year month day
16861 hour minute second wday pm h2 m2 tl wday1
16862 iso-year iso-weekday iso-week iso-year iso-date futurep kill-year)
16863 (setq org-read-date-analyze-futurep nil
16864 org-read-date-analyze-forced-year nil)
16865 (when (string-match "\\`[ \t]*\\.[ \t]*\\'" ans)
16866 (setq ans "+0"))
16868 (when (setq delta (org-read-date-get-relative ans (current-time) org-def))
16869 (setq ans (replace-match "" t t ans)
16870 deltan (car delta)
16871 deltaw (nth 1 delta)
16872 deltadef (nth 2 delta)))
16874 ;; Check if there is an iso week date in there. If yes, store the
16875 ;; info and postpone interpreting it until the rest of the parsing
16876 ;; is done.
16877 (when (string-match "\\<\\(?:\\([0-9]+\\)-\\)?[wW]\\([0-9]\\{1,2\\}\\)\\(?:-\\([0-6]\\)\\)?\\([ \t]\\|$\\)" ans)
16878 (setq iso-year (if (match-end 1)
16879 (org-small-year-to-year
16880 (string-to-number (match-string 1 ans))))
16881 iso-weekday (if (match-end 3)
16882 (string-to-number (match-string 3 ans)))
16883 iso-week (string-to-number (match-string 2 ans)))
16884 (setq ans (replace-match "" t t ans)))
16886 ;; Help matching ISO dates with single digit month or day, like 2006-8-11.
16887 (when (string-match
16888 "^ *\\(\\([0-9]+\\)-\\)?\\([0-1]?[0-9]\\)-\\([0-3]?[0-9]\\)\\([^-0-9]\\|$\\)" ans)
16889 (setq year (if (match-end 2)
16890 (string-to-number (match-string 2 ans))
16891 (progn (setq kill-year t)
16892 (string-to-number (format-time-string "%Y"))))
16893 month (string-to-number (match-string 3 ans))
16894 day (string-to-number (match-string 4 ans)))
16895 (if (< year 100) (setq year (+ 2000 year)))
16896 (setq ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
16897 t nil ans)))
16899 ;; Help matching dotted european dates
16900 (when (string-match
16901 "^ *\\(3[01]\\|0?[1-9]\\|[12][0-9]\\)\\. ?\\(0?[1-9]\\|1[012]\\)\\.\\( ?[1-9][0-9]\\{3\\}\\)?" ans)
16902 (setq year (if (match-end 3) (string-to-number (match-string 3 ans))
16903 (setq kill-year t)
16904 (string-to-number (format-time-string "%Y")))
16905 day (string-to-number (match-string 1 ans))
16906 month (string-to-number (match-string 2 ans))
16907 ans (replace-match (format "%04d-%02d-%02d" year month day)
16908 t nil ans)))
16910 ;; Help matching american dates, like 5/30 or 5/30/7
16911 (when (string-match
16912 "^ *\\(0?[1-9]\\|1[012]\\)/\\(0?[1-9]\\|[12][0-9]\\|3[01]\\)\\(/\\([0-9]+\\)\\)?\\([^/0-9]\\|$\\)" ans)
16913 (setq year (if (match-end 4)
16914 (string-to-number (match-string 4 ans))
16915 (progn (setq kill-year t)
16916 (string-to-number (format-time-string "%Y"))))
16917 month (string-to-number (match-string 1 ans))
16918 day (string-to-number (match-string 2 ans)))
16919 (if (< year 100) (setq year (+ 2000 year)))
16920 (setq ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
16921 t nil ans)))
16922 ;; Help matching am/pm times, because `parse-time-string' does not do that.
16923 ;; If there is a time with am/pm, and *no* time without it, we convert
16924 ;; so that matching will be successful.
16925 (loop for i from 1 to 2 do ; twice, for end time as well
16926 (when (and (not (string-match "\\(\\`\\|[^+]\\)[012]?[0-9]:[0-9][0-9]\\([ \t\n]\\|$\\)" ans))
16927 (string-match "\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\(am\\|AM\\|pm\\|PM\\)\\>" ans))
16928 (setq hour (string-to-number (match-string 1 ans))
16929 minute (if (match-end 3)
16930 (string-to-number (match-string 3 ans))
16932 pm (equal ?p
16933 (string-to-char (downcase (match-string 4 ans)))))
16934 (if (and (= hour 12) (not pm))
16935 (setq hour 0)
16936 (if (and pm (< hour 12)) (setq hour (+ 12 hour))))
16937 (setq ans (replace-match (format "%02d:%02d" hour minute)
16938 t t ans))))
16940 ;; Check if a time range is given as a duration
16941 (when (string-match "\\([012]?[0-9]\\):\\([0-6][0-9]\\)\\+\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?" ans)
16942 (setq hour (string-to-number (match-string 1 ans))
16943 h2 (+ hour (string-to-number (match-string 3 ans)))
16944 minute (string-to-number (match-string 2 ans))
16945 m2 (+ minute (if (match-end 5) (string-to-number
16946 (match-string 5 ans))0)))
16947 (if (>= m2 60) (setq h2 (1+ h2) m2 (- m2 60)))
16948 (setq ans (replace-match (format "%02d:%02d-%02d:%02d" hour minute h2 m2)
16949 t t ans)))
16951 ;; Check if there is a time range
16952 (when (boundp 'org-end-time-was-given)
16953 (setq org-time-was-given nil)
16954 (when (and (string-match org-plain-time-of-day-regexp ans)
16955 (match-end 8))
16956 (setq org-end-time-was-given (match-string 8 ans))
16957 (setq ans (concat (substring ans 0 (match-beginning 7))
16958 (substring ans (match-end 7))))))
16960 (setq tl (parse-time-string ans)
16961 day (or (nth 3 tl) (nth 3 org-defdecode))
16962 month (or (nth 4 tl)
16963 (if (and org-read-date-prefer-future
16964 (nth 3 tl) (< (nth 3 tl) (nth 3 nowdecode)))
16965 (prog1 (1+ (nth 4 nowdecode)) (setq futurep t))
16966 (nth 4 org-defdecode)))
16967 year (or (and (not kill-year) (nth 5 tl))
16968 (if (and org-read-date-prefer-future
16969 (nth 4 tl) (< (nth 4 tl) (nth 4 nowdecode)))
16970 (prog1 (1+ (nth 5 nowdecode)) (setq futurep t))
16971 (nth 5 org-defdecode)))
16972 hour (or (nth 2 tl) (nth 2 org-defdecode))
16973 minute (or (nth 1 tl) (nth 1 org-defdecode))
16974 second (or (nth 0 tl) 0)
16975 wday (nth 6 tl))
16977 (when (and (eq org-read-date-prefer-future 'time)
16978 (not (nth 3 tl)) (not (nth 4 tl)) (not (nth 5 tl))
16979 (equal day (nth 3 nowdecode))
16980 (equal month (nth 4 nowdecode))
16981 (equal year (nth 5 nowdecode))
16982 (nth 2 tl)
16983 (or (< (nth 2 tl) (nth 2 nowdecode))
16984 (and (= (nth 2 tl) (nth 2 nowdecode))
16985 (nth 1 tl)
16986 (< (nth 1 tl) (nth 1 nowdecode)))))
16987 (setq day (1+ day)
16988 futurep t))
16990 ;; Special date definitions below
16991 (cond
16992 (iso-week
16993 ;; There was an iso week
16994 (require 'cal-iso)
16995 (setq futurep nil)
16996 (setq year (or iso-year year)
16997 day (or iso-weekday wday 1)
16998 wday nil ; to make sure that the trigger below does not match
16999 iso-date (calendar-gregorian-from-absolute
17000 (calendar-absolute-from-iso
17001 (list iso-week day year))))
17002 ; FIXME: Should we also push ISO weeks into the future?
17003 ; (when (and org-read-date-prefer-future
17004 ; (not iso-year)
17005 ; (< (calendar-absolute-from-gregorian iso-date)
17006 ; (time-to-days (current-time))))
17007 ; (setq year (1+ year)
17008 ; iso-date (calendar-gregorian-from-absolute
17009 ; (calendar-absolute-from-iso
17010 ; (list iso-week day year)))))
17011 (setq month (car iso-date)
17012 year (nth 2 iso-date)
17013 day (nth 1 iso-date)))
17014 (deltan
17015 (setq futurep nil)
17016 (unless deltadef
17017 (let ((now (decode-time (current-time))))
17018 (setq day (nth 3 now) month (nth 4 now) year (nth 5 now))))
17019 (cond ((member deltaw '("d" "")) (setq day (+ day deltan)))
17020 ((equal deltaw "w") (setq day (+ day (* 7 deltan))))
17021 ((equal deltaw "m") (setq month (+ month deltan)))
17022 ((equal deltaw "y") (setq year (+ year deltan)))))
17023 ((and wday (not (nth 3 tl)))
17024 ;; Weekday was given, but no day, so pick that day in the week
17025 ;; on or after the derived date.
17026 (setq wday1 (nth 6 (decode-time (encode-time 0 0 0 day month year))))
17027 (unless (equal wday wday1)
17028 (setq day (+ day (% (- wday wday1 -7) 7))))))
17029 (if (and (boundp 'org-time-was-given)
17030 (nth 2 tl))
17031 (setq org-time-was-given t))
17032 (if (< year 100) (setq year (+ 2000 year)))
17033 ;; Check of the date is representable
17034 (if org-read-date-force-compatible-dates
17035 (progn
17036 (if (< year 1970)
17037 (setq year 1970 org-read-date-analyze-forced-year t))
17038 (if (> year 2037)
17039 (setq year 2037 org-read-date-analyze-forced-year t)))
17040 (condition-case nil
17041 (ignore (encode-time second minute hour day month year))
17042 (error
17043 (setq year (nth 5 org-defdecode))
17044 (setq org-read-date-analyze-forced-year t))))
17045 (setq org-read-date-analyze-futurep futurep)
17046 (list second minute hour day month year)))
17048 (defvar parse-time-weekdays)
17049 (defun org-read-date-get-relative (s today default)
17050 "Check string S for special relative date string.
17051 TODAY and DEFAULT are internal times, for today and for a default.
17052 Return shift list (N what def-flag)
17053 WHAT is \"d\", \"w\", \"m\", or \"y\" for day, week, month, year.
17054 N is the number of WHATs to shift.
17055 DEF-FLAG is t when a double ++ or -- indicates shift relative to
17056 the DEFAULT date rather than TODAY."
17057 (require 'parse-time)
17058 (when (and
17059 (string-match
17060 (concat
17061 "\\`[ \t]*\\([-+]\\{0,2\\}\\)"
17062 "\\([0-9]+\\)?"
17063 "\\([hdwmy]\\|\\(" (mapconcat 'car parse-time-weekdays "\\|") "\\)\\)?"
17064 "\\([ \t]\\|$\\)") s)
17065 (or (> (match-end 1) (match-beginning 1)) (match-end 4)))
17066 (let* ((dir (if (> (match-end 1) (match-beginning 1))
17067 (string-to-char (substring (match-string 1 s) -1))
17068 ?+))
17069 (rel (and (match-end 1) (= 2 (- (match-end 1) (match-beginning 1)))))
17070 (n (if (match-end 2) (string-to-number (match-string 2 s)) 1))
17071 (what (if (match-end 3) (match-string 3 s) "d"))
17072 (wday1 (cdr (assoc (downcase what) parse-time-weekdays)))
17073 (date (if rel default today))
17074 (wday (nth 6 (decode-time date)))
17075 delta)
17076 (if wday1
17077 (progn
17078 (setq delta (mod (+ 7 (- wday1 wday)) 7))
17079 (if (= delta 0) (setq delta 7))
17080 (if (= dir ?-)
17081 (progn
17082 (setq delta (- delta 7))
17083 (if (= delta 0) (setq delta -7))))
17084 (if (> n 1) (setq delta (+ delta (* (1- n) (if (= dir ?-) -7 7)))))
17085 (list delta "d" rel))
17086 (list (* n (if (= dir ?-) -1 1)) what rel)))))
17088 (defun org-order-calendar-date-args (arg1 arg2 arg3)
17089 "Turn a user-specified date into the internal representation.
17090 The internal representation needed by the calendar is (month day year).
17091 This is a wrapper to handle the brain-dead convention in calendar that
17092 user function argument order change dependent on argument order."
17093 (if (boundp 'calendar-date-style)
17094 (cond
17095 ((eq calendar-date-style 'american)
17096 (list arg1 arg2 arg3))
17097 ((eq calendar-date-style 'european)
17098 (list arg2 arg1 arg3))
17099 ((eq calendar-date-style 'iso)
17100 (list arg2 arg3 arg1)))
17101 (org-no-warnings ;; european-calendar-style is obsolete as of version 23.1
17102 (if (org-bound-and-true-p european-calendar-style)
17103 (list arg2 arg1 arg3)
17104 (list arg1 arg2 arg3)))))
17106 (defun org-eval-in-calendar (form &optional keepdate)
17107 "Eval FORM in the calendar window and return to current window.
17108 When KEEPDATE is non-nil, update `org-ans2' from the cursor date,
17109 otherwise stick to the current value of `org-ans2'."
17110 (let ((sf (selected-frame))
17111 (sw (selected-window)))
17112 (select-window (get-buffer-window "*Calendar*" t))
17113 (eval form)
17114 (when (and (not keepdate) (calendar-cursor-to-date))
17115 (let* ((date (calendar-cursor-to-date))
17116 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
17117 (setq org-ans2 (format-time-string "%Y-%m-%d" time))))
17118 (move-overlay org-date-ovl (1- (point)) (1+ (point)) (current-buffer))
17119 (select-window sw)
17120 (org-select-frame-set-input-focus sf)))
17122 (defun org-calendar-select ()
17123 "Return to `org-read-date' with the date currently selected.
17124 This is used by `org-read-date' in a temporary keymap for the calendar buffer."
17125 (interactive)
17126 (when (calendar-cursor-to-date)
17127 (let* ((date (calendar-cursor-to-date))
17128 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
17129 (setq org-ans1 (format-time-string "%Y-%m-%d" time)))
17130 (if (active-minibuffer-window) (exit-minibuffer))))
17132 (defun org-insert-time-stamp (time &optional with-hm inactive pre post extra)
17133 "Insert a date stamp for the date given by the internal TIME.
17134 WITH-HM means use the stamp format that includes the time of the day.
17135 INACTIVE means use square brackets instead of angular ones, so that the
17136 stamp will not contribute to the agenda.
17137 PRE and POST are optional strings to be inserted before and after the
17138 stamp.
17139 The command returns the inserted time stamp."
17140 (let ((fmt (funcall (if with-hm 'cdr 'car) org-time-stamp-formats))
17141 stamp)
17142 (if inactive (setq fmt (concat "[" (substring fmt 1 -1) "]")))
17143 (insert-before-markers (or pre ""))
17144 (when (listp extra)
17145 (setq extra (car extra))
17146 (if (and (stringp extra)
17147 (string-match "\\([0-9]+\\):\\([0-9]+\\)" extra))
17148 (setq extra (format "-%02d:%02d"
17149 (string-to-number (match-string 1 extra))
17150 (string-to-number (match-string 2 extra))))
17151 (setq extra nil)))
17152 (when extra
17153 (setq fmt (concat (substring fmt 0 -1) extra (substring fmt -1))))
17154 (insert-before-markers (setq stamp (format-time-string fmt time)))
17155 (insert-before-markers (or post ""))
17156 (setq org-last-inserted-timestamp stamp)))
17158 (defun org-toggle-time-stamp-overlays ()
17159 "Toggle the use of custom time stamp formats."
17160 (interactive)
17161 (setq org-display-custom-times (not org-display-custom-times))
17162 (unless org-display-custom-times
17163 (let ((p (point-min)) (bmp (buffer-modified-p)))
17164 (while (setq p (next-single-property-change p 'display))
17165 (if (and (get-text-property p 'display)
17166 (eq (get-text-property p 'face) 'org-date))
17167 (remove-text-properties
17168 p (setq p (next-single-property-change p 'display))
17169 '(display t))))
17170 (set-buffer-modified-p bmp)))
17171 (if (featurep 'xemacs)
17172 (remove-text-properties (point-min) (point-max) '(end-glyph t)))
17173 (org-restart-font-lock)
17174 (setq org-table-may-need-update t)
17175 (if org-display-custom-times
17176 (message "Time stamps are overlaid with custom format")
17177 (message "Time stamp overlays removed")))
17179 (defun org-display-custom-time (beg end)
17180 "Overlay modified time stamp format over timestamp between BEG and END."
17181 (let* ((ts (buffer-substring beg end))
17182 t1 w1 with-hm tf time str w2 (off 0))
17183 (save-match-data
17184 (setq t1 (org-parse-time-string ts t))
17185 (if (string-match "\\(-[0-9]+:[0-9]+\\)?\\( [.+]?\\+[0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)?\\'" ts)
17186 (setq off (- (match-end 0) (match-beginning 0)))))
17187 (setq end (- end off))
17188 (setq w1 (- end beg)
17189 with-hm (and (nth 1 t1) (nth 2 t1))
17190 tf (funcall (if with-hm 'cdr 'car) org-time-stamp-custom-formats)
17191 time (org-fix-decoded-time t1)
17192 str (org-add-props
17193 (format-time-string
17194 (substring tf 1 -1) (apply 'encode-time time))
17195 nil 'mouse-face 'highlight)
17196 w2 (length str))
17197 (if (not (= w2 w1))
17198 (add-text-properties (1+ beg) (+ 2 beg)
17199 (list 'org-dwidth t 'org-dwidth-n (- w1 w2))))
17200 (if (featurep 'xemacs)
17201 (progn
17202 (put-text-property beg end 'invisible t)
17203 (put-text-property beg end 'end-glyph (make-glyph str)))
17204 (put-text-property beg end 'display str))))
17206 (defun org-translate-time (string)
17207 "Translate all timestamps in STRING to custom format.
17208 But do this only if the variable `org-display-custom-times' is set."
17209 (when org-display-custom-times
17210 (save-match-data
17211 (let* ((start 0)
17212 (re org-ts-regexp-both)
17213 t1 with-hm inactive tf time str beg end)
17214 (while (setq start (string-match re string start))
17215 (setq beg (match-beginning 0)
17216 end (match-end 0)
17217 t1 (save-match-data
17218 (org-parse-time-string (substring string beg end) t))
17219 with-hm (and (nth 1 t1) (nth 2 t1))
17220 inactive (equal (substring string beg (1+ beg)) "[")
17221 tf (funcall (if with-hm 'cdr 'car)
17222 org-time-stamp-custom-formats)
17223 time (org-fix-decoded-time t1)
17224 str (format-time-string
17225 (concat
17226 (if inactive "[" "<") (substring tf 1 -1)
17227 (if inactive "]" ">"))
17228 (apply 'encode-time time))
17229 string (replace-match str t t string)
17230 start (+ start (length str)))))))
17231 string)
17233 (defun org-fix-decoded-time (time)
17234 "Set 0 instead of nil for the first 6 elements of time.
17235 Don't touch the rest."
17236 (let ((n 0))
17237 (mapcar (lambda (x) (if (< (setq n (1+ n)) 7) (or x 0) x)) time)))
17239 (define-obsolete-function-alias 'org-days-to-time 'org-time-stamp-to-now "24.4")
17241 (defun org-time-stamp-to-now (timestamp-string &optional seconds)
17242 "Difference between TIMESTAMP-STRING and now in days.
17243 If SECONDS is non-nil, return the difference in seconds."
17244 (let ((fdiff (if seconds 'org-float-time 'time-to-days)))
17245 (- (funcall fdiff (org-time-string-to-time timestamp-string))
17246 (funcall fdiff (current-time)))))
17248 (defun org-deadline-close (timestamp-string &optional ndays)
17249 "Is the time in TIMESTAMP-STRING close to the current date?"
17250 (setq ndays (or ndays (org-get-wdays timestamp-string)))
17251 (and (< (org-time-stamp-to-now timestamp-string) ndays)
17252 (not (org-entry-is-done-p))))
17254 (defun org-get-wdays (ts &optional delay zero-delay)
17255 "Get the deadline lead time appropriate for timestring TS.
17256 When DELAY is non-nil, get the delay time for scheduled items
17257 instead of the deadline lead time. When ZERO-DELAY is non-nil
17258 and `org-scheduled-delay-days' is 0, enforce 0 as the delay,
17259 don't try to find the delay cookie in the scheduled timestamp."
17260 (let ((tv (if delay org-scheduled-delay-days
17261 org-deadline-warning-days)))
17262 (cond
17263 ((or (and delay (< tv 0))
17264 (and delay zero-delay (<= tv 0))
17265 (and (not delay) (<= tv 0)))
17266 ;; Enforce this value no matter what
17267 (- tv))
17268 ((string-match "-\\([0-9]+\\)\\([hdwmy]\\)\\(\\'\\|>\\| \\)" ts)
17269 ;; lead time is specified.
17270 (floor (* (string-to-number (match-string 1 ts))
17271 (cdr (assoc (match-string 2 ts)
17272 '(("d" . 1) ("w" . 7)
17273 ("m" . 30.4) ("y" . 365.25)
17274 ("h" . 0.041667)))))))
17275 ;; go for the default.
17276 (t tv))))
17278 (defun org-calendar-select-mouse (ev)
17279 "Return to `org-read-date' with the date currently selected.
17280 This is used by `org-read-date' in a temporary keymap for the calendar buffer."
17281 (interactive "e")
17282 (mouse-set-point ev)
17283 (when (calendar-cursor-to-date)
17284 (let* ((date (calendar-cursor-to-date))
17285 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
17286 (setq org-ans1 (format-time-string "%Y-%m-%d" time)))
17287 (if (active-minibuffer-window) (exit-minibuffer))))
17289 (defun org-check-deadlines (ndays)
17290 "Check if there are any deadlines due or past due.
17291 A deadline is considered due if it happens within `org-deadline-warning-days'
17292 days from today's date. If the deadline appears in an entry marked DONE,
17293 it is not shown. The prefix arg NDAYS can be used to test that many
17294 days. If the prefix is a raw \\[universal-argument] prefix, all deadlines are shown."
17295 (interactive "P")
17296 (let* ((org-warn-days
17297 (cond
17298 ((equal ndays '(4)) 100000)
17299 (ndays (prefix-numeric-value ndays))
17300 (t (abs org-deadline-warning-days))))
17301 (case-fold-search nil)
17302 (regexp (concat "\\<" org-deadline-string " *<\\([^>]+\\)>"))
17303 (callback
17304 (lambda () (org-deadline-close (match-string 1) org-warn-days))))
17306 (message "%d deadlines past-due or due within %d days"
17307 (org-occur regexp nil callback)
17308 org-warn-days)))
17310 (defsubst org-re-timestamp (type)
17311 "Return a regexp for timestamp TYPE.
17312 Allowed values for TYPE are:
17314 all: all timestamps
17315 active: only active timestamps (<...>)
17316 inactive: only inactive timestamps ([...])
17317 scheduled: only scheduled timestamps
17318 deadline: only deadline timestamps
17319 closed: only closed time-stamps
17321 When TYPE is nil, fall back on returning a regexp that matches
17322 both scheduled and deadline timestamps."
17323 (cond ((eq type 'all) "\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\}\\(?: +[^]+0-9> \n -]+\\)?\\(?: +[0-9]\\{1,2\\}:[0-9]\\{2\\}\\)?\\)")
17324 ((eq type 'active) org-ts-regexp)
17325 ((eq type 'inactive) "\\[\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^ \n>]*?\\)\\]")
17326 ((eq type 'scheduled) (concat "\\<" org-scheduled-string " *<\\([^>]+\\)>"))
17327 ((eq type 'deadline) (concat "\\<" org-deadline-string " *<\\([^>]+\\)>"))
17328 ((eq type 'closed) (concat org-closed-string " \\[\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^ \n>]*?\\)\\]"))
17329 ((eq type 'scheduled-or-deadline)
17330 (concat "\\<\\(?:" org-deadline-string "\\|" org-scheduled-string "\\) *<\\([^>]+\\)>"))))
17332 (defun org-check-before-date (date)
17333 "Check if there are deadlines or scheduled entries before DATE."
17334 (interactive (list (org-read-date)))
17335 (let ((case-fold-search nil)
17336 (regexp (org-re-timestamp org-ts-type))
17337 (callback
17338 (lambda () (time-less-p
17339 (org-time-string-to-time (match-string 1))
17340 (org-time-string-to-time date)))))
17341 (message "%d entries before %s"
17342 (org-occur regexp nil callback) date)))
17344 (defun org-check-after-date (date)
17345 "Check if there are deadlines or scheduled entries after DATE."
17346 (interactive (list (org-read-date)))
17347 (let ((case-fold-search nil)
17348 (regexp (org-re-timestamp org-ts-type))
17349 (callback
17350 (lambda () (not
17351 (time-less-p
17352 (org-time-string-to-time (match-string 1))
17353 (org-time-string-to-time date))))))
17354 (message "%d entries after %s"
17355 (org-occur regexp nil callback) date)))
17357 (defun org-check-dates-range (start-date end-date)
17358 "Check for deadlines/scheduled entries between START-DATE and END-DATE."
17359 (interactive (list (org-read-date nil nil nil "Range starts")
17360 (org-read-date nil nil nil "Range end")))
17361 (let ((case-fold-search nil)
17362 (regexp (org-re-timestamp org-ts-type))
17363 (callback
17364 (lambda ()
17365 (let ((match (match-string 1)))
17366 (and
17367 (not (time-less-p
17368 (org-time-string-to-time match)
17369 (org-time-string-to-time start-date)))
17370 (time-less-p
17371 (org-time-string-to-time match)
17372 (org-time-string-to-time end-date)))))))
17373 (message "%d entries between %s and %s"
17374 (org-occur regexp nil callback) start-date end-date)))
17376 (defun org-evaluate-time-range (&optional to-buffer)
17377 "Evaluate a time range by computing the difference between start and end.
17378 Normally the result is just printed in the echo area, but with prefix arg
17379 TO-BUFFER, the result is inserted just after the date stamp into the buffer.
17380 If the time range is actually in a table, the result is inserted into the
17381 next column.
17382 For time difference computation, a year is assumed to be exactly 365
17383 days in order to avoid rounding problems."
17384 (interactive "P")
17386 (org-clock-update-time-maybe)
17387 (save-excursion
17388 (unless (org-at-date-range-p t)
17389 (goto-char (point-at-bol))
17390 (re-search-forward org-tr-regexp-both (point-at-eol) t))
17391 (if (not (org-at-date-range-p t))
17392 (user-error "Not at a time-stamp range, and none found in current line")))
17393 (let* ((ts1 (match-string 1))
17394 (ts2 (match-string 2))
17395 (havetime (or (> (length ts1) 15) (> (length ts2) 15)))
17396 (match-end (match-end 0))
17397 (time1 (org-time-string-to-time ts1))
17398 (time2 (org-time-string-to-time ts2))
17399 (t1 (org-float-time time1))
17400 (t2 (org-float-time time2))
17401 (diff (abs (- t2 t1)))
17402 (negative (< (- t2 t1) 0))
17403 ;; (ys (floor (* 365 24 60 60)))
17404 (ds (* 24 60 60))
17405 (hs (* 60 60))
17406 (fy "%dy %dd %02d:%02d")
17407 (fy1 "%dy %dd")
17408 (fd "%dd %02d:%02d")
17409 (fd1 "%dd")
17410 (fh "%02d:%02d")
17411 y d h m align)
17412 (if havetime
17413 (setq ; y (floor (/ diff ys)) diff (mod diff ys)
17415 d (floor (/ diff ds)) diff (mod diff ds)
17416 h (floor (/ diff hs)) diff (mod diff hs)
17417 m (floor (/ diff 60)))
17418 (setq ; y (floor (/ diff ys)) diff (mod diff ys)
17420 d (floor (+ (/ diff ds) 0.5))
17421 h 0 m 0))
17422 (if (not to-buffer)
17423 (message "%s" (org-make-tdiff-string y d h m))
17424 (if (org-at-table-p)
17425 (progn
17426 (goto-char match-end)
17427 (setq align t)
17428 (and (looking-at " *|") (goto-char (match-end 0))))
17429 (goto-char match-end))
17430 (if (looking-at
17431 "\\( *-? *[0-9]+y\\)?\\( *[0-9]+d\\)? *[0-9][0-9]:[0-9][0-9]")
17432 (replace-match ""))
17433 (if negative (insert " -"))
17434 (if (> y 0) (insert " " (format (if havetime fy fy1) y d h m))
17435 (if (> d 0) (insert " " (format (if havetime fd fd1) d h m))
17436 (insert " " (format fh h m))))
17437 (if align (org-table-align))
17438 (message "Time difference inserted")))))
17440 (defun org-make-tdiff-string (y d h m)
17441 (let ((fmt "")
17442 (l nil))
17443 (if (> y 0) (setq fmt (concat fmt "%d year" (if (> y 1) "s" "") " ")
17444 l (push y l)))
17445 (if (> d 0) (setq fmt (concat fmt "%d day" (if (> d 1) "s" "") " ")
17446 l (push d l)))
17447 (if (> h 0) (setq fmt (concat fmt "%d hour" (if (> h 1) "s" "") " ")
17448 l (push h l)))
17449 (if (> m 0) (setq fmt (concat fmt "%d minute" (if (> m 1) "s" "") " ")
17450 l (push m l)))
17451 (apply 'format fmt (nreverse l))))
17453 (defun org-time-string-to-time (s &optional buffer pos)
17454 "Convert a timestamp string into internal time."
17455 (condition-case errdata
17456 (apply 'encode-time (org-parse-time-string s))
17457 (error (error "Bad timestamp `%s'%s\nError was: %s"
17458 s (if (not (and buffer pos))
17460 (format " at %d in buffer `%s'" pos buffer))
17461 (cdr errdata)))))
17463 (defun org-time-string-to-seconds (s)
17464 "Convert a timestamp string to a number of seconds."
17465 (org-float-time (org-time-string-to-time s)))
17467 (defun org-time-string-to-absolute (s &optional daynr prefer show-all buffer pos)
17468 "Convert a time stamp to an absolute day number.
17469 If there is a specifier for a cyclic time stamp, get the closest
17470 date to DAYNR.
17471 PREFER and SHOW-ALL are passed through to `org-closest-date'.
17472 The variable `date' is bound by the calendar when this is called."
17473 (cond
17474 ((and daynr (string-match "\\`%%\\((.*)\\)" s))
17475 (if (org-diary-sexp-entry (match-string 1 s) "" date)
17476 daynr
17477 (+ daynr 1000)))
17478 ((and daynr (string-match "\\+[0-9]+[hdwmy]" s))
17479 (org-closest-date s (if (and (boundp 'daynr) (integerp daynr)) daynr
17480 (time-to-days (current-time))) (match-string 0 s)
17481 prefer show-all))
17482 (t (time-to-days
17483 (condition-case errdata
17484 (apply 'encode-time (org-parse-time-string s))
17485 (error (error "Bad timestamp `%s'%s\nError was: %s"
17486 s (if (not (and buffer pos))
17488 (format " at %d in buffer `%s'" pos buffer))
17489 (cdr errdata))))))))
17491 (defun org-days-to-iso-week (days)
17492 "Return the iso week number."
17493 (require 'cal-iso)
17494 (car (calendar-iso-from-absolute days)))
17496 (defun org-small-year-to-year (year)
17497 "Convert 2-digit years into 4-digit years.
17498 38-99 are mapped into 1938-1999. 1-37 are mapped into 2001-2037.
17499 The year 2000 cannot be abbreviated. Any year larger than 99
17500 is returned unchanged."
17501 (if (< year 38)
17502 (setq year (+ 2000 year))
17503 (if (< year 100)
17504 (setq year (+ 1900 year))))
17505 year)
17507 (defun org-time-from-absolute (d)
17508 "Return the time corresponding to date D.
17509 D may be an absolute day number, or a calendar-type list (month day year)."
17510 (if (numberp d) (setq d (calendar-gregorian-from-absolute d)))
17511 (encode-time 0 0 0 (nth 1 d) (car d) (nth 2 d)))
17513 (defun org-calendar-holiday ()
17514 "List of holidays, for Diary display in Org-mode."
17515 (require 'holidays)
17516 (let ((hl (funcall
17517 (if (fboundp 'calendar-check-holidays)
17518 'calendar-check-holidays 'check-calendar-holidays) date)))
17519 (if hl (mapconcat 'identity hl "; "))))
17521 (defun org-diary-sexp-entry (sexp entry date)
17522 "Process a SEXP diary ENTRY for DATE."
17523 (require 'diary-lib)
17524 (let ((result (if calendar-debug-sexp
17525 (let ((stack-trace-on-error t))
17526 (eval (car (read-from-string sexp))))
17527 (condition-case nil
17528 (eval (car (read-from-string sexp)))
17529 (error
17530 (beep)
17531 (message "Bad sexp at line %d in %s: %s"
17532 (org-current-line)
17533 (buffer-file-name) sexp)
17534 (sleep-for 2))))))
17535 (cond ((stringp result) (split-string result "; "))
17536 ((and (consp result)
17537 (not (consp (cdr result)))
17538 (stringp (cdr result))) (cdr result))
17539 ((and (consp result)
17540 (stringp (car result))) result)
17541 (result entry))))
17543 (defun org-diary-to-ical-string (frombuf)
17544 "Get iCalendar entries from diary entries in buffer FROMBUF.
17545 This uses the icalendar.el library."
17546 (let* ((tmpdir (if (featurep 'xemacs)
17547 (temp-directory)
17548 temporary-file-directory))
17549 (tmpfile (make-temp-name
17550 (expand-file-name "orgics" tmpdir)))
17551 buf rtn b e)
17552 (with-current-buffer frombuf
17553 (icalendar-export-region (point-min) (point-max) tmpfile)
17554 (setq buf (find-buffer-visiting tmpfile))
17555 (set-buffer buf)
17556 (goto-char (point-min))
17557 (if (re-search-forward "^BEGIN:VEVENT" nil t)
17558 (setq b (match-beginning 0)))
17559 (goto-char (point-max))
17560 (if (re-search-backward "^END:VEVENT" nil t)
17561 (setq e (match-end 0)))
17562 (setq rtn (if (and b e) (concat (buffer-substring b e) "\n") "")))
17563 (kill-buffer buf)
17564 (delete-file tmpfile)
17565 rtn))
17567 (defun org-closest-date (start current change prefer show-all)
17568 "Find the date closest to CURRENT that is consistent with START and CHANGE.
17569 When PREFER is `past', return a date that is either CURRENT or past.
17570 When PREFER is `future', return a date that is either CURRENT or future.
17571 When SHOW-ALL is nil, only return the current occurrence of a time stamp."
17572 ;; Make the proper lists from the dates
17573 (catch 'exit
17574 (let ((a1 '(("h" . hour)
17575 ("d" . day)
17576 ("w" . week)
17577 ("m" . month)
17578 ("y" . year)))
17579 (shour (nth 2 (org-parse-time-string start)))
17580 dn dw sday cday n1 n2 n0
17581 d m y y1 y2 date1 date2 nmonths nm ny m2)
17583 (setq start (org-date-to-gregorian start)
17584 current (org-date-to-gregorian
17585 (if show-all
17586 current
17587 (time-to-days (current-time))))
17588 sday (calendar-absolute-from-gregorian start)
17589 cday (calendar-absolute-from-gregorian current))
17591 (if (<= cday sday) (throw 'exit sday))
17593 (if (string-match "\\(\\+[0-9]+\\)\\([hdwmy]\\)" change)
17594 (setq dn (string-to-number (match-string 1 change))
17595 dw (cdr (assoc (match-string 2 change) a1)))
17596 (user-error "Invalid change specifier: %s" change))
17597 (if (eq dw 'week) (setq dw 'day dn (* 7 dn)))
17598 (cond
17599 ((eq dw 'hour)
17600 (let ((missing-hours
17601 (mod (+ (- (* 24 (- cday sday)) shour) org-extend-today-until)
17602 dn)))
17603 (setq n1 (if (zerop missing-hours) cday
17604 (- cday (1+ (floor (/ missing-hours 24)))))
17605 n2 (+ cday (floor (/ (- dn missing-hours) 24))))))
17606 ((eq dw 'day)
17607 (setq n1 (+ sday (* dn (floor (/ (- cday sday) dn))))
17608 n2 (+ n1 dn)))
17609 ((eq dw 'year)
17610 (setq d (nth 1 start) m (car start) y1 (nth 2 start) y2 (nth 2 current))
17611 (setq y1 (+ (* (floor (/ (- y2 y1) dn)) dn) y1))
17612 (setq date1 (list m d y1)
17613 n1 (calendar-absolute-from-gregorian date1)
17614 date2 (list m d (+ y1 (* (if (< n1 cday) 1 -1) dn)))
17615 n2 (calendar-absolute-from-gregorian date2)))
17616 ((eq dw 'month)
17617 ;; approx number of month between the two dates
17618 (setq nmonths (floor (/ (- cday sday) 30.436875)))
17619 ;; How often does dn fit in there?
17620 (setq d (nth 1 start) m (car start) y (nth 2 start)
17621 nm (* dn (max 0 (1- (floor (/ nmonths dn)))))
17622 m (+ m nm)
17623 ny (floor (/ m 12))
17624 y (+ y ny)
17625 m (- m (* ny 12)))
17626 (while (> m 12) (setq m (- m 12) y (1+ y)))
17627 (setq n1 (calendar-absolute-from-gregorian (list m d y)))
17628 (setq m2 (+ m dn) y2 y)
17629 (if (> m2 12) (setq y2 (1+ y2) m2 (- m2 12)))
17630 (setq n2 (calendar-absolute-from-gregorian (list m2 d y2)))
17631 (while (<= n2 cday)
17632 (setq n1 n2 m m2 y y2)
17633 (setq m2 (+ m dn) y2 y)
17634 (if (> m2 12) (setq y2 (1+ y2) m2 (- m2 12)))
17635 (setq n2 (calendar-absolute-from-gregorian (list m2 d y2))))))
17636 ;; Make sure n1 is the earlier date
17637 (setq n0 n1 n1 (min n1 n2) n2 (max n0 n2))
17638 (if show-all
17639 (cond
17640 ((eq prefer 'past) (if (= cday n2) n2 n1))
17641 ((eq prefer 'future) (if (= cday n1) n1 n2))
17642 (t (if (> (abs (- cday n1)) (abs (- cday n2))) n2 n1)))
17643 (cond
17644 ((eq prefer 'past) (if (= cday n2) n2 n1))
17645 ((eq prefer 'future) (if (= cday n1) n1 n2))
17646 (t (if (= cday n1) n1 n2)))))))
17648 (defun org-date-to-gregorian (date)
17649 "Turn any specification of DATE into a Gregorian date for the calendar."
17650 (cond ((integerp date) (calendar-gregorian-from-absolute date))
17651 ((and (listp date) (= (length date) 3)) date)
17652 ((stringp date)
17653 (setq date (org-parse-time-string date))
17654 (list (nth 4 date) (nth 3 date) (nth 5 date)))
17655 ((listp date)
17656 (list (nth 4 date) (nth 3 date) (nth 5 date)))))
17658 (defun org-parse-time-string (s &optional nodefault)
17659 "Parse the standard Org-mode time string.
17660 This should be a lot faster than the normal `parse-time-string'.
17661 If time is not given, defaults to 0:00. However, with optional NODEFAULT,
17662 hour and minute fields will be nil if not given."
17663 (cond ((string-match org-ts-regexp0 s)
17664 (list 0
17665 (if (or (match-beginning 8) (not nodefault))
17666 (string-to-number (or (match-string 8 s) "0")))
17667 (if (or (match-beginning 7) (not nodefault))
17668 (string-to-number (or (match-string 7 s) "0")))
17669 (string-to-number (match-string 4 s))
17670 (string-to-number (match-string 3 s))
17671 (string-to-number (match-string 2 s))
17672 nil nil nil))
17673 ((string-match "^<[^>]+>$" s)
17674 (decode-time (seconds-to-time (org-matcher-time s))))
17675 (t (error "Not a standard Org-mode time string: %s" s))))
17677 (defun org-timestamp-up (&optional arg)
17678 "Increase the date item at the cursor by one.
17679 If the cursor is on the year, change the year. If it is on the month,
17680 the day or the time, change that.
17681 With prefix ARG, change by that many units."
17682 (interactive "p")
17683 (org-timestamp-change (prefix-numeric-value arg) nil 'updown))
17685 (defun org-timestamp-down (&optional arg)
17686 "Decrease the date item at the cursor by one.
17687 If the cursor is on the year, change the year. If it is on the month,
17688 the day or the time, change that.
17689 With prefix ARG, change by that many units."
17690 (interactive "p")
17691 (org-timestamp-change (- (prefix-numeric-value arg)) nil 'updown))
17693 (defun org-timestamp-up-day (&optional arg)
17694 "Increase the date in the time stamp by one day.
17695 With prefix ARG, change that many days."
17696 (interactive "p")
17697 (if (and (not (org-at-timestamp-p t))
17698 (org-at-heading-p))
17699 (org-todo 'up)
17700 (org-timestamp-change (prefix-numeric-value arg) 'day 'updown)))
17702 (defun org-timestamp-down-day (&optional arg)
17703 "Decrease the date in the time stamp by one day.
17704 With prefix ARG, change that many days."
17705 (interactive "p")
17706 (if (and (not (org-at-timestamp-p t))
17707 (org-at-heading-p))
17708 (org-todo 'down)
17709 (org-timestamp-change (- (prefix-numeric-value arg)) 'day) 'updown))
17711 (defun org-at-timestamp-p (&optional inactive-ok)
17712 "Determine if the cursor is in or at a timestamp."
17713 (interactive)
17714 (let* ((tsr (if inactive-ok org-ts-regexp3 org-ts-regexp2))
17715 (pos (point))
17716 (ans (or (looking-at tsr)
17717 (save-excursion
17718 (skip-chars-backward "^[<\n\r\t")
17719 (if (> (point) (point-min)) (backward-char 1))
17720 (and (looking-at tsr)
17721 (> (- (match-end 0) pos) -1))))))
17722 (and ans
17723 (boundp 'org-ts-what)
17724 (setq org-ts-what
17725 (cond
17726 ((= pos (match-beginning 0)) 'bracket)
17727 ;; Point is considered to be "on the bracket" whether
17728 ;; it's really on it or right after it.
17729 ((= pos (1- (match-end 0))) 'bracket)
17730 ((= pos (match-end 0)) 'after)
17731 ((org-pos-in-match-range pos 2) 'year)
17732 ((org-pos-in-match-range pos 3) 'month)
17733 ((org-pos-in-match-range pos 7) 'hour)
17734 ((org-pos-in-match-range pos 8) 'minute)
17735 ((or (org-pos-in-match-range pos 4)
17736 (org-pos-in-match-range pos 5)) 'day)
17737 ((and (> pos (or (match-end 8) (match-end 5)))
17738 (< pos (match-end 0)))
17739 (- pos (or (match-end 8) (match-end 5))))
17740 (t 'day))))
17741 ans))
17743 (defun org-toggle-timestamp-type ()
17744 "Toggle the type (<active> or [inactive]) of a time stamp."
17745 (interactive)
17746 (when (org-at-timestamp-p t)
17747 (let ((beg (match-beginning 0)) (end (match-end 0))
17748 (map '((?\[ . "<") (?\] . ">") (?< . "[") (?> . "]"))))
17749 (save-excursion
17750 (goto-char beg)
17751 (while (re-search-forward "[][<>]" end t)
17752 (replace-match (cdr (assoc (char-after (match-beginning 0)) map))
17753 t t)))
17754 (message "Timestamp is now %sactive"
17755 (if (equal (char-after beg) ?<) "" "in")))))
17757 (defun org-at-clock-log-p nil
17758 "Is the cursor on the clock log line?"
17759 (save-excursion
17760 (move-beginning-of-line 1)
17761 (looking-at org-clock-line-re)))
17763 (defvar org-clock-history) ; defined in org-clock.el
17764 (defvar org-clock-adjust-closest nil) ; defined in org-clock.el
17765 (defun org-timestamp-change (n &optional what updown suppress-tmp-delay)
17766 "Change the date in the time stamp at point.
17767 The date will be changed by N times WHAT. WHAT can be `day', `month',
17768 `year', `minute', `second'. If WHAT is not given, the cursor position
17769 in the timestamp determines what will be changed.
17770 When SUPPRESS-TMP-DELAY is non-nil, suppress delays like \"--2d\"."
17771 (let ((origin (point)) origin-cat
17772 with-hm inactive
17773 (dm (max (nth 1 org-time-stamp-rounding-minutes) 1))
17774 org-ts-what
17775 extra rem
17776 ts time time0 fixnext clrgx)
17777 (if (not (org-at-timestamp-p t))
17778 (user-error "Not at a timestamp"))
17779 (if (and (not what) (eq org-ts-what 'bracket))
17780 (org-toggle-timestamp-type)
17781 ;; Point isn't on brackets. Remember the part of the time-stamp
17782 ;; the point was in. Indeed, size of time-stamps may change,
17783 ;; but point must be kept in the same category nonetheless.
17784 (setq origin-cat org-ts-what)
17785 (if (and (not what) (not (eq org-ts-what 'day))
17786 org-display-custom-times
17787 (get-text-property (point) 'display)
17788 (not (get-text-property (1- (point)) 'display)))
17789 (setq org-ts-what 'day))
17790 (setq org-ts-what (or what org-ts-what)
17791 inactive (= (char-after (match-beginning 0)) ?\[)
17792 ts (match-string 0))
17793 (replace-match "")
17794 (when (string-match
17795 "\\(\\(-[012][0-9]:[0-5][0-9]\\)?\\( +[.+]?-?[-+][0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)*\\)[]>]"
17797 (setq extra (match-string 1 ts))
17798 (if suppress-tmp-delay
17799 (setq extra (replace-regexp-in-string " --[0-9]+[hdwmy]" "" extra))))
17800 (if (string-match "^.\\{10\\}.*?[0-9]+:[0-9][0-9]" ts)
17801 (setq with-hm t))
17802 (setq time0 (org-parse-time-string ts))
17803 (when (and updown
17804 (eq org-ts-what 'minute)
17805 (not current-prefix-arg))
17806 ;; This looks like s-up and s-down. Change by one rounding step.
17807 (setq n (* dm (cond ((> n 0) 1) ((< n 0) -1) (t 0))))
17808 (when (not (= 0 (setq rem (% (nth 1 time0) dm))))
17809 (setcar (cdr time0) (+ (nth 1 time0)
17810 (if (> n 0) (- rem) (- dm rem))))))
17811 (setq time
17812 (encode-time (or (car time0) 0)
17813 (+ (if (eq org-ts-what 'minute) n 0) (nth 1 time0))
17814 (+ (if (eq org-ts-what 'hour) n 0) (nth 2 time0))
17815 (+ (if (eq org-ts-what 'day) n 0) (nth 3 time0))
17816 (+ (if (eq org-ts-what 'month) n 0) (nth 4 time0))
17817 (+ (if (eq org-ts-what 'year) n 0) (nth 5 time0))
17818 (nthcdr 6 time0)))
17819 (when (and (member org-ts-what '(hour minute))
17820 extra
17821 (string-match "-\\([012][0-9]\\):\\([0-5][0-9]\\)" extra))
17822 (setq extra (org-modify-ts-extra
17823 extra
17824 (if (eq org-ts-what 'hour) 2 5)
17825 n dm)))
17826 (when (integerp org-ts-what)
17827 (setq extra (org-modify-ts-extra extra org-ts-what n dm)))
17828 (if (eq what 'calendar)
17829 (let ((cal-date (org-get-date-from-calendar)))
17830 (setcar (nthcdr 4 time0) (nth 0 cal-date)) ; month
17831 (setcar (nthcdr 3 time0) (nth 1 cal-date)) ; day
17832 (setcar (nthcdr 5 time0) (nth 2 cal-date)) ; year
17833 (setcar time0 (or (car time0) 0))
17834 (setcar (nthcdr 1 time0) (or (nth 1 time0) 0))
17835 (setcar (nthcdr 2 time0) (or (nth 2 time0) 0))
17836 (setq time (apply 'encode-time time0))))
17837 ;; Insert the new time-stamp, and ensure point stays in the same
17838 ;; category as before (i.e. not after the last position in that
17839 ;; category).
17840 (let ((pos (point)))
17841 ;; Stay before inserted string. `save-excursion' is of no use.
17842 (setq org-last-changed-timestamp
17843 (org-insert-time-stamp time with-hm inactive nil nil extra))
17844 (goto-char pos))
17845 (save-match-data
17846 (looking-at org-ts-regexp3)
17847 (goto-char (cond
17848 ;; `day' category ends before `hour' if any, or at
17849 ;; the end of the day name.
17850 ((eq origin-cat 'day)
17851 (min (or (match-beginning 7) (1- (match-end 5))) origin))
17852 ((eq origin-cat 'hour) (min (match-end 7) origin))
17853 ((eq origin-cat 'minute) (min (1- (match-end 8)) origin))
17854 ((integerp origin-cat) (min (1- (match-end 0)) origin))
17855 ;; `year' and `month' have both fixed size: point
17856 ;; couldn't have moved into another part.
17857 (t origin))))
17858 ;; Update clock if on a CLOCK line.
17859 (org-clock-update-time-maybe)
17860 ;; Maybe adjust the closest clock in `org-clock-history'
17861 (when org-clock-adjust-closest
17862 (if (not (and (org-at-clock-log-p)
17863 (< 1 (length (delq nil (mapcar 'marker-position
17864 org-clock-history))))))
17865 (message "No clock to adjust")
17866 (cond ((save-excursion ; fix previous clock?
17867 (re-search-backward org-ts-regexp0 nil t)
17868 (org-looking-back (concat org-clock-string " \\[")))
17869 (setq fixnext 1 clrgx (concat org-ts-regexp0 "\\] =>.*$")))
17870 ((save-excursion ; fix next clock?
17871 (re-search-backward org-ts-regexp0 nil t)
17872 (looking-at (concat org-ts-regexp0 "\\] =>")))
17873 (setq fixnext -1 clrgx (concat org-clock-string " \\[" org-ts-regexp0))))
17874 (save-window-excursion
17875 ;; Find closest clock to point, adjust the previous/next one in history
17876 (let* ((p (save-excursion (org-back-to-heading t)))
17877 (cl (mapcar (lambda(c) (abs (- (marker-position c) p))) org-clock-history))
17878 (clfixnth
17879 (+ fixnext (- (length cl) (or (length (member (apply 'min cl) cl)) 100))))
17880 (clfixpos (if (> 0 clfixnth) nil (nth clfixnth org-clock-history))))
17881 (if (not clfixpos)
17882 (message "No clock to adjust")
17883 (save-excursion
17884 (org-goto-marker-or-bmk clfixpos)
17885 (org-show-subtree)
17886 (when (re-search-forward clrgx nil t)
17887 (goto-char (match-beginning 1))
17888 (let (org-clock-adjust-closest)
17889 (org-timestamp-change n org-ts-what updown))
17890 (message "Clock adjusted in %s for heading: %s"
17891 (file-name-nondirectory (buffer-file-name))
17892 (org-get-heading t t)))))))))
17893 ;; Try to recenter the calendar window, if any.
17894 (if (and org-calendar-follow-timestamp-change
17895 (get-buffer-window "*Calendar*" t)
17896 (memq org-ts-what '(day month year)))
17897 (org-recenter-calendar (time-to-days time))))))
17899 (defun org-modify-ts-extra (s pos n dm)
17900 "Change the different parts of the lead-time and repeat fields in timestamp."
17901 (let ((idx '(("d" . 0) ("w" . 1) ("m" . 2) ("y" . 3) ("d" . -1) ("y" . 4)))
17902 ng h m new rem)
17903 (when (string-match "\\(-\\([012][0-9]\\):\\([0-5][0-9]\\)\\)?\\( +\\+\\([0-9]+\\)\\([dmwy]\\)\\)?\\( +-\\([0-9]+\\)\\([dmwy]\\)\\)?" s)
17904 (cond
17905 ((or (org-pos-in-match-range pos 2)
17906 (org-pos-in-match-range pos 3))
17907 (setq m (string-to-number (match-string 3 s))
17908 h (string-to-number (match-string 2 s)))
17909 (if (org-pos-in-match-range pos 2)
17910 (setq h (+ h n))
17911 (setq n (* dm (org-no-warnings (signum n))))
17912 (when (not (= 0 (setq rem (% m dm))))
17913 (setq m (+ m (if (> n 0) (- rem) (- dm rem)))))
17914 (setq m (+ m n)))
17915 (if (< m 0) (setq m (+ m 60) h (1- h)))
17916 (if (> m 59) (setq m (- m 60) h (1+ h)))
17917 (setq h (min 24 (max 0 h)))
17918 (setq ng 1 new (format "-%02d:%02d" h m)))
17919 ((org-pos-in-match-range pos 6)
17920 (setq ng 6 new (car (rassoc (+ n (cdr (assoc (match-string 6 s) idx))) idx))))
17921 ((org-pos-in-match-range pos 5)
17922 (setq ng 5 new (format "%d" (max 1 (+ n (string-to-number (match-string 5 s)))))))
17924 ((org-pos-in-match-range pos 9)
17925 (setq ng 9 new (car (rassoc (+ n (cdr (assoc (match-string 9 s) idx))) idx))))
17926 ((org-pos-in-match-range pos 8)
17927 (setq ng 8 new (format "%d" (max 0 (+ n (string-to-number (match-string 8 s))))))))
17929 (when ng
17930 (setq s (concat
17931 (substring s 0 (match-beginning ng))
17933 (substring s (match-end ng))))))
17936 (defun org-recenter-calendar (date)
17937 "If the calendar is visible, recenter it to DATE."
17938 (let ((cwin (get-buffer-window "*Calendar*" t)))
17939 (when cwin
17940 (let ((calendar-move-hook nil))
17941 (with-selected-window cwin
17942 (calendar-goto-date (if (listp date) date
17943 (calendar-gregorian-from-absolute date))))))))
17945 (defun org-goto-calendar (&optional arg)
17946 "Go to the Emacs calendar at the current date.
17947 If there is a time stamp in the current line, go to that date.
17948 A prefix ARG can be used to force the current date."
17949 (interactive "P")
17950 (let ((tsr org-ts-regexp) diff
17951 (calendar-move-hook nil)
17952 (calendar-view-holidays-initially-flag nil)
17953 (calendar-view-diary-initially-flag nil))
17954 (if (or (org-at-timestamp-p)
17955 (save-excursion
17956 (beginning-of-line 1)
17957 (looking-at (concat ".*" tsr))))
17958 (let ((d1 (time-to-days (current-time)))
17959 (d2 (time-to-days
17960 (org-time-string-to-time (match-string 1)))))
17961 (setq diff (- d2 d1))))
17962 (calendar)
17963 (calendar-goto-today)
17964 (if (and diff (not arg)) (calendar-forward-day diff))))
17966 (defun org-get-date-from-calendar ()
17967 "Return a list (month day year) of date at point in calendar."
17968 (with-current-buffer "*Calendar*"
17969 (save-match-data
17970 (calendar-cursor-to-date))))
17972 (defun org-date-from-calendar ()
17973 "Insert time stamp corresponding to cursor date in *Calendar* buffer.
17974 If there is already a time stamp at the cursor position, update it."
17975 (interactive)
17976 (if (org-at-timestamp-p t)
17977 (org-timestamp-change 0 'calendar)
17978 (let ((cal-date (org-get-date-from-calendar)))
17979 (org-insert-time-stamp
17980 (encode-time 0 0 0 (nth 1 cal-date) (car cal-date) (nth 2 cal-date))))))
17982 (defcustom org-effort-durations
17983 `(("min" . 1)
17984 ("h" . 60)
17985 ("d" . ,(* 60 8))
17986 ("w" . ,(* 60 8 5))
17987 ("m" . ,(* 60 8 5 4))
17988 ("y" . ,(* 60 8 5 40)))
17989 "Conversion factor to minutes for an effort modifier.
17991 Each entry has the form (MODIFIER . MINUTES).
17993 In an effort string, a number followed by MODIFIER is multiplied
17994 by the specified number of MINUTES to obtain an effort in
17995 minutes.
17997 For example, if the value of this variable is ((\"hours\" . 60)), then an
17998 effort string \"2hours\" is equivalent to 120 minutes."
17999 :group 'org-agenda
18000 :version "25.1"
18001 :package-version '(Org . "8.3")
18002 :type '(alist :key-type (string :tag "Modifier")
18003 :value-type (number :tag "Minutes")))
18005 (defun org-minutes-to-clocksum-string (m)
18006 "Format number of minutes as a clocksum string.
18007 The format is determined by `org-time-clocksum-format',
18008 `org-time-clocksum-use-fractional' and
18009 `org-time-clocksum-fractional-format' and
18010 `org-time-clocksum-use-effort-durations'."
18011 (let ((clocksum "")
18012 (m (round m)) ; Don't allow fractions of minutes
18013 h d w mo y fmt n)
18014 (setq h (if org-time-clocksum-use-effort-durations
18015 (cdr (assoc "h" org-effort-durations)) 60)
18016 d (if org-time-clocksum-use-effort-durations
18017 (/ (cdr (assoc "d" org-effort-durations)) h) 24)
18018 w (if org-time-clocksum-use-effort-durations
18019 (/ (cdr (assoc "w" org-effort-durations)) (* d h)) 7)
18020 mo (if org-time-clocksum-use-effort-durations
18021 (/ (cdr (assoc "m" org-effort-durations)) (* d h)) 30)
18022 y (if org-time-clocksum-use-effort-durations
18023 (/ (cdr (assoc "y" org-effort-durations)) (* d h)) 365))
18024 ;; fractional format
18025 (if org-time-clocksum-use-fractional
18026 (cond
18027 ;; single format string
18028 ((stringp org-time-clocksum-fractional-format)
18029 (format org-time-clocksum-fractional-format (/ m (float h))))
18030 ;; choice of fractional formats for different time units
18031 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :years))
18032 (> (/ (truncate m) (* y d h)) 0))
18033 (format fmt (/ m (* y d (float h)))))
18034 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :months))
18035 (> (/ (truncate m) (* mo d h)) 0))
18036 (format fmt (/ m (* mo d (float h)))))
18037 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :weeks))
18038 (> (/ (truncate m) (* w d h)) 0))
18039 (format fmt (/ m (* w d (float h)))))
18040 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :days))
18041 (> (/ (truncate m) (* d h)) 0))
18042 (format fmt (/ m (* d (float h)))))
18043 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :hours))
18044 (> (/ (truncate m) h) 0))
18045 (format fmt (/ m (float h))))
18046 ((setq fmt (plist-get org-time-clocksum-fractional-format :minutes))
18047 (format fmt m))
18048 ;; fall back to smallest time unit with a format
18049 ((setq fmt (plist-get org-time-clocksum-fractional-format :hours))
18050 (format fmt (/ m (float h))))
18051 ((setq fmt (plist-get org-time-clocksum-fractional-format :days))
18052 (format fmt (/ m (* d (float h)))))
18053 ((setq fmt (plist-get org-time-clocksum-fractional-format :weeks))
18054 (format fmt (/ m (* w d (float h)))))
18055 ((setq fmt (plist-get org-time-clocksum-fractional-format :months))
18056 (format fmt (/ m (* mo d (float h)))))
18057 ((setq fmt (plist-get org-time-clocksum-fractional-format :years))
18058 (format fmt (/ m (* y d (float h))))))
18059 ;; standard (non-fractional) format, with single format string
18060 (if (stringp org-time-clocksum-format)
18061 (format org-time-clocksum-format (setq n (/ m h)) (- m (* h n)))
18062 ;; separate formats components
18063 (and (setq fmt (plist-get org-time-clocksum-format :years))
18064 (or (> (setq n (/ (truncate m) (* y d h))) 0)
18065 (plist-get org-time-clocksum-format :require-years))
18066 (setq clocksum (concat clocksum (format fmt n))
18067 m (- m (* n y d h))))
18068 (and (setq fmt (plist-get org-time-clocksum-format :months))
18069 (or (> (setq n (/ (truncate m) (* mo d h))) 0)
18070 (plist-get org-time-clocksum-format :require-months))
18071 (setq clocksum (concat clocksum (format fmt n))
18072 m (- m (* n mo d h))))
18073 (and (setq fmt (plist-get org-time-clocksum-format :weeks))
18074 (or (> (setq n (/ (truncate m) (* w d h))) 0)
18075 (plist-get org-time-clocksum-format :require-weeks))
18076 (setq clocksum (concat clocksum (format fmt n))
18077 m (- m (* n w d h))))
18078 (and (setq fmt (plist-get org-time-clocksum-format :days))
18079 (or (> (setq n (/ (truncate m) (* d h))) 0)
18080 (plist-get org-time-clocksum-format :require-days))
18081 (setq clocksum (concat clocksum (format fmt n))
18082 m (- m (* n d h))))
18083 (and (setq fmt (plist-get org-time-clocksum-format :hours))
18084 (or (> (setq n (/ (truncate m) h)) 0)
18085 (plist-get org-time-clocksum-format :require-hours))
18086 (setq clocksum (concat clocksum (format fmt n))
18087 m (- m (* n h))))
18088 (and (setq fmt (plist-get org-time-clocksum-format :minutes))
18089 (or (> m 0) (plist-get org-time-clocksum-format :require-minutes))
18090 (setq clocksum (concat clocksum (format fmt m))))
18091 ;; return formatted time duration
18092 clocksum))))
18094 (defalias 'org-minutes-to-hh:mm-string 'org-minutes-to-clocksum-string)
18095 (make-obsolete 'org-minutes-to-hh:mm-string 'org-minutes-to-clocksum-string
18096 "Org mode version 8.0")
18098 (defun org-hours-to-clocksum-string (n)
18099 (org-minutes-to-clocksum-string (* n 60)))
18101 (defun org-hh:mm-string-to-minutes (s)
18102 "Convert a string H:MM to a number of minutes.
18103 If the string is just a number, interpret it as minutes.
18104 In fact, the first hh:mm or number in the string will be taken,
18105 there can be extra stuff in the string.
18106 If no number is found, the return value is 0."
18107 (cond
18108 ((integerp s) s)
18109 ((string-match "\\([0-9]+\\):\\([0-9]+\\)" s)
18110 (+ (* (string-to-number (match-string 1 s)) 60)
18111 (string-to-number (match-string 2 s))))
18112 ((string-match "\\([0-9]+\\)" s)
18113 (string-to-number (match-string 1 s)))
18114 (t 0)))
18116 (defcustom org-image-actual-width t
18117 "Should we use the actual width of images when inlining them?
18119 When set to `t', always use the image width.
18121 When set to a number, use imagemagick (when available) to set
18122 the image's width to this value.
18124 When set to a number in a list, try to get the width from any
18125 #+ATTR.* keyword if it matches a width specification like
18127 #+ATTR_HTML: :width 300px
18129 and fall back on that number if none is found.
18131 When set to nil, try to get the width from an #+ATTR.* keyword
18132 and fall back on the original width if none is found.
18134 This requires Emacs >= 24.1, build with imagemagick support."
18135 :group 'org-appearance
18136 :version "24.4"
18137 :package-version '(Org . "8.0")
18138 :type '(choice
18139 (const :tag "Use the image width" t)
18140 (integer :tag "Use a number of pixels")
18141 (list :tag "Use #+ATTR* or a number of pixels" (integer))
18142 (const :tag "Use #+ATTR* or don't resize" nil)))
18144 (defcustom org-agenda-inhibit-startup nil
18145 "Inhibit startup when preparing agenda buffers.
18146 When this variable is `t', the initialization of the Org agenda
18147 buffers is inhibited: e.g. the visibility state is not set, the
18148 tables are not re-aligned, etc."
18149 :type 'boolean
18150 :version "24.3"
18151 :group 'org-agenda)
18153 (define-obsolete-variable-alias
18154 'org-agenda-ignore-drawer-properties
18155 'org-agenda-ignore-properties "25.1")
18157 (defcustom org-agenda-ignore-properties nil
18158 "Avoid updating text properties when building the agenda.
18159 Properties are used to prepare buffers for effort estimates,
18160 appointments, statistics and subtree-local categories.
18161 If you don't use these in the agenda, you can add them to this
18162 list and agenda building will be a bit faster.
18163 The value is a list, with zero or more of the symbols `effort', `appt',
18164 `stats' or `category'."
18165 :type '(set :greedy t
18166 (const effort)
18167 (const appt)
18168 (const stats)
18169 (const category))
18170 :version "25.1"
18171 :package-version '(Org . "8.3")
18172 :group 'org-agenda)
18174 (defun org-duration-string-to-minutes (s &optional output-to-string)
18175 "Convert a duration string S to minutes.
18177 A bare number is interpreted as minutes, modifiers can be set by
18178 customizing `org-effort-durations' (which see).
18180 Entries containing a colon are interpreted as H:MM by
18181 `org-hh:mm-string-to-minutes'."
18182 (let ((result 0)
18183 (re (concat "\\([0-9.]+\\) *\\("
18184 (regexp-opt (mapcar 'car org-effort-durations))
18185 "\\)")))
18186 (while (string-match re s)
18187 (incf result (* (cdr (assoc (match-string 2 s) org-effort-durations))
18188 (string-to-number (match-string 1 s))))
18189 (setq s (replace-match "" nil t s)))
18190 (setq result (floor result))
18191 (incf result (org-hh:mm-string-to-minutes s))
18192 (if output-to-string (number-to-string result) result)))
18194 ;;;; Files
18196 (defun org-save-all-org-buffers ()
18197 "Save all Org-mode buffers without user confirmation."
18198 (interactive)
18199 (message "Saving all Org-mode buffers...")
18200 (save-some-buffers t (lambda () (derived-mode-p 'org-mode)))
18201 (when (featurep 'org-id) (org-id-locations-save))
18202 (message "Saving all Org-mode buffers... done"))
18204 (defun org-revert-all-org-buffers ()
18205 "Revert all Org-mode buffers.
18206 Prompt for confirmation when there are unsaved changes.
18207 Be sure you know what you are doing before letting this function
18208 overwrite your changes.
18210 This function is useful in a setup where one tracks org files
18211 with a version control system, to revert on one machine after pulling
18212 changes from another. I believe the procedure must be like this:
18214 1. M-x org-save-all-org-buffers
18215 2. Pull changes from the other machine, resolve conflicts
18216 3. M-x org-revert-all-org-buffers"
18217 (interactive)
18218 (unless (yes-or-no-p "Revert all Org buffers from their files? ")
18219 (user-error "Abort"))
18220 (save-excursion
18221 (save-window-excursion
18222 (mapc
18223 (lambda (b)
18224 (when (and (with-current-buffer b (derived-mode-p 'org-mode))
18225 (with-current-buffer b buffer-file-name))
18226 (org-pop-to-buffer-same-window b)
18227 (revert-buffer t 'no-confirm)))
18228 (buffer-list))
18229 (when (and (featurep 'org-id) org-id-track-globally)
18230 (org-id-locations-load)))))
18232 ;;;; Agenda files
18234 ;;;###autoload
18235 (defun org-switchb (&optional arg)
18236 "Switch between Org buffers.
18237 With one prefix argument, restrict available buffers to files.
18238 With two prefix arguments, restrict available buffers to agenda files.
18240 Defaults to `iswitchb' for buffer name completion.
18241 Set `org-completion-use-ido' to make it use ido instead."
18242 (interactive "P")
18243 (let ((blist (cond ((equal arg '(4)) (org-buffer-list 'files))
18244 ((equal arg '(16)) (org-buffer-list 'agenda))
18245 (t (org-buffer-list))))
18246 (org-completion-use-iswitchb org-completion-use-iswitchb)
18247 (org-completion-use-ido org-completion-use-ido))
18248 (unless (or org-completion-use-ido org-completion-use-iswitchb)
18249 (setq org-completion-use-iswitchb t))
18250 (org-pop-to-buffer-same-window
18251 (org-icompleting-read "Org buffer: "
18252 (mapcar 'list (mapcar 'buffer-name blist))
18253 nil t))))
18255 ;;; Define some older names previously used for this functionality
18256 ;;;###autoload
18257 (defalias 'org-ido-switchb 'org-switchb)
18258 ;;;###autoload
18259 (defalias 'org-iswitchb 'org-switchb)
18261 (defun org-buffer-list (&optional predicate exclude-tmp)
18262 "Return a list of Org buffers.
18263 PREDICATE can be `export', `files' or `agenda'.
18265 export restrict the list to Export buffers.
18266 files restrict the list to buffers visiting Org files.
18267 agenda restrict the list to buffers visiting agenda files.
18269 If EXCLUDE-TMP is non-nil, ignore temporary buffers."
18270 (let* ((bfn nil)
18271 (agenda-files (and (eq predicate 'agenda)
18272 (mapcar 'file-truename (org-agenda-files t))))
18273 (filter
18274 (cond
18275 ((eq predicate 'files)
18276 (lambda (b) (with-current-buffer b (derived-mode-p 'org-mode))))
18277 ((eq predicate 'export)
18278 (lambda (b) (string-match "\*Org .*Export" (buffer-name b))))
18279 ((eq predicate 'agenda)
18280 (lambda (b)
18281 (with-current-buffer b
18282 (and (derived-mode-p 'org-mode)
18283 (setq bfn (buffer-file-name b))
18284 (member (file-truename bfn) agenda-files)))))
18285 (t (lambda (b) (with-current-buffer b
18286 (or (derived-mode-p 'org-mode)
18287 (string-match "\*Org .*Export"
18288 (buffer-name b)))))))))
18289 (delq nil
18290 (mapcar
18291 (lambda(b)
18292 (if (and (funcall filter b)
18293 (or (not exclude-tmp)
18294 (not (string-match "tmp" (buffer-name b)))))
18296 nil))
18297 (buffer-list)))))
18299 (defun org-agenda-files (&optional unrestricted archives)
18300 "Get the list of agenda files.
18301 Optional UNRESTRICTED means return the full list even if a restriction
18302 is currently in place.
18303 When ARCHIVES is t, include all archive files that are really being
18304 used by the agenda files. If ARCHIVE is `ifmode', do this only if
18305 `org-agenda-archives-mode' is t."
18306 (let ((files
18307 (cond
18308 ((and (not unrestricted) (get 'org-agenda-files 'org-restrict)))
18309 ((stringp org-agenda-files) (org-read-agenda-file-list))
18310 ((listp org-agenda-files) org-agenda-files)
18311 (t (error "Invalid value of `org-agenda-files'")))))
18312 (setq files (apply 'append
18313 (mapcar (lambda (f)
18314 (if (file-directory-p f)
18315 (directory-files
18316 f t org-agenda-file-regexp)
18317 (list f)))
18318 files)))
18319 (when org-agenda-skip-unavailable-files
18320 (setq files (delq nil
18321 (mapcar (function
18322 (lambda (file)
18323 (and (file-readable-p file) file)))
18324 files))))
18325 (when (or (eq archives t)
18326 (and (eq archives 'ifmode) (eq org-agenda-archives-mode t)))
18327 (setq files (org-add-archive-files files)))
18328 files))
18330 (defun org-agenda-file-p (&optional file)
18331 "Return non-nil, if FILE is an agenda file.
18332 If FILE is omitted, use the file associated with the current
18333 buffer."
18334 (let ((fname (or file (buffer-file-name))))
18335 (and fname
18336 (member (file-truename fname)
18337 (mapcar #'file-truename (org-agenda-files t))))))
18339 (defun org-edit-agenda-file-list ()
18340 "Edit the list of agenda files.
18341 Depending on setup, this either uses customize to edit the variable
18342 `org-agenda-files', or it visits the file that is holding the list. In the
18343 latter case, the buffer is set up in a way that saving it automatically kills
18344 the buffer and restores the previous window configuration."
18345 (interactive)
18346 (if (stringp org-agenda-files)
18347 (let ((cw (current-window-configuration)))
18348 (find-file org-agenda-files)
18349 (org-set-local 'org-window-configuration cw)
18350 (org-add-hook 'after-save-hook
18351 (lambda ()
18352 (set-window-configuration
18353 (prog1 org-window-configuration
18354 (kill-buffer (current-buffer))))
18355 (org-install-agenda-files-menu)
18356 (message "New agenda file list installed"))
18357 nil 'local)
18358 (message "%s" (substitute-command-keys
18359 "Edit list and finish with \\[save-buffer]")))
18360 (customize-variable 'org-agenda-files)))
18362 (defun org-store-new-agenda-file-list (list)
18363 "Set new value for the agenda file list and save it correctly."
18364 (if (stringp org-agenda-files)
18365 (let ((fe (org-read-agenda-file-list t)) b u)
18366 (while (setq b (find-buffer-visiting org-agenda-files))
18367 (kill-buffer b))
18368 (with-temp-file org-agenda-files
18369 (insert
18370 (mapconcat
18371 (lambda (f) ;; Keep un-expanded entries.
18372 (if (setq u (assoc f fe))
18373 (cdr u)
18375 list "\n")
18376 "\n")))
18377 (let ((org-mode-hook nil) (org-inhibit-startup t)
18378 (org-insert-mode-line-in-empty-file nil))
18379 (setq org-agenda-files list)
18380 (customize-save-variable 'org-agenda-files org-agenda-files))))
18382 (defun org-read-agenda-file-list (&optional pair-with-expansion)
18383 "Read the list of agenda files from a file.
18384 If PAIR-WITH-EXPANSION is t return pairs with un-expanded
18385 filenames, used by `org-store-new-agenda-file-list' to write back
18386 un-expanded file names."
18387 (when (file-directory-p org-agenda-files)
18388 (error "`org-agenda-files' cannot be a single directory"))
18389 (when (stringp org-agenda-files)
18390 (with-temp-buffer
18391 (insert-file-contents org-agenda-files)
18392 (mapcar
18393 (lambda (f)
18394 (let ((e (expand-file-name (substitute-in-file-name f)
18395 org-directory)))
18396 (if pair-with-expansion
18397 (cons e f)
18398 e)))
18399 (org-split-string (buffer-string) "[ \t\r\n]*?[\r\n][ \t\r\n]*")))))
18401 ;;;###autoload
18402 (defun org-cycle-agenda-files ()
18403 "Cycle through the files in `org-agenda-files'.
18404 If the current buffer visits an agenda file, find the next one in the list.
18405 If the current buffer does not, find the first agenda file."
18406 (interactive)
18407 (let* ((fs (org-agenda-files t))
18408 (files (append fs (list (car fs))))
18409 (tcf (if buffer-file-name (file-truename buffer-file-name)))
18410 file)
18411 (unless files (user-error "No agenda files"))
18412 (catch 'exit
18413 (while (setq file (pop files))
18414 (if (equal (file-truename file) tcf)
18415 (when (car files)
18416 (find-file (car files))
18417 (throw 'exit t))))
18418 (find-file (car fs)))
18419 (if (buffer-base-buffer) (org-pop-to-buffer-same-window (buffer-base-buffer)))))
18421 (defun org-agenda-file-to-front (&optional to-end)
18422 "Move/add the current file to the top of the agenda file list.
18423 If the file is not present in the list, it is added to the front. If it is
18424 present, it is moved there. With optional argument TO-END, add/move to the
18425 end of the list."
18426 (interactive "P")
18427 (let ((org-agenda-skip-unavailable-files nil)
18428 (file-alist (mapcar (lambda (x)
18429 (cons (file-truename x) x))
18430 (org-agenda-files t)))
18431 (ctf (file-truename
18432 (or buffer-file-name
18433 (user-error "Please save the current buffer to a file"))))
18434 x had)
18435 (setq x (assoc ctf file-alist) had x)
18437 (if (not x) (setq x (cons ctf (abbreviate-file-name buffer-file-name))))
18438 (if to-end
18439 (setq file-alist (append (delq x file-alist) (list x)))
18440 (setq file-alist (cons x (delq x file-alist))))
18441 (org-store-new-agenda-file-list (mapcar 'cdr file-alist))
18442 (org-install-agenda-files-menu)
18443 (message "File %s to %s of agenda file list"
18444 (if had "moved" "added") (if to-end "end" "front"))))
18446 (defun org-remove-file (&optional file)
18447 "Remove current file from the list of files in variable `org-agenda-files'.
18448 These are the files which are being checked for agenda entries.
18449 Optional argument FILE means use this file instead of the current."
18450 (interactive)
18451 (let* ((org-agenda-skip-unavailable-files nil)
18452 (file (or file buffer-file-name
18453 (user-error "Current buffer does not visit a file")))
18454 (true-file (file-truename file))
18455 (afile (abbreviate-file-name file))
18456 (files (delq nil (mapcar
18457 (lambda (x)
18458 (if (equal true-file
18459 (file-truename x))
18460 nil x))
18461 (org-agenda-files t)))))
18462 (if (not (= (length files) (length (org-agenda-files t))))
18463 (progn
18464 (org-store-new-agenda-file-list files)
18465 (org-install-agenda-files-menu)
18466 (message "Removed file: %s" afile))
18467 (message "File was not in list: %s (not removed)" afile))))
18469 (defun org-file-menu-entry (file)
18470 (vector file (list 'find-file file) t))
18472 (defun org-check-agenda-file (file)
18473 "Make sure FILE exists. If not, ask user what to do."
18474 (when (not (file-exists-p file))
18475 (message "Non-existent agenda file %s. [R]emove from list or [A]bort?"
18476 (abbreviate-file-name file))
18477 (let ((r (downcase (read-char-exclusive))))
18478 (cond
18479 ((equal r ?r)
18480 (org-remove-file file)
18481 (throw 'nextfile t))
18482 (t (user-error "Abort"))))))
18484 (defun org-get-agenda-file-buffer (file)
18485 "Get an agenda buffer visiting FILE.
18486 If the buffer needs to be created, add it to the list of buffers
18487 which might be released later."
18488 (let ((buf (org-find-base-buffer-visiting file)))
18489 (if buf
18490 buf ; just return it
18491 ;; Make a new buffer and remember it
18492 (setq buf (find-file-noselect file))
18493 (if buf (push buf org-agenda-new-buffers))
18494 buf)))
18496 (defun org-release-buffers (blist)
18497 "Release all buffers in list, asking the user for confirmation when needed.
18498 When a buffer is unmodified, it is just killed. When modified, it is saved
18499 \(if the user agrees) and then killed."
18500 (let (buf file)
18501 (while (setq buf (pop blist))
18502 (setq file (buffer-file-name buf))
18503 (when (and (buffer-modified-p buf)
18504 file
18505 (y-or-n-p (format "Save file %s? " file)))
18506 (with-current-buffer buf (save-buffer)))
18507 (kill-buffer buf))))
18509 (defun org-agenda-prepare-buffers (files)
18510 "Create buffers for all agenda files, protect archived trees and comments."
18511 (interactive)
18512 (let ((pa '(:org-archived t))
18513 (pc '(:org-comment t))
18514 (pall '(:org-archived t :org-comment t))
18515 (inhibit-read-only t)
18516 (org-inhibit-startup org-agenda-inhibit-startup)
18517 (rea (concat ":" org-archive-tag ":"))
18518 file re pos)
18519 (setq org-tag-alist-for-agenda nil
18520 org-tag-groups-alist-for-agenda nil)
18521 (save-excursion
18522 (save-restriction
18523 (while (setq file (pop files))
18524 (catch 'nextfile
18525 (if (bufferp file)
18526 (set-buffer file)
18527 (org-check-agenda-file file)
18528 (set-buffer (org-get-agenda-file-buffer file)))
18529 (widen)
18530 (org-set-regexps-and-options 'tags-only)
18531 (setq pos (point))
18532 (or (memq 'category org-agenda-ignore-properties)
18533 (org-refresh-category-properties))
18534 (or (memq 'stats org-agenda-ignore-properties)
18535 (org-refresh-stats-properties))
18536 (or (memq 'effort org-agenda-ignore-properties)
18537 (org-refresh-effort-properties))
18538 (or (memq 'appt org-agenda-ignore-properties)
18539 (org-refresh-properties "APPT_WARNTIME" 'org-appt-warntime))
18540 (setq org-todo-keywords-for-agenda
18541 (append org-todo-keywords-for-agenda org-todo-keywords-1))
18542 (setq org-done-keywords-for-agenda
18543 (append org-done-keywords-for-agenda org-done-keywords))
18544 (setq org-todo-keyword-alist-for-agenda
18545 (append org-todo-keyword-alist-for-agenda org-todo-key-alist))
18546 (setq org-tag-alist-for-agenda
18547 (org-uniquify
18548 (append org-tag-alist-for-agenda
18549 org-tag-alist
18550 org-tag-persistent-alist)))
18551 (if org-group-tags
18552 (setq org-tag-groups-alist-for-agenda
18553 (org-uniquify-alist
18554 (append org-tag-groups-alist-for-agenda org-tag-groups-alist))))
18555 (org-with-silent-modifications
18556 (save-excursion
18557 (remove-text-properties (point-min) (point-max) pall)
18558 (when org-agenda-skip-archived-trees
18559 (goto-char (point-min))
18560 (while (re-search-forward rea nil t)
18561 (if (org-at-heading-p t)
18562 (add-text-properties (point-at-bol) (org-end-of-subtree t) pa))))
18563 (goto-char (point-min))
18564 (setq re (format "^\\* .*\\<%s\\>" org-comment-string))
18565 (while (re-search-forward re nil t)
18566 (when (save-match-data (org-in-commented-heading-p t))
18567 (add-text-properties
18568 (match-beginning 0) (org-end-of-subtree t) pc)))))
18569 (goto-char pos)))))
18570 (setq org-todo-keywords-for-agenda
18571 (org-uniquify org-todo-keywords-for-agenda))
18572 (setq org-todo-keyword-alist-for-agenda
18573 (org-uniquify org-todo-keyword-alist-for-agenda))))
18576 ;;;; CDLaTeX minor mode
18578 (defvar org-cdlatex-mode-map (make-sparse-keymap)
18579 "Keymap for the minor `org-cdlatex-mode'.")
18581 (org-defkey org-cdlatex-mode-map "_" 'org-cdlatex-underscore-caret)
18582 (org-defkey org-cdlatex-mode-map "^" 'org-cdlatex-underscore-caret)
18583 (org-defkey org-cdlatex-mode-map "`" 'cdlatex-math-symbol)
18584 (org-defkey org-cdlatex-mode-map "'" 'org-cdlatex-math-modify)
18585 (org-defkey org-cdlatex-mode-map "\C-c{" 'org-cdlatex-environment-indent)
18587 (defvar org-cdlatex-texmathp-advice-is-done nil
18588 "Flag remembering if we have applied the advice to texmathp already.")
18590 (define-minor-mode org-cdlatex-mode
18591 "Toggle the minor `org-cdlatex-mode'.
18592 This mode supports entering LaTeX environment and math in LaTeX fragments
18593 in Org-mode.
18594 \\{org-cdlatex-mode-map}"
18595 nil " OCDL" nil
18596 (when org-cdlatex-mode
18597 (require 'cdlatex)
18598 (run-hooks 'cdlatex-mode-hook)
18599 (cdlatex-compute-tables))
18600 (unless org-cdlatex-texmathp-advice-is-done
18601 (setq org-cdlatex-texmathp-advice-is-done t)
18602 (defadvice texmathp (around org-math-always-on activate)
18603 "Always return t in org-mode buffers.
18604 This is because we want to insert math symbols without dollars even outside
18605 the LaTeX math segments. If Orgmode thinks that point is actually inside
18606 an embedded LaTeX fragment, let texmathp do its job.
18607 \\[org-cdlatex-mode-map]"
18608 (interactive)
18609 (let (p)
18610 (cond
18611 ((not (derived-mode-p 'org-mode)) ad-do-it)
18612 ((eq this-command 'cdlatex-math-symbol)
18613 (setq ad-return-value t
18614 texmathp-why '("cdlatex-math-symbol in org-mode" . 0)))
18616 (let ((p (org-inside-LaTeX-fragment-p)))
18617 (if (and p (member (car p) (plist-get org-format-latex-options :matchers)))
18618 (setq ad-return-value t
18619 texmathp-why '("Org-mode embedded math" . 0))
18620 (if p ad-do-it)))))))))
18622 (defun turn-on-org-cdlatex ()
18623 "Unconditionally turn on `org-cdlatex-mode'."
18624 (org-cdlatex-mode 1))
18626 (defun org-try-cdlatex-tab ()
18627 "Check if it makes sense to execute `cdlatex-tab', and do it if yes.
18628 It makes sense to do so if `org-cdlatex-mode' is active and if the cursor is
18629 - inside a LaTeX fragment, or
18630 - after the first word in a line, where an abbreviation expansion could
18631 insert a LaTeX environment."
18632 (when org-cdlatex-mode
18633 (cond
18634 ;; Before any word on the line: No expansion possible.
18635 ((save-excursion (skip-chars-backward " \t") (bolp)) nil)
18636 ;; Just after first word on the line: Expand it. Make sure it
18637 ;; cannot happen on headlines, though.
18638 ((save-excursion
18639 (skip-chars-backward "a-zA-Z0-9*")
18640 (skip-chars-backward " \t")
18641 (and (bolp) (not (org-at-heading-p))))
18642 (cdlatex-tab) t)
18643 ((org-inside-LaTeX-fragment-p) (cdlatex-tab) t))))
18645 (defun org-cdlatex-underscore-caret (&optional arg)
18646 "Execute `cdlatex-sub-superscript' in LaTeX fragments.
18647 Revert to the normal definition outside of these fragments."
18648 (interactive "P")
18649 (if (org-inside-LaTeX-fragment-p)
18650 (call-interactively 'cdlatex-sub-superscript)
18651 (let (org-cdlatex-mode)
18652 (call-interactively (key-binding (vector last-input-event))))))
18654 (defun org-cdlatex-math-modify (&optional arg)
18655 "Execute `cdlatex-math-modify' in LaTeX fragments.
18656 Revert to the normal definition outside of these fragments."
18657 (interactive "P")
18658 (if (org-inside-LaTeX-fragment-p)
18659 (call-interactively 'cdlatex-math-modify)
18660 (let (org-cdlatex-mode)
18661 (call-interactively (key-binding (vector last-input-event))))))
18663 (defun org-cdlatex-environment-indent (&optional environment item)
18664 "Execute `cdlatex-environment' and indent the inserted environment."
18665 (interactive)
18666 (cdlatex-environment environment item)
18667 (let ((element (org-element-at-point)))
18668 (org-indent-region (org-element-property :begin element)
18669 (org-element-property :end element))))
18672 ;;;; LaTeX fragments
18674 (defun org-inside-LaTeX-fragment-p ()
18675 "Test if point is inside a LaTeX fragment.
18676 I.e. after a \\begin, \\(, \\[, $, or $$, without the corresponding closing
18677 sequence appearing also before point.
18678 Even though the matchers for math are configurable, this function assumes
18679 that \\begin, \\(, \\[, and $$ are always used. Only the single dollar
18680 delimiters are skipped when they have been removed by customization.
18681 The return value is nil, or a cons cell with the delimiter and the
18682 position of this delimiter.
18684 This function does a reasonably good job, but can locally be fooled by
18685 for example currency specifications. For example it will assume being in
18686 inline math after \"$22.34\". The LaTeX fragment formatter will only format
18687 fragments that are properly closed, but during editing, we have to live
18688 with the uncertainty caused by missing closing delimiters. This function
18689 looks only before point, not after."
18690 (catch 'exit
18691 (let ((pos (point))
18692 (dodollar (member "$" (plist-get org-format-latex-options :matchers)))
18693 (lim (progn
18694 (re-search-backward (concat "^\\(" paragraph-start "\\)") nil t)
18695 (point)))
18696 dd-on str (start 0) m re)
18697 (goto-char pos)
18698 (when dodollar
18699 (setq str (concat (buffer-substring lim (point)) "\000 X$.")
18700 re (nth 1 (assoc "$" org-latex-regexps)))
18701 (while (string-match re str start)
18702 (cond
18703 ((= (match-end 0) (length str))
18704 (throw 'exit (cons "$" (+ lim (match-beginning 0) 1))))
18705 ((= (match-end 0) (- (length str) 5))
18706 (throw 'exit nil))
18707 (t (setq start (match-end 0))))))
18708 (when (setq m (re-search-backward "\\(\\\\begin{[^}]*}\\|\\\\(\\|\\\\\\[\\)\\|\\(\\\\end{[^}]*}\\|\\\\)\\|\\\\\\]\\)\\|\\(\\$\\$\\)" lim t))
18709 (goto-char pos)
18710 (and (match-beginning 1) (throw 'exit (cons (match-string 1) m)))
18711 (and (match-beginning 2) (throw 'exit nil))
18712 ;; count $$
18713 (while (re-search-backward "\\$\\$" lim t)
18714 (setq dd-on (not dd-on)))
18715 (goto-char pos)
18716 (if dd-on (cons "$$" m))))))
18718 (defun org-inside-latex-macro-p ()
18719 "Is point inside a LaTeX macro or its arguments?"
18720 (save-match-data
18721 (org-in-regexp
18722 "\\\\[a-zA-Z]+\\*?\\(\\(\\[[^][\n{}]*\\]\\)\\|\\({[^{}\n]*}\\)\\)*")))
18724 (defvar org-latex-fragment-image-overlays nil
18725 "List of overlays carrying the images of latex fragments.")
18726 (make-variable-buffer-local 'org-latex-fragment-image-overlays)
18728 (defun org-remove-latex-fragment-image-overlays ()
18729 "Remove all overlays with LaTeX fragment images in current buffer."
18730 (mapc 'delete-overlay org-latex-fragment-image-overlays)
18731 (setq org-latex-fragment-image-overlays nil))
18733 (define-obsolete-function-alias
18734 'org-preview-latex-fragment 'org-toggle-latex-fragment "24.4")
18735 (defun org-toggle-latex-fragment (&optional subtree)
18736 "Preview the LaTeX fragment at point, or all locally or globally.
18737 If the cursor is in a LaTeX fragment, create the image and overlay
18738 it over the source code. If there is no fragment at point, display
18739 all fragments in the current text, from one headline to the next. With
18740 prefix SUBTREE, display all fragments in the current subtree. With a
18741 double prefix arg \\[universal-argument] \\[universal-argument], or when \
18742 the cursor is before the first headline,
18743 display all fragments in the buffer.
18744 The images can be removed again with \\[org-toggle-latex-fragment]."
18745 (interactive "P")
18746 (unless (buffer-file-name (buffer-base-buffer))
18747 (user-error "Can't preview LaTeX fragment in a non-file buffer"))
18748 (if org-latex-fragment-image-overlays
18749 (progn (org-remove-latex-fragment-image-overlays)
18750 (message "LaTeX fragments images removed"))
18751 (when (display-graphic-p)
18752 (org-remove-latex-fragment-image-overlays)
18753 (org-with-wide-buffer
18754 (let (beg end msg)
18755 (cond
18756 ((equal subtree '(16))
18757 (setq beg (point-min) end (point-max)
18758 msg "Creating images for buffer...%s"))
18759 ((equal subtree '(4))
18760 (org-back-to-heading)
18761 (setq beg (point) end (org-end-of-subtree t)
18762 msg "Creating images for subtree...%s"))
18763 ((let ((context (org-element-context)))
18764 (when (memq (org-element-type context)
18765 '(latex-environment latex-fragment))
18766 (setq beg (org-element-property :begin context)
18767 end (org-element-property :end context)
18768 msg "Creating image...%s"))))
18769 ((org-before-first-heading-p)
18770 (setq beg (point-min) end (point-max)
18771 msg "Creating images for buffer...%s"))
18773 (org-back-to-heading)
18774 (setq beg (point) end (progn (outline-next-heading) (point))
18775 msg "Creating images for entry...%s")))
18776 (message msg "")
18777 (narrow-to-region beg end)
18778 (goto-char beg)
18779 (org-format-latex
18780 (concat org-latex-preview-ltxpng-directory
18781 (file-name-sans-extension
18782 (file-name-nondirectory
18783 (buffer-file-name (buffer-base-buffer)))))
18784 default-directory 'overlays msg 'forbuffer
18785 org-latex-create-formula-image-program)
18786 (message msg "done. Use `C-c C-x C-l' to remove images."))))))
18788 (defun org-format-latex
18789 (prefix &optional dir overlays msg forbuffer processing-type)
18790 "Replace LaTeX fragments with links to an image, and produce images.
18791 Some of the options can be changed using the variable
18792 `org-format-latex-options'."
18793 (when (and overlays (fboundp 'clear-image-cache)) (clear-image-cache))
18794 (unless (eq processing-type 'verbatim)
18795 (let* ((math-regexp "\\$\\|\\\\[([]\\|^[ \t]*\\\\begin{[A-Za-z0-9*]+}")
18796 (cnt 0)
18797 checkdir-flag)
18798 (goto-char (point-min))
18799 (while (re-search-forward math-regexp nil t)
18800 (unless (and overlays
18801 (eq (get-char-property (point) 'org-overlay-type)
18802 'org-latex-overlay))
18803 (let* ((context (org-element-context))
18804 (type (org-element-type context)))
18805 (when (memq type '(latex-environment latex-fragment))
18806 (let ((block-type (eq type 'latex-environment))
18807 (value (org-element-property :value context))
18808 (beg (org-element-property :begin context))
18809 (end (save-excursion
18810 (goto-char (org-element-property :end context))
18811 (skip-chars-backward " \r\t\n")
18812 (point))))
18813 (case processing-type
18814 (mathjax
18815 ;; Prepare for MathJax processing.
18816 (if (eq (char-after beg) ?$)
18817 (save-excursion
18818 (delete-region beg end)
18819 (insert "\\(" (substring value 1 -1) "\\)"))
18820 (goto-char end)))
18821 ((dvipng imagemagick)
18822 ;; Process to an image.
18823 (incf cnt)
18824 (goto-char beg)
18825 (let* ((face (face-at-point))
18826 ;; Get the colors from the face at point.
18828 (let ((color (plist-get org-format-latex-options
18829 :foreground)))
18830 (if (and forbuffer (eq color 'auto))
18831 (face-attribute face :foreground nil 'default)
18832 color)))
18834 (let ((color (plist-get org-format-latex-options
18835 :background)))
18836 (if (and forbuffer (eq color 'auto))
18837 (face-attribute face :background nil 'default)
18838 color)))
18839 (hash (sha1 (prin1-to-string
18840 (list org-format-latex-header
18841 org-latex-default-packages-alist
18842 org-latex-packages-alist
18843 org-format-latex-options
18844 forbuffer value fg bg))))
18845 (absprefix (expand-file-name prefix dir))
18846 (linkfile (format "%s_%s.png" prefix hash))
18847 (movefile (format "%s_%s.png" absprefix hash))
18848 (sep (and block-type "\n\n"))
18849 (link (concat sep "[[file:" linkfile "]]" sep))
18850 (options
18851 (org-combine-plists
18852 org-format-latex-options
18853 `(:foreground ,fg :background ,bg))))
18854 (when msg (message msg cnt))
18855 (unless checkdir-flag ; Ensure the directory exists.
18856 (setq checkdir-flag t)
18857 (let ((todir (file-name-directory absprefix)))
18858 (unless (file-directory-p todir)
18859 (make-directory todir t))))
18860 (unless (file-exists-p movefile)
18861 (org-create-formula-image
18862 value movefile options forbuffer processing-type))
18863 (if overlays
18864 (progn
18865 (dolist (o (overlays-in beg end))
18866 (when (eq (overlay-get o 'org-overlay-type)
18867 'org-latex-overlay)
18868 (delete-overlay o)))
18869 (let ((ov (make-overlay beg end)))
18870 (overlay-put ov
18871 'org-overlay-type
18872 'org-latex-overlay)
18873 (if (featurep 'xemacs)
18874 (progn
18875 (overlay-put ov 'invisible t)
18876 (overlay-put
18877 ov 'end-glyph
18878 (make-glyph
18879 (vector 'png :file movefile))))
18880 (overlay-put
18881 ov 'display
18882 (list 'image
18883 :type 'png
18884 :file movefile
18885 :ascent 'center)))
18886 (push ov org-latex-fragment-image-overlays))
18887 (goto-char end))
18888 (delete-region beg end)
18889 (insert
18890 (org-add-props link
18891 (list 'org-latex-src
18892 (replace-regexp-in-string "\"" "" value)
18893 'org-latex-src-embed-type
18894 (if block-type 'paragraph 'character)))))))
18895 (mathml
18896 ;; Process to MathML.
18897 (unless (org-format-latex-mathml-available-p)
18898 (user-error "LaTeX to MathML converter not configured"))
18899 (incf cnt)
18900 (when msg (message msg cnt))
18901 (goto-char beg)
18902 (delete-region beg end)
18903 (insert (org-format-latex-as-mathml
18904 value block-type prefix dir)))
18905 (otherwise
18906 (error "Unknown conversion type %s for LaTeX fragments"
18907 processing-type)))))))))))
18909 (defun org-create-math-formula (latex-frag &optional mathml-file)
18910 "Convert LATEX-FRAG to MathML and store it in MATHML-FILE.
18911 Use `org-latex-to-mathml-convert-command'. If the conversion is
18912 sucessful, return the portion between \"<math...> </math>\"
18913 elements otherwise return nil. When MATHML-FILE is specified,
18914 write the results in to that file. When invoked as an
18915 interactive command, prompt for LATEX-FRAG, with initial value
18916 set to the current active region and echo the results for user
18917 inspection."
18918 (interactive (list (let ((frag (when (org-region-active-p)
18919 (buffer-substring-no-properties
18920 (region-beginning) (region-end)))))
18921 (read-string "LaTeX Fragment: " frag nil frag))))
18922 (unless latex-frag (user-error "Invalid LaTeX fragment"))
18923 (let* ((tmp-in-file (file-relative-name
18924 (make-temp-name (expand-file-name "ltxmathml-in"))))
18925 (ignore (write-region latex-frag nil tmp-in-file))
18926 (tmp-out-file (file-relative-name
18927 (make-temp-name (expand-file-name "ltxmathml-out"))))
18928 (cmd (format-spec
18929 org-latex-to-mathml-convert-command
18930 `((?j . ,(shell-quote-argument
18931 (expand-file-name org-latex-to-mathml-jar-file)))
18932 (?I . ,(shell-quote-argument tmp-in-file))
18933 (?o . ,(shell-quote-argument tmp-out-file)))))
18934 mathml shell-command-output)
18935 (when (org-called-interactively-p 'any)
18936 (unless (org-format-latex-mathml-available-p)
18937 (user-error "LaTeX to MathML converter not configured")))
18938 (message "Running %s" cmd)
18939 (setq shell-command-output (shell-command-to-string cmd))
18940 (setq mathml
18941 (when (file-readable-p tmp-out-file)
18942 (with-current-buffer (find-file-noselect tmp-out-file t)
18943 (goto-char (point-min))
18944 (when (re-search-forward
18945 (concat
18946 (regexp-quote
18947 "<math xmlns=\"http://www.w3.org/1998/Math/MathML\">")
18948 "\\(.\\|\n\\)*"
18949 (regexp-quote "</math>")) nil t)
18950 (prog1 (match-string 0) (kill-buffer))))))
18951 (cond
18952 (mathml
18953 (setq mathml
18954 (concat "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" mathml))
18955 (when mathml-file
18956 (write-region mathml nil mathml-file))
18957 (when (org-called-interactively-p 'any)
18958 (message mathml)))
18959 ((message "LaTeX to MathML conversion failed")
18960 (message shell-command-output)))
18961 (delete-file tmp-in-file)
18962 (when (file-exists-p tmp-out-file)
18963 (delete-file tmp-out-file))
18964 mathml))
18966 (defun org-format-latex-as-mathml (latex-frag latex-frag-type
18967 prefix &optional dir)
18968 "Use `org-create-math-formula' but check local cache first."
18969 (let* ((absprefix (expand-file-name prefix dir))
18970 (print-length nil) (print-level nil)
18971 (formula-id (concat
18972 "formula-"
18973 (sha1
18974 (prin1-to-string
18975 (list latex-frag
18976 org-latex-to-mathml-convert-command)))))
18977 (formula-cache (format "%s-%s.mathml" absprefix formula-id))
18978 (formula-cache-dir (file-name-directory formula-cache)))
18980 (unless (file-directory-p formula-cache-dir)
18981 (make-directory formula-cache-dir t))
18983 (unless (file-exists-p formula-cache)
18984 (org-create-math-formula latex-frag formula-cache))
18986 (if (file-exists-p formula-cache)
18987 ;; Successful conversion. Return the link to MathML file.
18988 (org-add-props
18989 (format "[[file:%s]]" (file-relative-name formula-cache dir))
18990 (list 'org-latex-src (replace-regexp-in-string "\"" "" latex-frag)
18991 'org-latex-src-embed-type (if latex-frag-type
18992 'paragraph 'character)))
18993 ;; Failed conversion. Return the LaTeX fragment verbatim
18994 latex-frag)))
18996 (defun org-create-formula-image (string tofile options buffer &optional type)
18997 "Create an image from LaTeX source using dvipng or convert.
18998 This function calls either `org-create-formula-image-with-dvipng'
18999 or `org-create-formula-image-with-imagemagick' depending on the
19000 value of `org-latex-create-formula-image-program' or on the value
19001 of the optional TYPE variable.
19003 Note: ultimately these two function should be combined as they
19004 share a good deal of logic."
19005 (org-check-external-command
19006 "latex" "needed to convert LaTeX fragments to images")
19007 (funcall
19008 (case (or type org-latex-create-formula-image-program)
19009 ('dvipng
19010 (org-check-external-command
19011 "dvipng" "needed to convert LaTeX fragments to images")
19012 'org-create-formula-image-with-dvipng)
19013 ('imagemagick
19014 (org-check-external-command
19015 "convert" "you need to install imagemagick")
19016 'org-create-formula-image-with-imagemagick)
19017 (t (error
19018 "Invalid value of `org-latex-create-formula-image-program'")))
19019 string tofile options buffer))
19021 (declare-function org-export-get-backend "ox" (name))
19022 (declare-function org-export--get-global-options "ox" (&optional backend))
19023 (declare-function org-export--get-inbuffer-options "ox" (&optional backend))
19024 (declare-function org-latex-guess-inputenc "ox-latex" (header))
19025 (declare-function org-latex-guess-babel-language "ox-latex" (header info))
19026 (defun org-create-formula--latex-header ()
19027 "Return LaTeX header appropriate for previewing a LaTeX snippet."
19028 (let ((info (org-combine-plists (org-export--get-global-options
19029 (org-export-get-backend 'latex))
19030 (org-export--get-inbuffer-options
19031 (org-export-get-backend 'latex)))))
19032 (org-latex-guess-babel-language
19033 (org-latex-guess-inputenc
19034 (org-splice-latex-header
19035 org-format-latex-header
19036 org-latex-default-packages-alist
19037 org-latex-packages-alist t
19038 (plist-get info :latex-header)))
19039 info)))
19041 ;; This function borrows from Ganesh Swami's latex2png.el
19042 (defun org-create-formula-image-with-dvipng (string tofile options buffer)
19043 "This calls dvipng."
19044 (require 'ox-latex)
19045 (let* ((tmpdir (if (featurep 'xemacs)
19046 (temp-directory)
19047 temporary-file-directory))
19048 (texfilebase (make-temp-name
19049 (expand-file-name "orgtex" tmpdir)))
19050 (texfile (concat texfilebase ".tex"))
19051 (dvifile (concat texfilebase ".dvi"))
19052 (pngfile (concat texfilebase ".png"))
19053 (fnh (if (featurep 'xemacs)
19054 (font-height (face-font 'default))
19055 (face-attribute 'default :height nil)))
19056 (scale (or (plist-get options (if buffer :scale :html-scale)) 1.0))
19057 (dpi (number-to-string (* scale (floor (* 0.9 (if buffer fnh 140.))))))
19058 (fg (or (plist-get options (if buffer :foreground :html-foreground))
19059 "Black"))
19060 (bg (or (plist-get options (if buffer :background :html-background))
19061 "Transparent")))
19062 (if (eq fg 'default) (setq fg (org-dvipng-color :foreground))
19063 (unless (string= fg "Transparent") (setq fg (org-dvipng-color-format fg))))
19064 (if (eq bg 'default) (setq bg (org-dvipng-color :background))
19065 (unless (string= bg "Transparent") (setq bg (org-dvipng-color-format bg))))
19066 (let ((latex-header (org-create-formula--latex-header)))
19067 (with-temp-file texfile
19068 (insert latex-header)
19069 (insert "\n\\begin{document}\n" string "\n\\end{document}\n")))
19070 (let ((dir default-directory))
19071 (ignore-errors
19072 (cd tmpdir)
19073 (call-process "latex" nil nil nil texfile))
19074 (cd dir))
19075 (if (not (file-exists-p dvifile))
19076 (progn (message "Failed to create dvi file from %s" texfile) nil)
19077 (ignore-errors
19078 (if (featurep 'xemacs)
19079 (call-process "dvipng" nil nil nil
19080 "-fg" fg "-bg" bg
19081 "-T" "tight"
19082 "-o" pngfile
19083 dvifile)
19084 (call-process "dvipng" nil nil nil
19085 "-fg" fg "-bg" bg
19086 "-D" dpi
19087 ;;"-x" scale "-y" scale
19088 "-T" "tight"
19089 "-o" pngfile
19090 dvifile)))
19091 (if (not (file-exists-p pngfile))
19092 (if org-format-latex-signal-error
19093 (error "Failed to create png file from %s" texfile)
19094 (message "Failed to create png file from %s" texfile)
19095 nil)
19096 ;; Use the requested file name and clean up
19097 (copy-file pngfile tofile 'replace)
19098 (loop for e in '(".dvi" ".tex" ".aux" ".log" ".png" ".out") do
19099 (if (file-exists-p (concat texfilebase e))
19100 (delete-file (concat texfilebase e))))
19101 pngfile))))
19103 (declare-function org-latex-compile "ox-latex" (texfile &optional snippet))
19104 (defun org-create-formula-image-with-imagemagick (string tofile options buffer)
19105 "This calls convert, which is included into imagemagick."
19106 (require 'ox-latex)
19107 (let* ((tmpdir (if (featurep 'xemacs)
19108 (temp-directory)
19109 temporary-file-directory))
19110 (texfilebase (make-temp-name
19111 (expand-file-name "orgtex" tmpdir)))
19112 (texfile (concat texfilebase ".tex"))
19113 (pdffile (concat texfilebase ".pdf"))
19114 (pngfile (concat texfilebase ".png"))
19115 (fnh (if (featurep 'xemacs)
19116 (font-height (face-font 'default))
19117 (face-attribute 'default :height nil)))
19118 (scale (or (plist-get options (if buffer :scale :html-scale)) 1.0))
19119 (dpi (number-to-string (* scale (floor (if buffer fnh 120.)))))
19120 (fg (or (plist-get options (if buffer :foreground :html-foreground))
19121 "black"))
19122 (bg (or (plist-get options (if buffer :background :html-background))
19123 "white")))
19124 (if (eq fg 'default) (setq fg (org-latex-color :foreground))
19125 (setq fg (org-latex-color-format fg)))
19126 (if (eq bg 'default) (setq bg (org-latex-color :background))
19127 (setq bg (org-latex-color-format
19128 (if (string= bg "Transparent") "white" bg))))
19129 (let ((latex-header (org-create-formula--latex-header)))
19130 (with-temp-file texfile
19131 (insert latex-header)
19132 (insert "\n\\begin{document}\n"
19133 "\\definecolor{fg}{rgb}{" fg "}\n"
19134 "\\definecolor{bg}{rgb}{" bg "}\n"
19135 "\n\\pagecolor{bg}\n"
19136 "\n{\\color{fg}\n"
19137 string
19138 "\n}\n"
19139 "\n\\end{document}\n")))
19140 (org-latex-compile texfile t)
19141 (if (not (file-exists-p pdffile))
19142 (progn (message "Failed to create pdf file from %s" texfile) nil)
19143 (ignore-errors
19144 (if (featurep 'xemacs)
19145 (call-process "convert" nil nil nil
19146 "-density" "96"
19147 "-trim"
19148 "-antialias"
19149 pdffile
19150 "-quality" "100"
19151 ;; "-sharpen" "0x1.0"
19152 pngfile)
19153 (call-process "convert" nil nil nil
19154 "-density" dpi
19155 "-trim"
19156 "-antialias"
19157 pdffile
19158 "-quality" "100"
19159 ;; "-sharpen" "0x1.0"
19160 pngfile)))
19161 (if (not (file-exists-p pngfile))
19162 (if org-format-latex-signal-error
19163 (error "Failed to create png file from %s" texfile)
19164 (message "Failed to create png file from %s" texfile)
19165 nil)
19166 ;; Use the requested file name and clean up
19167 (copy-file pngfile tofile 'replace)
19168 (loop for e in '(".pdf" ".tex" ".aux" ".log" ".png") do
19169 (if (file-exists-p (concat texfilebase e))
19170 (delete-file (concat texfilebase e))))
19171 pngfile))))
19173 (defun org-splice-latex-header (tpl def-pkg pkg snippets-p &optional extra)
19174 "Fill a LaTeX header template TPL.
19175 In the template, the following place holders will be recognized:
19177 [DEFAULT-PACKAGES] \\usepackage statements for DEF-PKG
19178 [NO-DEFAULT-PACKAGES] do not include DEF-PKG
19179 [PACKAGES] \\usepackage statements for PKG
19180 [NO-PACKAGES] do not include PKG
19181 [EXTRA] the string EXTRA
19182 [NO-EXTRA] do not include EXTRA
19184 For backward compatibility, if both the positive and the negative place
19185 holder is missing, the positive one (without the \"NO-\") will be
19186 assumed to be present at the end of the template.
19187 DEF-PKG and PKG are assumed to be alists of options/packagename lists.
19188 EXTRA is a string.
19189 SNIPPETS-P indicates if this is run to create snippet images for HTML."
19190 (let (rpl (end ""))
19191 (if (string-match "^[ \t]*\\[\\(NO-\\)?DEFAULT-PACKAGES\\][ \t]*\n?" tpl)
19192 (setq rpl (if (or (match-end 1) (not def-pkg))
19193 "" (org-latex-packages-to-string def-pkg snippets-p t))
19194 tpl (replace-match rpl t t tpl))
19195 (if def-pkg (setq end (org-latex-packages-to-string def-pkg snippets-p))))
19197 (if (string-match "\\[\\(NO-\\)?PACKAGES\\][ \t]*\n?" tpl)
19198 (setq rpl (if (or (match-end 1) (not pkg))
19199 "" (org-latex-packages-to-string pkg snippets-p t))
19200 tpl (replace-match rpl t t tpl))
19201 (if pkg (setq end
19202 (concat end "\n"
19203 (org-latex-packages-to-string pkg snippets-p)))))
19205 (if (string-match "\\[\\(NO-\\)?EXTRA\\][ \t]*\n?" tpl)
19206 (setq rpl (if (or (match-end 1) (not extra))
19207 "" (concat extra "\n"))
19208 tpl (replace-match rpl t t tpl))
19209 (if (and extra (string-match "\\S-" extra))
19210 (setq end (concat end "\n" extra))))
19212 (if (string-match "\\S-" end)
19213 (concat tpl "\n" end)
19214 tpl)))
19216 (defun org-latex-packages-to-string (pkg &optional snippets-p newline)
19217 "Turn an alist of packages into a string with the \\usepackage macros."
19218 (setq pkg (mapconcat (lambda(p)
19219 (cond
19220 ((stringp p) p)
19221 ((and snippets-p (>= (length p) 3) (not (nth 2 p)))
19222 (format "%% Package %s omitted" (cadr p)))
19223 ((equal "" (car p))
19224 (format "\\usepackage{%s}" (cadr p)))
19226 (format "\\usepackage[%s]{%s}"
19227 (car p) (cadr p)))))
19229 "\n"))
19230 (if newline (concat pkg "\n") pkg))
19232 (defun org-dvipng-color (attr)
19233 "Return a RGB color specification for dvipng."
19234 (apply 'format "rgb %s %s %s"
19235 (mapcar 'org-normalize-color
19236 (if (featurep 'xemacs)
19237 (color-rgb-components
19238 (face-property 'default
19239 (cond ((eq attr :foreground) 'foreground)
19240 ((eq attr :background) 'background))))
19241 (color-values (face-attribute 'default attr nil))))))
19243 (defun org-dvipng-color-format (color-name)
19244 "Convert COLOR-NAME to a RGB color value for dvipng."
19245 (apply 'format "rgb %s %s %s"
19246 (mapcar 'org-normalize-color
19247 (color-values color-name))))
19249 (defun org-latex-color (attr)
19250 "Return a RGB color for the LaTeX color package."
19251 (apply 'format "%s,%s,%s"
19252 (mapcar 'org-normalize-color
19253 (if (featurep 'xemacs)
19254 (color-rgb-components
19255 (face-property 'default
19256 (cond ((eq attr :foreground) 'foreground)
19257 ((eq attr :background) 'background))))
19258 (color-values (face-attribute 'default attr nil))))))
19260 (defun org-latex-color-format (color-name)
19261 "Convert COLOR-NAME to a RGB color value."
19262 (apply 'format "%s,%s,%s"
19263 (mapcar 'org-normalize-color
19264 (color-values color-name))))
19266 (defun org-normalize-color (value)
19267 "Return string to be used as color value for an RGB component."
19268 (format "%g" (/ value 65535.0)))
19272 ;; Image display
19274 (defvar org-inline-image-overlays nil)
19275 (make-variable-buffer-local 'org-inline-image-overlays)
19277 (defun org-toggle-inline-images (&optional include-linked)
19278 "Toggle the display of inline images.
19279 INCLUDE-LINKED is passed to `org-display-inline-images'."
19280 (interactive "P")
19281 (if org-inline-image-overlays
19282 (progn
19283 (org-remove-inline-images)
19284 (message "Inline image display turned off"))
19285 (org-display-inline-images include-linked)
19286 (if (and (org-called-interactively-p)
19287 org-inline-image-overlays)
19288 (message "%d images displayed inline"
19289 (length org-inline-image-overlays))
19290 (message "No images to display inline"))))
19292 (defun org-redisplay-inline-images ()
19293 "Refresh the display of inline images."
19294 (interactive)
19295 (if (not org-inline-image-overlays)
19296 (org-toggle-inline-images)
19297 (org-toggle-inline-images)
19298 (org-toggle-inline-images)))
19300 (defun org-display-inline-images (&optional include-linked refresh beg end)
19301 "Display inline images.
19303 An inline image is a link which follows either of these
19304 conventions:
19306 1. Its path is a file with an extension matching return value
19307 from `image-file-name-regexp' and it has no contents.
19309 2. Its description consists in a single link of the previous
19310 type.
19312 When optional argument INCLUDE-LINKED is non-nil, also links with
19313 a text description part will be inlined. This can be nice for
19314 a quick look at those images, but it does not reflect what
19315 exported files will look like.
19317 When optional argument REFRESH is non-nil, refresh existing
19318 images between BEG and END. This will create new image displays
19319 only if necessary. BEG and END default to the buffer
19320 boundaries."
19321 (interactive "P")
19322 (when (display-graphic-p)
19323 (unless refresh
19324 (org-remove-inline-images)
19325 (when (fboundp 'clear-image-cache) (clear-image-cache)))
19326 (org-with-wide-buffer
19327 (goto-char (or beg (point-min)))
19328 (let ((case-fold-search t)
19329 (file-extension-re (org-image-file-name-regexp)))
19330 (while (re-search-forward "[][]\\[\\(?:file\\|[./~]\\)" end t)
19331 (let ((link (save-match-data (org-element-context))))
19332 ;; Check if we're at an inline image.
19333 (when (and (equal (org-element-property :type link) "file")
19334 (or include-linked
19335 (not (org-element-property :contents-begin link)))
19336 (let ((parent (org-element-property :parent link)))
19337 (or (not (eq (org-element-type parent) 'link))
19338 (not (cdr (org-element-contents parent)))))
19339 (org-string-match-p file-extension-re
19340 (org-element-property :path link)))
19341 (let ((file (expand-file-name (org-element-property :path link))))
19342 (when (file-exists-p file)
19343 (let ((width
19344 ;; Apply `org-image-actual-width' specifications.
19345 (cond
19346 ((not (image-type-available-p 'imagemagick)) nil)
19347 ((eq org-image-actual-width t) nil)
19348 ((listp org-image-actual-width)
19350 ;; First try to find a width among
19351 ;; attributes associated to the paragraph
19352 ;; containing link.
19353 (let ((paragraph
19354 (let ((e link))
19355 (while (and (setq e (org-element-property
19356 :parent e))
19357 (not (eq (org-element-type e)
19358 'paragraph))))
19359 e)))
19360 (when paragraph
19361 (save-excursion
19362 (goto-char (org-element-property :begin paragraph))
19363 (when
19364 (re-search-forward
19365 "^[ \t]*#\\+attr_.*?: +.*?:width +\\(\\S-+\\)"
19366 (org-element-property
19367 :post-affiliated paragraph)
19369 (string-to-number (match-string 1))))))
19370 ;; Otherwise, fall-back to provided number.
19371 (car org-image-actual-width)))
19372 ((numberp org-image-actual-width)
19373 org-image-actual-width)))
19374 (old (get-char-property-and-overlay
19375 (org-element-property :begin link)
19376 'org-image-overlay)))
19377 (if (and (car-safe old) refresh)
19378 (image-refresh (overlay-get (cdr old) 'display))
19379 (let ((image (create-image file
19380 (and width 'imagemagick)
19382 :width width)))
19383 (when image
19384 (let* ((link
19385 ;; If inline image is the description
19386 ;; of another link, be sure to
19387 ;; consider the latter as the one to
19388 ;; apply the overlay on.
19389 (let ((parent
19390 (org-element-property :parent link)))
19391 (if (eq (org-element-type parent) 'link)
19392 parent
19393 link)))
19394 (ov (make-overlay
19395 (org-element-property :begin link)
19396 (progn
19397 (goto-char
19398 (org-element-property :end link))
19399 (skip-chars-backward " \t")
19400 (point)))))
19401 (overlay-put ov 'display image)
19402 (overlay-put ov 'face 'default)
19403 (overlay-put ov 'org-image-overlay t)
19404 (overlay-put
19405 ov 'modification-hooks
19406 (list 'org-display-inline-remove-overlay))
19407 (push ov org-inline-image-overlays)))))))))))))))
19409 (define-obsolete-function-alias
19410 'org-display-inline-modification-hook 'org-display-inline-remove-overlay "24.3")
19412 (defun org-display-inline-remove-overlay (ov after beg end &optional len)
19413 "Remove inline-display overlay if a corresponding region is modified."
19414 (let ((inhibit-modification-hooks t))
19415 (when (and ov after)
19416 (delete ov org-inline-image-overlays)
19417 (delete-overlay ov))))
19419 (defun org-remove-inline-images ()
19420 "Remove inline display of images."
19421 (interactive)
19422 (mapc 'delete-overlay org-inline-image-overlays)
19423 (setq org-inline-image-overlays nil))
19425 ;;;; Key bindings
19427 ;; Outline functions from `outline-mode-prefix-map'
19428 ;; that can be remapped in Org:
19429 (define-key org-mode-map [remap outline-mark-subtree] 'org-mark-subtree)
19430 (define-key org-mode-map [remap show-subtree] 'org-show-subtree)
19431 (define-key org-mode-map [remap outline-forward-same-level]
19432 'org-forward-heading-same-level)
19433 (define-key org-mode-map [remap outline-backward-same-level]
19434 'org-backward-heading-same-level)
19435 (define-key org-mode-map [remap show-branches]
19436 'org-kill-note-or-show-branches)
19437 (define-key org-mode-map [remap outline-promote] 'org-promote-subtree)
19438 (define-key org-mode-map [remap outline-demote] 'org-demote-subtree)
19439 (define-key org-mode-map [remap outline-insert-heading] 'org-ctrl-c-ret)
19441 ;; Outline functions from `outline-mode-prefix-map' that can not
19442 ;; be remapped in Org:
19444 ;; - the column "key binding" shows whether the Outline function is still
19445 ;; available in Org mode on the same key that it has been bound to in
19446 ;; Outline mode:
19447 ;; - "overridden": key used for a different functionality in Org mode
19448 ;; - else: key still bound to the same Outline function in Org mode
19450 ;; | Outline function | key binding | Org replacement |
19451 ;; |------------------------------------+-------------+-----------------------|
19452 ;; | `outline-next-visible-heading' | `C-c C-n' | still same function |
19453 ;; | `outline-previous-visible-heading' | `C-c C-p' | still same function |
19454 ;; | `outline-up-heading' | `C-c C-u' | still same function |
19455 ;; | `outline-move-subtree-up' | overridden | better: org-shiftup |
19456 ;; | `outline-move-subtree-down' | overridden | better: org-shiftdown |
19457 ;; | `show-entry' | overridden | no replacement |
19458 ;; | `show-children' | `C-c C-i' | visibility cycling |
19459 ;; | `show-branches' | `C-c C-k' | still same function |
19460 ;; | `show-subtree' | overridden | visibility cycling |
19461 ;; | `show-all' | overridden | no replacement |
19462 ;; | `hide-subtree' | overridden | visibility cycling |
19463 ;; | `hide-body' | overridden | no replacement |
19464 ;; | `hide-entry' | overridden | visibility cycling |
19465 ;; | `hide-leaves' | overridden | no replacement |
19466 ;; | `hide-sublevels' | overridden | no replacement |
19467 ;; | `hide-other' | overridden | no replacement |
19469 ;; Make `C-c C-x' a prefix key
19470 (org-defkey org-mode-map "\C-c\C-x" (make-sparse-keymap))
19472 ;; TAB key with modifiers
19473 (org-defkey org-mode-map "\C-i" 'org-cycle)
19474 (org-defkey org-mode-map [(tab)] 'org-cycle)
19475 (org-defkey org-mode-map [(control tab)] 'org-force-cycle-archived)
19476 (org-defkey org-mode-map "\M-\t" 'pcomplete)
19477 ;; The following line is necessary under Suse GNU/Linux
19478 (unless (featurep 'xemacs)
19479 (org-defkey org-mode-map [S-iso-lefttab] 'org-shifttab))
19480 (org-defkey org-mode-map [(shift tab)] 'org-shifttab)
19481 (define-key org-mode-map [backtab] 'org-shifttab)
19483 (org-defkey org-mode-map [(shift return)] 'org-table-copy-down)
19484 (org-defkey org-mode-map [(meta shift return)] 'org-insert-todo-heading)
19485 (org-defkey org-mode-map [(meta return)] 'org-meta-return)
19487 ;; Cursor keys with modifiers
19488 (org-defkey org-mode-map [(meta left)] 'org-metaleft)
19489 (org-defkey org-mode-map [(meta right)] 'org-metaright)
19490 (org-defkey org-mode-map [(meta up)] 'org-metaup)
19491 (org-defkey org-mode-map [(meta down)] 'org-metadown)
19493 (org-defkey org-mode-map [(control meta shift right)] 'org-increase-number-at-point)
19494 (org-defkey org-mode-map [(control meta shift left)] 'org-decrease-number-at-point)
19495 (org-defkey org-mode-map [(meta shift left)] 'org-shiftmetaleft)
19496 (org-defkey org-mode-map [(meta shift right)] 'org-shiftmetaright)
19497 (org-defkey org-mode-map [(meta shift up)] 'org-shiftmetaup)
19498 (org-defkey org-mode-map [(meta shift down)] 'org-shiftmetadown)
19500 (org-defkey org-mode-map [(shift up)] 'org-shiftup)
19501 (org-defkey org-mode-map [(shift down)] 'org-shiftdown)
19502 (org-defkey org-mode-map [(shift left)] 'org-shiftleft)
19503 (org-defkey org-mode-map [(shift right)] 'org-shiftright)
19505 (org-defkey org-mode-map [(control shift right)] 'org-shiftcontrolright)
19506 (org-defkey org-mode-map [(control shift left)] 'org-shiftcontrolleft)
19507 (org-defkey org-mode-map [(control shift up)] 'org-shiftcontrolup)
19508 (org-defkey org-mode-map [(control shift down)] 'org-shiftcontroldown)
19510 ;; Babel keys
19511 (define-key org-mode-map org-babel-key-prefix org-babel-map)
19512 (mapc (lambda (pair)
19513 (define-key org-babel-map (car pair) (cdr pair)))
19514 org-babel-key-bindings)
19516 ;;; Extra keys for tty access.
19517 ;; We only set them when really needed because otherwise the
19518 ;; menus don't show the simple keys
19520 (when (or org-use-extra-keys
19521 (featurep 'xemacs) ;; because XEmacs supports multi-device stuff
19522 (not window-system))
19523 (org-defkey org-mode-map "\C-c\C-xc" 'org-table-copy-down)
19524 (org-defkey org-mode-map "\C-c\C-xM" 'org-insert-todo-heading)
19525 (org-defkey org-mode-map "\C-c\C-xm" 'org-meta-return)
19526 (org-defkey org-mode-map [?\e (return)] 'org-meta-return)
19527 (org-defkey org-mode-map [?\e (left)] 'org-metaleft)
19528 (org-defkey org-mode-map "\C-c\C-xl" 'org-metaleft)
19529 (org-defkey org-mode-map [?\e (right)] 'org-metaright)
19530 (org-defkey org-mode-map "\C-c\C-xr" 'org-metaright)
19531 (org-defkey org-mode-map [?\e (up)] 'org-metaup)
19532 (org-defkey org-mode-map "\C-c\C-xu" 'org-metaup)
19533 (org-defkey org-mode-map [?\e (down)] 'org-metadown)
19534 (org-defkey org-mode-map "\C-c\C-xd" 'org-metadown)
19535 (org-defkey org-mode-map "\C-c\C-xL" 'org-shiftmetaleft)
19536 (org-defkey org-mode-map "\C-c\C-xR" 'org-shiftmetaright)
19537 (org-defkey org-mode-map "\C-c\C-xU" 'org-shiftmetaup)
19538 (org-defkey org-mode-map "\C-c\C-xD" 'org-shiftmetadown)
19539 (org-defkey org-mode-map [?\C-c (up)] 'org-shiftup)
19540 (org-defkey org-mode-map [?\C-c (down)] 'org-shiftdown)
19541 (org-defkey org-mode-map [?\C-c (left)] 'org-shiftleft)
19542 (org-defkey org-mode-map [?\C-c (right)] 'org-shiftright)
19543 (org-defkey org-mode-map [?\C-c ?\C-x (right)] 'org-shiftcontrolright)
19544 (org-defkey org-mode-map [?\C-c ?\C-x (left)] 'org-shiftcontrolleft)
19545 (org-defkey org-mode-map [?\e (tab)] 'pcomplete)
19546 (org-defkey org-mode-map [?\e (shift return)] 'org-insert-todo-heading)
19547 (org-defkey org-mode-map [?\e (shift left)] 'org-shiftmetaleft)
19548 (org-defkey org-mode-map [?\e (shift right)] 'org-shiftmetaright)
19549 (org-defkey org-mode-map [?\e (shift up)] 'org-shiftmetaup)
19550 (org-defkey org-mode-map [?\e (shift down)] 'org-shiftmetadown))
19552 ;; All the other keys
19554 (org-defkey org-mode-map "\C-c\C-a" 'show-all) ; in case allout messed up.
19555 (org-defkey org-mode-map "\C-c\C-r" 'org-reveal)
19556 (if (boundp 'narrow-map)
19557 (org-defkey narrow-map "s" 'org-narrow-to-subtree)
19558 (org-defkey org-mode-map "\C-xns" 'org-narrow-to-subtree))
19559 (if (boundp 'narrow-map)
19560 (org-defkey narrow-map "b" 'org-narrow-to-block)
19561 (org-defkey org-mode-map "\C-xnb" 'org-narrow-to-block))
19562 (if (boundp 'narrow-map)
19563 (org-defkey narrow-map "e" 'org-narrow-to-element)
19564 (org-defkey org-mode-map "\C-xne" 'org-narrow-to-element))
19565 (org-defkey org-mode-map "\C-\M-t" 'org-transpose-element)
19566 (org-defkey org-mode-map "\M-}" 'org-forward-element)
19567 (org-defkey org-mode-map "\M-{" 'org-backward-element)
19568 (org-defkey org-mode-map "\C-c\C-^" 'org-up-element)
19569 (org-defkey org-mode-map "\C-c\C-_" 'org-down-element)
19570 (org-defkey org-mode-map "\C-c\C-f" 'org-forward-heading-same-level)
19571 (org-defkey org-mode-map "\C-c\C-b" 'org-backward-heading-same-level)
19572 (org-defkey org-mode-map "\C-c\M-f" 'org-next-block)
19573 (org-defkey org-mode-map "\C-c\M-b" 'org-previous-block)
19574 (org-defkey org-mode-map "\C-c$" 'org-archive-subtree)
19575 (org-defkey org-mode-map "\C-c\C-x\C-s" 'org-advertized-archive-subtree)
19576 (org-defkey org-mode-map "\C-c\C-x\C-a" 'org-archive-subtree-default)
19577 (org-defkey org-mode-map "\C-c\C-xd" 'org-insert-drawer)
19578 (org-defkey org-mode-map "\C-c\C-xa" 'org-toggle-archive-tag)
19579 (org-defkey org-mode-map "\C-c\C-xA" 'org-archive-to-archive-sibling)
19580 (org-defkey org-mode-map "\C-c\C-xb" 'org-tree-to-indirect-buffer)
19581 (org-defkey org-mode-map "\C-c\C-xq" 'org-toggle-tags-groups)
19582 (org-defkey org-mode-map "\C-c\C-j" 'org-goto)
19583 (org-defkey org-mode-map "\C-c\C-t" 'org-todo)
19584 (org-defkey org-mode-map "\C-c\C-q" 'org-set-tags-command)
19585 (org-defkey org-mode-map "\C-c\C-s" 'org-schedule)
19586 (org-defkey org-mode-map "\C-c\C-d" 'org-deadline)
19587 (org-defkey org-mode-map "\C-c;" 'org-toggle-comment)
19588 (org-defkey org-mode-map "\C-c\C-w" 'org-refile)
19589 (org-defkey org-mode-map "\C-c\M-w" 'org-copy)
19590 (org-defkey org-mode-map "\C-c/" 'org-sparse-tree) ; Minor-mode reserved
19591 (org-defkey org-mode-map "\C-c\\" 'org-match-sparse-tree) ; Minor-mode res.
19592 (org-defkey org-mode-map "\C-c\C-m" 'org-ctrl-c-ret)
19593 (org-defkey org-mode-map "\M-\C-m" 'org-insert-heading)
19594 (org-defkey org-mode-map "\C-c\C-xc" 'org-clone-subtree-with-time-shift)
19595 (org-defkey org-mode-map "\C-c\C-xv" 'org-copy-visible)
19596 (org-defkey org-mode-map [(control return)] 'org-insert-heading-respect-content)
19597 (org-defkey org-mode-map [(shift control return)] 'org-insert-todo-heading-respect-content)
19598 (org-defkey org-mode-map "\C-c\C-x\C-n" 'org-next-link)
19599 (org-defkey org-mode-map "\C-c\C-x\C-p" 'org-previous-link)
19600 (org-defkey org-mode-map "\C-c\C-l" 'org-insert-link)
19601 (org-defkey org-mode-map "\C-c\M-l" 'org-insert-last-stored-link)
19602 (org-defkey org-mode-map "\C-c\C-\M-l" 'org-insert-all-links)
19603 (org-defkey org-mode-map "\C-c\C-o" 'org-open-at-point)
19604 (org-defkey org-mode-map "\C-c%" 'org-mark-ring-push)
19605 (org-defkey org-mode-map "\C-c&" 'org-mark-ring-goto)
19606 (org-defkey org-mode-map "\C-c\C-z" 'org-add-note) ; Alternative binding
19607 (org-defkey org-mode-map "\C-c." 'org-time-stamp) ; Minor-mode reserved
19608 (org-defkey org-mode-map "\C-c!" 'org-time-stamp-inactive) ; Minor-mode r.
19609 (org-defkey org-mode-map "\C-c," 'org-priority) ; Minor-mode reserved
19610 (org-defkey org-mode-map "\C-c\C-y" 'org-evaluate-time-range)
19611 (org-defkey org-mode-map "\C-c>" 'org-goto-calendar)
19612 (org-defkey org-mode-map "\C-c<" 'org-date-from-calendar)
19613 (org-defkey org-mode-map [(control ?,)] 'org-cycle-agenda-files)
19614 (org-defkey org-mode-map [(control ?\')] 'org-cycle-agenda-files)
19615 (org-defkey org-mode-map "\C-c[" 'org-agenda-file-to-front)
19616 (org-defkey org-mode-map "\C-c]" 'org-remove-file)
19617 (org-defkey org-mode-map "\C-c\C-x<" 'org-agenda-set-restriction-lock)
19618 (org-defkey org-mode-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
19619 (org-defkey org-mode-map "\C-c-" 'org-ctrl-c-minus)
19620 (org-defkey org-mode-map "\C-c*" 'org-ctrl-c-star)
19621 (org-defkey org-mode-map "\C-c^" 'org-sort)
19622 (org-defkey org-mode-map "\C-c\C-c" 'org-ctrl-c-ctrl-c)
19623 (org-defkey org-mode-map "\C-c\C-k" 'org-kill-note-or-show-branches)
19624 (org-defkey org-mode-map "\C-c#" 'org-update-statistics-cookies)
19625 (org-defkey org-mode-map [remap open-line] 'org-open-line)
19626 (org-defkey org-mode-map [remap comment-dwim] 'org-comment-dwim)
19627 (org-defkey org-mode-map [remap forward-paragraph] 'org-forward-paragraph)
19628 (org-defkey org-mode-map [remap backward-paragraph] 'org-backward-paragraph)
19629 (org-defkey org-mode-map "\C-m" 'org-return)
19630 (org-defkey org-mode-map "\C-j" 'org-return-indent)
19631 (org-defkey org-mode-map "\C-c?" 'org-table-field-info)
19632 (org-defkey org-mode-map "\C-c " 'org-table-blank-field)
19633 (org-defkey org-mode-map "\C-c+" 'org-table-sum)
19634 (org-defkey org-mode-map "\C-c=" 'org-table-eval-formula)
19635 (org-defkey org-mode-map "\C-c'" 'org-edit-special)
19636 (org-defkey org-mode-map "\C-c`" 'org-table-edit-field)
19637 (org-defkey org-mode-map "\C-c\"a" 'orgtbl-ascii-plot)
19638 (org-defkey org-mode-map "\C-c\"g" 'org-plot/gnuplot)
19639 (org-defkey org-mode-map "\C-c|" 'org-table-create-or-convert-from-region)
19640 (org-defkey org-mode-map [(control ?#)] 'org-table-rotate-recalc-marks)
19641 (org-defkey org-mode-map "\C-c~" 'org-table-create-with-table.el)
19642 (org-defkey org-mode-map "\C-c\C-a" 'org-attach)
19643 (org-defkey org-mode-map "\C-c}" 'org-table-toggle-coordinate-overlays)
19644 (org-defkey org-mode-map "\C-c{" 'org-table-toggle-formula-debugger)
19645 (org-defkey org-mode-map "\C-c\C-e" 'org-export-dispatch)
19646 (org-defkey org-mode-map "\C-c:" 'org-toggle-fixed-width)
19647 (org-defkey org-mode-map "\C-c\C-x\C-f" 'org-emphasize)
19648 (org-defkey org-mode-map "\C-c\C-xf" 'org-footnote-action)
19649 (org-defkey org-mode-map "\C-c\C-x\C-mg" 'org-mobile-pull)
19650 (org-defkey org-mode-map "\C-c\C-x\C-mp" 'org-mobile-push)
19651 (org-defkey org-mode-map "\C-c@" 'org-mark-subtree)
19652 (org-defkey org-mode-map "\M-h" 'org-mark-element)
19653 (org-defkey org-mode-map [?\C-c (control ?*)] 'org-list-make-subtree)
19654 ;;(org-defkey org-mode-map [?\C-c (control ?-)] 'org-list-make-list-from-subtree)
19656 (org-defkey org-mode-map "\C-c\C-x\C-w" 'org-cut-special)
19657 (org-defkey org-mode-map "\C-c\C-x\M-w" 'org-copy-special)
19658 (org-defkey org-mode-map "\C-c\C-x\C-y" 'org-paste-special)
19660 (org-defkey org-mode-map "\C-c\C-x\C-t" 'org-toggle-time-stamp-overlays)
19661 (org-defkey org-mode-map "\C-c\C-x\C-i" 'org-clock-in)
19662 (org-defkey org-mode-map "\C-c\C-x\C-x" 'org-clock-in-last)
19663 (org-defkey org-mode-map "\C-c\C-x\C-z" 'org-resolve-clocks)
19664 (org-defkey org-mode-map "\C-c\C-x\C-o" 'org-clock-out)
19665 (org-defkey org-mode-map "\C-c\C-x\C-j" 'org-clock-goto)
19666 (org-defkey org-mode-map "\C-c\C-x\C-q" 'org-clock-cancel)
19667 (org-defkey org-mode-map "\C-c\C-x\C-d" 'org-clock-display)
19668 (org-defkey org-mode-map "\C-c\C-x\C-r" 'org-clock-report)
19669 (org-defkey org-mode-map "\C-c\C-x\C-u" 'org-dblock-update)
19670 (org-defkey org-mode-map "\C-c\C-x\C-l" 'org-toggle-latex-fragment)
19671 (org-defkey org-mode-map "\C-c\C-x\C-v" 'org-toggle-inline-images)
19672 (org-defkey org-mode-map "\C-c\C-x\C-\M-v" 'org-redisplay-inline-images)
19673 (org-defkey org-mode-map "\C-c\C-x\\" 'org-toggle-pretty-entities)
19674 (org-defkey org-mode-map "\C-c\C-x\C-b" 'org-toggle-checkbox)
19675 (org-defkey org-mode-map "\C-c\C-xp" 'org-set-property)
19676 (org-defkey org-mode-map "\C-c\C-xP" 'org-set-property-and-value)
19677 (org-defkey org-mode-map "\C-c\C-xe" 'org-set-effort)
19678 (org-defkey org-mode-map "\C-c\C-xE" 'org-inc-effort)
19679 (org-defkey org-mode-map "\C-c\C-xo" 'org-toggle-ordered-property)
19680 (org-defkey org-mode-map "\C-c\C-xi" 'org-insert-columns-dblock)
19681 (org-defkey org-mode-map [(control ?c) (control ?x) ?\;] 'org-timer-set-timer)
19682 (org-defkey org-mode-map [(control ?c) (control ?x) ?\:] 'org-timer-cancel-timer)
19684 (org-defkey org-mode-map "\C-c\C-x." 'org-timer)
19685 (org-defkey org-mode-map "\C-c\C-x-" 'org-timer-item)
19686 (org-defkey org-mode-map "\C-c\C-x0" 'org-timer-start)
19687 (org-defkey org-mode-map "\C-c\C-x_" 'org-timer-stop)
19688 (org-defkey org-mode-map "\C-c\C-x," 'org-timer-pause-or-continue)
19690 (define-key org-mode-map "\C-c\C-x\C-c" 'org-columns)
19692 (define-key org-mode-map "\C-c\C-x!" 'org-reload)
19694 (define-key org-mode-map "\C-c\C-xg" 'org-feed-update-all)
19695 (define-key org-mode-map "\C-c\C-xG" 'org-feed-goto-inbox)
19697 (define-key org-mode-map "\C-c\C-x[" 'org-reftex-citation)
19700 (when (featurep 'xemacs)
19701 (org-defkey org-mode-map 'button3 'popup-mode-menu))
19704 (defconst org-speed-commands-default
19706 ("Outline Navigation")
19707 ("n" . (org-speed-move-safe 'outline-next-visible-heading))
19708 ("p" . (org-speed-move-safe 'outline-previous-visible-heading))
19709 ("f" . (org-speed-move-safe 'org-forward-heading-same-level))
19710 ("b" . (org-speed-move-safe 'org-backward-heading-same-level))
19711 ("F" . org-next-block)
19712 ("B" . org-previous-block)
19713 ("u" . (org-speed-move-safe 'outline-up-heading))
19714 ("j" . org-goto)
19715 ("g" . (org-refile t))
19716 ("Outline Visibility")
19717 ("c" . org-cycle)
19718 ("C" . org-shifttab)
19719 (" " . org-display-outline-path)
19720 ("s" . org-narrow-to-subtree)
19721 ("=" . org-columns)
19722 ("Outline Structure Editing")
19723 ("U" . org-metaup)
19724 ("D" . org-metadown)
19725 ("r" . org-metaright)
19726 ("l" . org-metaleft)
19727 ("R" . org-shiftmetaright)
19728 ("L" . org-shiftmetaleft)
19729 ("i" . (progn (forward-char 1) (call-interactively
19730 'org-insert-heading-respect-content)))
19731 ("^" . org-sort)
19732 ("w" . org-refile)
19733 ("a" . org-archive-subtree-default-with-confirmation)
19734 ("@" . org-mark-subtree)
19735 ("#" . org-toggle-comment)
19736 ("Clock Commands")
19737 ("I" . org-clock-in)
19738 ("O" . org-clock-out)
19739 ("Meta Data Editing")
19740 ("t" . org-todo)
19741 ("," . (org-priority))
19742 ("0" . (org-priority ?\ ))
19743 ("1" . (org-priority ?A))
19744 ("2" . (org-priority ?B))
19745 ("3" . (org-priority ?C))
19746 (":" . org-set-tags-command)
19747 ("e" . org-set-effort)
19748 ("E" . org-inc-effort)
19749 ("W" . (lambda(m) (interactive "sMinutes before warning: ")
19750 (org-entry-put (point) "APPT_WARNTIME" m)))
19751 ("Agenda Views etc")
19752 ("v" . org-agenda)
19753 ("/" . org-sparse-tree)
19754 ("Misc")
19755 ("o" . org-open-at-point)
19756 ("?" . org-speed-command-help)
19757 ("<" . (org-agenda-set-restriction-lock 'subtree))
19758 (">" . (org-agenda-remove-restriction-lock))
19760 "The default speed commands.")
19762 (defun org-print-speed-command (e)
19763 (if (> (length (car e)) 1)
19764 (progn
19765 (princ "\n")
19766 (princ (car e))
19767 (princ "\n")
19768 (princ (make-string (length (car e)) ?-))
19769 (princ "\n"))
19770 (princ (car e))
19771 (princ " ")
19772 (if (symbolp (cdr e))
19773 (princ (symbol-name (cdr e)))
19774 (prin1 (cdr e)))
19775 (princ "\n")))
19777 (defun org-speed-command-help ()
19778 "Show the available speed commands."
19779 (interactive)
19780 (if (not org-use-speed-commands)
19781 (user-error "Speed commands are not activated, customize `org-use-speed-commands'")
19782 (with-output-to-temp-buffer "*Help*"
19783 (princ "User-defined Speed commands\n===========================\n")
19784 (mapc 'org-print-speed-command org-speed-commands-user)
19785 (princ "\n")
19786 (princ "Built-in Speed commands\n=======================\n")
19787 (mapc 'org-print-speed-command org-speed-commands-default))
19788 (with-current-buffer "*Help*"
19789 (setq truncate-lines t))))
19791 (defun org-speed-move-safe (cmd)
19792 "Execute CMD, but make sure that the cursor always ends up in a headline.
19793 If not, return to the original position and throw an error."
19794 (interactive)
19795 (let ((pos (point)))
19796 (call-interactively cmd)
19797 (unless (and (bolp) (org-at-heading-p))
19798 (goto-char pos)
19799 (error "Boundary reached while executing %s" cmd))))
19801 (defvar org-self-insert-command-undo-counter 0)
19803 (defvar org-table-auto-blank-field) ; defined in org-table.el
19804 (defvar org-speed-command nil)
19806 (define-obsolete-function-alias
19807 'org-speed-command-default-hook 'org-speed-command-activate "24.3")
19809 (defun org-speed-command-activate (keys)
19810 "Hook for activating single-letter speed commands.
19811 `org-speed-commands-default' specifies a minimal command set.
19812 Use `org-speed-commands-user' for further customization."
19813 (when (or (and (bolp) (looking-at org-outline-regexp))
19814 (and (functionp org-use-speed-commands)
19815 (funcall org-use-speed-commands)))
19816 (cdr (assoc keys (append org-speed-commands-user
19817 org-speed-commands-default)))))
19819 (define-obsolete-function-alias
19820 'org-babel-speed-command-hook 'org-babel-speed-command-activate "24.3")
19822 (defun org-babel-speed-command-activate (keys)
19823 "Hook for activating single-letter code block commands."
19824 (when (and (bolp) (looking-at org-babel-src-block-regexp))
19825 (cdr (assoc keys org-babel-key-bindings))))
19827 (defcustom org-speed-command-hook
19828 '(org-speed-command-default-hook org-babel-speed-command-hook)
19829 "Hook for activating speed commands at strategic locations.
19830 Hook functions are called in sequence until a valid handler is
19831 found.
19833 Each hook takes a single argument, a user-pressed command key
19834 which is also a `self-insert-command' from the global map.
19836 Within the hook, examine the cursor position and the command key
19837 and return nil or a valid handler as appropriate. Handler could
19838 be one of an interactive command, a function, or a form.
19840 Set `org-use-speed-commands' to non-nil value to enable this
19841 hook. The default setting is `org-speed-command-activate'."
19842 :group 'org-structure
19843 :version "24.1"
19844 :type 'hook)
19846 (defun org-self-insert-command (N)
19847 "Like `self-insert-command', use overwrite-mode for whitespace in tables.
19848 If the cursor is in a table looking at whitespace, the whitespace is
19849 overwritten, and the table is not marked as requiring realignment."
19850 (interactive "p")
19851 (org-check-before-invisible-edit 'insert)
19852 (cond
19853 ((and org-use-speed-commands
19854 (let ((kv (this-command-keys-vector)))
19855 (setq org-speed-command
19856 (run-hook-with-args-until-success
19857 'org-speed-command-hook
19858 (make-string 1 (aref kv (1- (length kv))))))))
19859 (cond
19860 ((commandp org-speed-command)
19861 (setq this-command org-speed-command)
19862 (call-interactively org-speed-command))
19863 ((functionp org-speed-command)
19864 (funcall org-speed-command))
19865 ((and org-speed-command (listp org-speed-command))
19866 (eval org-speed-command))
19867 (t (let (org-use-speed-commands)
19868 (call-interactively 'org-self-insert-command)))))
19869 ((and
19870 (org-table-p)
19871 (progn
19872 ;; check if we blank the field, and if that triggers align
19873 (and (featurep 'org-table) org-table-auto-blank-field
19874 (member last-command
19875 '(org-cycle org-return org-shifttab org-ctrl-c-ctrl-c yas-expand))
19876 (if (or (equal (char-after) ?\ ) (looking-at "[^|\n]* |"))
19877 ;; got extra space, this field does not determine column width
19878 (let (org-table-may-need-update) (org-table-blank-field))
19879 ;; no extra space, this field may determine column width
19880 (org-table-blank-field)))
19882 (eq N 1)
19883 (looking-at "[^|\n]* |"))
19884 (let (org-table-may-need-update)
19885 (goto-char (1- (match-end 0)))
19886 (backward-delete-char 1)
19887 (goto-char (match-beginning 0))
19888 (self-insert-command N)))
19890 (setq org-table-may-need-update t)
19891 (self-insert-command N)
19892 (org-fix-tags-on-the-fly)
19893 (if org-self-insert-cluster-for-undo
19894 (if (not (eq last-command 'org-self-insert-command))
19895 (setq org-self-insert-command-undo-counter 1)
19896 (if (>= org-self-insert-command-undo-counter 20)
19897 (setq org-self-insert-command-undo-counter 1)
19898 (and (> org-self-insert-command-undo-counter 0)
19899 buffer-undo-list (listp buffer-undo-list)
19900 (not (cadr buffer-undo-list)) ; remove nil entry
19901 (setcdr buffer-undo-list (cddr buffer-undo-list)))
19902 (setq org-self-insert-command-undo-counter
19903 (1+ org-self-insert-command-undo-counter))))))))
19905 (defun org-check-before-invisible-edit (kind)
19906 "Check is editing if kind KIND would be dangerous with invisible text around.
19907 The detailed reaction depends on the user option `org-catch-invisible-edits'."
19908 ;; First, try to get out of here as quickly as possible, to reduce overhead
19909 (if (and org-catch-invisible-edits
19910 (or (not (boundp 'visible-mode)) (not visible-mode))
19911 (or (get-char-property (point) 'invisible)
19912 (get-char-property (max (point-min) (1- (point))) 'invisible)))
19913 ;; OK, we need to take a closer look
19914 (let* ((invisible-at-point (get-char-property (point) 'invisible))
19915 (invisible-before-point (if (bobp) nil (get-char-property
19916 (1- (point)) 'invisible)))
19917 (border-and-ok-direction
19919 ;; Check if we are acting predictably before invisible text
19920 (and invisible-at-point (not invisible-before-point)
19921 (memq kind '(insert delete-backward)))
19922 ;; Check if we are acting predictably after invisible text
19923 ;; This works not well, and I have turned it off. It seems
19924 ;; better to always show and stop after invisible text.
19925 ;; (and (not invisible-at-point) invisible-before-point
19926 ;; (memq kind '(insert delete)))
19928 (when (or (memq invisible-at-point '(outline org-hide-block t))
19929 (memq invisible-before-point '(outline org-hide-block t)))
19930 (if (eq org-catch-invisible-edits 'error)
19931 (user-error "Editing in invisible areas is prohibited, make them visible first"))
19932 (if (and org-custom-properties-overlays
19933 (y-or-n-p "Display invisible properties in this buffer? "))
19934 (org-toggle-custom-properties-visibility)
19935 ;; Make the area visible
19936 (save-excursion
19937 (if invisible-before-point
19938 (goto-char (previous-single-char-property-change
19939 (point) 'invisible)))
19940 (show-subtree))
19941 (cond
19942 ((eq org-catch-invisible-edits 'show)
19943 ;; That's it, we do the edit after showing
19944 (message
19945 "Unfolding invisible region around point before editing")
19946 (sit-for 1))
19947 ((and (eq org-catch-invisible-edits 'smart)
19948 border-and-ok-direction)
19949 (message "Unfolding invisible region around point before editing"))
19951 ;; Don't do the edit, make the user repeat it in full visibility
19952 (user-error "Edit in invisible region aborted, repeat to confirm with text visible"))))))))
19954 (defun org-fix-tags-on-the-fly ()
19955 (when (and (equal (char-after (point-at-bol)) ?*)
19956 (org-at-heading-p))
19957 (org-align-tags-here org-tags-column)))
19959 (defun org-delete-backward-char (N)
19960 "Like `delete-backward-char', insert whitespace at field end in tables.
19961 When deleting backwards, in tables this function will insert whitespace in
19962 front of the next \"|\" separator, to keep the table aligned. The table will
19963 still be marked for re-alignment if the field did fill the entire column,
19964 because, in this case the deletion might narrow the column."
19965 (interactive "p")
19966 (save-match-data
19967 (org-check-before-invisible-edit 'delete-backward)
19968 (if (and (org-table-p)
19969 (eq N 1)
19970 (string-match "|" (buffer-substring (point-at-bol) (point)))
19971 (looking-at ".*?|"))
19972 (let ((pos (point))
19973 (noalign (looking-at "[^|\n\r]* |"))
19974 (c org-table-may-need-update))
19975 (backward-delete-char N)
19976 (if (not overwrite-mode)
19977 (progn
19978 (skip-chars-forward "^|")
19979 (insert " ")
19980 (goto-char (1- pos))))
19981 ;; noalign: if there were two spaces at the end, this field
19982 ;; does not determine the width of the column.
19983 (if noalign (setq org-table-may-need-update c)))
19984 (backward-delete-char N)
19985 (org-fix-tags-on-the-fly))))
19987 (defun org-delete-char (N)
19988 "Like `delete-char', but insert whitespace at field end in tables.
19989 When deleting characters, in tables this function will insert whitespace in
19990 front of the next \"|\" separator, to keep the table aligned. The table will
19991 still be marked for re-alignment if the field did fill the entire column,
19992 because, in this case the deletion might narrow the column."
19993 (interactive "p")
19994 (save-match-data
19995 (org-check-before-invisible-edit 'delete)
19996 (if (and (org-table-p)
19997 (not (bolp))
19998 (not (= (char-after) ?|))
19999 (eq N 1))
20000 (if (looking-at ".*?|")
20001 (let ((pos (point))
20002 (noalign (looking-at "[^|\n\r]* |"))
20003 (c org-table-may-need-update))
20004 (replace-match
20005 (concat (substring (match-string 0) 1 -1) " |") nil t)
20006 (goto-char pos)
20007 ;; noalign: if there were two spaces at the end, this field
20008 ;; does not determine the width of the column.
20009 (if noalign (setq org-table-may-need-update c)))
20010 (delete-char N))
20011 (delete-char N)
20012 (org-fix-tags-on-the-fly))))
20014 ;; Make `delete-selection-mode' work with org-mode and orgtbl-mode
20015 (put 'org-self-insert-command 'delete-selection
20016 (lambda ()
20017 (not (run-hook-with-args-until-success
20018 'self-insert-uses-region-functions))))
20019 (put 'orgtbl-self-insert-command 'delete-selection
20020 (lambda ()
20021 (not (run-hook-with-args-until-success
20022 'self-insert-uses-region-functions))))
20023 (put 'org-delete-char 'delete-selection 'supersede)
20024 (put 'org-delete-backward-char 'delete-selection 'supersede)
20025 (put 'org-yank 'delete-selection 'yank)
20027 ;; Make `flyspell-mode' delay after some commands
20028 (put 'org-self-insert-command 'flyspell-delayed t)
20029 (put 'orgtbl-self-insert-command 'flyspell-delayed t)
20030 (put 'org-delete-char 'flyspell-delayed t)
20031 (put 'org-delete-backward-char 'flyspell-delayed t)
20033 ;; Make pabbrev-mode expand after org-mode commands
20034 (put 'org-self-insert-command 'pabbrev-expand-after-command t)
20035 (put 'orgtbl-self-insert-command 'pabbrev-expand-after-command t)
20037 (defun org-remap (map &rest commands)
20038 "In MAP, remap the functions given in COMMANDS.
20039 COMMANDS is a list of alternating OLDDEF NEWDEF command names."
20040 (let (new old)
20041 (while commands
20042 (setq old (pop commands) new (pop commands))
20043 (if (fboundp 'command-remapping)
20044 (org-defkey map (vector 'remap old) new)
20045 (substitute-key-definition old new map global-map)))))
20047 (defun org-transpose-words ()
20048 "Transpose words for Org.
20049 This uses the `org-mode-transpose-word-syntax-table' syntax
20050 table, which interprets characters in `org-emphasis-alist' as
20051 word constituents."
20052 (interactive)
20053 (with-syntax-table org-mode-transpose-word-syntax-table
20054 (call-interactively 'transpose-words)))
20055 (org-remap org-mode-map 'transpose-words 'org-transpose-words)
20057 (when (eq org-enable-table-editor 'optimized)
20058 ;; If the user wants maximum table support, we need to hijack
20059 ;; some standard editing functions
20060 (org-remap org-mode-map
20061 'self-insert-command 'org-self-insert-command
20062 'delete-char 'org-delete-char
20063 'delete-backward-char 'org-delete-backward-char)
20064 (org-defkey org-mode-map "|" 'org-force-self-insert))
20066 (defvar org-ctrl-c-ctrl-c-hook nil
20067 "Hook for functions attaching themselves to `C-c C-c'.
20069 This can be used to add additional functionality to the C-c C-c
20070 key which executes context-dependent commands. This hook is run
20071 before any other test, while `org-ctrl-c-ctrl-c-final-hook' is
20072 run after the last test.
20074 Each function will be called with no arguments. The function
20075 must check if the context is appropriate for it to act. If yes,
20076 it should do its thing and then return a non-nil value. If the
20077 context is wrong, just do nothing and return nil.")
20079 (defvar org-ctrl-c-ctrl-c-final-hook nil
20080 "Hook for functions attaching themselves to `C-c C-c'.
20082 This can be used to add additional functionality to the C-c C-c
20083 key which executes context-dependent commands. This hook is run
20084 after any other test, while `org-ctrl-c-ctrl-c-hook' is run
20085 before the first test.
20087 Each function will be called with no arguments. The function
20088 must check if the context is appropriate for it to act. If yes,
20089 it should do its thing and then return a non-nil value. If the
20090 context is wrong, just do nothing and return nil.")
20092 (defvar org-tab-first-hook nil
20093 "Hook for functions to attach themselves to TAB.
20094 See `org-ctrl-c-ctrl-c-hook' for more information.
20095 This hook runs as the first action when TAB is pressed, even before
20096 `org-cycle' messes around with the `outline-regexp' to cater for
20097 inline tasks and plain list item folding.
20098 If any function in this hook returns t, any other actions that
20099 would have been caused by TAB (such as table field motion or visibility
20100 cycling) will not occur.")
20102 (defvar org-tab-after-check-for-table-hook nil
20103 "Hook for functions to attach themselves to TAB.
20104 See `org-ctrl-c-ctrl-c-hook' for more information.
20105 This hook runs after it has been established that the cursor is not in a
20106 table, but before checking if the cursor is in a headline or if global cycling
20107 should be done.
20108 If any function in this hook returns t, not other actions like visibility
20109 cycling will be done.")
20111 (defvar org-tab-after-check-for-cycling-hook nil
20112 "Hook for functions to attach themselves to TAB.
20113 See `org-ctrl-c-ctrl-c-hook' for more information.
20114 This hook runs after it has been established that not table field motion and
20115 not visibility should be done because of current context. This is probably
20116 the place where a package like yasnippets can hook in.")
20118 (defvar org-tab-before-tab-emulation-hook nil
20119 "Hook for functions to attach themselves to TAB.
20120 See `org-ctrl-c-ctrl-c-hook' for more information.
20121 This hook runs after every other options for TAB have been exhausted, but
20122 before indentation and \t insertion takes place.")
20124 (defvar org-metaleft-hook nil
20125 "Hook for functions attaching themselves to `M-left'.
20126 See `org-ctrl-c-ctrl-c-hook' for more information.")
20127 (defvar org-metaright-hook nil
20128 "Hook for functions attaching themselves to `M-right'.
20129 See `org-ctrl-c-ctrl-c-hook' for more information.")
20130 (defvar org-metaup-hook nil
20131 "Hook for functions attaching themselves to `M-up'.
20132 See `org-ctrl-c-ctrl-c-hook' for more information.")
20133 (defvar org-metadown-hook nil
20134 "Hook for functions attaching themselves to `M-down'.
20135 See `org-ctrl-c-ctrl-c-hook' for more information.")
20136 (defvar org-shiftmetaleft-hook nil
20137 "Hook for functions attaching themselves to `M-S-left'.
20138 See `org-ctrl-c-ctrl-c-hook' for more information.")
20139 (defvar org-shiftmetaright-hook nil
20140 "Hook for functions attaching themselves to `M-S-right'.
20141 See `org-ctrl-c-ctrl-c-hook' for more information.")
20142 (defvar org-shiftmetaup-hook nil
20143 "Hook for functions attaching themselves to `M-S-up'.
20144 See `org-ctrl-c-ctrl-c-hook' for more information.")
20145 (defvar org-shiftmetadown-hook nil
20146 "Hook for functions attaching themselves to `M-S-down'.
20147 See `org-ctrl-c-ctrl-c-hook' for more information.")
20148 (defvar org-metareturn-hook nil
20149 "Hook for functions attaching themselves to `M-RET'.
20150 See `org-ctrl-c-ctrl-c-hook' for more information.")
20151 (defvar org-shiftup-hook nil
20152 "Hook for functions attaching themselves to `S-up'.
20153 See `org-ctrl-c-ctrl-c-hook' for more information.")
20154 (defvar org-shiftup-final-hook nil
20155 "Hook for functions attaching themselves to `S-up'.
20156 This one runs after all other options except shift-select have been excluded.
20157 See `org-ctrl-c-ctrl-c-hook' for more information.")
20158 (defvar org-shiftdown-hook nil
20159 "Hook for functions attaching themselves to `S-down'.
20160 See `org-ctrl-c-ctrl-c-hook' for more information.")
20161 (defvar org-shiftdown-final-hook nil
20162 "Hook for functions attaching themselves to `S-down'.
20163 This one runs after all other options except shift-select have been excluded.
20164 See `org-ctrl-c-ctrl-c-hook' for more information.")
20165 (defvar org-shiftleft-hook nil
20166 "Hook for functions attaching themselves to `S-left'.
20167 See `org-ctrl-c-ctrl-c-hook' for more information.")
20168 (defvar org-shiftleft-final-hook nil
20169 "Hook for functions attaching themselves to `S-left'.
20170 This one runs after all other options except shift-select have been excluded.
20171 See `org-ctrl-c-ctrl-c-hook' for more information.")
20172 (defvar org-shiftright-hook nil
20173 "Hook for functions attaching themselves to `S-right'.
20174 See `org-ctrl-c-ctrl-c-hook' for more information.")
20175 (defvar org-shiftright-final-hook nil
20176 "Hook for functions attaching themselves to `S-right'.
20177 This one runs after all other options except shift-select have been excluded.
20178 See `org-ctrl-c-ctrl-c-hook' for more information.")
20180 (defun org-modifier-cursor-error ()
20181 "Throw an error, a modified cursor command was applied in wrong context."
20182 (user-error "This command is active in special context like tables, headlines or items"))
20184 (defun org-shiftselect-error ()
20185 "Throw an error because Shift-Cursor command was applied in wrong context."
20186 (if (and (boundp 'shift-select-mode) shift-select-mode)
20187 (user-error "To use shift-selection with Org-mode, customize `org-support-shift-select'")
20188 (user-error "This command works only in special context like headlines or timestamps")))
20190 (defun org-call-for-shift-select (cmd)
20191 (let ((this-command-keys-shift-translated t))
20192 (call-interactively cmd)))
20194 (defun org-shifttab (&optional arg)
20195 "Global visibility cycling or move to previous table field.
20196 Call `org-table-previous-field' within a table.
20197 When ARG is nil, cycle globally through visibility states.
20198 When ARG is a numeric prefix, show contents of this level."
20199 (interactive "P")
20200 (cond
20201 ((org-at-table-p) (call-interactively 'org-table-previous-field))
20202 ((integerp arg)
20203 (let ((arg2 (if org-odd-levels-only (1- (* 2 arg)) arg)))
20204 (message "Content view to level: %d" arg)
20205 (org-content (prefix-numeric-value arg2))
20206 (org-cycle-show-empty-lines t)
20207 (setq org-cycle-global-status 'overview)))
20208 (t (call-interactively 'org-global-cycle))))
20210 (defun org-shiftmetaleft ()
20211 "Promote subtree or delete table column.
20212 Calls `org-promote-subtree', `org-outdent-item-tree', or
20213 `org-table-delete-column', depending on context. See the
20214 individual commands for more information."
20215 (interactive)
20216 (cond
20217 ((run-hook-with-args-until-success 'org-shiftmetaleft-hook))
20218 ((org-at-table-p) (call-interactively 'org-table-delete-column))
20219 ((org-at-heading-p) (call-interactively 'org-promote-subtree))
20220 ((if (not (org-region-active-p)) (org-at-item-p)
20221 (save-excursion (goto-char (region-beginning))
20222 (org-at-item-p)))
20223 (call-interactively 'org-outdent-item-tree))
20224 (t (org-modifier-cursor-error))))
20226 (defun org-shiftmetaright ()
20227 "Demote subtree or insert table column.
20228 Calls `org-demote-subtree', `org-indent-item-tree', or
20229 `org-table-insert-column', depending on context. See the
20230 individual commands for more information."
20231 (interactive)
20232 (cond
20233 ((run-hook-with-args-until-success 'org-shiftmetaright-hook))
20234 ((org-at-table-p) (call-interactively 'org-table-insert-column))
20235 ((org-at-heading-p) (call-interactively 'org-demote-subtree))
20236 ((if (not (org-region-active-p)) (org-at-item-p)
20237 (save-excursion (goto-char (region-beginning))
20238 (org-at-item-p)))
20239 (call-interactively 'org-indent-item-tree))
20240 (t (org-modifier-cursor-error))))
20242 (defun org-shiftmetaup (&optional arg)
20243 "Drag the line at point up.
20244 In a table, kill the current row.
20245 On a clock timestamp, update the value of the timestamp like `S-<up>'
20246 but also adjust the previous clocked item in the clock history.
20247 Everywhere else, drag the line at point up."
20248 (interactive "P")
20249 (cond
20250 ((run-hook-with-args-until-success 'org-shiftmetaup-hook))
20251 ((org-at-table-p) (call-interactively 'org-table-kill-row))
20252 ((org-at-clock-log-p) (let ((org-clock-adjust-closest t))
20253 (call-interactively 'org-timestamp-up)))
20254 (t (call-interactively 'org-drag-line-backward))))
20256 (defun org-shiftmetadown (&optional arg)
20257 "Drag the line at point down.
20258 In a table, insert an empty row at the current line.
20259 On a clock timestamp, update the value of the timestamp like `S-<down>'
20260 but also adjust the previous clocked item in the clock history.
20261 Everywhere else, drag the line at point down."
20262 (interactive "P")
20263 (cond
20264 ((run-hook-with-args-until-success 'org-shiftmetadown-hook))
20265 ((org-at-table-p) (call-interactively 'org-table-insert-row))
20266 ((org-at-clock-log-p) (let ((org-clock-adjust-closest t))
20267 (call-interactively 'org-timestamp-down)))
20268 (t (call-interactively 'org-drag-line-forward))))
20270 (defsubst org-hidden-tree-error ()
20271 (user-error
20272 "Hidden subtree, open with TAB or use subtree command M-S-<left>/<right>"))
20274 (defun org-metaleft (&optional arg)
20275 "Promote heading or move table column to left.
20276 Calls `org-do-promote' or `org-table-move-column', depending on context.
20277 With no specific context, calls the Emacs default `backward-word'.
20278 See the individual commands for more information."
20279 (interactive "P")
20280 (cond
20281 ((run-hook-with-args-until-success 'org-metaleft-hook))
20282 ((org-at-table-p) (org-call-with-arg 'org-table-move-column 'left))
20283 ((org-with-limited-levels
20284 (or (org-at-heading-p)
20285 (and (org-region-active-p)
20286 (save-excursion
20287 (goto-char (region-beginning))
20288 (org-at-heading-p)))))
20289 (when (org-check-for-hidden 'headlines) (org-hidden-tree-error))
20290 (call-interactively 'org-do-promote))
20291 ;; At an inline task.
20292 ((org-at-heading-p)
20293 (call-interactively 'org-inlinetask-promote))
20294 ((or (org-at-item-p)
20295 (and (org-region-active-p)
20296 (save-excursion
20297 (goto-char (region-beginning))
20298 (org-at-item-p))))
20299 (when (org-check-for-hidden 'items) (org-hidden-tree-error))
20300 (call-interactively 'org-outdent-item))
20301 (t (call-interactively 'backward-word))))
20303 (defun org-metaright (&optional arg)
20304 "Demote a subtree, a list item or move table column to right.
20305 In front of a drawer or a block keyword, indent it correctly.
20306 With no specific context, calls the Emacs default `forward-word'.
20307 See the individual commands for more information."
20308 (interactive "P")
20309 (cond
20310 ((run-hook-with-args-until-success 'org-metaright-hook))
20311 ((org-at-table-p) (call-interactively 'org-table-move-column))
20312 ((org-at-drawer-p) (call-interactively 'org-indent-drawer))
20313 ((org-at-block-p) (call-interactively 'org-indent-block))
20314 ((org-with-limited-levels
20315 (or (org-at-heading-p)
20316 (and (org-region-active-p)
20317 (save-excursion
20318 (goto-char (region-beginning))
20319 (org-at-heading-p)))))
20320 (when (org-check-for-hidden 'headlines) (org-hidden-tree-error))
20321 (call-interactively 'org-do-demote))
20322 ;; At an inline task.
20323 ((org-at-heading-p)
20324 (call-interactively 'org-inlinetask-demote))
20325 ((or (org-at-item-p)
20326 (and (org-region-active-p)
20327 (save-excursion
20328 (goto-char (region-beginning))
20329 (org-at-item-p))))
20330 (when (org-check-for-hidden 'items) (org-hidden-tree-error))
20331 (call-interactively 'org-indent-item))
20332 (t (call-interactively 'forward-word))))
20334 (defun org-check-for-hidden (what)
20335 "Check if there are hidden headlines/items in the current visual line.
20336 WHAT can be either `headlines' or `items'. If the current line is
20337 an outline or item heading and it has a folded subtree below it,
20338 this function returns t, nil otherwise."
20339 (let ((re (cond
20340 ((eq what 'headlines) org-outline-regexp-bol)
20341 ((eq what 'items) (org-item-beginning-re))
20342 (t (error "This should not happen"))))
20343 beg end)
20344 (save-excursion
20345 (catch 'exit
20346 (unless (org-region-active-p)
20347 (setq beg (point-at-bol))
20348 (beginning-of-line 2)
20349 (while (and (not (eobp)) ;; this is like `next-line'
20350 (get-char-property (1- (point)) 'invisible))
20351 (beginning-of-line 2))
20352 (setq end (point))
20353 (goto-char beg)
20354 (goto-char (point-at-eol))
20355 (setq end (max end (point)))
20356 (while (re-search-forward re end t)
20357 (if (get-char-property (match-beginning 0) 'invisible)
20358 (throw 'exit t))))
20359 nil))))
20361 (defun org-metaup (&optional arg)
20362 "Move subtree up or move table row up.
20363 Calls `org-move-subtree-up' or `org-table-move-row' or
20364 `org-move-item-up', depending on context. See the individual commands
20365 for more information."
20366 (interactive "P")
20367 (cond
20368 ((run-hook-with-args-until-success 'org-metaup-hook))
20369 ((org-region-active-p)
20370 (let* ((a (min (region-beginning) (region-end)))
20371 (b (1- (max (region-beginning) (region-end))))
20372 (c (save-excursion (goto-char a)
20373 (move-beginning-of-line 0)))
20374 (d (save-excursion (goto-char a)
20375 (move-end-of-line 0) (point))))
20376 (transpose-regions a b c d)
20377 (goto-char c)))
20378 ((org-at-table-p) (org-call-with-arg 'org-table-move-row 'up))
20379 ((org-at-heading-p) (call-interactively 'org-move-subtree-up))
20380 ((org-at-item-p) (call-interactively 'org-move-item-up))
20381 (t (org-drag-element-backward))))
20383 (defun org-metadown (&optional arg)
20384 "Move subtree down or move table row down.
20385 Calls `org-move-subtree-down' or `org-table-move-row' or
20386 `org-move-item-down', depending on context. See the individual
20387 commands for more information."
20388 (interactive "P")
20389 (cond
20390 ((run-hook-with-args-until-success 'org-metadown-hook))
20391 ((org-region-active-p)
20392 (let* ((a (min (region-beginning) (region-end)))
20393 (b (max (region-beginning) (region-end)))
20394 (c (save-excursion (goto-char b)
20395 (move-beginning-of-line 1)))
20396 (d (save-excursion (goto-char b)
20397 (move-end-of-line 1) (1+ (point)))))
20398 (transpose-regions a b c d)
20399 (goto-char d)))
20400 ((org-at-table-p) (call-interactively 'org-table-move-row))
20401 ((org-at-heading-p) (call-interactively 'org-move-subtree-down))
20402 ((org-at-item-p) (call-interactively 'org-move-item-down))
20403 (t (org-drag-element-forward))))
20405 (defun org-shiftup (&optional arg)
20406 "Increase item in timestamp or increase priority of current headline.
20407 Calls `org-timestamp-up' or `org-priority-up', or `org-previous-item',
20408 depending on context. See the individual commands for more information."
20409 (interactive "P")
20410 (cond
20411 ((run-hook-with-args-until-success 'org-shiftup-hook))
20412 ((and org-support-shift-select (org-region-active-p))
20413 (org-call-for-shift-select 'previous-line))
20414 ((org-at-timestamp-p t)
20415 (call-interactively (if org-edit-timestamp-down-means-later
20416 'org-timestamp-down 'org-timestamp-up)))
20417 ((and (not (eq org-support-shift-select 'always))
20418 org-enable-priority-commands
20419 (org-at-heading-p))
20420 (call-interactively 'org-priority-up))
20421 ((and (not org-support-shift-select) (org-at-item-p))
20422 (call-interactively 'org-previous-item))
20423 ((org-clocktable-try-shift 'up arg))
20424 ((run-hook-with-args-until-success 'org-shiftup-final-hook))
20425 (org-support-shift-select
20426 (org-call-for-shift-select 'previous-line))
20427 (t (org-shiftselect-error))))
20429 (defun org-shiftdown (&optional arg)
20430 "Decrease item in timestamp or decrease priority of current headline.
20431 Calls `org-timestamp-down' or `org-priority-down', or `org-next-item'
20432 depending on context. See the individual commands for more information."
20433 (interactive "P")
20434 (cond
20435 ((run-hook-with-args-until-success 'org-shiftdown-hook))
20436 ((and org-support-shift-select (org-region-active-p))
20437 (org-call-for-shift-select 'next-line))
20438 ((org-at-timestamp-p t)
20439 (call-interactively (if org-edit-timestamp-down-means-later
20440 'org-timestamp-up 'org-timestamp-down)))
20441 ((and (not (eq org-support-shift-select 'always))
20442 org-enable-priority-commands
20443 (org-at-heading-p))
20444 (call-interactively 'org-priority-down))
20445 ((and (not org-support-shift-select) (org-at-item-p))
20446 (call-interactively 'org-next-item))
20447 ((org-clocktable-try-shift 'down arg))
20448 ((run-hook-with-args-until-success 'org-shiftdown-final-hook))
20449 (org-support-shift-select
20450 (org-call-for-shift-select 'next-line))
20451 (t (org-shiftselect-error))))
20453 (defun org-shiftright (&optional arg)
20454 "Cycle the thing at point or in the current line, depending on context.
20455 Depending on context, this does one of the following:
20457 - switch a timestamp at point one day into the future
20458 - on a headline, switch to the next TODO keyword.
20459 - on an item, switch entire list to the next bullet type
20460 - on a property line, switch to the next allowed value
20461 - on a clocktable definition line, move time block into the future"
20462 (interactive "P")
20463 (cond
20464 ((run-hook-with-args-until-success 'org-shiftright-hook))
20465 ((and org-support-shift-select (org-region-active-p))
20466 (org-call-for-shift-select 'forward-char))
20467 ((org-at-timestamp-p t) (call-interactively 'org-timestamp-up-day))
20468 ((and (not (eq org-support-shift-select 'always))
20469 (org-at-heading-p))
20470 (let ((org-inhibit-logging
20471 (not org-treat-S-cursor-todo-selection-as-state-change))
20472 (org-inhibit-blocking
20473 (not org-treat-S-cursor-todo-selection-as-state-change)))
20474 (org-call-with-arg 'org-todo 'right)))
20475 ((or (and org-support-shift-select
20476 (not (eq org-support-shift-select 'always))
20477 (org-at-item-bullet-p))
20478 (and (not org-support-shift-select) (org-at-item-p)))
20479 (org-call-with-arg 'org-cycle-list-bullet nil))
20480 ((and (not (eq org-support-shift-select 'always))
20481 (org-at-property-p))
20482 (call-interactively 'org-property-next-allowed-value))
20483 ((org-clocktable-try-shift 'right arg))
20484 ((run-hook-with-args-until-success 'org-shiftright-final-hook))
20485 (org-support-shift-select
20486 (org-call-for-shift-select 'forward-char))
20487 (t (org-shiftselect-error))))
20489 (defun org-shiftleft (&optional arg)
20490 "Cycle the thing at point or in the current line, depending on context.
20491 Depending on context, this does one of the following:
20493 - switch a timestamp at point one day into the past
20494 - on a headline, switch to the previous TODO keyword.
20495 - on an item, switch entire list to the previous bullet type
20496 - on a property line, switch to the previous allowed value
20497 - on a clocktable definition line, move time block into the past"
20498 (interactive "P")
20499 (cond
20500 ((run-hook-with-args-until-success 'org-shiftleft-hook))
20501 ((and org-support-shift-select (org-region-active-p))
20502 (org-call-for-shift-select 'backward-char))
20503 ((org-at-timestamp-p t) (call-interactively 'org-timestamp-down-day))
20504 ((and (not (eq org-support-shift-select 'always))
20505 (org-at-heading-p))
20506 (let ((org-inhibit-logging
20507 (not org-treat-S-cursor-todo-selection-as-state-change))
20508 (org-inhibit-blocking
20509 (not org-treat-S-cursor-todo-selection-as-state-change)))
20510 (org-call-with-arg 'org-todo 'left)))
20511 ((or (and org-support-shift-select
20512 (not (eq org-support-shift-select 'always))
20513 (org-at-item-bullet-p))
20514 (and (not org-support-shift-select) (org-at-item-p)))
20515 (org-call-with-arg 'org-cycle-list-bullet 'previous))
20516 ((and (not (eq org-support-shift-select 'always))
20517 (org-at-property-p))
20518 (call-interactively 'org-property-previous-allowed-value))
20519 ((org-clocktable-try-shift 'left arg))
20520 ((run-hook-with-args-until-success 'org-shiftleft-final-hook))
20521 (org-support-shift-select
20522 (org-call-for-shift-select 'backward-char))
20523 (t (org-shiftselect-error))))
20525 (defun org-shiftcontrolright ()
20526 "Switch to next TODO set."
20527 (interactive)
20528 (cond
20529 ((and org-support-shift-select (org-region-active-p))
20530 (org-call-for-shift-select 'forward-word))
20531 ((and (not (eq org-support-shift-select 'always))
20532 (org-at-heading-p))
20533 (org-call-with-arg 'org-todo 'nextset))
20534 (org-support-shift-select
20535 (org-call-for-shift-select 'forward-word))
20536 (t (org-shiftselect-error))))
20538 (defun org-shiftcontrolleft ()
20539 "Switch to previous TODO set."
20540 (interactive)
20541 (cond
20542 ((and org-support-shift-select (org-region-active-p))
20543 (org-call-for-shift-select 'backward-word))
20544 ((and (not (eq org-support-shift-select 'always))
20545 (org-at-heading-p))
20546 (org-call-with-arg 'org-todo 'previousset))
20547 (org-support-shift-select
20548 (org-call-for-shift-select 'backward-word))
20549 (t (org-shiftselect-error))))
20551 (defun org-shiftcontrolup (&optional n)
20552 "Change timestamps synchronously up in CLOCK log lines.
20553 Optional argument N tells to change by that many units."
20554 (interactive "P")
20555 (if (and (org-at-clock-log-p) (org-at-timestamp-p t))
20556 (let (org-support-shift-select)
20557 (org-clock-timestamps-up n))
20558 (user-error "Not at a clock log")))
20560 (defun org-shiftcontroldown (&optional n)
20561 "Change timestamps synchronously down in CLOCK log lines.
20562 Optional argument N tells to change by that many units."
20563 (interactive "P")
20564 (if (and (org-at-clock-log-p) (org-at-timestamp-p t))
20565 (let (org-support-shift-select)
20566 (org-clock-timestamps-down n))
20567 (user-error "Not at a clock log")))
20569 (defun org-increase-number-at-point (&optional inc)
20570 "Increment the number at point.
20571 With an optional prefix numeric argument INC, increment using
20572 this numeric value."
20573 (interactive "p")
20574 (if (not (number-at-point))
20575 (user-error "Not on a number")
20576 (unless inc (setq inc 1))
20577 (let ((pos (point))
20578 (beg (skip-chars-backward "-+^/*0-9eE."))
20579 (end (skip-chars-forward "-+^/*0-9eE^.")) nap)
20580 (setq nap (buffer-substring-no-properties
20581 (+ pos beg) (+ pos beg end)))
20582 (delete-region (+ pos beg) (+ pos beg end))
20583 (insert (calc-eval (concat (number-to-string inc) "+" nap))))
20584 (when (org-at-table-p)
20585 (org-table-align)
20586 (org-table-end-of-field 1))))
20588 (defun org-decrease-number-at-point (&optional inc)
20589 "Decrement the number at point.
20590 With an optional prefix numeric argument INC, decrement using
20591 this numeric value."
20592 (interactive "p")
20593 (org-increase-number-at-point (- inc)))
20595 (defun org-ctrl-c-ret ()
20596 "Call `org-table-hline-and-move' or `org-insert-heading' dep. on context."
20597 (interactive)
20598 (cond
20599 ((org-at-table-p) (call-interactively 'org-table-hline-and-move))
20600 (t (call-interactively 'org-insert-heading))))
20602 (defun org-find-visible ()
20603 (let ((s (point)))
20604 (while (and (not (= (point-max) (setq s (next-overlay-change s))))
20605 (get-char-property s 'invisible)))
20607 (defun org-find-invisible ()
20608 (let ((s (point)))
20609 (while (and (not (= (point-max) (setq s (next-overlay-change s))))
20610 (not (get-char-property s 'invisible))))
20613 (defun org-copy-visible (beg end)
20614 "Copy the visible parts of the region."
20615 (interactive "r")
20616 (let (snippets s)
20617 (save-excursion
20618 (save-restriction
20619 (narrow-to-region beg end)
20620 (setq s (goto-char (point-min)))
20621 (while (not (= (point) (point-max)))
20622 (goto-char (org-find-invisible))
20623 (push (buffer-substring s (point)) snippets)
20624 (setq s (goto-char (org-find-visible))))))
20625 (kill-new (apply 'concat (nreverse snippets)))))
20627 (defun org-copy-special ()
20628 "Copy region in table or copy current subtree.
20629 Calls `org-table-copy' or `org-copy-subtree', depending on context.
20630 See the individual commands for more information."
20631 (interactive)
20632 (call-interactively
20633 (if (org-at-table-p) 'org-table-copy-region 'org-copy-subtree)))
20635 (defun org-cut-special ()
20636 "Cut region in table or cut current subtree.
20637 Calls `org-table-copy' or `org-cut-subtree', depending on context.
20638 See the individual commands for more information."
20639 (interactive)
20640 (call-interactively
20641 (if (org-at-table-p) 'org-table-cut-region 'org-cut-subtree)))
20643 (defun org-paste-special (arg)
20644 "Paste rectangular region into table, or past subtree relative to level.
20645 Calls `org-table-paste-rectangle' or `org-paste-subtree', depending on context.
20646 See the individual commands for more information."
20647 (interactive "P")
20648 (if (org-at-table-p)
20649 (org-table-paste-rectangle)
20650 (org-paste-subtree arg)))
20652 (defsubst org-in-fixed-width-region-p ()
20653 "Is point in a fixed-width region?"
20654 (save-match-data
20655 (eq 'fixed-width (org-element-type (org-element-at-point)))))
20657 (defun org-edit-special (&optional arg)
20658 "Call a special editor for the element at point.
20659 When at a table, call the formula editor with `org-table-edit-formulas'.
20660 When in a source code block, call `org-edit-src-code'.
20661 When in a fixed-width region, call `org-edit-fixed-width-region'.
20662 When at an #+INCLUDE keyword, visit the included file.
20663 On a link, call `ffap' to visit the link at point.
20664 Otherwise, return a user error."
20665 (interactive "P")
20666 (let ((element (org-element-at-point)))
20667 (assert (not buffer-read-only) nil
20668 "Buffer is read-only: %s" (buffer-name))
20669 (case (org-element-type element)
20670 (src-block
20671 (if (not arg) (org-edit-src-code)
20672 (let* ((info (org-babel-get-src-block-info))
20673 (lang (nth 0 info))
20674 (params (nth 2 info))
20675 (session (cdr (assq :session params))))
20676 (if (not session) (org-edit-src-code)
20677 ;; At a src-block with a session and function called with
20678 ;; an ARG: switch to the buffer related to the inferior
20679 ;; process.
20680 (switch-to-buffer
20681 (funcall (intern (concat "org-babel-prep-session:" lang))
20682 session params))))))
20683 (keyword
20684 (if (member (org-element-property :key element) '("INCLUDE" "SETUPFILE"))
20685 (org-open-link-from-string
20686 (format "[[%s]]"
20687 (expand-file-name
20688 (let ((value (org-element-property :value element)))
20689 (cond ((not (org-string-nw-p value))
20690 (user-error "No file to edit"))
20691 ((string-match "\\`\"\\(.*?\\)\"" value)
20692 (match-string 1 value))
20693 ((string-match "\\`[^ \t\"]\\S-*" value)
20694 (match-string 0 value))
20695 (t (user-error "No valid file specified")))))))
20696 (user-error "No special environment to edit here")))
20697 (table
20698 (if (eq (org-element-property :type element) 'table.el)
20699 (org-edit-src-code)
20700 (call-interactively 'org-table-edit-formulas)))
20701 ;; Only Org tables contain `table-row' type elements.
20702 (table-row (call-interactively 'org-table-edit-formulas))
20703 ((example-block export-block) (org-edit-src-code))
20704 (fixed-width (org-edit-fixed-width-region))
20705 (otherwise
20706 ;; No notable element at point. Though, we may be at a link,
20707 ;; which is an object. Thus, scan deeper.
20708 (if (eq (org-element-type (org-element-context element)) 'link)
20709 (call-interactively 'ffap)
20710 (user-error "No special environment to edit here"))))))
20712 (defvar org-table-coordinate-overlays) ; defined in org-table.el
20713 (defun org-ctrl-c-ctrl-c (&optional arg)
20714 "Set tags in headline, or update according to changed information at point.
20716 This command does many different things, depending on context:
20718 - If a function in `org-ctrl-c-ctrl-c-hook' recognizes this location,
20719 this is what we do.
20721 - If the cursor is on a statistics cookie, update it.
20723 - If the cursor is in a headline, prompt for tags and insert them
20724 into the current line, aligned to `org-tags-column'. When called
20725 with prefix arg, realign all tags in the current buffer.
20727 - If the cursor is in one of the special #+KEYWORD lines, this
20728 triggers scanning the buffer for these lines and updating the
20729 information.
20731 - If the cursor is inside a table, realign the table. This command
20732 works even if the automatic table editor has been turned off.
20734 - If the cursor is on a #+TBLFM line, re-apply the formulas to
20735 the entire table.
20737 - If the cursor is at a footnote reference or definition, jump to
20738 the corresponding definition or references, respectively.
20740 - If the cursor is a the beginning of a dynamic block, update it.
20742 - If the current buffer is a capture buffer, close note and file it.
20744 - If the cursor is on a <<<target>>>, update radio targets and
20745 corresponding links in this buffer.
20747 - If the cursor is on a numbered item in a plain list, renumber the
20748 ordered list.
20750 - If the cursor is on a checkbox, toggle it.
20752 - If the cursor is on a code block, evaluate it. The variable
20753 `org-confirm-babel-evaluate' can be used to control prompting
20754 before code block evaluation, by default every code block
20755 evaluation requires confirmation. Code block evaluation can be
20756 inhibited by setting `org-babel-no-eval-on-ctrl-c-ctrl-c'."
20757 (interactive "P")
20758 (cond
20759 ((or (and (boundp 'org-clock-overlays) org-clock-overlays)
20760 org-occur-highlights)
20761 (and (boundp 'org-clock-overlays) (org-clock-remove-overlays))
20762 (org-remove-occur-highlights)
20763 (message "Temporary highlights/overlays removed from current buffer"))
20764 ((and (local-variable-p 'org-finish-function (current-buffer))
20765 (fboundp org-finish-function))
20766 (funcall org-finish-function))
20767 ((run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-hook))
20769 (let* ((context (org-element-context)) (type (org-element-type context)))
20770 ;; Test if point is within a blank line.
20771 (if (save-excursion (beginning-of-line) (looking-at "[ \t]*$"))
20772 (or (run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-final-hook)
20773 (user-error "C-c C-c can do nothing useful at this location"))
20774 (case type
20775 ;; When at a link, act according to the parent instead.
20776 (link (setq context (org-element-property :parent context))
20777 (setq type (org-element-type context)))
20778 ;; Unsupported object types: refer to the first supported
20779 ;; element or object containing it.
20780 ((bold code entity export-snippet inline-babel-call inline-src-block
20781 italic latex-fragment line-break macro strike-through subscript
20782 superscript underline verbatim)
20783 (while (and (setq context (org-element-property :parent context))
20784 (not (memq (setq type (org-element-type context))
20785 '(radio-target paragraph verse-block
20786 table-cell)))))))
20787 ;; For convenience: at the first line of a paragraph on the
20788 ;; same line as an item, apply function on that item instead.
20789 (when (eq type 'paragraph)
20790 (let ((parent (org-element-property :parent context)))
20791 (when (and (eq (org-element-type parent) 'item)
20792 (= (point-at-bol) (org-element-property :begin parent)))
20793 (setq context parent type 'item))))
20794 ;; Act according to type of element or object at point.
20795 (case type
20796 (clock (org-clock-update-time-maybe))
20797 (dynamic-block
20798 (save-excursion
20799 (goto-char (org-element-property :post-affiliated context))
20800 (org-update-dblock)))
20801 (footnote-definition
20802 (goto-char (org-element-property :post-affiliated context))
20803 (call-interactively 'org-footnote-action))
20804 (footnote-reference (call-interactively 'org-footnote-action))
20805 ((headline inlinetask)
20806 (save-excursion (goto-char (org-element-property :begin context))
20807 (call-interactively 'org-set-tags)))
20808 (item
20809 ;; At an item: a double C-u set checkbox to "[-]"
20810 ;; unconditionally, whereas a single one will toggle its
20811 ;; presence. Without an universal argument, if the item
20812 ;; has a checkbox, toggle it. Otherwise repair the list.
20813 (let* ((box (org-element-property :checkbox context))
20814 (struct (org-element-property :structure context))
20815 (old-struct (copy-tree struct))
20816 (parents (org-list-parents-alist struct))
20817 (prevs (org-list-prevs-alist struct))
20818 (orderedp (org-not-nil (org-entry-get nil "ORDERED"))))
20819 (org-list-set-checkbox
20820 (org-element-property :begin context) struct
20821 (cond ((equal arg '(16)) "[-]")
20822 ((and (not box) (equal arg '(4))) "[ ]")
20823 ((or (not box) (equal arg '(4))) nil)
20824 ((eq box 'on) "[ ]")
20825 (t "[X]")))
20826 ;; Mimic `org-list-write-struct' but with grabbing
20827 ;; a return value from `org-list-struct-fix-box'.
20828 (org-list-struct-fix-ind struct parents 2)
20829 (org-list-struct-fix-item-end struct)
20830 (org-list-struct-fix-bul struct prevs)
20831 (org-list-struct-fix-ind struct parents)
20832 (let ((block-item
20833 (org-list-struct-fix-box struct parents prevs orderedp)))
20834 (if (and box (equal struct old-struct))
20835 (if (equal arg '(16))
20836 (message "Checkboxes already reset")
20837 (user-error "Cannot toggle this checkbox: %s"
20838 (if (eq box 'on)
20839 "all subitems checked"
20840 "unchecked subitems")))
20841 (org-list-struct-apply-struct struct old-struct)
20842 (org-update-checkbox-count-maybe))
20843 (when block-item
20844 (message "Checkboxes were removed due to empty box at line %d"
20845 (org-current-line block-item))))))
20846 (keyword
20847 (let ((org-inhibit-startup-visibility-stuff t)
20848 (org-startup-align-all-tables nil))
20849 (when (boundp 'org-table-coordinate-overlays)
20850 (mapc 'delete-overlay org-table-coordinate-overlays)
20851 (setq org-table-coordinate-overlays nil))
20852 (org-save-outline-visibility 'use-markers (org-mode-restart)))
20853 (message "Local setup has been refreshed"))
20854 (plain-list
20855 ;; At a plain list, with a double C-u argument, set
20856 ;; checkboxes of each item to "[-]", whereas a single one
20857 ;; will toggle their presence according to the state of the
20858 ;; first item in the list. Without an argument, repair the
20859 ;; list.
20860 (let* ((begin (org-element-property :contents-begin context))
20861 (beginm (move-marker (make-marker) begin))
20862 (struct (org-element-property :structure context))
20863 (old-struct (copy-tree struct))
20864 (first-box (save-excursion
20865 (goto-char begin)
20866 (looking-at org-list-full-item-re)
20867 (match-string-no-properties 3)))
20868 (new-box (cond ((equal arg '(16)) "[-]")
20869 ((equal arg '(4)) (unless first-box "[ ]"))
20870 ((equal first-box "[X]") "[ ]")
20871 (t "[X]"))))
20872 (cond
20873 (arg
20874 (mapc (lambda (pos) (org-list-set-checkbox pos struct new-box))
20875 (org-list-get-all-items
20876 begin struct (org-list-prevs-alist struct))))
20877 ((and first-box (eq (point) begin))
20878 ;; For convenience, when point is at bol on the first
20879 ;; item of the list and no argument is provided, simply
20880 ;; toggle checkbox of that item, if any.
20881 (org-list-set-checkbox begin struct new-box)))
20882 (org-list-write-struct
20883 struct (org-list-parents-alist struct) old-struct)
20884 (org-update-checkbox-count-maybe)
20885 (save-excursion (goto-char beginm) (org-list-send-list 'maybe))))
20886 ((property-drawer node-property)
20887 (call-interactively 'org-property-action))
20888 ((radio-target target)
20889 (call-interactively 'org-update-radio-target-regexp))
20890 (statistics-cookie
20891 (call-interactively 'org-update-statistics-cookies))
20892 ((table table-cell table-row)
20893 ;; At a table, recalculate every field and align it. Also
20894 ;; send the table if necessary. If the table has
20895 ;; a `table.el' type, just give up. At a table row or
20896 ;; cell, maybe recalculate line but always align table.
20897 (if (eq (org-element-property :type context) 'table.el)
20898 (message "Use C-c ' to edit table.el tables")
20899 (let ((org-enable-table-editor t))
20900 (if (or (eq type 'table)
20901 ;; Check if point is at a TBLFM line.
20902 (and (eq type 'table-row)
20903 (= (point) (org-element-property :end context))))
20904 (save-excursion
20905 (if (org-at-TBLFM-p)
20906 (progn (require 'org-table)
20907 (org-table-calc-current-TBLFM))
20908 (goto-char (org-element-property :contents-begin context))
20909 (org-call-with-arg 'org-table-recalculate (or arg t))
20910 (orgtbl-send-table 'maybe)))
20911 (org-table-maybe-eval-formula)
20912 (cond (arg (call-interactively 'org-table-recalculate))
20913 ((org-table-maybe-recalculate-line))
20914 (t (org-table-align)))))))
20915 (timestamp (org-timestamp-change 0 'day))
20916 (otherwise
20917 (or (run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-final-hook)
20918 (user-error
20919 "C-c C-c can do nothing useful at this location")))))))))
20921 (defun org-mode-restart ()
20922 (interactive)
20923 (let ((indent-status (org-bound-and-true-p org-indent-mode)))
20924 (funcall major-mode)
20925 (hack-local-variables)
20926 (when (and indent-status (not (org-bound-and-true-p org-indent-mode)))
20927 (org-indent-mode -1)))
20928 (message "%s restarted" major-mode))
20930 (defun org-kill-note-or-show-branches ()
20931 "If this is a Note buffer, abort storing the note. Else call `show-branches'."
20932 (interactive)
20933 (if (not org-finish-function)
20934 (progn
20935 (hide-subtree)
20936 (call-interactively 'show-branches))
20937 (let ((org-note-abort t))
20938 (funcall org-finish-function))))
20940 (defun org-open-line (n)
20941 "Insert a new row in tables, call `open-line' elsewhere.
20942 If `org-special-ctrl-o' is nil, just call `open-line' everywhere."
20943 (interactive "*p")
20944 (cond
20945 ((not org-special-ctrl-o)
20946 (open-line n))
20947 ((org-at-table-p)
20948 (org-table-insert-row))
20950 (open-line n))))
20952 (defun org-return (&optional indent)
20953 "Goto next table row or insert a newline.
20955 Calls `org-table-next-row' or `newline', depending on context.
20957 When optional INDENT argument is non-nil, call
20958 `newline-and-indent' instead of `newline'.
20960 When `org-return-follows-link' is non-nil and point is on
20961 a timestamp or a link, call `org-open-at-point'. However, it
20962 will not happen if point is in a table or on a \"dead\"
20963 object (e.g., within a comment). In these case, you need to use
20964 `org-open-at-point' directly."
20965 (interactive)
20966 (if (and (save-excursion
20967 (beginning-of-line)
20968 (looking-at org-todo-line-regexp))
20969 (match-beginning 3)
20970 (>= (point) (match-beginning 3)))
20971 ;; Point is on headline tags. Do not break them: add a newline
20972 ;; after the headline instead.
20973 (progn (org-show-entry)
20974 (end-of-line)
20975 (if indent (newline-and-indent) (newline)))
20976 (let* ((context (if org-return-follows-link (org-element-context)
20977 (org-element-at-point)))
20978 (type (org-element-type context)))
20979 (cond
20980 ;; In a table, call `org-table-next-row'.
20981 ((or (and (eq type 'table)
20982 (>= (point) (org-element-property :contents-begin context))
20983 (< (point) (org-element-property :contents-end context)))
20984 (org-element-lineage context '(table-row table-cell) t))
20985 (org-table-justify-field-maybe)
20986 (call-interactively #'org-table-next-row))
20987 ;; On a link or a timestamp but not on white spaces after it,
20988 ;; call `org-open-line' if `org-return-follows-link' allows it.
20989 ((and org-return-follows-link
20990 (memq type '(link timestamp))
20991 (< (point)
20992 (save-excursion (goto-char (org-element-property :end context))
20993 (skip-chars-backward " \t")
20994 (point))))
20995 (call-interactively #'org-open-at-point))
20996 ;; In a list, make sure indenting keeps trailing text within.
20997 ((and indent
20998 (not (eolp))
20999 (org-element-lineage context '(item plain-list) t))
21000 (let ((trailing-data
21001 (delete-and-extract-region (point) (line-end-position))))
21002 (newline-and-indent)
21003 (save-excursion (insert trailing-data))))
21004 (t (if indent (newline-and-indent) (newline)))))))
21006 (defun org-return-indent ()
21007 "Goto next table row or insert a newline and indent.
21008 Calls `org-table-next-row' or `newline-and-indent', depending on
21009 context. See the individual commands for more information."
21010 (interactive)
21011 (org-return t))
21013 (defun org-ctrl-c-star ()
21014 "Compute table, or change heading status of lines.
21015 Calls `org-table-recalculate' or `org-toggle-heading',
21016 depending on context."
21017 (interactive)
21018 (cond
21019 ((org-at-table-p)
21020 (call-interactively 'org-table-recalculate))
21022 ;; Convert all lines in region to list items
21023 (call-interactively 'org-toggle-heading))))
21025 (defun org-ctrl-c-minus ()
21026 "Insert separator line in table or modify bullet status of line.
21027 Also turns a plain line or a region of lines into list items.
21028 Calls `org-table-insert-hline', `org-toggle-item', or
21029 `org-cycle-list-bullet', depending on context."
21030 (interactive)
21031 (cond
21032 ((org-at-table-p)
21033 (call-interactively 'org-table-insert-hline))
21034 ((org-region-active-p)
21035 (call-interactively 'org-toggle-item))
21036 ((org-in-item-p)
21037 (call-interactively 'org-cycle-list-bullet))
21039 (call-interactively 'org-toggle-item))))
21041 (defun org-toggle-item (arg)
21042 "Convert headings or normal lines to items, items to normal lines.
21043 If there is no active region, only the current line is considered.
21045 If the first non blank line in the region is a headline, convert
21046 all headlines to items, shifting text accordingly.
21048 If it is an item, convert all items to normal lines.
21050 If it is normal text, change region into a list of items.
21051 With a prefix argument ARG, change the region in a single item."
21052 (interactive "P")
21053 (let ((shift-text
21054 (function
21055 ;; Shift text in current section to IND, from point to END.
21056 ;; The function leaves point to END line.
21057 (lambda (ind end)
21058 (let ((min-i 1000) (end (copy-marker end)))
21059 ;; First determine the minimum indentation (MIN-I) of
21060 ;; the text.
21061 (save-excursion
21062 (catch 'exit
21063 (while (< (point) end)
21064 (let ((i (org-get-indentation)))
21065 (cond
21066 ;; Skip blank lines and inline tasks.
21067 ((looking-at "^[ \t]*$"))
21068 ((looking-at org-outline-regexp-bol))
21069 ;; We can't find less than 0 indentation.
21070 ((zerop i) (throw 'exit (setq min-i 0)))
21071 ((< i min-i) (setq min-i i))))
21072 (forward-line))))
21073 ;; Then indent each line so that a line indented to
21074 ;; MIN-I becomes indented to IND. Ignore blank lines
21075 ;; and inline tasks in the process.
21076 (let ((delta (- ind min-i)))
21077 (while (< (point) end)
21078 (unless (or (looking-at "^[ \t]*$")
21079 (looking-at org-outline-regexp-bol))
21080 (org-indent-line-to (+ (org-get-indentation) delta)))
21081 (forward-line)))))))
21082 (skip-blanks
21083 (function
21084 ;; Return beginning of first non-blank line, starting from
21085 ;; line at POS.
21086 (lambda (pos)
21087 (save-excursion
21088 (goto-char pos)
21089 (skip-chars-forward " \r\t\n")
21090 (point-at-bol)))))
21091 beg end)
21092 ;; Determine boundaries of changes.
21093 (if (org-region-active-p)
21094 (setq beg (funcall skip-blanks (region-beginning))
21095 end (copy-marker (region-end)))
21096 (setq beg (funcall skip-blanks (point-at-bol))
21097 end (copy-marker (point-at-eol))))
21098 ;; Depending on the starting line, choose an action on the text
21099 ;; between BEG and END.
21100 (org-with-limited-levels
21101 (save-excursion
21102 (goto-char beg)
21103 (cond
21104 ;; Case 1. Start at an item: de-itemize. Note that it only
21105 ;; happens when a region is active: `org-ctrl-c-minus'
21106 ;; would call `org-cycle-list-bullet' otherwise.
21107 ((org-at-item-p)
21108 (while (< (point) end)
21109 (when (org-at-item-p)
21110 (skip-chars-forward " \t")
21111 (delete-region (point) (match-end 0)))
21112 (forward-line)))
21113 ;; Case 2. Start at an heading: convert to items.
21114 ((org-at-heading-p)
21115 (let* ((bul (org-list-bullet-string "-"))
21116 (bul-len (length bul))
21117 (done (org-entry-is-done-p))
21118 (todo (org-entry-is-todo-p))
21119 ;; Indentation of the first heading. It should be
21120 ;; relative to the indentation of its parent, if any.
21121 (start-ind (save-excursion
21122 (cond
21123 ((not org-adapt-indentation) 0)
21124 ((not (outline-previous-heading)) 0)
21125 (t (length (match-string 0))))))
21126 ;; Level of first heading. Further headings will be
21127 ;; compared to it to determine hierarchy in the list.
21128 (ref-level (org-reduced-level (org-outline-level))))
21129 (when (or done todo) (org-todo ""))
21130 (while (< (point) end)
21131 (let* ((level (org-reduced-level (org-outline-level)))
21132 (delta (max 0 (- level ref-level))))
21133 ;; If current headline is less indented than the first
21134 ;; one, set it as reference, in order to preserve
21135 ;; subtrees.
21136 (when (< level ref-level) (setq ref-level level))
21137 (replace-match bul t t)
21138 (org-indent-line-to (+ start-ind (* delta bul-len)))
21139 (when (or done todo)
21140 (let* ((struct (org-list-struct))
21141 (old (copy-tree struct)))
21142 (org-list-set-checkbox (line-beginning-position)
21143 struct
21144 (if done "[X]" "[ ]"))
21145 (org-list-write-struct struct
21146 (org-list-parents-alist struct)
21147 old)))
21148 ;; Ensure all text down to END (or SECTION-END) belongs
21149 ;; to the newly created item.
21150 (let ((section-end (save-excursion
21151 (or (outline-next-heading) (point)))))
21152 (forward-line)
21153 (funcall shift-text
21154 (+ start-ind (* (1+ delta) bul-len))
21155 (min end section-end)))))))
21156 ;; Case 3. Normal line with ARG: make the first line of region
21157 ;; an item, and shift indentation of others lines to
21158 ;; set them as item's body.
21159 (arg (let* ((bul (org-list-bullet-string "-"))
21160 (bul-len (length bul))
21161 (ref-ind (org-get-indentation)))
21162 (skip-chars-forward " \t")
21163 (insert bul)
21164 (forward-line)
21165 (while (< (point) end)
21166 ;; Ensure that lines less indented than first one
21167 ;; still get included in item body.
21168 (funcall shift-text
21169 (+ ref-ind bul-len)
21170 (min end (save-excursion (or (outline-next-heading)
21171 (point)))))
21172 (forward-line))))
21173 ;; Case 4. Normal line without ARG: turn each non-item line
21174 ;; into an item.
21176 (while (< (point) end)
21177 (unless (or (org-at-heading-p) (org-at-item-p))
21178 (if (looking-at "\\([ \t]*\\)\\(\\S-\\)")
21179 (replace-match
21180 (concat "\\1" (org-list-bullet-string "-") "\\2"))))
21181 (forward-line))))))))
21183 (defun org-toggle-heading (&optional nstars)
21184 "Convert headings to normal text, or items or text to headings.
21185 If there is no active region, only convert the current line.
21187 With a \\[universal-argument] prefix, convert the whole list at
21188 point into heading.
21190 In a region:
21192 - If the first non blank line is a headline, remove the stars
21193 from all headlines in the region.
21195 - If it is a normal line, turn each and every normal line (i.e.,
21196 not an heading or an item) in the region into headings. If you
21197 want to convert only the first line of this region, use one
21198 universal prefix argument.
21200 - If it is a plain list item, turn all plain list items into headings.
21202 When converting a line into a heading, the number of stars is chosen
21203 such that the lines become children of the current entry. However,
21204 when a numeric prefix argument is given, its value determines the
21205 number of stars to add."
21206 (interactive "P")
21207 (let ((skip-blanks
21208 (function
21209 ;; Return beginning of first non-blank line, starting from
21210 ;; line at POS.
21211 (lambda (pos)
21212 (save-excursion
21213 (goto-char pos)
21214 (while (org-at-comment-p) (forward-line))
21215 (skip-chars-forward " \r\t\n")
21216 (point-at-bol)))))
21217 beg end toggled)
21218 ;; Determine boundaries of changes. If a universal prefix has
21219 ;; been given, put the list in a region. If region ends at a bol,
21220 ;; do not consider the last line to be in the region.
21222 (when (and current-prefix-arg (org-at-item-p))
21223 (if (listp current-prefix-arg) (setq current-prefix-arg 1))
21224 (org-mark-element))
21226 (if (org-region-active-p)
21227 (setq beg (funcall skip-blanks (region-beginning))
21228 end (copy-marker (save-excursion
21229 (goto-char (region-end))
21230 (if (bolp) (point) (point-at-eol)))))
21231 (setq beg (funcall skip-blanks (point-at-bol))
21232 end (copy-marker (point-at-eol))))
21233 ;; Ensure inline tasks don't count as headings.
21234 (org-with-limited-levels
21235 (save-excursion
21236 (goto-char beg)
21237 (cond
21238 ;; Case 1. Started at an heading: de-star headings.
21239 ((org-at-heading-p)
21240 (while (< (point) end)
21241 (when (org-at-heading-p t)
21242 (looking-at org-outline-regexp) (replace-match "")
21243 (setq toggled t))
21244 (forward-line)))
21245 ;; Case 2. Started at an item: change items into headlines.
21246 ;; One star will be added by `org-list-to-subtree'.
21247 ((org-at-item-p)
21248 (let* ((stars (make-string
21249 ;; subtract the star that will be added again by
21250 ;; `org-list-to-subtree'
21251 (if (numberp nstars) (1- nstars)
21252 (or (org-current-level) 0))
21253 ?*))
21254 (add-stars
21255 (cond (nstars "") ; stars from prefix only
21256 ((equal stars "") "") ; before first heading
21257 (org-odd-levels-only "*") ; inside heading, odd
21258 (t "")))) ; inside heading, oddeven
21259 (while (< (point) end)
21260 (when (org-at-item-p)
21261 ;; Pay attention to cases when region ends before list.
21262 (let* ((struct (org-list-struct))
21263 (list-end (min (org-list-get-bottom-point struct) (1+ end))))
21264 (save-restriction
21265 (narrow-to-region (point) list-end)
21266 (insert
21267 (org-list-to-subtree
21268 (org-list-parse-list t)
21269 '(:istart (concat stars add-stars (funcall get-stars depth))
21270 :icount (concat stars add-stars (funcall get-stars depth)))))))
21271 (setq toggled t))
21272 (forward-line))))
21273 ;; Case 3. Started at normal text: make every line an heading,
21274 ;; skipping headlines and items.
21275 (t (let* ((stars
21276 (make-string
21277 (if (numberp nstars) nstars (or (org-current-level) 0)) ?*))
21278 (add-stars
21279 (cond (nstars "") ; stars from prefix only
21280 ((equal stars "") "*") ; before first heading
21281 (org-odd-levels-only "**") ; inside heading, odd
21282 (t "*"))) ; inside heading, oddeven
21283 (rpl (concat stars add-stars " "))
21284 (lend (if (listp nstars) (save-excursion (end-of-line) (point)))))
21285 (while (< (point) (if (equal nstars '(4)) lend end))
21286 (when (and (not (or (org-at-heading-p) (org-at-item-p) (org-at-comment-p)))
21287 (looking-at "\\([ \t]*\\)\\(\\S-\\)"))
21288 (replace-match (concat rpl (match-string 2))) (setq toggled t))
21289 (forward-line)))))))
21290 (unless toggled (message "Cannot toggle heading from here"))))
21292 (defun org-meta-return (&optional arg)
21293 "Insert a new heading or wrap a region in a table.
21294 Calls `org-insert-heading' or `org-table-wrap-region', depending
21295 on context. See the individual commands for more information."
21296 (interactive "P")
21297 (org-check-before-invisible-edit 'insert)
21298 (or (run-hook-with-args-until-success 'org-metareturn-hook)
21299 (let* ((element (org-element-at-point))
21300 (type (org-element-type element)))
21301 (when (eq type 'table-row)
21302 (setq element (org-element-property :parent element))
21303 (setq type 'table))
21304 (if (and (eq type 'table)
21305 (eq (org-element-property :type element) 'org)
21306 (>= (point) (org-element-property :contents-begin element))
21307 (< (point) (org-element-property :contents-end element)))
21308 (call-interactively 'org-table-wrap-region)
21309 (call-interactively 'org-insert-heading)))))
21311 ;;; Menu entries
21313 (defsubst org-in-subtree-not-table-p ()
21314 "Are we in a subtree and not in a table?"
21315 (and (not (org-before-first-heading-p))
21316 (not (org-at-table-p))))
21318 ;; Define the Org-mode menus
21319 (easy-menu-define org-tbl-menu org-mode-map "Tbl menu"
21320 '("Tbl"
21321 ["Align" org-ctrl-c-ctrl-c :active (org-at-table-p)]
21322 ["Next Field" org-cycle (org-at-table-p)]
21323 ["Previous Field" org-shifttab (org-at-table-p)]
21324 ["Next Row" org-return (org-at-table-p)]
21325 "--"
21326 ["Blank Field" org-table-blank-field (org-at-table-p)]
21327 ["Edit Field" org-table-edit-field (org-at-table-p)]
21328 ["Copy Field from Above" org-table-copy-down (org-at-table-p)]
21329 "--"
21330 ("Column"
21331 ["Move Column Left" org-metaleft (org-at-table-p)]
21332 ["Move Column Right" org-metaright (org-at-table-p)]
21333 ["Delete Column" org-shiftmetaleft (org-at-table-p)]
21334 ["Insert Column" org-shiftmetaright (org-at-table-p)])
21335 ("Row"
21336 ["Move Row Up" org-metaup (org-at-table-p)]
21337 ["Move Row Down" org-metadown (org-at-table-p)]
21338 ["Delete Row" org-shiftmetaup (org-at-table-p)]
21339 ["Insert Row" org-shiftmetadown (org-at-table-p)]
21340 ["Sort lines in region" org-table-sort-lines (org-at-table-p)]
21341 "--"
21342 ["Insert Hline" org-ctrl-c-minus (org-at-table-p)])
21343 ("Rectangle"
21344 ["Copy Rectangle" org-copy-special (org-at-table-p)]
21345 ["Cut Rectangle" org-cut-special (org-at-table-p)]
21346 ["Paste Rectangle" org-paste-special (org-at-table-p)]
21347 ["Fill Rectangle" org-table-wrap-region (org-at-table-p)])
21348 "--"
21349 ("Calculate"
21350 ["Set Column Formula" org-table-eval-formula (org-at-table-p)]
21351 ["Set Field Formula" (org-table-eval-formula '(4)) :active (org-at-table-p) :keys "C-u C-c ="]
21352 ["Edit Formulas" org-edit-special (org-at-table-p)]
21353 "--"
21354 ["Recalculate line" org-table-recalculate (org-at-table-p)]
21355 ["Recalculate all" (lambda () (interactive) (org-table-recalculate '(4))) :active (org-at-table-p) :keys "C-u C-c *"]
21356 ["Iterate all" (lambda () (interactive) (org-table-recalculate '(16))) :active (org-at-table-p) :keys "C-u C-u C-c *"]
21357 "--"
21358 ["Toggle Recalculate Mark" org-table-rotate-recalc-marks (org-at-table-p)]
21359 "--"
21360 ["Sum Column/Rectangle" org-table-sum
21361 (or (org-at-table-p) (org-region-active-p))]
21362 ["Which Column?" org-table-current-column (org-at-table-p)])
21363 ["Debug Formulas"
21364 org-table-toggle-formula-debugger
21365 :style toggle :selected (org-bound-and-true-p org-table-formula-debug)]
21366 ["Show Col/Row Numbers"
21367 org-table-toggle-coordinate-overlays
21368 :style toggle
21369 :selected (org-bound-and-true-p org-table-overlay-coordinates)]
21370 "--"
21371 ["Create" org-table-create (and (not (org-at-table-p))
21372 org-enable-table-editor)]
21373 ["Convert Region" org-table-convert-region (not (org-at-table-p 'any))]
21374 ["Import from File" org-table-import (not (org-at-table-p))]
21375 ["Export to File" org-table-export (org-at-table-p)]
21376 "--"
21377 ["Create/Convert from/to table.el" org-table-create-with-table.el t]
21378 "--"
21379 ("Plot"
21380 ["Ascii plot" orgtbl-ascii-plot :active (org-at-table-p) :keys "C-c \" a"]
21381 ["Gnuplot" org-plot/gnuplot :active (org-at-table-p) :keys "C-c \" g"])))
21383 (easy-menu-define org-org-menu org-mode-map "Org menu"
21384 '("Org"
21385 ("Show/Hide"
21386 ["Cycle Visibility" org-cycle :active (or (bobp) (outline-on-heading-p))]
21387 ["Cycle Global Visibility" org-shifttab :active (not (org-at-table-p))]
21388 ["Sparse Tree..." org-sparse-tree t]
21389 ["Reveal Context" org-reveal t]
21390 ["Show All" show-all t]
21391 "--"
21392 ["Subtree to indirect buffer" org-tree-to-indirect-buffer t])
21393 "--"
21394 ["New Heading" org-insert-heading t]
21395 ("Navigate Headings"
21396 ["Up" outline-up-heading t]
21397 ["Next" outline-next-visible-heading t]
21398 ["Previous" outline-previous-visible-heading t]
21399 ["Next Same Level" outline-forward-same-level t]
21400 ["Previous Same Level" outline-backward-same-level t]
21401 "--"
21402 ["Jump" org-goto t])
21403 ("Edit Structure"
21404 ["Refile Subtree" org-refile (org-in-subtree-not-table-p)]
21405 "--"
21406 ["Move Subtree Up" org-metaup (org-at-heading-p)]
21407 ["Move Subtree Down" org-metadown (org-at-heading-p)]
21408 "--"
21409 ["Copy Subtree" org-copy-special (org-in-subtree-not-table-p)]
21410 ["Cut Subtree" org-cut-special (org-in-subtree-not-table-p)]
21411 ["Paste Subtree" org-paste-special (not (org-at-table-p))]
21412 "--"
21413 ["Clone subtree, shift time" org-clone-subtree-with-time-shift t]
21414 "--"
21415 ["Copy visible text" org-copy-visible t]
21416 "--"
21417 ["Promote Heading" org-metaleft (org-in-subtree-not-table-p)]
21418 ["Promote Subtree" org-shiftmetaleft (org-in-subtree-not-table-p)]
21419 ["Demote Heading" org-metaright (org-in-subtree-not-table-p)]
21420 ["Demote Subtree" org-shiftmetaright (org-in-subtree-not-table-p)]
21421 "--"
21422 ["Sort Region/Children" org-sort t]
21423 "--"
21424 ["Convert to odd levels" org-convert-to-odd-levels t]
21425 ["Convert to odd/even levels" org-convert-to-oddeven-levels t])
21426 ("Editing"
21427 ["Emphasis..." org-emphasize t]
21428 ["Edit Source Example" org-edit-special t]
21429 "--"
21430 ["Footnote new/jump" org-footnote-action t]
21431 ["Footnote extra" (org-footnote-action t) :active t :keys "C-u C-c C-x f"])
21432 ("Archive"
21433 ["Archive (default method)" org-archive-subtree-default (org-in-subtree-not-table-p)]
21434 "--"
21435 ["Move Subtree to Archive file" org-advertized-archive-subtree (org-in-subtree-not-table-p)]
21436 ["Toggle ARCHIVE tag" org-toggle-archive-tag (org-in-subtree-not-table-p)]
21437 ["Move subtree to Archive sibling" org-archive-to-archive-sibling (org-in-subtree-not-table-p)]
21439 "--"
21440 ("Hyperlinks"
21441 ["Store Link (Global)" org-store-link t]
21442 ["Find existing link to here" org-occur-link-in-agenda-files t]
21443 ["Insert Link" org-insert-link t]
21444 ["Follow Link" org-open-at-point t]
21445 "--"
21446 ["Next link" org-next-link t]
21447 ["Previous link" org-previous-link t]
21448 "--"
21449 ["Descriptive Links"
21450 org-toggle-link-display
21451 :style radio
21452 :selected org-descriptive-links
21454 ["Literal Links"
21455 org-toggle-link-display
21456 :style radio
21457 :selected (not org-descriptive-links)])
21458 "--"
21459 ("TODO Lists"
21460 ["TODO/DONE/-" org-todo t]
21461 ("Select keyword"
21462 ["Next keyword" org-shiftright (org-at-heading-p)]
21463 ["Previous keyword" org-shiftleft (org-at-heading-p)]
21464 ["Complete Keyword" pcomplete (assq :todo-keyword (org-context))]
21465 ["Next keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-at-heading-p))]
21466 ["Previous keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-at-heading-p))])
21467 ["Show TODO Tree" org-show-todo-tree :active t :keys "C-c / t"]
21468 ["Global TODO list" org-todo-list :active t :keys "C-c a t"]
21469 "--"
21470 ["Enforce dependencies" (customize-variable 'org-enforce-todo-dependencies)
21471 :selected org-enforce-todo-dependencies :style toggle :active t]
21472 "Settings for tree at point"
21473 ["Do Children sequentially" org-toggle-ordered-property :style radio
21474 :selected (org-entry-get nil "ORDERED")
21475 :active org-enforce-todo-dependencies :keys "C-c C-x o"]
21476 ["Do Children parallel" org-toggle-ordered-property :style radio
21477 :selected (not (org-entry-get nil "ORDERED"))
21478 :active org-enforce-todo-dependencies :keys "C-c C-x o"]
21479 "--"
21480 ["Set Priority" org-priority t]
21481 ["Priority Up" org-shiftup t]
21482 ["Priority Down" org-shiftdown t]
21483 "--"
21484 ["Get news from all feeds" org-feed-update-all t]
21485 ["Go to the inbox of a feed..." org-feed-goto-inbox t]
21486 ["Customize feeds" (customize-variable 'org-feed-alist) t])
21487 ("TAGS and Properties"
21488 ["Set Tags" org-set-tags-command (not (org-before-first-heading-p))]
21489 ["Change tag in region" org-change-tag-in-region (org-region-active-p)]
21490 "--"
21491 ["Set property" org-set-property (not (org-before-first-heading-p))]
21492 ["Column view of properties" org-columns t]
21493 ["Insert Column View DBlock" org-insert-columns-dblock t])
21494 ("Dates and Scheduling"
21495 ["Timestamp" org-time-stamp (not (org-before-first-heading-p))]
21496 ["Timestamp (inactive)" org-time-stamp-inactive (not (org-before-first-heading-p))]
21497 ("Change Date"
21498 ["1 Day Later" org-shiftright (org-at-timestamp-p)]
21499 ["1 Day Earlier" org-shiftleft (org-at-timestamp-p)]
21500 ["1 ... Later" org-shiftup (org-at-timestamp-p)]
21501 ["1 ... Earlier" org-shiftdown (org-at-timestamp-p)])
21502 ["Compute Time Range" org-evaluate-time-range t]
21503 ["Schedule Item" org-schedule (not (org-before-first-heading-p))]
21504 ["Deadline" org-deadline (not (org-before-first-heading-p))]
21505 "--"
21506 ["Custom time format" org-toggle-time-stamp-overlays
21507 :style radio :selected org-display-custom-times]
21508 "--"
21509 ["Goto Calendar" org-goto-calendar t]
21510 ["Date from Calendar" org-date-from-calendar t]
21511 "--"
21512 ["Start/Restart Timer" org-timer-start t]
21513 ["Pause/Continue Timer" org-timer-pause-or-continue t]
21514 ["Stop Timer" org-timer-pause-or-continue :active t :keys "C-u C-c C-x ,"]
21515 ["Insert Timer String" org-timer t]
21516 ["Insert Timer Item" org-timer-item t])
21517 ("Logging work"
21518 ["Clock in" org-clock-in :active t :keys "C-c C-x C-i"]
21519 ["Switch task" (lambda () (interactive) (org-clock-in '(4))) :active t :keys "C-u C-c C-x C-i"]
21520 ["Clock out" org-clock-out t]
21521 ["Clock cancel" org-clock-cancel t]
21522 "--"
21523 ["Mark as default task" org-clock-mark-default-task t]
21524 ["Clock in, mark as default" (lambda () (interactive) (org-clock-in '(16))) :active t :keys "C-u C-u C-c C-x C-i"]
21525 ["Goto running clock" org-clock-goto t]
21526 "--"
21527 ["Display times" org-clock-display t]
21528 ["Create clock table" org-clock-report t]
21529 "--"
21530 ["Record DONE time"
21531 (progn (setq org-log-done (not org-log-done))
21532 (message "Switching to %s will %s record a timestamp"
21533 (car org-done-keywords)
21534 (if org-log-done "automatically" "not")))
21535 :style toggle :selected org-log-done])
21536 "--"
21537 ["Agenda Command..." org-agenda t]
21538 ["Set Restriction Lock" org-agenda-set-restriction-lock t]
21539 ("File List for Agenda")
21540 ("Special views current file"
21541 ["TODO Tree" org-show-todo-tree t]
21542 ["Check Deadlines" org-check-deadlines t]
21543 ["Timeline" org-timeline t]
21544 ["Tags/Property tree" org-match-sparse-tree t])
21545 "--"
21546 ["Export/Publish..." org-export-dispatch t]
21547 ("LaTeX"
21548 ["Org CDLaTeX mode" org-cdlatex-mode :style toggle
21549 :selected org-cdlatex-mode]
21550 ["Insert Environment" cdlatex-environment (fboundp 'cdlatex-environment)]
21551 ["Insert math symbol" cdlatex-math-symbol (fboundp 'cdlatex-math-symbol)]
21552 ["Modify math symbol" org-cdlatex-math-modify
21553 (org-inside-LaTeX-fragment-p)]
21554 ["Insert citation" org-reftex-citation t]
21555 "--"
21556 ["Template for BEAMER" (org-beamer-insert-options-template) t])
21557 "--"
21558 ("MobileOrg"
21559 ["Push Files and Views" org-mobile-push t]
21560 ["Get Captured and Flagged" org-mobile-pull t]
21561 ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "C-c a ?"]
21562 "--"
21563 ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
21564 "--"
21565 ("Documentation"
21566 ["Show Version" org-version t]
21567 ["Info Documentation" org-info t])
21568 ("Customize"
21569 ["Browse Org Group" org-customize t]
21570 "--"
21571 ["Expand This Menu" org-create-customize-menu
21572 (fboundp 'customize-menu-create)])
21573 ["Send bug report" org-submit-bug-report t]
21574 "--"
21575 ("Refresh/Reload"
21576 ["Refresh setup current buffer" org-mode-restart t]
21577 ["Reload Org (after update)" org-reload t]
21578 ["Reload Org uncompiled" (org-reload t) :active t :keys "C-u C-c C-x !"])
21581 (defun org-info (&optional node)
21582 "Read documentation for Org-mode in the info system.
21583 With optional NODE, go directly to that node."
21584 (interactive)
21585 (info (format "(org)%s" (or node ""))))
21587 ;;;###autoload
21588 (defun org-submit-bug-report ()
21589 "Submit a bug report on Org-mode via mail.
21591 Don't hesitate to report any problems or inaccurate documentation.
21593 If you don't have setup sending mail from (X)Emacs, please copy the
21594 output buffer into your mail program, as it gives us important
21595 information about your Org-mode version and configuration."
21596 (interactive)
21597 (require 'reporter)
21598 (org-load-modules-maybe)
21599 (org-require-autoloaded-modules)
21600 (let ((reporter-prompt-for-summary-p "Bug report subject: "))
21601 (reporter-submit-bug-report
21602 "emacs-orgmode@gnu.org"
21603 (org-version nil 'full)
21604 (let (list)
21605 (save-window-excursion
21606 (org-pop-to-buffer-same-window (get-buffer-create "*Warn about privacy*"))
21607 (delete-other-windows)
21608 (erase-buffer)
21609 (insert "You are about to submit a bug report to the Org-mode mailing list.
21611 We would like to add your full Org-mode and Outline configuration to the
21612 bug report. This greatly simplifies the work of the maintainer and
21613 other experts on the mailing list.
21615 HOWEVER, some variables you have customized may contain private
21616 information. The names of customers, colleagues, or friends, might
21617 appear in the form of file names, tags, todo states, or search strings.
21618 If you answer yes to the prompt, you might want to check and remove
21619 such private information before sending the email.")
21620 (add-text-properties (point-min) (point-max) '(face org-warning))
21621 (when (yes-or-no-p "Include your Org-mode configuration ")
21622 (mapatoms
21623 (lambda (v)
21624 (and (boundp v)
21625 (string-match "\\`\\(org-\\|outline-\\)" (symbol-name v))
21626 (or (and (symbol-value v)
21627 (string-match "\\(-hook\\|-function\\)\\'" (symbol-name v)))
21628 (and
21629 (get v 'custom-type) (get v 'standard-value)
21630 (not (equal (symbol-value v) (eval (car (get v 'standard-value)))))))
21631 (push v list)))))
21632 (kill-buffer (get-buffer "*Warn about privacy*"))
21633 list))
21634 nil nil
21635 "Remember to cover the basics, that is, what you expected to happen and
21636 what in fact did happen. You don't know how to make a good report? See
21638 http://orgmode.org/manual/Feedback.html#Feedback
21640 Your bug report will be posted to the Org-mode mailing list.
21641 ------------------------------------------------------------------------")
21642 (save-excursion
21643 (if (re-search-backward "^\\(Subject: \\)Org-mode version \\(.*?\\);[ \t]*\\(.*\\)" nil t)
21644 (replace-match "\\1Bug: \\3 [\\2]")))))
21647 (defun org-install-agenda-files-menu ()
21648 (let ((bl (buffer-list)))
21649 (save-excursion
21650 (while bl
21651 (set-buffer (pop bl))
21652 (if (derived-mode-p 'org-mode) (setq bl nil)))
21653 (when (derived-mode-p 'org-mode)
21654 (easy-menu-change
21655 '("Org") "File List for Agenda"
21656 (append
21657 (list
21658 ["Edit File List" (org-edit-agenda-file-list) t]
21659 ["Add/Move Current File to Front of List" org-agenda-file-to-front t]
21660 ["Remove Current File from List" org-remove-file t]
21661 ["Cycle through agenda files" org-cycle-agenda-files t]
21662 ["Occur in all agenda files" org-occur-in-agenda-files t]
21663 "--")
21664 (mapcar 'org-file-menu-entry (org-agenda-files t))))))))
21666 ;;;; Documentation
21668 (defun org-require-autoloaded-modules ()
21669 (interactive)
21670 (mapc 'require
21671 '(org-agenda org-archive org-attach org-clock org-colview org-id
21672 org-table org-timer)))
21674 ;;;###autoload
21675 (defun org-reload (&optional uncompiled)
21676 "Reload all org lisp files.
21677 With prefix arg UNCOMPILED, load the uncompiled versions."
21678 (interactive "P")
21679 (require 'loadhist)
21680 (let* ((org-dir (org-find-library-dir "org"))
21681 (contrib-dir (or (org-find-library-dir "org-contribdir") org-dir))
21682 (feature-re "^\\(org\\|ob\\|ox\\)\\(-.*\\)?")
21683 (remove-re (mapconcat 'identity
21684 (mapcar (lambda (f) (concat "^" f "$"))
21685 (list (if (featurep 'xemacs)
21686 "org-colview"
21687 "org-colview-xemacs")
21688 "org" "org-loaddefs" "org-version"))
21689 "\\|"))
21690 (feats (delete-dups
21691 (mapcar 'file-name-sans-extension
21692 (mapcar 'file-name-nondirectory
21693 (delq nil
21694 (mapcar 'feature-file
21695 features))))))
21696 (lfeat (append
21697 (sort
21698 (setq feats
21699 (delq nil (mapcar
21700 (lambda (f)
21701 (if (and (string-match feature-re f)
21702 (not (string-match remove-re f)))
21703 f nil))
21704 feats)))
21705 'string-lessp)
21706 (list "org-version" "org")))
21707 (load-suffixes (when (boundp 'load-suffixes) load-suffixes))
21708 (load-suffixes (if uncompiled (reverse load-suffixes) load-suffixes))
21709 load-uncore load-misses)
21710 (setq load-misses
21711 (delq 't
21712 (mapcar (lambda (f)
21713 (or (org-load-noerror-mustsuffix (concat org-dir f))
21714 (and (string= org-dir contrib-dir)
21715 (org-load-noerror-mustsuffix (concat contrib-dir f)))
21716 (and (org-load-noerror-mustsuffix (concat (org-find-library-dir f) f))
21717 (add-to-list 'load-uncore f 'append)
21720 lfeat)))
21721 (if load-uncore
21722 (message "The following feature%s found in load-path, please check if that's correct:\n%s"
21723 (if (> (length load-uncore) 1) "s were" " was") load-uncore))
21724 (if load-misses
21725 (message "Some error occurred while reloading Org feature%s\n%s\nPlease check *Messages*!\n%s"
21726 (if (> (length load-misses) 1) "s" "") load-misses (org-version nil 'full))
21727 (message "Successfully reloaded Org\n%s" (org-version nil 'full)))))
21729 ;;;###autoload
21730 (defun org-customize ()
21731 "Call the customize function with org as argument."
21732 (interactive)
21733 (org-load-modules-maybe)
21734 (org-require-autoloaded-modules)
21735 (customize-browse 'org))
21737 (defun org-create-customize-menu ()
21738 "Create a full customization menu for Org-mode, insert it into the menu."
21739 (interactive)
21740 (org-load-modules-maybe)
21741 (org-require-autoloaded-modules)
21742 (if (fboundp 'customize-menu-create)
21743 (progn
21744 (easy-menu-change
21745 '("Org") "Customize"
21746 `(["Browse Org group" org-customize t]
21747 "--"
21748 ,(customize-menu-create 'org)
21749 ["Set" Custom-set t]
21750 ["Save" Custom-save t]
21751 ["Reset to Current" Custom-reset-current t]
21752 ["Reset to Saved" Custom-reset-saved t]
21753 ["Reset to Standard Settings" Custom-reset-standard t]))
21754 (message "\"Org\"-menu now contains full customization menu"))
21755 (error "Cannot expand menu (outdated version of cus-edit.el)")))
21757 ;;;; Miscellaneous stuff
21759 ;;; Generally useful functions
21761 (defsubst org-get-at-eol (property n)
21762 "Get text property PROPERTY at the end of line less N characters."
21763 (get-text-property (- (point-at-eol) n) property))
21765 (defun org-find-text-property-in-string (prop s)
21766 "Return the first non-nil value of property PROP in string S."
21767 (or (get-text-property 0 prop s)
21768 (get-text-property (or (next-single-property-change 0 prop s) 0)
21769 prop s)))
21771 (defun org-display-warning (message) ;; Copied from Emacs-Muse
21772 "Display the given MESSAGE as a warning."
21773 (if (fboundp 'display-warning)
21774 (display-warning 'org message
21775 (if (featurep 'xemacs) 'warning :warning))
21776 (let ((buf (get-buffer-create "*Org warnings*")))
21777 (with-current-buffer buf
21778 (goto-char (point-max))
21779 (insert "Warning (Org): " message)
21780 (unless (bolp)
21781 (newline)))
21782 (display-buffer buf)
21783 (sit-for 0))))
21785 (defun org-eval (form)
21786 "Eval FORM and return result."
21787 (condition-case error
21788 (eval form)
21789 (error (format "%%![Error: %s]" error))))
21791 (defun org-in-clocktable-p ()
21792 "Check if the cursor is in a clocktable."
21793 (let ((pos (point)) start)
21794 (save-excursion
21795 (end-of-line 1)
21796 (and (re-search-backward "^[ \t]*#\\+BEGIN:[ \t]+clocktable" nil t)
21797 (setq start (match-beginning 0))
21798 (re-search-forward "^[ \t]*#\\+END:.*" nil t)
21799 (>= (match-end 0) pos)
21800 start))))
21802 (defun org-in-verbatim-emphasis ()
21803 (save-match-data
21804 (and (org-in-regexp org-emph-re 2)
21805 (>= (point) (match-beginning 3))
21806 (<= (point) (match-end 4))
21807 (member (match-string 3) '("=" "~")))))
21809 (defun org-goto-marker-or-bmk (marker &optional bookmark)
21810 "Go to MARKER, widen if necessary. When marker is not live, try BOOKMARK."
21811 (if (and marker (marker-buffer marker)
21812 (buffer-live-p (marker-buffer marker)))
21813 (progn
21814 (org-pop-to-buffer-same-window (marker-buffer marker))
21815 (if (or (> marker (point-max)) (< marker (point-min)))
21816 (widen))
21817 (goto-char marker)
21818 (org-show-context 'org-goto))
21819 (if bookmark
21820 (bookmark-jump bookmark)
21821 (error "Cannot find location"))))
21823 (defun org-quote-csv-field (s)
21824 "Quote field for inclusion in CSV material."
21825 (if (string-match "[\",]" s)
21826 (concat "\"" (mapconcat 'identity (split-string s "\"") "\"\"") "\"")
21829 (defun org-force-self-insert (N)
21830 "Needed to enforce self-insert under remapping."
21831 (interactive "p")
21832 (self-insert-command N))
21834 (defun org-string-width (s)
21835 "Compute width of string, ignoring invisible characters.
21836 This ignores character with invisibility property `org-link', and also
21837 characters with property `org-cwidth', because these will become invisible
21838 upon the next fontification round."
21839 (let (b l)
21840 (when (or (eq t buffer-invisibility-spec)
21841 (assq 'org-link buffer-invisibility-spec))
21842 (while (setq b (text-property-any 0 (length s)
21843 'invisible 'org-link s))
21844 (setq s (concat (substring s 0 b)
21845 (substring s (or (next-single-property-change
21846 b 'invisible s) (length s)))))))
21847 (while (setq b (text-property-any 0 (length s) 'org-cwidth t s))
21848 (setq s (concat (substring s 0 b)
21849 (substring s (or (next-single-property-change
21850 b 'org-cwidth s) (length s))))))
21851 (setq l (string-width s) b -1)
21852 (while (setq b (text-property-any (1+ b) (length s) 'org-dwidth t s))
21853 (setq l (- l (get-text-property b 'org-dwidth-n s))))
21856 (defun org-shorten-string (s maxlength)
21857 "Shorten string S so tht it is no longer than MAXLENGTH characters.
21858 If the string is shorter or has length MAXLENGTH, just return the
21859 original string. If it is longer, the functions finds a space in the
21860 string, breaks this string off at that locations and adds three dots
21861 as ellipsis. Including the ellipsis, the string will not be longer
21862 than MAXLENGTH. If finding a good breaking point in the string does
21863 not work, the string is just chopped off in the middle of a word
21864 if necessary."
21865 (if (<= (length s) maxlength)
21867 (let* ((n (max (- maxlength 4) 1))
21868 (re (concat "\\`\\(.\\{1," (int-to-string n) "\\}[^ ]\\)\\([ ]\\|\\'\\)")))
21869 (if (string-match re s)
21870 (concat (match-string 1 s) "...")
21871 (concat (substring s 0 (max (- maxlength 3) 0)) "...")))))
21873 (defun org-get-indentation (&optional line)
21874 "Get the indentation of the current line, interpreting tabs.
21875 When LINE is given, assume it represents a line and compute its indentation."
21876 (if line
21877 (if (string-match "^ *" (org-remove-tabs line))
21878 (match-end 0))
21879 (save-excursion
21880 (beginning-of-line 1)
21881 (skip-chars-forward " \t")
21882 (current-column))))
21884 (defun org-get-string-indentation (s)
21885 "What indentation has S due to SPACE and TAB at the beginning of the string?"
21886 (let ((n -1) (i 0) (w tab-width) c)
21887 (catch 'exit
21888 (while (< (setq n (1+ n)) (length s))
21889 (setq c (aref s n))
21890 (cond ((= c ?\ ) (setq i (1+ i)))
21891 ((= c ?\t) (setq i (* (/ (+ w i) w) w)))
21892 (t (throw 'exit t)))))
21895 (defun org-remove-tabs (s &optional width)
21896 "Replace tabulators in S with spaces.
21897 Assumes that s is a single line, starting in column 0."
21898 (setq width (or width tab-width))
21899 (while (string-match "\t" s)
21900 (setq s (replace-match
21901 (make-string
21902 (- (* width (/ (+ (match-beginning 0) width) width))
21903 (match-beginning 0)) ?\ )
21904 t t s)))
21907 (defun org-fix-indentation (line ind)
21908 "Fix indentation in LINE.
21909 IND is a cons cell with target and minimum indentation.
21910 If the current indentation in LINE is smaller than the minimum,
21911 leave it alone. If it is larger than ind, set it to the target."
21912 (let* ((l (org-remove-tabs line))
21913 (i (org-get-indentation l))
21914 (i1 (car ind)) (i2 (cdr ind)))
21915 (if (>= i i2) (setq l (substring line i2)))
21916 (if (> i1 0)
21917 (concat (make-string i1 ?\ ) l)
21918 l)))
21920 (defun org-remove-indentation (code &optional n)
21921 "Remove the maximum common indentation from the lines in CODE.
21922 N may optionally be the number of spaces to remove."
21923 (with-temp-buffer
21924 (insert code)
21925 (org-do-remove-indentation n)
21926 (buffer-string)))
21928 (defun org-do-remove-indentation (&optional n)
21929 "Remove the maximum common indentation from the buffer."
21930 (untabify (point-min) (point-max))
21931 (let ((min 10000) re)
21932 (if n
21933 (setq min n)
21934 (goto-char (point-min))
21935 (while (re-search-forward "^ *[^ \n]" nil t)
21936 (setq min (min min (1- (- (match-end 0) (match-beginning 0)))))))
21937 (unless (or (= min 0) (= min 10000))
21938 (setq re (format "^ \\{%d\\}" min))
21939 (goto-char (point-min))
21940 (while (re-search-forward re nil t)
21941 (replace-match "")
21942 (end-of-line 1))
21943 min)))
21945 (defun org-fill-template (template alist)
21946 "Find each %key of ALIST in TEMPLATE and replace it."
21947 (let ((case-fold-search nil)
21948 entry key value)
21949 (setq alist (sort (copy-sequence alist)
21950 (lambda (a b) (< (length (car a)) (length (car b))))))
21951 (while (setq entry (pop alist))
21952 (setq template
21953 (replace-regexp-in-string
21954 (concat "%" (regexp-quote (car entry)))
21955 (or (cdr entry) "") template t t)))
21956 template))
21958 (defun org-base-buffer (buffer)
21959 "Return the base buffer of BUFFER, if it has one. Else return the buffer."
21960 (if (not buffer)
21961 buffer
21962 (or (buffer-base-buffer buffer)
21963 buffer)))
21965 (defun org-wrap (string &optional width lines)
21966 "Wrap string to either a number of lines, or a width in characters.
21967 If WIDTH is non-nil, the string is wrapped to that width, however many lines
21968 that costs. If there is a word longer than WIDTH, the text is actually
21969 wrapped to the length of that word.
21970 IF WIDTH is nil and LINES is non-nil, the string is forced into at most that
21971 many lines, whatever width that takes.
21972 The return value is a list of lines, without newlines at the end."
21973 (let* ((words (org-split-string string "[ \t\n]+"))
21974 (maxword (apply 'max (mapcar 'org-string-width words)))
21975 w ll)
21976 (cond (width
21977 (org-do-wrap words (max maxword width)))
21978 (lines
21979 (setq w maxword)
21980 (setq ll (org-do-wrap words maxword))
21981 (if (<= (length ll) lines)
21983 (setq ll words)
21984 (while (> (length ll) lines)
21985 (setq w (1+ w))
21986 (setq ll (org-do-wrap words w)))
21987 ll))
21988 (t (error "Cannot wrap this")))))
21990 (defun org-do-wrap (words width)
21991 "Create lines of maximum width WIDTH (in characters) from word list WORDS."
21992 (let (lines line)
21993 (while words
21994 (setq line (pop words))
21995 (while (and words (< (+ (length line) (length (car words))) width))
21996 (setq line (concat line " " (pop words))))
21997 (setq lines (push line lines)))
21998 (nreverse lines)))
22000 (defun org-split-string (string &optional separators)
22001 "Splits STRING into substrings at SEPARATORS.
22002 No empty strings are returned if there are matches at the beginning
22003 and end of string."
22004 (let ((rexp (or separators "[ \f\t\n\r\v]+"))
22005 (start 0)
22006 notfirst
22007 (list nil))
22008 (while (and (string-match rexp string
22009 (if (and notfirst
22010 (= start (match-beginning 0))
22011 (< start (length string)))
22012 (1+ start) start))
22013 (< (match-beginning 0) (length string)))
22014 (setq notfirst t)
22015 (or (eq (match-beginning 0) 0)
22016 (and (eq (match-beginning 0) (match-end 0))
22017 (eq (match-beginning 0) start))
22018 (setq list
22019 (cons (substring string start (match-beginning 0))
22020 list)))
22021 (setq start (match-end 0)))
22022 (or (eq start (length string))
22023 (setq list
22024 (cons (substring string start)
22025 list)))
22026 (nreverse list)))
22028 (defun org-quote-vert (s)
22029 "Replace \"|\" with \"\\vert\"."
22030 (while (string-match "|" s)
22031 (setq s (replace-match "\\vert" t t s)))
22034 (defun org-uuidgen-p (s)
22035 "Is S an ID created by UUIDGEN?"
22036 (string-match "\\`[0-9a-f]\\{8\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{12\\}\\'" (downcase s)))
22038 (defun org-in-src-block-p (&optional inside)
22039 "Whether point is in a code source block.
22040 When INSIDE is non-nil, don't consider we are within a src block
22041 when point is at #+BEGIN_SRC or #+END_SRC."
22042 (let ((case-fold-search t) ov)
22043 (or (and (eq (get-char-property (point) 'src-block) t))
22044 (and (not inside)
22045 (save-match-data
22046 (save-excursion
22047 (beginning-of-line)
22048 (looking-at ".*#\\+\\(begin\\|end\\)_src")))))))
22050 (defun org-context ()
22051 "Return a list of contexts of the current cursor position.
22052 If several contexts apply, all are returned.
22053 Each context entry is a list with a symbol naming the context, and
22054 two positions indicating start and end of the context. Possible
22055 contexts are:
22057 :headline anywhere in a headline
22058 :headline-stars on the leading stars in a headline
22059 :todo-keyword on a TODO keyword (including DONE) in a headline
22060 :tags on the TAGS in a headline
22061 :priority on the priority cookie in a headline
22062 :item on the first line of a plain list item
22063 :item-bullet on the bullet/number of a plain list item
22064 :checkbox on the checkbox in a plain list item
22065 :table in an org-mode table
22066 :table-special on a special filed in a table
22067 :table-table in a table.el table
22068 :clocktable in a clocktable
22069 :src-block in a source block
22070 :link on a hyperlink
22071 :keyword on a keyword: SCHEDULED, DEADLINE, CLOSE, COMMENT.
22072 :target on a <<target>>
22073 :radio-target on a <<<radio-target>>>
22074 :latex-fragment on a LaTeX fragment
22075 :latex-preview on a LaTeX fragment with overlaid preview image
22077 This function expects the position to be visible because it uses font-lock
22078 faces as a help to recognize the following contexts: :table-special, :link,
22079 and :keyword."
22080 (let* ((f (get-text-property (point) 'face))
22081 (faces (if (listp f) f (list f)))
22082 (case-fold-search t)
22083 (p (point)) clist o)
22084 ;; First the large context
22085 (cond
22086 ((org-at-heading-p t)
22087 (push (list :headline (point-at-bol) (point-at-eol)) clist)
22088 (when (progn
22089 (beginning-of-line 1)
22090 (looking-at org-todo-line-tags-regexp))
22091 (push (org-point-in-group p 1 :headline-stars) clist)
22092 (push (org-point-in-group p 2 :todo-keyword) clist)
22093 (push (org-point-in-group p 4 :tags) clist))
22094 (goto-char p)
22095 (skip-chars-backward "^[\n\r \t") (or (bobp) (backward-char 1))
22096 (if (looking-at "\\[#[A-Z0-9]\\]")
22097 (push (org-point-in-group p 0 :priority) clist)))
22099 ((org-at-item-p)
22100 (push (org-point-in-group p 2 :item-bullet) clist)
22101 (push (list :item (point-at-bol)
22102 (save-excursion (org-end-of-item) (point)))
22103 clist)
22104 (and (org-at-item-checkbox-p)
22105 (push (org-point-in-group p 0 :checkbox) clist)))
22107 ((org-at-table-p)
22108 (push (list :table (org-table-begin) (org-table-end)) clist)
22109 (if (memq 'org-formula faces)
22110 (push (list :table-special
22111 (previous-single-property-change p 'face)
22112 (next-single-property-change p 'face)) clist)))
22113 ((org-at-table-p 'any)
22114 (push (list :table-table) clist)))
22115 (goto-char p)
22117 (let ((case-fold-search t))
22118 ;; New the "medium" contexts: clocktables, source blocks
22119 (cond ((org-in-clocktable-p)
22120 (push (list :clocktable
22121 (and (or (looking-at "[ \t]*\\(#\\+BEGIN: clocktable\\)")
22122 (re-search-backward "[ \t]*\\(#+BEGIN: clocktable\\)" nil t))
22123 (match-beginning 1))
22124 (and (re-search-forward "[ \t]*#\\+END:?" nil t)
22125 (match-end 0))) clist))
22126 ((org-in-src-block-p)
22127 (push (list :src-block
22128 (and (or (looking-at "[ \t]*\\(#\\+BEGIN_SRC\\)")
22129 (re-search-backward "[ \t]*\\(#+BEGIN_SRC\\)" nil t))
22130 (match-beginning 1))
22131 (and (search-forward "#+END_SRC" nil t)
22132 (match-beginning 0))) clist))))
22133 (goto-char p)
22135 ;; Now the small context
22136 (cond
22137 ((org-at-timestamp-p)
22138 (push (org-point-in-group p 0 :timestamp) clist))
22139 ((memq 'org-link faces)
22140 (push (list :link
22141 (previous-single-property-change p 'face)
22142 (next-single-property-change p 'face)) clist))
22143 ((memq 'org-special-keyword faces)
22144 (push (list :keyword
22145 (previous-single-property-change p 'face)
22146 (next-single-property-change p 'face)) clist))
22147 ((org-at-target-p)
22148 (push (org-point-in-group p 0 :target) clist)
22149 (goto-char (1- (match-beginning 0)))
22150 (if (looking-at org-radio-target-regexp)
22151 (push (org-point-in-group p 0 :radio-target) clist))
22152 (goto-char p))
22153 ((setq o (car (delq nil
22154 (mapcar
22155 (lambda (x)
22156 (if (memq x org-latex-fragment-image-overlays) x))
22157 (overlays-at (point))))))
22158 (push (list :latex-fragment
22159 (overlay-start o) (overlay-end o)) clist)
22160 (push (list :latex-preview
22161 (overlay-start o) (overlay-end o)) clist))
22162 ((org-inside-LaTeX-fragment-p)
22163 ;; FIXME: positions wrong.
22164 (push (list :latex-fragment (point) (point)) clist)))
22166 (setq clist (nreverse (delq nil clist)))
22167 clist))
22169 ;; FIXME: Compare with at-regexp-p Do we need both?
22170 (defun org-in-regexp (re &optional nlines visually)
22171 "Check if point is inside a match of regexp.
22172 Normally only the current line is checked, but you can include NLINES extra
22173 lines both before and after point into the search.
22174 If VISUALLY is set, require that the cursor is not after the match but
22175 really on, so that the block visually is on the match."
22176 (catch 'exit
22177 (let ((pos (point))
22178 (eol (point-at-eol (+ 1 (or nlines 0))))
22179 (inc (if visually 1 0)))
22180 (save-excursion
22181 (beginning-of-line (- 1 (or nlines 0)))
22182 (while (re-search-forward re eol t)
22183 (if (and (<= (match-beginning 0) pos)
22184 (>= (+ inc (match-end 0)) pos))
22185 (throw 'exit (cons (match-beginning 0) (match-end 0)))))))))
22187 (defun org-at-regexp-p (regexp)
22188 "Is point inside a match of REGEXP in the current line?"
22189 (catch 'exit
22190 (save-excursion
22191 (let ((pos (point)) (end (point-at-eol)))
22192 (beginning-of-line 1)
22193 (while (re-search-forward regexp end t)
22194 (if (and (<= (match-beginning 0) pos)
22195 (>= (match-end 0) pos))
22196 (throw 'exit t)))
22197 nil))))
22199 (defun org-between-regexps-p (start-re end-re &optional lim-up lim-down)
22200 "Non-nil when point is between matches of START-RE and END-RE.
22202 Also return a non-nil value when point is on one of the matches.
22204 Optional arguments LIM-UP and LIM-DOWN bound the search; they are
22205 buffer positions. Default values are the positions of headlines
22206 surrounding the point.
22208 The functions returns a cons cell whose car (resp. cdr) is the
22209 position before START-RE (resp. after END-RE)."
22210 (save-match-data
22211 (let ((pos (point))
22212 (limit-up (or lim-up (save-excursion (outline-previous-heading))))
22213 (limit-down (or lim-down (save-excursion (outline-next-heading))))
22214 beg end)
22215 (save-excursion
22216 ;; Point is on a block when on START-RE or if START-RE can be
22217 ;; found before it...
22218 (and (or (org-at-regexp-p start-re)
22219 (re-search-backward start-re limit-up t))
22220 (setq beg (match-beginning 0))
22221 ;; ... and END-RE after it...
22222 (goto-char (match-end 0))
22223 (re-search-forward end-re limit-down t)
22224 (> (setq end (match-end 0)) pos)
22225 ;; ... without another START-RE in-between.
22226 (goto-char (match-beginning 0))
22227 (not (re-search-backward start-re (1+ beg) t))
22228 ;; Return value.
22229 (cons beg end))))))
22231 (defun org-in-block-p (names)
22232 "Non-nil when point belongs to a block whose name belongs to NAMES.
22234 NAMES is a list of strings containing names of blocks.
22236 Return first block name matched, or nil. Beware that in case of
22237 nested blocks, the returned name may not belong to the closest
22238 block from point."
22239 (save-match-data
22240 (catch 'exit
22241 (let ((case-fold-search t)
22242 (lim-up (save-excursion (outline-previous-heading)))
22243 (lim-down (save-excursion (outline-next-heading))))
22244 (mapc (lambda (name)
22245 (let ((n (regexp-quote name)))
22246 (when (org-between-regexps-p
22247 (concat "^[ \t]*#\\+begin_" n)
22248 (concat "^[ \t]*#\\+end_" n)
22249 lim-up lim-down)
22250 (throw 'exit n))))
22251 names))
22252 nil)))
22254 (defun org-in-drawer-p ()
22255 "Non-nil if point is within a drawer.
22256 If point is within a drawer, return it, as parsed data."
22257 (let ((element (save-match-data (org-element-at-point))))
22258 (while (and element (not (memq (org-element-type element)
22259 '(drawer property-drawer))))
22260 (setq element (org-element-property :parent element)))
22261 element))
22263 (defun org-occur-in-agenda-files (regexp &optional nlines)
22264 "Call `multi-occur' with buffers for all agenda files."
22265 (interactive "sOrg-files matching: \np")
22266 (let* ((files (org-agenda-files))
22267 (tnames (mapcar 'file-truename files))
22268 (extra org-agenda-text-search-extra-files)
22270 (when (eq (car extra) 'agenda-archives)
22271 (setq extra (cdr extra))
22272 (setq files (org-add-archive-files files)))
22273 (while (setq f (pop extra))
22274 (unless (member (file-truename f) tnames)
22275 (add-to-list 'files f 'append)
22276 (add-to-list 'tnames (file-truename f) 'append)))
22277 (multi-occur
22278 (mapcar (lambda (x)
22279 (with-current-buffer
22280 (or (get-file-buffer x) (find-file-noselect x))
22281 (widen)
22282 (current-buffer)))
22283 files)
22284 regexp)))
22286 (if (boundp 'occur-mode-find-occurrence-hook)
22287 ;; Emacs 23
22288 (add-hook 'occur-mode-find-occurrence-hook
22289 (lambda ()
22290 (when (derived-mode-p 'org-mode)
22291 (org-reveal))))
22292 ;; Emacs 22
22293 (defadvice occur-mode-goto-occurrence
22294 (after org-occur-reveal activate)
22295 (and (derived-mode-p 'org-mode) (org-reveal)))
22296 (defadvice occur-mode-goto-occurrence-other-window
22297 (after org-occur-reveal activate)
22298 (and (derived-mode-p 'org-mode) (org-reveal)))
22299 (defadvice occur-mode-display-occurrence
22300 (after org-occur-reveal activate)
22301 (when (derived-mode-p 'org-mode)
22302 (let ((pos (occur-mode-find-occurrence)))
22303 (with-current-buffer (marker-buffer pos)
22304 (save-excursion
22305 (goto-char pos)
22306 (org-reveal)))))))
22308 (defun org-occur-link-in-agenda-files ()
22309 "Create a link and search for it in the agendas.
22310 The link is not stored in `org-stored-links', it is just created
22311 for the search purpose."
22312 (interactive)
22313 (let ((link (condition-case nil
22314 (org-store-link nil)
22315 (error "Unable to create a link to here"))))
22316 (org-occur-in-agenda-files (regexp-quote link))))
22318 (defun org-reverse-string (string)
22319 "Return the reverse of STRING."
22320 (apply 'string (reverse (string-to-list string))))
22322 ;; defsubst org-uniquify must be defined before first use
22324 (defun org-uniquify-alist (alist)
22325 "Merge elements of ALIST with the same key.
22327 For example, in this alist:
22329 \(org-uniquify-alist '((a 1) (b 2) (a 3)))
22330 => '((a 1 3) (b 2))
22332 merge (a 1) and (a 3) into (a 1 3).
22334 The function returns the new ALIST."
22335 (let (rtn)
22336 (mapc
22337 (lambda (e)
22338 (let (n)
22339 (if (not (assoc (car e) rtn))
22340 (push e rtn)
22341 (setq n (cons (car e) (append (cdr (assoc (car e) rtn)) (cdr e))))
22342 (setq rtn (assq-delete-all (car e) rtn))
22343 (push n rtn))))
22344 alist)
22345 rtn))
22347 (defun org-delete-all (elts list)
22348 "Remove all elements in ELTS from LIST."
22349 (while elts
22350 (setq list (delete (pop elts) list)))
22351 list)
22353 (defun org-count (cl-item cl-seq)
22354 "Count the number of occurrences of ITEM in SEQ.
22355 Taken from `count' in cl-seq.el with all keyword arguments removed."
22356 (let ((cl-end (length cl-seq)) (cl-start 0) (cl-count 0) cl-x)
22357 (when (consp cl-seq) (setq cl-seq (nthcdr cl-start cl-seq)))
22358 (while (< cl-start cl-end)
22359 (setq cl-x (if (consp cl-seq) (pop cl-seq) (aref cl-seq cl-start)))
22360 (if (equal cl-item cl-x) (setq cl-count (1+ cl-count)))
22361 (setq cl-start (1+ cl-start)))
22362 cl-count))
22364 (defun org-remove-if (predicate seq)
22365 "Remove everything from SEQ that fulfills PREDICATE."
22366 (let (res e)
22367 (while seq
22368 (setq e (pop seq))
22369 (if (not (funcall predicate e)) (push e res)))
22370 (nreverse res)))
22372 (defun org-remove-if-not (predicate seq)
22373 "Remove everything from SEQ that does not fulfill PREDICATE."
22374 (let (res e)
22375 (while seq
22376 (setq e (pop seq))
22377 (if (funcall predicate e) (push e res)))
22378 (nreverse res)))
22380 (defun org-reduce (cl-func cl-seq &rest cl-keys)
22381 "Reduce two-argument FUNCTION across SEQ.
22382 Taken from `reduce' in cl-seq.el with all keyword arguments but
22383 \":initial-value\" removed."
22384 (let ((cl-accum (cond ((memq :initial-value cl-keys)
22385 (cadr (memq :initial-value cl-keys)))
22386 (cl-seq (pop cl-seq))
22387 (t (funcall cl-func)))))
22388 (while cl-seq
22389 (setq cl-accum (funcall cl-func cl-accum (pop cl-seq))))
22390 cl-accum))
22392 (defun org-every (pred seq)
22393 "Return true if PREDICATE is true of every element of SEQ.
22394 Adapted from `every' in cl.el."
22395 (catch 'org-every
22396 (mapc (lambda (e) (unless (funcall pred e) (throw 'org-every nil))) seq)
22399 (defun org-some (pred seq)
22400 "Return true if PREDICATE is true of any element of SEQ.
22401 Adapted from `some' in cl.el."
22402 (catch 'org-some
22403 (mapc (lambda (e) (when (funcall pred e) (throw 'org-some t))) seq)
22404 nil))
22406 (defun org-back-over-empty-lines ()
22407 "Move backwards over whitespace, to the beginning of the first empty line.
22408 Returns the number of empty lines passed."
22409 (let ((pos (point)))
22410 (if (cdr (assoc 'heading org-blank-before-new-entry))
22411 (skip-chars-backward " \t\n\r")
22412 (unless (eobp)
22413 (forward-line -1)))
22414 (beginning-of-line 2)
22415 (goto-char (min (point) pos))
22416 (count-lines (point) pos)))
22418 (defun org-skip-whitespace ()
22419 (skip-chars-forward " \t\n\r"))
22421 (defun org-point-in-group (point group &optional context)
22422 "Check if POINT is in match-group GROUP.
22423 If CONTEXT is non-nil, return a list with CONTEXT and the boundaries of the
22424 match. If the match group does not exist or point is not inside it,
22425 return nil."
22426 (and (match-beginning group)
22427 (>= point (match-beginning group))
22428 (<= point (match-end group))
22429 (if context
22430 (list context (match-beginning group) (match-end group))
22431 t)))
22433 (defun org-switch-to-buffer-other-window (&rest args)
22434 "Switch to buffer in a second window on the current frame.
22435 In particular, do not allow pop-up frames.
22436 Returns the newly created buffer."
22437 (org-no-popups
22438 (apply 'switch-to-buffer-other-window args)))
22440 (defun org-combine-plists (&rest plists)
22441 "Create a single property list from all plists in PLISTS.
22442 The process starts by copying the first list, and then setting properties
22443 from the other lists. Settings in the last list are the most significant
22444 ones and overrule settings in the other lists."
22445 (let ((rtn (copy-sequence (pop plists)))
22446 p v ls)
22447 (while plists
22448 (setq ls (pop plists))
22449 (while ls
22450 (setq p (pop ls) v (pop ls))
22451 (setq rtn (plist-put rtn p v))))
22452 rtn))
22454 (defun org-replace-escapes (string table)
22455 "Replace %-escapes in STRING with values in TABLE.
22456 TABLE is an association list with keys like \"%a\" and string values.
22457 The sequences in STRING may contain normal field width and padding information,
22458 for example \"%-5s\". Replacements happen in the sequence given by TABLE,
22459 so values can contain further %-escapes if they are define later in TABLE."
22460 (let ((tbl (copy-alist table))
22461 (case-fold-search nil)
22462 (pchg 0)
22463 e re rpl)
22464 (while (setq e (pop tbl))
22465 (setq re (concat "%-?[0-9.]*" (substring (car e) 1)))
22466 (when (and (cdr e) (string-match re (cdr e)))
22467 (let ((sref (substring (cdr e) (match-beginning 0) (match-end 0)))
22468 (safe "SREF"))
22469 (add-text-properties 0 3 (list 'sref sref) safe)
22470 (setcdr e (replace-match safe t t (cdr e)))))
22471 (while (string-match re string)
22472 (setq rpl (format (concat (substring (match-string 0 string) 0 -1) "s")
22473 (cdr e)))
22474 (setq string (replace-match rpl t t string))))
22475 (while (setq pchg (next-property-change pchg string))
22476 (let ((sref (get-text-property pchg 'sref string)))
22477 (when (and sref (string-match "SREF" string pchg))
22478 (setq string (replace-match sref t t string)))))
22479 string))
22481 (defun org-sublist (list start end)
22482 "Return a section of LIST, from START to END.
22483 Counting starts at 1."
22484 (let (rtn (c start))
22485 (setq list (nthcdr (1- start) list))
22486 (while (and list (<= c end))
22487 (push (pop list) rtn)
22488 (setq c (1+ c)))
22489 (nreverse rtn)))
22491 (defun org-find-base-buffer-visiting (file)
22492 "Like `find-buffer-visiting' but always return the base buffer and
22493 not an indirect buffer."
22494 (let ((buf (or (get-file-buffer file)
22495 (find-buffer-visiting file))))
22496 (if buf
22497 (or (buffer-base-buffer buf) buf)
22498 nil)))
22500 (defun org-image-file-name-regexp (&optional extensions)
22501 "Return regexp matching the file names of images.
22502 If EXTENSIONS is given, only match these."
22503 (if (and (not extensions) (fboundp 'image-file-name-regexp))
22504 (image-file-name-regexp)
22505 (let ((image-file-name-extensions
22506 (or extensions
22507 '("png" "jpeg" "jpg" "gif" "tiff" "tif"
22508 "xbm" "xpm" "pbm" "pgm" "ppm"))))
22509 (concat "\\."
22510 (regexp-opt (nconc (mapcar 'upcase
22511 image-file-name-extensions)
22512 image-file-name-extensions)
22514 "\\'"))))
22516 (defun org-file-image-p (file &optional extensions)
22517 "Return non-nil if FILE is an image."
22518 (save-match-data
22519 (string-match (org-image-file-name-regexp extensions) file)))
22521 (defun org-get-cursor-date (&optional with-time)
22522 "Return the date at cursor in as a time.
22523 This works in the calendar and in the agenda, anywhere else it just
22524 returns the current time.
22525 If WITH-TIME is non-nil, returns the time of the event at point (in
22526 the agenda) or the current time of the day."
22527 (let (date day defd tp tm hod mod)
22528 (when with-time
22529 (setq tp (get-text-property (point) 'time))
22530 (when (and tp (string-match "\\([0-9][0-9]\\):\\([0-9][0-9]\\)" tp))
22531 (setq hod (string-to-number (match-string 1 tp))
22532 mod (string-to-number (match-string 2 tp))))
22533 (or tp (setq hod (nth 2 (decode-time (current-time)))
22534 mod (nth 1 (decode-time (current-time))))))
22535 (cond
22536 ((eq major-mode 'calendar-mode)
22537 (setq date (calendar-cursor-to-date)
22538 defd (encode-time 0 (or mod 0) (or hod 0)
22539 (nth 1 date) (nth 0 date) (nth 2 date))))
22540 ((eq major-mode 'org-agenda-mode)
22541 (setq day (get-text-property (point) 'day))
22542 (if day
22543 (setq date (calendar-gregorian-from-absolute day)
22544 defd (encode-time 0 (or mod 0) (or hod 0)
22545 (nth 1 date) (nth 0 date) (nth 2 date))))))
22546 (or defd (current-time))))
22548 (defun org-mark-subtree (&optional up)
22549 "Mark the current subtree.
22550 This puts point at the start of the current subtree, and mark at
22551 the end. If a numeric prefix UP is given, move up into the
22552 hierarchy of headlines by UP levels before marking the subtree."
22553 (interactive "P")
22554 (org-with-limited-levels
22555 (cond ((org-at-heading-p) (beginning-of-line))
22556 ((org-before-first-heading-p) (user-error "Not in a subtree"))
22557 (t (outline-previous-visible-heading 1))))
22558 (when up (while (and (> up 0) (org-up-heading-safe)) (decf up)))
22559 (if (org-called-interactively-p 'any)
22560 (call-interactively 'org-mark-element)
22561 (org-mark-element)))
22564 ;;; Indentation
22566 (defun org--get-expected-indentation (element contentsp)
22567 "Expected indentation column for current line, according to ELEMENT.
22568 ELEMENT is an element containing point. CONTENTSP is non-nil
22569 when indentation is to be computed according to contents of
22570 ELEMENT."
22571 (let ((type (org-element-type element))
22572 (start (org-element-property :begin element)))
22573 (org-with-wide-buffer
22574 (cond
22575 (contentsp
22576 (case type
22577 (footnote-definition 0)
22578 ((headline inlinetask nil)
22579 (if (not org-adapt-indentation) 0
22580 (let ((level (org-current-level)))
22581 (if level (1+ level) 0))))
22582 (item
22583 (org-list-item-body-column
22584 (org-element-property :post-affiliated element)))
22585 (plain-list
22586 (save-excursion
22587 (goto-char (org-element-property :post-affiliated element))
22588 (org-get-indentation)))
22589 (otherwise
22590 (goto-char start)
22591 (org-get-indentation))))
22592 ((memq type '(headline inlinetask nil))
22593 (if (save-excursion (beginning-of-line) (looking-at "[ \t]*$"))
22594 (org--get-expected-indentation element t)
22596 ((eq type 'footnote-definition) 0)
22597 ;; First paragraph of a footnote definition or an item.
22598 ;; Indent like parent.
22599 ((< (line-beginning-position) start)
22600 (org--get-expected-indentation
22601 (org-element-property :parent element) t))
22602 ;; At first line: indent according to previous sibling, if any,
22603 ;; ignoring footnote definitions and inline tasks, or parent's
22604 ;; contents.
22605 ((= (line-beginning-position) start)
22606 (catch 'exit
22607 (while t
22608 (if (= (point-min) start) (throw 'exit 0)
22609 (goto-char (1- start))
22610 (let* ((previous (org-element-at-point))
22611 (parent previous))
22612 (while (and parent (<= (org-element-property :end parent) start))
22613 (setq previous parent
22614 parent (org-element-property :parent parent)))
22615 (cond
22616 ((not previous) (throw 'exit 0))
22617 ((> (org-element-property :end previous) start)
22618 (throw 'exit (org--get-expected-indentation previous t)))
22619 ((memq (org-element-type previous)
22620 '(footnote-definition inlinetask))
22621 (setq start (org-element-property :begin previous)))
22622 (t (goto-char (org-element-property :begin previous))
22623 (throw 'exit
22624 (if (bolp) (org-get-indentation)
22625 ;; At first paragraph in an item or
22626 ;; a footnote definition.
22627 (org--get-expected-indentation
22628 (org-element-property :parent previous) t))))))))))
22629 ;; Otherwise, move to the first non-blank line above.
22631 (beginning-of-line)
22632 (let ((pos (point)))
22633 (skip-chars-backward " \r\t\n")
22634 (cond
22635 ;; Two blank lines end a footnote definition or a plain
22636 ;; list. When we indent an empty line after them, the
22637 ;; containing list or footnote definition is over, so it
22638 ;; qualifies as a previous sibling. Therefore, we indent
22639 ;; like its first line.
22640 ((and (memq type '(footnote-definition plain-list))
22641 (> (count-lines (point) pos) 2))
22642 (goto-char start)
22643 (org-get-indentation))
22644 ;; Line above is the first one of a paragraph at the
22645 ;; beginning of an item or a footnote definition. Indent
22646 ;; like parent.
22647 ((< (line-beginning-position) start)
22648 (org--get-expected-indentation
22649 (org-element-property :parent element) t))
22650 ;; POS is after contents in a greater element. Indent like
22651 ;; the beginning of the element.
22653 ;; As a special case, if point is at the end of a footnote
22654 ;; definition or an item, indent like the very last element
22655 ;; within.
22656 ((let ((cend (org-element-property :contents-end element)))
22657 (and cend (<= cend pos)))
22658 (if (memq type '(footnote-definition item plain-list))
22659 (org--get-expected-indentation (org-element-at-point) nil)
22660 (goto-char start)
22661 (org-get-indentation)))
22662 ;; In any other case, indent like the current line.
22663 (t (org-get-indentation)))))))))
22665 (defun org--align-node-property ()
22666 "Align node property at point.
22667 Alignment is done according to `org-property-format', which see."
22668 (when (save-excursion
22669 (beginning-of-line)
22670 (looking-at org-property-re))
22671 (replace-match
22672 (concat (match-string 4)
22673 (org-trim
22674 (format org-property-format (match-string 1) (match-string 3))))
22675 t t)))
22677 (defun org-indent-line ()
22678 "Indent line depending on context.
22680 Indentation is done according to the following rules:
22682 - Footnote definitions, headlines and inline tasks have to
22683 start at column 0.
22685 - On the very first line of an element, consider, in order, the
22686 next rules until one matches:
22688 1. If there's a sibling element before, ignoring footnote
22689 definitions and inline tasks, indent like its first line.
22691 2. If element has a parent, indent like its contents. More
22692 precisely, if parent is an item, indent after the
22693 description part, if any, or the bullet (see
22694 ``org-list-description-max-indent'). Else, indent like
22695 parent's first line.
22697 3. Otherwise, indent relatively to current level, if
22698 `org-adapt-indentation' is non-nil, or to left margin.
22700 - On a blank line at the end of a plain list, an item, or
22701 a footnote definition, indent like the very last element
22702 within.
22704 - In the code part of a source block, use language major mode
22705 to indent current line if `org-src-tab-acts-natively' is
22706 non-nil. If it is nil, do nothing.
22708 - Otherwise, indent like the first non-blank line above.
22710 The function doesn't indent an item as it could break the whole
22711 list structure. Instead, use \\<org-mode-map>\\[org-shiftmetaleft] or \
22712 \\[org-shiftmetaright].
22714 Also align node properties according to `org-property-format'."
22715 (interactive)
22716 (cond
22717 (orgstruct-is-++
22718 (let ((indent-line-function
22719 (cadadr (assq 'indent-line-function org-fb-vars))))
22720 (indent-according-to-mode)))
22721 ((org-at-heading-p) 'noindent)
22723 (let* ((element (save-excursion (beginning-of-line) (org-element-at-point)))
22724 (type (org-element-type element)))
22725 (cond ((and (memq type '(plain-list item))
22726 (= (line-beginning-position)
22727 (org-element-property :post-affiliated element)))
22728 'noindent)
22729 ((and (eq type 'src-block)
22730 org-src-tab-acts-natively
22731 (> (line-beginning-position)
22732 (org-element-property :post-affiliated element))
22733 (< (line-beginning-position)
22734 (org-with-wide-buffer
22735 (goto-char (org-element-property :end element))
22736 (skip-chars-backward " \r\t\n")
22737 (line-beginning-position))))
22738 (let ((org-src-strip-leading-and-trailing-blank-lines nil))
22739 (org-babel-do-key-sequence-in-edit-buffer (kbd "TAB"))))
22741 (let ((column (org--get-expected-indentation element nil)))
22742 ;; Preserve current column.
22743 (if (<= (current-column) (current-indentation))
22744 (org-indent-line-to column)
22745 (save-excursion (org-indent-line-to column))))
22746 ;; Align node property. Also preserve current column.
22747 (when (eq type 'node-property)
22748 (let ((column (current-column)))
22749 (org--align-node-property)
22750 (org-move-to-column column)))))))))
22752 (defun org-indent-region (start end)
22753 "Indent each non-blank line in the region.
22754 Called from a program, START and END specify the region to
22755 indent. The function will not indent contents of example blocks,
22756 verse blocks and export blocks as leading white spaces are
22757 assumed to be significant there."
22758 (interactive "r")
22759 (save-excursion
22760 (goto-char start)
22761 (skip-chars-forward " \r\t\n")
22762 (unless (eobp) (beginning-of-line))
22763 (let ((indent-to
22764 (lambda (ind pos)
22765 ;; Set IND as indentation for all lines between point and
22766 ;; POS or END, whichever comes first. Blank lines are
22767 ;; ignored. Leave point after POS once done.
22768 (let ((limit (copy-marker (min end pos))))
22769 (while (< (point) limit)
22770 (unless (org-looking-at-p "[ \t]*$") (org-indent-line-to ind))
22771 (forward-line))
22772 (set-marker limit nil))))
22773 (end (copy-marker end)))
22774 (while (< (point) end)
22775 (if (or (org-looking-at-p " \r\t\n") (org-at-heading-p)) (forward-line)
22776 (let* ((element (org-element-at-point))
22777 (type (org-element-type element))
22778 (element-end (copy-marker (org-element-property :end element)))
22779 (ind (org--get-expected-indentation element nil)))
22780 (cond
22781 ((or (memq type '(paragraph table table-row))
22782 (not (or (org-element-property :contents-begin element)
22783 (memq type
22784 '(example-block export-block src-block)))))
22785 ;; Elements here are indented as a single block. Also
22786 ;; align node properties.
22787 (when (eq type 'node-property)
22788 (org--align-node-property)
22789 (beginning-of-line))
22790 (funcall indent-to ind element-end))
22792 ;; Elements in this category consist of three parts:
22793 ;; before the contents, the contents, and after the
22794 ;; contents. The contents are treated specially,
22795 ;; according to the element type, or not indented at
22796 ;; all. Other parts are indented as a single block.
22797 (let* ((post (copy-marker
22798 (org-element-property :post-affiliated element)))
22799 (cbeg
22800 (copy-marker
22801 (cond
22802 ((not (org-element-property :contents-begin element))
22803 ;; Fake contents for source blocks.
22804 (org-with-wide-buffer
22805 (goto-char post)
22806 (forward-line)
22807 (point)))
22808 ((memq type '(footnote-definition item plain-list))
22809 ;; Contents in these elements could start on
22810 ;; the same line as the beginning of the
22811 ;; element. Make sure we start indenting
22812 ;; from the second line.
22813 (org-with-wide-buffer
22814 (goto-char post)
22815 (end-of-line)
22816 (skip-chars-forward " \r\t\n")
22817 (if (eobp) (point) (line-beginning-position))))
22818 (t (org-element-property :contents-begin element)))))
22819 (cend (copy-marker
22820 (or (org-element-property :contents-end element)
22821 ;; Fake contents for source blocks.
22822 (org-with-wide-buffer
22823 (goto-char element-end)
22824 (skip-chars-backward " \r\t\n")
22825 (line-beginning-position))))))
22826 ;; Do not change items indentation individually as it
22827 ;; might break the list as a whole. On the other
22828 ;; hand, when at a plain list, indent it as a whole.
22829 (cond ((eq type 'plain-list)
22830 (let ((offset (- ind (org-get-indentation))))
22831 (unless (zerop offset)
22832 (indent-rigidly (org-element-property :begin element)
22833 (org-element-property :end element)
22834 offset))
22835 (goto-char cbeg)))
22836 ((eq type 'item) (goto-char cbeg))
22837 (t (funcall indent-to ind cbeg)))
22838 (when (< (point) end)
22839 (case type
22840 ((example-block export-block verse-block))
22841 (src-block
22842 ;; In a source block, indent source code
22843 ;; according to language major mode, but only if
22844 ;; `org-src-tab-acts-natively' is non-nil.
22845 (when (and (< (point) end) org-src-tab-acts-natively)
22846 (ignore-errors
22847 (let (org-src-strip-leading-and-trailing-blank-lines
22848 ;; Region boundaries in edit buffer.
22849 (start (1+ (- (point) cbeg)))
22850 (end (- (min cend end) cbeg)))
22851 (org-babel-do-in-edit-buffer
22852 (indent-region start end))))))
22853 (t (org-indent-region (point) (min cend end))))
22854 (goto-char (min cend end))
22855 (when (< (point) end) (funcall indent-to ind element-end)))
22856 (set-marker post nil)
22857 (set-marker cbeg nil)
22858 (set-marker cend nil))))
22859 (set-marker element-end nil))))
22860 (set-marker end nil))))
22862 (defun org-indent-drawer ()
22863 "Indent the drawer at point."
22864 (interactive)
22865 (unless (save-excursion
22866 (beginning-of-line)
22867 (org-looking-at-p org-drawer-regexp))
22868 (user-error "Not at a drawer"))
22869 (let ((element (org-element-at-point)))
22870 (unless (memq (org-element-type element) '(drawer property-drawer))
22871 (user-error "Not at a drawer"))
22872 (org-with-wide-buffer
22873 (org-indent-region (org-element-property :begin element)
22874 (org-element-property :end element))))
22875 (message "Drawer at point indented"))
22877 (defun org-indent-block ()
22878 "Indent the block at point."
22879 (interactive)
22880 (unless (save-excursion
22881 (beginning-of-line)
22882 (let ((case-fold-search t))
22883 (org-looking-at-p "[ \t]*#\\+\\(begin\\|end\\)_")))
22884 (user-error "Not at a block"))
22885 (let ((element (org-element-at-point)))
22886 (unless (memq (org-element-type element)
22887 '(comment-block center-block dynamic-block example-block
22888 export-block quote-block special-block
22889 src-block verse-block))
22890 (user-error "Not at a block"))
22891 (org-with-wide-buffer
22892 (org-indent-region (org-element-property :begin element)
22893 (org-element-property :end element))))
22894 (message "Block at point indented"))
22897 ;;; Filling
22899 ;; We use our own fill-paragraph and auto-fill functions.
22901 ;; `org-fill-paragraph' relies on adaptive filling and context
22902 ;; checking. Appropriate `fill-prefix' is computed with
22903 ;; `org-adaptive-fill-function'.
22905 ;; `org-auto-fill-function' takes care of auto-filling. It calls
22906 ;; `do-auto-fill' only on valid areas with `fill-prefix' shadowed with
22907 ;; `org-adaptive-fill-function' value. Internally,
22908 ;; `org-comment-line-break-function' breaks the line.
22910 ;; `org-setup-filling' installs filling and auto-filling related
22911 ;; variables during `org-mode' initialization.
22913 (defvar org-element-paragraph-separate) ; org-element.el
22914 (defun org-setup-filling ()
22915 (require 'org-element)
22916 ;; Prevent auto-fill from inserting unwanted new items.
22917 (when (boundp 'fill-nobreak-predicate)
22918 (org-set-local
22919 'fill-nobreak-predicate
22920 (org-uniquify
22921 (append fill-nobreak-predicate
22922 '(org-fill-line-break-nobreak-p
22923 org-fill-paragraph-with-timestamp-nobreak-p)))))
22924 (let ((paragraph-ending (substring org-element-paragraph-separate 1)))
22925 (org-set-local 'paragraph-start paragraph-ending)
22926 (org-set-local 'paragraph-separate paragraph-ending))
22927 (org-set-local 'fill-paragraph-function 'org-fill-paragraph)
22928 (org-set-local 'auto-fill-inhibit-regexp nil)
22929 (org-set-local 'adaptive-fill-function 'org-adaptive-fill-function)
22930 (org-set-local 'normal-auto-fill-function 'org-auto-fill-function)
22931 (org-set-local 'comment-line-break-function 'org-comment-line-break-function))
22933 (defun org-fill-line-break-nobreak-p ()
22934 "Non-nil when a new line at point would create an Org line break."
22935 (save-excursion
22936 (skip-chars-backward "[ \t]")
22937 (skip-chars-backward "\\\\")
22938 (looking-at "\\\\\\\\\\($\\|[^\\\\]\\)")))
22940 (defun org-fill-paragraph-with-timestamp-nobreak-p ()
22941 "Non-nil when a new line at point would split a timestamp."
22942 (and (org-at-timestamp-p t)
22943 (not (looking-at org-ts-regexp-both))))
22945 (declare-function message-in-body-p "message" ())
22946 (defvar orgtbl-line-start-regexp) ; From org-table.el
22947 (defun org-adaptive-fill-function ()
22948 "Compute a fill prefix for the current line.
22949 Return fill prefix, as a string, or nil if current line isn't
22950 meant to be filled. For convenience, if `adaptive-fill-regexp'
22951 matches in paragraphs or comments, use it."
22952 (catch 'exit
22953 (when (derived-mode-p 'message-mode)
22954 (save-excursion
22955 (beginning-of-line)
22956 (cond ((or (not (message-in-body-p))
22957 (looking-at orgtbl-line-start-regexp))
22958 (throw 'exit nil))
22959 ((looking-at message-cite-prefix-regexp)
22960 (throw 'exit (match-string-no-properties 0)))
22961 ((looking-at org-outline-regexp)
22962 (throw 'exit (make-string (length (match-string 0)) ?\s))))))
22963 (org-with-wide-buffer
22964 (unless (org-at-heading-p)
22965 (let* ((p (line-beginning-position))
22966 (element (save-excursion
22967 (beginning-of-line)
22968 (org-element-at-point)))
22969 (type (org-element-type element))
22970 (post-affiliated (org-element-property :post-affiliated element)))
22971 (unless (< p post-affiliated)
22972 (case type
22973 (comment
22974 (save-excursion
22975 (beginning-of-line)
22976 (looking-at "[ \t]*")
22977 (concat (match-string 0) "# ")))
22978 (footnote-definition "")
22979 ((item plain-list)
22980 (make-string (org-list-item-body-column post-affiliated) ?\s))
22981 (paragraph
22982 ;; Fill prefix is usually the same as the current line,
22983 ;; unless the paragraph is at the beginning of an item.
22984 (let ((parent (org-element-property :parent element)))
22985 (save-excursion
22986 (beginning-of-line)
22987 (cond ((eq (org-element-type parent) 'item)
22988 (make-string (org-list-item-body-column
22989 (org-element-property :begin parent))
22990 ?\s))
22991 ((and adaptive-fill-regexp
22992 ;; Locally disable
22993 ;; `adaptive-fill-function' to let
22994 ;; `fill-context-prefix' handle
22995 ;; `adaptive-fill-regexp' variable.
22996 (let (adaptive-fill-function)
22997 (fill-context-prefix
22998 post-affiliated
22999 (org-element-property :end element)))))
23000 ((looking-at "[ \t]+") (match-string 0))
23001 (t "")))))
23002 (comment-block
23003 ;; Only fill contents if P is within block boundaries.
23004 (let* ((cbeg (save-excursion (goto-char post-affiliated)
23005 (forward-line)
23006 (point)))
23007 (cend (save-excursion
23008 (goto-char (org-element-property :end element))
23009 (skip-chars-backward " \r\t\n")
23010 (line-beginning-position))))
23011 (when (and (>= p cbeg) (< p cend))
23012 (if (save-excursion (beginning-of-line) (looking-at "[ \t]+"))
23013 (match-string 0)
23014 "")))))))))))
23016 (declare-function message-goto-body "message" ())
23017 (defvar message-cite-prefix-regexp) ; From message.el
23018 (defun org-fill-paragraph (&optional justify)
23019 "Fill element at point, when applicable.
23021 This function only applies to comment blocks, comments, example
23022 blocks and paragraphs. Also, as a special case, re-align table
23023 when point is at one.
23025 If JUSTIFY is non-nil (interactively, with prefix argument),
23026 justify as well. If `sentence-end-double-space' is non-nil, then
23027 period followed by one space does not end a sentence, so don't
23028 break a line there. The variable `fill-column' controls the
23029 width for filling.
23031 For convenience, when point is at a plain list, an item or
23032 a footnote definition, try to fill the first paragraph within."
23033 (interactive)
23034 (if (and (derived-mode-p 'message-mode)
23035 (or (not (message-in-body-p))
23036 (save-excursion (move-beginning-of-line 1)
23037 (looking-at message-cite-prefix-regexp))))
23038 ;; First ensure filling is correct in message-mode.
23039 (let ((fill-paragraph-function
23040 (cadadr (assoc 'fill-paragraph-function org-fb-vars)))
23041 (fill-prefix (cadadr (assoc 'fill-prefix org-fb-vars)))
23042 (paragraph-start (cadadr (assoc 'paragraph-start org-fb-vars)))
23043 (paragraph-separate
23044 (cadadr (assoc 'paragraph-separate org-fb-vars))))
23045 (fill-paragraph nil))
23046 (with-syntax-table org-mode-transpose-word-syntax-table
23047 ;; Move to end of line in order to get the first paragraph
23048 ;; within a plain list or a footnote definition.
23049 (let ((element (save-excursion
23050 (end-of-line)
23051 (or (ignore-errors (org-element-at-point))
23052 (user-error "An element cannot be parsed line %d"
23053 (line-number-at-pos (point)))))))
23054 ;; First check if point is in a blank line at the beginning of
23055 ;; the buffer. In that case, ignore filling.
23056 (case (org-element-type element)
23057 ;; Use major mode filling function is src blocks.
23058 (src-block (org-babel-do-key-sequence-in-edit-buffer (kbd "M-q")))
23059 ;; Align Org tables, leave table.el tables as-is.
23060 (table-row (org-table-align) t)
23061 (table
23062 (when (eq (org-element-property :type element) 'org)
23063 (save-excursion
23064 (goto-char (org-element-property :post-affiliated element))
23065 (org-table-align)))
23067 (paragraph
23068 ;; Paragraphs may contain `line-break' type objects.
23069 (let ((beg (max (point-min)
23070 (org-element-property :contents-begin element)))
23071 (end (min (point-max)
23072 (org-element-property :contents-end element))))
23073 ;; Do nothing if point is at an affiliated keyword.
23074 (if (< (line-end-position) beg) t
23075 (when (derived-mode-p 'message-mode)
23076 ;; In `message-mode', do not fill following citation
23077 ;; in current paragraph nor text before message body.
23078 (let ((body-start (save-excursion (message-goto-body))))
23079 (when body-start (setq beg (max body-start beg))))
23080 (when (save-excursion
23081 (re-search-forward
23082 (concat "^" message-cite-prefix-regexp) end t))
23083 (setq end (match-beginning 0))))
23084 ;; Fill paragraph, taking line breaks into account.
23085 (save-excursion
23086 (goto-char beg)
23087 (let ((cuts (list beg)))
23088 (while (re-search-forward "\\\\\\\\[ \t]*\n" end t)
23089 (when (eq 'line-break
23090 (org-element-type
23091 (save-excursion (backward-char)
23092 (org-element-context))))
23093 (push (point) cuts)))
23094 (dolist (c (delq end cuts))
23095 (fill-region-as-paragraph c end justify)
23096 (setq end c))))
23097 t)))
23098 ;; Contents of `comment-block' type elements should be
23099 ;; filled as plain text, but only if point is within block
23100 ;; markers.
23101 (comment-block
23102 (let* ((case-fold-search t)
23103 (beg (save-excursion
23104 (goto-char (org-element-property :begin element))
23105 (re-search-forward "^[ \t]*#\\+begin_comment" nil t)
23106 (forward-line)
23107 (point)))
23108 (end (save-excursion
23109 (goto-char (org-element-property :end element))
23110 (re-search-backward "^[ \t]*#\\+end_comment" nil t)
23111 (line-beginning-position))))
23112 (if (or (< (point) beg) (> (point) end)) t
23113 (fill-region-as-paragraph
23114 (save-excursion (end-of-line)
23115 (re-search-backward "^[ \t]*$" beg 'move)
23116 (line-beginning-position))
23117 (save-excursion (beginning-of-line)
23118 (re-search-forward "^[ \t]*$" end 'move)
23119 (line-beginning-position))
23120 justify))))
23121 ;; Fill comments.
23122 (comment
23123 (let ((begin (org-element-property :post-affiliated element))
23124 (end (org-element-property :end element)))
23125 (when (and (>= (point) begin) (<= (point) end))
23126 (let ((begin (save-excursion
23127 (end-of-line)
23128 (if (re-search-backward "^[ \t]*#[ \t]*$" begin t)
23129 (progn (forward-line) (point))
23130 begin)))
23131 (end (save-excursion
23132 (end-of-line)
23133 (if (re-search-forward "^[ \t]*#[ \t]*$" end 'move)
23134 (1- (line-beginning-position))
23135 (skip-chars-backward " \r\t\n")
23136 (line-end-position)))))
23137 ;; Do not fill comments when at a blank line.
23138 (when (> end begin)
23139 (let ((fill-prefix
23140 (save-excursion
23141 (beginning-of-line)
23142 (looking-at "[ \t]*#")
23143 (let ((comment-prefix (match-string 0)))
23144 (goto-char (match-end 0))
23145 (if (looking-at adaptive-fill-regexp)
23146 (concat comment-prefix (match-string 0))
23147 (concat comment-prefix " "))))))
23148 (save-excursion
23149 (fill-region-as-paragraph begin end justify))))))
23151 ;; Ignore every other element.
23152 (otherwise t))))))
23154 (defun org-auto-fill-function ()
23155 "Auto-fill function."
23156 ;; Check if auto-filling is meaningful.
23157 (let ((fc (current-fill-column)))
23158 (when (and fc (> (current-column) fc))
23159 (let* ((fill-prefix (org-adaptive-fill-function))
23160 ;; Enforce empty fill prefix, if required. Otherwise, it
23161 ;; will be computed again.
23162 (adaptive-fill-mode (not (equal fill-prefix ""))))
23163 (when fill-prefix (do-auto-fill))))))
23165 (defun org-comment-line-break-function (&optional soft)
23166 "Break line at point and indent, continuing comment if within one.
23167 The inserted newline is marked hard if variable
23168 `use-hard-newlines' is true, unless optional argument SOFT is
23169 non-nil."
23170 (if soft (insert-and-inherit ?\n) (newline 1))
23171 (save-excursion (forward-char -1) (delete-horizontal-space))
23172 (delete-horizontal-space)
23173 (indent-to-left-margin)
23174 (insert-before-markers-and-inherit fill-prefix))
23177 ;;; Fixed Width Areas
23179 (defun org-toggle-fixed-width ()
23180 "Toggle fixed-width markup.
23182 Add or remove fixed-width markup on current line, whenever it
23183 makes sense. Return an error otherwise.
23185 If a region is active and if it contains only fixed-width areas
23186 or blank lines, remove all fixed-width markup in it. If the
23187 region contains anything else, convert all non-fixed-width lines
23188 to fixed-width ones.
23190 Blank lines at the end of the region are ignored unless the
23191 region only contains such lines."
23192 (interactive)
23193 (if (not (org-region-active-p))
23194 ;; No region:
23196 ;; Remove fixed width marker only in a fixed-with element.
23198 ;; Add fixed width maker in paragraphs, in blank lines after
23199 ;; elements or at the beginning of a headline or an inlinetask,
23200 ;; and before any one-line elements (e.g., a clock).
23201 (progn
23202 (beginning-of-line)
23203 (let* ((element (org-element-at-point))
23204 (type (org-element-type element)))
23205 (cond
23206 ((and (eq type 'fixed-width)
23207 (looking-at "[ \t]*\\(:\\(?: \\|$\\)\\)"))
23208 (replace-match
23209 "" nil nil nil (if (= (line-end-position) (match-end 0)) 0 1)))
23210 ((and (memq type '(babel-call clock comment diary-sexp headline
23211 horizontal-rule keyword paragraph
23212 planning))
23213 (<= (org-element-property :post-affiliated element) (point)))
23214 (skip-chars-forward " \t")
23215 (insert ": "))
23216 ((and (org-looking-at-p "[ \t]*$")
23217 (or (eq type 'inlinetask)
23218 (save-excursion
23219 (skip-chars-forward " \r\t\n")
23220 (<= (org-element-property :end element) (point)))))
23221 (delete-region (point) (line-end-position))
23222 (org-indent-line)
23223 (insert ": "))
23224 (t (user-error "Cannot insert a fixed-width line here")))))
23225 ;; Region active.
23226 (let* ((begin (save-excursion
23227 (goto-char (region-beginning))
23228 (line-beginning-position)))
23229 (end (copy-marker
23230 (save-excursion
23231 (goto-char (region-end))
23232 (unless (eolp) (beginning-of-line))
23233 (if (save-excursion (re-search-backward "\\S-" begin t))
23234 (progn (skip-chars-backward " \r\t\n") (point))
23235 (point)))))
23236 (all-fixed-width-p
23237 (catch 'not-all-p
23238 (save-excursion
23239 (goto-char begin)
23240 (skip-chars-forward " \r\t\n")
23241 (when (eobp) (throw 'not-all-p nil))
23242 (while (< (point) end)
23243 (let ((element (org-element-at-point)))
23244 (if (eq (org-element-type element) 'fixed-width)
23245 (goto-char (org-element-property :end element))
23246 (throw 'not-all-p nil))))
23247 t))))
23248 (if all-fixed-width-p
23249 (save-excursion
23250 (goto-char begin)
23251 (while (< (point) end)
23252 (when (looking-at "[ \t]*\\(:\\(?: \\|$\\)\\)")
23253 (replace-match
23254 "" nil nil nil
23255 (if (= (line-end-position) (match-end 0)) 0 1)))
23256 (forward-line)))
23257 (let ((min-ind (point-max)))
23258 ;; Find minimum indentation across all lines.
23259 (save-excursion
23260 (goto-char begin)
23261 (if (not (save-excursion (re-search-forward "\\S-" end t)))
23262 (setq min-ind 0)
23263 (catch 'zerop
23264 (while (< (point) end)
23265 (unless (org-looking-at-p "[ \t]*$")
23266 (let ((ind (org-get-indentation)))
23267 (setq min-ind (min min-ind ind))
23268 (when (zerop ind) (throw 'zerop t))))
23269 (forward-line)))))
23270 ;; Loop over all lines and add fixed-width markup everywhere
23271 ;; but in fixed-width lines.
23272 (save-excursion
23273 (goto-char begin)
23274 (while (< (point) end)
23275 (cond
23276 ((org-at-heading-p)
23277 (insert ": ")
23278 (forward-line)
23279 (while (and (< (point) end) (org-looking-at-p "[ \t]*$"))
23280 (insert ":")
23281 (forward-line)))
23282 ((org-looking-at-p "[ \t]*:\\( \\|$\\)")
23283 (let* ((element (org-element-at-point))
23284 (element-end (org-element-property :end element)))
23285 (if (eq (org-element-type element) 'fixed-width)
23286 (progn (goto-char element-end)
23287 (skip-chars-backward " \r\t\n")
23288 (forward-line))
23289 (let ((limit (min end element-end)))
23290 (while (< (point) limit)
23291 (org-move-to-column min-ind t)
23292 (insert ": ")
23293 (forward-line))))))
23295 (org-move-to-column min-ind t)
23296 (insert ": ")
23297 (forward-line)))))))
23298 (set-marker end nil))))
23301 ;;; Comments
23303 ;; Org comments syntax is quite complex. It requires the entire line
23304 ;; to be just a comment. Also, even with the right syntax at the
23305 ;; beginning of line, some some elements (i.e. verse-block or
23306 ;; example-block) don't accept comments. Usual Emacs comment commands
23307 ;; cannot cope with those requirements. Therefore, Org replaces them.
23309 ;; Org still relies on `comment-dwim', but cannot trust
23310 ;; `comment-only-p'. So, `comment-region-function' and
23311 ;; `uncomment-region-function' both point
23312 ;; to`org-comment-or-uncomment-region'. Eventually,
23313 ;; `org-insert-comment' takes care of insertion of comments at the
23314 ;; beginning of line.
23316 ;; `org-setup-comments-handling' install comments related variables
23317 ;; during `org-mode' initialization.
23319 (defun org-setup-comments-handling ()
23320 (interactive)
23321 (org-set-local 'comment-use-syntax nil)
23322 (org-set-local 'comment-start "# ")
23323 (org-set-local 'comment-start-skip "^\\s-*#\\(?: \\|$\\)")
23324 (org-set-local 'comment-insert-comment-function 'org-insert-comment)
23325 (org-set-local 'comment-region-function 'org-comment-or-uncomment-region)
23326 (org-set-local 'uncomment-region-function 'org-comment-or-uncomment-region))
23328 (defun org-insert-comment ()
23329 "Insert an empty comment above current line.
23330 If the line is empty, insert comment at its beginning. When
23331 point is within a source block, comment according to the related
23332 major mode."
23333 (if (let ((element (org-element-at-point)))
23334 (and (eq (org-element-type element) 'src-block)
23335 (< (save-excursion
23336 (goto-char (org-element-property :post-affiliated element))
23337 (line-end-position))
23338 (point))
23339 (> (save-excursion
23340 (goto-char (org-element-property :end element))
23341 (skip-chars-backward " \r\t\n")
23342 (line-beginning-position))
23343 (point))))
23344 (org-babel-do-in-edit-buffer (call-interactively 'comment-dwim))
23345 (beginning-of-line)
23346 (if (looking-at "\\s-*$") (delete-region (point) (point-at-eol))
23347 (open-line 1))
23348 (org-indent-line)
23349 (insert "# ")))
23351 (defvar comment-empty-lines) ; From newcomment.el.
23352 (defun org-comment-or-uncomment-region (beg end &rest ignore)
23353 "Comment or uncomment each non-blank line in the region.
23354 Uncomment each non-blank line between BEG and END if it only
23355 contains commented lines. Otherwise, comment them. If region is
23356 strictly within a source block, use appropriate comment syntax."
23357 (if (let ((element (org-element-at-point)))
23358 (and (eq (org-element-type element) 'src-block)
23359 (< (save-excursion
23360 (goto-char (org-element-property :post-affiliated element))
23361 (line-end-position))
23362 beg)
23363 (>= (save-excursion
23364 (goto-char (org-element-property :end element))
23365 (skip-chars-backward " \r\t\n")
23366 (line-beginning-position))
23367 end)))
23368 (org-babel-do-in-edit-buffer (call-interactively 'comment-dwim))
23369 (save-restriction
23370 ;; Restrict region
23371 (narrow-to-region (save-excursion (goto-char beg)
23372 (skip-chars-forward " \r\t\n" end)
23373 (line-beginning-position))
23374 (save-excursion (goto-char end)
23375 (skip-chars-backward " \r\t\n" beg)
23376 (line-end-position)))
23377 (let ((uncommentp
23378 ;; UNCOMMENTP is non-nil when every non blank line between
23379 ;; BEG and END is a comment.
23380 (save-excursion
23381 (goto-char (point-min))
23382 (while (and (not (eobp))
23383 (let ((element (org-element-at-point)))
23384 (and (eq (org-element-type element) 'comment)
23385 (goto-char (min (point-max)
23386 (org-element-property
23387 :end element)))))))
23388 (eobp))))
23389 (if uncommentp
23390 ;; Only blank lines and comments in region: uncomment it.
23391 (save-excursion
23392 (goto-char (point-min))
23393 (while (not (eobp))
23394 (when (looking-at "[ \t]*\\(#\\(?: \\|$\\)\\)")
23395 (replace-match "" nil nil nil 1))
23396 (forward-line)))
23397 ;; Comment each line in region.
23398 (let ((min-indent (point-max)))
23399 ;; First find the minimum indentation across all lines.
23400 (save-excursion
23401 (goto-char (point-min))
23402 (while (and (not (eobp)) (not (zerop min-indent)))
23403 (unless (looking-at "[ \t]*$")
23404 (setq min-indent (min min-indent (current-indentation))))
23405 (forward-line)))
23406 ;; Then loop over all lines.
23407 (save-excursion
23408 (goto-char (point-min))
23409 (while (not (eobp))
23410 (unless (and (not comment-empty-lines) (looking-at "[ \t]*$"))
23411 ;; Don't get fooled by invisible text (e.g. link path)
23412 ;; when moving to column MIN-INDENT.
23413 (let ((buffer-invisibility-spec nil))
23414 (org-move-to-column min-indent t))
23415 (insert comment-start))
23416 (forward-line)))))))))
23418 (defun org-comment-dwim (arg)
23419 "Call `comment-dwim' within a source edit buffer if needed."
23420 (interactive "*P")
23421 (if (org-in-src-block-p)
23422 (org-babel-do-in-edit-buffer (call-interactively 'comment-dwim))
23423 (call-interactively 'comment-dwim)))
23426 ;;; Planning
23428 ;; This section contains tools to operate on timestamp objects, as
23429 ;; returned by, e.g. `org-element-context'.
23431 (defun org-timestamp-has-time-p (timestamp)
23432 "Non-nil when TIMESTAMP has a time specified."
23433 (org-element-property :hour-start timestamp))
23435 (defun org-timestamp-format (timestamp format &optional end utc)
23436 "Format a TIMESTAMP element into a string.
23438 FORMAT is a format specifier to be passed to
23439 `format-time-string'.
23441 When optional argument END is non-nil, use end of date-range or
23442 time-range, if possible.
23444 When optional argument UTC is non-nil, time will be expressed as
23445 Universal Time."
23446 (format-time-string
23447 format
23448 (apply 'encode-time
23449 (cons 0
23450 (mapcar
23451 (lambda (prop) (or (org-element-property prop timestamp) 0))
23452 (if end '(:minute-end :hour-end :day-end :month-end :year-end)
23453 '(:minute-start :hour-start :day-start :month-start
23454 :year-start)))))
23455 utc))
23457 (defun org-timestamp-split-range (timestamp &optional end)
23458 "Extract a timestamp object from a date or time range.
23460 TIMESTAMP is a timestamp object. END, when non-nil, means extract
23461 the end of the range. Otherwise, extract its start.
23463 Return a new timestamp object sharing the same parent as
23464 TIMESTAMP."
23465 (let ((type (org-element-property :type timestamp)))
23466 (if (memq type '(active inactive diary)) timestamp
23467 (let ((split-ts (list 'timestamp (copy-sequence (nth 1 timestamp)))))
23468 ;; Set new type.
23469 (org-element-put-property
23470 split-ts :type (if (eq type 'active-range) 'active 'inactive))
23471 ;; Copy start properties over end properties if END is
23472 ;; non-nil. Otherwise, copy end properties over `start' ones.
23473 (let ((p-alist '((:minute-start . :minute-end)
23474 (:hour-start . :hour-end)
23475 (:day-start . :day-end)
23476 (:month-start . :month-end)
23477 (:year-start . :year-end))))
23478 (dolist (p-cell p-alist)
23479 (org-element-put-property
23480 split-ts
23481 (funcall (if end 'car 'cdr) p-cell)
23482 (org-element-property
23483 (funcall (if end 'cdr 'car) p-cell) split-ts)))
23484 ;; Eventually refresh `:raw-value'.
23485 (org-element-put-property split-ts :raw-value nil)
23486 (org-element-put-property
23487 split-ts :raw-value (org-element-interpret-data split-ts)))))))
23489 (defun org-timestamp-translate (timestamp &optional boundary)
23490 "Apply `org-translate-time' on a TIMESTAMP object.
23491 When optional argument BOUNDARY is non-nil, it is either the
23492 symbol `start' or `end'. In this case, only translate the
23493 starting or ending part of TIMESTAMP if it is a date or time
23494 range. Otherwise, translate both parts."
23495 (if (and (not boundary)
23496 (memq (org-element-property :type timestamp)
23497 '(active-range inactive-range)))
23498 (concat
23499 (org-translate-time
23500 (org-element-property :raw-value
23501 (org-timestamp-split-range timestamp)))
23502 "--"
23503 (org-translate-time
23504 (org-element-property :raw-value
23505 (org-timestamp-split-range timestamp t))))
23506 (org-translate-time
23507 (org-element-property
23508 :raw-value
23509 (if (not boundary) timestamp
23510 (org-timestamp-split-range timestamp (eq boundary 'end)))))))
23514 ;;; Other stuff.
23516 (defun org-reftex-citation ()
23517 "Use reftex-citation to insert a citation into the buffer.
23518 This looks for a line like
23520 #+BIBLIOGRAPHY: foo plain option:-d
23522 and derives from it that foo.bib is the bibliography file relevant
23523 for this document. It then installs the necessary environment for RefTeX
23524 to work in this buffer and calls `reftex-citation' to insert a citation
23525 into the buffer.
23527 Export of such citations to both LaTeX and HTML is handled by the contributed
23528 package ox-bibtex by Taru Karttunen."
23529 (interactive)
23530 (let ((reftex-docstruct-symbol 'rds)
23531 (reftex-cite-format "\\cite{%l}")
23532 rds bib)
23533 (save-excursion
23534 (save-restriction
23535 (widen)
23536 (let ((case-fold-search t)
23537 (re "^[ \t]*#\\+BIBLIOGRAPHY:[ \t]+\\([^ \t\n]+\\)"))
23538 (if (not (save-excursion
23539 (or (re-search-forward re nil t)
23540 (re-search-backward re nil t))))
23541 (user-error "No bibliography defined in file")
23542 (setq bib (concat (match-string 1) ".bib")
23543 rds (list (list 'bib bib)))))))
23544 (call-interactively 'reftex-citation)))
23546 ;;;; Functions extending outline functionality
23548 (defun org-beginning-of-line (&optional arg)
23549 "Go to the beginning of the current line. If that is invisible, continue
23550 to a visible line beginning. This makes the function of C-a more intuitive.
23551 If this is a headline, and `org-special-ctrl-a/e' is set, ignore tags on the
23552 first attempt, and only move to after the tags when the cursor is already
23553 beyond the end of the headline."
23554 (interactive "P")
23555 (let ((pos (point))
23556 (special (if (consp org-special-ctrl-a/e)
23557 (car org-special-ctrl-a/e)
23558 org-special-ctrl-a/e))
23559 deactivate-mark refpos)
23560 (if (org-bound-and-true-p visual-line-mode)
23561 (beginning-of-visual-line 1)
23562 (beginning-of-line 1))
23563 (if (and arg (fboundp 'move-beginning-of-line))
23564 (call-interactively 'move-beginning-of-line)
23565 (if (bobp)
23567 (backward-char 1)
23568 (if (org-truely-invisible-p)
23569 (while (and (not (bobp)) (org-truely-invisible-p))
23570 (backward-char 1)
23571 (beginning-of-line 1))
23572 (forward-char 1))))
23573 (when special
23574 (cond
23575 ((and (looking-at org-complex-heading-regexp)
23576 (= (char-after (match-end 1)) ?\ ))
23577 (setq refpos (min (1+ (or (match-end 3) (match-end 2) (match-end 1)))
23578 (point-at-eol)))
23579 (goto-char
23580 (if (eq special t)
23581 (cond ((> pos refpos) refpos)
23582 ((= pos (point)) refpos)
23583 (t (point)))
23584 (cond ((> pos (point)) (point))
23585 ((not (eq last-command this-command)) (point))
23586 (t refpos)))))
23587 ((org-at-item-p)
23588 ;; Being at an item and not looking at an the item means point
23589 ;; was previously moved to beginning of a visual line, which
23590 ;; doesn't contain the item. Therefore, do nothing special,
23591 ;; just stay here.
23592 (when (looking-at org-list-full-item-re)
23593 ;; Set special position at first white space character after
23594 ;; bullet, and check-box, if any.
23595 (let ((after-bullet
23596 (let ((box (match-end 3)))
23597 (if (not box) (match-end 1)
23598 (let ((after (char-after box)))
23599 (if (and after (= after ? )) (1+ box) box))))))
23600 ;; Special case: Move point to special position when
23601 ;; currently after it or at beginning of line.
23602 (if (eq special t)
23603 (when (or (> pos after-bullet) (= (point) pos))
23604 (goto-char after-bullet))
23605 ;; Reversed case: Move point to special position when
23606 ;; point was already at beginning of line and command is
23607 ;; repeated.
23608 (when (and (= (point) pos) (eq last-command this-command))
23609 (goto-char after-bullet))))))))
23610 (org-no-warnings
23611 (and (featurep 'xemacs) (setq zmacs-region-stays t))))
23612 (setq disable-point-adjustment
23613 (or (not (invisible-p (point)))
23614 (not (invisible-p (max (point-min) (1- (point))))))))
23616 (defun org-end-of-line (&optional arg)
23617 "Go to the end of the line.
23618 If this is a headline, and `org-special-ctrl-a/e' is set, ignore
23619 tags on the first attempt, and only move to after the tags when
23620 the cursor is already beyond the end of the headline."
23621 (interactive "P")
23622 (let ((special (if (consp org-special-ctrl-a/e) (cdr org-special-ctrl-a/e)
23623 org-special-ctrl-a/e))
23624 (move-fun (cond ((org-bound-and-true-p visual-line-mode)
23625 'end-of-visual-line)
23626 ((fboundp 'move-end-of-line) 'move-end-of-line)
23627 (t 'end-of-line)))
23628 deactivate-mark)
23629 (if (or (not special) arg) (call-interactively move-fun)
23630 (let* ((element (save-excursion (beginning-of-line)
23631 (org-element-at-point)))
23632 (type (org-element-type element)))
23633 (cond
23634 ((memq type '(headline inlinetask))
23635 (let ((pos (point)))
23636 (beginning-of-line 1)
23637 (if (looking-at (org-re ".*?\\(?:\\([ \t]*\\)\\(:[[:alnum:]_@#%:]+:\\)?[ \t]*\\)?$"))
23638 (if (eq special t)
23639 (if (or (< pos (match-beginning 1)) (= pos (match-end 0)))
23640 (goto-char (match-beginning 1))
23641 (goto-char (match-end 0)))
23642 (if (or (< pos (match-end 0))
23643 (not (eq this-command last-command)))
23644 (goto-char (match-end 0))
23645 (goto-char (match-beginning 1))))
23646 (call-interactively move-fun))))
23647 ((outline-invisible-p (line-end-position))
23648 ;; If element is hidden, `move-end-of-line' would put point
23649 ;; after it. Use `end-of-line' to stay on current line.
23650 (call-interactively 'end-of-line))
23651 (t (call-interactively move-fun)))))
23652 (org-no-warnings (and (featurep 'xemacs) (setq zmacs-region-stays t))))
23653 (setq disable-point-adjustment
23654 (or (not (invisible-p (point)))
23655 (not (invisible-p (max (point-min) (1- (point))))))))
23657 (define-key org-mode-map "\C-a" 'org-beginning-of-line)
23658 (define-key org-mode-map "\C-e" 'org-end-of-line)
23660 (defun org-backward-sentence (&optional arg)
23661 "Go to beginning of sentence, or beginning of table field.
23662 This will call `backward-sentence' or `org-table-beginning-of-field',
23663 depending on context."
23664 (interactive "P")
23665 (cond
23666 ((org-at-table-p) (call-interactively 'org-table-beginning-of-field))
23667 (t (call-interactively 'backward-sentence))))
23669 (defun org-forward-sentence (&optional arg)
23670 "Go to end of sentence, or end of table field.
23671 This will call `forward-sentence' or `org-table-end-of-field',
23672 depending on context."
23673 (interactive "P")
23674 (cond
23675 ((org-at-table-p) (call-interactively 'org-table-end-of-field))
23676 (t (call-interactively 'forward-sentence))))
23678 (define-key org-mode-map "\M-a" 'org-backward-sentence)
23679 (define-key org-mode-map "\M-e" 'org-forward-sentence)
23681 (defun org-kill-line (&optional arg)
23682 "Kill line, to tags or end of line."
23683 (interactive "P")
23684 (cond
23685 ((or (not org-special-ctrl-k)
23686 (bolp)
23687 (not (org-at-heading-p)))
23688 (if (and (get-char-property (min (point-max) (point-at-eol)) 'invisible)
23689 org-ctrl-k-protect-subtree)
23690 (if (or (eq org-ctrl-k-protect-subtree 'error)
23691 (not (y-or-n-p "Kill hidden subtree along with headline? ")))
23692 (user-error "C-k aborted as it would kill a hidden subtree")))
23693 (call-interactively
23694 (if (org-bound-and-true-p visual-line-mode) 'kill-visual-line 'kill-line)))
23695 ((looking-at (org-re ".*?\\S-\\([ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)[ \t]*$"))
23696 (kill-region (point) (match-beginning 1))
23697 (org-set-tags nil t))
23698 (t (kill-region (point) (point-at-eol)))))
23700 (define-key org-mode-map "\C-k" 'org-kill-line)
23702 (defun org-yank (&optional arg)
23703 "Yank. If the kill is a subtree, treat it specially.
23704 This command will look at the current kill and check if is a single
23705 subtree, or a series of subtrees[1]. If it passes the test, and if the
23706 cursor is at the beginning of a line or after the stars of a currently
23707 empty headline, then the yank is handled specially. How exactly depends
23708 on the value of the following variables, both set by default.
23710 `org-yank-folded-subtrees'
23711 When set, the subtree(s) will be folded after insertion, but only
23712 if doing so would now swallow text after the yanked text.
23714 `org-yank-adjusted-subtrees'
23715 When set, the subtree will be promoted or demoted in order to
23716 fit into the local outline tree structure, which means that the
23717 level will be adjusted so that it becomes the smaller one of the
23718 two *visible* surrounding headings.
23720 Any prefix to this command will cause `yank' to be called directly with
23721 no special treatment. In particular, a simple \\[universal-argument] prefix \
23722 will just
23723 plainly yank the text as it is.
23725 \[1] The test checks if the first non-white line is a heading
23726 and if there are no other headings with fewer stars."
23727 (interactive "P")
23728 (org-yank-generic 'yank arg))
23730 (defun org-yank-generic (command arg)
23731 "Perform some yank-like command.
23733 This function implements the behavior described in the `org-yank'
23734 documentation. However, it has been generalized to work for any
23735 interactive command with similar behavior."
23737 ;; pretend to be command COMMAND
23738 (setq this-command command)
23740 (if arg
23741 (call-interactively command)
23743 (let ((subtreep ; is kill a subtree, and the yank position appropriate?
23744 (and (org-kill-is-subtree-p)
23745 (or (bolp)
23746 (and (looking-at "[ \t]*$")
23747 (string-match
23748 "\\`\\*+\\'"
23749 (buffer-substring (point-at-bol) (point)))))))
23750 swallowp)
23751 (cond
23752 ((and subtreep org-yank-folded-subtrees)
23753 (let ((beg (point))
23754 end)
23755 (if (and subtreep org-yank-adjusted-subtrees)
23756 (org-paste-subtree nil nil 'for-yank)
23757 (call-interactively command))
23759 (setq end (point))
23760 (goto-char beg)
23761 (when (and (bolp) subtreep
23762 (not (setq swallowp
23763 (org-yank-folding-would-swallow-text beg end))))
23764 (org-with-limited-levels
23765 (or (looking-at org-outline-regexp)
23766 (re-search-forward org-outline-regexp-bol end t))
23767 (while (and (< (point) end) (looking-at org-outline-regexp))
23768 (hide-subtree)
23769 (org-cycle-show-empty-lines 'folded)
23770 (condition-case nil
23771 (outline-forward-same-level 1)
23772 (error (goto-char end))))))
23773 (when swallowp
23774 (message
23775 "Inserted text not folded because that would swallow text"))
23777 (goto-char end)
23778 (skip-chars-forward " \t\n\r")
23779 (beginning-of-line 1)
23780 (push-mark beg 'nomsg)))
23781 ((and subtreep org-yank-adjusted-subtrees)
23782 (let ((beg (point-at-bol)))
23783 (org-paste-subtree nil nil 'for-yank)
23784 (push-mark beg 'nomsg)))
23786 (call-interactively command))))))
23788 (defun org-yank-folding-would-swallow-text (beg end)
23789 "Would hide-subtree at BEG swallow any text after END?"
23790 (let (level)
23791 (org-with-limited-levels
23792 (save-excursion
23793 (goto-char beg)
23794 (when (or (looking-at org-outline-regexp)
23795 (re-search-forward org-outline-regexp-bol end t))
23796 (setq level (org-outline-level)))
23797 (goto-char end)
23798 (skip-chars-forward " \t\r\n\v\f")
23799 (if (or (eobp)
23800 (and (bolp) (looking-at org-outline-regexp)
23801 (<= (org-outline-level) level)))
23802 nil ; Nothing would be swallowed
23803 t))))) ; something would swallow
23805 (define-key org-mode-map "\C-y" 'org-yank)
23807 (defun org-truely-invisible-p ()
23808 "Check if point is at a character currently not visible.
23809 This version does not only check the character property, but also
23810 `visible-mode'."
23811 ;; Early versions of noutline don't have `outline-invisible-p'.
23812 (if (org-bound-and-true-p visible-mode)
23814 (outline-invisible-p)))
23816 (defun org-invisible-p2 ()
23817 "Check if point is at a character currently not visible."
23818 (save-excursion
23819 (if (and (eolp) (not (bobp))) (backward-char 1))
23820 ;; Early versions of noutline don't have `outline-invisible-p'.
23821 (outline-invisible-p)))
23823 (defun org-back-to-heading (&optional invisible-ok)
23824 "Call `outline-back-to-heading', but provide a better error message."
23825 (condition-case nil
23826 (outline-back-to-heading invisible-ok)
23827 (error (error "Before first headline at position %d in buffer %s"
23828 (point) (current-buffer)))))
23830 (defun org-before-first-heading-p ()
23831 "Before first heading?"
23832 (save-excursion
23833 (end-of-line)
23834 (null (re-search-backward org-outline-regexp-bol nil t))))
23836 (defun org-at-heading-p (&optional ignored)
23837 (outline-on-heading-p t))
23838 ;; Compatibility alias with Org versions < 7.8.03
23839 (defalias 'org-on-heading-p 'org-at-heading-p)
23841 (defun org-in-commented-heading-p (&optional no-inheritance)
23842 "Non-nil if point is under a commented heading.
23843 This function also checks ancestors of the current headline,
23844 unless optional argument NO-INHERITANCE is non-nil."
23845 (cond
23846 ((org-before-first-heading-p) nil)
23847 ((let ((headline (nth 4 (org-heading-components))))
23848 (and headline
23849 (let ((case-fold-search nil))
23850 (org-string-match-p (concat "^" org-comment-string "\\(?: \\|$\\)")
23851 headline)))))
23852 (no-inheritance nil)
23854 (save-excursion (and (org-up-heading-safe) (org-in-commented-heading-p))))))
23856 (defun org-at-comment-p nil
23857 "Is cursor in a commented line?"
23858 (save-excursion
23859 (save-match-data
23860 (beginning-of-line)
23861 (looking-at "^[ \t]*# "))))
23863 (defun org-at-drawer-p nil
23864 "Is cursor at a drawer keyword?"
23865 (save-excursion
23866 (move-beginning-of-line 1)
23867 (looking-at org-drawer-regexp)))
23869 (defun org-at-block-p nil
23870 "Is cursor at a block keyword?"
23871 (save-excursion
23872 (move-beginning-of-line 1)
23873 (looking-at org-block-regexp)))
23875 (defun org-point-at-end-of-empty-headline ()
23876 "If point is at the end of an empty headline, return t, else nil.
23877 If the heading only contains a TODO keyword, it is still still considered
23878 empty."
23879 (and (looking-at "[ \t]*$")
23880 (when org-todo-line-regexp
23881 (save-excursion
23882 (beginning-of-line 1)
23883 (let ((case-fold-search nil))
23884 (looking-at org-todo-line-regexp)
23885 (string= (match-string 3) ""))))))
23887 (defun org-at-heading-or-item-p ()
23888 (or (org-at-heading-p) (org-at-item-p)))
23890 (defun org-at-target-p ()
23891 (or (org-in-regexp org-radio-target-regexp)
23892 (org-in-regexp org-target-regexp)))
23893 ;; Compatibility alias with Org versions < 7.8.03
23894 (defalias 'org-on-target-p 'org-at-target-p)
23896 (defun org-up-heading-all (arg)
23897 "Move to the heading line of which the present line is a subheading.
23898 This function considers both visible and invisible heading lines.
23899 With argument, move up ARG levels."
23900 (if (fboundp 'outline-up-heading-all)
23901 (outline-up-heading-all arg) ; emacs 21 version of outline.el
23902 (outline-up-heading arg t))) ; emacs 22 version of outline.el
23904 (defun org-up-heading-safe ()
23905 "Move to the heading line of which the present line is a subheading.
23906 This version will not throw an error. It will return the level of the
23907 headline found, or nil if no higher level is found.
23909 Also, this function will be a lot faster than `outline-up-heading',
23910 because it relies on stars being the outline starters. This can really
23911 make a significant difference in outlines with very many siblings."
23912 (when (ignore-errors (org-back-to-heading t))
23913 (let ((level-up (1- (funcall outline-level))))
23914 (and (> level-up 0)
23915 (re-search-backward (format "^\\*\\{1,%d\\} " level-up) nil t)
23916 (funcall outline-level)))))
23918 (defun org-first-sibling-p ()
23919 "Is this heading the first child of its parents?"
23920 (interactive)
23921 (let ((re org-outline-regexp-bol)
23922 level l)
23923 (unless (org-at-heading-p t)
23924 (user-error "Not at a heading"))
23925 (setq level (funcall outline-level))
23926 (save-excursion
23927 (if (not (re-search-backward re nil t))
23929 (setq l (funcall outline-level))
23930 (< l level)))))
23932 (defun org-goto-sibling (&optional previous)
23933 "Goto the next sibling, even if it is invisible.
23934 When PREVIOUS is set, go to the previous sibling instead. Returns t
23935 when a sibling was found. When none is found, return nil and don't
23936 move point."
23937 (let ((fun (if previous 're-search-backward 're-search-forward))
23938 (pos (point))
23939 (re org-outline-regexp-bol)
23940 level l)
23941 (when (ignore-errors (org-back-to-heading t))
23942 (setq level (funcall outline-level))
23943 (catch 'exit
23944 (or previous (forward-char 1))
23945 (while (funcall fun re nil t)
23946 (setq l (funcall outline-level))
23947 (when (< l level) (goto-char pos) (throw 'exit nil))
23948 (when (= l level) (goto-char (match-beginning 0)) (throw 'exit t)))
23949 (goto-char pos)
23950 nil))))
23952 (defun org-show-siblings ()
23953 "Show all siblings of the current headline."
23954 (save-excursion
23955 (while (org-goto-sibling) (org-flag-heading nil)))
23956 (save-excursion
23957 (while (org-goto-sibling 'previous)
23958 (org-flag-heading nil))))
23960 (defun org-goto-first-child ()
23961 "Goto the first child, even if it is invisible.
23962 Return t when a child was found. Otherwise don't move point and
23963 return nil."
23964 (let (level (pos (point)) (re org-outline-regexp-bol))
23965 (when (ignore-errors (org-back-to-heading t))
23966 (setq level (outline-level))
23967 (forward-char 1)
23968 (if (and (re-search-forward re nil t) (> (outline-level) level))
23969 (progn (goto-char (match-beginning 0)) t)
23970 (goto-char pos) nil))))
23972 (defun org-show-hidden-entry ()
23973 "Show an entry where even the heading is hidden."
23974 (save-excursion
23975 (org-show-entry)))
23977 (defun org-flag-heading (flag &optional entry)
23978 "Flag the current heading. FLAG non-nil means make invisible.
23979 When ENTRY is non-nil, show the entire entry."
23980 (save-excursion
23981 (org-back-to-heading t)
23982 ;; Check if we should show the entire entry
23983 (if entry
23984 (progn
23985 (org-show-entry)
23986 (save-excursion
23987 (and (outline-next-heading)
23988 (org-flag-heading nil))))
23989 (outline-flag-region (max (point-min) (1- (point)))
23990 (save-excursion (outline-end-of-heading) (point))
23991 flag))))
23993 (defun org-get-next-sibling ()
23994 "Move to next heading of the same level, and return point.
23995 If there is no such heading, return nil.
23996 This is like outline-next-sibling, but invisible headings are ok."
23997 (let ((level (funcall outline-level)))
23998 (outline-next-heading)
23999 (while (and (not (eobp)) (> (funcall outline-level) level))
24000 (outline-next-heading))
24001 (if (or (eobp) (< (funcall outline-level) level))
24003 (point))))
24005 (defun org-get-last-sibling ()
24006 "Move to previous heading of the same level, and return point.
24007 If there is no such heading, return nil."
24008 (let ((opoint (point))
24009 (level (funcall outline-level)))
24010 (outline-previous-heading)
24011 (when (and (/= (point) opoint) (outline-on-heading-p t))
24012 (while (and (> (funcall outline-level) level)
24013 (not (bobp)))
24014 (outline-previous-heading))
24015 (if (< (funcall outline-level) level)
24017 (point)))))
24019 (defun org-end-of-subtree (&optional invisible-ok to-heading)
24020 "Goto to the end of a subtree."
24021 ;; This contains an exact copy of the original function, but it uses
24022 ;; `org-back-to-heading', to make it work also in invisible
24023 ;; trees. And is uses an invisible-ok argument.
24024 ;; Under Emacs this is not needed, but the old outline.el needs this fix.
24025 ;; Furthermore, when used inside Org, finding the end of a large subtree
24026 ;; with many children and grandchildren etc, this can be much faster
24027 ;; than the outline version.
24028 (org-back-to-heading invisible-ok)
24029 (let ((first t)
24030 (level (funcall outline-level)))
24031 (if (and (derived-mode-p 'org-mode) (< level 1000))
24032 ;; A true heading (not a plain list item), in Org-mode
24033 ;; This means we can easily find the end by looking
24034 ;; only for the right number of stars. Using a regexp to do
24035 ;; this is so much faster than using a Lisp loop.
24036 (let ((re (concat "^\\*\\{1," (int-to-string level) "\\} ")))
24037 (forward-char 1)
24038 (and (re-search-forward re nil 'move) (beginning-of-line 1)))
24039 ;; something else, do it the slow way
24040 (while (and (not (eobp))
24041 (or first (> (funcall outline-level) level)))
24042 (setq first nil)
24043 (outline-next-heading)))
24044 (unless to-heading
24045 (if (memq (preceding-char) '(?\n ?\^M))
24046 (progn
24047 ;; Go to end of line before heading
24048 (forward-char -1)
24049 (if (memq (preceding-char) '(?\n ?\^M))
24050 ;; leave blank line before heading
24051 (forward-char -1))))))
24052 (point))
24054 (defun org-end-of-meta-data-and-drawers ()
24055 "Jump to the first text after meta data and drawers in the current entry.
24056 This will move over empty lines, lines with planning time stamps,
24057 clocking lines, and drawers."
24058 (org-back-to-heading t)
24059 (let ((end (save-excursion (outline-next-heading) (point)))
24060 (re (concat "\\(" org-drawer-regexp "\\)"
24061 "\\|" "[ \t]*" org-keyword-time-regexp)))
24062 (forward-line 1)
24063 (while (re-search-forward re end t)
24064 (if (not (match-end 1))
24065 ;; empty or planning line
24066 (forward-line 1)
24067 ;; a drawer, find the end
24068 (re-search-forward "^[ \t]*:END:" end 'move)
24069 (forward-line 1)))
24070 (and (re-search-forward "[^\n]" nil t) (backward-char 1))
24071 (point)))
24073 (defun org-forward-heading-same-level (arg &optional invisible-ok)
24074 "Move forward to the ARG'th subheading at same level as this one.
24075 Stop at the first and last subheadings of a superior heading.
24076 Normally this only looks at visible headings, but when INVISIBLE-OK is
24077 non-nil it will also look at invisible ones."
24078 (interactive "p")
24079 (if (not (ignore-errors (org-back-to-heading invisible-ok)))
24080 (if (and arg (< arg 0))
24081 (goto-char (point-min))
24082 (outline-next-heading))
24083 (org-at-heading-p)
24084 (let ((level (- (match-end 0) (match-beginning 0) 1))
24085 (f (if (and arg (< arg 0))
24086 're-search-backward
24087 're-search-forward))
24088 (count (if arg (abs arg) 1))
24089 (result (point)))
24090 (while (and (prog1 (> count 0)
24091 (forward-char (if (and arg (< arg 0)) -1 1)))
24092 (funcall f org-outline-regexp-bol nil 'move))
24093 (let ((l (- (match-end 0) (match-beginning 0) 1)))
24094 (cond ((< l level) (setq count 0))
24095 ((and (= l level)
24096 (or invisible-ok
24097 (progn
24098 (goto-char (line-beginning-position))
24099 (not (outline-invisible-p)))))
24100 (setq count (1- count))
24101 (when (eq l level)
24102 (setq result (point)))))))
24103 (goto-char result))
24104 (beginning-of-line 1)))
24106 (defun org-backward-heading-same-level (arg &optional invisible-ok)
24107 "Move backward to the ARG'th subheading at same level as this one.
24108 Stop at the first and last subheadings of a superior heading."
24109 (interactive "p")
24110 (org-forward-heading-same-level (if arg (- arg) -1) invisible-ok))
24112 (defun org-next-block (arg &optional backward block-regexp)
24113 "Jump to the next block.
24114 With a prefix argument ARG, jump forward ARG many source blocks.
24115 When BACKWARD is non-nil, jump to the previous block.
24116 When BLOCK-REGEXP is non-nil, use this regexp to find blocks."
24117 (interactive "p")
24118 (let ((re (or block-regexp org-block-regexp))
24119 (re-search-fn (or (and backward 're-search-backward)
24120 're-search-forward)))
24121 (if (looking-at re) (forward-char 1))
24122 (condition-case nil
24123 (funcall re-search-fn re nil nil arg)
24124 (error (user-error "No %s code blocks"
24125 (if backward "previous" "further" ))))
24126 (goto-char (match-beginning 0)) (org-show-context)))
24128 (defun org-previous-block (arg &optional block-regexp)
24129 "Jump to the previous block.
24130 With a prefix argument ARG, jump backward ARG many source blocks.
24131 When BLOCK-REGEXP is non-nil, use this regexp to find blocks."
24132 (interactive "p")
24133 (org-next-block arg t block-regexp))
24135 (defun org-forward-paragraph ()
24136 "Move forward to beginning of next paragraph or equivalent.
24138 The function moves point to the beginning of the next visible
24139 structural element, which can be a paragraph, a table, a list
24140 item, etc. It also provides some special moves for convenience:
24142 - On an affiliated keyword, jump to the beginning of the
24143 relative element.
24144 - On an item or a footnote definition, move to the second
24145 element inside, if any.
24146 - On a table or a property drawer, jump after it.
24147 - On a verse or source block, stop after blank lines."
24148 (interactive)
24149 (when (eobp) (user-error "Cannot move further down"))
24150 (let* ((deactivate-mark nil)
24151 (element (org-element-at-point))
24152 (type (org-element-type element))
24153 (post-affiliated (org-element-property :post-affiliated element))
24154 (contents-begin (org-element-property :contents-begin element))
24155 (contents-end (org-element-property :contents-end element))
24156 (end (let ((end (org-element-property :end element)) (parent element))
24157 (while (and (setq parent (org-element-property :parent parent))
24158 (= (org-element-property :contents-end parent) end))
24159 (setq end (org-element-property :end parent)))
24160 end)))
24161 (cond ((not element)
24162 (skip-chars-forward " \r\t\n")
24163 (or (eobp) (beginning-of-line)))
24164 ;; On affiliated keywords, move to element's beginning.
24165 ((< (point) post-affiliated)
24166 (goto-char post-affiliated))
24167 ;; At a table row, move to the end of the table. Similarly,
24168 ;; at a node property, move to the end of the property
24169 ;; drawer.
24170 ((memq type '(node-property table-row))
24171 (goto-char (org-element-property
24172 :end (org-element-property :parent element))))
24173 ((memq type '(property-drawer table)) (goto-char end))
24174 ;; Consider blank lines as separators in verse and source
24175 ;; blocks to ease editing.
24176 ((memq type '(src-block verse-block))
24177 (when (eq type 'src-block)
24178 (setq contents-end
24179 (save-excursion (goto-char end)
24180 (skip-chars-backward " \r\t\n")
24181 (line-beginning-position))))
24182 (beginning-of-line)
24183 (when (looking-at "[ \t]*$") (skip-chars-forward " \r\t\n"))
24184 (if (not (re-search-forward "^[ \t]*$" contents-end t))
24185 (goto-char end)
24186 (skip-chars-forward " \r\t\n")
24187 (if (= (point) contents-end) (goto-char end)
24188 (beginning-of-line))))
24189 ;; With no contents, just skip element.
24190 ((not contents-begin) (goto-char end))
24191 ;; If contents are invisible, skip the element altogether.
24192 ((outline-invisible-p (line-end-position))
24193 (case type
24194 (headline
24195 (org-with-limited-levels (outline-next-visible-heading 1)))
24196 ;; At a plain list, make sure we move to the next item
24197 ;; instead of skipping the whole list.
24198 (plain-list (forward-char)
24199 (org-forward-paragraph))
24200 (otherwise (goto-char end))))
24201 ((>= (point) contents-end) (goto-char end))
24202 ((>= (point) contents-begin)
24203 ;; This can only happen on paragraphs and plain lists.
24204 (case type
24205 (paragraph (goto-char end))
24206 ;; At a plain list, try to move to second element in
24207 ;; first item, if possible.
24208 (plain-list (end-of-line)
24209 (org-forward-paragraph))))
24210 ;; When contents start on the middle of a line (e.g. in
24211 ;; items and footnote definitions), try to reach first
24212 ;; element starting after current line.
24213 ((> (line-end-position) contents-begin)
24214 (end-of-line)
24215 (org-forward-paragraph))
24216 (t (goto-char contents-begin)))))
24218 (defun org-backward-paragraph ()
24219 "Move backward to start of previous paragraph or equivalent.
24221 The function moves point to the beginning of the current
24222 structural element, which can be a paragraph, a table, a list
24223 item, etc., or to the beginning of the previous visible one if
24224 point is already there. It also provides some special moves for
24225 convenience:
24227 - On an affiliated keyword, jump to the first one.
24228 - On a table or a property drawer, move to its beginning.
24229 - On a verse or source block, stop before blank lines."
24230 (interactive)
24231 (when (bobp) (user-error "Cannot move further up"))
24232 (let* ((deactivate-mark nil)
24233 (element (org-element-at-point))
24234 (type (org-element-type element))
24235 (contents-begin (org-element-property :contents-begin element))
24236 (contents-end (org-element-property :contents-end element))
24237 (post-affiliated (org-element-property :post-affiliated element))
24238 (begin (org-element-property :begin element)))
24239 (cond
24240 ((not element) (goto-char (point-min)))
24241 ((= (point) begin)
24242 (backward-char)
24243 (org-backward-paragraph))
24244 ((<= (point) post-affiliated) (goto-char begin))
24245 ((memq type '(node-property table-row))
24246 (goto-char (org-element-property
24247 :post-affiliated (org-element-property :parent element))))
24248 ((memq type '(property-drawer table)) (goto-char begin))
24249 ((memq type '(src-block verse-block))
24250 (when (eq type 'src-block)
24251 (setq contents-begin
24252 (save-excursion (goto-char begin) (forward-line) (point))))
24253 (if (= (point) contents-begin) (goto-char post-affiliated)
24254 ;; Inside a verse block, see blank lines as paragraph
24255 ;; separators.
24256 (let ((origin (point)))
24257 (skip-chars-backward " \r\t\n" contents-begin)
24258 (when (re-search-backward "^[ \t]*$" contents-begin 'move)
24259 (skip-chars-forward " \r\t\n" origin)
24260 (if (= (point) origin) (goto-char contents-begin)
24261 (beginning-of-line))))))
24262 ((not contents-begin) (goto-char (or post-affiliated begin)))
24263 ((eq type 'paragraph)
24264 (goto-char contents-begin)
24265 ;; When at first paragraph in an item or a footnote definition,
24266 ;; move directly to beginning of line.
24267 (let ((parent-contents
24268 (org-element-property
24269 :contents-begin (org-element-property :parent element))))
24270 (when (and parent-contents (= parent-contents contents-begin))
24271 (beginning-of-line))))
24272 ;; At the end of a greater element, move to the beginning of the
24273 ;; last element within.
24274 ((>= (point) contents-end)
24275 (goto-char (1- contents-end))
24276 (org-backward-paragraph))
24277 (t (goto-char (or post-affiliated begin))))
24278 ;; Ensure we never leave point invisible.
24279 (when (outline-invisible-p (point)) (beginning-of-visual-line))))
24281 (defun org-forward-element ()
24282 "Move forward by one element.
24283 Move to the next element at the same level, when possible."
24284 (interactive)
24285 (cond ((eobp) (user-error "Cannot move further down"))
24286 ((org-with-limited-levels (org-at-heading-p))
24287 (let ((origin (point)))
24288 (goto-char (org-end-of-subtree nil t))
24289 (unless (org-with-limited-levels (org-at-heading-p))
24290 (goto-char origin)
24291 (user-error "Cannot move further down"))))
24293 (let* ((elem (org-element-at-point))
24294 (end (org-element-property :end elem))
24295 (parent (org-element-property :parent elem)))
24296 (cond ((and parent (= (org-element-property :contents-end parent) end))
24297 (goto-char (org-element-property :end parent)))
24298 ((integer-or-marker-p end) (goto-char end))
24299 (t (message "No element at point")))))))
24301 (defun org-backward-element ()
24302 "Move backward by one element.
24303 Move to the previous element at the same level, when possible."
24304 (interactive)
24305 (cond ((bobp) (user-error "Cannot move further up"))
24306 ((org-with-limited-levels (org-at-heading-p))
24307 ;; At a headline, move to the previous one, if any, or stay
24308 ;; here.
24309 (let ((origin (point)))
24310 (org-with-limited-levels (org-backward-heading-same-level 1))
24311 ;; When current headline has no sibling above, move to its
24312 ;; parent.
24313 (when (= (point) origin)
24314 (or (org-with-limited-levels (org-up-heading-safe))
24315 (progn (goto-char origin)
24316 (user-error "Cannot move further up"))))))
24318 (let* ((elem (org-element-at-point))
24319 (beg (org-element-property :begin elem)))
24320 (cond
24321 ;; Move to beginning of current element if point isn't
24322 ;; there already.
24323 ((null beg) (message "No element at point"))
24324 ((/= (point) beg) (goto-char beg))
24325 (t (goto-char beg)
24326 (skip-chars-backward " \r\t\n")
24327 (unless (bobp)
24328 (let ((prev (org-element-at-point)))
24329 (goto-char (org-element-property :begin prev))
24330 (while (and (setq prev (org-element-property :parent prev))
24331 (<= (org-element-property :end prev) beg))
24332 (goto-char (org-element-property :begin prev)))))))))))
24334 (defun org-up-element ()
24335 "Move to upper element."
24336 (interactive)
24337 (if (org-with-limited-levels (org-at-heading-p))
24338 (unless (org-up-heading-safe) (user-error "No surrounding element"))
24339 (let* ((elem (org-element-at-point))
24340 (parent (org-element-property :parent elem)))
24341 (if parent (goto-char (org-element-property :begin parent))
24342 (if (org-with-limited-levels (org-before-first-heading-p))
24343 (user-error "No surrounding element")
24344 (org-with-limited-levels (org-back-to-heading)))))))
24346 (defvar org-element-greater-elements)
24347 (defun org-down-element ()
24348 "Move to inner element."
24349 (interactive)
24350 (let ((element (org-element-at-point)))
24351 (cond
24352 ((memq (org-element-type element) '(plain-list table))
24353 (goto-char (org-element-property :contents-begin element))
24354 (forward-char))
24355 ((memq (org-element-type element) org-element-greater-elements)
24356 ;; If contents are hidden, first disclose them.
24357 (when (outline-invisible-p (line-end-position)) (org-cycle))
24358 (goto-char (or (org-element-property :contents-begin element)
24359 (user-error "No content for this element"))))
24360 (t (user-error "No inner element")))))
24362 (defun org-drag-element-backward ()
24363 "Move backward element at point."
24364 (interactive)
24365 (if (org-with-limited-levels (org-at-heading-p)) (org-move-subtree-up)
24366 (let* ((elem (org-element-at-point))
24367 (prev-elem
24368 (save-excursion
24369 (goto-char (org-element-property :begin elem))
24370 (skip-chars-backward " \r\t\n")
24371 (unless (bobp)
24372 (let* ((beg (org-element-property :begin elem))
24373 (prev (org-element-at-point))
24374 (up prev))
24375 (while (and (setq up (org-element-property :parent up))
24376 (<= (org-element-property :end up) beg))
24377 (setq prev up))
24378 prev)))))
24379 ;; Error out if no previous element or previous element is
24380 ;; a parent of the current one.
24381 (if (or (not prev-elem) (org-element-nested-p elem prev-elem))
24382 (user-error "Cannot drag element backward")
24383 (let ((pos (point)))
24384 (org-element-swap-A-B prev-elem elem)
24385 (goto-char (+ (org-element-property :begin prev-elem)
24386 (- pos (org-element-property :begin elem)))))))))
24388 (defun org-drag-element-forward ()
24389 "Move forward element at point."
24390 (interactive)
24391 (let* ((pos (point))
24392 (elem (org-element-at-point)))
24393 (when (= (point-max) (org-element-property :end elem))
24394 (user-error "Cannot drag element forward"))
24395 (goto-char (org-element-property :end elem))
24396 (let ((next-elem (org-element-at-point)))
24397 (when (or (org-element-nested-p elem next-elem)
24398 (and (eq (org-element-type next-elem) 'headline)
24399 (not (eq (org-element-type elem) 'headline))))
24400 (goto-char pos)
24401 (user-error "Cannot drag element forward"))
24402 ;; Compute new position of point: it's shifted by NEXT-ELEM
24403 ;; body's length (without final blanks) and by the length of
24404 ;; blanks between ELEM and NEXT-ELEM.
24405 (let ((size-next (- (save-excursion
24406 (goto-char (org-element-property :end next-elem))
24407 (skip-chars-backward " \r\t\n")
24408 (forward-line)
24409 ;; Small correction if buffer doesn't end
24410 ;; with a newline character.
24411 (if (and (eolp) (not (bolp))) (1+ (point)) (point)))
24412 (org-element-property :begin next-elem)))
24413 (size-blank (- (org-element-property :end elem)
24414 (save-excursion
24415 (goto-char (org-element-property :end elem))
24416 (skip-chars-backward " \r\t\n")
24417 (forward-line)
24418 (point)))))
24419 (org-element-swap-A-B elem next-elem)
24420 (goto-char (+ pos size-next size-blank))))))
24422 (defun org-drag-line-forward (arg)
24423 "Drag the line at point ARG lines forward."
24424 (interactive "p")
24425 (dotimes (n (abs arg))
24426 (let ((c (current-column)))
24427 (if (< 0 arg)
24428 (progn
24429 (beginning-of-line 2)
24430 (transpose-lines 1)
24431 (beginning-of-line 0))
24432 (transpose-lines 1)
24433 (beginning-of-line -1))
24434 (org-move-to-column c))))
24436 (defun org-drag-line-backward (arg)
24437 "Drag the line at point ARG lines backward."
24438 (interactive "p")
24439 (org-drag-line-forward (- arg)))
24441 (defun org-mark-element ()
24442 "Put point at beginning of this element, mark at end.
24444 Interactively, if this command is repeated or (in Transient Mark
24445 mode) if the mark is active, it marks the next element after the
24446 ones already marked."
24447 (interactive)
24448 (let (deactivate-mark)
24449 (if (and (org-called-interactively-p 'any)
24450 (or (and (eq last-command this-command) (mark t))
24451 (and transient-mark-mode mark-active)))
24452 (set-mark
24453 (save-excursion
24454 (goto-char (mark))
24455 (goto-char (org-element-property :end (org-element-at-point)))))
24456 (let ((element (org-element-at-point)))
24457 (end-of-line)
24458 (push-mark (org-element-property :end element) t t)
24459 (goto-char (org-element-property :begin element))))))
24461 (defun org-narrow-to-element ()
24462 "Narrow buffer to current element."
24463 (interactive)
24464 (let ((elem (org-element-at-point)))
24465 (cond
24466 ((eq (car elem) 'headline)
24467 (narrow-to-region
24468 (org-element-property :begin elem)
24469 (org-element-property :end elem)))
24470 ((memq (car elem) org-element-greater-elements)
24471 (narrow-to-region
24472 (org-element-property :contents-begin elem)
24473 (org-element-property :contents-end elem)))
24475 (narrow-to-region
24476 (org-element-property :begin elem)
24477 (org-element-property :end elem))))))
24479 (defun org-transpose-element ()
24480 "Transpose current and previous elements, keeping blank lines between.
24481 Point is moved after both elements."
24482 (interactive)
24483 (org-skip-whitespace)
24484 (let ((end (org-element-property :end (org-element-at-point))))
24485 (org-drag-element-backward)
24486 (goto-char end)))
24488 (defun org-unindent-buffer ()
24489 "Un-indent the visible part of the buffer.
24490 Relative indentation (between items, inside blocks, etc.) isn't
24491 modified."
24492 (interactive)
24493 (unless (eq major-mode 'org-mode)
24494 (user-error "Cannot un-indent a buffer not in Org mode"))
24495 (let* ((parse-tree (org-element-parse-buffer 'greater-element))
24496 unindent-tree ; For byte-compiler.
24497 (unindent-tree
24498 (function
24499 (lambda (contents)
24500 (mapc
24501 (lambda (element)
24502 (if (memq (org-element-type element) '(headline section))
24503 (funcall unindent-tree (org-element-contents element))
24504 (save-excursion
24505 (save-restriction
24506 (narrow-to-region
24507 (org-element-property :begin element)
24508 (org-element-property :end element))
24509 (org-do-remove-indentation)))))
24510 (reverse contents))))))
24511 (funcall unindent-tree (org-element-contents parse-tree))))
24513 (defun org-show-subtree ()
24514 "Show everything after this heading at deeper levels."
24515 (interactive)
24516 (outline-flag-region
24517 (point)
24518 (save-excursion
24519 (org-end-of-subtree t t))
24520 nil))
24522 (defun org-show-entry ()
24523 "Show the body directly following this heading.
24524 Show the heading too, if it is currently invisible."
24525 (interactive)
24526 (save-excursion
24527 (ignore-errors
24528 (org-back-to-heading t)
24529 (outline-flag-region
24530 (max (point-min) (1- (point)))
24531 (save-excursion
24532 (if (re-search-forward
24533 (concat "[\r\n]\\(" org-outline-regexp "\\)") nil t)
24534 (match-beginning 1)
24535 (point-max)))
24536 nil)
24537 (org-cycle-hide-drawers 'children))))
24539 (defun org-make-options-regexp (kwds &optional extra)
24540 "Make a regular expression for keyword lines.
24541 KWDS is a list of keywords, as strings. Optional argument EXTRA,
24542 when non-nil, is a regexp matching keywords names."
24543 (concat "^[ \t]*#\\+\\("
24544 (regexp-opt kwds)
24545 (and extra (concat (and kwds "\\|") extra))
24546 "\\):[ \t]*\\(.*\\)"))
24548 ;; Make isearch reveal the necessary context
24549 (defun org-isearch-end ()
24550 "Reveal context after isearch exits."
24551 (when isearch-success ; only if search was successful
24552 (if (featurep 'xemacs)
24553 ;; Under XEmacs, the hook is run in the correct place,
24554 ;; we directly show the context.
24555 (org-show-context 'isearch)
24556 ;; In Emacs the hook runs *before* restoring the overlays.
24557 ;; So we have to use a one-time post-command-hook to do this.
24558 ;; (Emacs 22 has a special variable, see function `org-mode')
24559 (unless (and (boundp 'isearch-mode-end-hook-quit)
24560 isearch-mode-end-hook-quit)
24561 ;; Only when the isearch was not quitted.
24562 (org-add-hook 'post-command-hook 'org-isearch-post-command
24563 'append 'local)))))
24565 (defun org-isearch-post-command ()
24566 "Remove self from hook, and show context."
24567 (remove-hook 'post-command-hook 'org-isearch-post-command 'local)
24568 (org-show-context 'isearch))
24571 ;;;; Integration with and fixes for other packages
24573 ;;; Imenu support
24575 (defvar org-imenu-markers nil
24576 "All markers currently used by Imenu.")
24577 (make-variable-buffer-local 'org-imenu-markers)
24579 (defun org-imenu-new-marker (&optional pos)
24580 "Return a new marker for use by Imenu, and remember the marker."
24581 (let ((m (make-marker)))
24582 (move-marker m (or pos (point)))
24583 (push m org-imenu-markers)
24586 (defun org-imenu-get-tree ()
24587 "Produce the index for Imenu."
24588 (mapc (lambda (x) (move-marker x nil)) org-imenu-markers)
24589 (setq org-imenu-markers nil)
24590 (let* ((n org-imenu-depth)
24591 (re (concat "^" (org-get-limited-outline-regexp)))
24592 (subs (make-vector (1+ n) nil))
24593 (last-level 0)
24594 m level head0 head)
24595 (save-excursion
24596 (save-restriction
24597 (widen)
24598 (goto-char (point-max))
24599 (while (re-search-backward re nil t)
24600 (setq level (org-reduced-level (funcall outline-level)))
24601 (when (and (<= level n)
24602 (looking-at org-complex-heading-regexp)
24603 (setq head0 (org-match-string-no-properties 4)))
24604 (setq head (org-link-display-format head0)
24605 m (org-imenu-new-marker))
24606 (org-add-props head nil 'org-imenu-marker m 'org-imenu t)
24607 (if (>= level last-level)
24608 (push (cons head m) (aref subs level))
24609 (push (cons head (aref subs (1+ level))) (aref subs level))
24610 (loop for i from (1+ level) to n do (aset subs i nil)))
24611 (setq last-level level)))))
24612 (aref subs 1)))
24614 (eval-after-load "imenu"
24615 '(progn
24616 (add-hook 'imenu-after-jump-hook
24617 (lambda ()
24618 (if (derived-mode-p 'org-mode)
24619 (org-show-context 'org-goto))))))
24621 (defun org-link-display-format (link)
24622 "Replace a link with its the description.
24623 If there is no description, use the link target."
24624 (save-match-data
24625 (if (string-match org-bracket-link-analytic-regexp link)
24626 (replace-match (if (match-end 5)
24627 (match-string 5 link)
24628 (concat (match-string 1 link)
24629 (match-string 3 link)))
24630 nil t link)
24631 link)))
24633 (defun org-toggle-link-display ()
24634 "Toggle the literal or descriptive display of links."
24635 (interactive)
24636 (if org-descriptive-links
24637 (progn (org-remove-from-invisibility-spec '(org-link))
24638 (org-restart-font-lock)
24639 (setq org-descriptive-links nil))
24640 (progn (add-to-invisibility-spec '(org-link))
24641 (org-restart-font-lock)
24642 (setq org-descriptive-links t))))
24644 ;; Speedbar support
24646 (defvar org-speedbar-restriction-lock-overlay (make-overlay 1 1)
24647 "Overlay marking the agenda restriction line in speedbar.")
24648 (overlay-put org-speedbar-restriction-lock-overlay
24649 'face 'org-agenda-restriction-lock)
24650 (overlay-put org-speedbar-restriction-lock-overlay
24651 'help-echo "Agendas are currently limited to this item.")
24652 (org-detach-overlay org-speedbar-restriction-lock-overlay)
24654 (defun org-speedbar-set-agenda-restriction ()
24655 "Restrict future agenda commands to the location at point in speedbar.
24656 To get rid of the restriction, use \\[org-agenda-remove-restriction-lock]."
24657 (interactive)
24658 (require 'org-agenda)
24659 (let (p m tp np dir txt)
24660 (cond
24661 ((setq p (text-property-any (point-at-bol) (point-at-eol)
24662 'org-imenu t))
24663 (setq m (get-text-property p 'org-imenu-marker))
24664 (with-current-buffer (marker-buffer m)
24665 (goto-char m)
24666 (org-agenda-set-restriction-lock 'subtree)))
24667 ((setq p (text-property-any (point-at-bol) (point-at-eol)
24668 'speedbar-function 'speedbar-find-file))
24669 (setq tp (previous-single-property-change
24670 (1+ p) 'speedbar-function)
24671 np (next-single-property-change
24672 tp 'speedbar-function)
24673 dir (speedbar-line-directory)
24674 txt (buffer-substring-no-properties (or tp (point-min))
24675 (or np (point-max))))
24676 (with-current-buffer (find-file-noselect
24677 (let ((default-directory dir))
24678 (expand-file-name txt)))
24679 (unless (derived-mode-p 'org-mode)
24680 (user-error "Cannot restrict to non-Org-mode file"))
24681 (org-agenda-set-restriction-lock 'file)))
24682 (t (user-error "Don't know how to restrict Org-mode's agenda")))
24683 (move-overlay org-speedbar-restriction-lock-overlay
24684 (point-at-bol) (point-at-eol))
24685 (setq current-prefix-arg nil)
24686 (org-agenda-maybe-redo)))
24688 (defvar speedbar-file-key-map)
24689 (declare-function speedbar-add-supported-extension "speedbar" (extension))
24690 (eval-after-load "speedbar"
24691 '(progn
24692 (speedbar-add-supported-extension ".org")
24693 (define-key speedbar-file-key-map "<" 'org-speedbar-set-agenda-restriction)
24694 (define-key speedbar-file-key-map "\C-c\C-x<" 'org-speedbar-set-agenda-restriction)
24695 (define-key speedbar-file-key-map ">" 'org-agenda-remove-restriction-lock)
24696 (define-key speedbar-file-key-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
24697 (add-hook 'speedbar-visiting-tag-hook
24698 (lambda () (and (derived-mode-p 'org-mode) (org-show-context 'org-goto))))))
24700 ;;; Fixes and Hacks for problems with other packages
24702 (defun org--flyspell-object-check-p (element)
24703 "Non-nil when Flyspell can check object at point.
24704 ELEMENT is the element at point."
24705 (let ((object (save-excursion
24706 (when (org-looking-at-p "\\>") (backward-char))
24707 (org-element-context element))))
24708 (case (org-element-type object)
24709 ;; Prevent checks in links due to keybinding conflict with
24710 ;; Flyspell.
24711 ((code entity export-snippet inline-babel-call
24712 inline-src-block line-break latex-fragment link macro
24713 statistics-cookie target timestamp verbatim)
24714 nil)
24715 (footnote-reference
24716 ;; Only in inline footnotes, within the definition.
24717 (and (eq (org-element-property :type object) 'inline)
24718 (< (save-excursion
24719 (goto-char (org-element-property :begin object))
24720 (search-forward ":" nil t 2))
24721 (point))))
24722 (otherwise t))))
24724 (defun org-mode-flyspell-verify ()
24725 "Function used for `flyspell-generic-check-word-predicate'."
24726 (if (org-at-heading-p)
24727 ;; At a headline or an inlinetask, check title only. This is
24728 ;; faster than relying on `org-element-at-point'.
24729 (and (save-excursion (beginning-of-line)
24730 (and (let ((case-fold-search t))
24731 (not (looking-at "\\*+ END[ \t]*$")))
24732 (looking-at org-complex-heading-regexp)))
24733 (match-beginning 4)
24734 (>= (point) (match-beginning 4))
24735 (or (not (match-beginning 5))
24736 (< (point) (match-beginning 5))))
24737 (let* ((element (org-element-at-point))
24738 (post-affiliated (org-element-property :post-affiliated element)))
24739 (cond
24740 ;; Ignore checks in all affiliated keywords but captions.
24741 ((< (point) post-affiliated)
24742 (and (save-excursion
24743 (beginning-of-line)
24744 (let ((case-fold-search t)) (looking-at "[ \t]*#\\+CAPTION:")))
24745 (> (point) (match-end 0))
24746 (org--flyspell-object-check-p element)))
24747 ;; Ignore checks in LOGBOOK (or equivalent) drawer.
24748 ((and org-log-into-drawer
24749 (let ((log (or (org-string-nw-p org-log-into-drawer) "LOGBOOK"))
24750 (parent element))
24751 (while (and parent (not (eq (org-element-type parent) 'drawer)))
24752 (setq parent (org-element-property :parent parent)))
24753 (and parent
24754 (eq (compare-strings
24755 log nil nil
24756 (org-element-property :drawer-name parent) nil nil t)
24757 t))))
24758 nil)
24760 (case (org-element-type element)
24761 ((comment quote-section) t)
24762 (comment-block
24763 ;; Allow checks between block markers, not on them.
24764 (and (> (line-beginning-position) post-affiliated)
24765 (save-excursion
24766 (end-of-line)
24767 (skip-chars-forward " \r\t\n")
24768 (< (point) (org-element-property :end element)))))
24769 ;; Arbitrary list of keywords where checks are meaningful.
24770 ;; Make sure point is on the value part of the element.
24771 (keyword
24772 (and (member (org-element-property :key element)
24773 '("DESCRIPTION" "TITLE"))
24774 (< (save-excursion
24775 (beginning-of-line) (search-forward ":") (point))
24776 (point))))
24777 ;; Check is globally allowed in paragraphs verse blocks and
24778 ;; table rows (after affiliated keywords) but some objects
24779 ;; must not be affected.
24780 ((paragraph table-row verse-block)
24781 (let ((cbeg (org-element-property :contents-begin element))
24782 (cend (org-element-property :contents-end element)))
24783 (and cbeg (>= (point) cbeg) (< (point) cend)
24784 (org--flyspell-object-check-p element))))))))))
24785 (put 'org-mode 'flyspell-mode-predicate 'org-mode-flyspell-verify)
24787 (defun org-remove-flyspell-overlays-in (beg end)
24788 "Remove flyspell overlays in region."
24789 (and (org-bound-and-true-p flyspell-mode)
24790 (fboundp 'flyspell-delete-region-overlays)
24791 (flyspell-delete-region-overlays beg end)))
24793 (defvar flyspell-delayed-commands)
24794 (eval-after-load "flyspell"
24795 '(add-to-list 'flyspell-delayed-commands 'org-self-insert-command))
24797 ;; Make `bookmark-jump' shows the jump location if it was hidden.
24798 (eval-after-load "bookmark"
24799 '(if (boundp 'bookmark-after-jump-hook)
24800 ;; We can use the hook
24801 (add-hook 'bookmark-after-jump-hook 'org-bookmark-jump-unhide)
24802 ;; Hook not available, use advice
24803 (defadvice bookmark-jump (after org-make-visible activate)
24804 "Make the position visible."
24805 (org-bookmark-jump-unhide))))
24807 ;; Make sure saveplace shows the location if it was hidden
24808 (eval-after-load "saveplace"
24809 '(defadvice save-place-find-file-hook (after org-make-visible activate)
24810 "Make the position visible."
24811 (org-bookmark-jump-unhide)))
24813 ;; Make sure ecb shows the location if it was hidden
24814 (eval-after-load "ecb"
24815 '(defadvice ecb-method-clicked (after esf/org-show-context activate)
24816 "Make hierarchy visible when jumping into location from ECB tree buffer."
24817 (if (derived-mode-p 'org-mode)
24818 (org-show-context))))
24820 (defun org-bookmark-jump-unhide ()
24821 "Unhide the current position, to show the bookmark location."
24822 (and (derived-mode-p 'org-mode)
24823 (or (outline-invisible-p)
24824 (save-excursion (goto-char (max (point-min) (1- (point))))
24825 (outline-invisible-p)))
24826 (org-show-context 'bookmark-jump)))
24828 (defun org-mark-jump-unhide ()
24829 "Make the point visible with `org-show-context' after jumping to the mark."
24830 (when (and (derived-mode-p 'org-mode)
24831 (outline-invisible-p))
24832 (org-show-context 'mark-goto)))
24834 (eval-after-load "simple"
24835 '(defadvice pop-to-mark-command (after org-make-visible activate)
24836 "Make the point visible with `org-show-context'."
24837 (org-mark-jump-unhide)))
24839 (eval-after-load "simple"
24840 '(defadvice exchange-point-and-mark (after org-make-visible activate)
24841 "Make the point visible with `org-show-context'."
24842 (org-mark-jump-unhide)))
24844 (eval-after-load "simple"
24845 '(defadvice pop-global-mark (after org-make-visible activate)
24846 "Make the point visible with `org-show-context'."
24847 (org-mark-jump-unhide)))
24849 ;; Make session.el ignore our circular variable
24850 (defvar session-globals-exclude)
24851 (eval-after-load "session"
24852 '(add-to-list 'session-globals-exclude 'org-mark-ring))
24854 ;;;; Finish up
24856 (provide 'org)
24858 (run-hooks 'org-load-hook)
24860 ;;; org.el ends here