`org-insert-heading' can be forced to insert top-level headline
[org-mode.git] / lisp / org.el
blob2ce909ceddd7a934ef1839d449347e4cac7c19bc
1 ;;; org.el --- Outline-based notes management and organizer
3 ;; Carstens outline-mode for keeping track of everything.
4 ;; Copyright (C) 2004-2015 Free Software Foundation, Inc.
5 ;;
6 ;; Author: Carsten Dominik <carsten at orgmode dot org>
7 ;; Maintainer: Carsten Dominik <carsten at orgmode dot org>
8 ;; Keywords: outlines, hypermedia, calendar, wp
9 ;; Homepage: http://orgmode.org
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software: you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation, either version 3 of the License, or
16 ;; (at your option) any later version.
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26 ;;; Commentary:
28 ;; Org-mode is a mode for keeping notes, maintaining ToDo lists, and doing
29 ;; project planning with a fast and effective plain-text system.
31 ;; Org-mode develops organizational tasks around NOTES files that contain
32 ;; information about projects as plain text. Org-mode is implemented on
33 ;; top of outline-mode, which makes it possible to keep the content of
34 ;; large files well structured. Visibility cycling and structure editing
35 ;; help to work with the tree. Tables are easily created with a built-in
36 ;; table editor. Org-mode supports ToDo items, deadlines, time stamps,
37 ;; and scheduling. It dynamically compiles entries into an agenda that
38 ;; utilizes and smoothly integrates much of the Emacs calendar and diary.
39 ;; Plain text URL-like links connect to websites, emails, Usenet
40 ;; messages, BBDB entries, and any files related to the projects. For
41 ;; printing and sharing of notes, an Org-mode file can be exported as a
42 ;; structured ASCII file, as HTML, or (todo and agenda items only) as an
43 ;; iCalendar file. It can also serve as a publishing tool for a set of
44 ;; linked webpages.
46 ;; Installation and Activation
47 ;; ---------------------------
48 ;; See the corresponding sections in the manual at
50 ;; http://orgmode.org/org.html#Installation
52 ;; Documentation
53 ;; -------------
54 ;; The documentation of Org-mode can be found in the TeXInfo file. The
55 ;; distribution also contains a PDF version of it. At the homepage of
56 ;; Org-mode, you can read the same text online as HTML. There is also an
57 ;; excellent reference card made by Philip Rooke. This card can be found
58 ;; in the etc/ directory of Emacs 22.
60 ;; A list of recent changes can be found at
61 ;; http://orgmode.org/Changes.html
63 ;;; Code:
65 (defvar org-inhibit-highlight-removal nil) ; dynamically scoped param
66 (defvar org-table-formula-constants-local nil
67 "Local version of `org-table-formula-constants'.")
68 (make-variable-buffer-local 'org-table-formula-constants-local)
70 ;;;; Require other packages
72 (eval-when-compile
73 (require 'cl)
74 (require 'gnus-sum))
76 (require 'calendar)
77 (require 'find-func)
78 (require 'format-spec)
80 (or (equal this-command 'eval-buffer)
81 (condition-case nil
82 (load (concat (file-name-directory load-file-name)
83 "org-loaddefs.el")
84 nil t t t)
85 (error
86 (message "WARNING: No org-loaddefs.el file could be found from where org.el is loaded.")
87 (sit-for 3)
88 (message "You need to run \"make\" or \"make autoloads\" from Org lisp directory")
89 (sit-for 3))))
91 (require 'org-macs)
92 (require 'org-compat)
94 (declare-function cdlatex-environment "ext:cdlatex" (environment item))
96 ;; `org-outline-regexp' ought to be a defconst but is let-bound in
97 ;; some places -- e.g. see the macro `org-with-limited-levels'.
99 ;; In Org buffers, the value of `outline-regexp' is that of
100 ;; `org-outline-regexp'. The only function still directly relying on
101 ;; `outline-regexp' is `org-overview' so that `org-cycle' can do its
102 ;; job when `orgstruct-mode' is active.
103 (defvar org-outline-regexp "\\*+ "
104 "Regexp to match Org headlines.")
106 (defvar org-outline-regexp-bol "^\\*+ "
107 "Regexp to match Org headlines.
108 This is similar to `org-outline-regexp' but additionally makes
109 sure that we are at the beginning of the line.")
111 (defvar org-heading-regexp "^\\(\\*+\\)\\(?: +\\(.*?\\)\\)?[ \t]*$"
112 "Matches a headline, putting stars and text into groups.
113 Stars are put in group 1 and the trimmed body in group 2.")
115 ;; Emacs 22 calendar compatibility: Make sure the new variables are available
116 (unless (boundp 'calendar-view-holidays-initially-flag)
117 (org-defvaralias 'calendar-view-holidays-initially-flag
118 'view-calendar-holidays-initially))
119 (unless (boundp 'calendar-view-diary-initially-flag)
120 (org-defvaralias 'calendar-view-diary-initially-flag
121 'view-diary-entries-initially))
122 (unless (boundp 'diary-fancy-buffer)
123 (org-defvaralias 'diary-fancy-buffer 'fancy-diary-buffer))
125 (declare-function org-add-archive-files "org-archive" (files))
127 (declare-function org-inlinetask-at-task-p "org-inlinetask" ())
128 (declare-function org-inlinetask-outline-regexp "org-inlinetask" ())
129 (declare-function org-inlinetask-toggle-visibility "org-inlinetask" ())
130 (declare-function org-pop-to-buffer-same-window "org-compat" (&optional buffer-or-name norecord label))
131 (declare-function org-clock-get-last-clock-out-time "org-clock" ())
132 (declare-function org-clock-timestamps-up "org-clock" (&optional n))
133 (declare-function org-clock-timestamps-down "org-clock" (&optional n))
134 (declare-function org-clock-remove-overlays "org-clock" (&optional beg end noremove))
135 (declare-function org-clock-sum "org-clock" (&optional tstart tend headline-filter propname))
136 (declare-function org-clock-sum-current-item "org-clock" (&optional tstart))
137 (declare-function org-clock-update-time-maybe "org-clock" ())
138 (declare-function org-clocktable-shift "org-clock" (dir n))
140 (declare-function org-babel-tangle-file "ob-tangle" (file &optional target-file lang))
141 (declare-function org-babel-do-in-edit-buffer "ob-core" (&rest body))
142 (declare-function orgtbl-mode "org-table" (&optional arg))
143 (declare-function org-clock-out "org-clock" (&optional switch-to-state fail-quietly at-time))
144 (declare-function org-beamer-mode "ox-beamer" ())
145 (declare-function org-table-blank-field "org-table" ())
146 (declare-function org-table-edit-field "org-table" (arg))
147 (declare-function org-table-insert-row "org-table" (&optional arg))
148 (declare-function org-table-justify-field-maybe "org-table" (&optional new))
149 (declare-function org-table-calc-current-TBLFM "org-table" (&optional arg))
150 (declare-function org-id-get-create "org-id" (&optional force))
151 (declare-function org-add-archive-files "org-archive" (files))
152 (declare-function org-id-find-id-file "org-id" (id))
153 (declare-function org-tags-view "org-agenda" (&optional todo-only match))
154 (declare-function org-agenda-list "org-agenda" (&optional arg start-day span))
155 (declare-function org-agenda-redo "org-agenda" (&optional all))
156 (declare-function org-table-align "org-table" ())
157 (declare-function org-table-begin "org-table" (&optional table-type))
158 (declare-function org-table-blank-field "org-table" ())
159 (declare-function org-table-end "org-table" (&optional table-type))
160 (declare-function org-table-end-of-field "org-table" (&optional n))
161 (declare-function org-table-insert-row "org-table" (&optional arg))
162 (declare-function org-table-paste-rectangle "org-table" ())
163 (declare-function org-table-maybe-eval-formula "org-table" ())
164 (declare-function org-table-maybe-recalculate-line "org-table" ())
165 (declare-function orgtbl-ascii-plot "org-table" (&optional ask))
166 (declare-function org-plot/gnuplot "org-plot" (&optional params))
168 (declare-function org-element-at-point "org-element" ())
169 (declare-function org-element-cache-reset "org-element" (&optional all))
170 (declare-function org-element-cache-refresh "org-element" (pos))
171 (declare-function org-element-contents "org-element" (element))
172 (declare-function org-element-context "org-element" (&optional element))
173 (declare-function org-element-interpret-data "org-element"
174 (data &optional parent))
175 (declare-function org-element-nested-p "org-element" (elem-a elem-b))
176 (declare-function org-element-parse-buffer "org-element"
177 (&optional granularity visible-only))
178 (declare-function org-element-property "org-element" (property element))
179 (declare-function org-element-put-property "org-element"
180 (element property value))
181 (declare-function org-element-swap-A-B "org-element" (elem-a elem-b))
182 (declare-function org-element-parse-buffer "org-element"
183 (&optional granularity visible-only))
184 (declare-function org-element-type "org-element" (element))
186 (defsubst org-uniquify (list)
187 "Non-destructively remove duplicate elements from LIST."
188 (let ((res (copy-sequence list))) (delete-dups res)))
190 (defsubst org-get-at-bol (property)
191 "Get text property PROPERTY at the beginning of line."
192 (get-text-property (point-at-bol) property))
194 (defsubst org-trim (s)
195 "Remove whitespace at the beginning and the end of string S."
196 (replace-regexp-in-string
197 "\\`[ \t\n\r]+" ""
198 (replace-regexp-in-string "[ \t\n\r]+\\'" "" s)))
200 ;; load languages based on value of `org-babel-load-languages'
201 (defvar org-babel-load-languages)
203 ;;;###autoload
204 (defun org-babel-do-load-languages (sym value)
205 "Load the languages defined in `org-babel-load-languages'."
206 (set-default sym value)
207 (mapc (lambda (pair)
208 (let ((active (cdr pair)) (lang (symbol-name (car pair))))
209 (if active
210 (progn
211 (require (intern (concat "ob-" lang))))
212 (progn
213 (funcall 'fmakunbound
214 (intern (concat "org-babel-execute:" lang)))
215 (funcall 'fmakunbound
216 (intern (concat "org-babel-expand-body:" lang)))))))
217 org-babel-load-languages))
219 (declare-function org-babel-tangle-file "ob-tangle" (file &optional target-file lang))
220 ;;;###autoload
221 (defun org-babel-load-file (file &optional compile)
222 "Load Emacs Lisp source code blocks in the Org-mode FILE.
223 This function exports the source code using `org-babel-tangle'
224 and then loads the resulting file using `load-file'. With prefix
225 arg (noninteractively: 2nd arg) COMPILE the tangled Emacs Lisp
226 file to byte-code before it is loaded."
227 (interactive "fFile to load: \nP")
228 (let* ((age (lambda (file)
229 (float-time
230 (time-subtract (current-time)
231 (nth 5 (or (file-attributes (file-truename file))
232 (file-attributes file)))))))
233 (base-name (file-name-sans-extension file))
234 (exported-file (concat base-name ".el")))
235 ;; tangle if the org-mode file is newer than the elisp file
236 (unless (and (file-exists-p exported-file)
237 (> (funcall age file) (funcall age exported-file)))
238 ;; Tangle-file traversal returns reversed list of tangled files
239 ;; and we want to evaluate the first target.
240 (setq exported-file
241 (car (last (org-babel-tangle-file file exported-file "emacs-lisp")))))
242 (message "%s %s"
243 (if compile
244 (progn (byte-compile-file exported-file 'load)
245 "Compiled and loaded")
246 (progn (load-file exported-file) "Loaded"))
247 exported-file)))
249 (defcustom org-babel-load-languages '((emacs-lisp . t))
250 "Languages which can be evaluated in Org-mode buffers.
251 This list can be used to load support for any of the languages
252 below, note that each language will depend on a different set of
253 system executables and/or Emacs modes. When a language is
254 \"loaded\", then code blocks in that language can be evaluated
255 with `org-babel-execute-src-block' bound by default to C-c
256 C-c (note the `org-babel-no-eval-on-ctrl-c-ctrl-c' variable can
257 be set to remove code block evaluation from the C-c C-c
258 keybinding. By default only Emacs Lisp (which has no
259 requirements) is loaded."
260 :group 'org-babel
261 :set 'org-babel-do-load-languages
262 :version "24.1"
263 :type '(alist :tag "Babel Languages"
264 :key-type
265 (choice
266 (const :tag "Awk" awk)
267 (const :tag "C" C)
268 (const :tag "R" R)
269 (const :tag "Asymptote" asymptote)
270 (const :tag "Calc" calc)
271 (const :tag "Clojure" clojure)
272 (const :tag "CSS" css)
273 (const :tag "Ditaa" ditaa)
274 (const :tag "Dot" dot)
275 (const :tag "Emacs Lisp" emacs-lisp)
276 (const :tag "Forth" forth)
277 (const :tag "Fortran" fortran)
278 (const :tag "Gnuplot" gnuplot)
279 (const :tag "Haskell" haskell)
280 (const :tag "IO" io)
281 (const :tag "J" J)
282 (const :tag "Java" java)
283 (const :tag "Javascript" js)
284 (const :tag "LaTeX" latex)
285 (const :tag "Ledger" ledger)
286 (const :tag "Lilypond" lilypond)
287 (const :tag "Lisp" lisp)
288 (const :tag "Makefile" makefile)
289 (const :tag "Maxima" maxima)
290 (const :tag "Matlab" matlab)
291 (const :tag "Mscgen" mscgen)
292 (const :tag "Ocaml" ocaml)
293 (const :tag "Octave" octave)
294 (const :tag "Org" org)
295 (const :tag "Perl" perl)
296 (const :tag "Pico Lisp" picolisp)
297 (const :tag "PlantUML" plantuml)
298 (const :tag "Python" python)
299 (const :tag "Ruby" ruby)
300 (const :tag "Sass" sass)
301 (const :tag "Scala" scala)
302 (const :tag "Scheme" scheme)
303 (const :tag "Screen" screen)
304 (const :tag "Shell Script" shell)
305 (const :tag "Shen" shen)
306 (const :tag "Sql" sql)
307 (const :tag "Sqlite" sqlite)
308 (const :tag "ebnf2ps" ebnf2ps))
309 :value-type (boolean :tag "Activate" :value t)))
311 ;;;; Customization variables
312 (defcustom org-clone-delete-id nil
313 "Remove ID property of clones of a subtree.
314 When non-nil, clones of a subtree don't inherit the ID property.
315 Otherwise they inherit the ID property with a new unique
316 identifier."
317 :type 'boolean
318 :version "24.1"
319 :group 'org-id)
321 ;;; Version
322 (org-check-version)
324 ;;;###autoload
325 (defun org-version (&optional here full message)
326 "Show the org-mode version.
327 Interactively, or when MESSAGE is non-nil, show it in echo area.
328 With prefix argument, or when HERE is non-nil, insert it at point.
329 In non-interactive uses, a reduced version string is output unless
330 FULL is given."
331 (interactive (list current-prefix-arg t (not current-prefix-arg)))
332 (let* ((org-dir (ignore-errors (org-find-library-dir "org")))
333 (save-load-suffixes (when (boundp 'load-suffixes) load-suffixes))
334 (load-suffixes (list ".el"))
335 (org-install-dir (ignore-errors (org-find-library-dir "org-loaddefs")))
336 (org-trash (or
337 (and (fboundp 'org-release) (fboundp 'org-git-version))
338 (org-load-noerror-mustsuffix (concat org-dir "org-version"))))
339 (load-suffixes save-load-suffixes)
340 (org-version (org-release))
341 (git-version (org-git-version))
342 (version (format "Org-mode version %s (%s @ %s)"
343 org-version
344 git-version
345 (if org-install-dir
346 (if (string= org-dir org-install-dir)
347 org-install-dir
348 (concat "mixed installation! " org-install-dir " and " org-dir))
349 "org-loaddefs.el can not be found!")))
350 (version1 (if full version org-version)))
351 (when here (insert version1))
352 (when message (message "%s" version1))
353 version1))
355 (defconst org-version (org-version))
358 ;;; Syntax Constants
360 ;;;; Block
362 (defconst org-block-regexp
363 "^[ \t]*#\\+begin_?\\([^ \n]+\\)\\(\\([^\n]+\\)\\)?\n\\([^\000]+?\\)#\\+end_?\\1[ \t]*$"
364 "Regular expression for hiding blocks.")
366 (defconst org-dblock-start-re
367 "^[ \t]*#\\+\\(?:BEGIN\\|begin\\):[ \t]+\\(\\S-+\\)\\([ \t]+\\(.*\\)\\)?"
368 "Matches the start line of a dynamic block, with parameters.")
370 (defconst org-dblock-end-re "^[ \t]*#\\+\\(?:END\\|end\\)\\([: \t\r\n]\\|$\\)"
371 "Matches the end of a dynamic block.")
373 ;;;; Clock and Planning
375 (defconst org-clock-string "CLOCK:"
376 "String used as prefix for timestamps clocking work hours on an item.")
378 (defconst org-closed-string "CLOSED:"
379 "String used as the prefix for timestamps logging closing a TODO entry.")
381 (defconst org-deadline-string "DEADLINE:"
382 "String to mark deadline entries.
383 A deadline is this string, followed by a time stamp. Should be a word,
384 terminated by a colon. You can insert a schedule keyword and
385 a timestamp with \\[org-deadline].")
387 (defconst org-scheduled-string "SCHEDULED:"
388 "String to mark scheduled TODO entries.
389 A schedule is this string, followed by a time stamp. Should be a word,
390 terminated by a colon. You can insert a schedule keyword and
391 a timestamp with \\[org-schedule].")
393 (defconst org-ds-keyword-length
394 (+ 2
395 (apply #'max
396 (mapcar #'length
397 (list org-deadline-string org-scheduled-string
398 org-clock-string org-closed-string))))
399 "Maximum length of the DEADLINE and SCHEDULED keywords.")
401 (defconst org-planning-line-re
402 (concat "^[ \t]*"
403 (regexp-opt
404 (list org-closed-string org-deadline-string org-scheduled-string)
406 "Matches a line with planning info.
407 Matched keyword is in group 1.")
409 (defconst org-clock-line-re
410 (concat "^[ \t]*" org-clock-string)
411 "Matches a line with clock info.")
413 (defconst org-deadline-regexp (concat "\\<" org-deadline-string)
414 "Matches the DEADLINE keyword.")
416 (defconst org-deadline-time-regexp
417 (concat "\\<" org-deadline-string " *<\\([^>]+\\)>")
418 "Matches the DEADLINE keyword together with a time stamp.")
420 (defconst org-deadline-time-hour-regexp
421 (concat "\\<" org-deadline-string
422 " *<\\([^>]+[0-9]\\{1,2\\}:[0-9]\\{2\\}[0-9-+:hdwmy \t.]*\\)>")
423 "Matches the DEADLINE keyword together with a time-and-hour stamp.")
425 (defconst org-deadline-line-regexp
426 (concat "\\<\\(" org-deadline-string "\\).*")
427 "Matches the DEADLINE keyword and the rest of the line.")
429 (defconst org-scheduled-regexp (concat "\\<" org-scheduled-string)
430 "Matches the SCHEDULED keyword.")
432 (defconst org-scheduled-time-regexp
433 (concat "\\<" org-scheduled-string " *<\\([^>]+\\)>")
434 "Matches the SCHEDULED keyword together with a time stamp.")
436 (defconst org-scheduled-time-hour-regexp
437 (concat "\\<" org-scheduled-string
438 " *<\\([^>]+[0-9]\\{1,2\\}:[0-9]\\{2\\}[0-9-+:hdwmy \t.]*\\)>")
439 "Matches the SCHEDULED keyword together with a time-and-hour stamp.")
441 (defconst org-closed-time-regexp
442 (concat "\\<" org-closed-string " *\\[\\([^]]+\\)\\]")
443 "Matches the CLOSED keyword together with a time stamp.")
445 (defconst org-keyword-time-regexp
446 (concat "\\<"
447 (regexp-opt
448 (list org-scheduled-string org-deadline-string org-closed-string
449 org-clock-string)
451 " *[[<]\\([^]>]+\\)[]>]")
452 "Matches any of the 4 keywords, together with the time stamp.")
454 (defconst org-keyword-time-not-clock-regexp
455 (concat
456 "\\<"
457 (regexp-opt
458 (list org-scheduled-string org-deadline-string org-closed-string) t)
459 " *[[<]\\([^]>]+\\)[]>]")
460 "Matches any of the 3 keywords, together with the time stamp.")
462 (defconst org-maybe-keyword-time-regexp
463 (concat "\\(\\<"
464 (regexp-opt
465 (list org-scheduled-string org-deadline-string org-closed-string
466 org-clock-string)
468 "\\)?"
469 " *\\([[<][0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^]\r\n>]*?[]>]"
470 "\\|"
471 "<%%([^\r\n>]*>\\)")
472 "Matches a timestamp, possibly preceded by a keyword.")
474 (defconst org-all-time-keywords
475 (mapcar (lambda (w) (substring w 0 -1))
476 (list org-scheduled-string org-deadline-string
477 org-clock-string org-closed-string))
478 "List of time keywords.")
480 ;;;; Drawer
482 (defconst org-drawer-regexp "^[ \t]*:\\(\\(?:\\w\\|[-_]\\)+\\):[ \t]*$"
483 "Matches first or last line of a hidden block.
484 Group 1 contains drawer's name or \"END\".")
486 (defconst org-property-start-re "^[ \t]*:PROPERTIES:[ \t]*$"
487 "Regular expression matching the first line of a property drawer.")
489 (defconst org-property-end-re "^[ \t]*:END:[ \t]*$"
490 "Regular expression matching the last line of a property drawer.")
492 (defconst org-clock-drawer-start-re "^[ \t]*:CLOCK:[ \t]*$"
493 "Regular expression matching the first line of a clock drawer.")
495 (defconst org-clock-drawer-end-re "^[ \t]*:END:[ \t]*$"
496 "Regular expression matching the last line of a clock drawer.")
498 (defconst org-property-drawer-re
499 (concat "^[ \t]*:PROPERTIES:[ \t]*\n"
500 "\\(?:[ \t]*:\\S-+:\\(?: .*\\)?[ \t]*\n\\)*"
501 "[ \t]*:END:[ \t]*$")
502 "Matches an entire property drawer.")
504 (defconst org-clock-drawer-re
505 (concat "\\(" org-clock-drawer-start-re "\\)[^\000]*?\\("
506 org-clock-drawer-end-re "\\)\n?")
507 "Matches an entire clock drawer.")
509 ;;;; Headline
511 (defconst org-heading-keyword-regexp-format
512 "^\\(\\*+\\)\\(?: +%s\\)\\(?: +\\(.*?\\)\\)?[ \t]*$"
513 "Printf format for a regexp matching a headline with some keyword.
514 This regexp will match the headline of any node which has the
515 exact keyword that is put into the format. The keyword isn't in
516 any group by default, but the stars and the body are.")
518 (defconst org-heading-keyword-maybe-regexp-format
519 "^\\(\\*+\\)\\(?: +%s\\)?\\(?: +\\(.*?\\)\\)?[ \t]*$"
520 "Printf format for a regexp matching a headline, possibly with some keyword.
521 This regexp can match any headline with the specified keyword, or
522 without a keyword. The keyword isn't in any group by default,
523 but the stars and the body are.")
525 (defconst org-archive-tag "ARCHIVE"
526 "The tag that marks a subtree as archived.
527 An archived subtree does not open during visibility cycling, and does
528 not contribute to the agenda listings.")
530 (defconst org-comment-string "COMMENT"
531 "Entries starting with this keyword will never be exported.
532 An entry can be toggled between COMMENT and normal with
533 \\[org-toggle-comment].")
536 ;;;; LaTeX Environments and Fragments
538 (defconst org-latex-regexps
539 '(("begin" "^[ \t]*\\(\\\\begin{\\([a-zA-Z0-9\\*]+\\)[^\000]+?\\\\end{\\2}\\)" 1 t)
540 ;; ("$" "\\([ (]\\|^\\)\\(\\(\\([$]\\)\\([^ \r\n,.$].*?\\(\n.*?\\)\\{0,5\\}[^ \r\n,.$]\\)\\4\\)\\)\\([ .,?;:'\")]\\|$\\)" 2 nil)
541 ;; \000 in the following regex is needed for org-inside-LaTeX-fragment-p
542 ("$1" "\\([^$]\\|^\\)\\(\\$[^ \r\n,;.$]\\$\\)\\([- .,?;:'\")\000]\\|$\\)" 2 nil)
543 ("$" "\\([^$]\\|^\\)\\(\\(\\$\\([^ \r\n,;.$][^$\n\r]*?\\(\n[^$\n\r]*?\\)\\{0,2\\}[^ \r\n,.$]\\)\\$\\)\\)\\([- .,?;:'\")\000]\\|$\\)" 2 nil)
544 ("\\(" "\\\\([^\000]*?\\\\)" 0 nil)
545 ("\\[" "\\\\\\[[^\000]*?\\\\\\]" 0 nil)
546 ("$$" "\\$\\$[^\000]*?\\$\\$" 0 nil))
547 "Regular expressions for matching embedded LaTeX.")
549 ;;;; Node Property
551 (defconst org-effort-property "Effort"
552 "The property that is being used to keep track of effort estimates.
553 Effort estimates given in this property need to have the format H:MM.")
555 ;;;; Table
557 (defconst org-table-any-line-regexp "^[ \t]*\\(|\\|\\+-[-+]\\)"
558 "Detect an org-type or table-type table.")
560 (defconst org-table-line-regexp "^[ \t]*|"
561 "Detect an org-type table line.")
563 (defconst org-table-dataline-regexp "^[ \t]*|[^-]"
564 "Detect an org-type table line.")
566 (defconst org-table-hline-regexp "^[ \t]*|-"
567 "Detect an org-type table hline.")
569 (defconst org-table1-hline-regexp "^[ \t]*\\+-[-+]"
570 "Detect a table-type table hline.")
572 (defconst org-table-any-border-regexp "^[ \t]*[^|+ \t]"
573 "Detect the first line outside a table when searching from within it.
574 This works for both table types.")
576 (defconst org-TBLFM-regexp "^[ \t]*#\\+TBLFM: "
577 "Detect a #+TBLFM line.")
579 ;;;; Timestamp
581 (defconst org-ts-regexp "<\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^\r\n>]*?\\)>"
582 "Regular expression for fast time stamp matching.")
584 (defconst org-ts-regexp-inactive
585 "\\[\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^\r\n>]*?\\)\\]"
586 "Regular expression for fast inactive time stamp matching.")
588 (defconst org-ts-regexp-both "[[<]\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^]\r\n>]*?\\)[]>]"
589 "Regular expression for fast time stamp matching.")
591 (defconst org-ts-regexp0
592 "\\(\\([0-9]\\{4\\}\\)-\\([0-9]\\{2\\}\\)-\\([0-9]\\{2\\}\\)\\( +[^]+0-9>\r\n -]+\\)?\\( +\\([0-9]\\{1,2\\}\\):\\([0-9]\\{2\\}\\)\\)?\\)"
593 "Regular expression matching time strings for analysis.
594 This one does not require the space after the date, so it can be used
595 on a string that terminates immediately after the date.")
597 (defconst org-ts-regexp1 "\\(\\([0-9]\\{4\\}\\)-\\([0-9]\\{2\\}\\)-\\([0-9]\\{2\\}\\) *\\([^]+0-9>\r\n -]*\\)\\( \\([0-9]\\{1,2\\}\\):\\([0-9]\\{2\\}\\)\\)?\\)"
598 "Regular expression matching time strings for analysis.")
600 (defconst org-ts-regexp2 (concat "<" org-ts-regexp1 "[^>\n]\\{0,16\\}>")
601 "Regular expression matching time stamps, with groups.")
603 (defconst org-ts-regexp3 (concat "[[<]" org-ts-regexp1 "[^]>\n]\\{0,16\\}[]>]")
604 "Regular expression matching time stamps (also [..]), with groups.")
606 (defconst org-tr-regexp (concat org-ts-regexp "--?-?" org-ts-regexp)
607 "Regular expression matching a time stamp range.")
609 (defconst org-tr-regexp-both
610 (concat org-ts-regexp-both "--?-?" org-ts-regexp-both)
611 "Regular expression matching a time stamp range.")
613 (defconst org-tsr-regexp (concat org-ts-regexp "\\(--?-?"
614 org-ts-regexp "\\)?")
615 "Regular expression matching a time stamp or time stamp range.")
617 (defconst org-tsr-regexp-both
618 (concat org-ts-regexp-both "\\(--?-?"
619 org-ts-regexp-both "\\)?")
620 "Regular expression matching a time stamp or time stamp range.
621 The time stamps may be either active or inactive.")
623 (defconst org-repeat-re
624 "<[0-9]\\{4\\}-[0-9][0-9]-[0-9][0-9] [^>\n]*?\\([.+]?\\+[0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)"
625 "Regular expression for specifying repeated events.
626 After a match, group 1 contains the repeat expression.")
628 (defconst org-time-stamp-formats '("<%Y-%m-%d %a>" . "<%Y-%m-%d %a %H:%M>")
629 "Formats for `format-time-string' which are used for time stamps.")
632 ;;; The custom variables
634 (defgroup org nil
635 "Outline-based notes management and organizer."
636 :tag "Org"
637 :group 'outlines
638 :group 'calendar)
640 (defcustom org-mode-hook nil
641 "Mode hook for Org-mode, run after the mode was turned on."
642 :group 'org
643 :type 'hook)
645 (defcustom org-load-hook nil
646 "Hook that is run after org.el has been loaded."
647 :group 'org
648 :type 'hook)
650 (defcustom org-log-buffer-setup-hook nil
651 "Hook that is run after an Org log buffer is created."
652 :group 'org
653 :version "24.1"
654 :type 'hook)
656 (defvar org-modules) ; defined below
657 (defvar org-modules-loaded nil
658 "Have the modules been loaded already?")
660 (defun org-load-modules-maybe (&optional force)
661 "Load all extensions listed in `org-modules'."
662 (when (or force (not org-modules-loaded))
663 (mapc (lambda (ext)
664 (condition-case nil (require ext)
665 (error (message "Problems while trying to load feature `%s'" ext))))
666 org-modules)
667 (setq org-modules-loaded t)))
669 (defun org-set-modules (var value)
670 "Set VAR to VALUE and call `org-load-modules-maybe' with the force flag."
671 (set var value)
672 (when (featurep 'org)
673 (org-load-modules-maybe 'force)
674 (org-element-cache-reset 'all)))
676 (defcustom org-modules '(org-w3m org-bbdb org-bibtex org-docview org-gnus org-info org-irc org-mhe org-rmail)
677 "Modules that should always be loaded together with org.el.
679 If a description starts with <C>, the file is not part of Emacs
680 and loading it will require that you have downloaded and properly
681 installed the Org mode distribution.
683 You can also use this system to load external packages (i.e. neither Org
684 core modules, nor modules from the CONTRIB directory). Just add symbols
685 to the end of the list. If the package is called org-xyz.el, then you need
686 to add the symbol `xyz', and the package must have a call to:
688 \(provide 'org-xyz)
690 For export specific modules, see also `org-export-backends'."
691 :group 'org
692 :set 'org-set-modules
693 :version "24.4"
694 :package-version '(Org . "8.0")
695 :type
696 '(set :greedy t
697 (const :tag " bbdb: Links to BBDB entries" org-bbdb)
698 (const :tag " bibtex: Links to BibTeX entries" org-bibtex)
699 (const :tag " crypt: Encryption of subtrees" org-crypt)
700 (const :tag " ctags: Access to Emacs tags with links" org-ctags)
701 (const :tag " docview: Links to doc-view buffers" org-docview)
702 (const :tag " gnus: Links to GNUS folders/messages" org-gnus)
703 (const :tag " habit: Track your consistency with habits" org-habit)
704 (const :tag " id: Global IDs for identifying entries" org-id)
705 (const :tag " info: Links to Info nodes" org-info)
706 (const :tag " inlinetask: Tasks independent of outline hierarchy" org-inlinetask)
707 (const :tag " irc: Links to IRC/ERC chat sessions" org-irc)
708 (const :tag " mhe: Links to MHE folders/messages" org-mhe)
709 (const :tag " mouse: Additional mouse support" org-mouse)
710 (const :tag " protocol: Intercept calls from emacsclient" org-protocol)
711 (const :tag " rmail: Links to RMAIL folders/messages" org-rmail)
712 (const :tag " w3m: Special cut/paste from w3m to Org-mode." org-w3m)
714 (const :tag "C annotate-file: Annotate a file with org syntax" org-annotate-file)
715 (const :tag "C bookmark: Org-mode links to bookmarks" org-bookmark)
716 (const :tag "C bullets: Add overlays to headlines stars" org-bullets)
717 (const :tag "C checklist: Extra functions for checklists in repeated tasks" org-checklist)
718 (const :tag "C choose: Use TODO keywords to mark decisions states" org-choose)
719 (const :tag "C collector: Collect properties into tables" org-collector)
720 (const :tag "C depend: TODO dependencies for Org-mode\n\t\t\t(PARTIALLY OBSOLETE, see built-in dependency support))" org-depend)
721 (const :tag "C drill: Flashcards and spaced repetition for Org-mode" org-drill)
722 (const :tag "C elisp-symbol: Org-mode links to emacs-lisp symbols" org-elisp-symbol)
723 (const :tag "C eshell Support for links to working directories in eshell" org-eshell)
724 (const :tag "C eval-light: Evaluate inbuffer-code on demand" org-eval-light)
725 (const :tag "C eval: Include command output as text" org-eval)
726 (const :tag "C eww: Store link to url of eww" org-eww)
727 (const :tag "C expiry: Expiry mechanism for Org-mode entries" org-expiry)
728 (const :tag "C favtable: Lookup table of favorite references and links" org-favtable)
729 (const :tag "C git-link: Provide org links to specific file version" org-git-link)
730 (const :tag "C interactive-query: Interactive modification of tags query\n\t\t\t(PARTIALLY OBSOLETE, see secondary filtering)" org-interactive-query)
731 (const :tag "C invoice: Help manage client invoices in Org-mode" org-invoice)
732 (const :tag "C jira: Add a jira:ticket protocol to Org-mode" org-jira)
733 (const :tag "C learn: SuperMemo's incremental learning algorithm" org-learn)
734 (const :tag "C mac-iCal Imports events from iCal.app to the Emacs diary" org-mac-iCal)
735 (const :tag "C mac-link: Grab links and url from various mac Applications" org-mac-link)
736 (const :tag "C mairix: Hook mairix search into Org-mode for different MUAs" org-mairix)
737 (const :tag "C man: Support for links to manpages in Org-mode" org-man)
738 (const :tag "C mew: Links to Mew folders/messages" org-mew)
739 (const :tag "C mtags: Support for muse-like tags" org-mtags)
740 (const :tag "C notmuch: Provide org links to notmuch searches or messages" org-notmuch)
741 (const :tag "C panel: Simple routines for us with bad memory" org-panel)
742 (const :tag "C registry: A registry for Org-mode links" org-registry)
743 (const :tag "C screen: Visit screen sessions through Org-mode links" org-screen)
744 (const :tag "C secretary: Team management with org-mode" org-secretary)
745 (const :tag "C sqlinsert: Convert Org-mode tables to SQL insertions" orgtbl-sqlinsert)
746 (const :tag "C toc: Table of contents for Org-mode buffer" org-toc)
747 (const :tag "C track: Keep up with Org-mode development" org-track)
748 (const :tag "C velocity Something like Notational Velocity for Org" org-velocity)
749 (const :tag "C vm: Links to VM folders/messages" org-vm)
750 (const :tag "C wikinodes: CamelCase wiki-like links" org-wikinodes)
751 (const :tag "C wl: Links to Wanderlust folders/messages" org-wl)
752 (repeat :tag "External packages" :inline t (symbol :tag "Package"))))
754 (defvar org-export--registered-backends) ; From ox.el.
755 (declare-function org-export-derived-backend-p "ox" (backend &rest backends))
756 (declare-function org-export-backend-name "ox" (backend))
757 (defcustom org-export-backends '(ascii html icalendar latex)
758 "List of export back-ends that should be always available.
760 If a description starts with <C>, the file is not part of Emacs
761 and loading it will require that you have downloaded and properly
762 installed the Org mode distribution.
764 Unlike to `org-modules', libraries in this list will not be
765 loaded along with Org, but only once the export framework is
766 needed.
768 This variable needs to be set before org.el is loaded. If you
769 need to make a change while Emacs is running, use the customize
770 interface or run the following code, where VAL stands for the new
771 value of the variable, after updating it:
773 \(progn
774 \(setq org-export--registered-backends
775 \(org-remove-if-not
776 \(lambda (backend)
777 \(let ((name (org-export-backend-name backend)))
778 \(or (memq name val)
779 \(catch 'parentp
780 \(dolist (b val)
781 \(and (org-export-derived-backend-p b name)
782 \(throw 'parentp t)))))))
783 org-export--registered-backends))
784 \(let ((new-list (mapcar 'org-export-backend-name
785 org-export--registered-backends)))
786 \(dolist (backend val)
787 \(cond
788 \((not (load (format \"ox-%s\" backend) t t))
789 \(message \"Problems while trying to load export back-end `%s'\"
790 backend))
791 \((not (memq backend new-list)) (push backend new-list))))
792 \(set-default 'org-export-backends new-list)))
794 Adding a back-end to this list will also pull the back-end it
795 depends on, if any."
796 :group 'org
797 :group 'org-export
798 :version "24.4"
799 :package-version '(Org . "8.0")
800 :initialize 'custom-initialize-set
801 :set (lambda (var val)
802 (if (not (featurep 'ox)) (set-default var val)
803 ;; Any back-end not required anymore (not present in VAL and not
804 ;; a parent of any back-end in the new value) is removed from the
805 ;; list of registered back-ends.
806 (setq org-export--registered-backends
807 (org-remove-if-not
808 (lambda (backend)
809 (let ((name (org-export-backend-name backend)))
810 (or (memq name val)
811 (catch 'parentp
812 (dolist (b val)
813 (and (org-export-derived-backend-p b name)
814 (throw 'parentp t)))))))
815 org-export--registered-backends))
816 ;; Now build NEW-LIST of both new back-ends and required
817 ;; parents.
818 (let ((new-list (mapcar 'org-export-backend-name
819 org-export--registered-backends)))
820 (dolist (backend val)
821 (cond
822 ((not (load (format "ox-%s" backend) t t))
823 (message "Problems while trying to load export back-end `%s'"
824 backend))
825 ((not (memq backend new-list)) (push backend new-list))))
826 ;; Set VAR to that list with fixed dependencies.
827 (set-default var new-list))))
828 :type '(set :greedy t
829 (const :tag " ascii Export buffer to ASCII format" ascii)
830 (const :tag " beamer Export buffer to Beamer presentation" beamer)
831 (const :tag " html Export buffer to HTML format" html)
832 (const :tag " icalendar Export buffer to iCalendar format" icalendar)
833 (const :tag " latex Export buffer to LaTeX format" latex)
834 (const :tag " man Export buffer to MAN format" man)
835 (const :tag " md Export buffer to Markdown format" md)
836 (const :tag " odt Export buffer to ODT format" odt)
837 (const :tag " org Export buffer to Org format" org)
838 (const :tag " texinfo Export buffer to Texinfo format" texinfo)
839 (const :tag "C confluence Export buffer to Confluence Wiki format" confluence)
840 (const :tag "C deck Export buffer to deck.js presentations" deck)
841 (const :tag "C freemind Export buffer to Freemind mindmap format" freemind)
842 (const :tag "C groff Export buffer to Groff format" groff)
843 (const :tag "C koma-letter Export buffer to KOMA Scrlttrl2 format" koma-letter)
844 (const :tag "C RSS 2.0 Export buffer to RSS 2.0 format" rss)
845 (const :tag "C s5 Export buffer to s5 presentations" s5)
846 (const :tag "C taskjuggler Export buffer to TaskJuggler format" taskjuggler)))
848 (eval-after-load 'ox
849 '(mapc
850 (lambda (backend)
851 (condition-case nil (require (intern (format "ox-%s" backend)))
852 (error (message "Problems while trying to load export back-end `%s'"
853 backend))))
854 org-export-backends))
856 (defcustom org-support-shift-select nil
857 "Non-nil means make shift-cursor commands select text when possible.
859 In Emacs 23, when `shift-select-mode' is on, shifted cursor keys
860 start selecting a region, or enlarge regions started in this way.
861 In Org-mode, in special contexts, these same keys are used for
862 other purposes, important enough to compete with shift selection.
863 Org tries to balance these needs by supporting `shift-select-mode'
864 outside these special contexts, under control of this variable.
866 The default of this variable is nil, to avoid confusing behavior. Shifted
867 cursor keys will then execute Org commands in the following contexts:
868 - on a headline, changing TODO state (left/right) and priority (up/down)
869 - on a time stamp, changing the time
870 - in a plain list item, changing the bullet type
871 - in a property definition line, switching between allowed values
872 - in the BEGIN line of a clock table (changing the time block).
873 Outside these contexts, the commands will throw an error.
875 When this variable is t and the cursor is not in a special
876 context, Org-mode will support shift-selection for making and
877 enlarging regions. To make this more effective, the bullet
878 cycling will no longer happen anywhere in an item line, but only
879 if the cursor is exactly on the bullet.
881 If you set this variable to the symbol `always', then the keys
882 will not be special in headlines, property lines, and item lines,
883 to make shift selection work there as well. If this is what you
884 want, you can use the following alternative commands: `C-c C-t'
885 and `C-c ,' to change TODO state and priority, `C-u C-u C-c C-t'
886 can be used to switch TODO sets, `C-c -' to cycle item bullet
887 types, and properties can be edited by hand or in column view.
889 However, when the cursor is on a timestamp, shift-cursor commands
890 will still edit the time stamp - this is just too good to give up.
892 XEmacs user should have this variable set to nil, because
893 `shift-select-mode' is in Emacs 23 or later only."
894 :group 'org
895 :type '(choice
896 (const :tag "Never" nil)
897 (const :tag "When outside special context" t)
898 (const :tag "Everywhere except timestamps" always)))
900 (defcustom org-loop-over-headlines-in-active-region nil
901 "Shall some commands act upon headlines in the active region?
903 When set to `t', some commands will be performed in all headlines
904 within the active region.
906 When set to `start-level', some commands will be performed in all
907 headlines within the active region, provided that these headlines
908 are of the same level than the first one.
910 When set to a string, those commands will be performed on the
911 matching headlines within the active region. Such string must be
912 a tags/property/todo match as it is used in the agenda tags view.
914 The list of commands is: `org-schedule', `org-deadline',
915 `org-todo', `org-archive-subtree', `org-archive-set-tag' and
916 `org-archive-to-archive-sibling'. The archiving commands skip
917 already archived entries."
918 :type '(choice (const :tag "Don't loop" nil)
919 (const :tag "All headlines in active region" t)
920 (const :tag "In active region, headlines at the same level than the first one" start-level)
921 (string :tag "Tags/Property/Todo matcher"))
922 :version "24.1"
923 :group 'org-todo
924 :group 'org-archive)
926 (defgroup org-startup nil
927 "Options concerning startup of Org-mode."
928 :tag "Org Startup"
929 :group 'org)
931 (defcustom org-startup-folded t
932 "Non-nil means entering Org-mode will switch to OVERVIEW.
933 This can also be configured on a per-file basis by adding one of
934 the following lines anywhere in the buffer:
936 #+STARTUP: fold (or `overview', this is equivalent)
937 #+STARTUP: nofold (or `showall', this is equivalent)
938 #+STARTUP: content
939 #+STARTUP: showeverything
941 By default, this option is ignored when Org opens agenda files
942 for the first time. If you want the agenda to honor the startup
943 option, set `org-agenda-inhibit-startup' to nil."
944 :group 'org-startup
945 :type '(choice
946 (const :tag "nofold: show all" nil)
947 (const :tag "fold: overview" t)
948 (const :tag "content: all headlines" content)
949 (const :tag "show everything, even drawers" showeverything)))
951 (defcustom org-startup-truncated t
952 "Non-nil means entering Org-mode will set `truncate-lines'.
953 This is useful since some lines containing links can be very long and
954 uninteresting. Also tables look terrible when wrapped."
955 :group 'org-startup
956 :type 'boolean)
958 (defcustom org-startup-indented nil
959 "Non-nil means turn on `org-indent-mode' on startup.
960 This can also be configured on a per-file basis by adding one of
961 the following lines anywhere in the buffer:
963 #+STARTUP: indent
964 #+STARTUP: noindent"
965 :group 'org-structure
966 :type '(choice
967 (const :tag "Not" nil)
968 (const :tag "Globally (slow on startup in large files)" t)))
970 (defcustom org-use-sub-superscripts t
971 "Non-nil means interpret \"_\" and \"^\" for display.
973 If you want to control how Org exports those characters, see
974 `org-export-with-sub-superscripts'. `org-use-sub-superscripts'
975 used to be an alias for `org-export-with-sub-superscripts' in
976 Org <8.0, it is not anymore.
978 When this option is turned on, you can use TeX-like syntax for
979 sub- and superscripts within the buffer. Several characters after
980 \"_\" or \"^\" will be considered as a single item - so grouping
981 with {} is normally not needed. For example, the following things
982 will be parsed as single sub- or superscripts:
984 10^24 or 10^tau several digits will be considered 1 item.
985 10^-12 or 10^-tau a leading sign with digits or a word
986 x^2-y^3 will be read as x^2 - y^3, because items are
987 terminated by almost any nonword/nondigit char.
988 x_{i^2} or x^(2-i) braces or parenthesis do grouping.
990 Still, ambiguity is possible. So when in doubt, use {} to enclose
991 the sub/superscript. If you set this variable to the symbol `{}',
992 the braces are *required* in order to trigger interpretations as
993 sub/superscript. This can be helpful in documents that need \"_\"
994 frequently in plain text."
995 :group 'org-startup
996 :version "24.4"
997 :package-version '(Org . "8.0")
998 :type '(choice
999 (const :tag "Always interpret" t)
1000 (const :tag "Only with braces" {})
1001 (const :tag "Never interpret" nil)))
1003 (defcustom org-startup-with-beamer-mode nil
1004 "Non-nil means turn on `org-beamer-mode' on startup.
1005 This can also be configured on a per-file basis by adding one of
1006 the following lines anywhere in the buffer:
1008 #+STARTUP: beamer"
1009 :group 'org-startup
1010 :version "24.1"
1011 :type 'boolean)
1013 (defcustom org-startup-align-all-tables nil
1014 "Non-nil means align all tables when visiting a file.
1015 This is useful when the column width in tables is forced with <N> cookies
1016 in table fields. Such tables will look correct only after the first re-align.
1017 This can also be configured on a per-file basis by adding one of
1018 the following lines anywhere in the buffer:
1019 #+STARTUP: align
1020 #+STARTUP: noalign"
1021 :group 'org-startup
1022 :type 'boolean)
1024 (defcustom org-startup-with-inline-images nil
1025 "Non-nil means show inline images when loading a new Org file.
1026 This can also be configured on a per-file basis by adding one of
1027 the following lines anywhere in the buffer:
1028 #+STARTUP: inlineimages
1029 #+STARTUP: noinlineimages"
1030 :group 'org-startup
1031 :version "24.1"
1032 :type 'boolean)
1034 (defcustom org-startup-with-latex-preview nil
1035 "Non-nil means preview LaTeX fragments when loading a new Org file.
1037 This can also be configured on a per-file basis by adding one of
1038 the following lines anywhere in the buffer:
1039 #+STARTUP: latexpreview
1040 #+STARTUP: nolatexpreview"
1041 :group 'org-startup
1042 :version "24.4"
1043 :package-version '(Org . "8.0")
1044 :type 'boolean)
1046 (defcustom org-insert-mode-line-in-empty-file nil
1047 "Non-nil means insert the first line setting Org-mode in empty files.
1048 When the function `org-mode' is called interactively in an empty file, this
1049 normally means that the file name does not automatically trigger Org-mode.
1050 To ensure that the file will always be in Org-mode in the future, a
1051 line enforcing Org-mode will be inserted into the buffer, if this option
1052 has been set."
1053 :group 'org-startup
1054 :type 'boolean)
1056 (defcustom org-replace-disputed-keys nil
1057 "Non-nil means use alternative key bindings for some keys.
1058 Org-mode uses S-<cursor> keys for changing timestamps and priorities.
1059 These keys are also used by other packages like shift-selection-mode'
1060 \(built into Emacs 23), `CUA-mode' or `windmove.el'.
1061 If you want to use Org-mode together with one of these other modes,
1062 or more generally if you would like to move some Org-mode commands to
1063 other keys, set this variable and configure the keys with the variable
1064 `org-disputed-keys'.
1066 This option is only relevant at load-time of Org-mode, and must be set
1067 *before* org.el is loaded. Changing it requires a restart of Emacs to
1068 become effective."
1069 :group 'org-startup
1070 :type 'boolean)
1072 (defcustom org-use-extra-keys nil
1073 "Non-nil means use extra key sequence definitions for certain commands.
1074 This happens automatically if you run XEmacs or if `window-system'
1075 is nil. This variable lets you do the same manually. You must
1076 set it before loading org.
1078 Example: on Carbon Emacs 22 running graphically, with an external
1079 keyboard on a Powerbook, the default way of setting M-left might
1080 not work for either Alt or ESC. Setting this variable will make
1081 it work for ESC."
1082 :group 'org-startup
1083 :type 'boolean)
1085 (org-defvaralias 'org-CUA-compatible 'org-replace-disputed-keys)
1087 (defcustom org-disputed-keys
1088 '(([(shift up)] . [(meta p)])
1089 ([(shift down)] . [(meta n)])
1090 ([(shift left)] . [(meta -)])
1091 ([(shift right)] . [(meta +)])
1092 ([(control shift right)] . [(meta shift +)])
1093 ([(control shift left)] . [(meta shift -)]))
1094 "Keys for which Org-mode and other modes compete.
1095 This is an alist, cars are the default keys, second element specifies
1096 the alternative to use when `org-replace-disputed-keys' is t.
1098 Keys can be specified in any syntax supported by `define-key'.
1099 The value of this option takes effect only at Org-mode's startup,
1100 therefore you'll have to restart Emacs to apply it after changing."
1101 :group 'org-startup
1102 :type 'alist)
1104 (defun org-key (key)
1105 "Select key according to `org-replace-disputed-keys' and `org-disputed-keys'.
1106 Or return the original if not disputed.
1107 Also apply the translations defined in `org-xemacs-key-equivalents'."
1108 (when org-replace-disputed-keys
1109 (let* ((nkey (key-description key))
1110 (x (org-find-if (lambda (x)
1111 (equal (key-description (car x)) nkey))
1112 org-disputed-keys)))
1113 (setq key (if x (cdr x) key))))
1114 (when (featurep 'xemacs)
1115 (setq key (or (cdr (assoc key org-xemacs-key-equivalents)) key)))
1116 key)
1118 (defun org-find-if (predicate seq)
1119 (catch 'exit
1120 (while seq
1121 (if (funcall predicate (car seq))
1122 (throw 'exit (car seq))
1123 (pop seq)))))
1125 (defun org-defkey (keymap key def)
1126 "Define a key, possibly translated, as returned by `org-key'."
1127 (define-key keymap (org-key key) def))
1129 (defcustom org-ellipsis nil
1130 "The ellipsis to use in the Org-mode outline.
1131 When nil, just use the standard three dots.
1132 When a string, use that string instead.
1133 When a face, use the standard 3 dots, but with the specified face.
1134 The change affects only Org-mode (which will then use its own display table).
1135 Changing this requires executing \\[org-mode] in a buffer to become
1136 effective."
1137 :group 'org-startup
1138 :type '(choice (const :tag "Default" nil)
1139 (face :tag "Face" :value org-warning)
1140 (string :tag "String" :value "...#")))
1142 (defvar org-display-table nil
1143 "The display table for org-mode, in case `org-ellipsis' is non-nil.")
1145 (defgroup org-keywords nil
1146 "Keywords in Org-mode."
1147 :tag "Org Keywords"
1148 :group 'org)
1150 (defcustom org-closed-keep-when-no-todo nil
1151 "Remove CLOSED: time-stamp when switching back to a non-todo state?"
1152 :group 'org-todo
1153 :group 'org-keywords
1154 :version "24.4"
1155 :package-version '(Org . "8.0")
1156 :type 'boolean)
1158 (defgroup org-structure nil
1159 "Options concerning the general structure of Org-mode files."
1160 :tag "Org Structure"
1161 :group 'org)
1163 (defgroup org-reveal-location nil
1164 "Options about how to make context of a location visible."
1165 :tag "Org Reveal Location"
1166 :group 'org-structure)
1168 (defconst org-context-choice
1169 '(choice
1170 (const :tag "Always" t)
1171 (const :tag "Never" nil)
1172 (repeat :greedy t :tag "Individual contexts"
1173 (cons
1174 (choice :tag "Context"
1175 (const agenda)
1176 (const org-goto)
1177 (const occur-tree)
1178 (const tags-tree)
1179 (const link-search)
1180 (const mark-goto)
1181 (const bookmark-jump)
1182 (const isearch)
1183 (const default))
1184 (boolean))))
1185 "Contexts for the reveal options.")
1187 (defcustom org-show-hierarchy-above '((default . t))
1188 "Non-nil means show full hierarchy when revealing a location.
1189 Org-mode often shows locations in an org-mode file which might have
1190 been invisible before. When this is set, the hierarchy of headings
1191 above the exposed location is shown.
1192 Turning this off for example for sparse trees makes them very compact.
1193 Instead of t, this can also be an alist specifying this option for different
1194 contexts. Valid contexts are
1195 agenda when exposing an entry from the agenda
1196 org-goto when using the command `org-goto' on key C-c C-j
1197 occur-tree when using the command `org-occur' on key C-c /
1198 tags-tree when constructing a sparse tree based on tags matches
1199 link-search when exposing search matches associated with a link
1200 mark-goto when exposing the jump goal of a mark
1201 bookmark-jump when exposing a bookmark location
1202 isearch when exiting from an incremental search
1203 default default for all contexts not set explicitly"
1204 :group 'org-reveal-location
1205 :type org-context-choice)
1207 (defcustom org-show-following-heading '((default . nil))
1208 "Non-nil means show following heading when revealing a location.
1209 Org-mode often shows locations in an org-mode file which might have
1210 been invisible before. When this is set, the heading following the
1211 match is shown.
1212 Turning this off for example for sparse trees makes them very compact,
1213 but makes it harder to edit the location of the match. In such a case,
1214 use the command \\[org-reveal] to show more context.
1215 Instead of t, this can also be an alist specifying this option for different
1216 contexts. See `org-show-hierarchy-above' for valid contexts."
1217 :group 'org-reveal-location
1218 :type org-context-choice)
1220 (defcustom org-show-siblings '((default . nil) (isearch t) (bookmark-jump t))
1221 "Non-nil means show all sibling heading when revealing a location.
1222 Org-mode often shows locations in an org-mode file which might have
1223 been invisible before. When this is set, the sibling of the current entry
1224 heading are all made visible. If `org-show-hierarchy-above' is t,
1225 the same happens on each level of the hierarchy above the current entry.
1227 By default this is on for the isearch context, off for all other contexts.
1228 Turning this off for example for sparse trees makes them very compact,
1229 but makes it harder to edit the location of the match. In such a case,
1230 use the command \\[org-reveal] to show more context.
1231 Instead of t, this can also be an alist specifying this option for different
1232 contexts. See `org-show-hierarchy-above' for valid contexts."
1233 :group 'org-reveal-location
1234 :type org-context-choice
1235 :version "24.4"
1236 :package-version '(Org . "8.0"))
1238 (defcustom org-show-entry-below '((default . nil))
1239 "Non-nil means show the entry below a headline when revealing a location.
1240 Org-mode often shows locations in an org-mode file which might have
1241 been invisible before. When this is set, the text below the headline that is
1242 exposed is also shown.
1244 By default this is off for all contexts.
1245 Instead of t, this can also be an alist specifying this option for different
1246 contexts. See `org-show-hierarchy-above' for valid contexts."
1247 :group 'org-reveal-location
1248 :type org-context-choice)
1250 (defcustom org-indirect-buffer-display 'other-window
1251 "How should indirect tree buffers be displayed?
1252 This applies to indirect buffers created with the commands
1253 \\[org-tree-to-indirect-buffer] and \\[org-agenda-tree-to-indirect-buffer].
1254 Valid values are:
1255 current-window Display in the current window
1256 other-window Just display in another window.
1257 dedicated-frame Create one new frame, and re-use it each time.
1258 new-frame Make a new frame each time. Note that in this case
1259 previously-made indirect buffers are kept, and you need to
1260 kill these buffers yourself."
1261 :group 'org-structure
1262 :group 'org-agenda-windows
1263 :type '(choice
1264 (const :tag "In current window" current-window)
1265 (const :tag "In current frame, other window" other-window)
1266 (const :tag "Each time a new frame" new-frame)
1267 (const :tag "One dedicated frame" dedicated-frame)))
1269 (defcustom org-use-speed-commands nil
1270 "Non-nil means activate single letter commands at beginning of a headline.
1271 This may also be a function to test for appropriate locations where speed
1272 commands should be active.
1274 For example, to activate speed commands when the point is on any
1275 star at the beginning of the headline, you can do this:
1277 (setq org-use-speed-commands
1278 (lambda () (and (looking-at org-outline-regexp) (looking-back \"^\\**\"))))"
1279 :group 'org-structure
1280 :type '(choice
1281 (const :tag "Never" nil)
1282 (const :tag "At beginning of headline stars" t)
1283 (function)))
1285 (defcustom org-speed-commands-user nil
1286 "Alist of additional speed commands.
1287 This list will be checked before `org-speed-commands-default'
1288 when the variable `org-use-speed-commands' is non-nil
1289 and when the cursor is at the beginning of a headline.
1290 The car if each entry is a string with a single letter, which must
1291 be assigned to `self-insert-command' in the global map.
1292 The cdr is either a command to be called interactively, a function
1293 to be called, or a form to be evaluated.
1294 An entry that is just a list with a single string will be interpreted
1295 as a descriptive headline that will be added when listing the speed
1296 commands in the Help buffer using the `?' speed command."
1297 :group 'org-structure
1298 :type '(repeat :value ("k" . ignore)
1299 (choice :value ("k" . ignore)
1300 (list :tag "Descriptive Headline" (string :tag "Headline"))
1301 (cons :tag "Letter and Command"
1302 (string :tag "Command letter")
1303 (choice
1304 (function)
1305 (sexp))))))
1307 (defcustom org-bookmark-names-plist
1308 '(:last-capture "org-capture-last-stored"
1309 :last-refile "org-refile-last-stored"
1310 :last-capture-marker "org-capture-last-stored-marker")
1311 "Names for bookmarks automatically set by some Org commands.
1312 This can provide strings as names for a number of bookmarks Org sets
1313 automatically. The following keys are currently implemented:
1314 :last-capture
1315 :last-capture-marker
1316 :last-refile
1317 When a key does not show up in the property list, the corresponding bookmark
1318 is not set."
1319 :group 'org-structure
1320 :type 'plist)
1322 (defgroup org-cycle nil
1323 "Options concerning visibility cycling in Org-mode."
1324 :tag "Org Cycle"
1325 :group 'org-structure)
1327 (defcustom org-cycle-skip-children-state-if-no-children t
1328 "Non-nil means skip CHILDREN state in entries that don't have any."
1329 :group 'org-cycle
1330 :type 'boolean)
1332 (defcustom org-cycle-max-level nil
1333 "Maximum level which should still be subject to visibility cycling.
1334 Levels higher than this will, for cycling, be treated as text, not a headline.
1335 When `org-odd-levels-only' is set, a value of N in this variable actually
1336 means 2N-1 stars as the limiting headline.
1337 When nil, cycle all levels.
1338 Note that the limiting level of cycling is also influenced by
1339 `org-inlinetask-min-level'. When `org-cycle-max-level' is not set but
1340 `org-inlinetask-min-level' is, cycling will be limited to levels one less
1341 than its value."
1342 :group 'org-cycle
1343 :type '(choice
1344 (const :tag "No limit" nil)
1345 (integer :tag "Maximum level")))
1347 (defcustom org-hide-block-startup nil
1348 "Non-nil means entering Org-mode will fold all blocks.
1349 This can also be set in on a per-file basis with
1351 #+STARTUP: hideblocks
1352 #+STARTUP: showblocks"
1353 :group 'org-startup
1354 :group 'org-cycle
1355 :type 'boolean)
1357 (defcustom org-cycle-global-at-bob nil
1358 "Cycle globally if cursor is at beginning of buffer and not at a headline.
1359 This makes it possible to do global cycling without having to use S-TAB or
1360 \\[universal-argument] TAB. For this special case to work, the first line
1361 of the buffer must not be a headline -- it may be empty or some other text.
1362 When used in this way, `org-cycle-hook' is disabled temporarily to make
1363 sure the cursor stays at the beginning of the buffer. When this option is
1364 nil, don't do anything special at the beginning of the buffer."
1365 :group 'org-cycle
1366 :type 'boolean)
1368 (defcustom org-cycle-level-after-item/entry-creation t
1369 "Non-nil means cycle entry level or item indentation in new empty entries.
1371 When the cursor is at the end of an empty headline, i.e., with only stars
1372 and maybe a TODO keyword, TAB will then switch the entry to become a child,
1373 and then all possible ancestor states, before returning to the original state.
1374 This makes data entry extremely fast: M-RET to create a new headline,
1375 on TAB to make it a child, two or more tabs to make it a (grand-)uncle.
1377 When the cursor is at the end of an empty plain list item, one TAB will
1378 make it a subitem, two or more tabs will back up to make this an item
1379 higher up in the item hierarchy."
1380 :group 'org-cycle
1381 :type 'boolean)
1383 (defcustom org-cycle-emulate-tab t
1384 "Where should `org-cycle' emulate TAB.
1385 nil Never
1386 white Only in completely white lines
1387 whitestart Only at the beginning of lines, before the first non-white char
1388 t Everywhere except in headlines
1389 exc-hl-bol Everywhere except at the start of a headline
1390 If TAB is used in a place where it does not emulate TAB, the current subtree
1391 visibility is cycled."
1392 :group 'org-cycle
1393 :type '(choice (const :tag "Never" nil)
1394 (const :tag "Only in completely white lines" white)
1395 (const :tag "Before first char in a line" whitestart)
1396 (const :tag "Everywhere except in headlines" t)
1397 (const :tag "Everywhere except at bol in headlines" exc-hl-bol)))
1399 (defcustom org-cycle-separator-lines 2
1400 "Number of empty lines needed to keep an empty line between collapsed trees.
1401 If you leave an empty line between the end of a subtree and the following
1402 headline, this empty line is hidden when the subtree is folded.
1403 Org-mode will leave (exactly) one empty line visible if the number of
1404 empty lines is equal or larger to the number given in this variable.
1405 So the default 2 means at least 2 empty lines after the end of a subtree
1406 are needed to produce free space between a collapsed subtree and the
1407 following headline.
1409 If the number is negative, and the number of empty lines is at least -N,
1410 all empty lines are shown.
1412 Special case: when 0, never leave empty lines in collapsed view."
1413 :group 'org-cycle
1414 :type 'integer)
1415 (put 'org-cycle-separator-lines 'safe-local-variable 'integerp)
1417 (defcustom org-pre-cycle-hook nil
1418 "Hook that is run before visibility cycling is happening.
1419 The function(s) in this hook must accept a single argument which indicates
1420 the new state that will be set right after running this hook. The
1421 argument is a symbol. Before a global state change, it can have the values
1422 `overview', `content', or `all'. Before a local state change, it can have
1423 the values `folded', `children', or `subtree'."
1424 :group 'org-cycle
1425 :type 'hook)
1427 (defcustom org-cycle-hook '(org-cycle-hide-archived-subtrees
1428 org-cycle-hide-drawers
1429 org-cycle-hide-inline-tasks
1430 org-cycle-show-empty-lines
1431 org-optimize-window-after-visibility-change)
1432 "Hook that is run after `org-cycle' has changed the buffer visibility.
1433 The function(s) in this hook must accept a single argument which indicates
1434 the new state that was set by the most recent `org-cycle' command. The
1435 argument is a symbol. After a global state change, it can have the values
1436 `overview', `contents', or `all'. After a local state change, it can have
1437 the values `folded', `children', or `subtree'."
1438 :group 'org-cycle
1439 :type 'hook)
1441 (defgroup org-edit-structure nil
1442 "Options concerning structure editing in Org-mode."
1443 :tag "Org Edit Structure"
1444 :group 'org-structure)
1446 (defcustom org-odd-levels-only nil
1447 "Non-nil means skip even levels and only use odd levels for the outline.
1448 This has the effect that two stars are being added/taken away in
1449 promotion/demotion commands. It also influences how levels are
1450 handled by the exporters.
1451 Changing it requires restart of `font-lock-mode' to become effective
1452 for fontification also in regions already fontified.
1453 You may also set this on a per-file basis by adding one of the following
1454 lines to the buffer:
1456 #+STARTUP: odd
1457 #+STARTUP: oddeven"
1458 :group 'org-edit-structure
1459 :group 'org-appearance
1460 :type 'boolean)
1462 (defcustom org-adapt-indentation t
1463 "Non-nil means adapt indentation to outline node level.
1465 When this variable is set, Org assumes that you write outlines by
1466 indenting text in each node to align with the headline (after the
1467 stars). The following issues are influenced by this variable:
1469 - The indentation is increased by one space in a demotion
1470 command, and decreased by one in a promotion command. However,
1471 in the latter case, if shifting some line in the entry body
1472 would alter document structure (e.g., insert a new headline),
1473 indentation is not changed at all.
1475 - Property drawers and planning information is inserted indented
1476 when this variable is set. When nil, they will not be indented.
1478 - TAB indents a line relative to current level. The lines below
1479 a headline will be indented when this variable is set.
1481 Note that this is all about true indentation, by adding and
1482 removing space characters. See also `org-indent.el' which does
1483 level-dependent indentation in a virtual way, i.e. at display
1484 time in Emacs."
1485 :group 'org-edit-structure
1486 :type 'boolean)
1488 (defcustom org-special-ctrl-a/e nil
1489 "Non-nil means `C-a' and `C-e' behave specially in headlines and items.
1491 When t, `C-a' will bring back the cursor to the beginning of the
1492 headline text, i.e. after the stars and after a possible TODO
1493 keyword. In an item, this will be the position after bullet and
1494 check-box, if any. When the cursor is already at that position,
1495 another `C-a' will bring it to the beginning of the line.
1497 `C-e' will jump to the end of the headline, ignoring the presence
1498 of tags in the headline. A second `C-e' will then jump to the
1499 true end of the line, after any tags. This also means that, when
1500 this variable is non-nil, `C-e' also will never jump beyond the
1501 end of the heading of a folded section, i.e. not after the
1502 ellipses.
1504 When set to the symbol `reversed', the first `C-a' or `C-e' works
1505 normally, going to the true line boundary first. Only a directly
1506 following, identical keypress will bring the cursor to the
1507 special positions.
1509 This may also be a cons cell where the behavior for `C-a' and
1510 `C-e' is set separately."
1511 :group 'org-edit-structure
1512 :type '(choice
1513 (const :tag "off" nil)
1514 (const :tag "on: after stars/bullet and before tags first" t)
1515 (const :tag "reversed: true line boundary first" reversed)
1516 (cons :tag "Set C-a and C-e separately"
1517 (choice :tag "Special C-a"
1518 (const :tag "off" nil)
1519 (const :tag "on: after stars/bullet first" t)
1520 (const :tag "reversed: before stars/bullet first" reversed))
1521 (choice :tag "Special C-e"
1522 (const :tag "off" nil)
1523 (const :tag "on: before tags first" t)
1524 (const :tag "reversed: after tags first" reversed)))))
1525 (org-defvaralias 'org-special-ctrl-a 'org-special-ctrl-a/e)
1527 (defcustom org-special-ctrl-k nil
1528 "Non-nil means `C-k' will behave specially in headlines.
1529 When nil, `C-k' will call the default `kill-line' command.
1530 When t, the following will happen while the cursor is in the headline:
1532 - When the cursor is at the beginning of a headline, kill the entire
1533 line and possible the folded subtree below the line.
1534 - When in the middle of the headline text, kill the headline up to the tags.
1535 - When after the headline text, kill the tags."
1536 :group 'org-edit-structure
1537 :type 'boolean)
1539 (defcustom org-ctrl-k-protect-subtree nil
1540 "Non-nil means, do not delete a hidden subtree with C-k.
1541 When set to the symbol `error', simply throw an error when C-k is
1542 used to kill (part-of) a headline that has hidden text behind it.
1543 Any other non-nil value will result in a query to the user, if it is
1544 OK to kill that hidden subtree. When nil, kill without remorse."
1545 :group 'org-edit-structure
1546 :version "24.1"
1547 :type '(choice
1548 (const :tag "Do not protect hidden subtrees" nil)
1549 (const :tag "Protect hidden subtrees with a security query" t)
1550 (const :tag "Never kill a hidden subtree with C-k" error)))
1552 (defcustom org-special-ctrl-o t
1553 "Non-nil means, make `C-o' insert a row in tables."
1554 :group 'org-edit-structure
1555 :type 'boolean)
1557 (defcustom org-catch-invisible-edits nil
1558 "Check if in invisible region before inserting or deleting a character.
1559 Valid values are:
1561 nil Do not check, so just do invisible edits.
1562 error Throw an error and do nothing.
1563 show Make point visible, and do the requested edit.
1564 show-and-error Make point visible, then throw an error and abort the edit.
1565 smart Make point visible, and do insertion/deletion if it is
1566 adjacent to visible text and the change feels predictable.
1567 Never delete a previously invisible character or add in the
1568 middle or right after an invisible region. Basically, this
1569 allows insertion and backward-delete right before ellipses.
1570 FIXME: maybe in this case we should not even show?"
1571 :group 'org-edit-structure
1572 :version "24.1"
1573 :type '(choice
1574 (const :tag "Do not check" nil)
1575 (const :tag "Throw error when trying to edit" error)
1576 (const :tag "Unhide, but do not do the edit" show-and-error)
1577 (const :tag "Show invisible part and do the edit" show)
1578 (const :tag "Be smart and do the right thing" smart)))
1580 (defcustom org-yank-folded-subtrees t
1581 "Non-nil means when yanking subtrees, fold them.
1582 If the kill is a single subtree, or a sequence of subtrees, i.e. if
1583 it starts with a heading and all other headings in it are either children
1584 or siblings, then fold all the subtrees. However, do this only if no
1585 text after the yank would be swallowed into a folded tree by this action."
1586 :group 'org-edit-structure
1587 :type 'boolean)
1589 (defcustom org-yank-adjusted-subtrees nil
1590 "Non-nil means when yanking subtrees, adjust the level.
1591 With this setting, `org-paste-subtree' is used to insert the subtree, see
1592 this function for details."
1593 :group 'org-edit-structure
1594 :type 'boolean)
1596 (defcustom org-M-RET-may-split-line '((default . t))
1597 "Non-nil means M-RET will split the line at the cursor position.
1598 When nil, it will go to the end of the line before making a
1599 new line.
1600 You may also set this option in a different way for different
1601 contexts. Valid contexts are:
1603 headline when creating a new headline
1604 item when creating a new item
1605 table in a table field
1606 default the value to be used for all contexts not explicitly
1607 customized"
1608 :group 'org-structure
1609 :group 'org-table
1610 :type '(choice
1611 (const :tag "Always" t)
1612 (const :tag "Never" nil)
1613 (repeat :greedy t :tag "Individual contexts"
1614 (cons
1615 (choice :tag "Context"
1616 (const headline)
1617 (const item)
1618 (const table)
1619 (const default))
1620 (boolean)))))
1623 (defcustom org-insert-heading-respect-content nil
1624 "Non-nil means insert new headings after the current subtree.
1625 When nil, the new heading is created directly after the current line.
1626 The commands \\[org-insert-heading-respect-content] and \\[org-insert-todo-heading-respect-content] turn
1627 this variable on for the duration of the command."
1628 :group 'org-structure
1629 :type 'boolean)
1631 (defcustom org-blank-before-new-entry '((heading . auto)
1632 (plain-list-item . auto))
1633 "Should `org-insert-heading' leave a blank line before new heading/item?
1634 The value is an alist, with `heading' and `plain-list-item' as CAR,
1635 and a boolean flag as CDR. The cdr may also be the symbol `auto', in
1636 which case Org will look at the surrounding headings/items and try to
1637 make an intelligent decision whether to insert a blank line or not.
1639 For plain lists, if `org-list-empty-line-terminates-plain-lists' is set,
1640 the setting here is ignored and no empty line is inserted to avoid breaking
1641 the list structure."
1642 :group 'org-edit-structure
1643 :type '(list
1644 (cons (const heading)
1645 (choice (const :tag "Never" nil)
1646 (const :tag "Always" t)
1647 (const :tag "Auto" auto)))
1648 (cons (const plain-list-item)
1649 (choice (const :tag "Never" nil)
1650 (const :tag "Always" t)
1651 (const :tag "Auto" auto)))))
1653 (defcustom org-insert-heading-hook nil
1654 "Hook being run after inserting a new heading."
1655 :group 'org-edit-structure
1656 :type 'hook)
1658 (defcustom org-enable-fixed-width-editor t
1659 "Non-nil means lines starting with \":\" are treated as fixed-width.
1660 This currently only means they are never auto-wrapped.
1661 When nil, such lines will be treated like ordinary lines."
1662 :group 'org-edit-structure
1663 :type 'boolean)
1665 (defcustom org-goto-auto-isearch t
1666 "Non-nil means typing characters in `org-goto' starts incremental search.
1667 When nil, you can use these keybindings to navigate the buffer:
1669 q Quit the org-goto interface
1670 n Go to the next visible heading
1671 p Go to the previous visible heading
1672 f Go one heading forward on same level
1673 b Go one heading backward on same level
1674 u Go one heading up"
1675 :group 'org-edit-structure
1676 :type 'boolean)
1678 (defgroup org-sparse-trees nil
1679 "Options concerning sparse trees in Org-mode."
1680 :tag "Org Sparse Trees"
1681 :group 'org-structure)
1683 (defcustom org-highlight-sparse-tree-matches t
1684 "Non-nil means highlight all matches that define a sparse tree.
1685 The highlights will automatically disappear the next time the buffer is
1686 changed by an edit command."
1687 :group 'org-sparse-trees
1688 :type 'boolean)
1690 (defcustom org-remove-highlights-with-change t
1691 "Non-nil means any change to the buffer will remove temporary highlights.
1692 Such highlights are created by `org-occur' and `org-clock-display'.
1693 When nil, `C-c C-c' needs to be used to get rid of the highlights.
1694 The highlights created by `org-toggle-latex-fragment' always need
1695 `C-c C-x C-l' to be removed."
1696 :group 'org-sparse-trees
1697 :group 'org-time
1698 :type 'boolean)
1701 (defcustom org-occur-hook '(org-first-headline-recenter)
1702 "Hook that is run after `org-occur' has constructed a sparse tree.
1703 This can be used to recenter the window to show as much of the structure
1704 as possible."
1705 :group 'org-sparse-trees
1706 :type 'hook)
1708 (defgroup org-imenu-and-speedbar nil
1709 "Options concerning imenu and speedbar in Org-mode."
1710 :tag "Org Imenu and Speedbar"
1711 :group 'org-structure)
1713 (defcustom org-imenu-depth 2
1714 "The maximum level for Imenu access to Org-mode headlines.
1715 This also applied for speedbar access."
1716 :group 'org-imenu-and-speedbar
1717 :type 'integer)
1719 (defgroup org-table nil
1720 "Options concerning tables in Org-mode."
1721 :tag "Org Table"
1722 :group 'org)
1724 (defcustom org-enable-table-editor 'optimized
1725 "Non-nil means lines starting with \"|\" are handled by the table editor.
1726 When nil, such lines will be treated like ordinary lines.
1728 When equal to the symbol `optimized', the table editor will be optimized to
1729 do the following:
1730 - Automatic overwrite mode in front of whitespace in table fields.
1731 This makes the structure of the table stay in tact as long as the edited
1732 field does not exceed the column width.
1733 - Minimize the number of realigns. Normally, the table is aligned each time
1734 TAB or RET are pressed to move to another field. With optimization this
1735 happens only if changes to a field might have changed the column width.
1736 Optimization requires replacing the functions `self-insert-command',
1737 `delete-char', and `backward-delete-char' in Org-mode buffers, with a
1738 slight (in fact: unnoticeable) speed impact for normal typing. Org-mode is
1739 very good at guessing when a re-align will be necessary, but you can always
1740 force one with \\[org-ctrl-c-ctrl-c].
1742 If you would like to use the optimized version in Org-mode, but the
1743 un-optimized version in OrgTbl-mode, see the variable `orgtbl-optimized'.
1745 This variable can be used to turn on and off the table editor during a session,
1746 but in order to toggle optimization, a restart is required.
1748 See also the variable `org-table-auto-blank-field'."
1749 :group 'org-table
1750 :type '(choice
1751 (const :tag "off" nil)
1752 (const :tag "on" t)
1753 (const :tag "on, optimized" optimized)))
1755 (defcustom org-self-insert-cluster-for-undo (or (featurep 'xemacs)
1756 (version<= emacs-version "24.1"))
1757 "Non-nil means cluster self-insert commands for undo when possible.
1758 If this is set, then, like in the Emacs command loop, 20 consecutive
1759 characters will be undone together.
1760 This is configurable, because there is some impact on typing performance."
1761 :group 'org-table
1762 :type 'boolean)
1764 (defcustom org-table-tab-recognizes-table.el t
1765 "Non-nil means TAB will automatically notice a table.el table.
1766 When it sees such a table, it moves point into it and - if necessary -
1767 calls `table-recognize-table'."
1768 :group 'org-table-editing
1769 :type 'boolean)
1771 (defgroup org-link nil
1772 "Options concerning links in Org-mode."
1773 :tag "Org Link"
1774 :group 'org)
1776 (defvar org-link-abbrev-alist-local nil
1777 "Buffer-local version of `org-link-abbrev-alist', which see.
1778 The value of this is taken from the #+LINK lines.")
1779 (make-variable-buffer-local 'org-link-abbrev-alist-local)
1781 (defcustom org-link-abbrev-alist nil
1782 "Alist of link abbreviations.
1783 The car of each element is a string, to be replaced at the start of a link.
1784 The cdrs are replacement values, like (\"linkkey\" . REPLACE). Abbreviated
1785 links in Org-mode buffers can have an optional tag after a double colon, e.g.
1787 [[linkkey:tag][description]]
1789 The 'linkkey' must be a word word, starting with a letter, followed
1790 by letters, numbers, '-' or '_'.
1792 If REPLACE is a string, the tag will simply be appended to create the link.
1793 If the string contains \"%s\", the tag will be inserted there. If the string
1794 contains \"%h\", it will cause a url-encoded version of the tag to be inserted
1795 at that point (see the function `url-hexify-string'). If the string contains
1796 the specifier \"%(my-function)\", then the custom function `my-function' will
1797 be invoked: this function takes the tag as its only argument and must return
1798 a string.
1800 REPLACE may also be a function that will be called with the tag as the
1801 only argument to create the link, which should be returned as a string.
1803 See the manual for examples."
1804 :group 'org-link
1805 :type '(repeat
1806 (cons
1807 (string :tag "Protocol")
1808 (choice
1809 (string :tag "Format")
1810 (function)))))
1812 (defcustom org-descriptive-links t
1813 "Non-nil means Org will display descriptive links.
1814 E.g. [[http://orgmode.org][Org website]] will be displayed as
1815 \"Org Website\", hiding the link itself and just displaying its
1816 description. When set to `nil', Org will display the full links
1817 literally.
1819 You can interactively set the value of this variable by calling
1820 `org-toggle-link-display' or from the menu Org>Hyperlinks menu."
1821 :group 'org-link
1822 :type 'boolean)
1824 (defcustom org-link-file-path-type 'adaptive
1825 "How the path name in file links should be stored.
1826 Valid values are:
1828 relative Relative to the current directory, i.e. the directory of the file
1829 into which the link is being inserted.
1830 absolute Absolute path, if possible with ~ for home directory.
1831 noabbrev Absolute path, no abbreviation of home directory.
1832 adaptive Use relative path for files in the current directory and sub-
1833 directories of it. For other files, use an absolute path."
1834 :group 'org-link
1835 :type '(choice
1836 (const relative)
1837 (const absolute)
1838 (const noabbrev)
1839 (const adaptive)))
1841 (defvaralias 'org-activate-links 'org-highlight-links)
1842 (defcustom org-highlight-links '(bracket angle plain radio tag date footnote)
1843 "Types of links that should be highlighted in Org-mode files.
1845 This is a list of symbols, each one of them leading to the
1846 highlighting of a certain link type.
1848 You can still open links that are not highlighted.
1850 In principle, it does not hurt to turn on highlighting for all
1851 link types. There may be a small gain when turning off unused
1852 link types. The types are:
1854 bracket The recommended [[link][description]] or [[link]] links with hiding.
1855 angle Links in angular brackets that may contain whitespace like
1856 <bbdb:Carsten Dominik>.
1857 plain Plain links in normal text, no whitespace, like http://google.com.
1858 radio Text that is matched by a radio target, see manual for details.
1859 tag Tag settings in a headline (link to tag search).
1860 date Time stamps (link to calendar).
1861 footnote Footnote labels.
1863 If you set this variable during an Emacs session, use `org-mode-restart'
1864 in the Org buffer so that the change takes effect."
1865 :group 'org-link
1866 :group 'org-appearance
1867 :type '(set :greedy t
1868 (const :tag "Double bracket links" bracket)
1869 (const :tag "Angular bracket links" angle)
1870 (const :tag "Plain text links" plain)
1871 (const :tag "Radio target matches" radio)
1872 (const :tag "Tags" tag)
1873 (const :tag "Timestamps" date)
1874 (const :tag "Footnotes" footnote)))
1876 (defcustom org-make-link-description-function nil
1877 "Function to use for generating link descriptions from links.
1878 When nil, the link location will be used. This function must take
1879 two parameters: the first one is the link, the second one is the
1880 description generated by `org-insert-link'. The function should
1881 return the description to use."
1882 :group 'org-link
1883 :type '(choice (const nil) (function)))
1885 (defgroup org-link-store nil
1886 "Options concerning storing links in Org-mode."
1887 :tag "Org Store Link"
1888 :group 'org-link)
1890 (defcustom org-url-hexify-p t
1891 "When non-nil, hexify URL when creating a link."
1892 :type 'boolean
1893 :version "24.3"
1894 :group 'org-link-store)
1896 (defcustom org-email-link-description-format "Email %c: %.30s"
1897 "Format of the description part of a link to an email or usenet message.
1898 The following %-escapes will be replaced by corresponding information:
1900 %F full \"From\" field
1901 %f name, taken from \"From\" field, address if no name
1902 %T full \"To\" field
1903 %t first name in \"To\" field, address if no name
1904 %c correspondent. Usually \"from NAME\", but if you sent it yourself, it
1905 will be \"to NAME\". See also the variable `org-from-is-user-regexp'.
1906 %s subject
1907 %d date
1908 %m message-id.
1910 You may use normal field width specification between the % and the letter.
1911 This is for example useful to limit the length of the subject.
1913 Examples: \"%f on: %.30s\", \"Email from %f\", \"Email %c\""
1914 :group 'org-link-store
1915 :type 'string)
1917 (defcustom org-from-is-user-regexp
1918 (let (r1 r2)
1919 (when (and user-mail-address (not (string= user-mail-address "")))
1920 (setq r1 (concat "\\<" (regexp-quote user-mail-address) "\\>")))
1921 (when (and user-full-name (not (string= user-full-name "")))
1922 (setq r2 (concat "\\<" (regexp-quote user-full-name) "\\>")))
1923 (if (and r1 r2) (concat r1 "\\|" r2) (or r1 r2)))
1924 "Regexp matched against the \"From:\" header of an email or usenet message.
1925 It should match if the message is from the user him/herself."
1926 :group 'org-link-store
1927 :type 'regexp)
1929 (defcustom org-context-in-file-links t
1930 "Non-nil means file links from `org-store-link' contain context.
1931 A search string will be added to the file name with :: as separator and
1932 used to find the context when the link is activated by the command
1933 `org-open-at-point'. When this option is t, the entire active region
1934 will be placed in the search string of the file link. If set to a
1935 positive integer, only the first n lines of context will be stored.
1937 Using a prefix arg to the command \\[org-store-link] (`org-store-link')
1938 negates this setting for the duration of the command."
1939 :group 'org-link-store
1940 :type '(choice boolean integer))
1942 (defcustom org-keep-stored-link-after-insertion nil
1943 "Non-nil means keep link in list for entire session.
1945 The command `org-store-link' adds a link pointing to the current
1946 location to an internal list. These links accumulate during a session.
1947 The command `org-insert-link' can be used to insert links into any
1948 Org-mode file (offering completion for all stored links). When this
1949 option is nil, every link which has been inserted once using \\[org-insert-link]
1950 will be removed from the list, to make completing the unused links
1951 more efficient."
1952 :group 'org-link-store
1953 :type 'boolean)
1955 (defgroup org-link-follow nil
1956 "Options concerning following links in Org-mode."
1957 :tag "Org Follow Link"
1958 :group 'org-link)
1960 (defcustom org-link-translation-function nil
1961 "Function to translate links with different syntax to Org syntax.
1962 This can be used to translate links created for example by the Planner
1963 or emacs-wiki packages to Org syntax.
1964 The function must accept two parameters, a TYPE containing the link
1965 protocol name like \"rmail\" or \"gnus\" as a string, and the linked path,
1966 which is everything after the link protocol. It should return a cons
1967 with possibly modified values of type and path.
1968 Org contains a function for this, so if you set this variable to
1969 `org-translate-link-from-planner', you should be able follow many
1970 links created by planner."
1971 :group 'org-link-follow
1972 :type '(choice (const nil) (function)))
1974 (defcustom org-follow-link-hook nil
1975 "Hook that is run after a link has been followed."
1976 :group 'org-link-follow
1977 :type 'hook)
1979 (defcustom org-tab-follows-link nil
1980 "Non-nil means on links TAB will follow the link.
1981 Needs to be set before org.el is loaded.
1982 This really should not be used, it does not make sense, and the
1983 implementation is bad."
1984 :group 'org-link-follow
1985 :type 'boolean)
1987 (defcustom org-return-follows-link nil
1988 "Non-nil means on links RET will follow the link.
1989 In tables, the special behavior of RET has precedence."
1990 :group 'org-link-follow
1991 :type 'boolean)
1993 (defcustom org-mouse-1-follows-link
1994 (if (boundp 'mouse-1-click-follows-link) mouse-1-click-follows-link t)
1995 "Non-nil means mouse-1 on a link will follow the link.
1996 A longer mouse click will still set point. Does not work on XEmacs.
1997 Needs to be set before org.el is loaded."
1998 :group 'org-link-follow
1999 :version "24.4"
2000 :package-version '(Org . "8.3")
2001 :type '(choice
2002 (const :tag "A double click follows the link" double)
2003 (const :tag "Unconditionally follow the link with mouse-1" t)
2004 (integer :tag "mouse-1 click does not follow the link if longer than N ms" 450)))
2006 (defcustom org-mark-ring-length 4
2007 "Number of different positions to be recorded in the ring.
2008 Changing this requires a restart of Emacs to work correctly."
2009 :group 'org-link-follow
2010 :type 'integer)
2012 (defcustom org-link-search-must-match-exact-headline 'query-to-create
2013 "Non-nil means internal links in Org files must exactly match a headline.
2014 When nil, the link search tries to match a phrase with all words
2015 in the search text."
2016 :group 'org-link-follow
2017 :version "24.1"
2018 :type '(choice
2019 (const :tag "Use fuzzy text search" nil)
2020 (const :tag "Match only exact headline" t)
2021 (const :tag "Match exact headline or query to create it"
2022 query-to-create)))
2024 (defcustom org-link-frame-setup
2025 '((vm . vm-visit-folder-other-frame)
2026 (vm-imap . vm-visit-imap-folder-other-frame)
2027 (gnus . org-gnus-no-new-news)
2028 (file . find-file-other-window)
2029 (wl . wl-other-frame))
2030 "Setup the frame configuration for following links.
2031 When following a link with Emacs, it may often be useful to display
2032 this link in another window or frame. This variable can be used to
2033 set this up for the different types of links.
2034 For VM, use any of
2035 `vm-visit-folder'
2036 `vm-visit-folder-other-window'
2037 `vm-visit-folder-other-frame'
2038 For Gnus, use any of
2039 `gnus'
2040 `gnus-other-frame'
2041 `org-gnus-no-new-news'
2042 For FILE, use any of
2043 `find-file'
2044 `find-file-other-window'
2045 `find-file-other-frame'
2046 For Wanderlust use any of
2047 `wl'
2048 `wl-other-frame'
2049 For the calendar, use the variable `calendar-setup'.
2050 For BBDB, it is currently only possible to display the matches in
2051 another window."
2052 :group 'org-link-follow
2053 :type '(list
2054 (cons (const vm)
2055 (choice
2056 (const vm-visit-folder)
2057 (const vm-visit-folder-other-window)
2058 (const vm-visit-folder-other-frame)))
2059 (cons (const vm-imap)
2060 (choice
2061 (const vm-visit-imap-folder)
2062 (const vm-visit-imap-folder-other-window)
2063 (const vm-visit-imap-folder-other-frame)))
2064 (cons (const gnus)
2065 (choice
2066 (const gnus)
2067 (const gnus-other-frame)
2068 (const org-gnus-no-new-news)))
2069 (cons (const file)
2070 (choice
2071 (const find-file)
2072 (const find-file-other-window)
2073 (const find-file-other-frame)))
2074 (cons (const wl)
2075 (choice
2076 (const wl)
2077 (const wl-other-frame)))))
2079 (defcustom org-display-internal-link-with-indirect-buffer nil
2080 "Non-nil means use indirect buffer to display infile links.
2081 Activating internal links (from one location in a file to another location
2082 in the same file) normally just jumps to the location. When the link is
2083 activated with a \\[universal-argument] prefix (or with mouse-3), the link \
2084 is displayed in
2085 another window. When this option is set, the other window actually displays
2086 an indirect buffer clone of the current buffer, to avoid any visibility
2087 changes to the current buffer."
2088 :group 'org-link-follow
2089 :type 'boolean)
2091 (defcustom org-open-non-existing-files nil
2092 "Non-nil means `org-open-file' will open non-existing files.
2093 When nil, an error will be generated.
2094 This variable applies only to external applications because they
2095 might choke on non-existing files. If the link is to a file that
2096 will be opened in Emacs, the variable is ignored."
2097 :group 'org-link-follow
2098 :type 'boolean)
2100 (defcustom org-open-directory-means-index-dot-org nil
2101 "Non-nil means a link to a directory really means to index.org.
2102 When nil, following a directory link will run dired or open a finder/explorer
2103 window on that directory."
2104 :group 'org-link-follow
2105 :type 'boolean)
2107 (defcustom org-confirm-shell-link-function 'yes-or-no-p
2108 "Non-nil means ask for confirmation before executing shell links.
2109 Shell links can be dangerous: just think about a link
2111 [[shell:rm -rf ~/*][Google Search]]
2113 This link would show up in your Org-mode document as \"Google Search\",
2114 but really it would remove your entire home directory.
2115 Therefore we advise against setting this variable to nil.
2116 Just change it to `y-or-n-p' if you want to confirm with a
2117 single keystroke rather than having to type \"yes\"."
2118 :group 'org-link-follow
2119 :type '(choice
2120 (const :tag "with yes-or-no (safer)" yes-or-no-p)
2121 (const :tag "with y-or-n (faster)" y-or-n-p)
2122 (const :tag "no confirmation (dangerous)" nil)))
2123 (put 'org-confirm-shell-link-function
2124 'safe-local-variable
2125 (lambda (x) (member x '(yes-or-no-p y-or-n-p))))
2127 (defcustom org-confirm-shell-link-not-regexp ""
2128 "A regexp to skip confirmation for shell links."
2129 :group 'org-link-follow
2130 :version "24.1"
2131 :type 'regexp)
2133 (defcustom org-confirm-elisp-link-function 'yes-or-no-p
2134 "Non-nil means ask for confirmation before executing Emacs Lisp links.
2135 Elisp links can be dangerous: just think about a link
2137 [[elisp:(shell-command \"rm -rf ~/*\")][Google Search]]
2139 This link would show up in your Org-mode document as \"Google Search\",
2140 but really it would remove your entire home directory.
2141 Therefore we advise against setting this variable to nil.
2142 Just change it to `y-or-n-p' if you want to confirm with a
2143 single keystroke rather than having to type \"yes\"."
2144 :group 'org-link-follow
2145 :type '(choice
2146 (const :tag "with yes-or-no (safer)" yes-or-no-p)
2147 (const :tag "with y-or-n (faster)" y-or-n-p)
2148 (const :tag "no confirmation (dangerous)" nil)))
2149 (put 'org-confirm-shell-link-function
2150 'safe-local-variable
2151 (lambda (x) (member x '(yes-or-no-p y-or-n-p))))
2153 (defcustom org-confirm-elisp-link-not-regexp ""
2154 "A regexp to skip confirmation for Elisp links."
2155 :group 'org-link-follow
2156 :version "24.1"
2157 :type 'regexp)
2159 (defconst org-file-apps-defaults-gnu
2160 '((remote . emacs)
2161 (system . mailcap)
2162 (t . mailcap))
2163 "Default file applications on a UNIX or GNU/Linux system.
2164 See `org-file-apps'.")
2166 (defconst org-file-apps-defaults-macosx
2167 '((remote . emacs)
2168 (t . "open %s")
2169 (system . "open %s")
2170 ("ps.gz" . "gv %s")
2171 ("eps.gz" . "gv %s")
2172 ("dvi" . "xdvi %s")
2173 ("fig" . "xfig %s"))
2174 "Default file applications on a MacOS X system.
2175 The system \"open\" is known as a default, but we use X11 applications
2176 for some files for which the OS does not have a good default.
2177 See `org-file-apps'.")
2179 (defconst org-file-apps-defaults-windowsnt
2180 (list
2181 '(remote . emacs)
2182 (cons t
2183 (list (if (featurep 'xemacs)
2184 'mswindows-shell-execute
2185 'w32-shell-execute)
2186 "open" 'file))
2187 (cons 'system
2188 (list (if (featurep 'xemacs)
2189 'mswindows-shell-execute
2190 'w32-shell-execute)
2191 "open" 'file)))
2192 "Default file applications on a Windows NT system.
2193 The system \"open\" is used for most files.
2194 See `org-file-apps'.")
2196 (defcustom org-file-apps
2197 '((auto-mode . emacs)
2198 ("\\.mm\\'" . default)
2199 ("\\.x?html?\\'" . default)
2200 ("\\.pdf\\'" . default))
2201 "External applications for opening `file:path' items in a document.
2202 Org-mode uses system defaults for different file types, but
2203 you can use this variable to set the application for a given file
2204 extension. The entries in this list are cons cells where the car identifies
2205 files and the cdr the corresponding command. Possible values for the
2206 file identifier are
2207 \"string\" A string as a file identifier can be interpreted in different
2208 ways, depending on its contents:
2210 - Alphanumeric characters only:
2211 Match links with this file extension.
2212 Example: (\"pdf\" . \"evince %s\")
2213 to open PDFs with evince.
2215 - Regular expression: Match links where the
2216 filename matches the regexp. If you want to
2217 use groups here, use shy groups.
2219 Example: (\"\\.x?html\\'\" . \"firefox %s\")
2220 (\"\\(?:xhtml\\|html\\)\" . \"firefox %s\")
2221 to open *.html and *.xhtml with firefox.
2223 - Regular expression which contains (non-shy) groups:
2224 Match links where the whole link, including \"::\", and
2225 anything after that, matches the regexp.
2226 In a custom command string, %1, %2, etc. are replaced with
2227 the parts of the link that were matched by the groups.
2228 For backwards compatibility, if a command string is given
2229 that does not use any of the group matches, this case is
2230 handled identically to the second one (i.e. match against
2231 file name only).
2232 In a custom lisp form, you can access the group matches with
2233 (match-string n link).
2235 Example: (\"\\.pdf::\\(\\d+\\)\\'\" . \"evince -p %1 %s\")
2236 to open [[file:document.pdf::5]] with evince at page 5.
2238 `directory' Matches a directory
2239 `remote' Matches a remote file, accessible through tramp or efs.
2240 Remote files most likely should be visited through Emacs
2241 because external applications cannot handle such paths.
2242 `auto-mode' Matches files that are matched by any entry in `auto-mode-alist',
2243 so all files Emacs knows how to handle. Using this with
2244 command `emacs' will open most files in Emacs. Beware that this
2245 will also open html files inside Emacs, unless you add
2246 (\"html\" . default) to the list as well.
2247 t Default for files not matched by any of the other options.
2248 `system' The system command to open files, like `open' on Windows
2249 and Mac OS X, and mailcap under GNU/Linux. This is the command
2250 that will be selected if you call `C-c C-o' with a double
2251 \\[universal-argument] \\[universal-argument] prefix.
2253 Possible values for the command are:
2254 `emacs' The file will be visited by the current Emacs process.
2255 `default' Use the default application for this file type, which is the
2256 association for t in the list, most likely in the system-specific
2257 part.
2258 This can be used to overrule an unwanted setting in the
2259 system-specific variable.
2260 `system' Use the system command for opening files, like \"open\".
2261 This command is specified by the entry whose car is `system'.
2262 Most likely, the system-specific version of this variable
2263 does define this command, but you can overrule/replace it
2264 here.
2265 string A command to be executed by a shell; %s will be replaced
2266 by the path to the file.
2267 sexp A Lisp form which will be evaluated. The file path will
2268 be available in the Lisp variable `file'.
2269 For more examples, see the system specific constants
2270 `org-file-apps-defaults-macosx'
2271 `org-file-apps-defaults-windowsnt'
2272 `org-file-apps-defaults-gnu'."
2273 :group 'org-link-follow
2274 :type '(repeat
2275 (cons (choice :value ""
2276 (string :tag "Extension")
2277 (const :tag "System command to open files" system)
2278 (const :tag "Default for unrecognized files" t)
2279 (const :tag "Remote file" remote)
2280 (const :tag "Links to a directory" directory)
2281 (const :tag "Any files that have Emacs modes"
2282 auto-mode))
2283 (choice :value ""
2284 (const :tag "Visit with Emacs" emacs)
2285 (const :tag "Use default" default)
2286 (const :tag "Use the system command" system)
2287 (string :tag "Command")
2288 (sexp :tag "Lisp form")))))
2290 (defcustom org-doi-server-url "http://dx.doi.org/"
2291 "The URL of the DOI server."
2292 :type 'string
2293 :version "24.3"
2294 :group 'org-link-follow)
2296 (defgroup org-refile nil
2297 "Options concerning refiling entries in Org-mode."
2298 :tag "Org Refile"
2299 :group 'org)
2301 (defcustom org-directory "~/org"
2302 "Directory with org files.
2303 This is just a default location to look for Org files. There is no need
2304 at all to put your files into this directory. It is only used in the
2305 following situations:
2307 1. When a capture template specifies a target file that is not an
2308 absolute path. The path will then be interpreted relative to
2309 `org-directory'
2310 2. When a capture note is filed away in an interactive way (when exiting the
2311 note buffer with `C-1 C-c C-c'. The user is prompted for an org file,
2312 with `org-directory' as the default path."
2313 :group 'org-refile
2314 :group 'org-capture
2315 :type 'directory)
2317 (defcustom org-default-notes-file (convert-standard-filename "~/.notes")
2318 "Default target for storing notes.
2319 Used as a fall back file for org-capture.el, for templates that
2320 do not specify a target file."
2321 :group 'org-refile
2322 :group 'org-capture
2323 :type '(choice
2324 (const :tag "Default from remember-data-file" nil)
2325 file))
2327 (defcustom org-goto-interface 'outline
2328 "The default interface to be used for `org-goto'.
2329 Allowed values are:
2330 outline The interface shows an outline of the relevant file
2331 and the correct heading is found by moving through
2332 the outline or by searching with incremental search.
2333 outline-path-completion Headlines in the current buffer are offered via
2334 completion. This is the interface also used by
2335 the refile command."
2336 :group 'org-refile
2337 :type '(choice
2338 (const :tag "Outline" outline)
2339 (const :tag "Outline-path-completion" outline-path-completion)))
2341 (defcustom org-goto-max-level 5
2342 "Maximum target level when running `org-goto' with refile interface."
2343 :group 'org-refile
2344 :type 'integer)
2346 (defcustom org-reverse-note-order nil
2347 "Non-nil means store new notes at the beginning of a file or entry.
2348 When nil, new notes will be filed to the end of a file or entry.
2349 This can also be a list with cons cells of regular expressions that
2350 are matched against file names, and values."
2351 :group 'org-capture
2352 :group 'org-refile
2353 :type '(choice
2354 (const :tag "Reverse always" t)
2355 (const :tag "Reverse never" nil)
2356 (repeat :tag "By file name regexp"
2357 (cons regexp boolean))))
2359 (defcustom org-log-refile nil
2360 "Information to record when a task is refiled.
2362 Possible values are:
2364 nil Don't add anything
2365 time Add a time stamp to the task
2366 note Prompt for a note and add it with template `org-log-note-headings'
2368 This option can also be set with on a per-file-basis with
2370 #+STARTUP: nologrefile
2371 #+STARTUP: logrefile
2372 #+STARTUP: lognoterefile
2374 You can have local logging settings for a subtree by setting the LOGGING
2375 property to one or more of these keywords.
2377 When bulk-refiling from the agenda, the value `note' is forbidden and
2378 will temporarily be changed to `time'."
2379 :group 'org-refile
2380 :group 'org-progress
2381 :version "24.1"
2382 :type '(choice
2383 (const :tag "No logging" nil)
2384 (const :tag "Record timestamp" time)
2385 (const :tag "Record timestamp with note." note)))
2387 (defcustom org-refile-targets nil
2388 "Targets for refiling entries with \\[org-refile].
2389 This is a list of cons cells. Each cell contains:
2390 - a specification of the files to be considered, either a list of files,
2391 or a symbol whose function or variable value will be used to retrieve
2392 a file name or a list of file names. If you use `org-agenda-files' for
2393 that, all agenda files will be scanned for targets. Nil means consider
2394 headings in the current buffer.
2395 - A specification of how to find candidate refile targets. This may be
2396 any of:
2397 - a cons cell (:tag . \"TAG\") to identify refile targets by a tag.
2398 This tag has to be present in all target headlines, inheritance will
2399 not be considered.
2400 - a cons cell (:todo . \"KEYWORD\") to identify refile targets by
2401 todo keyword.
2402 - a cons cell (:regexp . \"REGEXP\") with a regular expression matching
2403 headlines that are refiling targets.
2404 - a cons cell (:level . N). Any headline of level N is considered a target.
2405 Note that, when `org-odd-levels-only' is set, level corresponds to
2406 order in hierarchy, not to the number of stars.
2407 - a cons cell (:maxlevel . N). Any headline with level <= N is a target.
2408 Note that, when `org-odd-levels-only' is set, level corresponds to
2409 order in hierarchy, not to the number of stars.
2411 Each element of this list generates a set of possible targets.
2412 The union of these sets is presented (with completion) to
2413 the user by `org-refile'.
2415 You can set the variable `org-refile-target-verify-function' to a function
2416 to verify each headline found by the simple criteria above.
2418 When this variable is nil, all top-level headlines in the current buffer
2419 are used, equivalent to the value `((nil . (:level . 1))'."
2420 :group 'org-refile
2421 :type '(repeat
2422 (cons
2423 (choice :value org-agenda-files
2424 (const :tag "All agenda files" org-agenda-files)
2425 (const :tag "Current buffer" nil)
2426 (function) (variable) (file))
2427 (choice :tag "Identify target headline by"
2428 (cons :tag "Specific tag" (const :value :tag) (string))
2429 (cons :tag "TODO keyword" (const :value :todo) (string))
2430 (cons :tag "Regular expression" (const :value :regexp) (regexp))
2431 (cons :tag "Level number" (const :value :level) (integer))
2432 (cons :tag "Max Level number" (const :value :maxlevel) (integer))))))
2434 (defcustom org-refile-target-verify-function nil
2435 "Function to verify if the headline at point should be a refile target.
2436 The function will be called without arguments, with point at the
2437 beginning of the headline. It should return t and leave point
2438 where it is if the headline is a valid target for refiling.
2440 If the target should not be selected, the function must return nil.
2441 In addition to this, it may move point to a place from where the search
2442 should be continued. For example, the function may decide that the entire
2443 subtree of the current entry should be excluded and move point to the end
2444 of the subtree."
2445 :group 'org-refile
2446 :type '(choice
2447 (const nil)
2448 (function)))
2450 (defcustom org-refile-use-cache nil
2451 "Non-nil means cache refile targets to speed up the process.
2452 The cache for a particular file will be updated automatically when
2453 the buffer has been killed, or when any of the marker used for flagging
2454 refile targets no longer points at a live buffer.
2455 If you have added new entries to a buffer that might themselves be targets,
2456 you need to clear the cache manually by pressing `C-0 C-c C-w' or, if you
2457 find that easier, `C-u C-u C-u C-c C-w'."
2458 :group 'org-refile
2459 :version "24.1"
2460 :type 'boolean)
2462 (defcustom org-refile-use-outline-path nil
2463 "Non-nil means provide refile targets as paths.
2464 So a level 3 headline will be available as level1/level2/level3.
2466 When the value is `file', also include the file name (without directory)
2467 into the path. In this case, you can also stop the completion after
2468 the file name, to get entries inserted as top level in the file.
2470 When `full-file-path', include the full file path."
2471 :group 'org-refile
2472 :type '(choice
2473 (const :tag "Not" nil)
2474 (const :tag "Yes" t)
2475 (const :tag "Start with file name" file)
2476 (const :tag "Start with full file path" full-file-path)))
2478 (defcustom org-outline-path-complete-in-steps t
2479 "Non-nil means complete the outline path in hierarchical steps.
2480 When Org-mode uses the refile interface to select an outline path
2481 \(see variable `org-refile-use-outline-path'), the completion of
2482 the path can be done is a single go, or if can be done in steps down
2483 the headline hierarchy. Going in steps is probably the best if you
2484 do not use a special completion package like `ido' or `icicles'.
2485 However, when using these packages, going in one step can be very
2486 fast, while still showing the whole path to the entry."
2487 :group 'org-refile
2488 :type 'boolean)
2490 (defcustom org-refile-allow-creating-parent-nodes nil
2491 "Non-nil means allow to create new nodes as refile targets.
2492 New nodes are then created by adding \"/new node name\" to the completion
2493 of an existing node. When the value of this variable is `confirm',
2494 new node creation must be confirmed by the user (recommended).
2495 When nil, the completion must match an existing entry.
2497 Note that, if the new heading is not seen by the criteria
2498 listed in `org-refile-targets', multiple instances of the same
2499 heading would be created by trying again to file under the new
2500 heading."
2501 :group 'org-refile
2502 :type '(choice
2503 (const :tag "Never" nil)
2504 (const :tag "Always" t)
2505 (const :tag "Prompt for confirmation" confirm)))
2507 (defcustom org-refile-active-region-within-subtree nil
2508 "Non-nil means also refile active region within a subtree.
2510 By default `org-refile' doesn't allow refiling regions if they
2511 don't contain a set of subtrees, but it might be convenient to
2512 do so sometimes: in that case, the first line of the region is
2513 converted to a headline before refiling."
2514 :group 'org-refile
2515 :version "24.1"
2516 :type 'boolean)
2518 (defgroup org-todo nil
2519 "Options concerning TODO items in Org-mode."
2520 :tag "Org TODO"
2521 :group 'org)
2523 (defgroup org-progress nil
2524 "Options concerning Progress logging in Org-mode."
2525 :tag "Org Progress"
2526 :group 'org-time)
2528 (defvar org-todo-interpretation-widgets
2529 '((:tag "Sequence (cycling hits every state)" sequence)
2530 (:tag "Type (cycling directly to DONE)" type))
2531 "The available interpretation symbols for customizing `org-todo-keywords'.
2532 Interested libraries should add to this list.")
2534 (defcustom org-todo-keywords '((sequence "TODO" "DONE"))
2535 "List of TODO entry keyword sequences and their interpretation.
2536 \\<org-mode-map>This is a list of sequences.
2538 Each sequence starts with a symbol, either `sequence' or `type',
2539 indicating if the keywords should be interpreted as a sequence of
2540 action steps, or as different types of TODO items. The first
2541 keywords are states requiring action - these states will select a headline
2542 for inclusion into the global TODO list Org-mode produces. If one of
2543 the \"keywords\" is the vertical bar, \"|\", the remaining keywords
2544 signify that no further action is necessary. If \"|\" is not found,
2545 the last keyword is treated as the only DONE state of the sequence.
2547 The command \\[org-todo] cycles an entry through these states, and one
2548 additional state where no keyword is present. For details about this
2549 cycling, see the manual.
2551 TODO keywords and interpretation can also be set on a per-file basis with
2552 the special #+SEQ_TODO and #+TYP_TODO lines.
2554 Each keyword can optionally specify a character for fast state selection
2555 \(in combination with the variable `org-use-fast-todo-selection')
2556 and specifiers for state change logging, using the same syntax that
2557 is used in the \"#+TODO:\" lines. For example, \"WAIT(w)\" says that
2558 the WAIT state can be selected with the \"w\" key. \"WAIT(w!)\"
2559 indicates to record a time stamp each time this state is selected.
2561 Each keyword may also specify if a timestamp or a note should be
2562 recorded when entering or leaving the state, by adding additional
2563 characters in the parenthesis after the keyword. This looks like this:
2564 \"WAIT(w@/!)\". \"@\" means to add a note (with time), \"!\" means to
2565 record only the time of the state change. With X and Y being either
2566 \"@\" or \"!\", \"X/Y\" means use X when entering the state, and use
2567 Y when leaving the state if and only if the *target* state does not
2568 define X. You may omit any of the fast-selection key or X or /Y,
2569 so WAIT(w@), WAIT(w/@) and WAIT(@/@) are all valid.
2571 For backward compatibility, this variable may also be just a list
2572 of keywords. In this case the interpretation (sequence or type) will be
2573 taken from the (otherwise obsolete) variable `org-todo-interpretation'."
2574 :group 'org-todo
2575 :group 'org-keywords
2576 :type '(choice
2577 (repeat :tag "Old syntax, just keywords"
2578 (string :tag "Keyword"))
2579 (repeat :tag "New syntax"
2580 (cons
2581 (choice
2582 :tag "Interpretation"
2583 ;;Quick and dirty way to see
2584 ;;`org-todo-interpretations'. This takes the
2585 ;;place of item arguments
2586 :convert-widget
2587 (lambda (widget)
2588 (widget-put widget
2589 :args (mapcar
2590 (lambda (x)
2591 (widget-convert
2592 (cons 'const x)))
2593 org-todo-interpretation-widgets))
2594 widget))
2595 (repeat
2596 (string :tag "Keyword"))))))
2598 (defvar org-todo-keywords-1 nil
2599 "All TODO and DONE keywords active in a buffer.")
2600 (make-variable-buffer-local 'org-todo-keywords-1)
2601 (defvar org-todo-keywords-for-agenda nil)
2602 (defvar org-done-keywords-for-agenda nil)
2603 (defvar org-todo-keyword-alist-for-agenda nil)
2604 (defvar org-tag-alist-for-agenda nil
2605 "Alist of all tags from all agenda files.")
2606 (defvar org-tag-groups-alist-for-agenda nil
2607 "Alist of all groups tags from all current agenda files.")
2608 (defvar org-tag-groups-alist nil)
2609 (make-variable-buffer-local 'org-tag-groups-alist)
2610 (defvar org-agenda-contributing-files nil)
2611 (defvar org-not-done-keywords nil)
2612 (make-variable-buffer-local 'org-not-done-keywords)
2613 (defvar org-done-keywords nil)
2614 (make-variable-buffer-local 'org-done-keywords)
2615 (defvar org-todo-heads nil)
2616 (make-variable-buffer-local 'org-todo-heads)
2617 (defvar org-todo-sets nil)
2618 (make-variable-buffer-local 'org-todo-sets)
2619 (defvar org-todo-log-states nil)
2620 (make-variable-buffer-local 'org-todo-log-states)
2621 (defvar org-todo-kwd-alist nil)
2622 (make-variable-buffer-local 'org-todo-kwd-alist)
2623 (defvar org-todo-key-alist nil)
2624 (make-variable-buffer-local 'org-todo-key-alist)
2625 (defvar org-todo-key-trigger nil)
2626 (make-variable-buffer-local 'org-todo-key-trigger)
2628 (defcustom org-todo-interpretation 'sequence
2629 "Controls how TODO keywords are interpreted.
2630 This variable is in principle obsolete and is only used for
2631 backward compatibility, if the interpretation of todo keywords is
2632 not given already in `org-todo-keywords'. See that variable for
2633 more information."
2634 :group 'org-todo
2635 :group 'org-keywords
2636 :type '(choice (const sequence)
2637 (const type)))
2639 (defcustom org-use-fast-todo-selection t
2640 "Non-nil means use the fast todo selection scheme with C-c C-t.
2641 This variable describes if and under what circumstances the cycling
2642 mechanism for TODO keywords will be replaced by a single-key, direct
2643 selection scheme.
2645 When nil, fast selection is never used.
2647 When the symbol `prefix', it will be used when `org-todo' is called
2648 with a prefix argument, i.e. `C-u C-c C-t' in an Org-mode buffer, and
2649 `C-u t' in an agenda buffer.
2651 When t, fast selection is used by default. In this case, the prefix
2652 argument forces cycling instead.
2654 In all cases, the special interface is only used if access keys have
2655 actually been assigned by the user, i.e. if keywords in the configuration
2656 are followed by a letter in parenthesis, like TODO(t)."
2657 :group 'org-todo
2658 :type '(choice
2659 (const :tag "Never" nil)
2660 (const :tag "By default" t)
2661 (const :tag "Only with C-u C-c C-t" prefix)))
2663 (defcustom org-provide-todo-statistics t
2664 "Non-nil means update todo statistics after insert and toggle.
2665 ALL-HEADLINES means update todo statistics by including headlines
2666 with no TODO keyword as well, counting them as not done.
2667 A list of TODO keywords means the same, but skip keywords that are
2668 not in this list.
2669 When set to a list of two lists, the first list contains keywords
2670 to consider as TODO keywords, the second list contains keywords
2671 to consider as DONE keywords.
2673 When this is set, todo statistics is updated in the parent of the
2674 current entry each time a todo state is changed."
2675 :group 'org-todo
2676 :type '(choice
2677 (const :tag "Yes, only for TODO entries" t)
2678 (const :tag "Yes, including all entries" all-headlines)
2679 (repeat :tag "Yes, for TODOs in this list"
2680 (string :tag "TODO keyword"))
2681 (list :tag "Yes, for TODOs and DONEs in these lists"
2682 (repeat (string :tag "TODO keyword"))
2683 (repeat (string :tag "DONE keyword")))
2684 (other :tag "No TODO statistics" nil)))
2686 (defcustom org-hierarchical-todo-statistics t
2687 "Non-nil means TODO statistics covers just direct children.
2688 When nil, all entries in the subtree are considered.
2689 This has only an effect if `org-provide-todo-statistics' is set.
2690 To set this to nil for only a single subtree, use a COOKIE_DATA
2691 property and include the word \"recursive\" into the value."
2692 :group 'org-todo
2693 :type 'boolean)
2695 (defcustom org-after-todo-state-change-hook nil
2696 "Hook which is run after the state of a TODO item was changed.
2697 The new state (a string with a TODO keyword, or nil) is available in the
2698 Lisp variable `org-state'."
2699 :group 'org-todo
2700 :type 'hook)
2702 (defvar org-blocker-hook nil
2703 "Hook for functions that are allowed to block a state change.
2705 Functions in this hook should not modify the buffer.
2706 Each function gets as its single argument a property list,
2707 see `org-trigger-hook' for more information about this list.
2709 If any of the functions in this hook returns nil, the state change
2710 is blocked.")
2712 (defvar org-trigger-hook nil
2713 "Hook for functions that are triggered by a state change.
2715 Each function gets as its single argument a property list with at
2716 least the following elements:
2718 (:type type-of-change :position pos-at-entry-start
2719 :from old-state :to new-state)
2721 Depending on the type, more properties may be present.
2723 This mechanism is currently implemented for:
2725 TODO state changes
2726 ------------------
2727 :type todo-state-change
2728 :from previous state (keyword as a string), or nil, or a symbol
2729 'todo' or 'done', to indicate the general type of state.
2730 :to new state, like in :from")
2732 (defcustom org-enforce-todo-dependencies nil
2733 "Non-nil means undone TODO entries will block switching the parent to DONE.
2734 Also, if a parent has an :ORDERED: property, switching an entry to DONE will
2735 be blocked if any prior sibling is not yet done.
2736 Finally, if the parent is blocked because of ordered siblings of its own,
2737 the child will also be blocked."
2738 :set (lambda (var val)
2739 (set var val)
2740 (if val
2741 (add-hook 'org-blocker-hook
2742 'org-block-todo-from-children-or-siblings-or-parent)
2743 (remove-hook 'org-blocker-hook
2744 'org-block-todo-from-children-or-siblings-or-parent)))
2745 :group 'org-todo
2746 :type 'boolean)
2748 (defcustom org-enforce-todo-checkbox-dependencies nil
2749 "Non-nil means unchecked boxes will block switching the parent to DONE.
2750 When this is nil, checkboxes have no influence on switching TODO states.
2751 When non-nil, you first need to check off all check boxes before the TODO
2752 entry can be switched to DONE.
2753 This variable needs to be set before org.el is loaded, and you need to
2754 restart Emacs after a change to make the change effective. The only way
2755 to change is while Emacs is running is through the customize interface."
2756 :set (lambda (var val)
2757 (set var val)
2758 (if val
2759 (add-hook 'org-blocker-hook
2760 'org-block-todo-from-checkboxes)
2761 (remove-hook 'org-blocker-hook
2762 'org-block-todo-from-checkboxes)))
2763 :group 'org-todo
2764 :type 'boolean)
2766 (defcustom org-treat-insert-todo-heading-as-state-change nil
2767 "Non-nil means inserting a TODO heading is treated as state change.
2768 So when the command \\[org-insert-todo-heading] is used, state change
2769 logging will apply if appropriate. When nil, the new TODO item will
2770 be inserted directly, and no logging will take place."
2771 :group 'org-todo
2772 :type 'boolean)
2774 (defcustom org-treat-S-cursor-todo-selection-as-state-change t
2775 "Non-nil means switching TODO states with S-cursor counts as state change.
2776 This is the default behavior. However, setting this to nil allows a
2777 convenient way to select a TODO state and bypass any logging associated
2778 with that."
2779 :group 'org-todo
2780 :type 'boolean)
2782 (defcustom org-todo-state-tags-triggers nil
2783 "Tag changes that should be triggered by TODO state changes.
2784 This is a list. Each entry is
2786 (state-change (tag . flag) .......)
2788 State-change can be a string with a state, and empty string to indicate the
2789 state that has no TODO keyword, or it can be one of the symbols `todo'
2790 or `done', meaning any not-done or done state, respectively."
2791 :group 'org-todo
2792 :group 'org-tags
2793 :type '(repeat
2794 (cons (choice :tag "When changing to"
2795 (const :tag "Not-done state" todo)
2796 (const :tag "Done state" done)
2797 (string :tag "State"))
2798 (repeat
2799 (cons :tag "Tag action"
2800 (string :tag "Tag")
2801 (choice (const :tag "Add" t) (const :tag "Remove" nil)))))))
2803 (defcustom org-log-done nil
2804 "Information to record when a task moves to the DONE state.
2806 Possible values are:
2808 nil Don't add anything, just change the keyword
2809 time Add a time stamp to the task
2810 note Prompt for a note and add it with template `org-log-note-headings'
2812 This option can also be set with on a per-file-basis with
2814 #+STARTUP: nologdone
2815 #+STARTUP: logdone
2816 #+STARTUP: lognotedone
2818 You can have local logging settings for a subtree by setting the LOGGING
2819 property to one or more of these keywords."
2820 :group 'org-todo
2821 :group 'org-progress
2822 :type '(choice
2823 (const :tag "No logging" nil)
2824 (const :tag "Record CLOSED timestamp" time)
2825 (const :tag "Record CLOSED timestamp with note." note)))
2827 ;; Normalize old uses of org-log-done.
2828 (cond
2829 ((eq org-log-done t) (setq org-log-done 'time))
2830 ((and (listp org-log-done) (memq 'done org-log-done))
2831 (setq org-log-done 'note)))
2833 (defcustom org-log-reschedule nil
2834 "Information to record when the scheduling date of a tasks is modified.
2836 Possible values are:
2838 nil Don't add anything, just change the date
2839 time Add a time stamp to the task
2840 note Prompt for a note and add it with template `org-log-note-headings'
2842 This option can also be set with on a per-file-basis with
2844 #+STARTUP: nologreschedule
2845 #+STARTUP: logreschedule
2846 #+STARTUP: lognotereschedule"
2847 :group 'org-todo
2848 :group 'org-progress
2849 :type '(choice
2850 (const :tag "No logging" nil)
2851 (const :tag "Record timestamp" time)
2852 (const :tag "Record timestamp with note." note)))
2854 (defcustom org-log-redeadline nil
2855 "Information to record when the deadline date of a tasks is modified.
2857 Possible values are:
2859 nil Don't add anything, just change the date
2860 time Add a time stamp to the task
2861 note Prompt for a note and add it with template `org-log-note-headings'
2863 This option can also be set with on a per-file-basis with
2865 #+STARTUP: nologredeadline
2866 #+STARTUP: logredeadline
2867 #+STARTUP: lognoteredeadline
2869 You can have local logging settings for a subtree by setting the LOGGING
2870 property to one or more of these keywords."
2871 :group 'org-todo
2872 :group 'org-progress
2873 :type '(choice
2874 (const :tag "No logging" nil)
2875 (const :tag "Record timestamp" time)
2876 (const :tag "Record timestamp with note." note)))
2878 (defcustom org-log-note-clock-out nil
2879 "Non-nil means record a note when clocking out of an item.
2880 This can also be configured on a per-file basis by adding one of
2881 the following lines anywhere in the buffer:
2883 #+STARTUP: lognoteclock-out
2884 #+STARTUP: nolognoteclock-out"
2885 :group 'org-todo
2886 :group 'org-progress
2887 :type 'boolean)
2889 (defcustom org-log-done-with-time t
2890 "Non-nil means the CLOSED time stamp will contain date and time.
2891 When nil, only the date will be recorded."
2892 :group 'org-progress
2893 :type 'boolean)
2895 (defcustom org-log-note-headings
2896 '((done . "CLOSING NOTE %t")
2897 (state . "State %-12s from %-12S %t")
2898 (note . "Note taken on %t")
2899 (reschedule . "Rescheduled from %S on %t")
2900 (delschedule . "Not scheduled, was %S on %t")
2901 (redeadline . "New deadline from %S on %t")
2902 (deldeadline . "Removed deadline, was %S on %t")
2903 (refile . "Refiled on %t")
2904 (clock-out . ""))
2905 "Headings for notes added to entries.
2906 The value is an alist, with the car being a symbol indicating the note
2907 context, and the cdr is the heading to be used. The heading may also be the
2908 empty string.
2909 %t in the heading will be replaced by a time stamp.
2910 %T will be an active time stamp instead the default inactive one
2911 %d will be replaced by a short-format time stamp.
2912 %D will be replaced by an active short-format time stamp.
2913 %s will be replaced by the new TODO state, in double quotes.
2914 %S will be replaced by the old TODO state, in double quotes.
2915 %u will be replaced by the user name.
2916 %U will be replaced by the full user name.
2918 In fact, it is not a good idea to change the `state' entry, because
2919 agenda log mode depends on the format of these entries."
2920 :group 'org-todo
2921 :group 'org-progress
2922 :type '(list :greedy t
2923 (cons (const :tag "Heading when closing an item" done) string)
2924 (cons (const :tag
2925 "Heading when changing todo state (todo sequence only)"
2926 state) string)
2927 (cons (const :tag "Heading when just taking a note" note) string)
2928 (cons (const :tag "Heading when rescheduling" reschedule) string)
2929 (cons (const :tag "Heading when an item is no longer scheduled" delschedule) string)
2930 (cons (const :tag "Heading when changing deadline" redeadline) string)
2931 (cons (const :tag "Heading when deleting a deadline" deldeadline) string)
2932 (cons (const :tag "Heading when refiling" refile) string)
2933 (cons (const :tag "Heading when clocking out" clock-out) string)))
2935 (unless (assq 'note org-log-note-headings)
2936 (push '(note . "%t") org-log-note-headings))
2938 (defcustom org-log-into-drawer nil
2939 "Non-nil means insert state change notes and time stamps into a drawer.
2940 When nil, state changes notes will be inserted after the headline and
2941 any scheduling and clock lines, but not inside a drawer.
2943 The value of this variable should be the name of the drawer to use.
2944 LOGBOOK is proposed as the default drawer for this purpose, you can
2945 also set this to a string to define the drawer of your choice.
2947 A value of t is also allowed, representing \"LOGBOOK\".
2949 A value of t or nil can also be set with on a per-file-basis with
2951 #+STARTUP: logdrawer
2952 #+STARTUP: nologdrawer
2954 If this variable is set, `org-log-state-notes-insert-after-drawers'
2955 will be ignored.
2957 You can set the property LOG_INTO_DRAWER to overrule this setting for
2958 a subtree.
2960 Do not check directly this variable in a Lisp program. Call
2961 function `org-log-into-drawer' instead."
2962 :group 'org-todo
2963 :group 'org-progress
2964 :type '(choice
2965 (const :tag "Not into a drawer" nil)
2966 (const :tag "LOGBOOK" t)
2967 (string :tag "Other")))
2969 (org-defvaralias 'org-log-state-notes-into-drawer 'org-log-into-drawer)
2971 (defun org-log-into-drawer ()
2972 "Name of the log drawer, as a string, or nil.
2973 This is the value of `org-log-into-drawer'. However, if the
2974 current entry has or inherits a LOG_INTO_DRAWER property, it will
2975 be used instead of the default value."
2976 (let ((p (org-entry-get nil "LOG_INTO_DRAWER" 'inherit t)))
2977 (cond ((equal p "nil") nil)
2978 ((equal p "t") "LOGBOOK")
2979 ((stringp p) p)
2980 (p "LOGBOOK")
2981 ((stringp org-log-into-drawer) org-log-into-drawer)
2982 (org-log-into-drawer "LOGBOOK"))))
2984 (defcustom org-log-state-notes-insert-after-drawers nil
2985 "Non-nil means insert state change notes after any drawers in entry.
2986 Only the drawers that *immediately* follow the headline and the
2987 deadline/scheduled line are skipped.
2988 When nil, insert notes right after the heading and perhaps the line
2989 with deadline/scheduling if present.
2991 This variable will have no effect if `org-log-into-drawer' is
2992 set."
2993 :group 'org-todo
2994 :group 'org-progress
2995 :type 'boolean)
2997 (defcustom org-log-states-order-reversed t
2998 "Non-nil means the latest state note will be directly after heading.
2999 When nil, the state change notes will be ordered according to time.
3001 This option can also be set with on a per-file-basis with
3003 #+STARTUP: logstatesreversed
3004 #+STARTUP: nologstatesreversed"
3005 :group 'org-todo
3006 :group 'org-progress
3007 :type 'boolean)
3009 (defcustom org-todo-repeat-to-state nil
3010 "The TODO state to which a repeater should return the repeating task.
3011 By default this is the first task in a TODO sequence, or the previous state
3012 in a TODO_TYP set. But you can specify another task here.
3013 alternatively, set the :REPEAT_TO_STATE: property of the entry."
3014 :group 'org-todo
3015 :version "24.1"
3016 :type '(choice (const :tag "Head of sequence" nil)
3017 (string :tag "Specific state")))
3019 (defcustom org-log-repeat 'time
3020 "Non-nil means record moving through the DONE state when triggering repeat.
3021 An auto-repeating task is immediately switched back to TODO when
3022 marked DONE. If you are not logging state changes (by adding \"@\"
3023 or \"!\" to the TODO keyword definition), or set `org-log-done' to
3024 record a closing note, there will be no record of the task moving
3025 through DONE. This variable forces taking a note anyway.
3027 nil Don't force a record
3028 time Record a time stamp
3029 note Prompt for a note and add it with template `org-log-note-headings'
3031 This option can also be set with on a per-file-basis with
3033 #+STARTUP: nologrepeat
3034 #+STARTUP: logrepeat
3035 #+STARTUP: lognoterepeat
3037 You can have local logging settings for a subtree by setting the LOGGING
3038 property to one or more of these keywords."
3039 :group 'org-todo
3040 :group 'org-progress
3041 :type '(choice
3042 (const :tag "Don't force a record" nil)
3043 (const :tag "Force recording the DONE state" time)
3044 (const :tag "Force recording a note with the DONE state" note)))
3047 (defgroup org-priorities nil
3048 "Priorities in Org-mode."
3049 :tag "Org Priorities"
3050 :group 'org-todo)
3052 (defcustom org-enable-priority-commands t
3053 "Non-nil means priority commands are active.
3054 When nil, these commands will be disabled, so that you never accidentally
3055 set a priority."
3056 :group 'org-priorities
3057 :type 'boolean)
3059 (defcustom org-highest-priority ?A
3060 "The highest priority of TODO items. A character like ?A, ?B etc.
3061 Must have a smaller ASCII number than `org-lowest-priority'."
3062 :group 'org-priorities
3063 :type 'character)
3065 (defcustom org-lowest-priority ?C
3066 "The lowest priority of TODO items. A character like ?A, ?B etc.
3067 Must have a larger ASCII number than `org-highest-priority'."
3068 :group 'org-priorities
3069 :type 'character)
3071 (defcustom org-default-priority ?B
3072 "The default priority of TODO items.
3073 This is the priority an item gets if no explicit priority is given.
3074 When starting to cycle on an empty priority the first step in the cycle
3075 depends on `org-priority-start-cycle-with-default'. The resulting first
3076 step priority must not exceed the range from `org-highest-priority' to
3077 `org-lowest-priority' which means that `org-default-priority' has to be
3078 in this range exclusive or inclusive the range boundaries. Else the
3079 first step refuses to set the default and the second will fall back
3080 to (depending on the command used) the highest or lowest priority."
3081 :group 'org-priorities
3082 :type 'character)
3084 (defcustom org-priority-start-cycle-with-default t
3085 "Non-nil means start with default priority when starting to cycle.
3086 When this is nil, the first step in the cycle will be (depending on the
3087 command used) one higher or lower than the default priority.
3088 See also `org-default-priority'."
3089 :group 'org-priorities
3090 :type 'boolean)
3092 (defcustom org-get-priority-function nil
3093 "Function to extract the priority from a string.
3094 The string is normally the headline. If this is nil Org computes the
3095 priority from the priority cookie like [#A] in the headline. It returns
3096 an integer, increasing by 1000 for each priority level.
3097 The user can set a different function here, which should take a string
3098 as an argument and return the numeric priority."
3099 :group 'org-priorities
3100 :version "24.1"
3101 :type '(choice
3102 (const nil)
3103 (function)))
3105 (defgroup org-time nil
3106 "Options concerning time stamps and deadlines in Org-mode."
3107 :tag "Org Time"
3108 :group 'org)
3110 (defcustom org-time-stamp-rounding-minutes '(0 5)
3111 "Number of minutes to round time stamps to.
3112 These are two values, the first applies when first creating a time stamp.
3113 The second applies when changing it with the commands `S-up' and `S-down'.
3114 When changing the time stamp, this means that it will change in steps
3115 of N minutes, as given by the second value.
3117 When a setting is 0 or 1, insert the time unmodified. Useful rounding
3118 numbers should be factors of 60, so for example 5, 10, 15.
3120 When this is larger than 1, you can still force an exact time stamp by using
3121 a double prefix argument to a time stamp command like `C-c .' or `C-c !',
3122 and by using a prefix arg to `S-up/down' to specify the exact number
3123 of minutes to shift."
3124 :group 'org-time
3125 :get (lambda (var) ; Make sure both elements are there
3126 (if (integerp (default-value var))
3127 (list (default-value var) 5)
3128 (default-value var)))
3129 :type '(list
3130 (integer :tag "when inserting times")
3131 (integer :tag "when modifying times")))
3133 ;; Normalize old customizations of this variable.
3134 (when (integerp org-time-stamp-rounding-minutes)
3135 (setq org-time-stamp-rounding-minutes
3136 (list org-time-stamp-rounding-minutes
3137 org-time-stamp-rounding-minutes)))
3139 (defcustom org-display-custom-times nil
3140 "Non-nil means overlay custom formats over all time stamps.
3141 The formats are defined through the variable `org-time-stamp-custom-formats'.
3142 To turn this on on a per-file basis, insert anywhere in the file:
3143 #+STARTUP: customtime"
3144 :group 'org-time
3145 :set 'set-default
3146 :type 'sexp)
3147 (make-variable-buffer-local 'org-display-custom-times)
3149 (defcustom org-time-stamp-custom-formats
3150 '("<%m/%d/%y %a>" . "<%m/%d/%y %a %H:%M>") ; american
3151 "Custom formats for time stamps. See `format-time-string' for the syntax.
3152 These are overlaid over the default ISO format if the variable
3153 `org-display-custom-times' is set. Time like %H:%M should be at the
3154 end of the second format. The custom formats are also honored by export
3155 commands, if custom time display is turned on at the time of export."
3156 :group 'org-time
3157 :type 'sexp)
3159 (defun org-time-stamp-format (&optional long inactive)
3160 "Get the right format for a time string."
3161 (let ((f (if long (cdr org-time-stamp-formats)
3162 (car org-time-stamp-formats))))
3163 (if inactive
3164 (concat "[" (substring f 1 -1) "]")
3165 f)))
3167 (defcustom org-time-clocksum-format
3168 '(:days "%dd " :hours "%d" :require-hours t :minutes ":%02d" :require-minutes t)
3169 "The format string used when creating CLOCKSUM lines.
3170 This is also used when Org mode generates a time duration.
3172 The value can be a single format string containing two
3173 %-sequences, which will be filled with the number of hours and
3174 minutes in that order.
3176 Alternatively, the value can be a plist associating any of the
3177 keys :years, :months, :weeks, :days, :hours or :minutes with
3178 format strings. The time duration is formatted using only the
3179 time components that are needed and concatenating the results.
3180 If a time unit in absent, it falls back to the next smallest
3181 unit.
3183 The keys :require-years, :require-months, :require-days,
3184 :require-weeks, :require-hours, :require-minutes are also
3185 meaningful. A non-nil value for these keys indicates that the
3186 corresponding time component should always be included, even if
3187 its value is 0.
3190 For example,
3192 \(:days \"%dd\" :hours \"%d\" :require-hours t :minutes \":%02d\"
3193 :require-minutes t)
3195 means durations longer than a day will be expressed in days,
3196 hours and minutes, and durations less than a day will always be
3197 expressed in hours and minutes (even for durations less than an
3198 hour).
3200 The value
3202 \(:days \"%dd\" :minutes \"%dm\")
3204 means durations longer than a day will be expressed in days and
3205 minutes, and durations less than a day will be expressed entirely
3206 in minutes (even for durations longer than an hour)."
3207 :group 'org-time
3208 :group 'org-clock
3209 :version "24.4"
3210 :package-version '(Org . "8.0")
3211 :type '(choice (string :tag "Format string")
3212 (set :tag "Plist"
3213 (group :inline t (const :tag "Years" :years)
3214 (string :tag "Format string"))
3215 (group :inline t
3216 (const :tag "Always show years" :require-years)
3217 (const t))
3218 (group :inline t (const :tag "Months" :months)
3219 (string :tag "Format string"))
3220 (group :inline t
3221 (const :tag "Always show months" :require-months)
3222 (const t))
3223 (group :inline t (const :tag "Weeks" :weeks)
3224 (string :tag "Format string"))
3225 (group :inline t
3226 (const :tag "Always show weeks" :require-weeks)
3227 (const t))
3228 (group :inline t (const :tag "Days" :days)
3229 (string :tag "Format string"))
3230 (group :inline t
3231 (const :tag "Always show days" :require-days)
3232 (const t))
3233 (group :inline t (const :tag "Hours" :hours)
3234 (string :tag "Format string"))
3235 (group :inline t
3236 (const :tag "Always show hours" :require-hours)
3237 (const t))
3238 (group :inline t (const :tag "Minutes" :minutes)
3239 (string :tag "Format string"))
3240 (group :inline t
3241 (const :tag "Always show minutes" :require-minutes)
3242 (const t)))))
3244 (defcustom org-time-clocksum-use-fractional nil
3245 "When non-nil, \\[org-clock-display] uses fractional times.
3246 See `org-time-clocksum-format' for more on time clock formats."
3247 :group 'org-time
3248 :group 'org-clock
3249 :version "24.3"
3250 :type 'boolean)
3252 (defcustom org-time-clocksum-use-effort-durations nil
3253 "When non-nil, \\[org-clock-display] uses effort durations.
3254 E.g. by default, one day is considered to be a 8 hours effort,
3255 so a task that has been clocked for 16 hours will be displayed
3256 as during 2 days in the clock display or in the clocktable.
3258 See `org-effort-durations' on how to set effort durations
3259 and `org-time-clocksum-format' for more on time clock formats."
3260 :group 'org-time
3261 :group 'org-clock
3262 :version "24.4"
3263 :package-version '(Org . "8.0")
3264 :type 'boolean)
3266 (defcustom org-time-clocksum-fractional-format "%.2f"
3267 "The format string used when creating CLOCKSUM lines,
3268 or when Org mode generates a time duration, if
3269 `org-time-clocksum-use-fractional' is enabled.
3271 The value can be a single format string containing one
3272 %-sequence, which will be filled with the number of hours as
3273 a float.
3275 Alternatively, the value can be a plist associating any of the
3276 keys :years, :months, :weeks, :days, :hours or :minutes with
3277 a format string. The time duration is formatted using the
3278 largest time unit which gives a non-zero integer part. If all
3279 specified formats have zero integer part, the smallest time unit
3280 is used."
3281 :group 'org-time
3282 :type '(choice (string :tag "Format string")
3283 (set (group :inline t (const :tag "Years" :years)
3284 (string :tag "Format string"))
3285 (group :inline t (const :tag "Months" :months)
3286 (string :tag "Format string"))
3287 (group :inline t (const :tag "Weeks" :weeks)
3288 (string :tag "Format string"))
3289 (group :inline t (const :tag "Days" :days)
3290 (string :tag "Format string"))
3291 (group :inline t (const :tag "Hours" :hours)
3292 (string :tag "Format string"))
3293 (group :inline t (const :tag "Minutes" :minutes)
3294 (string :tag "Format string")))))
3296 (defcustom org-deadline-warning-days 14
3297 "Number of days before expiration during which a deadline becomes active.
3298 This variable governs the display in sparse trees and in the agenda.
3299 When 0 or negative, it means use this number (the absolute value of it)
3300 even if a deadline has a different individual lead time specified.
3302 Custom commands can set this variable in the options section."
3303 :group 'org-time
3304 :group 'org-agenda-daily/weekly
3305 :type 'integer)
3307 (defcustom org-scheduled-delay-days 0
3308 "Number of days before a scheduled item becomes active.
3309 This variable governs the display in sparse trees and in the agenda.
3310 The default value (i.e. 0) means: don't delay scheduled item.
3311 When negative, it means use this number (the absolute value of it)
3312 even if a scheduled item has a different individual delay time
3313 specified.
3315 Custom commands can set this variable in the options section."
3316 :group 'org-time
3317 :group 'org-agenda-daily/weekly
3318 :version "24.4"
3319 :package-version '(Org . "8.0")
3320 :type 'integer)
3322 (defcustom org-read-date-prefer-future t
3323 "Non-nil means assume future for incomplete date input from user.
3324 This affects the following situations:
3325 1. The user gives a month but not a year.
3326 For example, if it is April and you enter \"feb 2\", this will be read
3327 as Feb 2, *next* year. \"May 5\", however, will be this year.
3328 2. The user gives a day, but no month.
3329 For example, if today is the 15th, and you enter \"3\", Org-mode will
3330 read this as the third of *next* month. However, if you enter \"17\",
3331 it will be considered as *this* month.
3333 If you set this variable to the symbol `time', then also the following
3334 will work:
3336 3. If the user gives a time.
3337 If the time is before now, it will be interpreted as tomorrow.
3339 Currently none of this works for ISO week specifications.
3341 When this option is nil, the current day, month and year will always be
3342 used as defaults.
3344 See also `org-agenda-jump-prefer-future'."
3345 :group 'org-time
3346 :type '(choice
3347 (const :tag "Never" nil)
3348 (const :tag "Check month and day" t)
3349 (const :tag "Check month, day, and time" time)))
3351 (defcustom org-agenda-jump-prefer-future 'org-read-date-prefer-future
3352 "Should the agenda jump command prefer the future for incomplete dates?
3353 The default is to do the same as configured in `org-read-date-prefer-future'.
3354 But you can also set a deviating value here.
3355 This may t or nil, or the symbol `org-read-date-prefer-future'."
3356 :group 'org-agenda
3357 :group 'org-time
3358 :version "24.1"
3359 :type '(choice
3360 (const :tag "Use org-read-date-prefer-future"
3361 org-read-date-prefer-future)
3362 (const :tag "Never" nil)
3363 (const :tag "Always" t)))
3365 (defcustom org-read-date-force-compatible-dates t
3366 "Should date/time prompt force dates that are guaranteed to work in Emacs?
3368 Depending on the system Emacs is running on, certain dates cannot
3369 be represented with the type used internally to represent time.
3370 Dates between 1970-1-1 and 2038-1-1 can always be represented
3371 correctly. Some systems allow for earlier dates, some for later,
3372 some for both. One way to find out it to insert any date into an
3373 Org buffer, putting the cursor on the year and hitting S-up and
3374 S-down to test the range.
3376 When this variable is set to t, the date/time prompt will not let
3377 you specify dates outside the 1970-2037 range, so it is certain that
3378 these dates will work in whatever version of Emacs you are
3379 running, and also that you can move a file from one Emacs implementation
3380 to another. WHenever Org is forcing the year for you, it will display
3381 a message and beep.
3383 When this variable is nil, Org will check if the date is
3384 representable in the specific Emacs implementation you are using.
3385 If not, it will force a year, usually the current year, and beep
3386 to remind you. Currently this setting is not recommended because
3387 the likelihood that you will open your Org files in an Emacs that
3388 has limited date range is not negligible.
3390 A workaround for this problem is to use diary sexp dates for time
3391 stamps outside of this range."
3392 :group 'org-time
3393 :version "24.1"
3394 :type 'boolean)
3396 (defcustom org-read-date-display-live t
3397 "Non-nil means display current interpretation of date prompt live.
3398 This display will be in an overlay, in the minibuffer."
3399 :group 'org-time
3400 :type 'boolean)
3402 (defcustom org-read-date-popup-calendar t
3403 "Non-nil means pop up a calendar when prompting for a date.
3404 In the calendar, the date can be selected with mouse-1. However, the
3405 minibuffer will also be active, and you can simply enter the date as well.
3406 When nil, only the minibuffer will be available."
3407 :group 'org-time
3408 :type 'boolean)
3409 (org-defvaralias 'org-popup-calendar-for-date-prompt
3410 'org-read-date-popup-calendar)
3412 (make-obsolete-variable
3413 'org-read-date-minibuffer-setup-hook
3414 "Set `org-read-date-minibuffer-local-map' instead." "24.4")
3415 (defcustom org-read-date-minibuffer-setup-hook nil
3416 "Hook to be used to set up keys for the date/time interface.
3417 Add key definitions to `minibuffer-local-map', which will be a
3418 temporary copy.
3420 WARNING: This option is obsolete, you should use
3421 `org-read-date-minibuffer-local-map' to set up keys."
3422 :group 'org-time
3423 :type 'hook)
3425 (defcustom org-extend-today-until 0
3426 "The hour when your day really ends. Must be an integer.
3427 This has influence for the following applications:
3428 - When switching the agenda to \"today\". It it is still earlier than
3429 the time given here, the day recognized as TODAY is actually yesterday.
3430 - When a date is read from the user and it is still before the time given
3431 here, the current date and time will be assumed to be yesterday, 23:59.
3432 Also, timestamps inserted in capture templates follow this rule.
3434 IMPORTANT: This is a feature whose implementation is and likely will
3435 remain incomplete. Really, it is only here because past midnight seems to
3436 be the favorite working time of John Wiegley :-)"
3437 :group 'org-time
3438 :type 'integer)
3440 (defcustom org-use-effective-time nil
3441 "If non-nil, consider `org-extend-today-until' when creating timestamps.
3442 For example, if `org-extend-today-until' is 8, and it's 4am, then the
3443 \"effective time\" of any timestamps between midnight and 8am will be
3444 23:59 of the previous day."
3445 :group 'org-time
3446 :version "24.1"
3447 :type 'boolean)
3449 (defcustom org-use-last-clock-out-time-as-effective-time nil
3450 "When non-nil, use the last clock out time for `org-todo'.
3451 Note that this option has precedence over the combined use of
3452 `org-use-effective-time' and `org-extend-today-until'."
3453 :group 'org-time
3454 :version "24.4"
3455 :package-version '(Org . "8.0")
3456 :type 'boolean)
3458 (defcustom org-edit-timestamp-down-means-later nil
3459 "Non-nil means S-down will increase the time in a time stamp.
3460 When nil, S-up will increase."
3461 :group 'org-time
3462 :type 'boolean)
3464 (defcustom org-calendar-follow-timestamp-change t
3465 "Non-nil means make the calendar window follow timestamp changes.
3466 When a timestamp is modified and the calendar window is visible, it will be
3467 moved to the new date."
3468 :group 'org-time
3469 :type 'boolean)
3471 (defgroup org-tags nil
3472 "Options concerning tags in Org-mode."
3473 :tag "Org Tags"
3474 :group 'org)
3476 (defcustom org-tag-alist nil
3477 "List of tags allowed in Org-mode files.
3478 When this list is nil, Org-mode will base TAG input on what is already in the
3479 buffer.
3480 The value of this variable is an alist, the car of each entry must be a
3481 keyword as a string, the cdr may be a character that is used to select
3482 that tag through the fast-tag-selection interface.
3483 See the manual for details."
3484 :group 'org-tags
3485 :type '(repeat
3486 (choice
3487 (cons (string :tag "Tag name")
3488 (character :tag "Access char"))
3489 (list :tag "Start radio group"
3490 (const :startgroup)
3491 (option (string :tag "Group description")))
3492 (list :tag "Group tags delimiter"
3493 (const :grouptags))
3494 (list :tag "End radio group"
3495 (const :endgroup)
3496 (option (string :tag "Group description")))
3497 (const :tag "New line" (:newline)))))
3499 (defcustom org-tag-persistent-alist nil
3500 "List of tags that will always appear in all Org-mode files.
3501 This is in addition to any in buffer settings or customizations
3502 of `org-tag-alist'.
3503 When this list is nil, Org-mode will base TAG input on `org-tag-alist'.
3504 The value of this variable is an alist, the car of each entry must be a
3505 keyword as a string, the cdr may be a character that is used to select
3506 that tag through the fast-tag-selection interface.
3507 See the manual for details.
3508 To disable these tags on a per-file basis, insert anywhere in the file:
3509 #+STARTUP: noptag"
3510 :group 'org-tags
3511 :type '(repeat
3512 (choice
3513 (cons (string :tag "Tag name")
3514 (character :tag "Access char"))
3515 (const :tag "Start radio group" (:startgroup))
3516 (const :tag "Group tags delimiter" (:grouptags))
3517 (const :tag "End radio group" (:endgroup))
3518 (const :tag "New line" (:newline)))))
3520 (defcustom org-complete-tags-always-offer-all-agenda-tags nil
3521 "If non-nil, always offer completion for all tags of all agenda files.
3522 Instead of customizing this variable directly, you might want to
3523 set it locally for capture buffers, because there no list of
3524 tags in that file can be created dynamically (there are none).
3526 (add-hook 'org-capture-mode-hook
3527 (lambda ()
3528 (set (make-local-variable
3529 'org-complete-tags-always-offer-all-agenda-tags)
3530 t)))"
3531 :group 'org-tags
3532 :version "24.1"
3533 :type 'boolean)
3535 (defvar org-file-tags nil
3536 "List of tags that can be inherited by all entries in the file.
3537 The tags will be inherited if the variable `org-use-tag-inheritance'
3538 says they should be.
3539 This variable is populated from #+FILETAGS lines.")
3541 (defcustom org-use-fast-tag-selection 'auto
3542 "Non-nil means use fast tag selection scheme.
3543 This is a special interface to select and deselect tags with single keys.
3544 When nil, fast selection is never used.
3545 When the symbol `auto', fast selection is used if and only if selection
3546 characters for tags have been configured, either through the variable
3547 `org-tag-alist' or through a #+TAGS line in the buffer.
3548 When t, fast selection is always used and selection keys are assigned
3549 automatically if necessary."
3550 :group 'org-tags
3551 :type '(choice
3552 (const :tag "Always" t)
3553 (const :tag "Never" nil)
3554 (const :tag "When selection characters are configured" auto)))
3556 (defcustom org-fast-tag-selection-single-key nil
3557 "Non-nil means fast tag selection exits after first change.
3558 When nil, you have to press RET to exit it.
3559 During fast tag selection, you can toggle this flag with `C-c'.
3560 This variable can also have the value `expert'. In this case, the window
3561 displaying the tags menu is not even shown, until you press C-c again."
3562 :group 'org-tags
3563 :type '(choice
3564 (const :tag "No" nil)
3565 (const :tag "Yes" t)
3566 (const :tag "Expert" expert)))
3568 (defvar org-fast-tag-selection-include-todo nil
3569 "Non-nil means fast tags selection interface will also offer TODO states.
3570 This is an undocumented feature, you should not rely on it.")
3572 (defcustom org-tags-column (if (featurep 'xemacs) -76 -77)
3573 "The column to which tags should be indented in a headline.
3574 If this number is positive, it specifies the column. If it is negative,
3575 it means that the tags should be flushright to that column. For example,
3576 -80 works well for a normal 80 character screen.
3577 When 0, place tags directly after headline text, with only one space in
3578 between."
3579 :group 'org-tags
3580 :type 'integer)
3582 (defcustom org-auto-align-tags t
3583 "Non-nil keeps tags aligned when modifying headlines.
3584 Some operations (i.e. demoting) change the length of a headline and
3585 therefore shift the tags around. With this option turned on, after
3586 each such operation the tags are again aligned to `org-tags-column'."
3587 :group 'org-tags
3588 :type 'boolean)
3590 (defcustom org-use-tag-inheritance t
3591 "Non-nil means tags in levels apply also for sublevels.
3592 When nil, only the tags directly given in a specific line apply there.
3593 This may also be a list of tags that should be inherited, or a regexp that
3594 matches tags that should be inherited. Additional control is possible
3595 with the variable `org-tags-exclude-from-inheritance' which gives an
3596 explicit list of tags to be excluded from inheritance, even if the value of
3597 `org-use-tag-inheritance' would select it for inheritance.
3599 If this option is t, a match early-on in a tree can lead to a large
3600 number of matches in the subtree when constructing the agenda or creating
3601 a sparse tree. If you only want to see the first match in a tree during
3602 a search, check out the variable `org-tags-match-list-sublevels'."
3603 :group 'org-tags
3604 :type '(choice
3605 (const :tag "Not" nil)
3606 (const :tag "Always" t)
3607 (repeat :tag "Specific tags" (string :tag "Tag"))
3608 (regexp :tag "Tags matched by regexp")))
3610 (defcustom org-tags-exclude-from-inheritance nil
3611 "List of tags that should never be inherited.
3612 This is a way to exclude a few tags from inheritance. For way to do
3613 the opposite, to actively allow inheritance for selected tags,
3614 see the variable `org-use-tag-inheritance'."
3615 :group 'org-tags
3616 :type '(repeat (string :tag "Tag")))
3618 (defun org-tag-inherit-p (tag)
3619 "Check if TAG is one that should be inherited."
3620 (cond
3621 ((member tag org-tags-exclude-from-inheritance) nil)
3622 ((eq org-use-tag-inheritance t) t)
3623 ((not org-use-tag-inheritance) nil)
3624 ((stringp org-use-tag-inheritance)
3625 (string-match org-use-tag-inheritance tag))
3626 ((listp org-use-tag-inheritance)
3627 (member tag org-use-tag-inheritance))
3628 (t (error "Invalid setting of `org-use-tag-inheritance'"))))
3630 (defcustom org-tags-match-list-sublevels t
3631 "Non-nil means list also sublevels of headlines matching a search.
3632 This variable applies to tags/property searches, and also to stuck
3633 projects because this search is based on a tags match as well.
3635 When set to the symbol `indented', sublevels are indented with
3636 leading dots.
3638 Because of tag inheritance (see variable `org-use-tag-inheritance'),
3639 the sublevels of a headline matching a tag search often also match
3640 the same search. Listing all of them can create very long lists.
3641 Setting this variable to nil causes subtrees of a match to be skipped.
3643 This variable is semi-obsolete and probably should always be true. It
3644 is better to limit inheritance to certain tags using the variables
3645 `org-use-tag-inheritance' and `org-tags-exclude-from-inheritance'."
3646 :group 'org-tags
3647 :type '(choice
3648 (const :tag "No, don't list them" nil)
3649 (const :tag "Yes, do list them" t)
3650 (const :tag "List them, indented with leading dots" indented)))
3652 (defcustom org-tags-sort-function nil
3653 "When set, tags are sorted using this function as a comparator."
3654 :group 'org-tags
3655 :type '(choice
3656 (const :tag "No sorting" nil)
3657 (const :tag "Alphabetical" string<)
3658 (const :tag "Reverse alphabetical" string>)
3659 (function :tag "Custom function" nil)))
3661 (defvar org-tags-history nil
3662 "History of minibuffer reads for tags.")
3663 (defvar org-last-tags-completion-table nil
3664 "The last used completion table for tags.")
3665 (defvar org-after-tags-change-hook nil
3666 "Hook that is run after the tags in a line have changed.")
3668 (defgroup org-properties nil
3669 "Options concerning properties in Org-mode."
3670 :tag "Org Properties"
3671 :group 'org)
3673 (defcustom org-property-format "%-10s %s"
3674 "How property key/value pairs should be formatted by `indent-line'.
3675 When `indent-line' hits a property definition, it will format the line
3676 according to this format, mainly to make sure that the values are
3677 lined-up with respect to each other."
3678 :group 'org-properties
3679 :type 'string)
3681 (defcustom org-properties-postprocess-alist nil
3682 "Alist of properties and functions to adjust inserted values.
3683 Elements of this alist must be of the form
3685 ([string] [function])
3687 where [string] must be a property name and [function] must be a
3688 lambda expression: this lambda expression must take one argument,
3689 the value to adjust, and return the new value as a string.
3691 For example, this element will allow the property \"Remaining\"
3692 to be updated wrt the relation between the \"Effort\" property
3693 and the clock summary:
3695 ((\"Remaining\" (lambda(value)
3696 (let ((clocksum (org-clock-sum-current-item))
3697 (effort (org-duration-string-to-minutes
3698 (org-entry-get (point) \"Effort\"))))
3699 (org-minutes-to-clocksum-string (- effort clocksum))))))"
3700 :group 'org-properties
3701 :version "24.1"
3702 :type '(alist :key-type (string :tag "Property")
3703 :value-type (function :tag "Function")))
3705 (defcustom org-use-property-inheritance nil
3706 "Non-nil means properties apply also for sublevels.
3708 This setting is chiefly used during property searches. Turning it on can
3709 cause significant overhead when doing a search, which is why it is not
3710 on by default.
3712 When nil, only the properties directly given in the current entry count.
3713 When t, every property is inherited. The value may also be a list of
3714 properties that should have inheritance, or a regular expression matching
3715 properties that should be inherited.
3717 However, note that some special properties use inheritance under special
3718 circumstances (not in searches). Examples are CATEGORY, ARCHIVE, COLUMNS,
3719 and the properties ending in \"_ALL\" when they are used as descriptor
3720 for valid values of a property.
3722 Note for programmers:
3723 When querying an entry with `org-entry-get', you can control if inheritance
3724 should be used. By default, `org-entry-get' looks only at the local
3725 properties. You can request inheritance by setting the inherit argument
3726 to t (to force inheritance) or to `selective' (to respect the setting
3727 in this variable)."
3728 :group 'org-properties
3729 :type '(choice
3730 (const :tag "Not" nil)
3731 (const :tag "Always" t)
3732 (repeat :tag "Specific properties" (string :tag "Property"))
3733 (regexp :tag "Properties matched by regexp")))
3735 (defun org-property-inherit-p (property)
3736 "Check if PROPERTY is one that should be inherited."
3737 (cond
3738 ((eq org-use-property-inheritance t) t)
3739 ((not org-use-property-inheritance) nil)
3740 ((stringp org-use-property-inheritance)
3741 (string-match org-use-property-inheritance property))
3742 ((listp org-use-property-inheritance)
3743 (member property org-use-property-inheritance))
3744 (t (error "Invalid setting of `org-use-property-inheritance'"))))
3746 (defcustom org-columns-default-format "%25ITEM %TODO %3PRIORITY %TAGS"
3747 "The default column format, if no other format has been defined.
3748 This variable can be set on the per-file basis by inserting a line
3750 #+COLUMNS: %25ITEM ....."
3751 :group 'org-properties
3752 :type 'string)
3754 (defcustom org-columns-ellipses ".."
3755 "The ellipses to be used when a field in column view is truncated.
3756 When this is the empty string, as many characters as possible are shown,
3757 but then there will be no visual indication that the field has been truncated.
3758 When this is a string of length N, the last N characters of a truncated
3759 field are replaced by this string. If the column is narrower than the
3760 ellipses string, only part of the ellipses string will be shown."
3761 :group 'org-properties
3762 :type 'string)
3764 (defcustom org-columns-modify-value-for-display-function nil
3765 "Function that modifies values for display in column view.
3766 For example, it can be used to cut out a certain part from a time stamp.
3767 The function must take 2 arguments:
3769 column-title The title of the column (*not* the property name)
3770 value The value that should be modified.
3772 The function should return the value that should be displayed,
3773 or nil if the normal value should be used."
3774 :group 'org-properties
3775 :type '(choice (const nil) (function)))
3777 (defconst org-global-properties-fixed
3778 '(("VISIBILITY_ALL" . "folded children content all")
3779 ("CLOCK_MODELINE_TOTAL_ALL" . "current today repeat all auto"))
3780 "List of property/value pairs that can be inherited by any entry.
3782 These are fixed values, for the preset properties. The user variable
3783 that can be used to add to this list is `org-global-properties'.
3785 The entries in this list are cons cells where the car is a property
3786 name and cdr is a string with the value. If the value represents
3787 multiple items like an \"_ALL\" property, separate the items by
3788 spaces.")
3790 (defcustom org-global-properties nil
3791 "List of property/value pairs that can be inherited by any entry.
3793 This list will be combined with the constant `org-global-properties-fixed'.
3795 The entries in this list are cons cells where the car is a property
3796 name and cdr is a string with the value.
3798 You can set buffer-local values for the same purpose in the variable
3799 `org-file-properties' this by adding lines like
3801 #+PROPERTY: NAME VALUE"
3802 :group 'org-properties
3803 :type '(repeat
3804 (cons (string :tag "Property")
3805 (string :tag "Value"))))
3807 (defvar org-file-properties nil
3808 "List of property/value pairs that can be inherited by any entry.
3809 Valid for the current buffer.
3810 This variable is populated from #+PROPERTY lines.")
3811 (make-variable-buffer-local 'org-file-properties)
3813 (defgroup org-agenda nil
3814 "Options concerning agenda views in Org-mode."
3815 :tag "Org Agenda"
3816 :group 'org)
3818 (defvar org-category nil
3819 "Variable used by org files to set a category for agenda display.
3820 Such files should use a file variable to set it, for example
3822 # -*- mode: org; org-category: \"ELisp\"
3824 or contain a special line
3826 #+CATEGORY: ELisp
3828 If the file does not specify a category, then file's base name
3829 is used instead.")
3830 (make-variable-buffer-local 'org-category)
3831 (put 'org-category 'safe-local-variable (lambda (x) (or (symbolp x) (stringp x))))
3833 (defcustom org-agenda-files nil
3834 "The files to be used for agenda display.
3835 Entries may be added to this list with \\[org-agenda-file-to-front] and removed with
3836 \\[org-remove-file]. You can also use customize to edit the list.
3838 If an entry is a directory, all files in that directory that are matched by
3839 `org-agenda-file-regexp' will be part of the file list.
3841 If the value of the variable is not a list but a single file name, then
3842 the list of agenda files is actually stored and maintained in that file, one
3843 agenda file per line. In this file paths can be given relative to
3844 `org-directory'. Tilde expansion and environment variable substitution
3845 are also made."
3846 :group 'org-agenda
3847 :type '(choice
3848 (repeat :tag "List of files and directories" file)
3849 (file :tag "Store list in a file\n" :value "~/.agenda_files")))
3851 (defcustom org-agenda-file-regexp "\\`[^.].*\\.org\\'"
3852 "Regular expression to match files for `org-agenda-files'.
3853 If any element in the list in that variable contains a directory instead
3854 of a normal file, all files in that directory that are matched by this
3855 regular expression will be included."
3856 :group 'org-agenda
3857 :type 'regexp)
3859 (defcustom org-agenda-text-search-extra-files nil
3860 "List of extra files to be searched by text search commands.
3861 These files will be searched in addition to the agenda files by the
3862 commands `org-search-view' (`C-c a s') and `org-occur-in-agenda-files'.
3863 Note that these files will only be searched for text search commands,
3864 not for the other agenda views like todo lists, tag searches or the weekly
3865 agenda. This variable is intended to list notes and possibly archive files
3866 that should also be searched by these two commands.
3867 In fact, if the first element in the list is the symbol `agenda-archives',
3868 then all archive files of all agenda files will be added to the search
3869 scope."
3870 :group 'org-agenda
3871 :type '(set :greedy t
3872 (const :tag "Agenda Archives" agenda-archives)
3873 (repeat :inline t (file))))
3875 (org-defvaralias 'org-agenda-multi-occur-extra-files
3876 'org-agenda-text-search-extra-files)
3878 (defcustom org-agenda-skip-unavailable-files nil
3879 "Non-nil means to just skip non-reachable files in `org-agenda-files'.
3880 A nil value means to remove them, after a query, from the list."
3881 :group 'org-agenda
3882 :type 'boolean)
3884 (defcustom org-calendar-to-agenda-key [?c]
3885 "The key to be installed in `calendar-mode-map' for switching to the agenda.
3886 The command `org-calendar-goto-agenda' will be bound to this key. The
3887 default is the character `c' because then `c' can be used to switch back and
3888 forth between agenda and calendar."
3889 :group 'org-agenda
3890 :type 'sexp)
3892 (defcustom org-calendar-insert-diary-entry-key [?i]
3893 "The key to be installed in `calendar-mode-map' for adding diary entries.
3894 This option is irrelevant until `org-agenda-diary-file' has been configured
3895 to point to an Org-mode file. When that is the case, the command
3896 `org-agenda-diary-entry' will be bound to the key given here, by default
3897 `i'. In the calendar, `i' normally adds entries to `diary-file'. So
3898 if you want to continue doing this, you need to change this to a different
3899 key."
3900 :group 'org-agenda
3901 :type 'sexp)
3903 (defcustom org-agenda-diary-file 'diary-file
3904 "File to which to add new entries with the `i' key in agenda and calendar.
3905 When this is the symbol `diary-file', the functionality in the Emacs
3906 calendar will be used to add entries to the `diary-file'. But when this
3907 points to a file, `org-agenda-diary-entry' will be used instead."
3908 :group 'org-agenda
3909 :type '(choice
3910 (const :tag "The standard Emacs diary file" diary-file)
3911 (file :tag "Special Org file diary entries")))
3913 (eval-after-load "calendar"
3914 '(progn
3915 (org-defkey calendar-mode-map org-calendar-to-agenda-key
3916 'org-calendar-goto-agenda)
3917 (add-hook 'calendar-mode-hook
3918 (lambda ()
3919 (unless (eq org-agenda-diary-file 'diary-file)
3920 (define-key calendar-mode-map
3921 org-calendar-insert-diary-entry-key
3922 'org-agenda-diary-entry))))))
3924 (defgroup org-latex nil
3925 "Options for embedding LaTeX code into Org-mode."
3926 :tag "Org LaTeX"
3927 :group 'org)
3929 (defcustom org-format-latex-options
3930 '(:foreground default :background default :scale 1.0
3931 :html-foreground "Black" :html-background "Transparent"
3932 :html-scale 1.0 :matchers ("begin" "$1" "$" "$$" "\\(" "\\["))
3933 "Options for creating images from LaTeX fragments.
3934 This is a property list with the following properties:
3935 :foreground the foreground color for images embedded in Emacs, e.g. \"Black\".
3936 `default' means use the foreground of the default face.
3937 `auto' means use the foreground from the text face.
3938 :background the background color, or \"Transparent\".
3939 `default' means use the background of the default face.
3940 `auto' means use the background from the text face.
3941 :scale a scaling factor for the size of the images, to get more pixels
3942 :html-foreground, :html-background, :html-scale
3943 the same numbers for HTML export.
3944 :matchers a list indicating which matchers should be used to
3945 find LaTeX fragments. Valid members of this list are:
3946 \"begin\" find environments
3947 \"$1\" find single characters surrounded by $.$
3948 \"$\" find math expressions surrounded by $...$
3949 \"$$\" find math expressions surrounded by $$....$$
3950 \"\\(\" find math expressions surrounded by \\(...\\)
3951 \"\\=\\[\" find math expressions surrounded by \\=\\[...\\]"
3952 :group 'org-latex
3953 :type 'plist)
3955 (defcustom org-format-latex-signal-error t
3956 "Non-nil means signal an error when image creation of LaTeX snippets fails.
3957 When nil, just push out a message."
3958 :group 'org-latex
3959 :version "24.1"
3960 :type 'boolean)
3962 (defcustom org-latex-to-mathml-jar-file nil
3963 "Value of\"%j\" in `org-latex-to-mathml-convert-command'.
3964 Use this to specify additional executable file say a jar file.
3966 When using MathToWeb as the converter, specify the full-path to
3967 your mathtoweb.jar file."
3968 :group 'org-latex
3969 :version "24.1"
3970 :type '(choice
3971 (const :tag "None" nil)
3972 (file :tag "JAR file" :must-match t)))
3974 (defcustom org-latex-to-mathml-convert-command nil
3975 "Command to convert LaTeX fragments to MathML.
3976 Replace format-specifiers in the command as noted below and use
3977 `shell-command' to convert LaTeX to MathML.
3978 %j: Executable file in fully expanded form as specified by
3979 `org-latex-to-mathml-jar-file'.
3980 %I: Input LaTeX file in fully expanded form
3981 %o: Output MathML file
3982 This command is used by `org-create-math-formula'.
3984 When using MathToWeb as the converter, set this to
3985 \"java -jar %j -unicode -force -df %o %I\"."
3986 :group 'org-latex
3987 :version "24.1"
3988 :type '(choice
3989 (const :tag "None" nil)
3990 (string :tag "\nShell command")))
3992 (defcustom org-latex-create-formula-image-program 'dvipng
3993 "Program to convert LaTeX fragments with.
3995 dvipng Process the LaTeX fragments to dvi file, then convert
3996 dvi files to png files using dvipng.
3997 This will also include processing of non-math environments.
3998 imagemagick Convert the LaTeX fragments to pdf files and use imagemagick
3999 to convert pdf files to png files"
4000 :group 'org-latex
4001 :version "24.1"
4002 :type '(choice
4003 (const :tag "dvipng" dvipng)
4004 (const :tag "imagemagick" imagemagick)))
4006 (defcustom org-latex-preview-ltxpng-directory "ltxpng/"
4007 "Path to store latex preview images.
4008 A relative path here creates many directories relative to the
4009 processed org files paths. An absolute path puts all preview
4010 images at the same place."
4011 :group 'org-latex
4012 :version "24.3"
4013 :type 'string)
4015 (defun org-format-latex-mathml-available-p ()
4016 "Return t if `org-latex-to-mathml-convert-command' is usable."
4017 (save-match-data
4018 (when (and (boundp 'org-latex-to-mathml-convert-command)
4019 org-latex-to-mathml-convert-command)
4020 (let ((executable (car (split-string
4021 org-latex-to-mathml-convert-command))))
4022 (when (executable-find executable)
4023 (if (string-match
4024 "%j" org-latex-to-mathml-convert-command)
4025 (file-readable-p org-latex-to-mathml-jar-file)
4026 t))))))
4028 (defcustom org-format-latex-header "\\documentclass{article}
4029 \\usepackage[usenames]{color}
4030 \[PACKAGES]
4031 \[DEFAULT-PACKAGES]
4032 \\pagestyle{empty} % do not remove
4033 % The settings below are copied from fullpage.sty
4034 \\setlength{\\textwidth}{\\paperwidth}
4035 \\addtolength{\\textwidth}{-3cm}
4036 \\setlength{\\oddsidemargin}{1.5cm}
4037 \\addtolength{\\oddsidemargin}{-2.54cm}
4038 \\setlength{\\evensidemargin}{\\oddsidemargin}
4039 \\setlength{\\textheight}{\\paperheight}
4040 \\addtolength{\\textheight}{-\\headheight}
4041 \\addtolength{\\textheight}{-\\headsep}
4042 \\addtolength{\\textheight}{-\\footskip}
4043 \\addtolength{\\textheight}{-3cm}
4044 \\setlength{\\topmargin}{1.5cm}
4045 \\addtolength{\\topmargin}{-2.54cm}"
4046 "The document header used for processing LaTeX fragments.
4047 It is imperative that this header make sure that no page number
4048 appears on the page. The package defined in the variables
4049 `org-latex-default-packages-alist' and `org-latex-packages-alist'
4050 will either replace the placeholder \"[PACKAGES]\" in this
4051 header, or they will be appended."
4052 :group 'org-latex
4053 :type 'string)
4055 (defun org-set-packages-alist (var val)
4056 "Set the packages alist and make sure it has 3 elements per entry."
4057 (set var (mapcar (lambda (x)
4058 (if (and (consp x) (= (length x) 2))
4059 (list (car x) (nth 1 x) t)
4061 val)))
4063 (defun org-get-packages-alist (var)
4064 "Get the packages alist and make sure it has 3 elements per entry."
4065 (mapcar (lambda (x)
4066 (if (and (consp x) (= (length x) 2))
4067 (list (car x) (nth 1 x) t)
4069 (default-value var)))
4071 (defcustom org-latex-default-packages-alist
4072 '(("AUTO" "inputenc" t)
4073 ("T1" "fontenc" t)
4074 ("" "fixltx2e" nil)
4075 ("" "graphicx" t)
4076 ("" "longtable" nil)
4077 ("" "float" nil)
4078 ("" "wrapfig" nil)
4079 ("" "rotating" nil)
4080 ("normalem" "ulem" t)
4081 ("" "amsmath" t)
4082 ("" "textcomp" t)
4083 ("" "marvosym" t)
4084 ("" "wasysym" t)
4085 ("" "amssymb" t)
4086 ("" "capt-of" nil)
4087 ("" "hyperref" nil)
4088 "\\tolerance=1000")
4089 "Alist of default packages to be inserted in the header.
4091 Change this only if one of the packages here causes an
4092 incompatibility with another package you are using.
4094 The packages in this list are needed by one part or another of
4095 Org mode to function properly:
4097 - inputenc, fontenc: for basic font and character selection
4098 - fixltx2e: Important patches of LaTeX itself
4099 - graphicx: for including images
4100 - longtable: For multipage tables
4101 - float, wrapfig: for figure placement
4102 - rotating: for sideways figures and tables
4103 - ulem: for underline and strike-through
4104 - amsmath: for subscript and superscript and math environments
4105 - textcomp, marvosymb, wasysym, amssymb: for various symbols used
4106 for interpreting the entities in `org-entities'. You can skip
4107 some of these packages if you don't use any of their symbols.
4108 - capt-of: for captions outside of floats
4109 - hyperref: for cross references
4111 Therefore you should not modify this variable unless you know
4112 what you are doing. The one reason to change it anyway is that
4113 you might be loading some other package that conflicts with one
4114 of the default packages. Each element is either a cell or
4115 a string.
4117 A cell is of the format:
4119 \( \"options\" \"package\" SNIPPET-FLAG).
4121 If SNIPPET-FLAG is non-nil, the package also needs to be included
4122 when compiling LaTeX snippets into images for inclusion into
4123 non-LaTeX output.
4125 A string will be inserted as-is in the header of the document."
4126 :group 'org-latex
4127 :group 'org-export-latex
4128 :set 'org-set-packages-alist
4129 :get 'org-get-packages-alist
4130 :version "24.1"
4131 :type '(repeat
4132 (choice
4133 (list :tag "options/package pair"
4134 (string :tag "options")
4135 (string :tag "package")
4136 (boolean :tag "Snippet"))
4137 (string :tag "A line of LaTeX"))))
4139 (defcustom org-latex-packages-alist nil
4140 "Alist of packages to be inserted in every LaTeX header.
4142 These will be inserted after `org-latex-default-packages-alist'.
4143 Each element is either a cell or a string.
4145 A cell is of the format:
4147 \(\"options\" \"package\" SNIPPET-FLAG)
4149 SNIPPET-FLAG, when non-nil, indicates that this package is also
4150 needed when turning LaTeX snippets into images for inclusion into
4151 non-LaTeX output.
4153 A string will be inserted as-is in the header of the document.
4155 Make sure that you only list packages here which:
4157 - you want in every file;
4158 - do not conflict with the setup in `org-format-latex-header';
4159 - do not conflict with the default packages in
4160 `org-latex-default-packages-alist'."
4161 :group 'org-latex
4162 :group 'org-export-latex
4163 :set 'org-set-packages-alist
4164 :get 'org-get-packages-alist
4165 :type '(repeat
4166 (choice
4167 (list :tag "options/package pair"
4168 (string :tag "options")
4169 (string :tag "package")
4170 (boolean :tag "Snippet"))
4171 (string :tag "A line of LaTeX"))))
4173 (defgroup org-appearance nil
4174 "Settings for Org-mode appearance."
4175 :tag "Org Appearance"
4176 :group 'org)
4178 (defcustom org-level-color-stars-only nil
4179 "Non-nil means fontify only the stars in each headline.
4180 When nil, the entire headline is fontified.
4181 Changing it requires restart of `font-lock-mode' to become effective
4182 also in regions already fontified."
4183 :group 'org-appearance
4184 :type 'boolean)
4186 (defcustom org-hide-leading-stars nil
4187 "Non-nil means hide the first N-1 stars in a headline.
4188 This works by using the face `org-hide' for these stars. This
4189 face is white for a light background, and black for a dark
4190 background. You may have to customize the face `org-hide' to
4191 make this work.
4192 Changing it requires restart of `font-lock-mode' to become effective
4193 also in regions already fontified.
4194 You may also set this on a per-file basis by adding one of the following
4195 lines to the buffer:
4197 #+STARTUP: hidestars
4198 #+STARTUP: showstars"
4199 :group 'org-appearance
4200 :type 'boolean)
4202 (defcustom org-hidden-keywords nil
4203 "List of symbols corresponding to keywords to be hidden the org buffer.
4204 For example, a value '(title) for this list will make the document's title
4205 appear in the buffer without the initial #+TITLE: keyword."
4206 :group 'org-appearance
4207 :version "24.1"
4208 :type '(set (const :tag "#+AUTHOR" author)
4209 (const :tag "#+DATE" date)
4210 (const :tag "#+EMAIL" email)
4211 (const :tag "#+TITLE" title)))
4213 (defcustom org-custom-properties nil
4214 "List of properties (as strings) with a special meaning.
4215 The default use of these custom properties is to let the user
4216 hide them with `org-toggle-custom-properties-visibility'."
4217 :group 'org-properties
4218 :group 'org-appearance
4219 :version "24.3"
4220 :type '(repeat (string :tag "Property Name")))
4222 (defcustom org-fontify-done-headline nil
4223 "Non-nil means change the face of a headline if it is marked DONE.
4224 Normally, only the TODO/DONE keyword indicates the state of a headline.
4225 When this is non-nil, the headline after the keyword is set to the
4226 `org-headline-done' as an additional indication."
4227 :group 'org-appearance
4228 :type 'boolean)
4230 (defcustom org-fontify-emphasized-text t
4231 "Non-nil means fontify *bold*, /italic/ and _underlined_ text.
4232 Changing this variable requires a restart of Emacs to take effect."
4233 :group 'org-appearance
4234 :type 'boolean)
4236 (defcustom org-fontify-whole-heading-line nil
4237 "Non-nil means fontify the whole line for headings.
4238 This is useful when setting a background color for the
4239 org-level-* faces."
4240 :group 'org-appearance
4241 :type 'boolean)
4243 (defcustom org-highlight-latex-and-related nil
4244 "Non-nil means highlight LaTeX related syntax in the buffer.
4245 When non nil, the value should be a list containing any of the
4246 following symbols:
4247 `latex' Highlight LaTeX snippets and environments.
4248 `script' Highlight subscript and superscript.
4249 `entities' Highlight entities."
4250 :group 'org-appearance
4251 :version "24.4"
4252 :package-version '(Org . "8.0")
4253 :type '(choice
4254 (const :tag "No highlighting" nil)
4255 (set :greedy t :tag "Highlight"
4256 (const :tag "LaTeX snippets and environments" latex)
4257 (const :tag "Subscript and superscript" script)
4258 (const :tag "Entities" entities))))
4260 (defcustom org-hide-emphasis-markers nil
4261 "Non-nil mean font-lock should hide the emphasis marker characters."
4262 :group 'org-appearance
4263 :type 'boolean)
4265 (defcustom org-hide-macro-markers nil
4266 "Non-nil mean font-lock should hide the brackets marking macro calls."
4267 :group 'org-appearance
4268 :type 'boolean)
4270 (defcustom org-pretty-entities nil
4271 "Non-nil means show entities as UTF8 characters.
4272 When nil, the \\name form remains in the buffer."
4273 :group 'org-appearance
4274 :version "24.1"
4275 :type 'boolean)
4277 (defcustom org-pretty-entities-include-sub-superscripts t
4278 "Non-nil means, pretty entity display includes formatting sub/superscripts."
4279 :group 'org-appearance
4280 :version "24.1"
4281 :type 'boolean)
4283 (defvar org-emph-re nil
4284 "Regular expression for matching emphasis.
4285 After a match, the match groups contain these elements:
4286 0 The match of the full regular expression, including the characters
4287 before and after the proper match
4288 1 The character before the proper match, or empty at beginning of line
4289 2 The proper match, including the leading and trailing markers
4290 3 The leading marker like * or /, indicating the type of highlighting
4291 4 The text between the emphasis markers, not including the markers
4292 5 The character after the match, empty at the end of a line")
4293 (defvar org-verbatim-re nil
4294 "Regular expression for matching verbatim text.")
4295 (defvar org-emphasis-regexp-components) ; defined just below
4296 (defvar org-emphasis-alist) ; defined just below
4297 (defun org-set-emph-re (var val)
4298 "Set variable and compute the emphasis regular expression."
4299 (set var val)
4300 (when (and (boundp 'org-emphasis-alist)
4301 (boundp 'org-emphasis-regexp-components)
4302 org-emphasis-alist org-emphasis-regexp-components)
4303 (let* ((e org-emphasis-regexp-components)
4304 (pre (car e))
4305 (post (nth 1 e))
4306 (border (nth 2 e))
4307 (body (nth 3 e))
4308 (nl (nth 4 e))
4309 (body1 (concat body "*?"))
4310 (markers (mapconcat 'car org-emphasis-alist ""))
4311 (vmarkers (mapconcat
4312 (lambda (x) (if (eq (nth 2 x) 'verbatim) (car x) ""))
4313 org-emphasis-alist "")))
4314 ;; make sure special characters appear at the right position in the class
4315 (if (string-match "\\^" markers)
4316 (setq markers (concat (replace-match "" t t markers) "^")))
4317 (if (string-match "-" markers)
4318 (setq markers (concat (replace-match "" t t markers) "-")))
4319 (if (string-match "\\^" vmarkers)
4320 (setq vmarkers (concat (replace-match "" t t vmarkers) "^")))
4321 (if (string-match "-" vmarkers)
4322 (setq vmarkers (concat (replace-match "" t t vmarkers) "-")))
4323 (if (> nl 0)
4324 (setq body1 (concat body1 "\\(?:\n" body "*?\\)\\{0,"
4325 (int-to-string nl) "\\}")))
4326 ;; Make the regexp
4327 (setq org-emph-re
4328 (concat "\\([" pre "]\\|^\\)"
4329 "\\("
4330 "\\([" markers "]\\)"
4331 "\\("
4332 "[^" border "]\\|"
4333 "[^" border "]"
4334 body1
4335 "[^" border "]"
4336 "\\)"
4337 "\\3\\)"
4338 "\\([" post "]\\|$\\)"))
4339 (setq org-verbatim-re
4340 (concat "\\([" pre "]\\|^\\)"
4341 "\\("
4342 "\\([" vmarkers "]\\)"
4343 "\\("
4344 "[^" border "]\\|"
4345 "[^" border "]"
4346 body1
4347 "[^" border "]"
4348 "\\)"
4349 "\\3\\)"
4350 "\\([" post "]\\|$\\)")))))
4352 ;; This used to be a defcustom (Org <8.0) but allowing the users to
4353 ;; set this option proved cumbersome. See this message/thread:
4354 ;; http://article.gmane.org/gmane.emacs.orgmode/68681
4355 (defvar org-emphasis-regexp-components
4356 '(" \t('\"{" "- \t.,:!?;'\")}\\[" " \t\r\n,\"'" "." 1)
4357 "Components used to build the regular expression for emphasis.
4358 This is a list with five entries. Terminology: In an emphasis string
4359 like \" *strong word* \", we call the initial space PREMATCH, the final
4360 space POSTMATCH, the stars MARKERS, \"s\" and \"d\" are BORDER characters
4361 and \"trong wor\" is the body. The different components in this variable
4362 specify what is allowed/forbidden in each part:
4364 pre Chars allowed as prematch. Beginning of line will be allowed too.
4365 post Chars allowed as postmatch. End of line will be allowed too.
4366 border The chars *forbidden* as border characters.
4367 body-regexp A regexp like \".\" to match a body character. Don't use
4368 non-shy groups here, and don't allow newline here.
4369 newline The maximum number of newlines allowed in an emphasis exp.
4371 You need to reload Org or to restart Emacs after customizing this.")
4373 (defcustom org-emphasis-alist
4374 `(("*" bold)
4375 ("/" italic)
4376 ("_" underline)
4377 ("=" org-verbatim verbatim)
4378 ("~" org-code verbatim)
4379 ("+" ,(if (featurep 'xemacs) 'org-table '(:strike-through t))))
4380 "Alist of characters and faces to emphasize text.
4381 Text starting and ending with a special character will be emphasized,
4382 for example *bold*, _underlined_ and /italic/. This variable sets the
4383 marker characters and the face to be used by font-lock for highlighting
4384 in Org-mode Emacs buffers.
4386 You need to reload Org or to restart Emacs after customizing this."
4387 :group 'org-appearance
4388 :set 'org-set-emph-re
4389 :version "24.4"
4390 :package-version '(Org . "8.0")
4391 :type '(repeat
4392 (list
4393 (string :tag "Marker character")
4394 (choice
4395 (face :tag "Font-lock-face")
4396 (plist :tag "Face property list"))
4397 (option (const verbatim)))))
4399 (defvar org-protecting-blocks
4400 '("src" "example" "latex" "ascii" "html" "ditaa" "dot" "r" "R")
4401 "Blocks that contain text that is quoted, i.e. not processed as Org syntax.
4402 This is needed for font-lock setup.")
4404 ;;; Miscellaneous options
4406 (defgroup org-completion nil
4407 "Completion in Org-mode."
4408 :tag "Org Completion"
4409 :group 'org)
4411 (defcustom org-completion-use-ido nil
4412 "Non-nil means use ido completion wherever possible.
4413 Note that `ido-mode' must be active for this variable to be relevant.
4414 If you decide to turn this variable on, you might well want to turn off
4415 `org-outline-path-complete-in-steps'.
4416 See also `org-completion-use-iswitchb'."
4417 :group 'org-completion
4418 :type 'boolean)
4420 (defcustom org-completion-use-iswitchb nil
4421 "Non-nil means use iswitchb completion wherever possible.
4422 Note that `iswitchb-mode' must be active for this variable to be relevant.
4423 If you decide to turn this variable on, you might well want to turn off
4424 `org-outline-path-complete-in-steps'.
4425 Note that this variable has only an effect if `org-completion-use-ido' is nil."
4426 :group 'org-completion
4427 :type 'boolean)
4429 (defcustom org-completion-fallback-command 'hippie-expand
4430 "The expansion command called by \\[pcomplete] in normal context.
4431 Normal means, no org-mode-specific context."
4432 :group 'org-completion
4433 :type 'function)
4435 ;;; Functions and variables from their packages
4436 ;; Declared here to avoid compiler warnings
4438 ;; XEmacs only
4439 (defvar outline-mode-menu-heading)
4440 (defvar outline-mode-menu-show)
4441 (defvar outline-mode-menu-hide)
4442 (defvar zmacs-regions) ; XEmacs regions
4444 ;; Emacs only
4445 (defvar mark-active)
4447 ;; Various packages
4448 (declare-function calendar-iso-to-absolute "cal-iso" (date))
4449 (declare-function calendar-forward-day "cal-move" (arg))
4450 (declare-function calendar-goto-date "cal-move" (date))
4451 (declare-function calendar-goto-today "cal-move" ())
4452 (declare-function calendar-iso-from-absolute "cal-iso" (date))
4453 (defvar calc-embedded-close-formula)
4454 (defvar calc-embedded-open-formula)
4455 (declare-function cdlatex-tab "ext:cdlatex" ())
4456 (declare-function cdlatex-compute-tables "ext:cdlatex" ())
4457 (declare-function dired-get-filename "dired" (&optional localp no-error-if-not-filep))
4458 (defvar font-lock-unfontify-region-function)
4459 (declare-function iswitchb-read-buffer "iswitchb"
4460 (prompt &optional default require-match start matches-set))
4461 (defvar iswitchb-temp-buflist)
4462 (declare-function org-gnus-follow-link "org-gnus" (&optional group article))
4463 (defvar org-agenda-tags-todo-honor-ignore-options)
4464 (declare-function org-agenda-skip "org-agenda" ())
4465 (declare-function
4466 org-agenda-format-item "org-agenda"
4467 (extra txt &optional level category tags dotime noprefix remove-re habitp))
4468 (declare-function org-agenda-new-marker "org-agenda" (&optional pos))
4469 (declare-function org-agenda-change-all-lines "org-agenda"
4470 (newhead hdmarker &optional fixface just-this))
4471 (declare-function org-agenda-set-restriction-lock "org-agenda" (&optional type))
4472 (declare-function org-agenda-maybe-redo "org-agenda" ())
4473 (declare-function org-agenda-save-markers-for-cut-and-paste "org-agenda"
4474 (beg end))
4475 (declare-function org-agenda-copy-local-variable "org-agenda" (var))
4476 (declare-function org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
4477 "org-agenda" (&optional end))
4478 (declare-function org-inlinetask-remove-END-maybe "org-inlinetask" ())
4479 (declare-function org-inlinetask-in-task-p "org-inlinetask" ())
4480 (declare-function org-inlinetask-goto-beginning "org-inlinetask" ())
4481 (declare-function org-inlinetask-goto-end "org-inlinetask" ())
4482 (declare-function org-indent-mode "org-indent" (&optional arg))
4483 (declare-function parse-time-string "parse-time" (string))
4484 (declare-function org-attach-reveal "org-attach" (&optional if-exists))
4485 (declare-function orgtbl-send-table "org-table" (&optional maybe))
4486 (defvar remember-data-file)
4487 (defvar texmathp-why)
4488 (declare-function speedbar-line-directory "speedbar" (&optional depth))
4489 (declare-function table--at-cell-p "table" (position &optional object at-column))
4490 (declare-function calc-eval "calc" (str &optional separator &rest args))
4492 ;;;###autoload
4493 (defun turn-on-orgtbl ()
4494 "Unconditionally turn on `orgtbl-mode'."
4495 (require 'org-table)
4496 (orgtbl-mode 1))
4498 (defun org-at-table-p (&optional table-type)
4499 "Return t if the cursor is inside an org-type table.
4500 If TABLE-TYPE is non-nil, also check for table.el-type tables."
4501 (if org-enable-table-editor
4502 (save-excursion
4503 (beginning-of-line 1)
4504 (looking-at (if table-type org-table-any-line-regexp
4505 org-table-line-regexp)))
4506 nil))
4507 (defsubst org-table-p () (org-at-table-p))
4509 (defun org-at-table.el-p ()
4510 "Return t if and only if we are at a table.el table."
4511 (and (org-at-table-p 'any)
4512 (save-excursion
4513 (goto-char (org-table-begin 'any))
4514 (looking-at org-table1-hline-regexp))))
4516 (defun org-table-recognize-table.el ()
4517 "If there is a table.el table nearby, recognize it and move into it."
4518 (if org-table-tab-recognizes-table.el
4519 (if (org-at-table.el-p)
4520 (progn
4521 (beginning-of-line 1)
4522 (if (looking-at org-table-dataline-regexp)
4524 (if (looking-at org-table1-hline-regexp)
4525 (progn
4526 (beginning-of-line 2)
4527 (if (looking-at org-table-any-border-regexp)
4528 (beginning-of-line -1)))))
4529 (if (re-search-forward "|" (org-table-end t) t)
4530 (progn
4531 (require 'table)
4532 (if (table--at-cell-p (point))
4534 (message "recognizing table.el table...")
4535 (table-recognize-table)
4536 (message "recognizing table.el table...done")))
4537 (error "This should not happen"))
4539 nil)
4540 nil))
4542 (defun org-at-table-hline-p ()
4543 "Return t if the cursor is inside a hline in a table."
4544 (if org-enable-table-editor
4545 (save-excursion
4546 (beginning-of-line 1)
4547 (looking-at org-table-hline-regexp))
4548 nil))
4550 (defun org-table-map-tables (function &optional quietly)
4551 "Apply FUNCTION to the start of all tables in the buffer."
4552 (save-excursion
4553 (save-restriction
4554 (widen)
4555 (goto-char (point-min))
4556 (while (re-search-forward org-table-any-line-regexp nil t)
4557 (unless quietly
4558 (message "Mapping tables: %d%%" (/ (* 100.0 (point)) (buffer-size))))
4559 (beginning-of-line 1)
4560 (when (and (looking-at org-table-line-regexp)
4561 ;; Exclude tables in src/example/verbatim/clocktable blocks
4562 (not (org-in-block-p '("src" "example" "verbatim" "clocktable"))))
4563 (save-excursion (funcall function))
4564 (or (looking-at org-table-line-regexp)
4565 (forward-char 1)))
4566 (re-search-forward org-table-any-border-regexp nil 1))))
4567 (unless quietly (message "Mapping tables: done")))
4569 (declare-function org-clock-save-markers-for-cut-and-paste "org-clock" (beg end))
4570 (declare-function org-clock-update-mode-line "org-clock" ())
4571 (declare-function org-resolve-clocks "org-clock"
4572 (&optional also-non-dangling-p prompt last-valid))
4574 (defun org-at-TBLFM-p (&optional pos)
4575 "Return t when point (or POS) is in #+TBLFM line."
4576 (save-excursion
4577 (let ((pos pos)))
4578 (goto-char (or pos (point)))
4579 (beginning-of-line 1)
4580 (looking-at org-TBLFM-regexp)))
4582 (defvar org-clock-start-time)
4583 (defvar org-clock-marker (make-marker)
4584 "Marker recording the last clock-in.")
4585 (defvar org-clock-hd-marker (make-marker)
4586 "Marker recording the last clock-in, but the headline position.")
4587 (defvar org-clock-heading ""
4588 "The heading of the current clock entry.")
4589 (defun org-clock-is-active ()
4590 "Return the buffer where the clock is currently running.
4591 Return nil if no clock is running."
4592 (marker-buffer org-clock-marker))
4594 (defun org-check-running-clock ()
4595 "Check if the current buffer contains the running clock.
4596 If yes, offer to stop it and to save the buffer with the changes."
4597 (when (and (equal (marker-buffer org-clock-marker) (current-buffer))
4598 (y-or-n-p (format "Clock-out in buffer %s before killing it? "
4599 (buffer-name))))
4600 (org-clock-out)
4601 (when (y-or-n-p "Save changed buffer?")
4602 (save-buffer))))
4604 (defun org-clocktable-try-shift (dir n)
4605 "Check if this line starts a clock table, if yes, shift the time block."
4606 (when (org-match-line "^[ \t]*#\\+BEGIN:[ \t]+clocktable\\>")
4607 (org-clocktable-shift dir n)))
4609 ;;;###autoload
4610 (defun org-clock-persistence-insinuate ()
4611 "Set up hooks for clock persistence."
4612 (require 'org-clock)
4613 (add-hook 'org-mode-hook 'org-clock-load)
4614 (add-hook 'kill-emacs-hook 'org-clock-save))
4616 (defgroup org-archive nil
4617 "Options concerning archiving in Org-mode."
4618 :tag "Org Archive"
4619 :group 'org-structure)
4621 (defcustom org-archive-location "%s_archive::"
4622 "The location where subtrees should be archived.
4624 The value of this variable is a string, consisting of two parts,
4625 separated by a double-colon. The first part is a filename and
4626 the second part is a headline.
4628 When the filename is omitted, archiving happens in the same file.
4629 %s in the filename will be replaced by the current file
4630 name (without the directory part). Archiving to a different file
4631 is useful to keep archived entries from contributing to the
4632 Org-mode Agenda.
4634 The archived entries will be filed as subtrees of the specified
4635 headline. When the headline is omitted, the subtrees are simply
4636 filed away at the end of the file, as top-level entries. Also in
4637 the heading you can use %s to represent the file name, this can be
4638 useful when using the same archive for a number of different files.
4640 Here are a few examples:
4641 \"%s_archive::\"
4642 If the current file is Projects.org, archive in file
4643 Projects.org_archive, as top-level trees. This is the default.
4645 \"::* Archived Tasks\"
4646 Archive in the current file, under the top-level headline
4647 \"* Archived Tasks\".
4649 \"~/org/archive.org::\"
4650 Archive in file ~/org/archive.org (absolute path), as top-level trees.
4652 \"~/org/archive.org::* From %s\"
4653 Archive in file ~/org/archive.org (absolute path), under headlines
4654 \"From FILENAME\" where file name is the current file name.
4656 \"~/org/datetree.org::datetree/* Finished Tasks\"
4657 The \"datetree/\" string is special, signifying to archive
4658 items to the datetree. Items are placed in either the CLOSED
4659 date of the item, or the current date if there is no CLOSED date.
4660 The heading will be a subentry to the current date. There doesn't
4661 need to be a heading, but there always needs to be a slash after
4662 datetree. For example, to store archived items directly in the
4663 datetree, use \"~/org/datetree.org::datetree/\".
4665 \"basement::** Finished Tasks\"
4666 Archive in file ./basement (relative path), as level 3 trees
4667 below the level 2 heading \"** Finished Tasks\".
4669 You may set this option on a per-file basis by adding to the buffer a
4670 line like
4672 #+ARCHIVE: basement::** Finished Tasks
4674 You may also define it locally for a subtree by setting an ARCHIVE property
4675 in the entry. If such a property is found in an entry, or anywhere up
4676 the hierarchy, it will be used."
4677 :group 'org-archive
4678 :type 'string)
4680 (defcustom org-agenda-skip-archived-trees t
4681 "Non-nil means the agenda will skip any items located in archived trees.
4682 An archived tree is a tree marked with the tag ARCHIVE. The use of this
4683 variable is no longer recommended, you should leave it at the value t.
4684 Instead, use the key `v' to cycle the archives-mode in the agenda."
4685 :group 'org-archive
4686 :group 'org-agenda-skip
4687 :type 'boolean)
4689 (defcustom org-columns-skip-archived-trees t
4690 "Non-nil means ignore archived trees when creating column view."
4691 :group 'org-archive
4692 :group 'org-properties
4693 :type 'boolean)
4695 (defcustom org-cycle-open-archived-trees nil
4696 "Non-nil means `org-cycle' will open archived trees.
4697 An archived tree is a tree marked with the tag ARCHIVE.
4698 When nil, archived trees will stay folded. You can still open them with
4699 normal outline commands like `show-all', but not with the cycling commands."
4700 :group 'org-archive
4701 :group 'org-cycle
4702 :type 'boolean)
4704 (defcustom org-sparse-tree-open-archived-trees nil
4705 "Non-nil means sparse tree construction shows matches in archived trees.
4706 When nil, matches in these trees are highlighted, but the trees are kept in
4707 collapsed state."
4708 :group 'org-archive
4709 :group 'org-sparse-trees
4710 :type 'boolean)
4712 (defcustom org-sparse-tree-default-date-type nil
4713 "The default date type when building a sparse tree.
4714 When this is nil, a date is a scheduled or a deadline timestamp.
4715 Otherwise, these types are allowed:
4717 all: all timestamps
4718 active: only active timestamps (<...>)
4719 inactive: only inactive timestamps ([...])
4720 scheduled: only scheduled timestamps
4721 deadline: only deadline timestamps"
4722 :type '(choice (const :tag "Scheduled or deadline" nil)
4723 (const :tag "All timestamps" all)
4724 (const :tag "Only active timestamps" active)
4725 (const :tag "Only inactive timestamps" inactive)
4726 (const :tag "Only scheduled timestamps" scheduled)
4727 (const :tag "Only deadline timestamps" deadline)
4728 (const :tag "Only closed timestamps" closed))
4729 :version "25.1"
4730 :package-version '(Org . "8.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 (org-with-wide-buffer
4757 (let ((case-fold-search nil)
4758 (re (concat org-outline-regexp-bol ".*:" org-archive-tag ":")))
4759 (goto-char beg)
4760 (while (and (< (point) end) (re-search-forward re end t))
4761 (when (member org-archive-tag (org-get-tags))
4762 (org-flag-subtree t)
4763 (org-end-of-subtree t))))))
4765 (declare-function outline-end-of-heading "outline" ())
4766 (declare-function outline-flag-region "outline" (from to flag))
4767 (defun org-flag-subtree (flag)
4768 (save-excursion
4769 (org-back-to-heading t)
4770 (outline-end-of-heading)
4771 (outline-flag-region (point)
4772 (progn (org-end-of-subtree t) (point))
4773 flag)))
4775 (defalias 'org-advertized-archive-subtree 'org-archive-subtree)
4777 ;; Declare Column View Code
4779 (declare-function org-columns-number-to-string "org-colview" (n fmt &optional printf))
4780 (declare-function org-columns-get-format-and-top-level "org-colview" ())
4781 (declare-function org-columns-compute "org-colview" (property))
4783 ;; Declare ID code
4785 (declare-function org-id-store-link "org-id")
4786 (declare-function org-id-locations-load "org-id")
4787 (declare-function org-id-locations-save "org-id")
4788 (defvar org-id-track-globally)
4790 ;;; Variables for pre-computed regular expressions, all buffer local
4792 (defvar org-todo-regexp nil
4793 "Matches any of the TODO state keywords.")
4794 (make-variable-buffer-local 'org-todo-regexp)
4795 (defvar org-not-done-regexp nil
4796 "Matches any of the TODO state keywords except the last one.")
4797 (make-variable-buffer-local 'org-not-done-regexp)
4798 (defvar org-not-done-heading-regexp nil
4799 "Matches a TODO headline that is not done.")
4800 (make-variable-buffer-local 'org-not-done-regexp)
4801 (defvar org-todo-line-regexp nil
4802 "Matches a headline and puts TODO state into group 2 if present.")
4803 (make-variable-buffer-local 'org-todo-line-regexp)
4804 (defvar org-complex-heading-regexp nil
4805 "Matches a headline and puts everything into groups:
4806 group 1: the stars
4807 group 2: The todo keyword, maybe
4808 group 3: Priority cookie
4809 group 4: True headline
4810 group 5: Tags")
4811 (make-variable-buffer-local 'org-complex-heading-regexp)
4812 (defvar org-complex-heading-regexp-format nil
4813 "Printf format to make regexp to match an exact headline.
4814 This regexp will match the headline of any node which has the
4815 exact headline text that is put into the format, but may have any
4816 TODO state, priority and tags.")
4817 (make-variable-buffer-local 'org-complex-heading-regexp-format)
4818 (defvar org-todo-line-tags-regexp nil
4819 "Matches a headline and puts TODO state into group 2 if present.
4820 Also put tags into group 4 if tags are present.")
4821 (make-variable-buffer-local 'org-todo-line-tags-regexp)
4823 (defconst org-plain-time-of-day-regexp
4824 (concat
4825 "\\(\\<[012]?[0-9]"
4826 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4827 "\\(--?"
4828 "\\(\\<[012]?[0-9]"
4829 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4830 "\\)?")
4831 "Regular expression to match a plain time or time range.
4832 Examples: 11:45 or 8am-13:15 or 2:45-2:45pm. After a match, the following
4833 groups carry important information:
4834 0 the full match
4835 1 the first time, range or not
4836 8 the second time, if it is a range.")
4838 (defconst org-plain-time-extension-regexp
4839 (concat
4840 "\\(\\<[012]?[0-9]"
4841 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4842 "\\+\\([0-9]+\\)\\(:\\([0-5][0-9]\\)\\)?")
4843 "Regular expression to match a time range like 13:30+2:10 = 13:30-15:40.
4844 Examples: 11:45 or 8am-13:15 or 2:45-2:45pm. After a match, the following
4845 groups carry important information:
4846 0 the full match
4847 7 hours of duration
4848 9 minutes of duration")
4850 (defconst org-stamp-time-of-day-regexp
4851 (concat
4852 "<\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} +\\sw+ +\\)"
4853 "\\([012][0-9]:[0-5][0-9]\\(-\\([012][0-9]:[0-5][0-9]\\)\\)?[^\n\r>]*?\\)>"
4854 "\\(--?"
4855 "<\\1\\([012][0-9]:[0-5][0-9]\\)>\\)?")
4856 "Regular expression to match a timestamp time or time range.
4857 After a match, the following groups carry important information:
4858 0 the full match
4859 1 date plus weekday, for back referencing to make sure both times are on the same day
4860 2 the first time, range or not
4861 4 the second time, if it is a range.")
4863 (defconst org-startup-options
4864 '(("fold" org-startup-folded t)
4865 ("overview" org-startup-folded t)
4866 ("nofold" org-startup-folded nil)
4867 ("showall" org-startup-folded nil)
4868 ("showeverything" org-startup-folded showeverything)
4869 ("content" org-startup-folded content)
4870 ("indent" org-startup-indented t)
4871 ("noindent" org-startup-indented nil)
4872 ("hidestars" org-hide-leading-stars t)
4873 ("showstars" org-hide-leading-stars nil)
4874 ("odd" org-odd-levels-only t)
4875 ("oddeven" org-odd-levels-only nil)
4876 ("align" org-startup-align-all-tables t)
4877 ("noalign" org-startup-align-all-tables nil)
4878 ("inlineimages" org-startup-with-inline-images t)
4879 ("noinlineimages" org-startup-with-inline-images nil)
4880 ("latexpreview" org-startup-with-latex-preview t)
4881 ("nolatexpreview" org-startup-with-latex-preview nil)
4882 ("customtime" org-display-custom-times t)
4883 ("logdone" org-log-done time)
4884 ("lognotedone" org-log-done note)
4885 ("nologdone" org-log-done nil)
4886 ("lognoteclock-out" org-log-note-clock-out t)
4887 ("nolognoteclock-out" org-log-note-clock-out nil)
4888 ("logrepeat" org-log-repeat state)
4889 ("lognoterepeat" org-log-repeat note)
4890 ("logdrawer" org-log-into-drawer t)
4891 ("nologdrawer" org-log-into-drawer nil)
4892 ("logstatesreversed" org-log-states-order-reversed t)
4893 ("nologstatesreversed" org-log-states-order-reversed nil)
4894 ("nologrepeat" org-log-repeat nil)
4895 ("logreschedule" org-log-reschedule time)
4896 ("lognotereschedule" org-log-reschedule note)
4897 ("nologreschedule" org-log-reschedule nil)
4898 ("logredeadline" org-log-redeadline time)
4899 ("lognoteredeadline" org-log-redeadline note)
4900 ("nologredeadline" org-log-redeadline nil)
4901 ("logrefile" org-log-refile time)
4902 ("lognoterefile" org-log-refile note)
4903 ("nologrefile" org-log-refile nil)
4904 ("fninline" org-footnote-define-inline t)
4905 ("nofninline" org-footnote-define-inline nil)
4906 ("fnlocal" org-footnote-section nil)
4907 ("fnauto" org-footnote-auto-label t)
4908 ("fnprompt" org-footnote-auto-label nil)
4909 ("fnconfirm" org-footnote-auto-label confirm)
4910 ("fnplain" org-footnote-auto-label plain)
4911 ("fnadjust" org-footnote-auto-adjust t)
4912 ("nofnadjust" org-footnote-auto-adjust nil)
4913 ("constcgs" constants-unit-system cgs)
4914 ("constSI" constants-unit-system SI)
4915 ("noptag" org-tag-persistent-alist nil)
4916 ("hideblocks" org-hide-block-startup t)
4917 ("nohideblocks" org-hide-block-startup nil)
4918 ("beamer" org-startup-with-beamer-mode t)
4919 ("entitiespretty" org-pretty-entities t)
4920 ("entitiesplain" org-pretty-entities nil))
4921 "Variable associated with STARTUP options for org-mode.
4922 Each element is a list of three items: the startup options (as written
4923 in the #+STARTUP line), the corresponding variable, and the value to set
4924 this variable to if the option is found. An optional forth element PUSH
4925 means to push this value onto the list in the variable.")
4927 (defcustom org-group-tags t
4928 "When non-nil (the default), use group tags.
4929 This can be turned on/off through `org-toggle-tags-groups'."
4930 :group 'org-tags
4931 :group 'org-startup
4932 :type 'boolean)
4934 (defvar org-inhibit-startup nil) ; Dynamically-scoped param.
4936 (defun org-toggle-tags-groups ()
4937 "Toggle support for group tags.
4938 Support for group tags is controlled by the option
4939 `org-group-tags', which is non-nil by default."
4940 (interactive)
4941 (setq org-group-tags (not org-group-tags))
4942 (cond ((and (derived-mode-p 'org-agenda-mode)
4943 org-group-tags)
4944 (org-agenda-redo))
4945 ((derived-mode-p 'org-mode)
4946 (let ((org-inhibit-startup t)) (org-mode))))
4947 (message "Groups tags support has been turned %s"
4948 (if org-group-tags "on" "off")))
4950 (defun org-set-regexps-and-options (&optional tags-only)
4951 "Precompute regular expressions used in the current buffer.
4952 When optional argument TAGS-ONLY is non-nil, only compute tags
4953 related expressions."
4954 (when (derived-mode-p 'org-mode)
4955 (let ((alist (org--setup-collect-keywords
4956 (org-make-options-regexp
4957 (append '("FILETAGS" "TAGS" "SETUPFILE")
4958 (and (not tags-only)
4959 '("ARCHIVE" "CATEGORY" "COLUMNS" "CONSTANTS"
4960 "LINK" "OPTIONS" "PRIORITIES" "PROPERTY"
4961 "SEQ_TODO" "STARTUP" "TODO" "TYP_TODO")))))))
4962 (org--setup-process-tags
4963 (cdr (assq 'tags alist)) (cdr (assq 'filetags alist)))
4964 (unless tags-only
4965 ;; File properties.
4966 (org-set-local 'org-file-properties (cdr (assq 'property alist)))
4967 ;; Archive location.
4968 (let ((archive (cdr (assq 'archive alist))))
4969 (when archive (org-set-local 'org-archive-location archive)))
4970 ;; Category.
4971 (let ((cat (org-string-nw-p (cdr (assq 'category alist)))))
4972 (when cat
4973 (org-set-local 'org-category (intern cat))
4974 (org-set-local 'org-file-properties
4975 (org--update-property-plist
4976 "CATEGORY" cat org-file-properties))))
4977 ;; Columns.
4978 (let ((column (cdr (assq 'columns alist))))
4979 (when column (org-set-local 'org-columns-default-format column)))
4980 ;; Constants.
4981 (setq org-table-formula-constants-local (cdr (assq 'constants alist)))
4982 ;; Link abbreviations.
4983 (let ((links (cdr (assq 'link alist))))
4984 (when links (setq org-link-abbrev-alist-local (nreverse links))))
4985 ;; Priorities.
4986 (let ((priorities (cdr (assq 'priorities alist))))
4987 (when priorities
4988 (org-set-local 'org-highest-priority (nth 0 priorities))
4989 (org-set-local 'org-lowest-priority (nth 1 priorities))
4990 (org-set-local 'org-default-priority (nth 2 priorities))))
4991 ;; Scripts.
4992 (let ((scripts (assq 'scripts alist)))
4993 (when scripts
4994 (org-set-local 'org-use-sub-superscripts (cdr scripts))))
4995 ;; Startup options.
4996 (let ((startup (cdr (assq 'startup alist))))
4997 (dolist (option startup)
4998 (let ((entry (assoc-string option org-startup-options t)))
4999 (when entry
5000 (let ((var (nth 1 entry))
5001 (val (nth 2 entry)))
5002 (if (not (nth 3 entry)) (org-set-local var val)
5003 (unless (listp (symbol-value var))
5004 (org-set-local var nil))
5005 (add-to-list var val)))))))
5006 ;; TODO keywords.
5007 (org-set-local 'org-todo-kwd-alist nil)
5008 (org-set-local 'org-todo-key-alist nil)
5009 (org-set-local 'org-todo-key-trigger nil)
5010 (org-set-local 'org-todo-keywords-1 nil)
5011 (org-set-local 'org-done-keywords nil)
5012 (org-set-local 'org-todo-heads nil)
5013 (org-set-local 'org-todo-sets nil)
5014 (org-set-local 'org-todo-log-states nil)
5015 (let ((todo-sequences
5016 (or (nreverse (cdr (assq 'todo alist)))
5017 (let ((d (default-value 'org-todo-keywords)))
5018 (if (not (stringp (car d))) d
5019 ;; XXX: Backward compatibility code.
5020 (list (cons org-todo-interpretation d)))))))
5021 (dolist (sequence todo-sequences)
5022 (let* ((sequence (or (run-hook-with-args-until-success
5023 'org-todo-setup-filter-hook sequence)
5024 sequence))
5025 (sequence-type (car sequence))
5026 (keywords (cdr sequence))
5027 (sep (member "|" keywords))
5028 names alist)
5029 (dolist (k (remove "|" keywords))
5030 (unless (string-match "^\\(.*?\\)\\(?:(\\([^!@/]\\)?.*?)\\)?$"
5032 (error "Invalid TODO keyword %s" k))
5033 (let ((name (match-string 1 k))
5034 (key (match-string 2 k))
5035 (log (org-extract-log-state-settings k)))
5036 (push name names)
5037 (push (cons name (and key (string-to-char key))) alist)
5038 (when log (push log org-todo-log-states))))
5039 (let* ((names (nreverse names))
5040 (done (if sep (org-remove-keyword-keys (cdr sep))
5041 (last names)))
5042 (head (car names))
5043 (tail (list sequence-type head (car done) (org-last done))))
5044 (add-to-list 'org-todo-heads head 'append)
5045 (push names org-todo-sets)
5046 (setq org-done-keywords (append org-done-keywords done nil))
5047 (setq org-todo-keywords-1 (append org-todo-keywords-1 names nil))
5048 (setq org-todo-key-alist
5049 (append org-todo-key-alist
5050 (and alist
5051 (append '((:startgroup))
5052 (nreverse alist)
5053 '((:endgroup))))))
5054 (dolist (k names) (push (cons k tail) org-todo-kwd-alist))))))
5055 (setq org-todo-sets (nreverse org-todo-sets)
5056 org-todo-kwd-alist (nreverse org-todo-kwd-alist)
5057 org-todo-key-trigger (delq nil (mapcar #'cdr org-todo-key-alist))
5058 org-todo-key-alist (org-assign-fast-keys org-todo-key-alist))
5059 ;; Compute the regular expressions and other local variables.
5060 ;; Using `org-outline-regexp-bol' would complicate them much,
5061 ;; because of the fixed white space at the end of that string.
5062 (if (not org-done-keywords)
5063 (setq org-done-keywords
5064 (and org-todo-keywords-1 (last org-todo-keywords-1))))
5065 (setq org-not-done-keywords
5066 (org-delete-all org-done-keywords
5067 (copy-sequence org-todo-keywords-1))
5068 org-todo-regexp (regexp-opt org-todo-keywords-1 t)
5069 org-not-done-regexp (regexp-opt org-not-done-keywords t)
5070 org-not-done-heading-regexp
5071 (format org-heading-keyword-regexp-format org-not-done-regexp)
5072 org-todo-line-regexp
5073 (format org-heading-keyword-maybe-regexp-format org-todo-regexp)
5074 org-complex-heading-regexp
5075 (concat "^\\(\\*+\\)"
5076 "\\(?: +" org-todo-regexp "\\)?"
5077 "\\(?: +\\(\\[#.\\]\\)\\)?"
5078 "\\(?: +\\(.*?\\)\\)??"
5079 (org-re "\\(?:[ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)?")
5080 "[ \t]*$")
5081 org-complex-heading-regexp-format
5082 (concat "^\\(\\*+\\)"
5083 "\\(?: +" org-todo-regexp "\\)?"
5084 "\\(?: +\\(\\[#.\\]\\)\\)?"
5085 "\\(?: +"
5086 ;; Stats cookies can be stuck to body.
5087 "\\(?:\\[[0-9%%/]+\\] *\\)*"
5088 "\\(%s\\)"
5089 "\\(?: *\\[[0-9%%/]+\\]\\)*"
5090 "\\)"
5091 (org-re "\\(?:[ \t]+\\(:[[:alnum:]_@#%%:]+:\\)\\)?")
5092 "[ \t]*$")
5093 org-todo-line-tags-regexp
5094 (concat "^\\(\\*+\\)"
5095 "\\(?: +" org-todo-regexp "\\)?"
5096 "\\(?: +\\(.*?\\)\\)??"
5097 (org-re "\\(?:[ \t]+\\(:[[:alnum:]:_@#%]+:\\)\\)?")
5098 "[ \t]*$"))
5099 (org-compute-latex-and-related-regexp)))))
5101 (defun org--setup-collect-keywords (regexp &optional files alist)
5102 "Return setup keywords values as an alist.
5104 REGEXP matches a subset of setup keywords. FILES is a list of
5105 file names already visited. It is used to avoid circular setup
5106 files. ALIST, when non-nil, is the alist computed so far.
5108 Return value contains the following keys: `archive', `category',
5109 `columns', `constants', `filetags', `link', `priorities',
5110 `property', `scripts', `startup', `tags' and `todo'."
5111 (org-with-wide-buffer
5112 (goto-char (point-min))
5113 (let ((case-fold-search t))
5114 (while (re-search-forward regexp nil t)
5115 (let ((element (org-element-at-point)))
5116 (when (eq (org-element-type element) 'keyword)
5117 (let ((key (org-element-property :key element))
5118 (value (org-element-property :value element)))
5119 (cond
5120 ((equal key "ARCHIVE")
5121 (when (org-string-nw-p value)
5122 (push (cons 'archive value) alist)))
5123 ((equal key "CATEGORY") (push (cons 'category value) alist))
5124 ((equal key "COLUMNS") (push (cons 'columns value) alist))
5125 ((equal key "CONSTANTS")
5126 (let* ((constants (assq 'constants alist))
5127 (store (cdr constants)))
5128 (dolist (pair (org-split-string value))
5129 (when (string-match "^\\([a-zA-Z0][_a-zA-Z0-9]*\\)=\\(.*\\)"
5130 pair)
5131 (let* ((name (match-string 1 pair))
5132 (value (match-string 2 pair))
5133 (old (assoc name store)))
5134 (if old (setcdr old value)
5135 (push (cons name value) store)))))
5136 (if constants (setcdr constants store)
5137 (push (cons 'constants store) alist))))
5138 ((equal key "FILETAGS")
5139 (when (org-string-nw-p value)
5140 (let ((old (assq 'filetags alist))
5141 (new (apply #'nconc
5142 (mapcar (lambda (x) (org-split-string x ":"))
5143 (org-split-string value)))))
5144 (if old (setcdr old (append new (cdr old)))
5145 (push (cons 'filetags new) alist)))))
5146 ((equal key "LINK")
5147 (when (string-match "\\`\\(\\S-+\\)[ \t]+\\(.+\\)" value)
5148 (let ((links (assq 'link alist))
5149 (pair (cons (org-match-string-no-properties 1 value)
5150 (org-match-string-no-properties 2 value))))
5151 (if links (push pair (cdr links))
5152 (push (list 'link pair) alist)))))
5153 ((equal key "OPTIONS")
5154 (when (and (org-string-nw-p value)
5155 (string-match "\\^:\\(t\\|nil\\|{}\\)" value))
5156 (push (cons 'scripts (read (match-string 1 value))) alist)))
5157 ((equal key "PRIORITIES")
5158 (push (cons 'priorities
5159 (let ((prio (org-split-string value)))
5160 (if (< (length prio) 3) '(?A ?C ?B)
5161 (mapcar #'string-to-char prio))))
5162 alist))
5163 ((equal key "PROPERTY")
5164 (when (string-match "\\(\\S-+\\)[ \t]+\\(.*\\)" value)
5165 (let* ((property (assq 'property alist))
5166 (value (org--update-property-plist
5167 (org-match-string-no-properties 1 value)
5168 (org-match-string-no-properties 2 value)
5169 (cdr property))))
5170 (if property (setcdr property value)
5171 (push (cons 'property value) alist)))))
5172 ((equal key "STARTUP")
5173 (let ((startup (assq 'startup alist)))
5174 (if startup
5175 (setcdr startup
5176 (append (cdr startup) (org-split-string value)))
5177 (push (cons 'startup (org-split-string value)) alist))))
5178 ((equal key "TAGS")
5179 (let ((tag-cell (assq 'tags alist)))
5180 (if tag-cell
5181 (setcdr tag-cell
5182 (append (cdr tag-cell)
5183 '("\\n")
5184 (org-split-string value)))
5185 (push (cons 'tags (org-split-string value)) alist))))
5186 ((member key '("TODO" "SEQ_TODO" "TYP_TODO"))
5187 (let ((todo (assq 'todo alist))
5188 (value (cons (if (equal key "TYP_TODO") 'type 'sequence)
5189 (org-split-string value))))
5190 (if todo (push value (cdr todo))
5191 (push (list 'todo value) alist))))
5192 ((equal key "SETUPFILE")
5193 (unless buffer-read-only ; Do not check in Gnus messages.
5194 (let ((f (and (org-string-nw-p value)
5195 (expand-file-name
5196 (org-remove-double-quotes value)))))
5197 (when (and f (file-readable-p f) (not (member f files)))
5198 (with-temp-buffer
5199 (insert-file-contents f)
5200 (setq alist
5201 ;; Fake Org mode to benefit from cache
5202 ;; without recurring needlessly.
5203 (let ((major-mode 'org-mode))
5204 (org--setup-collect-keywords
5205 regexp (cons f files) alist)))))))))))))))
5206 alist)
5208 (defun org--setup-process-tags (tags filetags)
5209 "Precompute variables used for tags.
5210 TAGS is a list of tags and tag group symbols, as strings.
5211 FILETAGS is a list of tags, as strings."
5212 ;; Process the file tags.
5213 (org-set-local 'org-file-tags
5214 (mapcar #'org-add-prop-inherited filetags))
5215 ;; Provide default tags if no local tags are found.
5216 (when (and (not tags) org-tag-alist)
5217 (setq tags
5218 (mapcar (lambda (tag)
5219 (case (car tag)
5220 (:startgroup "{")
5221 (:endgroup "}")
5222 (:grouptags ":")
5223 (:newline "\\n")
5224 (otherwise (concat (car tag)
5225 (and (characterp (cdr tag))
5226 (format "(%c)" (cdr tag)))))))
5227 org-tag-alist)))
5228 ;; Process the tags.
5229 (org-set-local 'org-tag-groups-alist nil)
5230 (org-set-local 'org-tag-alist nil)
5231 (let (group-flag)
5232 (while tags
5233 (let ((e (car tags)))
5234 (setq tags (cdr tags))
5235 (cond
5236 ((equal e "{")
5237 (push '(:startgroup) org-tag-alist)
5238 (when (equal (nth 1 tags) ":") (setq group-flag t)))
5239 ((equal e "}")
5240 (push '(:endgroup) org-tag-alist)
5241 (setq group-flag nil))
5242 ((equal e ":")
5243 (push '(:grouptags) org-tag-alist)
5244 (setq group-flag 'append))
5245 ((equal e "\\n") (push '(:newline) org-tag-alist))
5246 ((string-match
5247 (org-re "\\`\\([[:alnum:]_@#%]+\\)\\(?:(\\(.\\))\\)?\\'") e)
5248 (let ((tag (match-string 1 e))
5249 (key (and (match-beginning 2)
5250 (string-to-char (match-string 2 e)))))
5251 (cond ((eq group-flag 'append)
5252 (setcar org-tag-groups-alist
5253 (append (car org-tag-groups-alist) (list tag))))
5254 (group-flag (push (list tag) org-tag-groups-alist)))
5255 (unless (assoc tag org-tag-alist)
5256 (push (cons tag key) org-tag-alist))))))))
5257 (setq org-tag-alist (nreverse org-tag-alist)))
5259 (defun org-file-contents (file &optional noerror)
5260 "Return the contents of FILE, as a string."
5261 (if (and file (file-readable-p file))
5262 (with-temp-buffer
5263 (insert-file-contents file)
5264 (buffer-string))
5265 (funcall (if noerror 'message 'error)
5266 "Cannot read file \"%s\"%s"
5267 file
5268 (let ((from (buffer-file-name (buffer-base-buffer))))
5269 (if from (concat " (referenced in file \"" from "\")") "")))))
5271 (defun org-extract-log-state-settings (x)
5272 "Extract the log state setting from a TODO keyword string.
5273 This will extract info from a string like \"WAIT(w@/!)\"."
5274 (let (kw key log1 log2)
5275 (when (string-match "^\\(.*?\\)\\(?:(\\([^!@/]\\)?\\([!@]\\)?\\(?:/\\([!@]\\)\\)?)\\)?$" x)
5276 (setq kw (match-string 1 x)
5277 key (and (match-end 2) (match-string 2 x))
5278 log1 (and (match-end 3) (match-string 3 x))
5279 log2 (and (match-end 4) (match-string 4 x)))
5280 (and (or log1 log2)
5281 (list kw
5282 (and log1 (if (equal log1 "!") 'time 'note))
5283 (and log2 (if (equal log2 "!") 'time 'note)))))))
5285 (defun org-remove-keyword-keys (list)
5286 "Remove a pair of parenthesis at the end of each string in LIST."
5287 (mapcar (lambda (x)
5288 (if (string-match "(.*)$" x)
5289 (substring x 0 (match-beginning 0))
5291 list))
5293 (defun org-assign-fast-keys (alist)
5294 "Assign fast keys to a keyword-key alist.
5295 Respect keys that are already there."
5296 (let (new e (alt ?0))
5297 (while (setq e (pop alist))
5298 (if (or (memq (car e) '(:newline :grouptags :endgroup :startgroup))
5299 (cdr e)) ;; Key already assigned.
5300 (push e new)
5301 (let ((clist (string-to-list (downcase (car e))))
5302 (used (append new alist)))
5303 (when (= (car clist) ?@)
5304 (pop clist))
5305 (while (and clist (rassoc (car clist) used))
5306 (pop clist))
5307 (unless clist
5308 (while (rassoc alt used)
5309 (incf alt)))
5310 (push (cons (car e) (or (car clist) alt)) new))))
5311 (nreverse new)))
5313 ;;; Some variables used in various places
5315 (defvar org-window-configuration nil
5316 "Used in various places to store a window configuration.")
5317 (defvar org-selected-window nil
5318 "Used in various places to store a window configuration.")
5319 (defvar org-finish-function nil
5320 "Function to be called when `C-c C-c' is used.
5321 This is for getting out of special buffers like capture.")
5324 ;; FIXME: Occasionally check by commenting these, to make sure
5325 ;; no other functions uses these, forgetting to let-bind them.
5326 (org-no-warnings (defvar entry)) ;; unprefixed, from calendar.el
5327 (defvar org-last-state)
5328 (org-no-warnings (defvar date)) ;; unprefixed, from calendar.el
5330 ;; Defined somewhere in this file, but used before definition.
5331 (defvar org-entities) ;; defined in org-entities.el
5332 (defvar org-struct-menu)
5333 (defvar org-org-menu)
5334 (defvar org-tbl-menu)
5336 ;;;; Define the Org-mode
5338 ;; We use a before-change function to check if a table might need
5339 ;; an update.
5340 (defvar org-table-may-need-update t
5341 "Indicates that a table might need an update.
5342 This variable is set by `org-before-change-function'.
5343 `org-table-align' sets it back to nil.")
5344 (defun org-before-change-function (beg end)
5345 "Every change indicates that a table might need an update."
5346 (setq org-table-may-need-update t))
5347 (defvar org-mode-map)
5348 (defvar org-inhibit-startup-visibility-stuff nil) ; Dynamically-scoped param.
5349 (defvar org-agenda-keep-modes nil) ; Dynamically-scoped param.
5350 (defvar org-inhibit-logging nil) ; Dynamically-scoped param.
5351 (defvar org-inhibit-blocking nil) ; Dynamically-scoped param.
5352 (defvar org-table-buffer-is-an nil)
5354 (defvar bidi-paragraph-direction)
5355 (defvar buffer-face-mode-face)
5357 (require 'outline)
5358 (if (and (not (keymapp outline-mode-map)) (featurep 'allout))
5359 (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"))
5360 (require 'noutline "noutline" 'noerror) ;; stock XEmacs does not have it
5362 ;; Other stuff we need.
5363 (require 'time-date)
5364 (unless (fboundp 'time-subtract) (defalias 'time-subtract 'subtract-time))
5365 (require 'easymenu)
5366 (require 'overlay)
5368 ;; (require 'org-macs) moved higher up in the file before it is first used
5369 (require 'org-entities)
5370 ;; (require 'org-compat) moved higher up in the file before it is first used
5371 (require 'org-faces)
5372 (require 'org-list)
5373 (require 'org-pcomplete)
5374 (require 'org-src)
5375 (require 'org-footnote)
5376 (require 'org-macro)
5378 ;; babel
5379 (require 'ob)
5381 ;;;###autoload
5382 (define-derived-mode org-mode outline-mode "Org"
5383 "Outline-based notes management and organizer, alias
5384 \"Carsten's outline-mode for keeping track of everything.\"
5386 Org-mode develops organizational tasks around a NOTES file which
5387 contains information about projects as plain text. Org-mode is
5388 implemented on top of outline-mode, which is ideal to keep the content
5389 of large files well structured. It supports ToDo items, deadlines and
5390 time stamps, which magically appear in the diary listing of the Emacs
5391 calendar. Tables are easily created with a built-in table editor.
5392 Plain text URL-like links connect to websites, emails (VM), Usenet
5393 messages (Gnus), BBDB entries, and any files related to the project.
5394 For printing and sharing of notes, an Org-mode file (or a part of it)
5395 can be exported as a structured ASCII or HTML file.
5397 The following commands are available:
5399 \\{org-mode-map}"
5401 ;; Get rid of Outline menus, they are not needed
5402 ;; Need to do this here because define-derived-mode sets up
5403 ;; the keymap so late. Still, it is a waste to call this each time
5404 ;; we switch another buffer into org-mode.
5405 (if (featurep 'xemacs)
5406 (when (boundp 'outline-mode-menu-heading)
5407 ;; Assume this is Greg's port, it uses easymenu
5408 (easy-menu-remove outline-mode-menu-heading)
5409 (easy-menu-remove outline-mode-menu-show)
5410 (easy-menu-remove outline-mode-menu-hide))
5411 (define-key org-mode-map [menu-bar headings] 'undefined)
5412 (define-key org-mode-map [menu-bar hide] 'undefined)
5413 (define-key org-mode-map [menu-bar show] 'undefined))
5415 (org-load-modules-maybe)
5416 (easy-menu-add org-org-menu)
5417 (easy-menu-add org-tbl-menu)
5418 (org-install-agenda-files-menu)
5419 (if org-descriptive-links (add-to-invisibility-spec '(org-link)))
5420 (add-to-invisibility-spec '(org-cwidth))
5421 (add-to-invisibility-spec '(org-hide-block . t))
5422 (when (featurep 'xemacs)
5423 (org-set-local 'line-move-ignore-invisible t))
5424 (org-set-local 'outline-regexp org-outline-regexp)
5425 (org-set-local 'outline-level 'org-outline-level)
5426 (setq bidi-paragraph-direction 'left-to-right)
5427 (when (and org-ellipsis
5428 (fboundp 'set-display-table-slot) (boundp 'buffer-display-table)
5429 (fboundp 'make-glyph-code))
5430 (unless org-display-table
5431 (setq org-display-table (make-display-table)))
5432 (set-display-table-slot
5433 org-display-table 4
5434 (vconcat (mapcar
5435 (lambda (c) (make-glyph-code c (and (not (stringp org-ellipsis))
5436 org-ellipsis)))
5437 (if (stringp org-ellipsis) org-ellipsis "..."))))
5438 (setq buffer-display-table org-display-table))
5439 (org-set-regexps-and-options)
5440 (org-set-font-lock-defaults)
5441 (when (and org-tag-faces (not org-tags-special-faces-re))
5442 ;; tag faces set outside customize.... force initialization.
5443 (org-set-tag-faces 'org-tag-faces org-tag-faces))
5444 ;; Calc embedded
5445 (org-set-local 'calc-embedded-open-mode "# ")
5446 ;; Modify a few syntax entries
5447 (modify-syntax-entry ?@ "w")
5448 (modify-syntax-entry ?\" "\"")
5449 (modify-syntax-entry ?\\ "_")
5450 (modify-syntax-entry ?~ "_")
5451 (if org-startup-truncated (setq truncate-lines t))
5452 (when org-startup-indented (require 'org-indent) (org-indent-mode 1))
5453 (org-set-local 'font-lock-unfontify-region-function
5454 'org-unfontify-region)
5455 ;; Activate before-change-function
5456 (org-set-local 'org-table-may-need-update t)
5457 (org-add-hook 'before-change-functions 'org-before-change-function nil
5458 'local)
5459 ;; Check for running clock before killing a buffer
5460 (org-add-hook 'kill-buffer-hook 'org-check-running-clock nil 'local)
5461 ;; Initialize macros templates.
5462 (org-macro-initialize-templates)
5463 ;; Initialize radio targets.
5464 (org-update-radio-target-regexp)
5465 ;; Indentation.
5466 (org-set-local 'indent-line-function 'org-indent-line)
5467 (org-set-local 'indent-region-function 'org-indent-region)
5468 ;; Filling and auto-filling.
5469 (org-setup-filling)
5470 ;; Comments.
5471 (org-setup-comments-handling)
5472 ;; Initialize cache.
5473 (org-element-cache-reset)
5474 ;; Beginning/end of defun
5475 (org-set-local 'beginning-of-defun-function 'org-backward-element)
5476 (org-set-local 'end-of-defun-function
5477 (lambda ()
5478 (if (not (org-at-heading-p))
5479 (org-forward-element)
5480 (org-forward-element)
5481 (forward-char -1))))
5482 ;; Next error for sparse trees
5483 (org-set-local 'next-error-function 'org-occur-next-match)
5484 ;; Make sure dependence stuff works reliably, even for users who set it
5485 ;; too late :-(
5486 (if org-enforce-todo-dependencies
5487 (add-hook 'org-blocker-hook
5488 'org-block-todo-from-children-or-siblings-or-parent)
5489 (remove-hook 'org-blocker-hook
5490 'org-block-todo-from-children-or-siblings-or-parent))
5491 (if org-enforce-todo-checkbox-dependencies
5492 (add-hook 'org-blocker-hook
5493 'org-block-todo-from-checkboxes)
5494 (remove-hook 'org-blocker-hook
5495 'org-block-todo-from-checkboxes))
5497 ;; Align options lines
5498 (org-set-local
5499 'align-mode-rules-list
5500 '((org-in-buffer-settings
5501 (regexp . "^[ \t]*#\\+[A-Z_]+:\\(\\s-*\\)\\S-+")
5502 (modes . '(org-mode)))))
5504 ;; Imenu
5505 (org-set-local 'imenu-create-index-function
5506 'org-imenu-get-tree)
5508 ;; Make isearch reveal context
5509 (if (or (featurep 'xemacs)
5510 (not (boundp 'outline-isearch-open-invisible-function)))
5511 ;; Emacs 21 and XEmacs make use of the hook
5512 (org-add-hook 'isearch-mode-end-hook 'org-isearch-end 'append 'local)
5513 ;; Emacs 22 deals with this through a special variable
5514 (org-set-local 'outline-isearch-open-invisible-function
5515 (lambda (&rest ignore) (org-show-context 'isearch))))
5517 ;; Setup the pcomplete hooks
5518 (set (make-local-variable 'pcomplete-command-completion-function)
5519 'org-pcomplete-initial)
5520 (set (make-local-variable 'pcomplete-command-name-function)
5521 'org-command-at-point)
5522 (set (make-local-variable 'pcomplete-default-completion-function)
5523 'ignore)
5524 (set (make-local-variable 'pcomplete-parse-arguments-function)
5525 'org-parse-arguments)
5526 (set (make-local-variable 'pcomplete-termination-string) "")
5527 (when (>= emacs-major-version 23)
5528 (set (make-local-variable 'buffer-face-mode-face) 'org-default))
5530 ;; If empty file that did not turn on org-mode automatically, make it to.
5531 (if (and org-insert-mode-line-in-empty-file
5532 (org-called-interactively-p 'any)
5533 (= (point-min) (point-max)))
5534 (insert "# -*- mode: org -*-\n\n"))
5535 (unless org-inhibit-startup
5536 (org-unmodified
5537 (and org-startup-with-beamer-mode (org-beamer-mode))
5538 (when org-startup-align-all-tables
5539 (org-table-map-tables 'org-table-align 'quietly))
5540 (when org-startup-with-inline-images
5541 (org-display-inline-images))
5542 (when org-startup-with-latex-preview
5543 (org-toggle-latex-fragment))
5544 (unless org-inhibit-startup-visibility-stuff
5545 (org-set-startup-visibility))
5546 (org-refresh-effort-properties)))
5547 ;; Try to set org-hide correctly
5548 (let ((foreground (org-find-invisible-foreground)))
5549 (if foreground
5550 (set-face-foreground 'org-hide foreground))))
5552 ;; Update `customize-package-emacs-version-alist'
5553 (add-to-list 'customize-package-emacs-version-alist
5554 '(Org ("6.21b" . "23.1") ("6.33x" . "23.2")
5555 ("7.8.11" . "24.1") ("7.9.4" . "24.3")
5556 ("8.2.6" . "24.4") ("8.3" . "25.1")))
5558 (defvar org-mode-transpose-word-syntax-table
5559 (let ((st (make-syntax-table text-mode-syntax-table)))
5560 (mapc (lambda(c) (modify-syntax-entry
5561 (string-to-char (car c)) "w p" st))
5562 org-emphasis-alist)
5563 st))
5565 (when (fboundp 'abbrev-table-put)
5566 (abbrev-table-put org-mode-abbrev-table
5567 :parents (list text-mode-abbrev-table)))
5569 (defun org-find-invisible-foreground ()
5570 (let ((candidates (remove
5571 "unspecified-bg"
5572 (nconc
5573 (list (face-background 'default)
5574 (face-background 'org-default))
5575 (mapcar
5576 (lambda (alist)
5577 (when (boundp alist)
5578 (cdr (assoc 'background-color (symbol-value alist)))))
5579 '(default-frame-alist initial-frame-alist window-system-default-frame-alist))
5580 (list (face-foreground 'org-hide))))))
5581 (car (remove nil candidates))))
5583 (defun org-current-time (&optional rounding-minutes past)
5584 "Current time, possibly rounded to ROUNDING-MINUTES.
5585 When ROUNDING-MINUTES is not an integer, fall back on the car of
5586 `org-time-stamp-rounding-minutes'. When PAST is non-nil, ensure
5587 the rounding returns a past time."
5588 (let ((r (or (and (integerp rounding-minutes) rounding-minutes)
5589 (car org-time-stamp-rounding-minutes)))
5590 (time (decode-time)) res)
5591 (if (< r 1)
5592 (current-time)
5593 (setq res
5594 (apply 'encode-time
5595 (append (list 0 (* r (floor (+ .5 (/ (float (nth 1 time)) r)))))
5596 (nthcdr 2 time))))
5597 (if (and past (< (org-float-time (time-subtract (current-time) res)) 0))
5598 (seconds-to-time (- (org-float-time res) (* r 60)))
5599 res))))
5601 (defun org-today ()
5602 "Return today date, considering `org-extend-today-until'."
5603 (time-to-days
5604 (time-subtract (current-time)
5605 (list 0 (* 3600 org-extend-today-until) 0))))
5607 ;;;; Font-Lock stuff, including the activators
5609 (defvar org-mouse-map (make-sparse-keymap))
5610 (org-defkey org-mouse-map [mouse-2] 'org-open-at-mouse)
5611 (org-defkey org-mouse-map [mouse-3] 'org-find-file-at-mouse)
5612 (when org-mouse-1-follows-link
5613 (org-defkey org-mouse-map [follow-link] 'mouse-face))
5614 (when org-tab-follows-link
5615 (org-defkey org-mouse-map [(tab)] 'org-open-at-point)
5616 (org-defkey org-mouse-map "\C-i" 'org-open-at-point))
5618 (require 'font-lock)
5620 (defconst org-non-link-chars "]\t\n\r<>")
5621 (defvar org-link-types '("http" "https" "ftp" "mailto" "file" "file+emacs"
5622 "file+sys" "news" "shell" "elisp" "doi" "message"
5623 "help"))
5624 (defvar org-link-types-re nil
5625 "Matches a link that has a url-like prefix like \"http:\"")
5626 (defvar org-link-re-with-space nil
5627 "Matches a link with spaces, optional angular brackets around it.")
5628 (defvar org-link-re-with-space2 nil
5629 "Matches a link with spaces, optional angular brackets around it.")
5630 (defvar org-link-re-with-space3 nil
5631 "Matches a link with spaces, only for internal part in bracket links.")
5632 (defvar org-angle-link-re nil
5633 "Matches link with angular brackets, spaces are allowed.")
5634 (defvar org-plain-link-re nil
5635 "Matches plain link, without spaces.")
5636 (defvar org-bracket-link-regexp nil
5637 "Matches a link in double brackets.")
5638 (defvar org-bracket-link-analytic-regexp nil
5639 "Regular expression used to analyze links.
5640 Here is what the match groups contain after a match:
5641 1: http:
5642 2: http
5643 3: path
5644 4: [desc]
5645 5: desc")
5646 (defvar org-bracket-link-analytic-regexp++ nil
5647 "Like `org-bracket-link-analytic-regexp', but include coderef internal type.")
5648 (defvar org-any-link-re nil
5649 "Regular expression matching any link.")
5651 (defconst org-match-sexp-depth 3
5652 "Number of stacked braces for sub/superscript matching.")
5654 (defun org-create-multibrace-regexp (left right n)
5655 "Create a regular expression which will match a balanced sexp.
5656 Opening delimiter is LEFT, and closing delimiter is RIGHT, both given
5657 as single character strings.
5658 The regexp returned will match the entire expression including the
5659 delimiters. It will also define a single group which contains the
5660 match except for the outermost delimiters. The maximum depth of
5661 stacked delimiters is N. Escaping delimiters is not possible."
5662 (let* ((nothing (concat "[^" left right "]*?"))
5663 (or "\\|")
5664 (re nothing)
5665 (next (concat "\\(?:" nothing left nothing right "\\)+" nothing)))
5666 (while (> n 1)
5667 (setq n (1- n)
5668 re (concat re or next)
5669 next (concat "\\(?:" nothing left next right "\\)+" nothing)))
5670 (concat left "\\(" re "\\)" right)))
5672 (defconst org-match-substring-regexp
5673 (concat
5674 "\\(\\S-\\)\\([_^]\\)\\("
5675 "\\(?:" (org-create-multibrace-regexp "{" "}" org-match-sexp-depth) "\\)"
5676 "\\|"
5677 "\\(?:" (org-create-multibrace-regexp "(" ")" org-match-sexp-depth) "\\)"
5678 "\\|"
5679 "\\(?:\\*\\|[+-]?[[:alnum:].,\\]*[[:alnum:]]\\)\\)")
5680 "The regular expression matching a sub- or superscript.")
5682 (defconst org-match-substring-with-braces-regexp
5683 (concat
5684 "\\(\\S-\\)\\([_^]\\)"
5685 "\\(" (org-create-multibrace-regexp "{" "}" org-match-sexp-depth) "\\)")
5686 "The regular expression matching a sub- or superscript, forcing braces.")
5688 (defun org-make-link-regexps ()
5689 "Update the link regular expressions.
5690 This should be called after the variable `org-link-types' has changed."
5691 (let ((types-re (regexp-opt org-link-types t)))
5692 (setq org-link-types-re
5693 (concat "\\`" types-re ":")
5694 org-link-re-with-space
5695 (concat "<?" types-re ":"
5696 "\\([^" org-non-link-chars " ]"
5697 "[^" org-non-link-chars "]*"
5698 "[^" org-non-link-chars " ]\\)>?")
5699 org-link-re-with-space2
5700 (concat "<?" types-re ":"
5701 "\\([^" org-non-link-chars " ]"
5702 "[^\t\n\r]*"
5703 "[^" org-non-link-chars " ]\\)>?")
5704 org-link-re-with-space3
5705 (concat "<?" types-re ":"
5706 "\\([^" org-non-link-chars " ]"
5707 "[^\t\n\r]*\\)")
5708 org-angle-link-re
5709 (concat "<" types-re ":"
5710 "\\([^" org-non-link-chars " ]"
5711 "[^" org-non-link-chars "]*"
5712 "\\)>")
5713 org-plain-link-re
5714 (concat
5715 "\\<" types-re ":"
5716 (org-re "\\([^ \t\n()<>]+\\(?:([[:word:]0-9_]+)\\|\\([^[:punct:] \t\n]\\|/\\)\\)\\)"))
5717 ;; "\\([^]\t\n\r<>() ]+[^]\t\n\r<>,.;() ]\\)")
5718 org-bracket-link-regexp
5719 "\\[\\[\\([^][]+\\)\\]\\(\\[\\([^][]+\\)\\]\\)?\\]"
5720 org-bracket-link-analytic-regexp
5721 (concat
5722 "\\[\\["
5723 "\\(" types-re ":\\)?"
5724 "\\([^]]+\\)"
5725 "\\]"
5726 "\\(\\[" "\\([^]]+\\)" "\\]\\)?"
5727 "\\]")
5728 org-bracket-link-analytic-regexp++
5729 (concat
5730 "\\[\\["
5731 "\\(" (regexp-opt (cons "coderef" org-link-types) t) ":\\)?"
5732 "\\([^]]+\\)"
5733 "\\]"
5734 "\\(\\[" "\\([^]]+\\)" "\\]\\)?"
5735 "\\]")
5736 org-any-link-re
5737 (concat "\\(" org-bracket-link-regexp "\\)\\|\\("
5738 org-angle-link-re "\\)\\|\\("
5739 org-plain-link-re "\\)"))))
5741 (org-make-link-regexps)
5743 (defvar org-emph-face nil)
5745 (defun org-do-emphasis-faces (limit)
5746 "Run through the buffer and emphasize strings."
5747 (let (rtn a)
5748 (while (and (not rtn) (re-search-forward org-emph-re limit t))
5749 (let* ((border (char-after (match-beginning 3)))
5750 (bre (regexp-quote (char-to-string border))))
5751 (if (and (not (= border (char-after (match-beginning 4))))
5752 (not (save-match-data
5753 (string-match (concat bre ".*" bre)
5754 (replace-regexp-in-string
5755 "\n" " "
5756 (substring (match-string 2) 1 -1))))))
5757 (progn
5758 (setq rtn t)
5759 (setq a (assoc (match-string 3) org-emphasis-alist))
5760 (font-lock-prepend-text-property (match-beginning 2) (match-end 2)
5761 'face
5762 (nth 1 a))
5763 (and (nth 2 a)
5764 (org-remove-flyspell-overlays-in
5765 (match-beginning 0) (match-end 0)))
5766 (add-text-properties (match-beginning 2) (match-end 2)
5767 '(font-lock-multiline t org-emphasis t))
5768 (when org-hide-emphasis-markers
5769 (add-text-properties (match-end 4) (match-beginning 5)
5770 '(invisible org-link))
5771 (add-text-properties (match-beginning 3) (match-end 3)
5772 '(invisible org-link))))))
5773 (goto-char (1+ (match-beginning 0))))
5774 rtn))
5776 (defun org-emphasize (&optional char)
5777 "Insert or change an emphasis, i.e. a font like bold or italic.
5778 If there is an active region, change that region to a new emphasis.
5779 If there is no region, just insert the marker characters and position
5780 the cursor between them.
5781 CHAR should be the marker character. If it is a space, it means to
5782 remove the emphasis of the selected region.
5783 If CHAR is not given (for example in an interactive call) it will be
5784 prompted for."
5785 (interactive)
5786 (let ((erc org-emphasis-regexp-components)
5787 (prompt "")
5788 (string "") beg end move c s)
5789 (if (org-region-active-p)
5790 (setq beg (region-beginning) end (region-end)
5791 string (buffer-substring beg end))
5792 (setq move t))
5794 (unless char
5795 (message "Emphasis marker or tag: [%s]"
5796 (mapconcat (lambda(e) (car e)) org-emphasis-alist ""))
5797 (setq char (read-char-exclusive)))
5798 (if (equal char ?\ )
5799 (setq s "" move nil)
5800 (unless (assoc (char-to-string char) org-emphasis-alist)
5801 (user-error "No such emphasis marker: \"%c\"" char))
5802 (setq s (char-to-string char)))
5803 (while (and (> (length string) 1)
5804 (equal (substring string 0 1) (substring string -1))
5805 (assoc (substring string 0 1) org-emphasis-alist))
5806 (setq string (substring string 1 -1)))
5807 (setq string (concat s string s))
5808 (if beg (delete-region beg end))
5809 (unless (or (bolp)
5810 (string-match (concat "[" (nth 0 erc) "\n]")
5811 (char-to-string (char-before (point)))))
5812 (insert " "))
5813 (unless (or (eobp)
5814 (string-match (concat "[" (nth 1 erc) "\n]")
5815 (char-to-string (char-after (point)))))
5816 (insert " ") (backward-char 1))
5817 (insert string)
5818 (and move (backward-char 1))))
5820 (defconst org-nonsticky-props
5821 '(mouse-face highlight keymap invisible intangible help-echo org-linked-text htmlize-link))
5823 (defsubst org-rear-nonsticky-at (pos)
5824 (add-text-properties (1- pos) pos (list 'rear-nonsticky org-nonsticky-props)))
5826 (defun org-activate-plain-links (limit)
5827 "Add link properties for plain links."
5828 (let (f hl)
5829 (when (and (re-search-forward (concat org-plain-link-re) limit t)
5830 (not (member 'org-tag
5831 (get-text-property (1- (match-beginning 0)) 'face)))
5832 (not (org-in-src-block-p)))
5833 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5834 (setq f (get-text-property (match-beginning 0) 'face))
5835 (setq hl (org-match-string-no-properties 0))
5836 (if (or (eq f 'org-tag)
5837 (and (listp f) (memq 'org-tag f)))
5839 (add-text-properties (match-beginning 0) (match-end 0)
5840 (list 'mouse-face 'highlight
5841 'face 'org-link
5842 'htmlize-link `(:uri ,hl)
5843 'keymap org-mouse-map))
5844 (org-rear-nonsticky-at (match-end 0)))
5845 t)))
5847 (defun org-activate-code (limit)
5848 (if (re-search-forward "^[ \t]*\\(:\\(?: .*\\|$\\)\n?\\)" limit t)
5849 (progn
5850 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5851 (remove-text-properties (match-beginning 0) (match-end 0)
5852 '(display t invisible t intangible t))
5853 t)))
5855 (defcustom org-src-fontify-natively t
5856 "When non-nil, fontify code in code blocks."
5857 :type 'boolean
5858 :version "24.4"
5859 :package-version '(Org . "8.3")
5860 :group 'org-appearance
5861 :group 'org-babel)
5863 (defcustom org-allow-promoting-top-level-subtree nil
5864 "When non-nil, allow promoting a top level subtree.
5865 The leading star of the top level headline will be replaced
5866 by a #."
5867 :type 'boolean
5868 :version "24.1"
5869 :group 'org-appearance)
5871 (defun org-fontify-meta-lines-and-blocks (limit)
5872 (condition-case nil
5873 (org-fontify-meta-lines-and-blocks-1 limit)
5874 (error (message "org-mode fontification error"))))
5876 (defun org-fontify-meta-lines-and-blocks-1 (limit)
5877 "Fontify #+ lines and blocks."
5878 (let ((case-fold-search t))
5879 (if (re-search-forward
5880 "^\\([ \t]*#\\(\\(\\+[a-zA-Z]+:?\\| \\|$\\)\\(_\\([a-zA-Z]+\\)\\)?\\)[ \t]*\\(\\([^ \t\n]*\\)[ \t]*\\(.*\\)\\)\\)"
5881 limit t)
5882 (let ((beg (match-beginning 0))
5883 (block-start (match-end 0))
5884 (block-end nil)
5885 (lang (match-string 7))
5886 (beg1 (line-beginning-position 2))
5887 (dc1 (downcase (match-string 2)))
5888 (dc3 (downcase (match-string 3)))
5889 end end1 quoting block-type ovl)
5890 (cond
5891 ((member dc1 '("+html:" "+ascii:" "+latex:"))
5892 ;; a single line of backend-specific content
5893 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5894 (remove-text-properties (match-beginning 0) (match-end 0)
5895 '(display t invisible t intangible t))
5896 (add-text-properties (match-beginning 1) (match-end 3)
5897 '(font-lock-fontified t face org-meta-line))
5898 (add-text-properties (match-beginning 6) (+ (match-end 6) 1)
5899 '(font-lock-fontified t face org-block))
5900 ; for backend-specific code
5902 ((and (match-end 4) (equal dc3 "+begin"))
5903 ;; Truly a block
5904 (setq block-type (downcase (match-string 5))
5905 quoting (member block-type org-protecting-blocks))
5906 (when (re-search-forward
5907 (concat "^[ \t]*#\\+end" (match-string 4) "\\>.*")
5908 nil t) ;; on purpose, we look further than LIMIT
5909 (setq end (min (point-max) (match-end 0))
5910 end1 (min (point-max) (1- (match-beginning 0))))
5911 (setq block-end (match-beginning 0))
5912 (when quoting
5913 (org-remove-flyspell-overlays-in beg1 end1)
5914 (remove-text-properties beg end
5915 '(display t invisible t intangible t)))
5916 (add-text-properties
5917 beg end '(font-lock-fontified t font-lock-multiline t))
5918 (add-text-properties beg beg1 '(face org-meta-line))
5919 (org-remove-flyspell-overlays-in beg beg1)
5920 (add-text-properties ; For end_src
5921 end1 (min (point-max) (1+ end)) '(face org-meta-line))
5922 (org-remove-flyspell-overlays-in end1 end)
5923 (cond
5924 ((and lang (not (string= lang "")) org-src-fontify-natively)
5925 (org-src-font-lock-fontify-block lang block-start block-end)
5926 (add-text-properties beg1 block-end '(src-block t)))
5927 (quoting
5928 (add-text-properties beg1 (min (point-max) (1+ end1))
5929 '(face org-block))) ; end of source block
5930 ((not org-fontify-quote-and-verse-blocks))
5931 ((string= block-type "quote")
5932 (add-text-properties beg1 (min (point-max) (1+ end1)) '(face org-quote)))
5933 ((string= block-type "verse")
5934 (add-text-properties beg1 (min (point-max) (1+ end1)) '(face org-verse))))
5935 (add-text-properties beg beg1 '(face org-block-begin-line))
5936 (add-text-properties (min (point-max) (1+ end)) (min (point-max) (1+ end1))
5937 '(face org-block-end-line))
5939 ((member dc1 '("+title:" "+author:" "+email:" "+date:"))
5940 (org-remove-flyspell-overlays-in
5941 (match-beginning 0)
5942 (if (equal "+title:" dc1) (match-end 2) (match-end 0)))
5943 (add-text-properties
5944 beg (match-end 3)
5945 (if (member (intern (substring dc1 1 -1)) org-hidden-keywords)
5946 '(font-lock-fontified t invisible t)
5947 '(font-lock-fontified t face org-document-info-keyword)))
5948 (add-text-properties
5949 (match-beginning 6) (min (point-max) (1+ (match-end 6)))
5950 (if (string-equal dc1 "+title:")
5951 '(font-lock-fontified t face org-document-title)
5952 '(font-lock-fontified t face org-document-info))))
5953 ((or (equal dc1 "+results")
5954 (member dc1 '("+begin:" "+end:" "+caption:" "+label:"
5955 "+orgtbl:" "+tblfm:" "+tblname:" "+results:"
5956 "+call:" "+header:" "+headers:" "+name:"))
5957 (and (match-end 4) (equal dc3 "+attr")))
5958 (org-remove-flyspell-overlays-in
5959 (match-beginning 0)
5960 (if (equal "+caption:" dc1) (match-end 2) (match-end 0)))
5961 (add-text-properties
5962 beg (match-end 0)
5963 '(font-lock-fontified t face org-meta-line))
5965 ((member dc3 '(" " ""))
5966 (org-remove-flyspell-overlays-in beg (match-end 0))
5967 (add-text-properties
5968 beg (match-end 0)
5969 '(font-lock-fontified t face font-lock-comment-face)))
5970 (t ;; just any other in-buffer setting, but not indented
5971 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5972 (add-text-properties
5973 beg (match-end 0)
5974 '(font-lock-fontified t face org-meta-line))
5975 t))))))
5977 (defun org-fontify-drawers (limit)
5978 "Fontify drawers."
5979 (when (re-search-forward org-drawer-regexp limit t)
5980 (add-text-properties
5981 (match-beginning 0) (match-end 0)
5982 '(font-lock-fontified t face org-special-keyword))
5983 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5986 (defun org-fontify-macros (limit)
5987 "Fontify macros."
5988 (when (re-search-forward "\\({{{\\).+?\\(}}}\\)" limit t)
5989 (add-text-properties
5990 (match-beginning 0) (match-end 0)
5991 '(font-lock-fontified t face org-macro))
5992 (when org-hide-macro-markers
5993 (add-text-properties (match-end 2) (match-beginning 2)
5994 '(invisible t))
5995 (add-text-properties (match-beginning 1) (match-end 1)
5996 '(invisible t)))
5997 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6000 (defun org-activate-angle-links (limit)
6001 "Add text properties for angle links."
6002 (if (and (re-search-forward org-angle-link-re limit t)
6003 (not (org-in-src-block-p)))
6004 (progn
6005 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6006 (add-text-properties (match-beginning 0) (match-end 0)
6007 (list 'mouse-face 'highlight
6008 'keymap org-mouse-map))
6009 (org-rear-nonsticky-at (match-end 0))
6010 t)))
6012 (defun org-activate-footnote-links (limit)
6013 "Add text properties for footnotes."
6014 (let ((fn (org-footnote-next-reference-or-definition limit)))
6015 (when fn
6016 (let* ((beg (nth 1 fn))
6017 (end (nth 2 fn))
6018 (label (car fn))
6019 (referencep (/= (line-beginning-position) beg)))
6020 (when (and referencep (nth 3 fn))
6021 (save-excursion
6022 (goto-char beg)
6023 (search-forward (or label "fn:"))
6024 (org-remove-flyspell-overlays-in beg (match-end 0))))
6025 (add-text-properties beg end
6026 (list 'mouse-face 'highlight
6027 'keymap org-mouse-map
6028 'help-echo
6029 (if referencep "Footnote reference"
6030 "Footnote definition")
6031 'font-lock-fontified t
6032 'font-lock-multiline t
6033 'face 'org-footnote))))))
6035 (defun org-activate-bracket-links (limit)
6036 "Add text properties for bracketed links."
6037 (if (and (re-search-forward org-bracket-link-regexp limit t)
6038 (not (org-in-src-block-p)))
6039 (let* ((hl (org-match-string-no-properties 1))
6040 (help (concat "LINK: " (save-match-data (org-link-unescape hl))))
6041 (ip (org-maybe-intangible
6042 (list 'invisible 'org-link
6043 'keymap org-mouse-map 'mouse-face 'highlight
6044 'font-lock-multiline t 'help-echo help
6045 'htmlize-link `(:uri ,hl))))
6046 (vp (list 'keymap org-mouse-map 'mouse-face 'highlight
6047 'font-lock-multiline t 'help-echo help
6048 'htmlize-link `(:uri ,hl))))
6049 ;; We need to remove the invisible property here. Table narrowing
6050 ;; may have made some of this invisible.
6051 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6052 (remove-text-properties (match-beginning 0) (match-end 0)
6053 '(invisible nil))
6054 (if (match-end 3)
6055 (progn
6056 (add-text-properties (match-beginning 0) (match-beginning 3) ip)
6057 (org-rear-nonsticky-at (match-beginning 3))
6058 (add-text-properties (match-beginning 3) (match-end 3) vp)
6059 (org-rear-nonsticky-at (match-end 3))
6060 (add-text-properties (match-end 3) (match-end 0) ip)
6061 (org-rear-nonsticky-at (match-end 0)))
6062 (add-text-properties (match-beginning 0) (match-beginning 1) ip)
6063 (org-rear-nonsticky-at (match-beginning 1))
6064 (add-text-properties (match-beginning 1) (match-end 1) vp)
6065 (org-rear-nonsticky-at (match-end 1))
6066 (add-text-properties (match-end 1) (match-end 0) ip)
6067 (org-rear-nonsticky-at (match-end 0)))
6068 t)))
6070 (defun org-activate-dates (limit)
6071 "Add text properties for dates."
6072 (if (and (re-search-forward org-tsr-regexp-both limit t)
6073 (not (equal (char-before (match-beginning 0)) 91)))
6074 (progn
6075 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6076 (add-text-properties (match-beginning 0) (match-end 0)
6077 (list 'mouse-face 'highlight
6078 'keymap org-mouse-map))
6079 (org-rear-nonsticky-at (match-end 0))
6080 (when org-display-custom-times
6081 (if (match-end 3)
6082 (org-display-custom-time (match-beginning 3) (match-end 3)))
6083 (org-display-custom-time (match-beginning 1) (match-end 1)))
6084 t)))
6086 (defvar org-target-link-regexp nil
6087 "Regular expression matching radio targets in plain text.")
6088 (make-variable-buffer-local 'org-target-link-regexp)
6090 (defconst org-target-regexp (let ((border "[^<>\n\r \t]"))
6091 (format "<<\\(%s\\|%s[^<>\n\r]*%s\\)>>"
6092 border border border))
6093 "Regular expression matching a link target.")
6095 (defconst org-radio-target-regexp (format "<%s>" org-target-regexp)
6096 "Regular expression matching a radio target.")
6098 (defconst org-any-target-regexp
6099 (format "%s\\|%s" org-radio-target-regexp org-target-regexp)
6100 "Regular expression matching any target.")
6102 (defun org-activate-target-links (limit)
6103 "Add text properties for target matches."
6104 (when org-target-link-regexp
6105 (let ((case-fold-search t))
6106 (if (re-search-forward org-target-link-regexp limit t)
6107 (progn
6108 (org-remove-flyspell-overlays-in (match-beginning 1) (match-end 1))
6109 (add-text-properties (match-beginning 1) (match-end 1)
6110 (list 'mouse-face 'highlight
6111 'keymap org-mouse-map
6112 'help-echo "Radio target link"
6113 'org-linked-text t))
6114 (org-rear-nonsticky-at (match-end 1))
6115 t)))))
6117 (defun org-update-radio-target-regexp ()
6118 "Find all radio targets in this file and update the regular expression.
6119 Also refresh fontification if needed."
6120 (interactive)
6121 (let ((old-regexp org-target-link-regexp)
6122 (before-re "\\(?:^\\|[^[:alnum:]]\\)\\(")
6123 (after-re "\\)\\(?:$\\|[^[:alnum:]]\\)")
6124 (targets
6125 (org-with-wide-buffer
6126 (goto-char (point-min))
6127 (let (rtn)
6128 (while (re-search-forward org-radio-target-regexp nil t)
6129 ;; Make sure point is really within the object.
6130 (backward-char)
6131 (let ((obj (org-element-context)))
6132 (when (eq (org-element-type obj) 'radio-target)
6133 (add-to-list 'rtn (org-element-property :value obj)))))
6134 rtn))))
6135 (setq org-target-link-regexp
6136 (and targets
6137 (concat before-re
6138 (mapconcat
6139 (lambda (x)
6140 (replace-regexp-in-string
6141 " +" "\\s-+" (regexp-quote x) t t))
6142 targets
6143 "\\|")
6144 after-re)))
6145 (unless (equal old-regexp org-target-link-regexp)
6146 ;; Clean-up cache.
6147 (let ((regexp (cond ((not old-regexp) org-target-link-regexp)
6148 ((not org-target-link-regexp) old-regexp)
6150 (concat before-re
6151 (mapconcat
6152 (lambda (re)
6153 (substring re (length before-re)
6154 (- (length after-re))))
6155 (list old-regexp org-target-link-regexp)
6156 "\\|")
6157 after-re)))))
6158 (org-with-wide-buffer
6159 (goto-char (point-min))
6160 (while (re-search-forward regexp nil t)
6161 (org-element-cache-refresh (match-beginning 1)))))
6162 ;; Re fontify buffer.
6163 (when (memq 'radio org-highlight-links)
6164 (org-restart-font-lock)))))
6166 (defun org-hide-wide-columns (limit)
6167 (let (s e)
6168 (setq s (text-property-any (point) (or limit (point-max))
6169 'org-cwidth t))
6170 (when s
6171 (setq e (next-single-property-change s 'org-cwidth))
6172 (add-text-properties s e (org-maybe-intangible '(invisible org-cwidth)))
6173 (goto-char e)
6174 t)))
6176 (defvar org-latex-and-related-regexp nil
6177 "Regular expression for highlighting LaTeX, entities and sub/superscript.")
6179 (defun org-compute-latex-and-related-regexp ()
6180 "Compute regular expression for LaTeX, entities and sub/superscript.
6181 Result depends on variable `org-highlight-latex-and-related'."
6182 (org-set-local
6183 'org-latex-and-related-regexp
6184 (let* ((re-sub
6185 (cond ((not (memq 'script org-highlight-latex-and-related)) nil)
6186 ((eq org-use-sub-superscripts '{})
6187 (list org-match-substring-with-braces-regexp))
6188 (org-use-sub-superscripts (list org-match-substring-regexp))))
6189 (re-latex
6190 (when (memq 'latex org-highlight-latex-and-related)
6191 (let ((matchers (plist-get org-format-latex-options :matchers)))
6192 (delq nil
6193 (mapcar (lambda (x)
6194 (and (member (car x) matchers) (nth 1 x)))
6195 org-latex-regexps)))))
6196 (re-entities
6197 (when (memq 'entities org-highlight-latex-and-related)
6198 (list "\\\\\\(there4\\|sup[123]\\|frac[13][24]\\|[a-zA-Z]+\\)\\($\\|{}\\|[^[:alpha:]]\\)"))))
6199 (mapconcat 'identity (append re-latex re-entities re-sub) "\\|"))))
6201 (defun org-do-latex-and-related (limit)
6202 "Highlight LaTeX snippets and environments, entities and sub/superscript.
6203 LIMIT bounds the search for syntax to highlight. Stop at first
6204 highlighted object, if any. Return t if some highlighting was
6205 done, nil otherwise."
6206 (when (org-string-nw-p org-latex-and-related-regexp)
6207 (catch 'found
6208 (while (re-search-forward org-latex-and-related-regexp limit t)
6209 (unless (memq (car-safe (get-text-property (1+ (match-beginning 0))
6210 'face))
6211 '(org-code org-verbatim underline))
6212 (let ((offset (if (memq (char-after (1+ (match-beginning 0)))
6213 '(?_ ?^))
6215 0)))
6216 (font-lock-prepend-text-property
6217 (+ offset (match-beginning 0)) (match-end 0)
6218 'face 'org-latex-and-related)
6219 (add-text-properties (+ offset (match-beginning 0)) (match-end 0)
6220 '(font-lock-multiline t)))
6221 (throw 'found t)))
6222 nil)))
6224 (defun org-restart-font-lock ()
6225 "Restart `font-lock-mode', to force refontification."
6226 (when (and (boundp 'font-lock-mode) font-lock-mode)
6227 (font-lock-mode -1)
6228 (font-lock-mode 1)))
6230 (defun org-activate-tags (limit)
6231 (if (re-search-forward (org-re "^\\*+.*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \r\n]") limit t)
6232 (progn
6233 (org-remove-flyspell-overlays-in (match-beginning 1) (match-end 1))
6234 (add-text-properties (match-beginning 1) (match-end 1)
6235 (list 'mouse-face 'highlight
6236 'keymap org-mouse-map))
6237 (org-rear-nonsticky-at (match-end 1))
6238 t)))
6240 (defun org-outline-level ()
6241 "Compute the outline level of the heading at point.
6243 If this is called at a normal headline, the level is the number
6244 of stars. Use `org-reduced-level' to remove the effect of
6245 `org-odd-levels'. Unlike to `org-current-level', this function
6246 takes into consideration inlinetasks."
6247 (org-with-wide-buffer
6248 (end-of-line)
6249 (if (re-search-backward org-outline-regexp-bol nil t)
6250 (1- (- (match-end 0) (match-beginning 0)))
6251 0)))
6253 (defvar org-font-lock-keywords nil)
6255 (defsubst org-re-property (property &optional literal allow-null)
6256 "Return a regexp matching a PROPERTY line.
6258 When optional argument LITERAL is non-nil, do not quote PROPERTY.
6259 This is useful when PROPERTY is a regexp. When ALLOW-NULL is
6260 non-nil, match properties even without a value.
6262 Match group 3 is set to the value when it exists. If there is no
6263 value and ALLOW-NULL is non-nil, it is set to the empty string."
6264 (concat
6265 "^\\(?4:[ \t]*\\)"
6266 (format "\\(?1::\\(?2:%s\\):\\)"
6267 (if literal property (regexp-quote property)))
6268 (if allow-null
6269 "\\(?:\\(?3:$\\)\\|[ \t]+\\(?3:.*?\\)\\)\\(?5:[ \t]*\\)$"
6270 "[ \t]+\\(?3:[^ \r\t\n]+.*?\\)\\(?5:[ \t]*\\)$")))
6272 (defconst org-property-re
6273 (org-re-property "\\S-+" 'literal t)
6274 "Regular expression matching a property line.
6275 There are four matching groups:
6276 1: :PROPKEY: including the leading and trailing colon,
6277 2: PROPKEY without the leading and trailing colon,
6278 3: PROPVAL without leading or trailing spaces,
6279 4: the indentation of the current line,
6280 5: trailing whitespace.")
6282 (defvar org-font-lock-hook nil
6283 "Functions to be called for special font lock stuff.")
6285 (defvar org-font-lock-set-keywords-hook nil
6286 "Functions that can manipulate `org-font-lock-extra-keywords'.
6287 This is called after `org-font-lock-extra-keywords' is defined, but before
6288 it is installed to be used by font lock. This can be useful if something
6289 needs to be inserted at a specific position in the font-lock sequence.")
6291 (defun org-font-lock-hook (limit)
6292 "Run `org-font-lock-hook' within LIMIT."
6293 (run-hook-with-args 'org-font-lock-hook limit))
6295 (defun org-set-font-lock-defaults ()
6296 "Set font lock defaults for the current buffer."
6297 (let* ((em org-fontify-emphasized-text)
6298 (lk org-highlight-links)
6299 (org-font-lock-extra-keywords
6300 (list
6301 ;; Call the hook
6302 '(org-font-lock-hook)
6303 ;; Headlines
6304 `(,(if org-fontify-whole-heading-line
6305 "^\\(\\**\\)\\(\\* \\)\\(.*\n?\\)"
6306 "^\\(\\**\\)\\(\\* \\)\\(.*\\)")
6307 (1 (org-get-level-face 1))
6308 (2 (org-get-level-face 2))
6309 (3 (org-get-level-face 3)))
6310 ;; Table lines
6311 '("^[ \t]*\\(\\(|\\|\\+-[-+]\\).*\\S-\\)"
6312 (1 'org-table t))
6313 ;; Table internals
6314 '("^[ \t]*|\\(?:.*?|\\)? *\\(:?=[^|\n]*\\)" (1 'org-formula t))
6315 '("^[ \t]*| *\\([#*]\\) *|" (1 'org-formula t))
6316 '("^[ \t]*|\\( *\\([$!_^/]\\) *|.*\\)|" (1 'org-formula t))
6317 '("| *\\(<[lrc]?[0-9]*>\\)" (1 'org-formula t))
6318 ;; Drawers
6319 '(org-fontify-drawers)
6320 ;; Properties
6321 (list org-property-re
6322 '(1 'org-special-keyword t)
6323 '(3 'org-property-value t))
6324 ;; Links
6325 (if (memq 'tag lk) '(org-activate-tags (1 'org-tag prepend)))
6326 (if (memq 'angle lk) '(org-activate-angle-links (0 'org-link t)))
6327 (if (memq 'plain lk) '(org-activate-plain-links (0 'org-link t)))
6328 (if (memq 'bracket lk) '(org-activate-bracket-links (0 'org-link t)))
6329 (if (memq 'radio lk) '(org-activate-target-links (1 'org-link t)))
6330 (if (memq 'date lk) '(org-activate-dates (0 'org-date t)))
6331 (if (memq 'footnote lk) '(org-activate-footnote-links))
6332 ;; Targets.
6333 (list org-any-target-regexp '(0 'org-target t))
6334 ;; Diary sexps.
6335 '("^&?%%(.*\\|<%%([^>\n]*?>" (0 'org-sexp-date t))
6336 ;; Macro
6337 '(org-fontify-macros)
6338 '(org-hide-wide-columns (0 nil append))
6339 ;; TODO keyword
6340 (list (format org-heading-keyword-regexp-format
6341 org-todo-regexp)
6342 '(2 (org-get-todo-face 2) t))
6343 ;; DONE
6344 (if org-fontify-done-headline
6345 (list (format org-heading-keyword-regexp-format
6346 (concat
6347 "\\(?:"
6348 (mapconcat 'regexp-quote org-done-keywords "\\|")
6349 "\\)"))
6350 '(2 'org-headline-done t))
6351 nil)
6352 ;; Priorities
6353 '(org-font-lock-add-priority-faces)
6354 ;; Tags
6355 '(org-font-lock-add-tag-faces)
6356 ;; Tags groups
6357 (if (and org-group-tags org-tag-groups-alist)
6358 (list (concat org-outline-regexp-bol ".+\\(:"
6359 (regexp-opt (mapcar 'car org-tag-groups-alist))
6360 ":\\).*$")
6361 '(1 'org-tag-group prepend)))
6362 ;; Special keywords
6363 (list (concat "\\<" org-comment-string) '(0 'org-special-keyword t))
6364 (list (concat "\\<" org-deadline-string) '(0 'org-special-keyword t))
6365 (list (concat "\\<" org-scheduled-string) '(0 'org-special-keyword t))
6366 (list (concat "\\<" org-closed-string) '(0 'org-special-keyword t))
6367 (list (concat "\\<" org-clock-string) '(0 'org-special-keyword t))
6368 ;; Emphasis
6369 (if em
6370 (if (featurep 'xemacs)
6371 '(org-do-emphasis-faces (0 nil append))
6372 '(org-do-emphasis-faces)))
6373 ;; Checkboxes
6374 '("^[ \t]*\\(?:[-+*]\\|[0-9]+[.)]\\)[ \t]+\\(?:\\[@\\(?:start:\\)?[0-9]+\\][ \t]*\\)?\\(\\[[- X]\\]\\)"
6375 1 'org-checkbox prepend)
6376 (if (cdr (assq 'checkbox org-list-automatic-rules))
6377 '("\\[\\([0-9]*%\\)\\]\\|\\[\\([0-9]*\\)/\\([0-9]*\\)\\]"
6378 (0 (org-get-checkbox-statistics-face) t)))
6379 ;; Description list items
6380 '("^[ \t]*[-+*][ \t]+\\(.*?[ \t]+::\\)\\([ \t]+\\|$\\)"
6381 1 'org-list-dt prepend)
6382 ;; ARCHIVEd headings
6383 (list (concat
6384 org-outline-regexp-bol
6385 "\\(.*:" org-archive-tag ":.*\\)")
6386 '(1 'org-archived prepend))
6387 ;; Specials
6388 '(org-do-latex-and-related)
6389 '(org-fontify-entities)
6390 '(org-raise-scripts)
6391 ;; Code
6392 '(org-activate-code (1 'org-code t))
6393 ;; COMMENT
6394 (list (format
6395 "^\\*\\(?: +%s\\)?\\(?: +\\[#[A-Z0-9]\\]\\)? +\\(?9:%s\\)\\(?: \\|$\\)"
6396 org-todo-regexp
6397 org-comment-string)
6398 '(9 'org-special-keyword t))
6399 ;; Blocks and meta lines
6400 '(org-fontify-meta-lines-and-blocks))))
6401 (setq org-font-lock-extra-keywords (delq nil org-font-lock-extra-keywords))
6402 (run-hooks 'org-font-lock-set-keywords-hook)
6403 ;; Now set the full font-lock-keywords
6404 (org-set-local 'org-font-lock-keywords org-font-lock-extra-keywords)
6405 (org-set-local 'font-lock-defaults
6406 '(org-font-lock-keywords t nil nil backward-paragraph))
6407 (kill-local-variable 'font-lock-keywords) nil))
6409 (defun org-toggle-pretty-entities ()
6410 "Toggle the composition display of entities as UTF8 characters."
6411 (interactive)
6412 (org-set-local 'org-pretty-entities (not org-pretty-entities))
6413 (org-restart-font-lock)
6414 (if org-pretty-entities
6415 (message "Entities are now displayed as UTF8 characters")
6416 (save-restriction
6417 (widen)
6418 (org-decompose-region (point-min) (point-max))
6419 (message "Entities are now displayed as plain text"))))
6421 (defvar org-custom-properties-overlays nil
6422 "List of overlays used for custom properties.")
6423 (make-variable-buffer-local 'org-custom-properties-overlays)
6425 (defun org-toggle-custom-properties-visibility ()
6426 "Display or hide properties in `org-custom-properties'."
6427 (interactive)
6428 (if org-custom-properties-overlays
6429 (progn (mapc #'delete-overlay org-custom-properties-overlays)
6430 (setq org-custom-properties-overlays nil))
6431 (when org-custom-properties
6432 (org-with-wide-buffer
6433 (goto-char (point-min))
6434 (let ((regexp (org-re-property (regexp-opt org-custom-properties) t t)))
6435 (while (re-search-forward regexp nil t)
6436 (let ((end (cdr (save-match-data (org-get-property-block)))))
6437 (when (and end (< (point) end))
6438 ;; Hide first custom property in current drawer.
6439 (let ((o (make-overlay (match-beginning 0) (1+ (match-end 0)))))
6440 (overlay-put o 'invisible t)
6441 (overlay-put o 'org-custom-property t)
6442 (push o org-custom-properties-overlays))
6443 ;; Hide additional custom properties in the same drawer.
6444 (while (re-search-forward regexp end t)
6445 (let ((o (make-overlay (match-beginning 0) (1+ (match-end 0)))))
6446 (overlay-put o 'invisible t)
6447 (overlay-put o 'org-custom-property t)
6448 (push o org-custom-properties-overlays)))))
6449 ;; Each entry is limited to a single property drawer.
6450 (outline-next-heading)))))))
6452 (defun org-fontify-entities (limit)
6453 "Find an entity to fontify."
6454 (let (ee)
6455 (when org-pretty-entities
6456 (catch 'match
6457 (while (re-search-forward
6458 "\\\\\\(there4\\|sup[123]\\|frac[13][24]\\|[a-zA-Z]+\\)\\($\\|{}\\|[^[:alpha:]\n]\\)"
6459 limit t)
6460 (if (and (not (org-at-comment-p))
6461 (setq ee (org-entity-get (match-string 1)))
6462 (= (length (nth 6 ee)) 1))
6463 (let*
6464 ((end (if (equal (match-string 2) "{}")
6465 (match-end 2)
6466 (match-end 1))))
6467 (add-text-properties
6468 (match-beginning 0) end
6469 (list 'font-lock-fontified t))
6470 (compose-region (match-beginning 0) end
6471 (nth 6 ee) nil)
6472 (backward-char 1)
6473 (throw 'match t))))
6474 nil))))
6476 (defun org-fontify-like-in-org-mode (s &optional odd-levels)
6477 "Fontify string S like in Org-mode."
6478 (with-temp-buffer
6479 (insert s)
6480 (let ((org-odd-levels-only odd-levels))
6481 (org-mode)
6482 (font-lock-ensure)
6483 (buffer-string))))
6485 (defvar org-m nil)
6486 (defvar org-l nil)
6487 (defvar org-f nil)
6488 (defun org-get-level-face (n)
6489 "Get the right face for match N in font-lock matching of headlines."
6490 (setq org-l (- (match-end 2) (match-beginning 1) 1))
6491 (if org-odd-levels-only (setq org-l (1+ (/ org-l 2))))
6492 (if org-cycle-level-faces
6493 (setq org-f (nth (% (1- org-l) org-n-level-faces) org-level-faces))
6494 (setq org-f (nth (1- (min org-l org-n-level-faces)) org-level-faces)))
6495 (cond
6496 ((eq n 1) (if org-hide-leading-stars 'org-hide org-f))
6497 ((eq n 2) org-f)
6498 (t (if org-level-color-stars-only nil org-f))))
6501 (defun org-get-todo-face (kwd)
6502 "Get the right face for a TODO keyword KWD.
6503 If KWD is a number, get the corresponding match group."
6504 (if (numberp kwd) (setq kwd (match-string kwd)))
6505 (or (org-face-from-face-or-color
6506 'todo 'org-todo (cdr (assoc kwd org-todo-keyword-faces)))
6507 (and (member kwd org-done-keywords) 'org-done)
6508 'org-todo))
6510 (defun org-face-from-face-or-color (context inherit face-or-color)
6511 "Create a face list that inherits INHERIT, but sets the foreground color.
6512 When FACE-OR-COLOR is not a string, just return it."
6513 (if (stringp face-or-color)
6514 (list :inherit inherit
6515 (cdr (assoc context org-faces-easy-properties))
6516 face-or-color)
6517 face-or-color))
6519 (defun org-font-lock-add-tag-faces (limit)
6520 "Add the special tag faces."
6521 (when (and org-tag-faces org-tags-special-faces-re)
6522 (while (re-search-forward org-tags-special-faces-re limit t)
6523 (add-text-properties (match-beginning 1) (match-end 1)
6524 (list 'face (org-get-tag-face 1)
6525 'font-lock-fontified t))
6526 (backward-char 1))))
6528 (defun org-font-lock-add-priority-faces (limit)
6529 "Add the special priority faces."
6530 (while (re-search-forward "\\[#\\([A-Z0-9]\\)\\]" limit t)
6531 (when (save-match-data (org-at-heading-p))
6532 (add-text-properties
6533 (match-beginning 0) (match-end 0)
6534 (list 'face (or (org-face-from-face-or-color
6535 'priority 'org-priority
6536 (cdr (assoc (char-after (match-beginning 1))
6537 org-priority-faces)))
6538 'org-priority)
6539 'font-lock-fontified t)))))
6541 (defun org-get-tag-face (kwd)
6542 "Get the right face for a TODO keyword KWD.
6543 If KWD is a number, get the corresponding match group."
6544 (if (numberp kwd) (setq kwd (match-string kwd)))
6545 (or (org-face-from-face-or-color
6546 'tag 'org-tag (cdr (assoc kwd org-tag-faces)))
6547 'org-tag))
6549 (defun org-unfontify-region (beg end &optional maybe_loudly)
6550 "Remove fontification and activation overlays from links."
6551 (font-lock-default-unfontify-region beg end)
6552 (let* ((buffer-undo-list t)
6553 (inhibit-read-only t) (inhibit-point-motion-hooks t)
6554 (inhibit-modification-hooks t)
6555 deactivate-mark buffer-file-name buffer-file-truename)
6556 (org-decompose-region beg end)
6557 (remove-text-properties beg end
6558 '(mouse-face t keymap t org-linked-text t
6559 invisible t intangible t
6560 org-emphasis t))
6561 (org-remove-font-lock-display-properties beg end)))
6563 (defconst org-script-display '(((raise -0.3) (height 0.7))
6564 ((raise 0.3) (height 0.7))
6565 ((raise -0.5))
6566 ((raise 0.5)))
6567 "Display properties for showing superscripts and subscripts.")
6569 (defun org-remove-font-lock-display-properties (beg end)
6570 "Remove specific display properties that have been added by font lock.
6571 The will remove the raise properties that are used to show superscripts
6572 and subscripts."
6573 (let (next prop)
6574 (while (< beg end)
6575 (setq next (next-single-property-change beg 'display nil end)
6576 prop (get-text-property beg 'display))
6577 (if (member prop org-script-display)
6578 (put-text-property beg next 'display nil))
6579 (setq beg next))))
6581 (defun org-raise-scripts (limit)
6582 "Add raise properties to sub/superscripts."
6583 (when (and org-pretty-entities org-pretty-entities-include-sub-superscripts)
6584 (if (re-search-forward
6585 (if (eq org-use-sub-superscripts t)
6586 org-match-substring-regexp
6587 org-match-substring-with-braces-regexp)
6588 limit t)
6589 (let* ((pos (point)) table-p comment-p
6590 (mpos (match-beginning 3))
6591 (emph-p (get-text-property mpos 'org-emphasis))
6592 (link-p (get-text-property mpos 'mouse-face))
6593 (keyw-p (eq 'org-special-keyword (get-text-property mpos 'face))))
6594 (goto-char (point-at-bol))
6595 (setq table-p (org-looking-at-p org-table-dataline-regexp)
6596 comment-p (org-looking-at-p "^[ \t]*#[ +]"))
6597 (goto-char pos)
6598 ;; Handle a_b^c
6599 (if (member (char-after) '(?_ ?^)) (goto-char (1- pos)))
6600 (if (or comment-p emph-p link-p keyw-p)
6602 (put-text-property (match-beginning 3) (match-end 0)
6603 'display
6604 (if (equal (char-after (match-beginning 2)) ?^)
6605 (nth (if table-p 3 1) org-script-display)
6606 (nth (if table-p 2 0) org-script-display)))
6607 (add-text-properties (match-beginning 2) (match-end 2)
6608 (list 'invisible t
6609 'org-dwidth t 'org-dwidth-n 1))
6610 (if (and (eq (char-after (match-beginning 3)) ?{)
6611 (eq (char-before (match-end 3)) ?}))
6612 (progn
6613 (add-text-properties
6614 (match-beginning 3) (1+ (match-beginning 3))
6615 (list 'invisible t 'org-dwidth t 'org-dwidth-n 1))
6616 (add-text-properties
6617 (1- (match-end 3)) (match-end 3)
6618 (list 'invisible t 'org-dwidth t 'org-dwidth-n 1))))
6619 t)))))
6621 ;;;; Visibility cycling, including org-goto and indirect buffer
6623 ;;; Cycling
6625 (defvar org-cycle-global-status nil)
6626 (make-variable-buffer-local 'org-cycle-global-status)
6627 (put 'org-cycle-global-status 'org-state t)
6628 (defvar org-cycle-subtree-status nil)
6629 (make-variable-buffer-local 'org-cycle-subtree-status)
6630 (put 'org-cycle-subtree-status 'org-state t)
6632 (defvar org-inlinetask-min-level)
6634 (defun org-unlogged-message (&rest args)
6635 "Display a message, but avoid logging it in the *Messages* buffer."
6636 (let ((message-log-max nil))
6637 (apply 'message args)))
6639 ;;;###autoload
6640 (defun org-cycle (&optional arg)
6641 "TAB-action and visibility cycling for Org-mode.
6643 This is the command invoked in Org-mode by the TAB key. Its main purpose
6644 is outline visibility cycling, but it also invokes other actions
6645 in special contexts.
6647 - When this function is called with a prefix argument, rotate the entire
6648 buffer through 3 states (global cycling)
6649 1. OVERVIEW: Show only top-level headlines.
6650 2. CONTENTS: Show all headlines of all levels, but no body text.
6651 3. SHOW ALL: Show everything.
6652 When called with two `C-u C-u' prefixes, switch to the startup visibility,
6653 determined by the variable `org-startup-folded', and by any VISIBILITY
6654 properties in the buffer.
6655 When called with three `C-u C-u C-u' prefixed, show the entire buffer,
6656 including any drawers.
6658 - When inside a table, re-align the table and move to the next field.
6660 - When point is at the beginning of a headline, rotate the subtree started
6661 by this line through 3 different states (local cycling)
6662 1. FOLDED: Only the main headline is shown.
6663 2. CHILDREN: The main headline and the direct children are shown.
6664 From this state, you can move to one of the children
6665 and zoom in further.
6666 3. SUBTREE: Show the entire subtree, including body text.
6667 If there is no subtree, switch directly from CHILDREN to FOLDED.
6669 - When point is at the beginning of an empty headline and the variable
6670 `org-cycle-level-after-item/entry-creation' is set, cycle the level
6671 of the headline by demoting and promoting it to likely levels. This
6672 speeds up creation document structure by pressing TAB once or several
6673 times right after creating a new headline.
6675 - When there is a numeric prefix, go up to a heading with level ARG, do
6676 a `show-subtree' and return to the previous cursor position. If ARG
6677 is negative, go up that many levels.
6679 - When point is not at the beginning of a headline, execute the global
6680 binding for TAB, which is re-indenting the line. See the option
6681 `org-cycle-emulate-tab' for details.
6683 - Special case: if point is at the beginning of the buffer and there is
6684 no headline in line 1, this function will act as if called with prefix arg
6685 (C-u TAB, same as S-TAB) also when called without prefix arg.
6686 But only if also the variable `org-cycle-global-at-bob' is t."
6687 (interactive "P")
6688 (org-load-modules-maybe)
6689 (unless (or (run-hook-with-args-until-success 'org-tab-first-hook)
6690 (and org-cycle-level-after-item/entry-creation
6691 (or (org-cycle-level)
6692 (org-cycle-item-indentation))))
6693 (let* ((limit-level
6694 (or org-cycle-max-level
6695 (and (boundp 'org-inlinetask-min-level)
6696 org-inlinetask-min-level
6697 (1- org-inlinetask-min-level))))
6698 (nstars (and limit-level
6699 (if org-odd-levels-only
6700 (and limit-level (1- (* limit-level 2)))
6701 limit-level)))
6702 (org-outline-regexp
6703 (if (not (derived-mode-p 'org-mode))
6704 outline-regexp
6705 (concat "\\*" (if nstars (format "\\{1,%d\\} " nstars) "+ "))))
6706 (bob-special (and org-cycle-global-at-bob (not arg) (bobp)
6707 (not (looking-at org-outline-regexp))))
6708 (org-cycle-hook
6709 (if bob-special
6710 (delq 'org-optimize-window-after-visibility-change
6711 (copy-sequence org-cycle-hook))
6712 org-cycle-hook))
6713 (pos (point)))
6715 (if (or bob-special (equal arg '(4)))
6716 ;; special case: use global cycling
6717 (setq arg t))
6719 (cond
6721 ((equal arg '(16))
6722 (setq last-command 'dummy)
6723 (org-set-startup-visibility)
6724 (org-unlogged-message "Startup visibility, plus VISIBILITY properties"))
6726 ((equal arg '(64))
6727 (show-all)
6728 (org-unlogged-message "Entire buffer visible, including drawers"))
6730 ;; Try cdlatex TAB completion
6731 ((org-try-cdlatex-tab))
6733 ;; Table: enter it or move to the next field.
6734 ((org-at-table-p 'any)
6735 (if (org-at-table.el-p)
6736 (message "Use C-c ' to edit table.el tables")
6737 (if arg (org-table-edit-field t)
6738 (org-table-justify-field-maybe)
6739 (call-interactively 'org-table-next-field))))
6741 ((run-hook-with-args-until-success
6742 'org-tab-after-check-for-table-hook))
6744 ;; Global cycling: delegate to `org-cycle-internal-global'.
6745 ((eq arg t) (org-cycle-internal-global))
6747 ;; Drawers: delegate to `org-flag-drawer'.
6748 ((save-excursion
6749 (beginning-of-line 1)
6750 (looking-at org-drawer-regexp))
6751 (org-flag-drawer ; toggle block visibility
6752 (not (get-char-property (match-end 0) 'invisible))))
6754 ;; Show-subtree, ARG levels up from here.
6755 ((integerp arg)
6756 (save-excursion
6757 (org-back-to-heading)
6758 (outline-up-heading (if (< arg 0) (- arg)
6759 (- (funcall outline-level) arg)))
6760 (org-show-subtree)))
6762 ;; Inline task: delegate to `org-inlinetask-toggle-visibility'.
6763 ((and (featurep 'org-inlinetask)
6764 (org-inlinetask-at-task-p)
6765 (or (bolp) (not (eq org-cycle-emulate-tab 'exc-hl-bol))))
6766 (org-inlinetask-toggle-visibility))
6768 ;; At an item/headline: delegate to `org-cycle-internal-local'.
6769 ((and (or (and org-cycle-include-plain-lists (org-at-item-p))
6770 (save-excursion (beginning-of-line 1)
6771 (looking-at org-outline-regexp)))
6772 (or (bolp) (not (eq org-cycle-emulate-tab 'exc-hl-bol))))
6773 (org-cycle-internal-local))
6775 ;; From there: TAB emulation and template completion.
6776 (buffer-read-only (org-back-to-heading))
6778 ((run-hook-with-args-until-success
6779 'org-tab-after-check-for-cycling-hook))
6781 ((org-try-structure-completion))
6783 ((run-hook-with-args-until-success
6784 'org-tab-before-tab-emulation-hook))
6786 ((and (eq org-cycle-emulate-tab 'exc-hl-bol)
6787 (or (not (bolp))
6788 (not (looking-at org-outline-regexp))))
6789 (call-interactively (global-key-binding "\t")))
6791 ((if (and (memq org-cycle-emulate-tab '(white whitestart))
6792 (save-excursion (beginning-of-line 1) (looking-at "[ \t]*"))
6793 (or (and (eq org-cycle-emulate-tab 'white)
6794 (= (match-end 0) (point-at-eol)))
6795 (and (eq org-cycle-emulate-tab 'whitestart)
6796 (>= (match-end 0) pos))))
6798 (eq org-cycle-emulate-tab t))
6799 (call-interactively (global-key-binding "\t")))
6801 (t (save-excursion
6802 (org-back-to-heading)
6803 (org-cycle)))))))
6805 (defun org-cycle-internal-global ()
6806 "Do the global cycling action."
6807 ;; Hack to avoid display of messages for .org attachments in Gnus
6808 (let ((ga (string-match "\\*fontification" (buffer-name))))
6809 (cond
6810 ((and (eq last-command this-command)
6811 (eq org-cycle-global-status 'overview))
6812 ;; We just created the overview - now do table of contents
6813 ;; This can be slow in very large buffers, so indicate action
6814 (run-hook-with-args 'org-pre-cycle-hook 'contents)
6815 (unless ga (org-unlogged-message "CONTENTS..."))
6816 (org-content)
6817 (unless ga (org-unlogged-message "CONTENTS...done"))
6818 (setq org-cycle-global-status 'contents)
6819 (run-hook-with-args 'org-cycle-hook 'contents))
6821 ((and (eq last-command this-command)
6822 (eq org-cycle-global-status 'contents))
6823 ;; We just showed the table of contents - now show everything
6824 (run-hook-with-args 'org-pre-cycle-hook 'all)
6825 (show-all)
6826 (unless ga (org-unlogged-message "SHOW ALL"))
6827 (setq org-cycle-global-status 'all)
6828 (run-hook-with-args 'org-cycle-hook 'all))
6831 ;; Default action: go to overview
6832 (run-hook-with-args 'org-pre-cycle-hook 'overview)
6833 (org-overview)
6834 (unless ga (org-unlogged-message "OVERVIEW"))
6835 (setq org-cycle-global-status 'overview)
6836 (run-hook-with-args 'org-cycle-hook 'overview)))))
6838 (defvar org-called-with-limited-levels nil
6839 "Non-nil when `org-with-limited-levels' is currently active.")
6841 (defun org-cycle-internal-local ()
6842 "Do the local cycling action."
6843 (let ((goal-column 0) eoh eol eos has-children children-skipped struct)
6844 ;; First, determine end of headline (EOH), end of subtree or item
6845 ;; (EOS), and if item or heading has children (HAS-CHILDREN).
6846 (save-excursion
6847 (if (org-at-item-p)
6848 (progn
6849 (beginning-of-line)
6850 (setq struct (org-list-struct))
6851 (setq eoh (point-at-eol))
6852 (setq eos (org-list-get-item-end-before-blank (point) struct))
6853 (setq has-children (org-list-has-child-p (point) struct)))
6854 (org-back-to-heading)
6855 (setq eoh (save-excursion (outline-end-of-heading) (point)))
6856 (setq eos (save-excursion (org-end-of-subtree t t)
6857 (when (bolp) (backward-char)) (point)))
6858 (setq has-children
6859 (or (save-excursion
6860 (let ((level (funcall outline-level)))
6861 (outline-next-heading)
6862 (and (org-at-heading-p t)
6863 (> (funcall outline-level) level))))
6864 (save-excursion
6865 (org-list-search-forward (org-item-beginning-re) eos t)))))
6866 ;; Determine end invisible part of buffer (EOL)
6867 (beginning-of-line 2)
6868 ;; XEmacs doesn't have `next-single-char-property-change'
6869 (if (featurep 'xemacs)
6870 (while (and (not (eobp)) ;; this is like `next-line'
6871 (get-char-property (1- (point)) 'invisible))
6872 (beginning-of-line 2))
6873 (while (and (not (eobp)) ;; this is like `next-line'
6874 (get-char-property (1- (point)) 'invisible))
6875 (goto-char (next-single-char-property-change (point) 'invisible))
6876 (and (eolp) (beginning-of-line 2))))
6877 (setq eol (point)))
6878 ;; Find out what to do next and set `this-command'
6879 (cond
6880 ((= eos eoh)
6881 ;; Nothing is hidden behind this heading
6882 (unless (org-before-first-heading-p)
6883 (run-hook-with-args 'org-pre-cycle-hook 'empty))
6884 (org-unlogged-message "EMPTY ENTRY")
6885 (setq org-cycle-subtree-status nil)
6886 (save-excursion
6887 (goto-char eos)
6888 (outline-next-heading)
6889 (if (outline-invisible-p) (org-flag-heading nil))))
6890 ((and (or (>= eol eos)
6891 (not (string-match "\\S-" (buffer-substring eol eos))))
6892 (or has-children
6893 (not (setq children-skipped
6894 org-cycle-skip-children-state-if-no-children))))
6895 ;; Entire subtree is hidden in one line: children view
6896 (unless (org-before-first-heading-p)
6897 (run-hook-with-args 'org-pre-cycle-hook 'children))
6898 (if (org-at-item-p)
6899 (org-list-set-item-visibility (point-at-bol) struct 'children)
6900 (org-show-entry)
6901 (org-with-limited-levels (show-children))
6902 ;; FIXME: This slows down the func way too much.
6903 ;; How keep drawers hidden in subtree anyway?
6904 ;; (when (memq 'org-cycle-hide-drawers org-cycle-hook)
6905 ;; (org-cycle-hide-drawers 'subtree))
6907 ;; Fold every list in subtree to top-level items.
6908 (when (eq org-cycle-include-plain-lists 'integrate)
6909 (save-excursion
6910 (org-back-to-heading)
6911 (while (org-list-search-forward (org-item-beginning-re) eos t)
6912 (beginning-of-line 1)
6913 (let* ((struct (org-list-struct))
6914 (prevs (org-list-prevs-alist struct))
6915 (end (org-list-get-bottom-point struct)))
6916 (mapc (lambda (e) (org-list-set-item-visibility e struct 'folded))
6917 (org-list-get-all-items (point) struct prevs))
6918 (goto-char (if (< end eos) end eos)))))))
6919 (org-unlogged-message "CHILDREN")
6920 (save-excursion
6921 (goto-char eos)
6922 (outline-next-heading)
6923 (if (outline-invisible-p) (org-flag-heading nil)))
6924 (setq org-cycle-subtree-status 'children)
6925 (unless (org-before-first-heading-p)
6926 (run-hook-with-args 'org-cycle-hook 'children)))
6927 ((or children-skipped
6928 (and (eq last-command this-command)
6929 (eq org-cycle-subtree-status 'children)))
6930 ;; We just showed the children, or no children are there,
6931 ;; now show everything.
6932 (unless (org-before-first-heading-p)
6933 (run-hook-with-args 'org-pre-cycle-hook 'subtree))
6934 (outline-flag-region eoh eos nil)
6935 (org-unlogged-message
6936 (if children-skipped "SUBTREE (NO CHILDREN)" "SUBTREE"))
6937 (setq org-cycle-subtree-status 'subtree)
6938 (unless (org-before-first-heading-p)
6939 (run-hook-with-args 'org-cycle-hook 'subtree)))
6941 ;; Default action: hide the subtree.
6942 (run-hook-with-args 'org-pre-cycle-hook 'folded)
6943 (outline-flag-region eoh eos t)
6944 (org-unlogged-message "FOLDED")
6945 (setq org-cycle-subtree-status 'folded)
6946 (unless (org-before-first-heading-p)
6947 (run-hook-with-args 'org-cycle-hook 'folded))))))
6949 ;;;###autoload
6950 (defun org-global-cycle (&optional arg)
6951 "Cycle the global visibility. For details see `org-cycle'.
6952 With \\[universal-argument] prefix arg, switch to startup visibility.
6953 With a numeric prefix, show all headlines up to that level."
6954 (interactive "P")
6955 (let ((org-cycle-include-plain-lists
6956 (if (derived-mode-p 'org-mode) org-cycle-include-plain-lists nil)))
6957 (cond
6958 ((integerp arg)
6959 (show-all)
6960 (hide-sublevels arg)
6961 (setq org-cycle-global-status 'contents))
6962 ((equal arg '(4))
6963 (org-set-startup-visibility)
6964 (org-unlogged-message "Startup visibility, plus VISIBILITY properties."))
6966 (org-cycle '(4))))))
6968 (defun org-set-startup-visibility ()
6969 "Set the visibility required by startup options and properties."
6970 (cond
6971 ((eq org-startup-folded t)
6972 (org-overview))
6973 ((eq org-startup-folded 'content)
6974 (org-content))
6975 ((or (eq org-startup-folded 'showeverything)
6976 (eq org-startup-folded nil))
6977 (show-all)))
6978 (unless (eq org-startup-folded 'showeverything)
6979 (if org-hide-block-startup (org-hide-block-all))
6980 (org-set-visibility-according-to-property 'no-cleanup)
6981 (org-cycle-hide-archived-subtrees 'all)
6982 (org-cycle-hide-drawers 'all)
6983 (org-cycle-show-empty-lines t)))
6985 (defun org-set-visibility-according-to-property (&optional no-cleanup)
6986 "Switch subtree visibilities according to :VISIBILITY: property."
6987 (interactive)
6988 (let (org-show-entry-below)
6989 (org-with-wide-buffer
6990 (goto-char (point-min))
6991 (while (re-search-forward "^[ \t]*:VISIBILITY:" nil t)
6992 (if (not (org-at-property-p)) (outline-next-heading)
6993 (let ((state (match-string 3)))
6994 (save-excursion
6995 (org-back-to-heading t)
6996 (hide-subtree)
6997 (org-reveal)
6998 (cond
6999 ((equal state "folded")
7000 (hide-subtree))
7001 ((equal state "children")
7002 (org-show-hidden-entry)
7003 (show-children))
7004 ((equal state "content")
7005 (save-excursion
7006 (save-restriction
7007 (org-narrow-to-subtree)
7008 (org-content))))
7009 ((member state '("all" "showall"))
7010 (show-subtree)))))))
7011 (unless no-cleanup
7012 (org-cycle-hide-archived-subtrees 'all)
7013 (org-cycle-hide-drawers 'all)
7014 (org-cycle-show-empty-lines 'all)))))
7016 ;; This function uses outline-regexp instead of the more fundamental
7017 ;; org-outline-regexp so that org-cycle-global works outside of Org
7018 ;; buffers, where outline-regexp is needed.
7019 (defun org-overview ()
7020 "Switch to overview mode, showing only top-level headlines.
7021 This shows all headlines with a level equal or greater than the level
7022 of the first headline in the buffer. This is important, because if the
7023 first headline is not level one, then (hide-sublevels 1) gives confusing
7024 results."
7025 (interactive)
7026 (save-excursion
7027 (let ((level
7028 (save-excursion
7029 (goto-char (point-min))
7030 (if (re-search-forward (concat "^" outline-regexp) nil t)
7031 (progn
7032 (goto-char (match-beginning 0))
7033 (funcall outline-level))))))
7034 (and level (hide-sublevels level)))))
7036 (defun org-content (&optional arg)
7037 "Show all headlines in the buffer, like a table of contents.
7038 With numerical argument N, show content up to level N."
7039 (interactive "P")
7040 (org-overview)
7041 (save-excursion
7042 ;; Visit all headings and show their offspring
7043 (and (integerp arg) (org-overview))
7044 (goto-char (point-max))
7045 (catch 'exit
7046 (while (and (progn (condition-case nil
7047 (outline-previous-visible-heading 1)
7048 (error (goto-char (point-min))))
7050 (looking-at org-outline-regexp))
7051 (if (integerp arg)
7052 (show-children (1- arg))
7053 (show-branches))
7054 (if (bobp) (throw 'exit nil))))))
7056 (defun org-optimize-window-after-visibility-change (state)
7057 "Adjust the window after a change in outline visibility.
7058 This function is the default value of the hook `org-cycle-hook'."
7059 (when (get-buffer-window (current-buffer))
7060 (cond
7061 ((eq state 'content) nil)
7062 ((eq state 'all) nil)
7063 ((eq state 'folded) nil)
7064 ((eq state 'children) (or (org-subtree-end-visible-p) (recenter 1)))
7065 ((eq state 'subtree) (or (org-subtree-end-visible-p) (recenter 1))))))
7067 (defun org-remove-empty-overlays-at (pos)
7068 "Remove outline overlays that do not contain non-white stuff."
7069 (mapc
7070 (lambda (o)
7071 (and (eq 'outline (overlay-get o 'invisible))
7072 (not (string-match "\\S-" (buffer-substring (overlay-start o)
7073 (overlay-end o))))
7074 (delete-overlay o)))
7075 (overlays-at pos)))
7077 (defun org-clean-visibility-after-subtree-move ()
7078 "Fix visibility issues after moving a subtree."
7079 ;; First, find a reasonable region to look at:
7080 ;; Start two siblings above, end three below
7081 (let* ((beg (save-excursion
7082 (and (org-get-last-sibling)
7083 (org-get-last-sibling))
7084 (point)))
7085 (end (save-excursion
7086 (and (org-get-next-sibling)
7087 (org-get-next-sibling)
7088 (org-get-next-sibling))
7089 (if (org-at-heading-p)
7090 (point-at-eol)
7091 (point))))
7092 (level (looking-at "\\*+"))
7093 (re (if level (concat "^" (regexp-quote (match-string 0)) " "))))
7094 (save-excursion
7095 (save-restriction
7096 (narrow-to-region beg end)
7097 (when re
7098 ;; Properly fold already folded siblings
7099 (goto-char (point-min))
7100 (while (re-search-forward re nil t)
7101 (if (and (not (outline-invisible-p))
7102 (save-excursion
7103 (goto-char (point-at-eol)) (outline-invisible-p)))
7104 (hide-entry))))
7105 (org-cycle-show-empty-lines 'overview)
7106 (org-cycle-hide-drawers 'overview)))))
7108 (defun org-cycle-show-empty-lines (state)
7109 "Show empty lines above all visible headlines.
7110 The region to be covered depends on STATE when called through
7111 `org-cycle-hook'. Lisp program can use t for STATE to get the
7112 entire buffer covered. Note that an empty line is only shown if there
7113 are at least `org-cycle-separator-lines' empty lines before the headline."
7114 (when (not (= org-cycle-separator-lines 0))
7115 (save-excursion
7116 (let* ((n (abs org-cycle-separator-lines))
7117 (re (cond
7118 ((= n 1) "\\(\n[ \t]*\n\\*+\\) ")
7119 ((= n 2) "^[ \t]*\\(\n[ \t]*\n\\*+\\) ")
7120 (t (let ((ns (number-to-string (- n 2))))
7121 (concat "^\\(?:[ \t]*\n\\)\\{" ns "," ns "\\}"
7122 "[ \t]*\\(\n[ \t]*\n\\*+\\) ")))))
7123 beg end b e)
7124 (cond
7125 ((memq state '(overview contents t))
7126 (setq beg (point-min) end (point-max)))
7127 ((memq state '(children folded))
7128 (setq beg (point) end (progn (org-end-of-subtree t t)
7129 (beginning-of-line 2)
7130 (point)))))
7131 (when beg
7132 (goto-char beg)
7133 (while (re-search-forward re end t)
7134 (unless (get-char-property (match-end 1) 'invisible)
7135 (setq e (match-end 1))
7136 (if (< org-cycle-separator-lines 0)
7137 (setq b (save-excursion
7138 (goto-char (match-beginning 0))
7139 (org-back-over-empty-lines)
7140 (if (save-excursion
7141 (goto-char (max (point-min) (1- (point))))
7142 (org-at-heading-p))
7143 (1- (point))
7144 (point))))
7145 (setq b (match-beginning 1)))
7146 (outline-flag-region b e nil)))))))
7147 ;; Never hide empty lines at the end of the file.
7148 (save-excursion
7149 (goto-char (point-max))
7150 (outline-previous-heading)
7151 (outline-end-of-heading)
7152 (if (and (looking-at "[ \t\n]+")
7153 (= (match-end 0) (point-max)))
7154 (outline-flag-region (point) (match-end 0) nil))))
7156 (defun org-show-empty-lines-in-parent ()
7157 "Move to the parent and re-show empty lines before visible headlines."
7158 (save-excursion
7159 (let ((context (if (org-up-heading-safe) 'children 'overview)))
7160 (org-cycle-show-empty-lines context))))
7162 (defun org-files-list ()
7163 "Return `org-agenda-files' list, plus all open org-mode files.
7164 This is useful for operations that need to scan all of a user's
7165 open and agenda-wise Org files."
7166 (let ((files (mapcar 'expand-file-name (org-agenda-files))))
7167 (dolist (buf (buffer-list))
7168 (with-current-buffer buf
7169 (if (and (derived-mode-p 'org-mode) (buffer-file-name))
7170 (let ((file (expand-file-name (buffer-file-name))))
7171 (unless (member file files)
7172 (push file files))))))
7173 files))
7175 (defsubst org-entry-beginning-position ()
7176 "Return the beginning position of the current entry."
7177 (save-excursion (outline-back-to-heading t) (point)))
7179 (defsubst org-entry-end-position ()
7180 "Return the end position of the current entry."
7181 (save-excursion (outline-next-heading) (point)))
7183 (defun org-cycle-hide-drawers (state &optional exceptions)
7184 "Re-hide all drawers after a visibility state change.
7185 When non-nil, optional argument EXCEPTIONS is a list of strings
7186 specifying which drawers should not be hidden."
7187 (when (and (derived-mode-p 'org-mode)
7188 (not (memq state '(overview folded contents))))
7189 (save-excursion
7190 (let* ((globalp (memq state '(contents all)))
7191 (beg (if globalp (point-min) (point)))
7192 (end (if globalp (point-max)
7193 (if (eq state 'children)
7194 (save-excursion (outline-next-heading) (point))
7195 (org-end-of-subtree t)))))
7196 (goto-char beg)
7197 (while (re-search-forward org-drawer-regexp (max end (point)) t)
7198 (unless (member-ignore-case (match-string 1) exceptions)
7199 (let ((drawer (org-element-at-point)))
7200 (when (memq (org-element-type drawer) '(drawer property-drawer))
7201 (org-flag-drawer t drawer)
7202 ;; Make sure to skip drawer entirely or we might flag
7203 ;; it another time when matching its ending line with
7204 ;; `org-drawer-regexp'.
7205 (goto-char (org-element-property :end drawer))))))))))
7207 (defun org-cycle-hide-inline-tasks (state)
7208 "Re-hide inline tasks when switching to 'contents or 'children
7209 visibility state."
7210 (case state
7211 (contents
7212 (when (org-bound-and-true-p org-inlinetask-min-level)
7213 (hide-sublevels (1- org-inlinetask-min-level))))
7214 (children
7215 (when (featurep 'org-inlinetask)
7216 (save-excursion
7217 (while (and (outline-next-heading)
7218 (org-inlinetask-at-task-p))
7219 (org-inlinetask-toggle-visibility)
7220 (org-inlinetask-goto-end)))))))
7222 (defun org-flag-drawer (flag &optional element)
7223 "When FLAG is non-nil, hide the drawer we are at.
7224 Otherwise make it visible. When optional argument ELEMENT is
7225 a parsed drawer, as returned by `org-element-at-point', hide or
7226 show that drawer instead."
7227 (when (save-excursion
7228 (beginning-of-line)
7229 (org-looking-at-p org-drawer-regexp))
7230 (let ((drawer (or element (org-element-at-point))))
7231 (when (memq (org-element-type drawer) '(drawer property-drawer))
7232 (let ((post (org-element-property :post-affiliated drawer)))
7233 (save-excursion
7234 (outline-flag-region
7235 (progn (goto-char post) (line-end-position))
7236 (progn (goto-char (org-element-property :end drawer))
7237 (skip-chars-backward " \r\t\n")
7238 (line-end-position))
7239 flag))
7240 ;; When the drawer is hidden away, make sure point lies in
7241 ;; a visible part of the buffer.
7242 (when (and flag (> (line-beginning-position) post))
7243 (goto-char post)))))))
7245 (defun org-subtree-end-visible-p ()
7246 "Is the end of the current subtree visible?"
7247 (pos-visible-in-window-p
7248 (save-excursion (org-end-of-subtree t) (point))))
7250 (defun org-first-headline-recenter ()
7251 "Move cursor to the first headline and recenter the headline."
7252 (goto-char (point-min))
7253 (when (re-search-forward (concat "^\\(" org-outline-regexp "\\)") nil t)
7254 (set-window-start (selected-window) (point-at-bol))))
7256 ;;; Saving and restoring visibility
7258 (defun org-outline-overlay-data (&optional use-markers)
7259 "Return a list of the locations of all outline overlays.
7260 These are overlays with the `invisible' property value `outline'.
7261 The return value is a list of cons cells, with start and stop
7262 positions for each overlay.
7263 If USE-MARKERS is set, return the positions as markers."
7264 (let (beg end)
7265 (save-excursion
7266 (save-restriction
7267 (widen)
7268 (delq nil
7269 (mapcar (lambda (o)
7270 (when (eq (overlay-get o 'invisible) 'outline)
7271 (setq beg (overlay-start o)
7272 end (overlay-end o))
7273 (and beg end (> end beg)
7274 (if use-markers
7275 (cons (copy-marker beg)
7276 (copy-marker end t))
7277 (cons beg end)))))
7278 (overlays-in (point-min) (point-max))))))))
7280 (defun org-set-outline-overlay-data (data)
7281 "Create visibility overlays for all positions in DATA.
7282 DATA should have been made by `org-outline-overlay-data'."
7283 (let (o)
7284 (save-excursion
7285 (save-restriction
7286 (widen)
7287 (show-all)
7288 (mapc (lambda (c)
7289 (outline-flag-region (car c) (cdr c) t))
7290 data)))))
7292 ;;; Folding of blocks
7294 (defvar org-hide-block-overlays nil
7295 "Overlays hiding blocks.")
7296 (make-variable-buffer-local 'org-hide-block-overlays)
7298 (defun org-block-map (function &optional start end)
7299 "Call FUNCTION at the head of all source blocks in the current buffer.
7300 Optional arguments START and END can be used to limit the range."
7301 (let ((start (or start (point-min)))
7302 (end (or end (point-max))))
7303 (save-excursion
7304 (goto-char start)
7305 (while (and (< (point) end) (re-search-forward org-block-regexp end t))
7306 (save-excursion
7307 (save-match-data
7308 (goto-char (match-beginning 0))
7309 (funcall function)))))))
7311 (defun org-hide-block-toggle-all ()
7312 "Toggle the visibility of all blocks in the current buffer."
7313 (org-block-map 'org-hide-block-toggle))
7315 (defun org-hide-block-all ()
7316 "Fold all blocks in the current buffer."
7317 (interactive)
7318 (org-show-block-all)
7319 (org-block-map 'org-hide-block-toggle-maybe))
7321 (defun org-show-block-all ()
7322 "Unfold all blocks in the current buffer."
7323 (interactive)
7324 (mapc 'delete-overlay org-hide-block-overlays)
7325 (setq org-hide-block-overlays nil))
7327 (defun org-hide-block-toggle-maybe ()
7328 "Toggle visibility of block at point.
7329 Unlike to `org-hide-block-toggle', this function does not throw
7330 an error. Return a non-nil value when toggling is successful."
7331 (interactive)
7332 (ignore-errors (org-hide-block-toggle)))
7334 (defun org-hide-block-toggle (&optional force)
7335 "Toggle the visibility of the current block.
7336 When optional argument FORCE is `off', make block visible. If it
7337 is non-nil, hide it unconditionally. Throw an error when not at
7338 a block. Return a non-nil value when toggling is successful."
7339 (interactive)
7340 (let ((element (org-element-at-point)))
7341 (unless (memq (org-element-type element)
7342 '(center-block comment-block dynamic-block example-block
7343 export-block quote-block special-block
7344 src-block verse-block))
7345 (user-error "Not at a block"))
7346 (let* ((start (save-excursion
7347 (goto-char (org-element-property :post-affiliated element))
7348 (line-end-position)))
7349 (end (save-excursion
7350 (goto-char (org-element-property :end element))
7351 (skip-chars-backward " \r\t\n")
7352 (line-end-position)))
7353 (overlays (overlays-at start)))
7354 (cond
7355 ;; Do nothing when not before or at the block opening line or
7356 ;; at the block closing line.
7357 ((let ((eol (line-end-position))) (and (> eol start) (/= eol end))) nil)
7358 ((and (not (eq force 'off))
7359 (not (memq t (mapcar
7360 (lambda (o)
7361 (eq (overlay-get o 'invisible) 'org-hide-block))
7362 overlays))))
7363 (let ((ov (make-overlay start end)))
7364 (overlay-put ov 'invisible 'org-hide-block)
7365 ;; Make the block accessible to `isearch'.
7366 (overlay-put
7367 ov 'isearch-open-invisible
7368 (lambda (ov)
7369 (when (memq ov org-hide-block-overlays)
7370 (setq org-hide-block-overlays (delq ov org-hide-block-overlays)))
7371 (when (eq (overlay-get ov 'invisible) 'org-hide-block)
7372 (delete-overlay ov))))
7373 (push ov org-hide-block-overlays)
7374 ;; When the block is hidden away, make sure point is left in
7375 ;; a visible part of the buffer.
7376 (when (> (line-beginning-position) start)
7377 (goto-char start)
7378 (beginning-of-line))
7379 ;; Signal successful toggling.
7381 ((or (not force) (eq force 'off))
7382 (dolist (ov overlays t)
7383 (when (memq ov org-hide-block-overlays)
7384 (setq org-hide-block-overlays (delq ov org-hide-block-overlays)))
7385 (when (eq (overlay-get ov 'invisible) 'org-hide-block)
7386 (delete-overlay ov))))))))
7388 ;; org-tab-after-check-for-cycling-hook
7389 (add-hook 'org-tab-first-hook 'org-hide-block-toggle-maybe)
7390 ;; Remove overlays when changing major mode
7391 (add-hook 'org-mode-hook
7392 (lambda () (org-add-hook 'change-major-mode-hook
7393 'org-show-block-all 'append 'local)))
7395 ;;; Org-goto
7397 (defvar org-goto-window-configuration nil)
7398 (defvar org-goto-marker nil)
7399 (defvar org-goto-map)
7400 (defun org-goto-map ()
7401 "Set the keymap `org-goto'."
7402 (setq org-goto-map
7403 (let ((map (make-sparse-keymap)))
7404 (let ((cmds '(isearch-forward isearch-backward kill-ring-save set-mark-command
7405 mouse-drag-region universal-argument org-occur))
7406 cmd)
7407 (while (setq cmd (pop cmds))
7408 (substitute-key-definition cmd cmd map global-map)))
7409 (suppress-keymap map)
7410 (org-defkey map "\C-m" 'org-goto-ret)
7411 (org-defkey map [(return)] 'org-goto-ret)
7412 (org-defkey map [(left)] 'org-goto-left)
7413 (org-defkey map [(right)] 'org-goto-right)
7414 (org-defkey map [(control ?g)] 'org-goto-quit)
7415 (org-defkey map "\C-i" 'org-cycle)
7416 (org-defkey map [(tab)] 'org-cycle)
7417 (org-defkey map [(down)] 'outline-next-visible-heading)
7418 (org-defkey map [(up)] 'outline-previous-visible-heading)
7419 (if org-goto-auto-isearch
7420 (if (fboundp 'define-key-after)
7421 (define-key-after map [t] 'org-goto-local-auto-isearch)
7422 nil)
7423 (org-defkey map "q" 'org-goto-quit)
7424 (org-defkey map "n" 'outline-next-visible-heading)
7425 (org-defkey map "p" 'outline-previous-visible-heading)
7426 (org-defkey map "f" 'outline-forward-same-level)
7427 (org-defkey map "b" 'outline-backward-same-level)
7428 (org-defkey map "u" 'outline-up-heading))
7429 (org-defkey map "/" 'org-occur)
7430 (org-defkey map "\C-c\C-n" 'outline-next-visible-heading)
7431 (org-defkey map "\C-c\C-p" 'outline-previous-visible-heading)
7432 (org-defkey map "\C-c\C-f" 'outline-forward-same-level)
7433 (org-defkey map "\C-c\C-b" 'outline-backward-same-level)
7434 (org-defkey map "\C-c\C-u" 'outline-up-heading)
7435 map)))
7437 (defconst org-goto-help
7438 "Browse buffer copy, to find location or copy text.%s
7439 RET=jump to location C-g=quit and return to previous location
7440 \[Up]/[Down]=next/prev headline TAB=cycle visibility [/] org-occur")
7442 (defvar org-goto-start-pos) ; dynamically scoped parameter
7444 (defun org-goto (&optional alternative-interface)
7445 "Look up a different location in the current file, keeping current visibility.
7447 When you want look-up or go to a different location in a
7448 document, the fastest way is often to fold the entire buffer and
7449 then dive into the tree. This method has the disadvantage, that
7450 the previous location will be folded, which may not be what you
7451 want.
7453 This command works around this by showing a copy of the current
7454 buffer in an indirect buffer, in overview mode. You can dive
7455 into the tree in that copy, use org-occur and incremental search
7456 to find a location. When pressing RET or `Q', the command
7457 returns to the original buffer in which the visibility is still
7458 unchanged. After RET it will also jump to the location selected
7459 in the indirect buffer and expose the headline hierarchy above.
7461 With a prefix argument, use the alternative interface: e.g. if
7462 `org-goto-interface' is 'outline use 'outline-path-completion."
7463 (interactive "P")
7464 (org-goto-map)
7465 (let* ((org-refile-targets `((nil . (:maxlevel . ,org-goto-max-level))))
7466 (org-refile-use-outline-path t)
7467 (org-refile-target-verify-function nil)
7468 (interface
7469 (if (not alternative-interface)
7470 org-goto-interface
7471 (if (eq org-goto-interface 'outline)
7472 'outline-path-completion
7473 'outline)))
7474 (org-goto-start-pos (point))
7475 (selected-point
7476 (if (eq interface 'outline)
7477 (car (org-get-location (current-buffer) org-goto-help))
7478 (let ((pa (org-refile-get-location "Goto" nil nil t)))
7479 (org-refile-check-position pa)
7480 (nth 3 pa)))))
7481 (if selected-point
7482 (progn
7483 (org-mark-ring-push org-goto-start-pos)
7484 (goto-char selected-point)
7485 (if (or (outline-invisible-p) (org-invisible-p2))
7486 (org-show-context 'org-goto)))
7487 (message "Quit"))))
7489 (defvar org-goto-selected-point nil) ; dynamically scoped parameter
7490 (defvar org-goto-exit-command nil) ; dynamically scoped parameter
7491 (defvar org-goto-local-auto-isearch-map) ; defined below
7493 (defun org-get-location (buf help)
7494 "Let the user select a location in the Org-mode buffer BUF.
7495 This function uses a recursive edit. It returns the selected position
7496 or nil."
7497 (org-no-popups
7498 (let ((isearch-mode-map org-goto-local-auto-isearch-map)
7499 (isearch-hide-immediately nil)
7500 (isearch-search-fun-function
7501 (lambda () 'org-goto-local-search-headings))
7502 (org-goto-selected-point org-goto-exit-command))
7503 (save-excursion
7504 (save-window-excursion
7505 (delete-other-windows)
7506 (and (get-buffer "*org-goto*") (kill-buffer "*org-goto*"))
7507 (org-pop-to-buffer-same-window
7508 (condition-case nil
7509 (make-indirect-buffer (current-buffer) "*org-goto*")
7510 (error (make-indirect-buffer (current-buffer) "*org-goto*"))))
7511 (with-output-to-temp-buffer "*Org Help*"
7512 (princ (format help (if org-goto-auto-isearch
7513 " Just type for auto-isearch."
7514 " n/p/f/b/u to navigate, q to quit."))))
7515 (org-fit-window-to-buffer (get-buffer-window "*Org Help*"))
7516 (setq buffer-read-only nil)
7517 (let ((org-startup-truncated t)
7518 (org-startup-folded nil)
7519 (org-startup-align-all-tables nil))
7520 (org-mode)
7521 (org-overview))
7522 (setq buffer-read-only t)
7523 (if (and (boundp 'org-goto-start-pos)
7524 (integer-or-marker-p org-goto-start-pos))
7525 (let ((org-show-hierarchy-above t)
7526 (org-show-siblings t)
7527 (org-show-following-heading t))
7528 (goto-char org-goto-start-pos)
7529 (and (outline-invisible-p) (org-show-context)))
7530 (goto-char (point-min)))
7531 (let (org-special-ctrl-a/e) (org-beginning-of-line))
7532 (message "Select location and press RET")
7533 (use-local-map org-goto-map)
7534 (recursive-edit)))
7535 (kill-buffer "*org-goto*")
7536 (cons org-goto-selected-point org-goto-exit-command))))
7538 (defvar org-goto-local-auto-isearch-map (make-sparse-keymap))
7539 (set-keymap-parent org-goto-local-auto-isearch-map isearch-mode-map)
7540 ;; `isearch-other-control-char' was removed in Emacs 24.4.
7541 (if (fboundp 'isearch-other-control-char)
7542 (progn
7543 (define-key org-goto-local-auto-isearch-map "\C-i" 'isearch-other-control-char)
7544 (define-key org-goto-local-auto-isearch-map "\C-m" 'isearch-other-control-char))
7545 (define-key org-goto-local-auto-isearch-map "\C-i" nil)
7546 (define-key org-goto-local-auto-isearch-map "\C-m" nil)
7547 (define-key org-goto-local-auto-isearch-map [return] nil))
7549 (defun org-goto-local-search-headings (string bound noerror)
7550 "Search and make sure that any matches are in headlines."
7551 (catch 'return
7552 (while (if isearch-forward
7553 (search-forward string bound noerror)
7554 (search-backward string bound noerror))
7555 (when (let ((context (mapcar 'car (save-match-data (org-context)))))
7556 (and (member :headline context)
7557 (not (member :tags context))))
7558 (throw 'return (point))))))
7560 (defun org-goto-local-auto-isearch ()
7561 "Start isearch."
7562 (interactive)
7563 (goto-char (point-min))
7564 (let ((keys (this-command-keys)))
7565 (when (eq (lookup-key isearch-mode-map keys) 'isearch-printing-char)
7566 (isearch-mode t)
7567 (isearch-process-search-char (string-to-char keys)))))
7569 (defun org-goto-ret (&optional arg)
7570 "Finish `org-goto' by going to the new location."
7571 (interactive "P")
7572 (setq org-goto-selected-point (point)
7573 org-goto-exit-command 'return)
7574 (throw 'exit nil))
7576 (defun org-goto-left ()
7577 "Finish `org-goto' by going to the new location."
7578 (interactive)
7579 (if (org-at-heading-p)
7580 (progn
7581 (beginning-of-line 1)
7582 (setq org-goto-selected-point (point)
7583 org-goto-exit-command 'left)
7584 (throw 'exit nil))
7585 (user-error "Not on a heading")))
7587 (defun org-goto-right ()
7588 "Finish `org-goto' by going to the new location."
7589 (interactive)
7590 (if (org-at-heading-p)
7591 (progn
7592 (setq org-goto-selected-point (point)
7593 org-goto-exit-command 'right)
7594 (throw 'exit nil))
7595 (user-error "Not on a heading")))
7597 (defun org-goto-quit ()
7598 "Finish `org-goto' without cursor motion."
7599 (interactive)
7600 (setq org-goto-selected-point nil)
7601 (setq org-goto-exit-command 'quit)
7602 (throw 'exit nil))
7604 ;;; Indirect buffer display of subtrees
7606 (defvar org-indirect-dedicated-frame nil
7607 "This is the frame being used for indirect tree display.")
7608 (defvar org-last-indirect-buffer nil)
7610 (defun org-tree-to-indirect-buffer (&optional arg)
7611 "Create indirect buffer and narrow it to current subtree.
7612 With a numerical prefix ARG, go up to this level and then take that tree.
7613 If ARG is negative, go up that many levels.
7615 If `org-indirect-buffer-display' is not `new-frame', the command removes the
7616 indirect buffer previously made with this command, to avoid proliferation of
7617 indirect buffers. However, when you call the command with a \
7618 \\[universal-argument] prefix, or
7619 when `org-indirect-buffer-display' is `new-frame', the last buffer
7620 is kept so that you can work with several indirect buffers at the same time.
7621 If `org-indirect-buffer-display' is `dedicated-frame', the \
7622 \\[universal-argument] prefix also
7623 requests that a new frame be made for the new buffer, so that the dedicated
7624 frame is not changed."
7625 (interactive "P")
7626 (let ((cbuf (current-buffer))
7627 (cwin (selected-window))
7628 (pos (point))
7629 beg end level heading ibuf)
7630 (save-excursion
7631 (org-back-to-heading t)
7632 (when (numberp arg)
7633 (setq level (org-outline-level))
7634 (if (< arg 0) (setq arg (+ level arg)))
7635 (while (> (setq level (org-outline-level)) arg)
7636 (org-up-heading-safe)))
7637 (setq beg (point)
7638 heading (org-get-heading))
7639 (org-end-of-subtree t t)
7640 (if (org-at-heading-p) (backward-char 1))
7641 (setq end (point)))
7642 (if (and (buffer-live-p org-last-indirect-buffer)
7643 (not (eq org-indirect-buffer-display 'new-frame))
7644 (not arg))
7645 (kill-buffer org-last-indirect-buffer))
7646 (setq ibuf (org-get-indirect-buffer cbuf heading)
7647 org-last-indirect-buffer ibuf)
7648 (cond
7649 ((or (eq org-indirect-buffer-display 'new-frame)
7650 (and arg (eq org-indirect-buffer-display 'dedicated-frame)))
7651 (select-frame (make-frame))
7652 (delete-other-windows)
7653 (org-pop-to-buffer-same-window ibuf)
7654 (org-set-frame-title heading))
7655 ((eq org-indirect-buffer-display 'dedicated-frame)
7656 (raise-frame
7657 (select-frame (or (and org-indirect-dedicated-frame
7658 (frame-live-p org-indirect-dedicated-frame)
7659 org-indirect-dedicated-frame)
7660 (setq org-indirect-dedicated-frame (make-frame)))))
7661 (delete-other-windows)
7662 (org-pop-to-buffer-same-window ibuf)
7663 (org-set-frame-title (concat "Indirect: " heading)))
7664 ((eq org-indirect-buffer-display 'current-window)
7665 (org-pop-to-buffer-same-window ibuf))
7666 ((eq org-indirect-buffer-display 'other-window)
7667 (pop-to-buffer ibuf))
7668 (t (error "Invalid value")))
7669 (if (featurep 'xemacs)
7670 (save-excursion (org-mode) (turn-on-font-lock)))
7671 (narrow-to-region beg end)
7672 (show-all)
7673 (goto-char pos)
7674 (run-hook-with-args 'org-cycle-hook 'all)
7675 (and (window-live-p cwin) (select-window cwin))))
7677 (defun org-get-indirect-buffer (&optional buffer heading)
7678 (setq buffer (or buffer (current-buffer)))
7679 (let ((n 1) (base (buffer-name buffer)) bname)
7680 (while (buffer-live-p
7681 (get-buffer
7682 (setq bname
7683 (concat base "-"
7684 (if heading (concat heading "-" (number-to-string n))
7685 (number-to-string n))))))
7686 (setq n (1+ n)))
7687 (condition-case nil
7688 (make-indirect-buffer buffer bname 'clone)
7689 (error (make-indirect-buffer buffer bname)))))
7691 (defun org-set-frame-title (title)
7692 "Set the title of the current frame to the string TITLE."
7693 ;; FIXME: how to name a single frame in XEmacs???
7694 (unless (featurep 'xemacs)
7695 (modify-frame-parameters (selected-frame) (list (cons 'name title)))))
7697 ;;;; Structure editing
7699 ;;; Inserting headlines
7701 (defun org-previous-line-empty-p (&optional next)
7702 "Is the previous line a blank line?
7703 When NEXT is non-nil, check the next line instead."
7704 (save-excursion
7705 (and (not (bobp))
7706 (or (beginning-of-line (if next 2 0)) t)
7707 (save-match-data
7708 (looking-at "[ \t]*$")))))
7710 (defun org-insert-heading (&optional arg invisible-ok top-level)
7711 "Insert a new heading or an item with the same depth at point.
7713 If point is at the beginning of a heading or a list item, insert
7714 a new heading or a new item above the current one. If point is
7715 at the beginning of a normal line, turn the line into a heading.
7717 If point is in the middle of a headline or a list item, split the
7718 headline or the item and create a new headline/item with the text
7719 in the current line after point \(see `org-M-RET-may-split-line'
7720 on how to modify this behavior).
7722 With one universal prefix argument, set the user option
7723 `org-insert-heading-respect-content' to t for the duration of
7724 the command. This modifies the behavior described above in this
7725 ways: on list items and at the beginning of normal lines, force
7726 the insertion of a heading after the current subtree.
7728 With two universal prefix arguments, insert the heading at the
7729 end of the grandparent subtree. For example, if point is within
7730 a 2nd-level heading, then it will insert a 2nd-level heading at
7731 the end of the 1st-level parent heading.
7733 If point is at the beginning of a headline, insert a sibling
7734 before the current headline. If point is not at the beginning,
7735 split the line and create a new headline with the text in the
7736 current line after point \(see `org-M-RET-may-split-line' on how
7737 to modify this behavior).
7739 If point is at the beginning of a normal line, turn this line
7740 into a heading.
7742 When INVISIBLE-OK is set, stop at invisible headlines when going
7743 back. This is important for non-interactive uses of the
7744 command.
7746 When optional argument TOP-LEVEL is non-nil, insert a level 1
7747 heading, unconditionally."
7748 (interactive "P")
7749 (if (org-called-interactively-p 'any) (org-reveal))
7750 (let ((itemp (and (not top-level) (org-in-item-p)))
7751 (may-split (org-get-alist-option org-M-RET-may-split-line 'headline))
7752 (respect-content (or org-insert-heading-respect-content
7753 (equal arg '(4))))
7754 (initial-content "")
7755 (adjust-empty-lines t))
7757 (cond
7759 ((or (= (buffer-size) 0)
7760 (and (not (save-excursion
7761 (and (ignore-errors (org-back-to-heading invisible-ok))
7762 (org-at-heading-p))))
7763 (or arg (not itemp))))
7764 ;; At beginning of buffer or so high up that only a heading
7765 ;; makes sense.
7766 (cond ((and (bolp) (not respect-content)) (insert "* "))
7767 ((not respect-content)
7768 (unless may-split (end-of-line))
7769 (insert "\n* "))
7770 ((re-search-forward org-outline-regexp-bol nil t)
7771 (beginning-of-line)
7772 (insert "* \n")
7773 (backward-char))
7774 (t (goto-char (point-max))
7775 (insert "\n* ")))
7776 (run-hooks 'org-insert-heading-hook))
7778 ((and itemp (not (member arg '((4) (16)))) (org-insert-item)))
7781 ;; Maybe move at the end of the subtree
7782 (when (equal arg '(16))
7783 (org-up-heading-safe)
7784 (org-end-of-subtree t))
7785 ;; Insert a heading
7786 (save-restriction
7787 (widen)
7788 (let* ((level nil)
7789 (on-heading (org-at-heading-p))
7790 (empty-line-p (if on-heading
7791 (org-previous-line-empty-p)
7792 ;; We will decide later
7793 nil))
7794 ;; Get a level string to fall back on.
7795 (fix-level
7796 (if (org-before-first-heading-p) "*"
7797 (save-excursion
7798 (org-back-to-heading t)
7799 (if (org-previous-line-empty-p) (setq empty-line-p t))
7800 (looking-at org-outline-regexp)
7801 (make-string (1- (length (match-string 0))) ?*))))
7802 (stars
7803 (save-excursion
7804 (condition-case nil
7805 (if top-level "* "
7806 (org-back-to-heading invisible-ok)
7807 (when (and (not on-heading)
7808 (featurep 'org-inlinetask)
7809 (integerp org-inlinetask-min-level)
7810 (>= (length (match-string 0))
7811 org-inlinetask-min-level))
7812 ;; Find a heading level before the inline
7813 ;; task.
7814 (while (and (setq level (org-up-heading-safe))
7815 (>= level org-inlinetask-min-level)))
7816 (if (org-at-heading-p)
7817 (org-back-to-heading invisible-ok)
7818 (error "This should not happen")))
7819 (unless (and (save-excursion
7820 (save-match-data
7821 (org-backward-heading-same-level
7822 1 invisible-ok))
7823 (= (point) (match-beginning 0)))
7824 (not (org-previous-line-empty-p t)))
7825 (setq empty-line-p (or empty-line-p
7826 (org-previous-line-empty-p))))
7827 (match-string 0))
7828 (error (or fix-level "* ")))))
7829 (blank-a (cdr (assq 'heading org-blank-before-new-entry)))
7830 (blank (if (eq blank-a 'auto) empty-line-p blank-a))
7831 pos hide-previous previous-pos)
7833 ;; If we insert after content, move there and clean up
7834 ;; whitespace.
7835 (when (and respect-content
7836 (not (org-looking-at-p org-outline-regexp-bol)))
7837 (if (not (org-before-first-heading-p))
7838 (org-end-of-subtree nil t)
7839 (re-search-forward org-outline-regexp-bol)
7840 (beginning-of-line 0))
7841 (skip-chars-backward " \r\t\n")
7842 (and (not (looking-back "^\\*+"))
7843 (looking-at "[ \t]+") (replace-match ""))
7844 (unless (eobp) (forward-char 1))
7845 (when (looking-at "^\\*")
7846 (unless (bobp) (backward-char 1))
7847 (insert "\n")))
7849 ;; If we are splitting, grab the text that should be moved
7850 ;; to the new headline.
7851 (when may-split
7852 (if (org-on-heading-p)
7853 ;; This is a heading: split intelligently (keeping
7854 ;; tags).
7855 (let ((pos (point)))
7856 (beginning-of-line)
7857 (unless (looking-at org-complex-heading-regexp)
7858 (error "This should not happen"))
7859 (when (and (match-beginning 4)
7860 (> pos (match-beginning 4))
7861 (< pos (match-end 4)))
7862 (setq initial-content (buffer-substring pos (match-end 4)))
7863 (goto-char pos)
7864 (delete-region (point) (match-end 4))
7865 (if (looking-at "[ \t]*$")
7866 (replace-match "")
7867 (insert (make-string (length initial-content) ?\s)))
7868 (setq initial-content (org-trim initial-content)))
7869 (goto-char pos))
7870 ;; A normal line.
7871 (setq initial-content
7872 (org-trim
7873 (delete-and-extract-region (point) (line-end-position))))))
7875 ;; If we are at the beginning of the line, insert before it.
7876 ;; Otherwise, after it.
7877 (cond
7878 ((and (bolp) (looking-at "[ \t]*$")))
7879 ((bolp) (open-line 1))
7880 (t (end-of-line)
7881 (insert "\n")))
7883 ;; Insert the new heading
7884 (insert stars)
7885 (just-one-space)
7886 (insert initial-content)
7887 (when (and adjust-empty-lines
7888 (not (and blank (org-previous-line-empty-p))))
7889 (org-N-empty-lines-before-current (if blank 1 0)))
7890 (run-hooks 'org-insert-heading-hook)))))))
7892 (defun org-N-empty-lines-before-current (N)
7893 "Make the number of empty lines before current exactly N.
7894 So this will delete or add empty lines."
7895 (save-excursion
7896 (beginning-of-line)
7897 (let ((p (point)))
7898 (skip-chars-backward " \r\t\n")
7899 (unless (bolp) (forward-line))
7900 (delete-region (point) p))
7901 (when (> N 0) (insert (make-string N ?\n)))))
7903 (defun org-get-heading (&optional no-tags no-todo)
7904 "Return the heading of the current entry, without the stars.
7905 When NO-TAGS is non-nil, don't include tags.
7906 When NO-TODO is non-nil, don't include TODO keywords."
7907 (save-excursion
7908 (org-back-to-heading t)
7909 (cond
7910 ((and no-tags no-todo)
7911 (looking-at org-complex-heading-regexp)
7912 (match-string 4))
7913 (no-tags
7914 (looking-at (concat org-outline-regexp
7915 "\\(.*?\\)"
7916 "\\(?:[ \t]+:[[:alnum:]:_@#%]+:\\)?[ \t]*$"))
7917 (match-string 1))
7918 (no-todo
7919 (looking-at org-todo-line-regexp)
7920 (match-string 3))
7921 (t (looking-at org-heading-regexp)
7922 (match-string 2)))))
7924 (defvar orgstruct-mode) ; defined below
7926 (defun org-heading-components ()
7927 "Return the components of the current heading.
7928 This is a list with the following elements:
7929 - the level as an integer
7930 - the reduced level, different if `org-odd-levels-only' is set.
7931 - the TODO keyword, or nil
7932 - the priority character, like ?A, or nil if no priority is given
7933 - the headline text itself, or the tags string if no headline text
7934 - the tags string, or nil."
7935 (save-excursion
7936 (org-back-to-heading t)
7937 (if (let (case-fold-search)
7938 (looking-at
7939 (if orgstruct-mode
7940 org-heading-regexp
7941 org-complex-heading-regexp)))
7942 (if orgstruct-mode
7943 (list (length (match-string 1))
7944 (org-reduced-level (length (match-string 1)))
7947 (match-string 2)
7948 nil)
7949 (list (length (match-string 1))
7950 (org-reduced-level (length (match-string 1)))
7951 (org-match-string-no-properties 2)
7952 (and (match-end 3) (aref (match-string 3) 2))
7953 (org-match-string-no-properties 4)
7954 (org-match-string-no-properties 5))))))
7956 (defun org-get-entry ()
7957 "Get the entry text, after heading, entire subtree."
7958 (save-excursion
7959 (org-back-to-heading t)
7960 (buffer-substring (point-at-bol 2) (org-end-of-subtree t))))
7962 (defun org-insert-heading-after-current ()
7963 "Insert a new heading with same level as current, after current subtree."
7964 (interactive)
7965 (org-back-to-heading)
7966 (org-insert-heading)
7967 (org-move-subtree-down)
7968 (end-of-line 1))
7970 (defun org-insert-heading-respect-content (&optional invisible-ok)
7971 "Insert heading with `org-insert-heading-respect-content' set to t."
7972 (interactive)
7973 (org-insert-heading '(4) invisible-ok))
7975 (defun org-insert-todo-heading-respect-content (&optional force-state)
7976 "Insert TODO heading with `org-insert-heading-respect-content' set to t."
7977 (interactive)
7978 (org-insert-todo-heading force-state '(4)))
7980 (defun org-insert-todo-heading (arg &optional force-heading)
7981 "Insert a new heading with the same level and TODO state as current heading.
7982 If the heading has no TODO state, or if the state is DONE, use the first
7983 state (TODO by default). Also with one prefix arg, force first state. With
7984 two prefix args, force inserting at the end of the parent subtree."
7985 (interactive "P")
7986 (when (or force-heading (not (org-insert-item 'checkbox)))
7987 (org-insert-heading (or (and (equal arg '(16)) '(16))
7988 force-heading))
7989 (save-excursion
7990 (org-back-to-heading)
7991 (outline-previous-heading)
7992 (looking-at org-todo-line-regexp))
7993 (let*
7994 ((new-mark-x
7995 (if (or (equal arg '(4))
7996 (not (match-beginning 2))
7997 (member (match-string 2) org-done-keywords))
7998 (car org-todo-keywords-1)
7999 (match-string 2)))
8000 (new-mark
8002 (run-hook-with-args-until-success
8003 'org-todo-get-default-hook new-mark-x nil)
8004 new-mark-x)))
8005 (beginning-of-line 1)
8006 (and (looking-at org-outline-regexp) (goto-char (match-end 0))
8007 (if org-treat-insert-todo-heading-as-state-change
8008 (org-todo new-mark)
8009 (insert new-mark " "))))
8010 (when org-provide-todo-statistics
8011 (org-update-parent-todo-statistics))))
8013 (defun org-insert-subheading (arg)
8014 "Insert a new subheading and demote it.
8015 Works for outline headings and for plain lists alike."
8016 (interactive "P")
8017 (org-insert-heading arg)
8018 (cond
8019 ((org-at-heading-p) (org-do-demote))
8020 ((org-at-item-p) (org-indent-item))))
8022 (defun org-insert-todo-subheading (arg)
8023 "Insert a new subheading with TODO keyword or checkbox and demote it.
8024 Works for outline headings and for plain lists alike."
8025 (interactive "P")
8026 (org-insert-todo-heading arg)
8027 (cond
8028 ((org-at-heading-p) (org-do-demote))
8029 ((org-at-item-p) (org-indent-item))))
8031 ;;; Promotion and Demotion
8033 (defvar org-after-demote-entry-hook nil
8034 "Hook run after an entry has been demoted.
8035 The cursor will be at the beginning of the entry.
8036 When a subtree is being demoted, the hook will be called for each node.")
8038 (defvar org-after-promote-entry-hook nil
8039 "Hook run after an entry has been promoted.
8040 The cursor will be at the beginning of the entry.
8041 When a subtree is being promoted, the hook will be called for each node.")
8043 (defun org-promote-subtree ()
8044 "Promote the entire subtree.
8045 See also `org-promote'."
8046 (interactive)
8047 (save-excursion
8048 (org-with-limited-levels (org-map-tree 'org-promote)))
8049 (org-fix-position-after-promote))
8051 (defun org-demote-subtree ()
8052 "Demote the entire subtree. See `org-demote'.
8053 See also `org-promote'."
8054 (interactive)
8055 (save-excursion
8056 (org-with-limited-levels (org-map-tree 'org-demote)))
8057 (org-fix-position-after-promote))
8060 (defun org-do-promote ()
8061 "Promote the current heading higher up the tree.
8062 If the region is active in `transient-mark-mode', promote all headings
8063 in the region."
8064 (interactive)
8065 (save-excursion
8066 (if (org-region-active-p)
8067 (org-map-region 'org-promote (region-beginning) (region-end))
8068 (org-promote)))
8069 (org-fix-position-after-promote))
8071 (defun org-do-demote ()
8072 "Demote the current heading lower down the tree.
8073 If the region is active in `transient-mark-mode', demote all headings
8074 in the region."
8075 (interactive)
8076 (save-excursion
8077 (if (org-region-active-p)
8078 (org-map-region 'org-demote (region-beginning) (region-end))
8079 (org-demote)))
8080 (org-fix-position-after-promote))
8082 (defun org-fix-position-after-promote ()
8083 "Make sure that after pro/demotion cursor position is right."
8084 (let ((pos (point)))
8085 (when (save-excursion
8086 (beginning-of-line 1)
8087 (looking-at org-todo-line-regexp)
8088 (or (equal pos (match-end 1)) (equal pos (match-end 2))))
8089 (cond ((eobp) (insert " "))
8090 ((eolp) (insert " "))
8091 ((equal (char-after) ?\ ) (forward-char 1))))))
8093 (defun org-current-level ()
8094 "Return the level of the current entry, or nil if before the first headline.
8095 The level is the number of stars at the beginning of the
8096 headline. Use `org-reduced-level' to remove the effect of
8097 `org-odd-levels'. Unlike to `org-outline-level', this function
8098 ignores inlinetasks."
8099 (let ((level (org-with-limited-levels (org-outline-level))))
8100 (and (> level 0) level)))
8102 (defun org-get-previous-line-level ()
8103 "Return the outline depth of the last headline before the current line.
8104 Returns 0 for the first headline in the buffer, and nil if before the
8105 first headline."
8106 (and (org-current-level)
8107 (or (and (/= (line-beginning-position) (point-min))
8108 (save-excursion (beginning-of-line 0) (org-current-level)))
8109 0)))
8111 (defun org-reduced-level (l)
8112 "Compute the effective level of a heading.
8113 This takes into account the setting of `org-odd-levels-only'."
8114 (cond
8115 ((zerop l) 0)
8116 (org-odd-levels-only (1+ (floor (/ l 2))))
8117 (t l)))
8119 (defun org-level-increment ()
8120 "Return the number of stars that will be added or removed at a
8121 time to headlines when structure editing, based on the value of
8122 `org-odd-levels-only'."
8123 (if org-odd-levels-only 2 1))
8125 (defun org-get-valid-level (level &optional change)
8126 "Rectify a level change under the influence of `org-odd-levels-only'
8127 LEVEL is a current level, CHANGE is by how much the level should be
8128 modified. Even if CHANGE is nil, LEVEL may be returned modified because
8129 even level numbers will become the next higher odd number."
8130 (if org-odd-levels-only
8131 (cond ((or (not change) (= 0 change)) (1+ (* 2 (/ level 2))))
8132 ((> change 0) (1+ (* 2 (/ (+ level (* 2 change)) 2))))
8133 ((< change 0) (max 1 (1+ (* 2 (/ (+ level (* 2 change)) 2))))))
8134 (max 1 (+ level (or change 0)))))
8136 (if (boundp 'define-obsolete-function-alias)
8137 (if (or (featurep 'xemacs) (< emacs-major-version 23))
8138 (define-obsolete-function-alias 'org-get-legal-level
8139 'org-get-valid-level)
8140 (define-obsolete-function-alias 'org-get-legal-level
8141 'org-get-valid-level "23.1")))
8143 (defun org-promote ()
8144 "Promote the current heading higher up the tree."
8145 (org-with-wide-buffer
8146 (org-back-to-heading t)
8147 (let* ((after-change-functions (remq 'flyspell-after-change-function
8148 after-change-functions))
8149 (level (save-match-data (funcall outline-level)))
8150 (up-head (concat (make-string (org-get-valid-level level -1) ?*) " "))
8151 (diff (abs (- level (length up-head) -1))))
8152 (cond
8153 ((and (= level 1) org-allow-promoting-top-level-subtree)
8154 (replace-match "# " nil t))
8155 ((= level 1)
8156 (user-error "Cannot promote to level 0. UNDO to recover if necessary"))
8157 (t (replace-match up-head nil t)))
8158 (unless (= level 1)
8159 (when org-auto-align-tags (org-set-tags nil 'ignore-column))
8160 (when org-adapt-indentation (org-fixup-indentation (- diff))))
8161 (run-hooks 'org-after-promote-entry-hook))))
8163 (defun org-demote ()
8164 "Demote the current heading lower down the tree."
8165 (org-with-wide-buffer
8166 (org-back-to-heading t)
8167 (let* ((after-change-functions (remq 'flyspell-after-change-function
8168 after-change-functions))
8169 (level (save-match-data (funcall outline-level)))
8170 (down-head (concat (make-string (org-get-valid-level level 1) ?*) " "))
8171 (diff (abs (- level (length down-head) -1))))
8172 (replace-match down-head nil t)
8173 (when org-auto-align-tags (org-set-tags nil 'ignore-column))
8174 (when org-adapt-indentation (org-fixup-indentation diff))
8175 (run-hooks 'org-after-demote-entry-hook))))
8177 (defun org-cycle-level ()
8178 "Cycle the level of an empty headline through possible states.
8179 This goes first to child, then to parent, level, then up the hierarchy.
8180 After top level, it switches back to sibling level."
8181 (interactive)
8182 (let ((org-adapt-indentation nil))
8183 (when (org-point-at-end-of-empty-headline)
8184 (setq this-command 'org-cycle-level) ; Only needed for caching
8185 (let ((cur-level (org-current-level))
8186 (prev-level (org-get-previous-line-level)))
8187 (cond
8188 ;; If first headline in file, promote to top-level.
8189 ((= prev-level 0)
8190 (loop repeat (/ (- cur-level 1) (org-level-increment))
8191 do (org-do-promote)))
8192 ;; If same level as prev, demote one.
8193 ((= prev-level cur-level)
8194 (org-do-demote))
8195 ;; If parent is top-level, promote to top level if not already.
8196 ((= prev-level 1)
8197 (loop repeat (/ (- cur-level 1) (org-level-increment))
8198 do (org-do-promote)))
8199 ;; If top-level, return to prev-level.
8200 ((= cur-level 1)
8201 (loop repeat (/ (- prev-level 1) (org-level-increment))
8202 do (org-do-demote)))
8203 ;; If less than prev-level, promote one.
8204 ((< cur-level prev-level)
8205 (org-do-promote))
8206 ;; If deeper than prev-level, promote until higher than
8207 ;; prev-level.
8208 ((> cur-level prev-level)
8209 (loop repeat (+ 1 (/ (- cur-level prev-level) (org-level-increment)))
8210 do (org-do-promote))))
8211 t))))
8213 (defun org-map-tree (fun)
8214 "Call FUN for every heading underneath the current one."
8215 (org-back-to-heading)
8216 (let ((level (funcall outline-level)))
8217 (save-excursion
8218 (funcall fun)
8219 (while (and (progn
8220 (outline-next-heading)
8221 (> (funcall outline-level) level))
8222 (not (eobp)))
8223 (funcall fun)))))
8225 (defun org-map-region (fun beg end)
8226 "Call FUN for every heading between BEG and END."
8227 (let ((org-ignore-region t))
8228 (save-excursion
8229 (setq end (copy-marker end))
8230 (goto-char beg)
8231 (if (and (re-search-forward org-outline-regexp-bol nil t)
8232 (< (point) end))
8233 (funcall fun))
8234 (while (and (progn
8235 (outline-next-heading)
8236 (< (point) end))
8237 (not (eobp)))
8238 (funcall fun)))))
8240 (defun org-fixup-indentation (diff)
8241 "Change the indentation in the current entry by DIFF.
8243 DIFF is an integer. Indentation is done according to the
8244 following rules:
8246 - Planning information and property drawers are always indented
8247 according to the new level of the headline;
8249 - Footnote definitions and their contents are ignored;
8251 - Inlinetasks' boundaries are not shifted;
8253 - Empty lines are ignored;
8255 - Other lines' indentation are shifted by DIFF columns, unless
8256 it would introduce a structural change in the document, in
8257 which case no shifting is done at all.
8259 Assume point is at a heading or an inlinetask beginning."
8260 (org-with-wide-buffer
8261 (narrow-to-region (line-beginning-position)
8262 (save-excursion
8263 (if (org-with-limited-levels (org-at-heading-p))
8264 (org-with-limited-levels (outline-next-heading))
8265 (org-inlinetask-goto-end))
8266 (point)))
8267 (forward-line)
8268 ;; Indent properly planning info and property drawer.
8269 (when (org-looking-at-p org-planning-line-re)
8270 (org-indent-line)
8271 (forward-line))
8272 (when (looking-at org-property-drawer-re)
8273 (goto-char (match-end 0))
8274 (forward-line)
8275 (save-excursion (org-indent-region (match-beginning 0) (match-end 0))))
8276 (catch 'no-shift
8277 (when (zerop diff) (throw 'no-shift nil))
8278 ;; If DIFF is negative, first check if a shift is possible at all
8279 ;; (e.g., it doesn't break structure). This can only happen if
8280 ;; some contents are not properly indented.
8281 (let ((case-fold-search t))
8282 (when (< diff 0)
8283 (let ((diff (- diff))
8284 (forbidden-re (concat org-outline-regexp
8285 "\\|"
8286 (substring org-footnote-definition-re 1))))
8287 (save-excursion
8288 (while (not (eobp))
8289 (cond
8290 ((org-looking-at-p "[ \t]*$") (forward-line))
8291 ((and (org-looking-at-p org-footnote-definition-re)
8292 (let ((e (org-element-at-point)))
8293 (and (eq (org-element-type e) 'footnote-definition)
8294 (goto-char (org-element-property :end e))))))
8295 ((org-looking-at-p org-outline-regexp) (forward-line))
8296 ;; Give up if shifting would move before column 0 or
8297 ;; if it would introduce a headline or a footnote
8298 ;; definition.
8300 (skip-chars-forward " \t")
8301 (let ((ind (current-column)))
8302 (when (or (< ind diff)
8303 (and (= ind diff) (org-looking-at-p forbidden-re)))
8304 (throw 'no-shift nil)))
8305 ;; Ignore contents of example blocks and source
8306 ;; blocks if their indentation is meant to be
8307 ;; preserved. Jump to block's closing line.
8308 (beginning-of-line)
8309 (or (and (org-looking-at-p "[ \t]*#\\+BEGIN_\\(EXAMPLE\\|SRC\\)")
8310 (let ((e (org-element-at-point)))
8311 (and (memq (org-element-type e)
8312 '(example-block src-block))
8313 (or org-src-preserve-indentation
8314 (org-element-property :preserve-indent e))
8315 (goto-char (org-element-property :end e))
8316 (progn (skip-chars-backward " \r\t\n")
8317 (beginning-of-line)
8318 t))))
8319 (forward-line))))))))
8320 ;; Shift lines but footnote definitions, inlinetasks boundaries
8321 ;; by DIFF. Also skip contents of source or example blocks
8322 ;; when indentation is meant to be preserved.
8323 (while (not (eobp))
8324 (cond
8325 ((and (org-looking-at-p org-footnote-definition-re)
8326 (let ((e (org-element-at-point)))
8327 (and (eq (org-element-type e) 'footnote-definition)
8328 (goto-char (org-element-property :end e))))))
8329 ((org-looking-at-p org-outline-regexp) (forward-line))
8330 ((org-looking-at-p "[ \t]*$") (forward-line))
8332 (org-indent-line-to (+ (org-get-indentation) diff))
8333 (beginning-of-line)
8334 (or (and (org-looking-at-p "[ \t]*#\\+BEGIN_\\(EXAMPLE\\|SRC\\)")
8335 (let ((e (org-element-at-point)))
8336 (and (memq (org-element-type e)
8337 '(example-block src-block))
8338 (or org-src-preserve-indentation
8339 (org-element-property :preserve-indent e))
8340 (goto-char (org-element-property :end e))
8341 (progn (skip-chars-backward " \r\t\n")
8342 (beginning-of-line)
8343 t))))
8344 (forward-line)))))))))
8346 (defun org-convert-to-odd-levels ()
8347 "Convert an org-mode file with all levels allowed to one with odd levels.
8348 This will leave level 1 alone, convert level 2 to level 3, level 3 to
8349 level 5 etc."
8350 (interactive)
8351 (when (yes-or-no-p "Are you sure you want to globally change levels to odd? ")
8352 (let ((outline-level 'org-outline-level)
8353 (org-odd-levels-only nil) n)
8354 (save-excursion
8355 (goto-char (point-min))
8356 (while (re-search-forward "^\\*\\*+ " nil t)
8357 (setq n (- (length (match-string 0)) 2))
8358 (while (>= (setq n (1- n)) 0)
8359 (org-demote))
8360 (end-of-line 1))))))
8362 (defun org-convert-to-oddeven-levels ()
8363 "Convert an org-mode file with only odd levels to one with odd/even levels.
8364 This promotes level 3 to level 2, level 5 to level 3 etc. If the
8365 file contains a section with an even level, conversion would
8366 destroy the structure of the file. An error is signaled in this
8367 case."
8368 (interactive)
8369 (goto-char (point-min))
8370 ;; First check if there are no even levels
8371 (when (re-search-forward "^\\(\\*\\*\\)+ " nil t)
8372 (org-show-context t)
8373 (error "Not all levels are odd in this file. Conversion not possible"))
8374 (when (yes-or-no-p "Are you sure you want to globally change levels to odd-even? ")
8375 (let ((outline-regexp org-outline-regexp)
8376 (outline-level 'org-outline-level)
8377 (org-odd-levels-only nil) n)
8378 (save-excursion
8379 (goto-char (point-min))
8380 (while (re-search-forward "^\\*\\*+ " nil t)
8381 (setq n (/ (1- (length (match-string 0))) 2))
8382 (while (>= (setq n (1- n)) 0)
8383 (org-promote))
8384 (end-of-line 1))))))
8386 (defun org-tr-level (n)
8387 "Make N odd if required."
8388 (if org-odd-levels-only (1+ (/ n 2)) n))
8390 ;;; Vertical tree motion, cutting and pasting of subtrees
8392 (defun org-move-subtree-up (&optional arg)
8393 "Move the current subtree up past ARG headlines of the same level."
8394 (interactive "p")
8395 (org-move-subtree-down (- (prefix-numeric-value arg))))
8397 (defun org-move-subtree-down (&optional arg)
8398 "Move the current subtree down past ARG headlines of the same level."
8399 (interactive "p")
8400 (setq arg (prefix-numeric-value arg))
8401 (let ((movfunc (if (> arg 0) 'org-get-next-sibling
8402 'org-get-last-sibling))
8403 (ins-point (make-marker))
8404 (cnt (abs arg))
8405 (col (current-column))
8406 beg beg0 end txt folded ne-beg ne-end ne-ins ins-end)
8407 ;; Select the tree
8408 (org-back-to-heading)
8409 (setq beg0 (point))
8410 (save-excursion
8411 (setq ne-beg (org-back-over-empty-lines))
8412 (setq beg (point)))
8413 (save-match-data
8414 (save-excursion (outline-end-of-heading)
8415 (setq folded (outline-invisible-p)))
8416 (progn (org-end-of-subtree nil t)
8417 (unless (eobp) (backward-char))))
8418 (outline-next-heading)
8419 (setq ne-end (org-back-over-empty-lines))
8420 (setq end (point))
8421 (goto-char beg0)
8422 (when (and (> arg 0) (org-first-sibling-p) (< ne-end ne-beg))
8423 ;; include less whitespace
8424 (save-excursion
8425 (goto-char beg)
8426 (forward-line (- ne-beg ne-end))
8427 (setq beg (point))))
8428 ;; Find insertion point, with error handling
8429 (while (> cnt 0)
8430 (or (and (funcall movfunc) (looking-at org-outline-regexp))
8431 (progn (goto-char beg0)
8432 (user-error "Cannot move past superior level or buffer limit")))
8433 (setq cnt (1- cnt)))
8434 (if (> arg 0)
8435 ;; Moving forward - still need to move over subtree
8436 (progn (org-end-of-subtree t t)
8437 (save-excursion
8438 (org-back-over-empty-lines)
8439 (or (bolp) (newline)))))
8440 (setq ne-ins (org-back-over-empty-lines))
8441 (move-marker ins-point (point))
8442 (setq txt (buffer-substring beg end))
8443 (org-save-markers-in-region beg end)
8444 (delete-region beg end)
8445 (org-remove-empty-overlays-at beg)
8446 (or (= beg (point-min)) (outline-flag-region (1- beg) beg nil))
8447 (or (bobp) (outline-flag-region (1- (point)) (point) nil))
8448 (and (not (bolp)) (looking-at "\n") (forward-char 1))
8449 (let ((bbb (point)))
8450 (insert-before-markers txt)
8451 (org-reinstall-markers-in-region bbb)
8452 (move-marker ins-point bbb))
8453 (or (bolp) (insert "\n"))
8454 (setq ins-end (point))
8455 (goto-char ins-point)
8456 (org-skip-whitespace)
8457 (when (and (< arg 0)
8458 (org-first-sibling-p)
8459 (> ne-ins ne-beg))
8460 ;; Move whitespace back to beginning
8461 (save-excursion
8462 (goto-char ins-end)
8463 (let ((kill-whole-line t))
8464 (kill-line (- ne-ins ne-beg)) (point)))
8465 (insert (make-string (- ne-ins ne-beg) ?\n)))
8466 (move-marker ins-point nil)
8467 (if folded
8468 (hide-subtree)
8469 (org-show-entry)
8470 (show-children)
8471 (org-cycle-hide-drawers 'children))
8472 (org-clean-visibility-after-subtree-move)
8473 ;; move back to the initial column we were at
8474 (move-to-column col)))
8476 (defvar org-subtree-clip ""
8477 "Clipboard for cut and paste of subtrees.
8478 This is actually only a copy of the kill, because we use the normal kill
8479 ring. We need it to check if the kill was created by `org-copy-subtree'.")
8481 (defvar org-subtree-clip-folded nil
8482 "Was the last copied subtree folded?
8483 This is used to fold the tree back after pasting.")
8485 (defun org-cut-subtree (&optional n)
8486 "Cut the current subtree into the clipboard.
8487 With prefix arg N, cut this many sequential subtrees.
8488 This is a short-hand for marking the subtree and then cutting it."
8489 (interactive "p")
8490 (org-copy-subtree n 'cut))
8492 (defun org-copy-subtree (&optional n cut force-store-markers nosubtrees)
8493 "Copy the current subtree it in the clipboard.
8494 With prefix arg N, copy this many sequential subtrees.
8495 This is a short-hand for marking the subtree and then copying it.
8496 If CUT is non-nil, actually cut the subtree.
8497 If FORCE-STORE-MARKERS is non-nil, store the relative locations
8498 of some markers in the region, even if CUT is non-nil. This is
8499 useful if the caller implements cut-and-paste as copy-then-paste-then-cut."
8500 (interactive "p")
8501 (let (beg end folded (beg0 (point)))
8502 (if (org-called-interactively-p 'any)
8503 (org-back-to-heading nil) ; take what looks like a subtree
8504 (org-back-to-heading t)) ; take what is really there
8505 (setq beg (point))
8506 (skip-chars-forward " \t\r\n")
8507 (save-match-data
8508 (if nosubtrees
8509 (outline-next-heading)
8510 (save-excursion (outline-end-of-heading)
8511 (setq folded (outline-invisible-p)))
8512 (ignore-errors (org-forward-heading-same-level (1- n) t))
8513 (org-end-of-subtree t t)))
8514 (setq end (point))
8515 (goto-char beg0)
8516 (when (> end beg)
8517 (setq org-subtree-clip-folded folded)
8518 (when (or cut force-store-markers)
8519 (org-save-markers-in-region beg end))
8520 (if cut (kill-region beg end) (copy-region-as-kill beg end))
8521 (setq org-subtree-clip (current-kill 0))
8522 (message "%s: Subtree(s) with %d characters"
8523 (if cut "Cut" "Copied")
8524 (length org-subtree-clip)))))
8526 (defun org-paste-subtree (&optional level tree for-yank remove)
8527 "Paste the clipboard as a subtree, with modification of headline level.
8528 The entire subtree is promoted or demoted in order to match a new headline
8529 level.
8531 If the cursor is at the beginning of a headline, the same level as
8532 that headline is used to paste the tree.
8534 If not, the new level is derived from the *visible* headings
8535 before and after the insertion point, and taken to be the inferior headline
8536 level of the two. So if the previous visible heading is level 3 and the
8537 next is level 4 (or vice versa), level 4 will be used for insertion.
8538 This makes sure that the subtree remains an independent subtree and does
8539 not swallow low level entries.
8541 You can also force a different level, either by using a numeric prefix
8542 argument, or by inserting the heading marker by hand. For example, if the
8543 cursor is after \"*****\", then the tree will be shifted to level 5.
8545 If optional TREE is given, use this text instead of the kill ring.
8547 When FOR-YANK is set, this is called by `org-yank'. In this case, do not
8548 move back over whitespace before inserting, and move point to the end of
8549 the inserted text when done.
8551 When REMOVE is non-nil, remove the subtree from the clipboard."
8552 (interactive "P")
8553 (setq tree (or tree (and kill-ring (current-kill 0))))
8554 (unless (org-kill-is-subtree-p tree)
8555 (user-error "%s"
8556 (substitute-command-keys
8557 "The kill is not a (set of) tree(s) - please use \\[yank] to yank anyway")))
8558 (org-with-limited-levels
8559 (let* ((visp (not (outline-invisible-p)))
8560 (txt tree)
8561 (^re_ "\\(\\*+\\)[ \t]*")
8562 (old-level (if (string-match org-outline-regexp-bol txt)
8563 (- (match-end 0) (match-beginning 0) 1)
8564 -1))
8565 (force-level (cond (level (prefix-numeric-value level))
8566 ((and (looking-at "[ \t]*$")
8567 (string-match
8568 "^\\*+$" (buffer-substring
8569 (point-at-bol) (point))))
8570 (- (match-end 0) (match-beginning 0)))
8571 ((and (bolp)
8572 (looking-at org-outline-regexp))
8573 (- (match-end 0) (point) 1))))
8574 (previous-level (save-excursion
8575 (condition-case nil
8576 (progn
8577 (outline-previous-visible-heading 1)
8578 (if (looking-at ^re_)
8579 (- (match-end 0) (match-beginning 0) 1)
8581 (error 1))))
8582 (next-level (save-excursion
8583 (condition-case nil
8584 (progn
8585 (or (looking-at org-outline-regexp)
8586 (outline-next-visible-heading 1))
8587 (if (looking-at ^re_)
8588 (- (match-end 0) (match-beginning 0) 1)
8590 (error 1))))
8591 (new-level (or force-level (max previous-level next-level)))
8592 (shift (if (or (= old-level -1)
8593 (= new-level -1)
8594 (= old-level new-level))
8596 (- new-level old-level)))
8597 (delta (if (> shift 0) -1 1))
8598 (func (if (> shift 0) 'org-demote 'org-promote))
8599 (org-odd-levels-only nil)
8600 beg end newend)
8601 ;; Remove the forced level indicator
8602 (if force-level
8603 (delete-region (point-at-bol) (point)))
8604 ;; Paste
8605 (beginning-of-line (if (bolp) 1 2))
8606 (setq beg (point))
8607 (and (fboundp 'org-id-paste-tracker) (org-id-paste-tracker txt))
8608 (insert-before-markers txt)
8609 (unless (string-match "\n\\'" txt) (insert "\n"))
8610 (setq newend (point))
8611 (org-reinstall-markers-in-region beg)
8612 (setq end (point))
8613 (goto-char beg)
8614 (skip-chars-forward " \t\n\r")
8615 (setq beg (point))
8616 (if (and (outline-invisible-p) visp)
8617 (save-excursion (outline-show-heading)))
8618 ;; Shift if necessary
8619 (unless (= shift 0)
8620 (save-restriction
8621 (narrow-to-region beg end)
8622 (while (not (= shift 0))
8623 (org-map-region func (point-min) (point-max))
8624 (setq shift (+ delta shift)))
8625 (goto-char (point-min))
8626 (setq newend (point-max))))
8627 (when (or (org-called-interactively-p 'interactive) for-yank)
8628 (message "Clipboard pasted as level %d subtree" new-level))
8629 (if (and (not for-yank) ; in this case, org-yank will decide about folding
8630 kill-ring
8631 (eq org-subtree-clip (current-kill 0))
8632 org-subtree-clip-folded)
8633 ;; The tree was folded before it was killed/copied
8634 (hide-subtree))
8635 (and for-yank (goto-char newend))
8636 (and remove (setq kill-ring (cdr kill-ring))))))
8638 (defun org-kill-is-subtree-p (&optional txt)
8639 "Check if the current kill is an outline subtree, or a set of trees.
8640 Returns nil if kill does not start with a headline, or if the first
8641 headline level is not the largest headline level in the tree.
8642 So this will actually accept several entries of equal levels as well,
8643 which is OK for `org-paste-subtree'.
8644 If optional TXT is given, check this string instead of the current kill."
8645 (let* ((kill (or txt (and kill-ring (current-kill 0)) ""))
8646 (re (org-get-limited-outline-regexp))
8647 (^re (concat "^" re))
8648 (start-level (and kill
8649 (string-match
8650 (concat "\\`\\([ \t\n\r]*?\n\\)?\\(" re "\\)")
8651 kill)
8652 (- (match-end 2) (match-beginning 2) 1)))
8653 (start (1+ (or (match-beginning 2) -1))))
8654 (if (not start-level)
8655 (progn
8656 nil) ;; does not even start with a heading
8657 (catch 'exit
8658 (while (setq start (string-match ^re kill (1+ start)))
8659 (when (< (- (match-end 0) (match-beginning 0) 1) start-level)
8660 (throw 'exit nil)))
8661 t))))
8663 (defvar org-markers-to-move nil
8664 "Markers that should be moved with a cut-and-paste operation.
8665 Those markers are stored together with their positions relative to
8666 the start of the region.")
8668 (defun org-save-markers-in-region (beg end)
8669 "Check markers in region.
8670 If these markers are between BEG and END, record their position relative
8671 to BEG, so that after moving the block of text, we can put the markers back
8672 into place.
8673 This function gets called just before an entry or tree gets cut from the
8674 buffer. After re-insertion, `org-reinstall-markers-in-region' must be
8675 called immediately, to move the markers with the entries."
8676 (setq org-markers-to-move nil)
8677 (when (featurep 'org-clock)
8678 (org-clock-save-markers-for-cut-and-paste beg end))
8679 (when (featurep 'org-agenda)
8680 (org-agenda-save-markers-for-cut-and-paste beg end)))
8682 (defun org-check-and-save-marker (marker beg end)
8683 "Check if MARKER is between BEG and END.
8684 If yes, remember the marker and the distance to BEG."
8685 (when (and (marker-buffer marker)
8686 (equal (marker-buffer marker) (current-buffer)))
8687 (if (and (>= marker beg) (< marker end))
8688 (push (cons marker (- marker beg)) org-markers-to-move))))
8690 (defun org-reinstall-markers-in-region (beg)
8691 "Move all remembered markers to their position relative to BEG."
8692 (mapc (lambda (x)
8693 (move-marker (car x) (+ beg (cdr x))))
8694 org-markers-to-move)
8695 (setq org-markers-to-move nil))
8697 (defun org-narrow-to-subtree ()
8698 "Narrow buffer to the current subtree."
8699 (interactive)
8700 (save-excursion
8701 (save-match-data
8702 (org-with-limited-levels
8703 (narrow-to-region
8704 (progn (org-back-to-heading t) (point))
8705 (progn (org-end-of-subtree t t)
8706 (if (and (org-at-heading-p) (not (eobp))) (backward-char 1))
8707 (point)))))))
8709 (defun org-narrow-to-block ()
8710 "Narrow buffer to the current block."
8711 (interactive)
8712 (let* ((case-fold-search t)
8713 (blockp (org-between-regexps-p "^[ \t]*#\\+begin_.*"
8714 "^[ \t]*#\\+end_.*")))
8715 (if blockp
8716 (narrow-to-region (car blockp) (cdr blockp))
8717 (user-error "Not in a block"))))
8719 (defun org-clone-subtree-with-time-shift (n &optional shift)
8720 "Clone the task (subtree) at point N times.
8721 The clones will be inserted as siblings.
8723 In interactive use, the user will be prompted for the number of
8724 clones to be produced. If the entry has a timestamp, the user
8725 will also be prompted for a time shift, which may be a repeater
8726 as used in time stamps, for example `+3d'. To disable this,
8727 you can call the function with a universal prefix argument.
8729 When a valid repeater is given and the entry contains any time
8730 stamps, the clones will become a sequence in time, with time
8731 stamps in the subtree shifted for each clone produced. If SHIFT
8732 is nil or the empty string, time stamps will be left alone. The
8733 ID property of the original subtree is removed.
8735 If the original subtree did contain time stamps with a repeater,
8736 the following will happen:
8737 - the repeater will be removed in each clone
8738 - an additional clone will be produced, with the current, unshifted
8739 date(s) in the entry.
8740 - the original entry will be placed *after* all the clones, with
8741 repeater intact.
8742 - the start days in the repeater in the original entry will be shifted
8743 to past the last clone.
8744 In this way you can spell out a number of instances of a repeating task,
8745 and still retain the repeater to cover future instances of the task."
8746 (interactive "nNumber of clones to produce: ")
8747 (let ((shift
8748 (or shift
8749 (if (and (not (equal current-prefix-arg '(4)))
8750 (save-excursion
8751 (re-search-forward org-ts-regexp-both
8752 (save-excursion
8753 (org-end-of-subtree t)
8754 (point)) t)))
8755 (read-from-minibuffer
8756 "Date shift per clone (e.g. +1w, empty to copy unchanged): ")
8757 ""))) ;; No time shift
8758 (n-no-remove -1)
8759 (drawer-re org-drawer-regexp)
8760 (org-clock-re (format "^[ \t]*%s.*$" org-clock-string))
8761 beg end template task idprop
8762 shift-n shift-what doshift nmin nmax)
8763 (if (not (and (integerp n) (> n 0)))
8764 (user-error "Invalid number of replications %s" n))
8765 (if (and (setq doshift (and (stringp shift) (string-match "\\S-" shift)))
8766 (not (string-match "\\`[ \t]*\\+?\\([0-9]+\\)\\([hdwmy]\\)[ \t]*\\'"
8767 shift)))
8768 (user-error "Invalid shift specification %s" shift))
8769 (when doshift
8770 (setq shift-n (string-to-number (match-string 1 shift))
8771 shift-what (cdr (assoc (match-string 2 shift)
8772 '(("d" . day) ("w" . week)
8773 ("m" . month) ("y" . year))))))
8774 (if (eq shift-what 'week) (setq shift-n (* 7 shift-n) shift-what 'day))
8775 (setq nmin 1 nmax n)
8776 (org-back-to-heading t)
8777 (setq beg (point))
8778 (setq idprop (org-entry-get nil "ID"))
8779 (org-end-of-subtree t t)
8780 (or (bolp) (insert "\n"))
8781 (setq end (point))
8782 (setq template (buffer-substring beg end))
8783 (when (and doshift
8784 (string-match "<[^<>\n]+ [.+]?\\+[0-9]+[hdwmy][^<>\n]*>" template))
8785 (delete-region beg end)
8786 (setq end beg)
8787 (setq nmin 0 nmax (1+ nmax) n-no-remove nmax))
8788 (goto-char end)
8789 (loop for n from nmin to nmax do
8790 ;; prepare clone
8791 (with-temp-buffer
8792 (insert template)
8793 (org-mode)
8794 (goto-char (point-min))
8795 (org-show-subtree)
8796 (and idprop (if org-clone-delete-id
8797 (org-entry-delete nil "ID")
8798 (org-id-get-create t)))
8799 (unless (= n 0)
8800 (while (re-search-forward org-clock-re nil t)
8801 (kill-whole-line))
8802 (goto-char (point-min))
8803 (while (re-search-forward drawer-re nil t)
8804 (org-remove-empty-drawer-at (point))))
8805 (goto-char (point-min))
8806 (when doshift
8807 (while (re-search-forward org-ts-regexp-both nil t)
8808 (org-timestamp-change (* n shift-n) shift-what))
8809 (unless (= n n-no-remove)
8810 (goto-char (point-min))
8811 (while (re-search-forward org-ts-regexp nil t)
8812 (save-excursion
8813 (goto-char (match-beginning 0))
8814 (if (looking-at "<[^<>\n]+\\( +[.+]?\\+[0-9]+[hdwmy]\\)")
8815 (delete-region (match-beginning 1) (match-end 1)))))))
8816 (setq task (buffer-string)))
8817 (insert task))
8818 (goto-char beg)))
8820 ;;; Outline Sorting
8822 (defun org-sort (with-case)
8823 "Call `org-sort-entries', `org-table-sort-lines' or `org-sort-list'.
8824 Optional argument WITH-CASE means sort case-sensitively."
8825 (interactive "P")
8826 (cond
8827 ((org-at-table-p) (org-call-with-arg 'org-table-sort-lines with-case))
8828 ((org-at-item-p) (org-call-with-arg 'org-sort-list with-case))
8830 (org-call-with-arg 'org-sort-entries with-case))))
8832 (defun org-sort-remove-invisible (s)
8833 "Remove invisible links from string S."
8834 (remove-text-properties 0 (length s) org-rm-props s)
8835 (while (string-match org-bracket-link-regexp s)
8836 (setq s (replace-match (if (match-end 2)
8837 (match-string 3 s)
8838 (match-string 1 s)) t t s)))
8839 (let ((st (format " %s " s)))
8840 (while (string-match org-emph-re st)
8841 (setq st (replace-match (format " %s " (match-string 4 st)) t t st)))
8842 (setq s (substring st 1 -1)))
8845 (defvar org-priority-regexp) ; defined later in the file
8847 (defvar org-after-sorting-entries-or-items-hook nil
8848 "Hook that is run after a bunch of entries or items have been sorted.
8849 When children are sorted, the cursor is in the parent line when this
8850 hook gets called. When a region or a plain list is sorted, the cursor
8851 will be in the first entry of the sorted region/list.")
8853 (defun org-sort-entries
8854 (&optional with-case sorting-type getkey-func compare-func property)
8855 "Sort entries on a certain level of an outline tree.
8856 If there is an active region, the entries in the region are sorted.
8857 Else, if the cursor is before the first entry, sort the top-level items.
8858 Else, the children of the entry at point are sorted.
8860 Sorting can be alphabetically, numerically, by date/time as given by
8861 a time stamp, by a property, by priority order, or by a custom function.
8863 The command prompts for the sorting type unless it has been given to the
8864 function through the SORTING-TYPE argument, which needs to be a character,
8865 \(?n ?N ?a ?A ?t ?T ?s ?S ?d ?D ?p ?P ?o ?O ?r ?R ?f ?F ?k ?K). Here is
8866 the precise meaning of each character:
8868 a Alphabetically, ignoring the TODO keyword and the priority, if any.
8869 c By creation time, which is assumed to be the first inactive time stamp
8870 at the beginning of a line.
8871 d By deadline date/time.
8872 k By clocking time.
8873 n Numerically, by converting the beginning of the entry/item to a number.
8874 o By order of TODO keywords.
8875 p By priority according to the cookie.
8876 r By the value of a property.
8877 s By scheduled date/time.
8878 t By date/time, either the first active time stamp in the entry, or, if
8879 none exist, by the first inactive one.
8881 Capital letters will reverse the sort order.
8883 If the SORTING-TYPE is ?f or ?F, then GETKEY-FUNC specifies a function to be
8884 called with point at the beginning of the record. It must return either
8885 a string or a number that should serve as the sorting key for that record.
8887 Comparing entries ignores case by default. However, with an optional argument
8888 WITH-CASE, the sorting considers case as well.
8890 Sorting is done against the visible part of the headlines, it ignores hidden
8891 links.
8893 When sorting is done, call `org-after-sorting-entries-or-items-hook'."
8894 (interactive "P")
8895 (let ((case-func (if with-case 'identity 'downcase))
8896 (cmstr
8897 ;; The clock marker is lost when using `sort-subr', let's
8898 ;; store the clocking string.
8899 (when (equal (marker-buffer org-clock-marker) (current-buffer))
8900 (save-excursion
8901 (goto-char org-clock-marker)
8902 (looking-back "^.*") (match-string-no-properties 0))))
8903 start beg end stars re re2
8904 txt what tmp)
8905 ;; Find beginning and end of region to sort
8906 (cond
8907 ((org-region-active-p)
8908 ;; we will sort the region
8909 (setq end (region-end)
8910 what "region")
8911 (goto-char (region-beginning))
8912 (if (not (org-at-heading-p)) (outline-next-heading))
8913 (setq start (point)))
8914 ((or (org-at-heading-p)
8915 (ignore-errors (progn (org-back-to-heading) t)))
8916 ;; we will sort the children of the current headline
8917 (org-back-to-heading)
8918 (setq start (point)
8919 end (progn (org-end-of-subtree t t)
8920 (or (bolp) (insert "\n"))
8921 (when (>= (org-back-over-empty-lines) 1)
8922 (forward-line 1))
8923 (point))
8924 what "children")
8925 (goto-char start)
8926 (show-subtree)
8927 (outline-next-heading))
8929 ;; we will sort the top-level entries in this file
8930 (goto-char (point-min))
8931 (or (org-at-heading-p) (outline-next-heading))
8932 (setq start (point))
8933 (goto-char (point-max))
8934 (beginning-of-line 1)
8935 (when (looking-at ".*?\\S-")
8936 ;; File ends in a non-white line
8937 (end-of-line 1)
8938 (insert "\n"))
8939 (setq end (point-max))
8940 (setq what "top-level")
8941 (goto-char start)
8942 (show-all)))
8944 (setq beg (point))
8945 (when (>= beg end) (goto-char start) (user-error "Nothing to sort"))
8947 (looking-at "\\(\\*+\\)")
8948 (setq stars (match-string 1)
8949 re (concat "^" (regexp-quote stars) " +")
8950 re2 (concat "^" (regexp-quote (substring stars 0 -1)) "[ \t\n]")
8951 txt (buffer-substring beg end))
8952 (if (not (equal (substring txt -1) "\n")) (setq txt (concat txt "\n")))
8953 (if (and (not (equal stars "*")) (string-match re2 txt))
8954 (user-error "Region to sort contains a level above the first entry"))
8956 (unless sorting-type
8957 (message
8958 "Sort %s: [a]lpha [n]umeric [p]riority p[r]operty todo[o]rder [f]unc
8959 [t]ime [s]cheduled [d]eadline [c]reated cloc[k]ing
8960 A/N/P/R/O/F/T/S/D/C/K means reversed:"
8961 what)
8962 (setq sorting-type (read-char-exclusive))
8964 (unless getkey-func
8965 (and (= (downcase sorting-type) ?f)
8966 (setq getkey-func
8967 (org-icompleting-read "Sort using function: "
8968 obarray 'fboundp t nil nil))
8969 (setq getkey-func (intern getkey-func))))
8971 (and (= (downcase sorting-type) ?r)
8972 (not property)
8973 (setq property
8974 (org-icompleting-read "Property: "
8975 (mapcar 'list (org-buffer-property-keys t))
8976 nil t))))
8978 (when (member sorting-type '(?k ?K)) (org-clock-sum))
8979 (message "Sorting entries...")
8981 (save-restriction
8982 (narrow-to-region start end)
8983 (let ((dcst (downcase sorting-type))
8984 (case-fold-search nil)
8985 (now (current-time)))
8986 (sort-subr
8987 (/= dcst sorting-type)
8988 ;; This function moves to the beginning character of the "record" to
8989 ;; be sorted.
8990 (lambda nil
8991 (if (re-search-forward re nil t)
8992 (goto-char (match-beginning 0))
8993 (goto-char (point-max))))
8994 ;; This function moves to the last character of the "record" being
8995 ;; sorted.
8996 (lambda nil
8997 (save-match-data
8998 (condition-case nil
8999 (outline-forward-same-level 1)
9000 (error
9001 (goto-char (point-max))))))
9002 ;; This function returns the value that gets sorted against.
9003 (lambda nil
9004 (cond
9005 ((= dcst ?n)
9006 (if (looking-at org-complex-heading-regexp)
9007 (string-to-number (org-sort-remove-invisible (match-string 4)))
9008 nil))
9009 ((= dcst ?a)
9010 (if (looking-at org-complex-heading-regexp)
9011 (funcall case-func (org-sort-remove-invisible (match-string 4)))
9012 nil))
9013 ((= dcst ?k)
9014 (or (get-text-property (point) :org-clock-minutes) 0))
9015 ((= dcst ?t)
9016 (let ((end (save-excursion (outline-next-heading) (point))))
9017 (if (or (re-search-forward org-ts-regexp end t)
9018 (re-search-forward org-ts-regexp-both end t))
9019 (org-time-string-to-seconds (match-string 0))
9020 (org-float-time now))))
9021 ((= dcst ?c)
9022 (let ((end (save-excursion (outline-next-heading) (point))))
9023 (if (re-search-forward
9024 (concat "^[ \t]*\\[" org-ts-regexp1 "\\]")
9025 end t)
9026 (org-time-string-to-seconds (match-string 0))
9027 (org-float-time now))))
9028 ((= dcst ?s)
9029 (let ((end (save-excursion (outline-next-heading) (point))))
9030 (if (re-search-forward org-scheduled-time-regexp end t)
9031 (org-time-string-to-seconds (match-string 1))
9032 (org-float-time now))))
9033 ((= dcst ?d)
9034 (let ((end (save-excursion (outline-next-heading) (point))))
9035 (if (re-search-forward org-deadline-time-regexp end t)
9036 (org-time-string-to-seconds (match-string 1))
9037 (org-float-time now))))
9038 ((= dcst ?p)
9039 (if (re-search-forward org-priority-regexp (point-at-eol) t)
9040 (string-to-char (match-string 2))
9041 org-default-priority))
9042 ((= dcst ?r)
9043 (or (org-entry-get nil property) ""))
9044 ((= dcst ?o)
9045 (if (looking-at org-complex-heading-regexp)
9046 (let* ((m (match-string 2))
9047 (s (if (member m org-done-keywords) '- '+)))
9048 (- 99 (funcall s (length (member m org-todo-keywords-1)))))))
9049 ((= dcst ?f)
9050 (if getkey-func
9051 (progn
9052 (setq tmp (funcall getkey-func))
9053 (if (stringp tmp) (setq tmp (funcall case-func tmp)))
9054 tmp)
9055 (error "Invalid key function `%s'" getkey-func)))
9056 (t (error "Invalid sorting type `%c'" sorting-type))))
9058 (cond
9059 ((= dcst ?a) 'string<)
9060 ((= dcst ?f) compare-func)
9061 ((member dcst '(?p ?t ?s ?d ?c ?k)) '<)))))
9062 (run-hooks 'org-after-sorting-entries-or-items-hook)
9063 ;; Reset the clock marker if needed
9064 (when cmstr
9065 (save-excursion
9066 (goto-char start)
9067 (search-forward cmstr nil t)
9068 (move-marker org-clock-marker (point))))
9069 (message "Sorting entries...done")))
9071 ;;; The orgstruct minor mode
9073 ;; Define a minor mode which can be used in other modes in order to
9074 ;; integrate the org-mode structure editing commands.
9076 ;; This is really a hack, because the org-mode structure commands use
9077 ;; keys which normally belong to the major mode. Here is how it
9078 ;; works: The minor mode defines all the keys necessary to operate the
9079 ;; structure commands, but wraps the commands into a function which
9080 ;; tests if the cursor is currently at a headline or a plain list
9081 ;; item. If that is the case, the structure command is used,
9082 ;; temporarily setting many Org-mode variables like regular
9083 ;; expressions for filling etc. However, when any of those keys is
9084 ;; used at a different location, function uses `key-binding' to look
9085 ;; up if the key has an associated command in another currently active
9086 ;; keymap (minor modes, major mode, global), and executes that
9087 ;; command. There might be problems if any of the keys is otherwise
9088 ;; used as a prefix key.
9090 (defcustom orgstruct-heading-prefix-regexp ""
9091 "Regexp that matches the custom prefix of Org headlines in
9092 orgstruct(++)-mode."
9093 :group 'org
9094 :version "24.4"
9095 :package-version '(Org . "8.3")
9096 :type 'regexp)
9097 ;;;###autoload(put 'orgstruct-heading-prefix-regexp 'safe-local-variable 'stringp)
9099 (defcustom orgstruct-setup-hook nil
9100 "Hook run after orgstruct-mode-map is filled."
9101 :group 'org
9102 :version "24.4"
9103 :package-version '(Org . "8.0")
9104 :type 'hook)
9106 (defvar orgstruct-initialized nil)
9108 (defvar org-local-vars nil
9109 "List of local variables, for use by `orgstruct-mode'.")
9111 ;;;###autoload
9112 (define-minor-mode orgstruct-mode
9113 "Toggle the minor mode `orgstruct-mode'.
9114 This mode is for using Org-mode structure commands in other
9115 modes. The following keys behave as if Org-mode were active, if
9116 the cursor is on a headline, or on a plain list item (both as
9117 defined by Org-mode)."
9118 nil " OrgStruct" (make-sparse-keymap)
9119 (funcall (if orgstruct-mode
9120 'add-to-invisibility-spec
9121 'remove-from-invisibility-spec)
9122 '(outline . t))
9123 (when orgstruct-mode
9124 (org-load-modules-maybe)
9125 (unless orgstruct-initialized
9126 (orgstruct-setup)
9127 (setq orgstruct-initialized t))))
9129 ;;;###autoload
9130 (defun turn-on-orgstruct ()
9131 "Unconditionally turn on `orgstruct-mode'."
9132 (orgstruct-mode 1))
9134 (defvar org-fb-vars nil)
9135 (make-variable-buffer-local 'org-fb-vars)
9136 (defun orgstruct++-mode (&optional arg)
9137 "Toggle `orgstruct-mode', the enhanced version of it.
9138 In addition to setting orgstruct-mode, this also exports all
9139 indentation and autofilling variables from org-mode into the
9140 buffer. It will also recognize item context in multiline items."
9141 (interactive "P")
9142 (setq arg (prefix-numeric-value (or arg (if orgstruct-mode -1 1))))
9143 (if (< arg 1)
9144 (progn (orgstruct-mode -1)
9145 (mapc (lambda(v)
9146 (org-set-local (car v)
9147 (if (eq (car-safe (cadr v)) 'quote) (cadadr v) (cadr v))))
9148 org-fb-vars))
9149 (orgstruct-mode 1)
9150 (setq org-fb-vars nil)
9151 (unless org-local-vars
9152 (setq org-local-vars (org-get-local-variables)))
9153 (let (var val)
9154 (mapc
9155 (lambda (x)
9156 (when (string-match
9157 "^\\(paragraph-\\|auto-fill\\|normal-auto-fill\\|fill-paragraph\\|fill-prefix\\|indent-\\)"
9158 (symbol-name (car x)))
9159 (setq var (car x) val (nth 1 x))
9160 (push (list var `(quote ,(eval var))) org-fb-vars)
9161 (org-set-local var (if (eq (car-safe val) 'quote) (nth 1 val) val))))
9162 org-local-vars)
9163 (org-set-local 'orgstruct-is-++ t))))
9165 (defvar orgstruct-is-++ nil
9166 "Is `orgstruct-mode' in ++ version in the current-buffer?")
9167 (make-variable-buffer-local 'orgstruct-is-++)
9169 ;;;###autoload
9170 (defun turn-on-orgstruct++ ()
9171 "Unconditionally turn on `orgstruct++-mode'."
9172 (orgstruct++-mode 1))
9174 (defun orgstruct-error ()
9175 "Error when there is no default binding for a structure key."
9176 (interactive)
9177 (funcall (if (fboundp 'user-error)
9178 'user-error
9179 'error)
9180 "This key has no function outside structure elements"))
9182 (defun orgstruct-setup ()
9183 "Setup orgstruct keymap."
9184 (dolist (cell '((org-demote . t)
9185 (org-metaleft . t)
9186 (org-metaright . t)
9187 (org-promote . t)
9188 (org-shiftmetaleft . t)
9189 (org-shiftmetaright . t)
9190 org-backward-element
9191 org-backward-heading-same-level
9192 org-ctrl-c-ret
9193 org-ctrl-c-minus
9194 org-ctrl-c-star
9195 org-cycle
9196 org-forward-heading-same-level
9197 org-insert-heading
9198 org-insert-heading-respect-content
9199 org-kill-note-or-show-branches
9200 org-mark-subtree
9201 org-meta-return
9202 org-metadown
9203 org-metaup
9204 org-narrow-to-subtree
9205 org-promote-subtree
9206 org-reveal
9207 org-shiftdown
9208 org-shiftleft
9209 org-shiftmetadown
9210 org-shiftmetaup
9211 org-shiftright
9212 org-shifttab
9213 org-shifttab
9214 org-shiftup
9215 org-show-subtree
9216 org-sort
9217 org-up-element
9218 outline-demote
9219 outline-next-visible-heading
9220 outline-previous-visible-heading
9221 outline-promote
9222 outline-up-heading
9223 show-children))
9224 (let ((f (or (car-safe cell) cell))
9225 (disable-when-heading-prefix (cdr-safe cell)))
9226 (when (fboundp f)
9227 (let ((new-bindings))
9228 (dolist (binding (nconc (where-is-internal f org-mode-map)
9229 (where-is-internal f outline-mode-map)))
9230 (push binding new-bindings)
9231 ;; TODO use local-function-key-map
9232 (dolist (rep '(("<tab>" . "TAB")
9233 ("<return>" . "RET")
9234 ("<escape>" . "ESC")
9235 ("<delete>" . "DEL")))
9236 (setq binding (read-kbd-macro
9237 (let ((case-fold-search))
9238 (replace-regexp-in-string
9239 (regexp-quote (cdr rep))
9240 (car rep)
9241 (key-description binding)))))
9242 (pushnew binding new-bindings :test 'equal)))
9243 (dolist (binding new-bindings)
9244 (let ((key (lookup-key orgstruct-mode-map binding)))
9245 (when (or (not key) (numberp key))
9246 (ignore-errors
9247 (org-defkey orgstruct-mode-map
9248 binding
9249 (orgstruct-make-binding
9250 f binding disable-when-heading-prefix))))))))))
9251 (run-hooks 'orgstruct-setup-hook))
9253 (defun orgstruct-make-binding (fun key disable-when-heading-prefix)
9254 "Create a function for binding in the structure minor mode.
9255 FUN is the command to call inside a table. KEY is the key that
9256 should be checked in for a command to execute outside of tables.
9257 Non-nil `disable-when-heading-prefix' means to disable the command
9258 if `orgstruct-heading-prefix-regexp' is not empty."
9259 (let ((name (concat "orgstruct-hijacker-" (symbol-name fun))))
9260 (let ((nname name)
9261 (i 0))
9262 (while (fboundp (intern nname))
9263 (setq nname (format "%s-%d" name (setq i (1+ i)))))
9264 (setq name (intern nname)))
9265 (eval
9266 (let ((bindings '((org-heading-regexp
9267 (concat "^"
9268 orgstruct-heading-prefix-regexp
9269 "\\(\\*+\\)\\(?: +\\(.*?\\)\\)?[ ]*$"))
9270 (org-outline-regexp
9271 (concat orgstruct-heading-prefix-regexp "\\*+ "))
9272 (org-outline-regexp-bol
9273 (concat "^" org-outline-regexp))
9274 (outline-regexp org-outline-regexp)
9275 (outline-heading-end-regexp "\n")
9276 (outline-level 'org-outline-level)
9277 (outline-heading-alist))))
9278 `(defun ,name (arg)
9279 ,(concat "In Structure, run `" (symbol-name fun) "'.\n"
9280 "Outside of structure, run the binding of `"
9281 (key-description key) "'."
9282 (when disable-when-heading-prefix
9283 (concat
9284 "\nIf `orgstruct-heading-prefix-regexp' is not empty, this command will always fall\n"
9285 "back to the default binding due to limitations of Org's implementation of\n"
9286 "`" (symbol-name fun) "'.")))
9287 (interactive "p")
9288 (let* ((disable
9289 ,(and disable-when-heading-prefix
9290 '(not (string= orgstruct-heading-prefix-regexp ""))))
9291 (fallback
9292 (or disable
9293 (not
9294 (let* ,bindings
9295 (org-context-p 'headline 'item
9296 ,(when (memq fun
9297 '(org-insert-heading
9298 org-insert-heading-respect-content
9299 org-meta-return))
9300 '(when orgstruct-is-++
9301 'item-body))))))))
9302 (if fallback
9303 (let* ((orgstruct-mode)
9304 (binding
9305 (let ((key ,key))
9306 (catch 'exit
9307 (dolist
9308 (rep
9309 '(nil
9310 ("<\\([^>]*\\)tab>" . "\\1TAB")
9311 ("<\\([^>]*\\)return>" . "\\1RET")
9312 ("<\\([^>]*\\)escape>" . "\\1ESC")
9313 ("<\\([^>]*\\)delete>" . "\\1DEL"))
9314 nil)
9315 (when rep
9316 (setq key (read-kbd-macro
9317 (let ((case-fold-search))
9318 (replace-regexp-in-string
9319 (car rep)
9320 (cdr rep)
9321 (key-description key))))))
9322 (when (key-binding key)
9323 (throw 'exit (key-binding key))))))))
9324 (if (keymapp binding)
9325 (org-set-transient-map binding)
9326 (let ((func (or binding
9327 (unless disable
9328 'orgstruct-error))))
9329 (when func
9330 (call-interactively func)))))
9331 (org-run-like-in-org-mode
9332 (lambda ()
9333 (interactive)
9334 (let* ,bindings
9335 (call-interactively ',fun)))))))))
9336 name))
9338 (defun org-contextualize-keys (alist contexts)
9339 "Return valid elements in ALIST depending on CONTEXTS.
9341 `org-agenda-custom-commands' or `org-capture-templates' are the
9342 values used for ALIST, and `org-agenda-custom-commands-contexts'
9343 or `org-capture-templates-contexts' are the associated contexts
9344 definitions."
9345 (let ((contexts
9346 ;; normalize contexts
9347 (mapcar
9348 (lambda(c) (cond ((listp (cadr c))
9349 (list (car c) (car c) (cadr c)))
9350 ((string= "" (cadr c))
9351 (list (car c) (car c) (caddr c)))
9352 (t c))) contexts))
9353 (a alist) c r s)
9354 ;; loop over all commands or templates
9355 (while (setq c (pop a))
9356 (let (vrules repl)
9357 (cond
9358 ((not (assoc (car c) contexts))
9359 (push c r))
9360 ((and (assoc (car c) contexts)
9361 (setq vrules (org-contextualize-validate-key
9362 (car c) contexts)))
9363 (mapc (lambda (vr)
9364 (when (not (equal (car vr) (cadr vr)))
9365 (setq repl vr))) vrules)
9366 (if (not repl) (push c r)
9367 (push (cadr repl) s)
9368 (push
9369 (cons (car c)
9370 (cdr (or (assoc (cadr repl) alist)
9371 (error "Undefined key `%s' as contextual replacement for `%s'"
9372 (cadr repl) (car c)))))
9373 r))))))
9374 ;; Return limited ALIST, possibly with keys modified, and deduplicated
9375 (delq
9377 (delete-dups
9378 (mapcar (lambda (x)
9379 (let ((tpl (car x)))
9380 (when (not (delq
9382 (mapcar (lambda(y)
9383 (equal y tpl)) s))) x)))
9384 (reverse r))))))
9386 (defun org-contextualize-validate-key (key contexts)
9387 "Check CONTEXTS for agenda or capture KEY."
9388 (let (r rr res)
9389 (while (setq r (pop contexts))
9390 (mapc
9391 (lambda (rr)
9392 (when
9393 (and (equal key (car r))
9394 (if (functionp rr) (funcall rr)
9395 (or (and (eq (car rr) 'in-file)
9396 (buffer-file-name)
9397 (string-match (cdr rr) (buffer-file-name)))
9398 (and (eq (car rr) 'in-mode)
9399 (string-match (cdr rr) (symbol-name major-mode)))
9400 (and (eq (car rr) 'in-buffer)
9401 (string-match (cdr rr) (buffer-name)))
9402 (when (and (eq (car rr) 'not-in-file)
9403 (buffer-file-name))
9404 (not (string-match (cdr rr) (buffer-file-name))))
9405 (when (eq (car rr) 'not-in-mode)
9406 (not (string-match (cdr rr) (symbol-name major-mode))))
9407 (when (eq (car rr) 'not-in-buffer)
9408 (not (string-match (cdr rr) (buffer-name)))))))
9409 (push r res)))
9410 (car (last r))))
9411 (delete-dups (delq nil res))))
9413 (defun org-context-p (&rest contexts)
9414 "Check if local context is any of CONTEXTS.
9415 Possible values in the list of contexts are `table', `headline', and `item'."
9416 (let ((pos (point)))
9417 (goto-char (point-at-bol))
9418 (prog1 (or (and (memq 'table contexts)
9419 (looking-at "[ \t]*|"))
9420 (and (memq 'headline contexts)
9421 (looking-at org-outline-regexp))
9422 (and (memq 'item contexts)
9423 (looking-at "[ \t]*\\([-+*] \\|[0-9]+[.)] \\)"))
9424 (and (memq 'item-body contexts)
9425 (org-in-item-p)))
9426 (goto-char pos))))
9428 (defun org-get-local-variables ()
9429 "Return a list of all local variables in an Org mode buffer."
9430 (let (varlist)
9431 (with-current-buffer (get-buffer-create "*Org tmp*")
9432 (erase-buffer)
9433 (org-mode)
9434 (setq varlist (buffer-local-variables)))
9435 (kill-buffer "*Org tmp*")
9436 (delq nil
9437 (mapcar
9438 (lambda (x)
9439 (setq x
9440 (if (symbolp x)
9441 (list x)
9442 (list (car x) (cdr x))))
9443 (if (and (not (get (car x) 'org-state))
9444 (string-match
9445 "^\\(org-\\|orgtbl-\\|outline-\\|comment-\\|paragraph-\\|auto-fill\\|normal-auto-fill\\|fill-paragraph\\|indent-\\)"
9446 (symbol-name (car x))))
9447 x nil))
9448 varlist))))
9450 (defun org-clone-local-variables (from-buffer &optional regexp)
9451 "Clone local variables from FROM-BUFFER.
9452 Optional argument REGEXP selects variables to clone."
9453 (mapc
9454 (lambda (pair)
9455 (and (symbolp (car pair))
9456 (or (null regexp)
9457 (string-match regexp (symbol-name (car pair))))
9458 (set (make-local-variable (car pair))
9459 (cdr pair))))
9460 (buffer-local-variables from-buffer)))
9462 ;;;###autoload
9463 (defun org-run-like-in-org-mode (cmd)
9464 "Run a command, pretending that the current buffer is in Org-mode.
9465 This will temporarily bind local variables that are typically bound in
9466 Org-mode to the values they have in Org-mode, and then interactively
9467 call CMD."
9468 (org-load-modules-maybe)
9469 (unless org-local-vars
9470 (setq org-local-vars (org-get-local-variables)))
9471 (let (binds)
9472 (dolist (var org-local-vars)
9473 (when (or (not (boundp (car var)))
9474 (eq (symbol-value (car var))
9475 (default-value (car var))))
9476 (push (list (car var) `(quote ,(cadr var))) binds)))
9477 (eval `(let ,binds
9478 (call-interactively (quote ,cmd))))))
9480 (defun org-get-category (&optional pos force-refresh)
9481 "Get the category applying to position POS."
9482 (save-match-data
9483 (if force-refresh (org-refresh-category-properties))
9484 (let ((pos (or pos (point))))
9485 (or (get-text-property pos 'org-category)
9486 (progn (org-refresh-category-properties)
9487 (get-text-property pos 'org-category))))))
9489 ;;; Refresh properties
9491 (defun org-refresh-properties (dprop tprop)
9492 "Refresh buffer text properties.
9493 DPROP is the drawer property and TPROP is either the
9494 corresponding text property to set, or an alist with each element
9495 being a text property (as a symbol) and a function to apply to
9496 the value of the drawer property."
9497 (let ((case-fold-search t)
9498 (inhibit-read-only t))
9499 (org-with-silent-modifications
9500 (save-excursion
9501 (save-restriction
9502 (widen)
9503 (goto-char (point-min))
9504 (while (re-search-forward (concat "^[ \t]*:" dprop ": +\\(.*\\)[ \t]*$") nil t)
9505 (org-refresh-property tprop (org-match-string-no-properties 1))))))))
9507 (defun org-refresh-property (tprop p)
9508 "Refresh the buffer text property TPROP from the drawer property P.
9509 The refresh happens only for the current tree (not subtree)."
9510 (save-excursion
9511 (org-back-to-heading t)
9512 ;; tprop is a text property symbol
9513 (if (symbolp tprop)
9514 (put-text-property
9515 (point) (or (outline-next-heading) (point-max)) tprop p)
9516 ;; tprop is an alist with (properties . function) elements
9517 (mapc (lambda(al)
9518 (save-excursion
9519 (put-text-property
9520 (point-at-bol) (or (outline-next-heading) (point-max))
9521 (car al)
9522 (funcall (cdr al) p))))
9523 tprop))))
9525 (defun org-refresh-category-properties ()
9526 "Refresh category text properties in the buffer."
9527 (let ((case-fold-search t)
9528 (inhibit-read-only t)
9529 (def-cat (cond
9530 ((null org-category)
9531 (if buffer-file-name
9532 (file-name-sans-extension
9533 (file-name-nondirectory buffer-file-name))
9534 "???"))
9535 ((symbolp org-category) (symbol-name org-category))
9536 (t org-category)))
9537 beg end cat pos optionp)
9538 (org-with-silent-modifications
9539 (save-excursion
9540 (save-restriction
9541 (widen)
9542 (goto-char (point-min))
9543 (put-text-property (point) (point-max) 'org-category def-cat)
9544 (while (re-search-forward
9545 "^[ \t]*\\(\\(?:#\\+\\|:\\)CATEGORY:\\)\\(.*\\)" nil t)
9546 (setq pos (match-end 0)
9547 optionp (equal (char-after (match-beginning 0)) ?#)
9548 cat (org-trim (match-string 2)))
9549 (if optionp
9550 (setq beg (point-at-bol) end (point-max))
9551 (org-back-to-heading t)
9552 (setq beg (point) end (org-end-of-subtree t t)))
9553 (put-text-property beg end 'org-category cat)
9554 (goto-char pos)))))))
9556 (defun org-refresh-stats-properties ()
9557 "Refresh stats text properties in the buffer."
9558 (let (stats)
9559 (org-with-silent-modifications
9560 (save-excursion
9561 (save-restriction
9562 (widen)
9563 (goto-char (point-min))
9564 (while (re-search-forward
9565 (concat org-outline-regexp-bol ".*"
9566 "\\(?:\\[\\([0-9]+\\)%\\|\\([0-9]+\\)/\\([0-9]+\\)\\]\\)")
9567 nil t)
9568 (setq stats (cond ((equal (match-string 3) "0") 0)
9569 ((match-string 2)
9570 (/ (* (string-to-number (match-string 2)) 100)
9571 (string-to-number (match-string 3))))
9572 (t (string-to-number (match-string 1)))))
9573 (org-back-to-heading t)
9574 (put-text-property (point) (progn (org-end-of-subtree t t) (point))
9575 'org-stats stats)))))))
9577 (defun org-refresh-effort-properties ()
9578 "Refresh effort properties"
9579 (org-refresh-properties
9580 org-effort-property
9581 '((effort . identity)
9582 (effort-minutes . org-duration-string-to-minutes))))
9584 ;;;; Link Stuff
9586 ;;; Link abbreviations
9588 (defun org-link-expand-abbrev (link)
9589 "Apply replacements as defined in `org-link-abbrev-alist'."
9590 (if (string-match "^\\([^:]*\\)\\(::?\\(.*\\)\\)?$" link)
9591 (let* ((key (match-string 1 link))
9592 (as (or (assoc key org-link-abbrev-alist-local)
9593 (assoc key org-link-abbrev-alist)))
9594 (tag (and (match-end 2) (match-string 3 link)))
9595 rpl)
9596 (if (not as)
9597 link
9598 (setq rpl (cdr as))
9599 (cond
9600 ((symbolp rpl) (funcall rpl tag))
9601 ((string-match "%(\\([^)]+\\))" rpl)
9602 (replace-match
9603 (save-match-data
9604 (funcall (intern-soft (match-string 1 rpl)) tag)) t t rpl))
9605 ((string-match "%s" rpl) (replace-match (or tag "") t t rpl))
9606 ((string-match "%h" rpl)
9607 (replace-match (url-hexify-string (or tag "")) t t rpl))
9608 (t (concat rpl tag)))))
9609 link))
9611 ;;; Storing and inserting links
9613 (defvar org-insert-link-history nil
9614 "Minibuffer history for links inserted with `org-insert-link'.")
9616 (defvar org-stored-links nil
9617 "Contains the links stored with `org-store-link'.")
9619 (defvar org-store-link-plist nil
9620 "Plist with info about the most recently link created with `org-store-link'.")
9622 (defvar org-link-protocols nil
9623 "Link protocols added to Org-mode using `org-add-link-type'.")
9625 (defvar org-store-link-functions nil
9626 "List of functions that are called to create and store a link.
9627 Each function will be called in turn until one returns a non-nil
9628 value. Each function should check if it is responsible for creating
9629 this link (for example by looking at the major mode).
9630 If not, it must exit and return nil.
9631 If yes, it should return a non-nil value after a calling
9632 `org-store-link-props' with a list of properties and values.
9633 Special properties are:
9635 :type The link prefix, like \"http\". This must be given.
9636 :link The link, like \"http://www.astro.uva.nl/~dominik\".
9637 This is obligatory as well.
9638 :description Optional default description for the second pair
9639 of brackets in an Org-mode link. The user can still change
9640 this when inserting this link into an Org-mode buffer.
9642 In addition to these, any additional properties can be specified
9643 and then used in capture templates.")
9645 (defun org-add-link-type (type &optional follow export)
9646 "Add TYPE to the list of `org-link-types'.
9647 Re-compute all regular expressions depending on `org-link-types'
9649 FOLLOW and EXPORT are two functions.
9651 FOLLOW should take the link path as the single argument and do whatever
9652 is necessary to follow the link, for example find a file or display
9653 a mail message.
9655 EXPORT should format the link path for export to one of the export formats.
9656 It should be a function accepting three arguments:
9658 path the path of the link, the text after the prefix (like \"http:\")
9659 desc the description of the link, if any
9660 format the export format, a symbol like `html' or `latex' or `ascii'.
9662 The function may use the FORMAT information to return different values
9663 depending on the format. The return value will be put literally into
9664 the exported file. If the return value is nil, this means Org should
9665 do what it normally does with links which do not have EXPORT defined.
9667 Org mode has a built-in default for exporting links. If you are happy with
9668 this default, there is no need to define an export function for the link
9669 type. For a simple example of an export function, see `org-bbdb.el'."
9670 (add-to-list 'org-link-types type t)
9671 (org-make-link-regexps)
9672 (org-element-update-syntax)
9673 (if (assoc type org-link-protocols)
9674 (setcdr (assoc type org-link-protocols) (list follow export))
9675 (push (list type follow export) org-link-protocols)))
9677 (defvar org-agenda-buffer-name) ; Defined in org-agenda.el
9678 (defvar org-id-link-to-org-use-id) ; Defined in org-id.el
9680 ;;;###autoload
9681 (defun org-store-link (arg)
9682 "\\<org-mode-map>Store an org-link to the current location.
9683 This link is added to `org-stored-links' and can later be inserted
9684 into an org-buffer with \\[org-insert-link].
9686 For some link types, a prefix arg is interpreted.
9687 For links to Usenet articles, arg negates `org-gnus-prefer-web-links'.
9688 For file links, arg negates `org-context-in-file-links'.
9690 A double prefix arg force skipping storing functions that are not
9691 part of Org's core.
9693 A triple prefix arg force storing a link for each line in the
9694 active region."
9695 (interactive "P")
9696 (org-load-modules-maybe)
9697 (if (and (equal arg '(64)) (org-region-active-p))
9698 (save-excursion
9699 (let ((end (region-end)))
9700 (goto-char (region-beginning))
9701 (set-mark (point))
9702 (while (< (point-at-eol) end)
9703 (move-end-of-line 1) (activate-mark)
9704 (let (current-prefix-arg)
9705 (call-interactively 'org-store-link))
9706 (move-beginning-of-line 2)
9707 (set-mark (point)))))
9708 (org-with-limited-levels
9709 (setq org-store-link-plist nil)
9710 (let (link cpltxt desc description search
9711 txt custom-id agenda-link sfuns sfunsn)
9712 (cond
9714 ;; Store a link using an external link type
9715 ((and (not (equal arg '(16)))
9716 (setq sfuns
9717 (delq
9718 nil (mapcar (lambda (f)
9719 (let (fs) (if (funcall f) (push f fs))))
9720 org-store-link-functions))
9721 sfunsn (mapcar (lambda (fu) (symbol-name (car fu))) sfuns))
9722 (or (and (cdr sfuns)
9723 (funcall (intern
9724 (completing-read
9725 "Which function for creating the link? "
9726 sfunsn nil t (car sfunsn)))))
9727 (funcall (caar sfuns)))
9728 (setq link (plist-get org-store-link-plist :link)
9729 desc (or (plist-get org-store-link-plist
9730 :description) link))))
9732 ;; Store a link from a source code buffer
9733 ((org-src-edit-buffer-p)
9734 (let (label gc)
9735 (while (or (not label)
9736 (save-excursion
9737 (save-restriction
9738 (widen)
9739 (goto-char (point-min))
9740 (re-search-forward
9741 (regexp-quote (format org-coderef-label-format label))
9742 nil t))))
9743 (when label (message "Label exists already") (sit-for 2))
9744 (setq label (read-string "Code line label: " label)))
9745 (end-of-line 1)
9746 (setq link (format org-coderef-label-format label))
9747 (setq gc (- 79 (length link)))
9748 (if (< (current-column) gc) (org-move-to-column gc t) (insert " "))
9749 (insert link)
9750 (setq link (concat "(" label ")") desc nil)))
9752 ;; We are in the agenda, link to referenced location
9753 ((equal (org-bound-and-true-p org-agenda-buffer-name) (buffer-name))
9754 (let ((m (or (get-text-property (point) 'org-hd-marker)
9755 (get-text-property (point) 'org-marker))))
9756 (when m
9757 (org-with-point-at m
9758 (setq agenda-link
9759 (if (org-called-interactively-p 'any)
9760 (call-interactively 'org-store-link)
9761 (org-store-link nil)))))))
9763 ((eq major-mode 'calendar-mode)
9764 (let ((cd (calendar-cursor-to-date)))
9765 (setq link
9766 (format-time-string
9767 (car org-time-stamp-formats)
9768 (apply 'encode-time
9769 (list 0 0 0 (nth 1 cd) (nth 0 cd) (nth 2 cd)
9770 nil nil nil))))
9771 (org-store-link-props :type "calendar" :date cd)))
9773 ((eq major-mode 'help-mode)
9774 (setq link (concat "help:" (save-excursion
9775 (goto-char (point-min))
9776 (looking-at "^[^ ]+")
9777 (match-string 0))))
9778 (org-store-link-props :type "help"))
9780 ((eq major-mode 'w3-mode)
9781 (setq cpltxt (if (and (buffer-name)
9782 (not (string-match "Untitled" (buffer-name))))
9783 (buffer-name)
9784 (url-view-url t))
9785 link (url-view-url t))
9786 (org-store-link-props :type "w3" :url (url-view-url t)))
9788 ((eq major-mode 'image-mode)
9789 (setq cpltxt (concat "file:"
9790 (abbreviate-file-name buffer-file-name))
9791 link cpltxt)
9792 (org-store-link-props :type "image" :file buffer-file-name))
9794 ;; In dired, store a link to the file of the current line
9795 ((derived-mode-p 'dired-mode)
9796 (let ((file (dired-get-filename nil t)))
9797 (setq file (if file
9798 (abbreviate-file-name
9799 (expand-file-name (dired-get-filename nil t)))
9800 ;; otherwise, no file so use current directory.
9801 default-directory))
9802 (setq cpltxt (concat "file:" file)
9803 link cpltxt)))
9805 ((setq search (run-hook-with-args-until-success
9806 'org-create-file-search-functions))
9807 (setq link (concat "file:" (abbreviate-file-name buffer-file-name)
9808 "::" search))
9809 (setq cpltxt (or description link)))
9811 ((and (buffer-file-name (buffer-base-buffer)) (derived-mode-p 'org-mode))
9812 (setq custom-id (org-entry-get nil "CUSTOM_ID"))
9813 (cond
9814 ;; Store a link using the target at point
9815 ((org-in-regexp "[^<]<<\\([^<>]+\\)>>[^>]" 1)
9816 (setq cpltxt
9817 (concat "file:"
9818 (abbreviate-file-name
9819 (buffer-file-name (buffer-base-buffer)))
9820 "::" (match-string 1))
9821 link cpltxt))
9822 ((and (featurep 'org-id)
9823 (or (eq org-id-link-to-org-use-id t)
9824 (and (org-called-interactively-p 'any)
9825 (or (eq org-id-link-to-org-use-id 'create-if-interactive)
9826 (and (eq org-id-link-to-org-use-id
9827 'create-if-interactive-and-no-custom-id)
9828 (not custom-id))))
9829 (and org-id-link-to-org-use-id (org-entry-get nil "ID"))))
9830 ;; Store a link using the ID at point
9831 (setq link (condition-case nil
9832 (prog1 (org-id-store-link)
9833 (setq desc (or (plist-get org-store-link-plist
9834 :description)
9835 "")))
9836 (error
9837 ;; Probably before first headline, link only to file
9838 (concat "file:"
9839 (abbreviate-file-name
9840 (buffer-file-name (buffer-base-buffer))))))))
9842 ;; Just link to current headline
9843 (setq cpltxt (concat "file:"
9844 (abbreviate-file-name
9845 (buffer-file-name (buffer-base-buffer)))))
9846 ;; Add a context search string
9847 (when (org-xor org-context-in-file-links arg)
9848 (let* ((ee (org-element-at-point))
9849 (et (org-element-type ee))
9850 (ev (plist-get (cadr ee) :value))
9851 (ek (plist-get (cadr ee) :key))
9852 (eok (and (stringp ek) (string-match "name" ek))))
9853 (setq txt (cond
9854 ((org-at-heading-p) nil)
9855 ((and (eq et 'keyword) eok) ev)
9856 ((org-region-active-p)
9857 (buffer-substring (region-beginning) (region-end)))))
9858 (when (or (null txt) (string-match "\\S-" txt))
9859 (setq cpltxt
9860 (concat cpltxt "::"
9861 (condition-case nil
9862 (org-make-org-heading-search-string txt)
9863 (error "")))
9864 desc (or (and (eq et 'keyword) eok ev)
9865 (nth 4 (ignore-errors (org-heading-components)))
9866 "NONE")))))
9867 (if (string-match "::\\'" cpltxt)
9868 (setq cpltxt (substring cpltxt 0 -2)))
9869 (setq link cpltxt))))
9871 ((buffer-file-name (buffer-base-buffer))
9872 ;; Just link to this file here.
9873 (setq cpltxt (concat "file:"
9874 (abbreviate-file-name
9875 (buffer-file-name (buffer-base-buffer)))))
9876 ;; Add a context string.
9877 (when (org-xor org-context-in-file-links arg)
9878 (setq txt (if (org-region-active-p)
9879 (buffer-substring (region-beginning) (region-end))
9880 (buffer-substring (point-at-bol) (point-at-eol))))
9881 ;; Only use search option if there is some text.
9882 (when (string-match "\\S-" txt)
9883 (setq cpltxt
9884 (concat cpltxt "::" (org-make-org-heading-search-string txt))
9885 desc "NONE")))
9886 (setq link cpltxt))
9888 ((org-called-interactively-p 'interactive)
9889 (user-error "No method for storing a link from this buffer"))
9891 (t (setq link nil)))
9893 ;; We're done setting link and desc, clean up
9894 (if (consp link) (setq cpltxt (car link) link (cdr link)))
9895 (setq link (or link cpltxt)
9896 desc (or desc cpltxt))
9897 (cond ((equal desc "NONE") (setq desc nil))
9898 ((and desc (string-match org-bracket-link-analytic-regexp desc))
9899 (let ((d0 (match-string 3 desc))
9900 (p0 (match-string 5 desc)))
9901 (setq desc
9902 (replace-regexp-in-string
9903 org-bracket-link-regexp
9904 (concat (or p0 d0)
9905 (if (equal (length (match-string 0 desc))
9906 (length desc)) "*" "")) desc)))))
9908 ;; Return the link
9909 (if (not (and (or (org-called-interactively-p 'any)
9910 executing-kbd-macro) link))
9911 (or agenda-link (and link (org-make-link-string link desc)))
9912 (push (list link desc) org-stored-links)
9913 (message "Stored: %s" (or desc link))
9914 (when custom-id
9915 (setq link (concat "file:" (abbreviate-file-name
9916 (buffer-file-name)) "::#" custom-id))
9917 (push (list link desc) org-stored-links))
9918 (car org-stored-links))))))
9920 (defun org-store-link-props (&rest plist)
9921 "Store link properties, extract names and addresses."
9922 (let (x adr)
9923 (when (setq x (plist-get plist :from))
9924 (setq adr (mail-extract-address-components x))
9925 (setq plist (plist-put plist :fromname (car adr)))
9926 (setq plist (plist-put plist :fromaddress (nth 1 adr))))
9927 (when (setq x (plist-get plist :to))
9928 (setq adr (mail-extract-address-components x))
9929 (setq plist (plist-put plist :toname (car adr)))
9930 (setq plist (plist-put plist :toaddress (nth 1 adr)))))
9931 (let ((from (plist-get plist :from))
9932 (to (plist-get plist :to)))
9933 (when (and from to org-from-is-user-regexp)
9934 (setq plist
9935 (plist-put plist :fromto
9936 (if (string-match org-from-is-user-regexp from)
9937 (concat "to %t")
9938 (concat "from %f"))))))
9939 (setq org-store-link-plist plist))
9941 (defun org-add-link-props (&rest plist)
9942 "Add these properties to the link property list."
9943 (let (key value)
9944 (while plist
9945 (setq key (pop plist) value (pop plist))
9946 (setq org-store-link-plist
9947 (plist-put org-store-link-plist key value)))))
9949 (defun org-email-link-description (&optional fmt)
9950 "Return the description part of an email link.
9951 This takes information from `org-store-link-plist' and formats it
9952 according to FMT (default from `org-email-link-description-format')."
9953 (setq fmt (or fmt org-email-link-description-format))
9954 (let* ((p org-store-link-plist)
9955 (to (plist-get p :toaddress))
9956 (from (plist-get p :fromaddress))
9957 (table
9958 (list
9959 (cons "%c" (plist-get p :fromto))
9960 (cons "%F" (plist-get p :from))
9961 (cons "%f" (or (plist-get p :fromname) (plist-get p :fromaddress) "?"))
9962 (cons "%T" (plist-get p :to))
9963 (cons "%t" (or (plist-get p :toname) (plist-get p :toaddress) "?"))
9964 (cons "%s" (plist-get p :subject))
9965 (cons "%d" (plist-get p :date))
9966 (cons "%m" (plist-get p :message-id)))))
9967 (when (string-match "%c" fmt)
9968 ;; Check if the user wrote this message
9969 (if (and org-from-is-user-regexp from to
9970 (save-match-data (string-match org-from-is-user-regexp from)))
9971 (setq fmt (replace-match "to %t" t t fmt))
9972 (setq fmt (replace-match "from %f" t t fmt))))
9973 (org-replace-escapes fmt table)))
9975 (defun org-make-org-heading-search-string (&optional string)
9976 "Make search string for the current headline or STRING."
9977 (let ((s (or string
9978 (and (derived-mode-p 'org-mode)
9979 (save-excursion
9980 (org-back-to-heading t)
9981 (org-element-property :raw-value (org-element-at-point))))))
9982 (lines org-context-in-file-links))
9983 (or string (setq s (concat "*" s))) ; Add * for headlines
9984 (setq s (replace-regexp-in-string "\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]" "" s))
9985 (when (and string (integerp lines) (> lines 0))
9986 (let ((slines (org-split-string s "\n")))
9987 (when (< lines (length slines))
9988 (setq s (mapconcat
9989 'identity
9990 (reverse (nthcdr (- (length slines) lines)
9991 (reverse slines))) "\n")))))
9992 (mapconcat 'identity (org-split-string s "[ \t]+") " ")))
9994 (defun org-make-link-string (link &optional description)
9995 "Make a link with brackets, consisting of LINK and DESCRIPTION."
9996 (unless (string-match "\\S-" link)
9997 (error "Empty link"))
9998 (when (and description
9999 (stringp description)
10000 (not (string-match "\\S-" description)))
10001 (setq description nil))
10002 (when (stringp description)
10003 ;; Remove brackets from the description, they are fatal.
10004 (while (string-match "\\[" description)
10005 (setq description (replace-match "{" t t description)))
10006 (while (string-match "\\]" description)
10007 (setq description (replace-match "}" t t description))))
10008 (when (equal link description)
10009 ;; No description needed, it is identical
10010 (setq description nil))
10011 (when (and (not description)
10012 (not (string-match (org-image-file-name-regexp) link))
10013 (not (equal link (org-link-escape link))))
10014 (setq description (org-extract-attributes link)))
10015 (setq link
10016 (cond ((string-match (org-image-file-name-regexp) link) link)
10017 ((string-match org-link-types-re link)
10018 (concat (match-string 1 link)
10019 (org-link-escape (substring link (match-end 1)))))
10020 (t (org-link-escape link))))
10021 (concat "[[" link "]"
10022 (if description (concat "[" description "]") "")
10023 "]"))
10025 (defconst org-link-escape-chars
10026 ;;%20 %5B %5D
10027 '(?\ ?\[ ?\])
10028 "List of characters that should be escaped in a link when stored to Org.
10029 This is the list that is used for internal purposes.")
10031 (defconst org-link-escape-chars-browser
10032 ;;%20 %22
10033 '(?\ ?\")
10034 "List of characters to be escaped before handing over to the browser.
10035 If you consider using this constant then you probably want to use
10036 the function `org-link-escape-browser' instead. See there why
10037 this constant is a candidate to be removed once Org drops support
10038 for Emacs 24.1 and 24.2.")
10040 (defun org-link-escape (text &optional table merge)
10041 "Return percent escaped representation of TEXT.
10042 TEXT is a string with the text to escape.
10043 Optional argument TABLE is a list with characters that should be
10044 escaped. When nil, `org-link-escape-chars' is used.
10045 If optional argument MERGE is set, merge TABLE into
10046 `org-link-escape-chars'."
10047 ;; Don't escape chars in internal links
10048 (if (string-match "^\\*[[:alnum:]]+" text)
10049 text
10050 (cond
10051 ((and table merge)
10052 (mapc (lambda (defchr)
10053 (unless (member defchr table)
10054 (setq table (cons defchr table))))
10055 org-link-escape-chars))
10056 ((null table)
10057 (setq table org-link-escape-chars)))
10058 (mapconcat
10059 (lambda (char)
10060 (if (or (member char table)
10061 (and (or (< char 32) (= char ?\%) (> char 126))
10062 org-url-hexify-p))
10063 (mapconcat (lambda (sequence-element)
10064 (format "%%%.2X" sequence-element))
10065 (or (encode-coding-char char 'utf-8)
10066 (error "Unable to percent escape character: %s"
10067 (char-to-string char))) "")
10068 (char-to-string char))) text "")))
10070 (defun org-link-escape-browser (text)
10071 "Escape some characters before handing over to the browser.
10072 This function is a candidate to be removed together with the
10073 constant `org-link-escape-chars-browser' once Org drops support
10074 for Emacs 24.1 and 24.2. All calls to this function will have to
10075 be replaced with `url-encode-url' which is available since Emacs
10076 24.3.1."
10077 ;; Example with the Org link
10078 ;; [[http://lists.gnu.org/archive/cgi-bin/namazu.cgi?idxname=emacs-orgmode&query=%252Bsubject:"Release+8.2"]]
10079 ;; to open the browser with +subject:"Release 8.2" filled into the
10080 ;; query field: In this case the variable TEXT contains the
10081 ;; unescaped [...]=%2Bsubject:"Release+8.2". Then `url-encode-url'
10082 ;; converts correctly to [...]=%2Bsubject:%22Release+8.2%22 or
10083 ;; `org-link-escape' with `org-link-escape-chars-browser' converts
10084 ;; wrongly to [...]=%252Bsubject:%22Release+8.2%22.
10085 (if (fboundp 'url-encode-url)
10086 (url-encode-url text)
10087 (if (org-string-match-p
10088 (concat "[[:nonascii:]" org-link-escape-chars-browser "]")
10089 text)
10090 (org-link-escape text org-link-escape-chars-browser)
10091 text)))
10093 (defun org-link-unescape (str)
10094 "Unhex hexified Unicode strings as returned from the JavaScript function
10095 encodeURIComponent. E.g. `%C3%B6' is the german o-Umlaut."
10096 (unless (and (null str) (string= "" str))
10097 (let ((pos 0) (case-fold-search t) unhexed)
10098 (while (setq pos (string-match "\\(%[0-9a-f][0-9a-f]\\)+" str pos))
10099 (setq unhexed (org-link-unescape-compound (match-string 0 str)))
10100 (setq str (replace-match unhexed t t str))
10101 (setq pos (+ pos (length unhexed))))))
10102 str)
10104 (defun org-link-unescape-compound (hex)
10105 "Unhexify Unicode hex-chars. E.g. `%C3%B6' is the German o-Umlaut.
10106 Note: this function also decodes single byte encodings like
10107 `%E1' (a-acute) if not followed by another `%[A-F0-9]{2}' group."
10108 (save-match-data
10109 (let* ((bytes (cdr (split-string hex "%")))
10110 (ret "")
10111 (eat 0)
10112 (sum 0))
10113 (while bytes
10114 (let* ((val (string-to-number (pop bytes) 16))
10115 (shift-xor
10116 (if (= 0 eat)
10117 (cond
10118 ((>= val 252) (cons 6 252))
10119 ((>= val 248) (cons 5 248))
10120 ((>= val 240) (cons 4 240))
10121 ((>= val 224) (cons 3 224))
10122 ((>= val 192) (cons 2 192))
10123 (t (cons 0 0)))
10124 (cons 6 128))))
10125 (if (>= val 192) (setq eat (car shift-xor)))
10126 (setq val (logxor val (cdr shift-xor)))
10127 (setq sum (+ (lsh sum (car shift-xor)) val))
10128 (if (> eat 0) (setq eat (- eat 1)))
10129 (cond
10130 ((= 0 eat) ;multi byte
10131 (setq ret (concat ret (org-char-to-string sum)))
10132 (setq sum 0))
10133 ((not bytes) ; single byte(s)
10134 (setq ret (org-link-unescape-single-byte-sequence hex))))))
10135 ret)))
10137 (defun org-link-unescape-single-byte-sequence (hex)
10138 "Unhexify hex-encoded single byte character sequences."
10139 (mapconcat (lambda (byte)
10140 (char-to-string (string-to-number byte 16)))
10141 (cdr (split-string hex "%")) ""))
10143 (defun org-xor (a b)
10144 "Exclusive or."
10145 (if a (not b) b))
10147 (defun org-fixup-message-id-for-http (s)
10148 "Replace special characters in a message id, so it can be used in an http query."
10149 (when (string-match "%" s)
10150 (setq s (mapconcat (lambda (c)
10151 (if (eq c ?%)
10152 "%25"
10153 (char-to-string c)))
10154 s "")))
10155 (while (string-match "<" s)
10156 (setq s (replace-match "%3C" t t s)))
10157 (while (string-match ">" s)
10158 (setq s (replace-match "%3E" t t s)))
10159 (while (string-match "@" s)
10160 (setq s (replace-match "%40" t t s)))
10163 (defun org-link-prettify (link)
10164 "Return a human-readable representation of LINK.
10165 The car of LINK must be a raw link.
10166 The cdr of LINK must be either a link description or nil."
10167 (let ((desc (or (cadr link) "<no description>")))
10168 (concat (format "%-45s" (substring desc 0 (min (length desc) 40)))
10169 "<" (car link) ">")))
10171 ;;;###autoload
10172 (defun org-insert-link-global ()
10173 "Insert a link like Org-mode does.
10174 This command can be called in any mode to insert a link in Org-mode syntax."
10175 (interactive)
10176 (org-load-modules-maybe)
10177 (org-run-like-in-org-mode 'org-insert-link))
10179 (defun org-insert-all-links (arg &optional pre post)
10180 "Insert all links in `org-stored-links'.
10181 When a universal prefix, do not delete the links from `org-stored-links'.
10182 When `ARG' is a number, insert the last N link(s).
10183 `PRE' and `POST' are optional arguments to define a string to
10184 prepend or to append."
10185 (interactive "P")
10186 (let ((org-keep-stored-link-after-insertion (equal arg '(4)))
10187 (links (copy-seq org-stored-links))
10188 (pr (or pre "- "))
10189 (po (or post "\n"))
10190 (cnt 1) l)
10191 (if (null org-stored-links)
10192 (message "No link to insert")
10193 (while (and (or (listp arg) (>= arg cnt))
10194 (setq l (if (listp arg)
10195 (pop links)
10196 (pop org-stored-links))))
10197 (setq cnt (1+ cnt))
10198 (insert pr)
10199 (org-insert-link nil (car l) (or (cadr l) "<no description>"))
10200 (insert po)))))
10202 (defun org-insert-last-stored-link (arg)
10203 "Insert the last link stored in `org-stored-links'."
10204 (interactive "p")
10205 (org-insert-all-links arg "" "\n"))
10207 (defun org-link-fontify-links-to-this-file ()
10208 "Fontify links to the current file in `org-stored-links'."
10209 (let ((f (buffer-file-name)) a b)
10210 (setq a (mapcar (lambda(l)
10211 (let ((ll (car l)))
10212 (when (and (string-match "^file:\\(.+\\)::" ll)
10213 (equal f (expand-file-name (match-string 1 ll))))
10214 ll)))
10215 org-stored-links))
10216 (when (featurep 'org-id)
10217 (setq b (mapcar (lambda(l)
10218 (let ((ll (car l)))
10219 (when (and (string-match "^id:\\(.+\\)$" ll)
10220 (equal f (expand-file-name
10221 (or (org-id-find-id-file
10222 (match-string 1 ll)) ""))))
10223 ll)))
10224 org-stored-links)))
10225 (mapcar (lambda(l)
10226 (put-text-property 0 (length l) 'face 'font-lock-comment-face l))
10227 (delq nil (append a b)))))
10229 (defvar org-link-links-in-this-file nil)
10230 (defun org-insert-link (&optional complete-file link-location default-description)
10231 "Insert a link. At the prompt, enter the link.
10233 Completion can be used to insert any of the link protocol prefixes like
10234 http or ftp in use.
10236 The history can be used to select a link previously stored with
10237 `org-store-link'. When the empty string is entered (i.e. if you just
10238 press RET at the prompt), the link defaults to the most recently
10239 stored link. As SPC triggers completion in the minibuffer, you need to
10240 use M-SPC or C-q SPC to force the insertion of a space character.
10242 You will also be prompted for a description, and if one is given, it will
10243 be displayed in the buffer instead of the link.
10245 If there is already a link at point, this command will allow you to edit link
10246 and description parts.
10248 With a \\[universal-argument] prefix, prompts for a file to link to. The file name can
10249 be selected using completion. The path to the file will be relative to the
10250 current directory if the file is in the current directory or a subdirectory.
10251 Otherwise, the link will be the absolute path as completed in the minibuffer
10252 \(i.e. normally ~/path/to/file). You can configure this behavior using the
10253 option `org-link-file-path-type'.
10255 With two \\[universal-argument] prefixes, enforce an absolute path even if the file is in
10256 the current directory or below.
10258 With three \\[universal-argument] prefixes, negate the meaning of
10259 `org-keep-stored-link-after-insertion'.
10261 If `org-make-link-description-function' is non-nil, this function will be
10262 called with the link target, and the result will be the default
10263 link description.
10265 If the LINK-LOCATION parameter is non-nil, this value will be
10266 used as the link location instead of reading one interactively.
10268 If the DEFAULT-DESCRIPTION parameter is non-nil, this value will
10269 be used as the default description."
10270 (interactive "P")
10271 (let* ((wcf (current-window-configuration))
10272 (origbuf (current-buffer))
10273 (region (if (org-region-active-p)
10274 (buffer-substring (region-beginning) (region-end))))
10275 (remove (and region (list (region-beginning) (region-end))))
10276 (desc region)
10277 tmphist ; byte-compile incorrectly complains about this
10278 (link link-location)
10279 (abbrevs org-link-abbrev-alist-local)
10280 entry file all-prefixes auto-desc)
10281 (cond
10282 (link-location) ; specified by arg, just use it.
10283 ((org-in-regexp org-bracket-link-regexp 1)
10284 ;; We do have a link at point, and we are going to edit it.
10285 (setq remove (list (match-beginning 0) (match-end 0)))
10286 (setq desc (if (match-end 3) (org-match-string-no-properties 3)))
10287 (setq link (read-string "Link: "
10288 (org-link-unescape
10289 (org-match-string-no-properties 1)))))
10290 ((or (org-in-regexp org-angle-link-re)
10291 (org-in-regexp org-plain-link-re))
10292 ;; Convert to bracket link
10293 (setq remove (list (match-beginning 0) (match-end 0))
10294 link (read-string "Link: "
10295 (org-remove-angle-brackets (match-string 0)))))
10296 ((member complete-file '((4) (16)))
10297 ;; Completing read for file names.
10298 (setq link (org-file-complete-link complete-file)))
10300 ;; Read link, with completion for stored links.
10301 (org-link-fontify-links-to-this-file)
10302 (org-switch-to-buffer-other-window "*Org Links*")
10303 (with-current-buffer "*Org Links*"
10304 (erase-buffer)
10305 (insert "Insert a link.
10306 Use TAB to complete link prefixes, then RET for type-specific completion support\n")
10307 (when org-stored-links
10308 (insert "\nStored links are available with <up>/<down> or M-p/n (most recent with RET):\n\n")
10309 (insert (mapconcat 'org-link-prettify
10310 (reverse org-stored-links) "\n")))
10311 (goto-char (point-min)))
10312 (let ((cw (selected-window)))
10313 (select-window (get-buffer-window "*Org Links*" 'visible))
10314 (with-current-buffer "*Org Links*" (setq truncate-lines t))
10315 (unless (pos-visible-in-window-p (point-max))
10316 (org-fit-window-to-buffer))
10317 (and (window-live-p cw) (select-window cw)))
10318 ;; Fake a link history, containing the stored links.
10319 (setq tmphist (append (mapcar 'car org-stored-links)
10320 org-insert-link-history))
10321 (setq all-prefixes (append (mapcar 'car abbrevs)
10322 (mapcar 'car org-link-abbrev-alist)
10323 org-link-types))
10324 (unwind-protect
10325 (progn
10326 (setq link
10327 (org-completing-read
10328 "Link: "
10329 (append
10330 (mapcar (lambda (x) (concat x ":"))
10331 all-prefixes)
10332 (mapcar 'car org-stored-links))
10333 nil nil nil
10334 'tmphist
10335 (caar org-stored-links)))
10336 (if (not (string-match "\\S-" link))
10337 (user-error "No link selected"))
10338 (mapc (lambda(l)
10339 (when (equal link (cadr l)) (setq link (car l) auto-desc t)))
10340 org-stored-links)
10341 (if (or (member link all-prefixes)
10342 (and (equal ":" (substring link -1))
10343 (member (substring link 0 -1) all-prefixes)
10344 (setq link (substring link 0 -1))))
10345 (setq link (with-current-buffer origbuf
10346 (org-link-try-special-completion link)))))
10347 (set-window-configuration wcf)
10348 (kill-buffer "*Org Links*"))
10349 (setq entry (assoc link org-stored-links))
10350 (or entry (push link org-insert-link-history))
10351 (setq desc (or desc (nth 1 entry)))))
10353 (if (funcall (if (equal complete-file '(64)) 'not 'identity)
10354 (not org-keep-stored-link-after-insertion))
10355 (setq org-stored-links (delq (assoc link org-stored-links)
10356 org-stored-links)))
10358 (if (and (string-match org-plain-link-re link)
10359 (not (string-match org-ts-regexp link)))
10360 ;; URL-like link, normalize the use of angular brackets.
10361 (setq link (org-remove-angle-brackets link)))
10363 ;; Check if we are linking to the current file with a search
10364 ;; option If yes, simplify the link by using only the search
10365 ;; option.
10366 (when (and buffer-file-name
10367 (string-match "^file:\\(.+?\\)::\\(.+\\)" link))
10368 (let* ((path (match-string 1 link))
10369 (case-fold-search nil)
10370 (search (match-string 2 link)))
10371 (save-match-data
10372 (if (equal (file-truename buffer-file-name) (file-truename path))
10373 ;; We are linking to this same file, with a search option
10374 (setq link search)))))
10376 ;; Check if we can/should use a relative path. If yes, simplify the link
10377 (when (string-match "^\\(file:\\|docview:\\)\\(.*\\)" link)
10378 (let* ((type (match-string 1 link))
10379 (path (match-string 2 link))
10380 (origpath path)
10381 (case-fold-search nil))
10382 (cond
10383 ((or (eq org-link-file-path-type 'absolute)
10384 (equal complete-file '(16)))
10385 (setq path (abbreviate-file-name (expand-file-name path))))
10386 ((eq org-link-file-path-type 'noabbrev)
10387 (setq path (expand-file-name path)))
10388 ((eq org-link-file-path-type 'relative)
10389 (setq path (file-relative-name path)))
10391 (save-match-data
10392 (if (string-match (concat "^" (regexp-quote
10393 (expand-file-name
10394 (file-name-as-directory
10395 default-directory))))
10396 (expand-file-name path))
10397 ;; We are linking a file with relative path name.
10398 (setq path (substring (expand-file-name path)
10399 (match-end 0)))
10400 (setq path (abbreviate-file-name (expand-file-name path)))))))
10401 (setq link (concat type path))
10402 (if (equal desc origpath)
10403 (setq desc path))))
10405 (if org-make-link-description-function
10406 (setq desc
10407 (or (condition-case nil
10408 (funcall org-make-link-description-function link desc)
10409 (error (progn (message "Can't get link description from `%s'"
10410 (symbol-name org-make-link-description-function))
10411 (sit-for 2) nil)))
10412 (read-string "Description: " default-description)))
10413 (if default-description (setq desc default-description)
10414 (setq desc (or (and auto-desc desc)
10415 (read-string "Description: " desc)))))
10417 (unless (string-match "\\S-" desc) (setq desc nil))
10418 (if remove (apply 'delete-region remove))
10419 (insert (org-make-link-string link desc))))
10421 (defun org-link-try-special-completion (type)
10422 "If there is completion support for link type TYPE, offer it."
10423 (let ((fun (intern (concat "org-" type "-complete-link"))))
10424 (if (functionp fun)
10425 (funcall fun)
10426 (read-string "Link (no completion support): " (concat type ":")))))
10428 (defun org-file-complete-link (&optional arg)
10429 "Create a file link using completion."
10430 (let (file link)
10431 (setq file (org-iread-file-name "File: "))
10432 (let ((pwd (file-name-as-directory (expand-file-name ".")))
10433 (pwd1 (file-name-as-directory (abbreviate-file-name
10434 (expand-file-name ".")))))
10435 (cond
10436 ((equal arg '(16))
10437 (setq link (concat
10438 "file:"
10439 (abbreviate-file-name (expand-file-name file)))))
10440 ((string-match (concat "^" (regexp-quote pwd1) "\\(.+\\)") file)
10441 (setq link (concat "file:" (match-string 1 file))))
10442 ((string-match (concat "^" (regexp-quote pwd) "\\(.+\\)")
10443 (expand-file-name file))
10444 (setq link (concat
10445 "file:" (match-string 1 (expand-file-name file)))))
10446 (t (setq link (concat "file:" file)))))
10447 link))
10449 (defun org-iread-file-name (&rest args)
10450 "Read-file-name using `ido-mode' speedup if available.
10451 ARGS are arguments that may be passed to `ido-read-file-name' or `read-file-name'.
10452 See `read-file-name' for a description of parameters."
10453 (org-without-partial-completion
10454 (if (and org-completion-use-ido
10455 (fboundp 'ido-read-file-name)
10456 (boundp 'ido-mode) ido-mode
10457 (listp (second args)))
10458 (let ((ido-enter-matching-directory nil))
10459 (apply 'ido-read-file-name args))
10460 (apply 'read-file-name args))))
10462 (defun org-completing-read (&rest args)
10463 "Completing-read with SPACE being a normal character."
10464 (let ((enable-recursive-minibuffers t)
10465 (minibuffer-local-completion-map
10466 (copy-keymap minibuffer-local-completion-map)))
10467 (org-defkey minibuffer-local-completion-map " " 'self-insert-command)
10468 (org-defkey minibuffer-local-completion-map "?" 'self-insert-command)
10469 (org-defkey minibuffer-local-completion-map (kbd "C-c !") 'org-time-stamp-inactive)
10470 (apply 'org-icompleting-read args)))
10472 (defun org-completing-read-no-i (&rest args)
10473 (let (org-completion-use-ido org-completion-use-iswitchb)
10474 (apply 'org-completing-read args)))
10476 (defun org-iswitchb-completing-read (prompt choices &rest args)
10477 "Use iswitch as a completing-read replacement to choose from choices.
10478 PROMPT is a string to prompt with. CHOICES is a list of strings to choose
10479 from."
10480 (let* ((iswitchb-use-virtual-buffers nil)
10481 (iswitchb-make-buflist-hook
10482 (lambda ()
10483 (setq iswitchb-temp-buflist choices))))
10484 (iswitchb-read-buffer prompt)))
10486 (defun org-icompleting-read (&rest args)
10487 "Completing-read using `ido-mode' or `iswitchb' speedups if available."
10488 (org-without-partial-completion
10489 (if (and org-completion-use-ido
10490 (fboundp 'ido-completing-read)
10491 (boundp 'ido-mode) ido-mode
10492 (listp (second args)))
10493 (let ((ido-enter-matching-directory nil))
10494 (apply 'ido-completing-read (concat (car args))
10495 (if (consp (car (nth 1 args)))
10496 (mapcar 'car (nth 1 args))
10497 (nth 1 args))
10498 (cddr args)))
10499 (if (and org-completion-use-iswitchb
10500 (boundp 'iswitchb-mode) iswitchb-mode
10501 (listp (second args)))
10502 (apply 'org-iswitchb-completing-read (concat (car args))
10503 (if (consp (car (nth 1 args)))
10504 (mapcar 'car (nth 1 args))
10505 (nth 1 args))
10506 (cddr args))
10507 (apply 'completing-read args)))))
10509 (defun org-extract-attributes (s)
10510 "Extract the attributes cookie from a string and set as text property."
10511 (let (a attr (start 0) key value)
10512 (save-match-data
10513 (when (string-match "{{\\([^}]+\\)}}$" s)
10514 (setq a (match-string 1 s) s (substring s 0 (match-beginning 0)))
10515 (while (string-match "\\([a-zA-Z]+\\)=\"\\([^\"]*\\)\"" a start)
10516 (setq key (match-string 1 a) value (match-string 2 a)
10517 start (match-end 0)
10518 attr (plist-put attr (intern key) value))))
10519 (org-add-props s nil 'org-attr attr))
10522 ;;; Opening/following a link
10524 (defvar org-link-search-failed nil)
10526 (defvar org-open-link-functions nil
10527 "Hook for functions finding a plain text link.
10528 These functions must take a single argument, the link content.
10529 They will be called for links that look like [[link text][description]]
10530 when LINK TEXT does not have a protocol like \"http:\" and does not look
10531 like a filename (e.g. \"./blue.png\").
10533 These functions will be called *before* Org attempts to resolve the
10534 link by doing text searches in the current buffer - so if you want a
10535 link \"[[target]]\" to still find \"<<target>>\", your function should
10536 handle this as a special case.
10538 When the function does handle the link, it must return a non-nil value.
10539 If it decides that it is not responsible for this link, it must return
10540 nil to indicate that that Org-mode can continue with other options
10541 like exact and fuzzy text search.")
10543 (defun org-next-link (&optional search-backward)
10544 "Move forward to the next link.
10545 If the link is in hidden text, expose it."
10546 (interactive "P")
10547 (when (and org-link-search-failed (eq this-command last-command))
10548 (goto-char (point-min))
10549 (message "Link search wrapped back to beginning of buffer"))
10550 (setq org-link-search-failed nil)
10551 (let* ((pos (point))
10552 (ct (org-context))
10553 (a (assoc :link ct))
10554 (srch-fun (if search-backward 're-search-backward 're-search-forward)))
10555 (cond (a (goto-char (nth (if search-backward 1 2) a)))
10556 ((looking-at org-any-link-re)
10557 ;; Don't stay stuck at link without an org-link face
10558 (forward-char (if search-backward -1 1))))
10559 (if (funcall srch-fun org-any-link-re nil t)
10560 (progn
10561 (goto-char (match-beginning 0))
10562 (if (outline-invisible-p) (org-show-context)))
10563 (goto-char pos)
10564 (setq org-link-search-failed t)
10565 (message "No further link found"))))
10567 (defun org-previous-link ()
10568 "Move backward to the previous link.
10569 If the link is in hidden text, expose it."
10570 (interactive)
10571 (funcall 'org-next-link t))
10573 (defun org-translate-link (s)
10574 "Translate a link string if a translation function has been defined."
10575 (if (and org-link-translation-function
10576 (fboundp org-link-translation-function)
10577 (string-match "\\([a-zA-Z0-9]+\\):\\(.*\\)" s))
10578 (progn
10579 (setq s (funcall org-link-translation-function
10580 (match-string 1 s) (match-string 2 s)))
10581 (concat (car s) ":" (cdr s)))
10584 (defun org-translate-link-from-planner (type path)
10585 "Translate a link from Emacs Planner syntax so that Org can follow it.
10586 This is still an experimental function, your mileage may vary."
10587 (cond
10588 ((member type '("http" "https" "news" "ftp"))
10589 ;; standard Internet links are the same.
10590 nil)
10591 ((and (equal type "irc") (string-match "^//" path))
10592 ;; Planner has two / at the beginning of an irc link, we have 1.
10593 ;; We should have zero, actually....
10594 (setq path (substring path 1)))
10595 ((and (equal type "lisp") (string-match "^/" path))
10596 ;; Planner has a slash, we do not.
10597 (setq type "elisp" path (substring path 1)))
10598 ((string-match "^//\\(.?*\\)/\\(<.*>\\)$" path)
10599 ;; A typical message link. Planner has the id after the final slash,
10600 ;; we separate it with a hash mark
10601 (setq path (concat (match-string 1 path) "#"
10602 (org-remove-angle-brackets (match-string 2 path))))))
10603 (cons type path))
10605 (defun org-find-file-at-mouse (ev)
10606 "Open file link or URL at mouse."
10607 (interactive "e")
10608 (mouse-set-point ev)
10609 (org-open-at-point 'in-emacs))
10611 (defun org-open-at-mouse (ev)
10612 "Open file link or URL at mouse.
10613 See the docstring of `org-open-file' for details."
10614 (interactive "e")
10615 (mouse-set-point ev)
10616 (if (eq major-mode 'org-agenda-mode)
10617 (org-agenda-copy-local-variable 'org-link-abbrev-alist-local))
10618 (org-open-at-point))
10620 (defvar org-window-config-before-follow-link nil
10621 "The window configuration before following a link.
10622 This is saved in case the need arises to restore it.")
10624 (defvar org-open-link-marker (make-marker)
10625 "Marker pointing to the location where `org-open-at-point' was called.")
10627 ;;;###autoload
10628 (defun org-open-at-point-global ()
10629 "Follow a link like Org-mode does.
10630 This command can be called in any mode to follow a link that has
10631 Org-mode syntax."
10632 (interactive)
10633 (org-run-like-in-org-mode 'org-open-at-point))
10635 ;;;###autoload
10636 (defun org-open-link-from-string (s &optional arg reference-buffer)
10637 "Open a link in the string S, as if it was in Org-mode."
10638 (interactive "sLink: \nP")
10639 (let ((reference-buffer (or reference-buffer (current-buffer))))
10640 (with-temp-buffer
10641 (let ((org-inhibit-startup (not reference-buffer)))
10642 (org-mode)
10643 (insert s)
10644 (goto-char (point-min))
10645 (when reference-buffer
10646 (setq org-link-abbrev-alist-local
10647 (with-current-buffer reference-buffer
10648 org-link-abbrev-alist-local)))
10649 (org-open-at-point arg reference-buffer)))))
10651 (defvar org-open-at-point-functions nil
10652 "Hook that is run when following a link at point.
10654 Functions in this hook must return t if they identify and follow
10655 a link at point. If they don't find anything interesting at point,
10656 they must return nil.")
10658 (defvar org-link-search-inhibit-query nil) ;; dynamically scoped
10659 (defvar clean-buffer-list-kill-buffer-names) ; Defined in midnight.el
10660 (defun org-open-at-point (&optional arg reference-buffer)
10661 "Open link, timestamp, footnote or tags at point.
10663 When point is on a link, follow it. Normally, files will be
10664 opened by an appropriate application. If the optional prefix
10665 argument ARG is non-nil, Emacs will visit the file. With
10666 a double prefix argument, try to open outside of Emacs, in the
10667 application the system uses for this file type.
10669 When point is on a timestamp, open the agenda at the day
10670 specified.
10672 When point is a footnote definition, move to the first reference
10673 found. If it is on a reference, move to the associated
10674 definition.
10676 When point is on a headline, display a list of every link in the
10677 entry, so it is possible to pick one, or all, of them. If point
10678 is on a tag, call `org-tags-view' instead.
10680 When optional argument REFERENCE-BUFFER is non-nil, it should
10681 specify a buffer from where the link search should happen. This
10682 is used internally by `org-open-link-from-string'.
10684 On top of syntactically correct links, this function will open
10685 the link at point in comments or comment blocks and the first
10686 link in a property drawer line."
10687 (interactive "P")
10688 ;; On a code block, open block's results.
10689 (unless (call-interactively 'org-babel-open-src-block-result)
10690 (org-load-modules-maybe)
10691 (move-marker org-open-link-marker (point))
10692 (setq org-window-config-before-follow-link (current-window-configuration))
10693 (org-remove-occur-highlights nil nil t)
10694 (unless (run-hook-with-args-until-success 'org-open-at-point-functions)
10695 (let* ((context
10696 ;; Only consider supported types, even if they are not
10697 ;; the closest one.
10698 (org-element-lineage
10699 (org-element-context)
10700 '(comment comment-block footnote-definition footnote-reference
10701 headline inlinetask link node-property timestamp)
10703 (type (org-element-type context))
10704 (value (org-element-property :value context)))
10705 (cond
10706 ((not context) (user-error "No link found"))
10707 ;; Exception: open timestamps and links in properties drawers
10708 ;; and comments.
10709 ((memq type '(comment comment-block node-property))
10710 (cond ((org-in-regexp org-any-link-re)
10711 (org-open-link-from-string (match-string-no-properties 0)))
10712 ((or (org-at-timestamp-p t) (org-at-date-range-p t))
10713 (org-follow-timestamp-link))
10714 (t (user-error "No link found"))))
10715 ;; On a headline or an inlinetask, but not on a timestamp,
10716 ;; a link, a footnote reference or on tags.
10717 ((and (memq type '(headline inlinetask))
10718 ;; Not on tags.
10719 (progn (save-excursion (beginning-of-line)
10720 (looking-at org-complex-heading-regexp))
10721 (or (not (match-beginning 5))
10722 (< (point) (match-beginning 5)))))
10723 (let* ((data (org-offer-links-in-entry (current-buffer) (point) arg))
10724 (links (car data))
10725 (links-end (cdr data)))
10726 (if links
10727 (dolist (link (if (stringp links) (list links) links))
10728 (search-forward link nil links-end)
10729 (goto-char (match-beginning 0))
10730 (org-open-at-point))
10731 (require 'org-attach)
10732 (org-attach-reveal 'if-exists))))
10733 ;; Do nothing on white spaces after an object, unless point
10734 ;; is right after it.
10735 ((> (point)
10736 (save-excursion
10737 (goto-char (org-element-property :end context))
10738 (skip-chars-backward " \t")
10739 (point)))
10740 (user-error "No link found"))
10741 ((eq type 'timestamp) (org-follow-timestamp-link))
10742 ;; On tags within a headline or an inlinetask.
10743 ((and (memq type '(headline inlinetask))
10744 (progn (save-excursion (beginning-of-line)
10745 (looking-at org-complex-heading-regexp))
10746 (and (match-beginning 5)
10747 (>= (point) (match-beginning 5)))))
10748 (org-tags-view arg (substring (match-string 5) 0 -1)))
10749 ((eq type 'link)
10750 ;; When link is located within the description of another
10751 ;; link (e.g., an inline image), always open the parent
10752 ;; link.
10753 (let*((link (let ((up (org-element-property :parent context)))
10754 (if (eq (org-element-type up) 'link) up context)))
10755 (type (org-element-property :type link))
10756 (path (org-link-unescape (org-element-property :path link))))
10757 ;; Switch back to REFERENCE-BUFFER needed when called in
10758 ;; a temporary buffer through `org-open-link-from-string'.
10759 (with-current-buffer (or reference-buffer (current-buffer))
10760 (cond
10761 ((equal type "file")
10762 (if (string-match "[*?{]" (file-name-nondirectory path))
10763 (dired path)
10764 ;; Look into `org-link-protocols' in order to find
10765 ;; a DEDICATED-FUNCTION to open file. The function
10766 ;; will be applied on raw link instead of parsed
10767 ;; link due to the limitation in `org-add-link-type'
10768 ;; ("open" function called with a single argument).
10769 ;; If no such function is found, fallback to
10770 ;; `org-open-file'.
10772 ;; Note : "file+emacs" and "file+sys" types are
10773 ;; hard-coded in order to escape the previous
10774 ;; limitation.
10775 (let* ((option (org-element-property :search-option link))
10776 (app (org-element-property :application link))
10777 (dedicated-function
10778 (nth 1 (assoc app org-link-protocols))))
10779 (if dedicated-function
10780 (funcall dedicated-function
10781 (concat path
10782 (and option (concat "::" option))))
10783 (apply 'org-open-file
10784 path
10785 (cond (arg)
10786 ((equal app "emacs") 'emacs)
10787 ((equal app "sys") 'system))
10788 (cond ((not option) nil)
10789 ((org-string-match-p "\\`[0-9]+\\'" option)
10790 (list (string-to-number option)))
10791 (t (list nil
10792 (org-link-unescape option)))))))))
10793 ((assoc type org-link-protocols)
10794 (funcall (nth 1 (assoc type org-link-protocols)) path))
10795 ((equal type "help")
10796 (let ((f-or-v (intern path)))
10797 (cond ((fboundp f-or-v) (describe-function f-or-v))
10798 ((boundp f-or-v) (describe-variable f-or-v))
10799 (t (error "Not a known function or variable")))))
10800 ((member type '("http" "https" "ftp" "mailto" "news"))
10801 (browse-url (org-link-escape-browser (concat type ":" path))))
10802 ((equal type "doi")
10803 (browse-url
10804 (org-link-escape-browser (concat org-doi-server-url path))))
10805 ((equal type "message") (browse-url (concat type ":" path)))
10806 ((equal type "shell")
10807 (let ((buf (generate-new-buffer "*Org Shell Output*"))
10808 (cmd path))
10809 (if (or (and (org-string-nw-p
10810 org-confirm-shell-link-not-regexp)
10811 (string-match
10812 org-confirm-shell-link-not-regexp cmd))
10813 (not org-confirm-shell-link-function)
10814 (funcall org-confirm-shell-link-function
10815 (format "Execute \"%s\" in shell? "
10816 (org-add-props cmd nil
10817 'face 'org-warning))))
10818 (progn
10819 (message "Executing %s" cmd)
10820 (shell-command cmd buf)
10821 (when (featurep 'midnight)
10822 (setq clean-buffer-list-kill-buffer-names
10823 (cons buf
10824 clean-buffer-list-kill-buffer-names))))
10825 (user-error "Abort"))))
10826 ((equal type "elisp")
10827 (let ((cmd path))
10828 (if (or (and (org-string-nw-p
10829 org-confirm-elisp-link-not-regexp)
10830 (org-string-match-p
10831 org-confirm-elisp-link-not-regexp cmd))
10832 (not org-confirm-elisp-link-function)
10833 (funcall org-confirm-elisp-link-function
10834 (format "Execute \"%s\" as elisp? "
10835 (org-add-props cmd nil
10836 'face 'org-warning))))
10837 (message "%s => %s" cmd
10838 (if (eq (string-to-char cmd) ?\()
10839 (eval (read cmd))
10840 (call-interactively (read cmd))))
10841 (user-error "Abort"))))
10842 ((equal type "id")
10843 (require 'ord-id)
10844 (funcall (nth 1 (assoc "id" org-link-protocols)) path))
10845 ((member type '("coderef" "custom-id" "fuzzy" "radio"))
10846 (unless (run-hook-with-args-until-success
10847 'org-open-link-functions path)
10848 (if (not arg) (org-mark-ring-push)
10849 (switch-to-buffer-other-window
10850 (org-get-buffer-for-internal-link (current-buffer))))
10851 (let ((cmd `(org-link-search
10852 ,(if (member type '("custom-id" "coderef"))
10853 (org-element-property :raw-link link)
10854 path)
10855 ,(cond ((equal arg '(4)) 'occur)
10856 ((equal arg '(16)) 'org-occur))
10857 ,(org-element-property :begin link))))
10858 (condition-case nil
10859 (let ((org-link-search-inhibit-query t))
10860 (eval cmd))
10861 (error (progn (widen) (eval cmd)))))))
10862 (t (browse-url-at-point))))))
10863 ;; On a footnote reference or at a footnote definition's label.
10864 ((or (eq type 'footnote-reference)
10865 (and (eq type 'footnote-definition)
10866 (save-excursion
10867 ;; Do not validate action when point is on the
10868 ;; spaces right after the footnote label, in
10869 ;; order to be on par with behaviour on links.
10870 (skip-chars-forward " \t")
10871 (let ((begin
10872 (org-element-property :contents-begin context)))
10873 (if begin (< (point) begin)
10874 (= (org-element-property :post-affiliated context)
10875 (line-beginning-position)))))))
10876 (org-footnote-action))
10877 (t (user-error "No link found")))))
10878 (move-marker org-open-link-marker nil)
10879 (run-hook-with-args 'org-follow-link-hook)))
10881 (defun org-offer-links-in-entry (buffer marker &optional nth zero)
10882 "Offer links in the current entry and return the selected link.
10883 If there is only one link, return it.
10884 If NTH is an integer, return the NTH link found.
10885 If ZERO is a string, check also this string for a link, and if
10886 there is one, return it."
10887 (with-current-buffer buffer
10888 (save-excursion
10889 (save-restriction
10890 (widen)
10891 (goto-char marker)
10892 (let ((cnt ?0)
10893 (in-emacs (if (integerp nth) nil nth))
10894 have-zero end links link c)
10895 (when (and (stringp zero) (string-match org-bracket-link-regexp zero))
10896 (push (match-string 0 zero) links)
10897 (setq cnt (1- cnt) have-zero t))
10898 (save-excursion
10899 (org-back-to-heading t)
10900 (setq end (save-excursion (outline-next-heading) (point)))
10901 (while (re-search-forward org-any-link-re end t)
10902 (push (match-string 0) links))
10903 (setq links (org-uniquify (reverse links))))
10904 (cond
10905 ((null links)
10906 (message "No links"))
10907 ((equal (length links) 1)
10908 (setq link (car links)))
10909 ((and (integerp nth) (>= (length links) (if have-zero (1+ nth) nth)))
10910 (setq link (nth (if have-zero nth (1- nth)) links)))
10911 (t ; we have to select a link
10912 (save-excursion
10913 (save-window-excursion
10914 (delete-other-windows)
10915 (with-output-to-temp-buffer "*Select Link*"
10916 (mapc (lambda (l)
10917 (if (not (string-match org-bracket-link-regexp l))
10918 (princ (format "[%c] %s\n" (incf cnt)
10919 (org-remove-angle-brackets l)))
10920 (if (match-end 3)
10921 (princ (format "[%c] %s (%s)\n" (incf cnt)
10922 (match-string 3 l) (match-string 1 l)))
10923 (princ (format "[%c] %s\n" (incf cnt)
10924 (match-string 1 l))))))
10925 links))
10926 (org-fit-window-to-buffer (get-buffer-window "*Select Link*"))
10927 (message "Select link to open, RET to open all:")
10928 (setq c (read-char-exclusive))
10929 (and (get-buffer "*Select Link*") (kill-buffer "*Select Link*"))))
10930 (when (equal c ?q) (user-error "Abort"))
10931 (if (equal c ?\C-m)
10932 (setq link links)
10933 (setq nth (- c ?0))
10934 (if have-zero (setq nth (1+ nth)))
10935 (unless (and (integerp nth) (>= (length links) nth))
10936 (user-error "Invalid link selection"))
10937 (setq link (nth (1- nth) links)))))
10938 (cons link end))))))
10940 ;; TODO: These functions are deprecated since `org-open-at-point'
10941 ;; hard-codes behaviour for "file+emacs" and "file+sys" types.
10942 (defun org-open-file-with-system (path)
10943 "Open file at PATH using the system way of opening it."
10944 (org-open-file path 'system))
10945 (defun org-open-file-with-emacs (path)
10946 "Open file at PATH in Emacs."
10947 (org-open-file path 'emacs))
10950 ;;; File search
10952 (defvar org-create-file-search-functions nil
10953 "List of functions to construct the right search string for a file link.
10954 These functions are called in turn with point at the location to
10955 which the link should point.
10957 A function in the hook should first test if it would like to
10958 handle this file type, for example by checking the `major-mode'
10959 or the file extension. If it decides not to handle this file, it
10960 should just return nil to give other functions a chance. If it
10961 does handle the file, it must return the search string to be used
10962 when following the link. The search string will be part of the
10963 file link, given after a double colon, and `org-open-at-point'
10964 will automatically search for it. If special measures must be
10965 taken to make the search successful, another function should be
10966 added to the companion hook `org-execute-file-search-functions',
10967 which see.
10969 A function in this hook may also use `setq' to set the variable
10970 `description' to provide a suggestion for the descriptive text to
10971 be used for this link when it gets inserted into an Org-mode
10972 buffer with \\[org-insert-link].")
10974 (defvar org-execute-file-search-functions nil
10975 "List of functions to execute a file search triggered by a link.
10977 Functions added to this hook must accept a single argument, the
10978 search string that was part of the file link, the part after the
10979 double colon. The function must first check if it would like to
10980 handle this search, for example by checking the `major-mode' or
10981 the file extension. If it decides not to handle this search, it
10982 should just return nil to give other functions a chance. If it
10983 does handle the search, it must return a non-nil value to keep
10984 other functions from trying.
10986 Each function can access the current prefix argument through the
10987 variable `current-prefix-arg'. Note that a single prefix is used
10988 to force opening a link in Emacs, so it may be good to only use a
10989 numeric or double prefix to guide the search function.
10991 In case this is needed, a function in this hook can also restore
10992 the window configuration before `org-open-at-point' was called using:
10994 (set-window-configuration org-window-config-before-follow-link)")
10996 (defun org-link-search (s &optional type avoid-pos stealth)
10997 "Search for a link search option.
10998 If S is surrounded by forward slashes, it is interpreted as a
10999 regular expression. In org-mode files, this will create an `org-occur'
11000 sparse tree. In ordinary files, `occur' will be used to list matches.
11001 If the current buffer is in `dired-mode', grep will be used to search
11002 in all files. If AVOID-POS is given, ignore matches near that position.
11004 When optional argument STEALTH is non-nil, do not modify
11005 visibility around point, thus ignoring
11006 `org-show-hierarchy-above', `org-show-following-heading' and
11007 `org-show-siblings' variables."
11008 (let ((case-fold-search t)
11009 (s0 (mapconcat 'identity (org-split-string s "[ \t\r\n]+") " "))
11010 (markers (concat "\\(?:" (mapconcat (lambda (x) (regexp-quote (car x)))
11011 (append '(("") (" ") ("\t") ("\n"))
11012 org-emphasis-alist)
11013 "\\|") "\\)"))
11014 (pos (point))
11015 words re0 re2 re4_ re4 re5 re2a re2a_ reall)
11016 (cond
11017 ;; First check if there are any special search functions
11018 ((run-hook-with-args-until-success 'org-execute-file-search-functions s))
11019 ;; Now try the builtin stuff
11020 ((and (equal (string-to-char s0) ?#)
11021 (> (length s0) 1)
11022 (save-excursion
11023 (goto-char (point-min))
11024 (and
11025 (re-search-forward
11026 (concat "^[ \t]*:CUSTOM_ID:[ \t]+"
11027 (regexp-quote (substring s0 1)) "[ \t]*$") nil t)
11028 (setq type 'dedicated
11029 pos (match-beginning 0))))
11030 ;; There is an exact target for this
11031 (goto-char pos)
11032 (org-back-to-heading t)))
11033 ((save-excursion
11034 (goto-char (point-min))
11035 (and
11036 (re-search-forward
11037 (concat "<<" (regexp-quote s0) ">>") nil t)
11038 (setq type 'dedicated
11039 pos (match-beginning 0))))
11040 ;; There is an exact target for this
11041 (goto-char pos))
11042 ((save-excursion
11043 (goto-char (point-min))
11044 (and
11045 (re-search-forward
11046 (format "^[ \t]*#\\+NAME: %s" (regexp-quote s0)) nil t)
11047 (setq type 'dedicated pos (match-beginning 0))))
11048 ;; Found an element with a matching #+name affiliated keyword.
11049 (goto-char pos))
11050 ((and (string-match "^(\\(.*\\))$" s0)
11051 (save-excursion
11052 (goto-char (point-min))
11053 (and
11054 (re-search-forward
11055 (concat "[^[]" (regexp-quote
11056 (format org-coderef-label-format
11057 (match-string 1 s0))))
11058 nil t)
11059 (setq type 'dedicated
11060 pos (1+ (match-beginning 0))))))
11061 ;; There is a coderef target for this
11062 (goto-char pos))
11063 ((string-match "^/\\(.*\\)/$" s)
11064 ;; A regular expression
11065 (cond
11066 ((derived-mode-p 'org-mode)
11067 (org-occur (match-string 1 s)))
11068 (t (org-do-occur (match-string 1 s)))))
11069 ((and (derived-mode-p 'org-mode)
11070 (or (and (equal (string-to-char s) ?*) (setq s (substring s 1)))
11071 org-link-search-must-match-exact-headline))
11072 ;; Headline search.
11073 (goto-char (point-min))
11074 (cond
11075 ((let (case-fold-search)
11076 (re-search-forward
11077 (let* ((wspace "[ \t]")
11078 (wspaceopt (concat wspace "*"))
11079 (cookie (concat "\\(?:"
11080 wspaceopt
11081 "\\[[0-9]*\\(?:%\\|/[0-9]*\\)\\]"
11082 wspaceopt
11083 "\\)"))
11084 (sep (concat "\\(?:" wspace "+\\|" cookie "+\\)")))
11085 (concat
11086 org-outline-regexp-bol
11087 "\\(?:" org-todo-regexp "[ \t]+\\)?"
11088 "\\(?:\\[#.\\][ \t]+\\)?"
11089 sep "*"
11090 (mapconcat #'identity
11091 (org-split-string (regexp-quote s))
11092 (concat sep "+"))
11093 sep "*"
11094 (org-re "\\(?:[ \t]+:[[:alnum:]_@#%%:]+:\\)?")
11095 "[ \t]*$"))
11096 nil t))
11097 ;; OK, found a match
11098 (setq type 'dedicated)
11099 (goto-char (match-beginning 0)))
11100 ((and (not org-link-search-inhibit-query)
11101 (eq org-link-search-must-match-exact-headline 'query-to-create)
11102 (y-or-n-p "No match - create this as a new heading? "))
11103 (goto-char (point-max))
11104 (or (bolp) (newline))
11105 (insert "* " s "\n")
11106 (beginning-of-line 0))
11108 (goto-char pos)
11109 (error "No match"))))
11111 ;; A normal search string
11112 (remove-text-properties
11113 0 (length s)
11114 '(face nil mouse-face nil keymap nil fontified nil) s)
11115 ;; Make a series of regular expressions to find a match
11116 (setq words (org-split-string s "[ \n\r\t]+")
11118 re0 (concat "\\(<<" (regexp-quote s0) ">>\\)")
11119 re2 (concat markers "\\(" (mapconcat 'downcase words "[ \t]+")
11120 "\\)" markers)
11121 re2a_ (concat "\\(" (mapconcat 'downcase words
11122 "[ \t\r\n]+") "\\)[ \t\r\n]")
11123 re2a (concat "[ \t\r\n]" re2a_)
11124 re4_ (concat "\\(" (mapconcat 'downcase words
11125 "[^a-zA-Z_\r\n]+") "\\)[^a-zA-Z_]")
11126 re4 (concat "[^a-zA-Z_]" re4_)
11128 re5 (concat ".*" re4)
11129 reall (concat "\\(" re0 "\\)\\|\\(" re2 "\\)\\|\\(" re4
11130 "\\)\\|\\(" re5 "\\)"))
11131 (cond
11132 ((eq type 'org-occur) (org-occur reall))
11133 ((eq type 'occur) (org-do-occur (downcase reall) 'cleanup))
11134 (t (goto-char (point-min))
11135 (setq type 'fuzzy)
11136 (if (or (and (org-search-not-self 1 re0 nil t)
11137 (setq type 'dedicated))
11138 (org-search-not-self 1 re2 nil t)
11139 (org-search-not-self 1 re2a nil t)
11140 (org-search-not-self 1 re4 nil t)
11141 (org-search-not-self 1 re5 nil t))
11142 (goto-char (match-beginning 1))
11143 (goto-char pos)
11144 (error "No match"))))))
11145 (and (derived-mode-p 'org-mode)
11146 (not stealth)
11147 (org-show-context 'link-search))
11148 type))
11150 (defun org-search-not-self (group &rest args)
11151 "Execute `re-search-forward', but only accept matches that do not
11152 enclose the position of `org-open-link-marker'."
11153 (let ((m org-open-link-marker))
11154 (catch 'exit
11155 (while (apply 're-search-forward args)
11156 (unless (get-text-property (match-end group) 'intangible) ; Emacs 21
11157 (goto-char (match-end group))
11158 (if (and (or (not (eq (marker-buffer m) (current-buffer)))
11159 (> (match-beginning 0) (marker-position m))
11160 (< (match-end 0) (marker-position m)))
11161 (save-match-data
11162 (or (not (org-in-regexp
11163 org-bracket-link-analytic-regexp 1))
11164 (not (match-end 4)) ; no description
11165 (and (<= (match-beginning 4) (point))
11166 (>= (match-end 4) (point))))))
11167 (throw 'exit (point))))))))
11169 (defun org-get-buffer-for-internal-link (buffer)
11170 "Return a buffer to be used for displaying the link target of internal links."
11171 (cond
11172 ((not org-display-internal-link-with-indirect-buffer)
11173 buffer)
11174 ((string-match "(Clone)$" (buffer-name buffer))
11175 (message "Buffer is already a clone, not making another one")
11176 ;; we also do not modify visibility in this case
11177 buffer)
11178 (t ; make a new indirect buffer for displaying the link
11179 (let* ((bn (buffer-name buffer))
11180 (ibn (concat bn "(Clone)"))
11181 (ib (or (get-buffer ibn) (make-indirect-buffer buffer ibn 'clone))))
11182 (with-current-buffer ib (org-overview))
11183 ib))))
11185 (defun org-do-occur (regexp &optional cleanup)
11186 "Call the Emacs command `occur'.
11187 If CLEANUP is non-nil, remove the printout of the regular expression
11188 in the *Occur* buffer. This is useful if the regex is long and not useful
11189 to read."
11190 (occur regexp)
11191 (when cleanup
11192 (let ((cwin (selected-window)) win beg end)
11193 (when (setq win (get-buffer-window "*Occur*"))
11194 (select-window win))
11195 (goto-char (point-min))
11196 (when (re-search-forward "match[a-z]+" nil t)
11197 (setq beg (match-end 0))
11198 (if (re-search-forward "^[ \t]*[0-9]+" nil t)
11199 (setq end (1- (match-beginning 0)))))
11200 (and beg end (let ((inhibit-read-only t)) (delete-region beg end)))
11201 (goto-char (point-min))
11202 (select-window cwin))))
11204 ;;; The mark ring for links jumps
11206 (defvar org-mark-ring nil
11207 "Mark ring for positions before jumps in Org-mode.")
11208 (defvar org-mark-ring-last-goto nil
11209 "Last position in the mark ring used to go back.")
11210 ;; Fill and close the ring
11211 (setq org-mark-ring nil org-mark-ring-last-goto nil) ;; in case file is reloaded
11212 (loop for i from 1 to org-mark-ring-length do
11213 (push (make-marker) org-mark-ring))
11214 (setcdr (nthcdr (1- org-mark-ring-length) org-mark-ring)
11215 org-mark-ring)
11217 (defun org-mark-ring-push (&optional pos buffer)
11218 "Put the current position or POS into the mark ring and rotate it."
11219 (interactive)
11220 (setq pos (or pos (point)))
11221 (setq org-mark-ring (nthcdr (1- org-mark-ring-length) org-mark-ring))
11222 (move-marker (car org-mark-ring)
11223 (or pos (point))
11224 (or buffer (current-buffer)))
11225 (message "%s"
11226 (substitute-command-keys
11227 "Position saved to mark ring, go back with \\[org-mark-ring-goto].")))
11229 (defun org-mark-ring-goto (&optional n)
11230 "Jump to the previous position in the mark ring.
11231 With prefix arg N, jump back that many stored positions. When
11232 called several times in succession, walk through the entire ring.
11233 Org-mode commands jumping to a different position in the current file,
11234 or to another Org-mode file, automatically push the old position
11235 onto the ring."
11236 (interactive "p")
11237 (let (p m)
11238 (if (eq last-command this-command)
11239 (setq p (nthcdr n (or org-mark-ring-last-goto org-mark-ring)))
11240 (setq p org-mark-ring))
11241 (setq org-mark-ring-last-goto p)
11242 (setq m (car p))
11243 (org-pop-to-buffer-same-window (marker-buffer m))
11244 (goto-char m)
11245 (if (or (outline-invisible-p) (org-invisible-p2)) (org-show-context 'mark-goto))))
11247 (defun org-remove-angle-brackets (s)
11248 (if (equal (substring s 0 1) "<") (setq s (substring s 1)))
11249 (if (equal (substring s -1) ">") (setq s (substring s 0 -1)))
11251 (defun org-add-angle-brackets (s)
11252 (if (equal (substring s 0 1) "<") nil (setq s (concat "<" s)))
11253 (if (equal (substring s -1) ">") nil (setq s (concat s ">")))
11255 (defun org-remove-double-quotes (s)
11256 (if (equal (substring s 0 1) "\"") (setq s (substring s 1)))
11257 (if (equal (substring s -1) "\"") (setq s (substring s 0 -1)))
11260 ;;; Following specific links
11262 (defun org-follow-timestamp-link ()
11263 "Open an agenda view for the time-stamp date/range at point."
11264 (cond
11265 ((org-at-date-range-p t)
11266 (let ((org-agenda-start-on-weekday)
11267 (t1 (match-string 1))
11268 (t2 (match-string 2)) tt1 tt2)
11269 (setq tt1 (time-to-days (org-time-string-to-time t1))
11270 tt2 (time-to-days (org-time-string-to-time t2)))
11271 (let ((org-agenda-buffer-tmp-name
11272 (format "*Org Agenda(a:%s)"
11273 (concat (substring t1 0 10) "--" (substring t2 0 10)))))
11274 (org-agenda-list nil tt1 (1+ (- tt2 tt1))))))
11275 ((org-at-timestamp-p t)
11276 (let ((org-agenda-buffer-tmp-name
11277 (format "*Org Agenda(a:%s)" (substring (match-string 1) 0 10))))
11278 (org-agenda-list nil (time-to-days (org-time-string-to-time
11279 (substring (match-string 1) 0 10)))
11280 1)))
11281 (t (error "This should not happen"))))
11284 ;;; Following file links
11285 (declare-function mailcap-parse-mailcaps "mailcap" (&optional path force))
11286 (declare-function mailcap-extension-to-mime "mailcap" (extn))
11287 (declare-function mailcap-mime-info
11288 "mailcap" (string &optional request no-decode))
11289 (defvar org-wait nil)
11290 (defun org-open-file (path &optional in-emacs line search)
11291 "Open the file at PATH.
11292 First, this expands any special file name abbreviations. Then the
11293 configuration variable `org-file-apps' is checked if it contains an
11294 entry for this file type, and if yes, the corresponding command is launched.
11296 If no application is found, Emacs simply visits the file.
11298 With optional prefix argument IN-EMACS, Emacs will visit the file.
11299 With a double \\[universal-argument] \\[universal-argument] \
11300 prefix arg, Org tries to avoid opening in Emacs
11301 and to use an external application to visit the file.
11303 Optional LINE specifies a line to go to, optional SEARCH a string
11304 to search for. If LINE or SEARCH is given, the file will be
11305 opened in Emacs, unless an entry from org-file-apps that makes
11306 use of groups in a regexp matches.
11308 If you want to change the way frames are used when following a
11309 link, please customize `org-link-frame-setup'.
11311 If the file does not exist, an error is thrown."
11312 (let* ((file (if (equal path "")
11313 buffer-file-name
11314 (substitute-in-file-name (expand-file-name path))))
11315 (file-apps (append org-file-apps (org-default-apps)))
11316 (apps (org-remove-if
11317 'org-file-apps-entry-match-against-dlink-p file-apps))
11318 (apps-dlink (org-remove-if-not
11319 'org-file-apps-entry-match-against-dlink-p file-apps))
11320 (remp (and (assq 'remote apps) (org-file-remote-p file)))
11321 (dirp (if remp nil (file-directory-p file)))
11322 (file (if (and dirp org-open-directory-means-index-dot-org)
11323 (concat (file-name-as-directory file) "index.org")
11324 file))
11325 (a-m-a-p (assq 'auto-mode apps))
11326 (dfile (downcase file))
11327 ;; reconstruct the original file: link from the PATH, LINE and SEARCH args
11328 (link (cond ((and (eq line nil)
11329 (eq search nil))
11330 file)
11331 (line
11332 (concat file "::" (number-to-string line)))
11333 (search
11334 (concat file "::" search))))
11335 (dlink (downcase link))
11336 (old-buffer (current-buffer))
11337 (old-pos (point))
11338 (old-mode major-mode)
11339 ext cmd link-match-data)
11340 (if (string-match "^.*\\.\\([a-zA-Z0-9]+\\.gz\\)$" dfile)
11341 (setq ext (match-string 1 dfile))
11342 (if (string-match "^.*\\.\\([a-zA-Z0-9]+\\)$" dfile)
11343 (setq ext (match-string 1 dfile))))
11344 (cond
11345 ((member in-emacs '((16) system))
11346 (setq cmd (cdr (assoc 'system apps))))
11347 (in-emacs (setq cmd 'emacs))
11349 (setq cmd (or (and remp (cdr (assoc 'remote apps)))
11350 (and dirp (cdr (assoc 'directory apps)))
11351 ; first, try matching against apps-dlink
11352 ; if we get a match here, store the match data for later
11353 (let ((match (assoc-default dlink apps-dlink
11354 'string-match)))
11355 (if match
11356 (progn (setq link-match-data (match-data))
11357 match)
11358 (progn (setq in-emacs (or in-emacs line search))
11359 nil))) ; if we have no match in apps-dlink,
11360 ; always open the file in emacs if line or search
11361 ; is given (for backwards compatibility)
11362 (assoc-default dfile (org-apps-regexp-alist apps a-m-a-p)
11363 'string-match)
11364 (cdr (assoc ext apps))
11365 (cdr (assoc t apps))))))
11366 (when (eq cmd 'system)
11367 (setq cmd (cdr (assoc 'system apps))))
11368 (when (eq cmd 'default)
11369 (setq cmd (cdr (assoc t apps))))
11370 (when (eq cmd 'mailcap)
11371 (require 'mailcap)
11372 (mailcap-parse-mailcaps)
11373 (let* ((mime-type (mailcap-extension-to-mime (or ext "")))
11374 (command (mailcap-mime-info mime-type)))
11375 (if (stringp command)
11376 (setq cmd command)
11377 (setq cmd 'emacs))))
11378 (if (and (not (eq cmd 'emacs)) ; Emacs has no problems with non-ex files
11379 (not (file-exists-p file))
11380 (not org-open-non-existing-files))
11381 (user-error "No such file: %s" file))
11382 (cond
11383 ((and (stringp cmd) (not (string-match "^\\s-*$" cmd)))
11384 ;; Remove quotes around the file name - we'll use shell-quote-argument.
11385 (while (string-match "['\"]%s['\"]" cmd)
11386 (setq cmd (replace-match "%s" t t cmd)))
11387 (while (string-match "%s" cmd)
11388 (setq cmd (replace-match
11389 (save-match-data
11390 (shell-quote-argument
11391 (convert-standard-filename file)))
11392 t t cmd)))
11394 ;; Replace "%1", "%2" etc. in command with group matches from regex
11395 (save-match-data
11396 (let ((match-index 1)
11397 (number-of-groups (- (/ (length link-match-data) 2) 1)))
11398 (set-match-data link-match-data)
11399 (while (<= match-index number-of-groups)
11400 (let ((regex (concat "%" (number-to-string match-index)))
11401 (replace-with (match-string match-index dlink)))
11402 (while (string-match regex cmd)
11403 (setq cmd (replace-match replace-with t t cmd))))
11404 (setq match-index (+ match-index 1)))))
11406 (save-window-excursion
11407 (message "Running %s...done" cmd)
11408 (start-process-shell-command cmd nil cmd)
11409 (and (boundp 'org-wait) (numberp org-wait) (sit-for org-wait))))
11410 ((or (stringp cmd)
11411 (eq cmd 'emacs))
11412 (funcall (cdr (assq 'file org-link-frame-setup)) file)
11413 (widen)
11414 (if line (progn (org-goto-line line)
11415 (if (derived-mode-p 'org-mode)
11416 (org-reveal)))
11417 (if search (org-link-search search))))
11418 ((consp cmd)
11419 (let ((file (convert-standard-filename file)))
11420 (save-match-data
11421 (set-match-data link-match-data)
11422 (eval cmd))))
11423 (t (funcall (cdr (assq 'file org-link-frame-setup)) file)))
11424 (and (derived-mode-p 'org-mode) (eq old-mode 'org-mode)
11425 (or (not (equal old-buffer (current-buffer)))
11426 (not (equal old-pos (point))))
11427 (org-mark-ring-push old-pos old-buffer))))
11429 (defun org-file-apps-entry-match-against-dlink-p (entry)
11430 "This function returns non-nil if `entry' uses a regular
11431 expression which should be matched against the whole link by
11432 org-open-file.
11434 It assumes that is the case when the entry uses a regular
11435 expression which has at least one grouping construct and the
11436 action is either a lisp form or a command string containing
11437 '%1', i.e. using at least one subexpression match as a
11438 parameter."
11439 (let ((selector (car entry))
11440 (action (cdr entry)))
11441 (if (stringp selector)
11442 (and (> (regexp-opt-depth selector) 0)
11443 (or (and (stringp action)
11444 (string-match "%[0-9]" action))
11445 (consp action)))
11446 nil)))
11448 (defun org-default-apps ()
11449 "Return the default applications for this operating system."
11450 (cond
11451 ((eq system-type 'darwin)
11452 org-file-apps-defaults-macosx)
11453 ((eq system-type 'windows-nt)
11454 org-file-apps-defaults-windowsnt)
11455 (t org-file-apps-defaults-gnu)))
11457 (defun org-apps-regexp-alist (list &optional add-auto-mode)
11458 "Convert extensions to regular expressions in the cars of LIST.
11459 Also, weed out any non-string entries, because the return value is used
11460 only for regexp matching.
11461 When ADD-AUTO-MODE is set, make all matches in `auto-mode-alist'
11462 point to the symbol `emacs', indicating that the file should
11463 be opened in Emacs."
11464 (append
11465 (delq nil
11466 (mapcar (lambda (x)
11467 (if (not (stringp (car x)))
11469 (if (string-match "\\W" (car x))
11471 (cons (concat "\\." (car x) "\\'") (cdr x)))))
11472 list))
11473 (if add-auto-mode
11474 (mapcar (lambda (x) (cons (car x) 'emacs)) auto-mode-alist))))
11476 (defvar ange-ftp-name-format) ; to silence the XEmacs compiler.
11477 (defun org-file-remote-p (file)
11478 "Test whether FILE specifies a location on a remote system.
11479 Return non-nil if the location is indeed remote.
11481 For example, the filename \"/user@host:/foo\" specifies a location
11482 on the system \"/user@host:\"."
11483 (cond ((fboundp 'file-remote-p)
11484 (file-remote-p file))
11485 ((fboundp 'tramp-handle-file-remote-p)
11486 (tramp-handle-file-remote-p file))
11487 ((and (boundp 'ange-ftp-name-format)
11488 (string-match (car ange-ftp-name-format) file))
11489 t)))
11492 ;;;; Refiling
11494 (defun org-get-org-file ()
11495 "Read a filename, with default directory `org-directory'."
11496 (let ((default (or org-default-notes-file remember-data-file)))
11497 (read-file-name (format "File name [%s]: " default)
11498 (file-name-as-directory org-directory)
11499 default)))
11501 (defun org-notes-order-reversed-p ()
11502 "Check if the current file should receive notes in reversed order."
11503 (cond
11504 ((not org-reverse-note-order) nil)
11505 ((eq t org-reverse-note-order) t)
11506 ((not (listp org-reverse-note-order)) nil)
11507 (t (catch 'exit
11508 (let ((all org-reverse-note-order)
11509 entry)
11510 (while (setq entry (pop all))
11511 (if (string-match (car entry) buffer-file-name)
11512 (throw 'exit (cdr entry))))
11513 nil)))))
11515 (defvar org-refile-target-table nil
11516 "The list of refile targets, created by `org-refile'.")
11518 (defvar org-agenda-new-buffers nil
11519 "Buffers created to visit agenda files.")
11521 (defvar org-refile-cache nil
11522 "Cache for refile targets.")
11524 (defvar org-refile-markers nil
11525 "All the markers used for caching refile locations.")
11527 (defun org-refile-marker (pos)
11528 "Get a new refile marker, but only if caching is in use."
11529 (if (not org-refile-use-cache)
11531 (let ((m (make-marker)))
11532 (move-marker m pos)
11533 (push m org-refile-markers)
11534 m)))
11536 (defun org-refile-cache-clear ()
11537 "Clear the refile cache and disable all the markers."
11538 (mapc (lambda (m) (move-marker m nil)) org-refile-markers)
11539 (setq org-refile-markers nil)
11540 (setq org-refile-cache nil)
11541 (message "Refile cache has been cleared"))
11543 (defun org-refile-cache-check-set (set)
11544 "Check if all the markers in the cache still have live buffers."
11545 (let (marker)
11546 (catch 'exit
11547 (while (and set (setq marker (nth 3 (pop set))))
11548 ;; If `org-refile-use-outline-path' is 'file, marker may be nil
11549 (when (and marker (null (marker-buffer marker)))
11550 (message "Please regenerate the refile cache with `C-0 C-c C-w'")
11551 (sit-for 3)
11552 (throw 'exit nil)))
11553 t)))
11555 (defun org-refile-cache-put (set &rest identifiers)
11556 "Push the refile targets SET into the cache, under IDENTIFIERS."
11557 (let* ((key (sha1 (prin1-to-string identifiers)))
11558 (entry (assoc key org-refile-cache)))
11559 (if entry
11560 (setcdr entry set)
11561 (push (cons key set) org-refile-cache))))
11563 (defun org-refile-cache-get (&rest identifiers)
11564 "Retrieve the cached value for refile targets given by IDENTIFIERS."
11565 (cond
11566 ((not org-refile-cache) nil)
11567 ((not org-refile-use-cache) (org-refile-cache-clear) nil)
11569 (let ((set (cdr (assoc (sha1 (prin1-to-string identifiers))
11570 org-refile-cache))))
11571 (and set (org-refile-cache-check-set set) set)))))
11573 (defun org-refile-get-targets (&optional default-buffer excluded-entries)
11574 "Produce a table with refile targets."
11575 (let ((case-fold-search nil)
11576 ;; otherwise org confuses "TODO" as a kw and "Todo" as a word
11577 (entries (or org-refile-targets '((nil . (:level . 1)))))
11578 targets tgs txt re files f desc descre fast-path-p level pos0)
11579 (message "Getting targets...")
11580 (with-current-buffer (or default-buffer (current-buffer))
11581 (while (setq entry (pop entries))
11582 (setq files (car entry) desc (cdr entry))
11583 (setq fast-path-p nil)
11584 (cond
11585 ((null files) (setq files (list (current-buffer))))
11586 ((eq files 'org-agenda-files)
11587 (setq files (org-agenda-files 'unrestricted)))
11588 ((and (symbolp files) (fboundp files))
11589 (setq files (funcall files)))
11590 ((and (symbolp files) (boundp files))
11591 (setq files (symbol-value files))))
11592 (if (stringp files) (setq files (list files)))
11593 (cond
11594 ((eq (car desc) :tag)
11595 (setq descre (concat "^\\*+[ \t]+.*?:" (regexp-quote (cdr desc)) ":")))
11596 ((eq (car desc) :todo)
11597 (setq descre (concat "^\\*+[ \t]+" (regexp-quote (cdr desc)) "[ \t]")))
11598 ((eq (car desc) :regexp)
11599 (setq descre (cdr desc)))
11600 ((eq (car desc) :level)
11601 (setq descre (concat "^\\*\\{" (number-to-string
11602 (if org-odd-levels-only
11603 (1- (* 2 (cdr desc)))
11604 (cdr desc)))
11605 "\\}[ \t]")))
11606 ((eq (car desc) :maxlevel)
11607 (setq fast-path-p t)
11608 (setq descre (concat "^\\*\\{1," (number-to-string
11609 (if org-odd-levels-only
11610 (1- (* 2 (cdr desc)))
11611 (cdr desc)))
11612 "\\}[ \t]")))
11613 (t (error "Bad refiling target description %s" desc)))
11614 (while (setq f (pop files))
11615 (with-current-buffer
11616 (if (bufferp f) f (org-get-agenda-file-buffer f))
11618 (setq tgs (org-refile-cache-get (buffer-file-name) descre))
11619 (progn
11620 (if (bufferp f) (setq f (buffer-file-name
11621 (buffer-base-buffer f))))
11622 (setq f (and f (expand-file-name f)))
11623 (if (eq org-refile-use-outline-path 'file)
11624 (push (list (file-name-nondirectory f) f nil nil) tgs))
11625 (save-excursion
11626 (save-restriction
11627 (widen)
11628 (goto-char (point-min))
11629 (while (re-search-forward descre nil t)
11630 (goto-char (setq pos0 (point-at-bol)))
11631 (catch 'next
11632 (when org-refile-target-verify-function
11633 (save-match-data
11634 (or (funcall org-refile-target-verify-function)
11635 (throw 'next t))))
11636 (when (and (looking-at org-complex-heading-regexp)
11637 (not (member (match-string 4) excluded-entries))
11638 (match-string 4))
11639 (setq level (org-reduced-level
11640 (- (match-end 1) (match-beginning 1)))
11641 txt (org-link-display-format (match-string 4))
11642 txt (replace-regexp-in-string "\\( *\[[0-9]+/?[0-9]*%?\]\\)+$" "" txt)
11643 re (format org-complex-heading-regexp-format
11644 (regexp-quote (match-string 4))))
11645 (when org-refile-use-outline-path
11646 (setq txt (mapconcat
11647 'org-protect-slash
11648 (append
11649 (if (eq org-refile-use-outline-path
11650 'file)
11651 (list (file-name-nondirectory
11652 (buffer-file-name
11653 (buffer-base-buffer))))
11654 (if (eq org-refile-use-outline-path
11655 'full-file-path)
11656 (list (buffer-file-name
11657 (buffer-base-buffer)))))
11658 (org-get-outline-path fast-path-p
11659 level txt)
11660 (list txt))
11661 "/")))
11662 (push (list txt f re (org-refile-marker (point)))
11663 tgs)))
11664 (when (= (point) pos0)
11665 ;; verification function has not moved point
11666 (goto-char (point-at-eol))))))))
11667 (when org-refile-use-cache
11668 (org-refile-cache-put tgs (buffer-file-name) descre))
11669 (setq targets (append tgs targets))))))
11670 (message "Getting targets...done")
11671 (nreverse targets)))
11673 (defun org-protect-slash (s)
11674 (while (string-match "/" s)
11675 (setq s (replace-match "\\" t t s)))
11678 (defvar org-olpa (make-vector 20 nil))
11680 (defun org-get-outline-path (&optional fastp level heading)
11681 "Return the outline path to the current entry, as a list.
11683 The parameters FASTP, LEVEL, and HEADING are for use by a scanner
11684 routine which makes outline path derivations for an entire file,
11685 avoiding backtracing. Refile target collection makes use of that."
11686 (if fastp
11687 (progn
11688 (if (> level 19)
11689 (error "Outline path failure, more than 19 levels"))
11690 (loop for i from level upto 19 do
11691 (aset org-olpa i nil))
11692 (prog1
11693 (delq nil (append org-olpa nil))
11694 (aset org-olpa level heading)))
11695 (let (rtn case-fold-search)
11696 (save-excursion
11697 (save-restriction
11698 (widen)
11699 (while (org-up-heading-safe)
11700 (when (looking-at org-complex-heading-regexp)
11701 (push (org-trim
11702 (replace-regexp-in-string
11703 ;; Remove statistical/checkboxes cookies
11704 "\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]" ""
11705 (org-match-string-no-properties 4)))
11706 rtn)))
11707 rtn)))))
11709 (defun org-format-outline-path (path &optional width prefix separator)
11710 "Format the outline path PATH for display.
11711 WIDTH is the maximum number of characters that is available.
11712 PREFIX is a prefix to be included in the returned string,
11713 such as the file name.
11714 SEPARATOR is inserted between the different parts of the path,
11715 the default is \"/\"."
11716 (setq width (or width 79))
11717 (if prefix (setq width (- width (length prefix))))
11718 (if (not path)
11719 (or prefix "")
11720 (let* ((nsteps (length path))
11721 (total-width (+ nsteps (apply '+ (mapcar 'length path))))
11722 (maxwidth (if (<= total-width width)
11723 10000 ;; everything fits
11724 ;; we need to shorten the level headings
11725 (/ (- width nsteps) nsteps)))
11726 (org-odd-levels-only nil)
11727 (n 0)
11728 (total (1+ (length prefix))))
11729 (setq maxwidth (max maxwidth 10))
11730 (concat prefix
11731 (if prefix (or separator "/"))
11732 (mapconcat
11733 (lambda (h)
11734 (setq n (1+ n))
11735 (if (and (= n nsteps) (< maxwidth 10000))
11736 (setq maxwidth (- total-width total)))
11737 (if (< (length h) maxwidth)
11738 (progn (setq total (+ total (length h) 1)) h)
11739 (setq h (substring h 0 (- maxwidth 2))
11740 total (+ total maxwidth 1))
11741 (if (string-match "[ \t]+\\'" h)
11742 (setq h (substring h 0 (match-beginning 0))))
11743 (setq h (concat h "..")))
11744 (org-add-props h nil 'face
11745 (nth (% (1- n) org-n-level-faces)
11746 org-level-faces))
11748 path (or separator "/"))))))
11750 (defun org-display-outline-path (&optional file current separator just-return-string)
11751 "Display the current outline path in the echo area.
11753 If FILE is non-nil, prepend the output with the file name.
11754 If CURRENT is non-nil, append the current heading to the output.
11755 SEPARATOR is passed through to `org-format-outline-path'. It separates
11756 the different parts of the path and defaults to \"/\".
11757 If JUST-RETURN-STRING is non-nil, return a string, don't display a message."
11758 (interactive "P")
11759 (let* (case-fold-search
11760 (bfn (buffer-file-name (buffer-base-buffer)))
11761 (path (and (derived-mode-p 'org-mode) (org-get-outline-path)))
11762 res)
11763 (if current (setq path (append path
11764 (save-excursion
11765 (org-back-to-heading t)
11766 (if (looking-at org-complex-heading-regexp)
11767 (list (match-string 4)))))))
11768 (setq res
11769 (org-format-outline-path
11770 path
11771 (1- (frame-width))
11772 (and file bfn (concat (file-name-nondirectory bfn) separator))
11773 separator))
11774 (if just-return-string
11775 (org-no-properties res)
11776 (org-unlogged-message "%s" res))))
11778 (defvar org-refile-history nil
11779 "History for refiling operations.")
11781 (defvar org-after-refile-insert-hook nil
11782 "Hook run after `org-refile' has inserted its stuff at the new location.
11783 Note that this is still *before* the stuff will be removed from
11784 the *old* location.")
11786 (defvar org-capture-last-stored-marker)
11787 (defvar org-refile-keep nil
11788 "Non-nil means `org-refile' will copy instead of refile.")
11790 (defun org-copy ()
11791 "Like `org-refile', but copy."
11792 (interactive)
11793 (let ((org-refile-keep t))
11794 (funcall 'org-refile nil nil nil "Copy")))
11796 (defun org-refile (&optional arg default-buffer rfloc msg)
11797 "Move the entry or entries at point to another heading.
11798 The list of target headings is compiled using the information in
11799 `org-refile-targets', which see.
11801 At the target location, the entry is filed as a subitem of the
11802 target heading. Depending on `org-reverse-note-order', the new
11803 subitem will either be the first or the last subitem.
11805 If there is an active region, all entries in that region will be
11806 refiled. However, the region must fulfill the requirement that
11807 the first heading sets the top-level of the moved text.
11809 With prefix arg ARG, the command will only visit the target
11810 location and not actually move anything.
11812 With a double prefix arg \\[universal-argument] \\[universal-argument], go to the location where the last
11813 refiling operation has put the subtree.
11815 With a numeric prefix argument of `2', refile to the running clock.
11817 With a numeric prefix argument of `3', emulate `org-refile-keep'
11818 being set to `t' and copy to the target location, don't move it.
11819 Beware that keeping refiled entries may result in duplicated ID
11820 properties.
11822 RFLOC can be a refile location obtained in a different way.
11824 MSG is a string to replace \"Refile\" in the default prompt with
11825 another verb. E.g. `org-copy' sets this parameter to \"Copy\".
11827 See also `org-refile-use-outline-path' and `org-completion-use-ido'.
11829 If you are using target caching (see `org-refile-use-cache'), you
11830 have to clear the target cache in order to find new targets.
11831 This can be done with a 0 prefix (`C-0 C-c C-w') or a triple
11832 prefix argument (`C-u C-u C-u C-c C-w')."
11833 (interactive "P")
11834 (if (member arg '(0 (64)))
11835 (org-refile-cache-clear)
11836 (let* ((actionmsg (cond (msg msg)
11837 ((equal arg 3) "Refile (and keep)")
11838 (t "Refile")))
11839 (cbuf (current-buffer))
11840 (regionp (org-region-active-p))
11841 (region-start (and regionp (region-beginning)))
11842 (region-end (and regionp (region-end)))
11843 (filename (buffer-file-name (buffer-base-buffer cbuf)))
11844 (org-refile-keep (if (equal arg 3) t org-refile-keep))
11845 pos it nbuf file re level reversed)
11846 (setq last-command nil)
11847 (when regionp
11848 (goto-char region-start)
11849 (or (bolp) (goto-char (point-at-bol)))
11850 (setq region-start (point))
11851 (unless (or (org-kill-is-subtree-p
11852 (buffer-substring region-start region-end))
11853 (prog1 org-refile-active-region-within-subtree
11854 (let ((s (point-at-eol)))
11855 (org-toggle-heading)
11856 (setq region-end (+ (- (point-at-eol) s) region-end)))))
11857 (user-error "The region is not a (sequence of) subtree(s)")))
11858 (if (equal arg '(16))
11859 (org-refile-goto-last-stored)
11860 (when (or
11861 (and (equal arg 2)
11862 org-clock-hd-marker (marker-buffer org-clock-hd-marker)
11863 (prog1
11864 (setq it (list (or org-clock-heading "running clock")
11865 (buffer-file-name
11866 (marker-buffer org-clock-hd-marker))
11868 (marker-position org-clock-hd-marker)))
11869 (setq arg nil)))
11870 (setq it (or rfloc
11871 (let (heading-text)
11872 (save-excursion
11873 (unless (and arg (listp arg))
11874 (org-back-to-heading t)
11875 (setq heading-text
11876 (replace-regexp-in-string
11877 org-bracket-link-regexp
11878 "\\3"
11879 (nth 4 (org-heading-components)))))
11880 (org-refile-get-location
11881 (cond ((and arg (listp arg)) "Goto")
11882 (regionp (concat actionmsg " region to"))
11883 (t (concat actionmsg " subtree \""
11884 heading-text "\" to")))
11885 default-buffer
11886 (and (not (equal '(4) arg))
11887 org-refile-allow-creating-parent-nodes)
11888 arg))))))
11889 (setq file (nth 1 it)
11890 re (nth 2 it)
11891 pos (nth 3 it))
11892 (if (and (not arg)
11894 (equal (buffer-file-name) file)
11895 (if regionp
11896 (and (>= pos region-start)
11897 (<= pos region-end))
11898 (and (>= pos (point))
11899 (< pos (save-excursion
11900 (org-end-of-subtree t t))))))
11901 (error "Cannot refile to position inside the tree or region"))
11902 (setq nbuf (or (find-buffer-visiting file)
11903 (find-file-noselect file)))
11904 (if (and arg (not (equal arg 3)))
11905 (progn
11906 (org-pop-to-buffer-same-window nbuf)
11907 (goto-char pos)
11908 (org-show-context 'org-goto))
11909 (if regionp
11910 (progn
11911 (org-kill-new (buffer-substring region-start region-end))
11912 (org-save-markers-in-region region-start region-end))
11913 (org-copy-subtree 1 nil t))
11914 (with-current-buffer (setq nbuf (or (find-buffer-visiting file)
11915 (find-file-noselect file)))
11916 (setq reversed (org-notes-order-reversed-p))
11917 (save-excursion
11918 (save-restriction
11919 (widen)
11920 (if pos
11921 (progn
11922 (goto-char pos)
11923 (looking-at org-outline-regexp)
11924 (setq level (org-get-valid-level (funcall outline-level) 1))
11925 (goto-char
11926 (if reversed
11927 (or (outline-next-heading) (point-max))
11928 (or (save-excursion (org-get-next-sibling))
11929 (org-end-of-subtree t t)
11930 (point-max)))))
11931 (setq level 1)
11932 (if (not reversed)
11933 (goto-char (point-max))
11934 (goto-char (point-min))
11935 (or (outline-next-heading) (goto-char (point-max)))))
11936 (if (not (bolp)) (newline))
11937 (org-paste-subtree level nil nil t)
11938 (when org-log-refile
11939 (org-add-log-setup 'refile nil nil 'findpos org-log-refile)
11940 (unless (eq org-log-refile 'note)
11941 (save-excursion (org-add-log-note))))
11942 (and org-auto-align-tags
11943 (let ((org-loop-over-headlines-in-active-region nil))
11944 (org-set-tags nil t)))
11945 (let ((bookmark-name (plist-get org-bookmark-names-plist
11946 :last-refile)))
11947 (when bookmark-name
11948 (with-demoted-errors
11949 (bookmark-set bookmark-name))))
11950 ;; If we are refiling for capture, make sure that the
11951 ;; last-capture pointers point here
11952 (when (org-bound-and-true-p org-refile-for-capture)
11953 (let ((bookmark-name (plist-get org-bookmark-names-plist
11954 :last-capture-marker)))
11955 (when bookmark-name
11956 (with-demoted-errors
11957 (bookmark-set bookmark-name))))
11958 (move-marker org-capture-last-stored-marker (point)))
11959 (if (fboundp 'deactivate-mark) (deactivate-mark))
11960 (run-hooks 'org-after-refile-insert-hook))))
11961 (unless org-refile-keep
11962 (if regionp
11963 (delete-region (point) (+ (point) (- region-end region-start)))
11964 (delete-region
11965 (and (org-back-to-heading t) (point))
11966 (min (1+ (buffer-size)) (org-end-of-subtree t t) (point)))))
11967 (when (featurep 'org-inlinetask)
11968 (org-inlinetask-remove-END-maybe))
11969 (setq org-markers-to-move nil)
11970 (message (concat actionmsg " to \"%s\" in file %s: done") (car it) file)))))))
11972 (defun org-refile-goto-last-stored ()
11973 "Go to the location where the last refile was stored."
11974 (interactive)
11975 (bookmark-jump (plist-get org-bookmark-names-plist :last-refile))
11976 (message "This is the location of the last refile"))
11978 (defun org-refile--get-location (refloc tbl)
11979 "When user refile to REFLOC, find the associated target in TBL.
11980 Also check `org-refile-target-table'."
11981 (car (delq
11983 (mapcar
11984 (lambda (r) (or (assoc r tbl)
11985 (assoc r org-refile-target-table)))
11986 (list (replace-regexp-in-string "/$" "" refloc)
11987 (replace-regexp-in-string "\\([^/]\\)$" "\\1/" refloc))))))
11989 (defun org-refile-get-location (&optional prompt default-buffer new-nodes
11990 no-exclude)
11991 "Prompt the user for a refile location, using PROMPT.
11992 PROMPT should not be suffixed with a colon and a space, because
11993 this function appends the default value from
11994 `org-refile-history' automatically, if that is not empty.
11995 When NO-EXCLUDE is set, do not exclude headlines in the current subtree,
11996 this is used for the GOTO interface."
11997 (let ((org-refile-targets org-refile-targets)
11998 (org-refile-use-outline-path org-refile-use-outline-path)
11999 excluded-entries)
12000 (when (and (derived-mode-p 'org-mode)
12001 (not org-refile-use-cache)
12002 (not no-exclude))
12003 (org-map-tree
12004 (lambda()
12005 (setq excluded-entries
12006 (append excluded-entries (list (org-get-heading t t)))))))
12007 (setq org-refile-target-table
12008 (org-refile-get-targets default-buffer excluded-entries)))
12009 (unless org-refile-target-table
12010 (user-error "No refile targets"))
12011 (let* ((cbuf (current-buffer))
12012 (partial-completion-mode nil)
12013 (cfn (buffer-file-name (buffer-base-buffer cbuf)))
12014 (cfunc (if (and org-refile-use-outline-path
12015 org-outline-path-complete-in-steps)
12016 'org-olpath-completing-read
12017 'org-icompleting-read))
12018 (extra (if org-refile-use-outline-path "/" ""))
12019 (cbnex (concat (buffer-name) extra))
12020 (filename (and cfn (expand-file-name cfn)))
12021 (tbl (mapcar
12022 (lambda (x)
12023 (if (and (not (member org-refile-use-outline-path
12024 '(file full-file-path)))
12025 (not (equal filename (nth 1 x))))
12026 (cons (concat (car x) extra " ("
12027 (file-name-nondirectory (nth 1 x)) ")")
12028 (cdr x))
12029 (cons (concat (car x) extra) (cdr x))))
12030 org-refile-target-table))
12031 (completion-ignore-case t)
12032 cdef
12033 (prompt (concat prompt
12034 (or (and (car org-refile-history)
12035 (concat " (default " (car org-refile-history) ")"))
12036 (and (assoc cbnex tbl) (setq cdef cbnex)
12037 (concat " (default " cbnex ")"))) ": "))
12038 pa answ parent-target child parent old-hist)
12039 (setq old-hist org-refile-history)
12040 (setq answ (funcall cfunc prompt tbl nil (not new-nodes)
12041 nil 'org-refile-history (or cdef (car org-refile-history))))
12042 (if (setq pa (org-refile--get-location answ tbl))
12043 (progn
12044 (org-refile-check-position pa)
12045 (when (or (not org-refile-history)
12046 (not (eq old-hist org-refile-history))
12047 (not (equal (car pa) (car org-refile-history))))
12048 (setq org-refile-history
12049 (cons (car pa) (if (assoc (car org-refile-history) tbl)
12050 org-refile-history
12051 (cdr org-refile-history))))
12052 (if (equal (car org-refile-history) (nth 1 org-refile-history))
12053 (pop org-refile-history)))
12055 (if (string-match "\\`\\(.*\\)/\\([^/]+\\)\\'" answ)
12056 (progn
12057 (setq parent (match-string 1 answ)
12058 child (match-string 2 answ))
12059 (setq parent-target (org-refile--get-location parent tbl))
12060 (when (and parent-target
12061 (or (eq new-nodes t)
12062 (and (eq new-nodes 'confirm)
12063 (y-or-n-p (format "Create new node \"%s\"? "
12064 child)))))
12065 (org-refile-new-child parent-target child)))
12066 (user-error "Invalid target location")))))
12068 (declare-function org-string-nw-p "org-macs" (s))
12069 (defun org-refile-check-position (refile-pointer)
12070 "Check if the refile pointer matches the headline to which it points."
12071 (let* ((file (nth 1 refile-pointer))
12072 (re (nth 2 refile-pointer))
12073 (pos (nth 3 refile-pointer))
12074 buffer)
12075 (if (and (not (markerp pos)) (not file))
12076 (user-error "Please indicate a target file in the refile path")
12077 (when (org-string-nw-p re)
12078 (setq buffer (if (markerp pos)
12079 (marker-buffer pos)
12080 (or (find-buffer-visiting file)
12081 (find-file-noselect file))))
12082 (with-current-buffer buffer
12083 (save-excursion
12084 (save-restriction
12085 (widen)
12086 (goto-char pos)
12087 (beginning-of-line 1)
12088 (unless (org-looking-at-p re)
12089 (user-error "Invalid refile position, please clear the cache with `C-0 C-c C-w' before refiling")))))))))
12091 (defun org-refile-new-child (parent-target child)
12092 "Use refile target PARENT-TARGET to add new CHILD below it."
12093 (unless parent-target
12094 (error "Cannot find parent for new node"))
12095 (let ((file (nth 1 parent-target))
12096 (pos (nth 3 parent-target))
12097 level)
12098 (with-current-buffer (or (find-buffer-visiting file)
12099 (find-file-noselect file))
12100 (save-excursion
12101 (save-restriction
12102 (widen)
12103 (if pos
12104 (goto-char pos)
12105 (goto-char (point-max))
12106 (if (not (bolp)) (newline)))
12107 (when (looking-at org-outline-regexp)
12108 (setq level (funcall outline-level))
12109 (org-end-of-subtree t t))
12110 (org-back-over-empty-lines)
12111 (insert "\n" (make-string
12112 (if pos (org-get-valid-level level 1) 1) ?*)
12113 " " child "\n")
12114 (beginning-of-line 0)
12115 (list (concat (car parent-target) "/" child) file "" (point)))))))
12117 (defun org-olpath-completing-read (prompt collection &rest args)
12118 "Read an outline path like a file name."
12119 (let ((thetable collection)
12120 (org-completion-use-ido nil) ; does not work with ido.
12121 (org-completion-use-iswitchb nil)) ; or iswitchb
12122 (apply
12123 'org-icompleting-read prompt
12124 (lambda (string predicate &optional flag)
12125 (let (rtn r f (l (length string)))
12126 (cond
12127 ((eq flag nil)
12128 ;; try completion
12129 (try-completion string thetable))
12130 ((eq flag t)
12131 ;; all-completions
12132 (setq rtn (all-completions string thetable predicate))
12133 (mapcar
12134 (lambda (x)
12135 (setq r (substring x l))
12136 (if (string-match " ([^)]*)$" x)
12137 (setq f (match-string 0 x))
12138 (setq f ""))
12139 (if (string-match "/" r)
12140 (concat string (substring r 0 (match-end 0)) f)
12142 rtn))
12143 ((eq flag 'lambda)
12144 ;; exact match?
12145 (assoc string thetable)))))
12146 args)))
12148 ;;;; Dynamic blocks
12150 (defun org-find-dblock (name)
12151 "Find the first dynamic block with name NAME in the buffer.
12152 If not found, stay at current position and return nil."
12153 (let ((case-fold-search t) pos)
12154 (save-excursion
12155 (goto-char (point-min))
12156 (setq pos (and (re-search-forward
12157 (concat "^[ \t]*#\\+\\(?:BEGIN\\|begin\\):[ \t]+" name "\\>") nil t)
12158 (match-beginning 0))))
12159 (if pos (goto-char pos))
12160 pos))
12162 (defun org-create-dblock (plist)
12163 "Create a dynamic block section, with parameters taken from PLIST.
12164 PLIST must contain a :name entry which is used as the name of the block."
12165 (when (string-match "\\S-" (buffer-substring (point-at-bol) (point-at-eol)))
12166 (end-of-line 1)
12167 (newline))
12168 (let ((col (current-column))
12169 (name (plist-get plist :name)))
12170 (insert "#+BEGIN: " name)
12171 (while plist
12172 (if (eq (car plist) :name)
12173 (setq plist (cddr plist))
12174 (insert " " (prin1-to-string (pop plist)))))
12175 (insert "\n\n" (make-string col ?\ ) "#+END:\n")
12176 (beginning-of-line -2)))
12178 (defun org-prepare-dblock ()
12179 "Prepare dynamic block for refresh.
12180 This empties the block, puts the cursor at the insert position and returns
12181 the property list including an extra property :name with the block name."
12182 (unless (looking-at org-dblock-start-re)
12183 (user-error "Not at a dynamic block"))
12184 (let* ((begdel (1+ (match-end 0)))
12185 (name (org-no-properties (match-string 1)))
12186 (params (append (list :name name)
12187 (read (concat "(" (match-string 3) ")")))))
12188 (save-excursion
12189 (beginning-of-line 1)
12190 (skip-chars-forward " \t")
12191 (setq params (plist-put params :indentation-column (current-column))))
12192 (unless (re-search-forward org-dblock-end-re nil t)
12193 (error "Dynamic block not terminated"))
12194 (setq params
12195 (append params
12196 (list :content (buffer-substring
12197 begdel (match-beginning 0)))))
12198 (delete-region begdel (match-beginning 0))
12199 (goto-char begdel)
12200 (open-line 1)
12201 params))
12203 (defun org-map-dblocks (&optional command)
12204 "Apply COMMAND to all dynamic blocks in the current buffer.
12205 If COMMAND is not given, use `org-update-dblock'."
12206 (let ((cmd (or command 'org-update-dblock)))
12207 (save-excursion
12208 (goto-char (point-min))
12209 (while (re-search-forward org-dblock-start-re nil t)
12210 (goto-char (match-beginning 0))
12211 (save-excursion
12212 (condition-case nil
12213 (funcall cmd)
12214 (error (message "Error during update of dynamic block"))))
12215 (unless (re-search-forward org-dblock-end-re nil t)
12216 (error "Dynamic block not terminated"))))))
12218 (defun org-dblock-update (&optional arg)
12219 "User command for updating dynamic blocks.
12220 Update the dynamic block at point. With prefix ARG, update all dynamic
12221 blocks in the buffer."
12222 (interactive "P")
12223 (if arg
12224 (org-update-all-dblocks)
12225 (or (looking-at org-dblock-start-re)
12226 (org-beginning-of-dblock))
12227 (org-update-dblock)))
12229 (defun org-update-dblock ()
12230 "Update the dynamic block at point.
12231 This means to empty the block, parse for parameters and then call
12232 the correct writing function."
12233 (interactive)
12234 (save-excursion
12235 (let* ((win (selected-window))
12236 (pos (point))
12237 (line (org-current-line))
12238 (params (org-prepare-dblock))
12239 (name (plist-get params :name))
12240 (indent (plist-get params :indentation-column))
12241 (cmd (intern (concat "org-dblock-write:" name))))
12242 (message "Updating dynamic block `%s' at line %d..." name line)
12243 (funcall cmd params)
12244 (message "Updating dynamic block `%s' at line %d...done" name line)
12245 (goto-char pos)
12246 (when (and indent (> indent 0))
12247 (setq indent (make-string indent ?\ ))
12248 (save-excursion
12249 (select-window win)
12250 (org-beginning-of-dblock)
12251 (forward-line 1)
12252 (while (not (looking-at org-dblock-end-re))
12253 (insert indent)
12254 (beginning-of-line 2))
12255 (when (looking-at org-dblock-end-re)
12256 (and (looking-at "[ \t]+")
12257 (replace-match ""))
12258 (insert indent)))))))
12260 (defun org-beginning-of-dblock ()
12261 "Find the beginning of the dynamic block at point.
12262 Error if there is no such block at point."
12263 (let ((pos (point))
12264 beg)
12265 (end-of-line 1)
12266 (if (and (re-search-backward org-dblock-start-re nil t)
12267 (setq beg (match-beginning 0))
12268 (re-search-forward org-dblock-end-re nil t)
12269 (> (match-end 0) pos))
12270 (goto-char beg)
12271 (goto-char pos)
12272 (error "Not in a dynamic block"))))
12274 (defun org-update-all-dblocks ()
12275 "Update all dynamic blocks in the buffer.
12276 This function can be used in a hook."
12277 (interactive)
12278 (when (derived-mode-p 'org-mode)
12279 (org-map-dblocks 'org-update-dblock)))
12282 ;;;; Completion
12284 (declare-function org-export-backend-name "org-export" (cl-x))
12285 (declare-function org-export-backend-options "org-export" (cl-x))
12286 (defun org-get-export-keywords ()
12287 "Return a list of all currently understood export keywords.
12288 Export keywords include options, block names, attributes and
12289 keywords relative to each registered export back-end."
12290 (let (keywords)
12291 (dolist (backend
12292 (org-bound-and-true-p org-export--registered-backends)
12293 (delq nil keywords))
12294 ;; Back-end name (for keywords, like #+LATEX:)
12295 (push (upcase (symbol-name (org-export-backend-name backend))) keywords)
12296 (dolist (option-entry (org-export-backend-options backend))
12297 ;; Back-end options.
12298 (push (nth 1 option-entry) keywords)))))
12300 (defconst org-options-keywords
12301 '("ARCHIVE:" "AUTHOR:" "BIND:" "CATEGORY:" "COLUMNS:" "CREATOR:" "DATE:"
12302 "DESCRIPTION:" "DRAWERS:" "EMAIL:" "EXCLUDE_TAGS:" "FILETAGS:" "INCLUDE:"
12303 "INDEX:" "KEYWORDS:" "LANGUAGE:" "MACRO:" "OPTIONS:" "PROPERTY:"
12304 "PRIORITIES:" "SELECT_TAGS:" "SEQ_TODO:" "SETUPFILE:" "STARTUP:" "TAGS:"
12305 "TITLE:" "TODO:" "TYP_TODO:" "SELECT_TAGS:" "EXCLUDE_TAGS:"))
12307 (defcustom org-structure-template-alist
12308 '(("s" "#+BEGIN_SRC ?\n\n#+END_SRC")
12309 ("e" "#+BEGIN_EXAMPLE\n?\n#+END_EXAMPLE")
12310 ("q" "#+BEGIN_QUOTE\n?\n#+END_QUOTE")
12311 ("v" "#+BEGIN_VERSE\n?\n#+END_VERSE")
12312 ("V" "#+BEGIN_VERBATIM\n?\n#+END_VERBATIM")
12313 ("c" "#+BEGIN_CENTER\n?\n#+END_CENTER")
12314 ("l" "#+BEGIN_LaTeX\n?\n#+END_LaTeX")
12315 ("L" "#+LaTeX: ")
12316 ("h" "#+BEGIN_HTML\n?\n#+END_HTML")
12317 ("H" "#+HTML: ")
12318 ("a" "#+BEGIN_ASCII\n?\n#+END_ASCII")
12319 ("A" "#+ASCII: ")
12320 ("i" "#+INDEX: ?")
12321 ("I" "#+INCLUDE: %file ?"))
12322 "Structure completion elements.
12323 This is a list of abbreviation keys and values. The value gets inserted
12324 if you type `<' followed by the key and then press the completion key,
12325 usually `TAB'. %file will be replaced by a file name after prompting
12326 for the file using completion. The cursor will be placed at the position
12327 of the `?` in the template.
12328 There are two templates for each key, the first uses the original Org syntax,
12329 the second uses Emacs Muse-like syntax tags. These Muse-like tags become
12330 the default when the /org-mtags.el/ module has been loaded. See also the
12331 variable `org-mtags-prefer-muse-templates'."
12332 :group 'org-completion
12333 :type '(repeat
12334 (list
12335 (string :tag "Key")
12336 (string :tag "Template")))
12337 :version "25.1"
12338 :package-version '(Org . "8.3"))
12340 (defun org-try-structure-completion ()
12341 "Try to complete a structure template before point.
12342 This looks for strings like \"<e\" on an otherwise empty line and
12343 expands them."
12344 (let ((l (buffer-substring (point-at-bol) (point)))
12346 (when (and (looking-at "[ \t]*$")
12347 (string-match "^[ \t]*<\\([a-zA-Z]+\\)$" l)
12348 (setq a (assoc (match-string 1 l) org-structure-template-alist)))
12349 (org-complete-expand-structure-template (+ -1 (point-at-bol)
12350 (match-beginning 1)) a)
12351 t)))
12353 (defun org-complete-expand-structure-template (start cell)
12354 "Expand a structure template."
12355 (let ((rpl (nth 1 cell))
12356 (ind ""))
12357 (delete-region start (point))
12358 (when (string-match "\\`[ \t]*#\\+" rpl)
12359 (cond
12360 ((bolp))
12361 ((not (string-match "\\S-" (buffer-substring (point-at-bol) (point))))
12362 (setq ind (buffer-substring (point-at-bol) (point))))
12363 (t (newline))))
12364 (setq start (point))
12365 (if (string-match "%file" rpl)
12366 (setq rpl (replace-match
12367 (concat
12368 "\""
12369 (save-match-data
12370 (abbreviate-file-name (read-file-name "Include file: ")))
12371 "\"")
12372 t t rpl)))
12373 (setq rpl (mapconcat 'identity (split-string rpl "\n")
12374 (concat "\n" ind)))
12375 (insert rpl)
12376 (if (re-search-backward "\\?" start t) (delete-char 1))))
12378 ;;;; TODO, DEADLINE, Comments
12380 (defun org-toggle-comment ()
12381 "Change the COMMENT state of an entry."
12382 (interactive)
12383 (save-excursion
12384 (org-back-to-heading)
12385 (looking-at org-complex-heading-regexp)
12386 (goto-char (or (match-end 3) (match-end 2) (match-end 1)))
12387 (skip-chars-forward " \t")
12388 (unless (memq (char-before) '(?\s ?\t)) (insert " "))
12389 (if (org-in-commented-heading-p t)
12390 (delete-region (point)
12391 (progn (search-forward " " (line-end-position) 'move)
12392 (skip-chars-forward " \t")
12393 (point)))
12394 (insert org-comment-string)
12395 (unless (eolp) (insert " ")))))
12397 (defvar org-last-todo-state-is-todo nil
12398 "This is non-nil when the last TODO state change led to a TODO state.
12399 If the last change removed the TODO tag or switched to DONE, then
12400 this is nil.")
12402 (defvar org-setting-tags nil) ; dynamically skipped
12404 (defvar org-todo-setup-filter-hook nil
12405 "Hook for functions that pre-filter todo specs.
12406 Each function takes a todo spec and returns either nil or the spec
12407 transformed into canonical form." )
12409 (defvar org-todo-get-default-hook nil
12410 "Hook for functions that get a default item for todo.
12411 Each function takes arguments (NEW-MARK OLD-MARK) and returns either
12412 nil or a string to be used for the todo mark." )
12414 (defvar org-agenda-headline-snapshot-before-repeat)
12416 (defun org-current-effective-time ()
12417 "Return current time adjusted for `org-extend-today-until' variable."
12418 (let* ((ct (org-current-time))
12419 (dct (decode-time ct))
12420 (ct1
12421 (cond
12422 (org-use-last-clock-out-time-as-effective-time
12423 (or (org-clock-get-last-clock-out-time) ct))
12424 ((and org-use-effective-time (< (nth 2 dct) org-extend-today-until))
12425 (encode-time 0 59 23 (1- (nth 3 dct)) (nth 4 dct) (nth 5 dct)))
12426 (t ct))))
12427 ct1))
12429 (defun org-todo-yesterday (&optional arg)
12430 "Like `org-todo' but the time of change will be 23:59 of yesterday."
12431 (interactive "P")
12432 (if (eq major-mode 'org-agenda-mode)
12433 (apply 'org-agenda-todo-yesterday arg)
12434 (let* ((org-use-effective-time t)
12435 (hour (third (decode-time
12436 (org-current-time))))
12437 (org-extend-today-until (1+ hour)))
12438 (org-todo arg))))
12440 (defvar org-block-entry-blocking ""
12441 "First entry preventing the TODO state change.")
12443 (defun org-cancel-repeater ()
12444 "Cancel a repeater by setting its numeric value to zero."
12445 (interactive)
12446 (save-excursion
12447 (org-back-to-heading t)
12448 (let ((bound1 (point))
12449 (bound0 (save-excursion (outline-next-heading) (point))))
12450 (when (re-search-forward
12451 (concat "\\(" org-scheduled-time-regexp "\\)\\|\\("
12452 org-deadline-time-regexp "\\)\\|\\("
12453 org-ts-regexp "\\)")
12454 bound0 t)
12455 (if (re-search-backward "[ \t]+\\(?:[.+]\\)?\\+\\([0-9]+\\)[hdwmy]" bound1 t)
12456 (replace-match "0" t nil nil 1))))))
12458 (defun org-todo (&optional arg)
12459 "Change the TODO state of an item.
12460 The state of an item is given by a keyword at the start of the heading,
12461 like
12462 *** TODO Write paper
12463 *** DONE Call mom
12465 The different keywords are specified in the variable `org-todo-keywords'.
12466 By default the available states are \"TODO\" and \"DONE\".
12467 So for this example: when the item starts with TODO, it is changed to DONE.
12468 When it starts with DONE, the DONE is removed. And when neither TODO nor
12469 DONE are present, add TODO at the beginning of the heading.
12471 With \\[universal-argument] prefix arg, use completion to determine the new \
12472 state.
12473 With numeric prefix arg, switch to that state.
12474 With a double \\[universal-argument] prefix, switch to the next set of TODO \
12475 keywords (nextset).
12476 With a triple \\[universal-argument] prefix, circumvent any state blocking.
12477 With a numeric prefix arg of 0, inhibit note taking for the change.
12478 With a numeric prefix arg of -1, cancel repeater to allow marking as DONE.
12480 When called through ELisp, arg is also interpreted in the following way:
12481 'none -> empty state
12482 \"\"(empty string) -> switch to empty state
12483 'done -> switch to DONE
12484 'nextset -> switch to the next set of keywords
12485 'previousset -> switch to the previous set of keywords
12486 \"WAITING\" -> switch to the specified keyword, but only if it
12487 really is a member of `org-todo-keywords'."
12488 (interactive "P")
12489 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
12490 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
12491 'region-start-level 'region))
12492 org-loop-over-headlines-in-active-region)
12493 (org-map-entries
12494 `(org-todo ,arg)
12495 org-loop-over-headlines-in-active-region
12496 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
12497 (if (equal arg '(16)) (setq arg 'nextset))
12498 (when (equal arg -1) (org-cancel-repeater) (setq arg nil))
12499 (let ((org-blocker-hook org-blocker-hook)
12500 commentp
12501 case-fold-search)
12502 (when (equal arg '(64))
12503 (setq arg nil org-blocker-hook nil))
12504 (when (and org-blocker-hook
12505 (or org-inhibit-blocking
12506 (org-entry-get nil "NOBLOCKING")))
12507 (setq org-blocker-hook nil))
12508 (save-excursion
12509 (catch 'exit
12510 (org-back-to-heading t)
12511 (when (org-in-commented-heading-p t)
12512 (org-toggle-comment)
12513 (setq commentp t))
12514 (if (looking-at org-outline-regexp) (goto-char (1- (match-end 0))))
12515 (or (looking-at (concat " +" org-todo-regexp "\\( +\\|[ \t]*$\\)"))
12516 (looking-at "\\(?: *\\|[ \t]*$\\)"))
12517 (let* ((match-data (match-data))
12518 (startpos (point-at-bol))
12519 (logging (save-match-data (org-entry-get nil "LOGGING" t t)))
12520 (org-log-done org-log-done)
12521 (org-log-repeat org-log-repeat)
12522 (org-todo-log-states org-todo-log-states)
12523 (org-inhibit-logging
12524 (if (equal arg 0)
12525 (progn (setq arg nil) 'note) org-inhibit-logging))
12526 (this (match-string 1))
12527 (hl-pos (match-beginning 0))
12528 (head (org-get-todo-sequence-head this))
12529 (ass (assoc head org-todo-kwd-alist))
12530 (interpret (nth 1 ass))
12531 (done-word (nth 3 ass))
12532 (final-done-word (nth 4 ass))
12533 (org-last-state (or this ""))
12534 (completion-ignore-case t)
12535 (member (member this org-todo-keywords-1))
12536 (tail (cdr member))
12537 (org-state (cond
12538 ((and org-todo-key-trigger
12539 (or (and (equal arg '(4))
12540 (eq org-use-fast-todo-selection 'prefix))
12541 (and (not arg) org-use-fast-todo-selection
12542 (not (eq org-use-fast-todo-selection
12543 'prefix)))))
12544 ;; Use fast selection
12545 (org-fast-todo-selection))
12546 ((and (equal arg '(4))
12547 (or (not org-use-fast-todo-selection)
12548 (not org-todo-key-trigger)))
12549 ;; Read a state with completion
12550 (org-icompleting-read
12551 "State: " (mapcar 'list org-todo-keywords-1)
12552 nil t))
12553 ((eq arg 'right)
12554 (if this
12555 (if tail (car tail) nil)
12556 (car org-todo-keywords-1)))
12557 ((eq arg 'left)
12558 (if (equal member org-todo-keywords-1)
12560 (if this
12561 (nth (- (length org-todo-keywords-1)
12562 (length tail) 2)
12563 org-todo-keywords-1)
12564 (org-last org-todo-keywords-1))))
12565 ((and (eq org-use-fast-todo-selection t) (equal arg '(4))
12566 (setq arg nil))) ; hack to fall back to cycling
12567 (arg
12568 ;; user or caller requests a specific state
12569 (cond
12570 ((equal arg "") nil)
12571 ((eq arg 'none) nil)
12572 ((eq arg 'done) (or done-word (car org-done-keywords)))
12573 ((eq arg 'nextset)
12574 (or (car (cdr (member head org-todo-heads)))
12575 (car org-todo-heads)))
12576 ((eq arg 'previousset)
12577 (let ((org-todo-heads (reverse org-todo-heads)))
12578 (or (car (cdr (member head org-todo-heads)))
12579 (car org-todo-heads))))
12580 ((car (member arg org-todo-keywords-1)))
12581 ((stringp arg)
12582 (user-error "State `%s' not valid in this file" arg))
12583 ((nth (1- (prefix-numeric-value arg))
12584 org-todo-keywords-1))))
12585 ((null member) (or head (car org-todo-keywords-1)))
12586 ((equal this final-done-word) nil) ;; -> make empty
12587 ((null tail) nil) ;; -> first entry
12588 ((memq interpret '(type priority))
12589 (if (eq this-command last-command)
12590 (car tail)
12591 (if (> (length tail) 0)
12592 (or done-word (car org-done-keywords))
12593 nil)))
12595 (car tail))))
12596 (org-state (or
12597 (run-hook-with-args-until-success
12598 'org-todo-get-default-hook org-state org-last-state)
12599 org-state))
12600 (next (if org-state (concat " " org-state " ") " "))
12601 (change-plist (list :type 'todo-state-change :from this :to org-state
12602 :position startpos))
12603 dolog now-done-p)
12604 (when org-blocker-hook
12605 (setq org-last-todo-state-is-todo
12606 (not (member this org-done-keywords)))
12607 (unless (save-excursion
12608 (save-match-data
12609 (org-with-wide-buffer
12610 (run-hook-with-args-until-failure
12611 'org-blocker-hook change-plist))))
12612 (if (org-called-interactively-p 'interactive)
12613 (user-error "TODO state change from %s to %s blocked (by \"%s\")"
12614 this org-state org-block-entry-blocking)
12615 ;; fail silently
12616 (message "TODO state change from %s to %s blocked (by \"%s\")"
12617 this org-state org-block-entry-blocking)
12618 (throw 'exit nil))))
12619 (store-match-data match-data)
12620 (replace-match next t t)
12621 (cond ((equal this org-state)
12622 (message "TODO state was already %s" (org-trim next)))
12623 ((pos-visible-in-window-p hl-pos)
12624 (message "TODO state changed to %s" (org-trim next))))
12625 (unless head
12626 (setq head (org-get-todo-sequence-head org-state)
12627 ass (assoc head org-todo-kwd-alist)
12628 interpret (nth 1 ass)
12629 done-word (nth 3 ass)
12630 final-done-word (nth 4 ass)))
12631 (when (memq arg '(nextset previousset))
12632 (message "Keyword-Set %d/%d: %s"
12633 (- (length org-todo-sets) -1
12634 (length (memq (assoc org-state org-todo-sets) org-todo-sets)))
12635 (length org-todo-sets)
12636 (mapconcat 'identity (assoc org-state org-todo-sets) " ")))
12637 (setq org-last-todo-state-is-todo
12638 (not (member org-state org-done-keywords)))
12639 (setq now-done-p (and (member org-state org-done-keywords)
12640 (not (member this org-done-keywords))))
12641 (and logging (org-local-logging logging))
12642 (when (and (or org-todo-log-states org-log-done)
12643 (not (eq org-inhibit-logging t))
12644 (not (memq arg '(nextset previousset))))
12645 ;; we need to look at recording a time and note
12646 (setq dolog (or (nth 1 (assoc org-state org-todo-log-states))
12647 (nth 2 (assoc this org-todo-log-states))))
12648 (if (and (eq dolog 'note) (eq org-inhibit-logging 'note))
12649 (setq dolog 'time))
12650 (when (or (and (not org-state) (not org-closed-keep-when-no-todo))
12651 (and org-state
12652 (member org-state org-not-done-keywords)
12653 (not (member this org-not-done-keywords))))
12654 ;; This is now a todo state and was not one before
12655 ;; If there was a CLOSED time stamp, get rid of it.
12656 (org-add-planning-info nil nil 'closed))
12657 (when (and now-done-p org-log-done)
12658 ;; It is now done, and it was not done before
12659 (org-add-planning-info 'closed (org-current-effective-time))
12660 (if (and (not dolog) (eq 'note org-log-done))
12661 (org-add-log-setup 'done org-state this 'findpos 'note)))
12662 (when (and org-state dolog)
12663 ;; This is a non-nil state, and we need to log it
12664 (org-add-log-setup 'state org-state this 'findpos dolog)))
12665 ;; Fixup tag positioning
12666 (org-todo-trigger-tag-changes org-state)
12667 (and org-auto-align-tags (not org-setting-tags) (org-set-tags nil t))
12668 (when org-provide-todo-statistics
12669 (org-update-parent-todo-statistics))
12670 (run-hooks 'org-after-todo-state-change-hook)
12671 (if (and arg (not (member org-state org-done-keywords)))
12672 (setq head (org-get-todo-sequence-head org-state)))
12673 (put-text-property (point-at-bol) (point-at-eol) 'org-todo-head head)
12674 ;; Do we need to trigger a repeat?
12675 (when now-done-p
12676 (when (boundp 'org-agenda-headline-snapshot-before-repeat)
12677 ;; This is for the agenda, take a snapshot of the headline.
12678 (save-match-data
12679 (setq org-agenda-headline-snapshot-before-repeat
12680 (org-get-heading))))
12681 (org-auto-repeat-maybe org-state))
12682 ;; Fixup cursor location if close to the keyword
12683 (if (and (outline-on-heading-p)
12684 (not (bolp))
12685 (save-excursion (beginning-of-line 1)
12686 (looking-at org-todo-line-regexp))
12687 (< (point) (+ 2 (or (match-end 2) (match-end 1)))))
12688 (progn
12689 (goto-char (or (match-end 2) (match-end 1)))
12690 (and (looking-at " ") (just-one-space))))
12691 (when org-trigger-hook
12692 (save-excursion
12693 (run-hook-with-args 'org-trigger-hook change-plist)))
12694 (when commentp (org-toggle-comment))))))))
12696 (defun org-block-todo-from-children-or-siblings-or-parent (change-plist)
12697 "Block turning an entry into a TODO, using the hierarchy.
12698 This checks whether the current task should be blocked from state
12699 changes. Such blocking occurs when:
12701 1. The task has children which are not all in a completed state.
12703 2. A task has a parent with the property :ORDERED:, and there
12704 are siblings prior to the current task with incomplete
12705 status.
12707 3. The parent of the task is blocked because it has siblings that should
12708 be done first, or is child of a block grandparent TODO entry."
12710 (if (not org-enforce-todo-dependencies)
12711 t ; if locally turned off don't block
12712 (catch 'dont-block
12713 ;; If this is not a todo state change, or if this entry is already DONE,
12714 ;; do not block
12715 (when (or (not (eq (plist-get change-plist :type) 'todo-state-change))
12716 (member (plist-get change-plist :from)
12717 (cons 'done org-done-keywords))
12718 (member (plist-get change-plist :to)
12719 (cons 'todo org-not-done-keywords))
12720 (not (plist-get change-plist :to)))
12721 (throw 'dont-block t))
12722 ;; If this task has children, and any are undone, it's blocked
12723 (save-excursion
12724 (org-back-to-heading t)
12725 (let ((this-level (funcall outline-level)))
12726 (outline-next-heading)
12727 (let ((child-level (funcall outline-level)))
12728 (while (and (not (eobp))
12729 (> child-level this-level))
12730 ;; this todo has children, check whether they are all
12731 ;; completed
12732 (if (and (not (org-entry-is-done-p))
12733 (org-entry-is-todo-p))
12734 (progn (setq org-block-entry-blocking (org-get-heading))
12735 (throw 'dont-block nil)))
12736 (outline-next-heading)
12737 (setq child-level (funcall outline-level))))))
12738 ;; Otherwise, if the task's parent has the :ORDERED: property, and
12739 ;; any previous siblings are undone, it's blocked
12740 (save-excursion
12741 (org-back-to-heading t)
12742 (let* ((pos (point))
12743 (parent-pos (and (org-up-heading-safe) (point))))
12744 (if (not parent-pos) (throw 'dont-block t)) ; no parent
12745 (when (and (org-not-nil (org-entry-get (point) "ORDERED"))
12746 (forward-line 1)
12747 (re-search-forward org-not-done-heading-regexp pos t))
12748 (setq org-block-entry-blocking (match-string 0))
12749 (throw 'dont-block nil)) ; block, there is an older sibling not done.
12750 ;; Search further up the hierarchy, to see if an ancestor is blocked
12751 (while t
12752 (goto-char parent-pos)
12753 (if (not (looking-at org-not-done-heading-regexp))
12754 (throw 'dont-block t)) ; do not block, parent is not a TODO
12755 (setq pos (point))
12756 (setq parent-pos (and (org-up-heading-safe) (point)))
12757 (if (not parent-pos) (throw 'dont-block t)) ; no parent
12758 (when (and (org-not-nil (org-entry-get (point) "ORDERED"))
12759 (forward-line 1)
12760 (re-search-forward org-not-done-heading-regexp pos t)
12761 (setq org-block-entry-blocking (org-get-heading)))
12762 (throw 'dont-block nil)))))))) ; block, older sibling not done.
12764 (defcustom org-track-ordered-property-with-tag nil
12765 "Should the ORDERED property also be shown as a tag?
12766 The ORDERED property decides if an entry should require subtasks to be
12767 completed in sequence. Since a property is not very visible, setting
12768 this option means that toggling the ORDERED property with the command
12769 `org-toggle-ordered-property' will also toggle a tag ORDERED. That tag is
12770 not relevant for the behavior, but it makes things more visible.
12772 Note that toggling the tag with tags commands will not change the property
12773 and therefore not influence behavior!
12775 This can be t, meaning the tag ORDERED should be used, It can also be a
12776 string to select a different tag for this task."
12777 :group 'org-todo
12778 :type '(choice
12779 (const :tag "No tracking" nil)
12780 (const :tag "Track with ORDERED tag" t)
12781 (string :tag "Use other tag")))
12783 (defun org-toggle-ordered-property ()
12784 "Toggle the ORDERED property of the current entry.
12785 For better visibility, you can track the value of this property with a tag.
12786 See variable `org-track-ordered-property-with-tag'."
12787 (interactive)
12788 (let* ((t1 org-track-ordered-property-with-tag)
12789 (tag (and t1 (if (stringp t1) t1 "ORDERED"))))
12790 (save-excursion
12791 (org-back-to-heading)
12792 (if (org-entry-get nil "ORDERED")
12793 (progn
12794 (org-delete-property "ORDERED")
12795 (and tag (org-toggle-tag tag 'off))
12796 (message "Subtasks can be completed in arbitrary order"))
12797 (org-entry-put nil "ORDERED" "t")
12798 (and tag (org-toggle-tag tag 'on))
12799 (message "Subtasks must be completed in sequence")))))
12801 (defvar org-blocked-by-checkboxes) ; dynamically scoped
12802 (defun org-block-todo-from-checkboxes (change-plist)
12803 "Block turning an entry into a TODO, using checkboxes.
12804 This checks whether the current task should be blocked from state
12805 changes because there are unchecked boxes in this entry."
12806 (if (not org-enforce-todo-checkbox-dependencies)
12807 t ; if locally turned off don't block
12808 (catch 'dont-block
12809 ;; If this is not a todo state change, or if this entry is already DONE,
12810 ;; do not block
12811 (when (or (not (eq (plist-get change-plist :type) 'todo-state-change))
12812 (member (plist-get change-plist :from)
12813 (cons 'done org-done-keywords))
12814 (member (plist-get change-plist :to)
12815 (cons 'todo org-not-done-keywords))
12816 (not (plist-get change-plist :to)))
12817 (throw 'dont-block t))
12818 ;; If this task has checkboxes that are not checked, it's blocked
12819 (save-excursion
12820 (org-back-to-heading t)
12821 (let ((beg (point)) end)
12822 (outline-next-heading)
12823 (setq end (point))
12824 (goto-char beg)
12825 (if (org-list-search-forward
12826 (concat (org-item-beginning-re)
12827 "\\(?:\\[@\\(?:start:\\)?\\([0-9]+\\|[A-Za-z]\\)\\][ \t]*\\)?"
12828 "\\[[- ]\\]")
12829 end t)
12830 (progn
12831 (if (boundp 'org-blocked-by-checkboxes)
12832 (setq org-blocked-by-checkboxes t))
12833 (throw 'dont-block nil)))))
12834 t))) ; do not block
12836 (defun org-entry-blocked-p ()
12837 "Is the current entry blocked?"
12838 (org-with-silent-modifications
12839 (if (org-entry-get nil "NOBLOCKING")
12840 nil ;; Never block this entry
12841 (not (run-hook-with-args-until-failure
12842 'org-blocker-hook
12843 (list :type 'todo-state-change
12844 :position (point)
12845 :from 'todo
12846 :to 'done))))))
12848 (defun org-update-statistics-cookies (all)
12849 "Update the statistics cookie, either from TODO or from checkboxes.
12850 This should be called with the cursor in a line with a statistics cookie."
12851 (interactive "P")
12852 (if all
12853 (progn
12854 (org-update-checkbox-count 'all)
12855 (org-map-entries 'org-update-parent-todo-statistics))
12856 (if (not (org-at-heading-p))
12857 (org-update-checkbox-count)
12858 (let ((pos (point-marker))
12859 end l1 l2)
12860 (ignore-errors (org-back-to-heading t))
12861 (if (not (org-at-heading-p))
12862 (org-update-checkbox-count)
12863 (setq l1 (org-outline-level))
12864 (setq end (save-excursion
12865 (outline-next-heading)
12866 (if (org-at-heading-p) (setq l2 (org-outline-level)))
12867 (point)))
12868 (if (and (save-excursion
12869 (re-search-forward
12870 "^[ \t]*\\([-+*]\\|[0-9]+[.)]\\) \\[[- X]\\]" end t))
12871 (not (save-excursion (re-search-forward
12872 ":COOKIE_DATA:.*\\<todo\\>" end t))))
12873 (org-update-checkbox-count)
12874 (if (and l2 (> l2 l1))
12875 (progn
12876 (goto-char end)
12877 (org-update-parent-todo-statistics))
12878 (goto-char pos)
12879 (beginning-of-line 1)
12880 (while (re-search-forward
12881 "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)"
12882 (point-at-eol) t)
12883 (replace-match (if (match-end 2) "[100%]" "[0/0]") t t)))))
12884 (goto-char pos)
12885 (move-marker pos nil)))))
12887 (defvar org-entry-property-inherited-from) ;; defined below
12888 (defun org-update-parent-todo-statistics ()
12889 "Update any statistics cookie in the parent of the current headline.
12890 When `org-hierarchical-todo-statistics' is nil, statistics will cover
12891 the entire subtree and this will travel up the hierarchy and update
12892 statistics everywhere."
12893 (let* ((prop (save-excursion (org-up-heading-safe)
12894 (org-entry-get nil "COOKIE_DATA" 'inherit)))
12895 (recursive (or (not org-hierarchical-todo-statistics)
12896 (and prop (string-match "\\<recursive\\>" prop))))
12897 (lim (or (and prop (marker-position org-entry-property-inherited-from))
12899 (first t)
12900 (box-re "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)")
12901 level ltoggle l1 new ndel
12902 (cnt-all 0) (cnt-done 0) is-percent kwd
12903 checkbox-beg ov ovs ove cookie-present)
12904 (catch 'exit
12905 (save-excursion
12906 (beginning-of-line 1)
12907 (setq ltoggle (funcall outline-level))
12908 ;; Three situations are to consider:
12910 ;; 1. if `org-hierarchical-todo-statistics' is nil, repeat up
12911 ;; to the top-level ancestor on the headline;
12913 ;; 2. If parent has "recursive" property, repeat up to the
12914 ;; headline setting that property, taking inheritance into
12915 ;; account;
12917 ;; 3. Else, move up to direct parent and proceed only once.
12918 (while (and (setq level (org-up-heading-safe))
12919 (or recursive first)
12920 (>= (point) lim))
12921 (setq first nil cookie-present nil)
12922 (unless (and level
12923 (not (string-match
12924 "\\<checkbox\\>"
12925 (downcase (or (org-entry-get nil "COOKIE_DATA")
12926 "")))))
12927 (throw 'exit nil))
12928 (while (re-search-forward box-re (point-at-eol) t)
12929 (setq cnt-all 0 cnt-done 0 cookie-present t)
12930 (setq is-percent (match-end 2) checkbox-beg (match-beginning 0))
12931 (save-match-data
12932 (unless (outline-next-heading) (throw 'exit nil))
12933 (while (and (looking-at org-complex-heading-regexp)
12934 (> (setq l1 (length (match-string 1))) level))
12935 (setq kwd (and (or recursive (= l1 ltoggle))
12936 (match-string 2)))
12937 (if (or (eq org-provide-todo-statistics 'all-headlines)
12938 (and (eq org-provide-todo-statistics t)
12939 (or (member kwd org-done-keywords)))
12940 (and (listp org-provide-todo-statistics)
12941 (stringp (car org-provide-todo-statistics))
12942 (or (member kwd org-provide-todo-statistics)
12943 (member kwd org-done-keywords)))
12944 (and (listp org-provide-todo-statistics)
12945 (listp (car org-provide-todo-statistics))
12946 (or (member kwd (car org-provide-todo-statistics))
12947 (and (member kwd org-done-keywords)
12948 (member kwd (cadr org-provide-todo-statistics))))))
12949 (setq cnt-all (1+ cnt-all))
12950 (if (eq org-provide-todo-statistics t)
12951 (and kwd (setq cnt-all (1+ cnt-all)))))
12952 (when (or (and (member org-provide-todo-statistics '(t all-headlines))
12953 (member kwd org-done-keywords))
12954 (and (listp org-provide-todo-statistics)
12955 (listp (car org-provide-todo-statistics))
12956 (member kwd org-done-keywords)
12957 (member kwd (cadr org-provide-todo-statistics)))
12958 (and (listp org-provide-todo-statistics)
12959 (stringp (car org-provide-todo-statistics))
12960 (member kwd org-done-keywords)))
12961 (setq cnt-done (1+ cnt-done)))
12962 (outline-next-heading)))
12963 (setq new
12964 (if is-percent
12965 (format "[%d%%]" (/ (* 100 cnt-done) (max 1 cnt-all)))
12966 (format "[%d/%d]" cnt-done cnt-all))
12967 ndel (- (match-end 0) checkbox-beg))
12968 ;; handle overlays when updating cookie from column view
12969 (when (setq ov (car (overlays-at checkbox-beg)))
12970 (setq ovs (overlay-start ov) ove (overlay-end ov))
12971 (delete-overlay ov))
12972 (goto-char checkbox-beg)
12973 (insert new)
12974 (delete-region (point) (+ (point) ndel))
12975 (when org-auto-align-tags (org-fix-tags-on-the-fly))
12976 (when ov (move-overlay ov ovs ove)))
12977 (when cookie-present
12978 (run-hook-with-args 'org-after-todo-statistics-hook
12979 cnt-done (- cnt-all cnt-done))))))
12980 (run-hooks 'org-todo-statistics-hook)))
12982 (defvar org-after-todo-statistics-hook nil
12983 "Hook that is called after a TODO statistics cookie has been updated.
12984 Each function is called with two arguments: the number of not-done entries
12985 and the number of done entries.
12987 For example, the following function, when added to this hook, will switch
12988 an entry to DONE when all children are done, and back to TODO when new
12989 entries are set to a TODO status. Note that this hook is only called
12990 when there is a statistics cookie in the headline!
12992 (defun org-summary-todo (n-done n-not-done)
12993 \"Switch entry to DONE when all subentries are done, to TODO otherwise.\"
12994 (let (org-log-done org-log-states) ; turn off logging
12995 (org-todo (if (= n-not-done 0) \"DONE\" \"TODO\"))))
12998 (defvar org-todo-statistics-hook nil
12999 "Hook that is run whenever Org thinks TODO statistics should be updated.
13000 This hook runs even if there is no statistics cookie present, in which case
13001 `org-after-todo-statistics-hook' would not run.")
13003 (defun org-todo-trigger-tag-changes (state)
13004 "Apply the changes defined in `org-todo-state-tags-triggers'."
13005 (let ((l org-todo-state-tags-triggers)
13006 changes)
13007 (when (or (not state) (equal state ""))
13008 (setq changes (append changes (cdr (assoc "" l)))))
13009 (when (and (stringp state) (> (length state) 0))
13010 (setq changes (append changes (cdr (assoc state l)))))
13011 (when (member state org-not-done-keywords)
13012 (setq changes (append changes (cdr (assoc 'todo l)))))
13013 (when (member state org-done-keywords)
13014 (setq changes (append changes (cdr (assoc 'done l)))))
13015 (dolist (c changes)
13016 (org-toggle-tag (car c) (if (cdr c) 'on 'off)))))
13018 (defun org-local-logging (value)
13019 "Get logging settings from a property VALUE."
13020 (let* (words w a)
13021 ;; directly set the variables, they are already local.
13022 (setq org-log-done nil
13023 org-log-repeat nil
13024 org-todo-log-states nil)
13025 (setq words (org-split-string value))
13026 (while (setq w (pop words))
13027 (cond
13028 ((setq a (assoc w org-startup-options))
13029 (and (member (nth 1 a) '(org-log-done org-log-repeat))
13030 (set (nth 1 a) (nth 2 a))))
13031 ((setq a (org-extract-log-state-settings w))
13032 (and (member (car a) org-todo-keywords-1)
13033 (push a org-todo-log-states)))))))
13035 (defun org-get-todo-sequence-head (kwd)
13036 "Return the head of the TODO sequence to which KWD belongs.
13037 If KWD is not set, check if there is a text property remembering the
13038 right sequence."
13039 (let (p)
13040 (cond
13041 ((not kwd)
13042 (or (get-text-property (point-at-bol) 'org-todo-head)
13043 (progn
13044 (setq p (next-single-property-change (point-at-bol) 'org-todo-head
13045 nil (point-at-eol)))
13046 (get-text-property p 'org-todo-head))))
13047 ((not (member kwd org-todo-keywords-1))
13048 (car org-todo-keywords-1))
13049 (t (nth 2 (assoc kwd org-todo-kwd-alist))))))
13051 (defun org-fast-todo-selection ()
13052 "Fast TODO keyword selection with single keys.
13053 Returns the new TODO keyword, or nil if no state change should occur."
13054 (let* ((fulltable org-todo-key-alist)
13055 (done-keywords org-done-keywords) ;; needed for the faces.
13056 (maxlen (apply 'max (mapcar
13057 (lambda (x)
13058 (if (stringp (car x)) (string-width (car x)) 0))
13059 fulltable)))
13060 (expert nil)
13061 (fwidth (+ maxlen 3 1 3))
13062 (ncol (/ (- (window-width) 4) fwidth))
13063 tg cnt e c tbl
13064 groups ingroup)
13065 (save-excursion
13066 (save-window-excursion
13067 (if expert
13068 (set-buffer (get-buffer-create " *Org todo*"))
13069 (org-switch-to-buffer-other-window (get-buffer-create " *Org todo*")))
13070 (erase-buffer)
13071 (org-set-local 'org-done-keywords done-keywords)
13072 (setq tbl fulltable cnt 0)
13073 (while (setq e (pop tbl))
13074 (cond
13075 ((equal e '(:startgroup))
13076 (push '() groups) (setq ingroup t)
13077 (when (not (= cnt 0))
13078 (setq cnt 0)
13079 (insert "\n"))
13080 (insert "{ "))
13081 ((equal e '(:endgroup))
13082 (setq ingroup nil cnt 0)
13083 (insert "}\n"))
13084 ((equal e '(:newline))
13085 (when (not (= cnt 0))
13086 (setq cnt 0)
13087 (insert "\n")
13088 (setq e (car tbl))
13089 (while (equal (car tbl) '(:newline))
13090 (insert "\n")
13091 (setq tbl (cdr tbl)))))
13093 (setq tg (car e) c (cdr e))
13094 (if ingroup (push tg (car groups)))
13095 (setq tg (org-add-props tg nil 'face
13096 (org-get-todo-face tg)))
13097 (if (and (= cnt 0) (not ingroup)) (insert " "))
13098 (insert "[" c "] " tg (make-string
13099 (- fwidth 4 (length tg)) ?\ ))
13100 (when (= (setq cnt (1+ cnt)) ncol)
13101 (insert "\n")
13102 (if ingroup (insert " "))
13103 (setq cnt 0)))))
13104 (insert "\n")
13105 (goto-char (point-min))
13106 (if (not expert) (org-fit-window-to-buffer))
13107 (message "[a-z..]:Set [SPC]:clear")
13108 (setq c (let ((inhibit-quit t)) (read-char-exclusive)))
13109 (cond
13110 ((or (= c ?\C-g)
13111 (and (= c ?q) (not (rassoc c fulltable))))
13112 (setq quit-flag t))
13113 ((= c ?\ ) nil)
13114 ((setq e (rassoc c fulltable) tg (car e))
13116 (t (setq quit-flag t)))))))
13118 (defun org-entry-is-todo-p ()
13119 (member (org-get-todo-state) org-not-done-keywords))
13121 (defun org-entry-is-done-p ()
13122 (member (org-get-todo-state) org-done-keywords))
13124 (defun org-get-todo-state ()
13125 "Return the TODO keyword of the current subtree."
13126 (save-excursion
13127 (org-back-to-heading t)
13128 (and (looking-at org-todo-line-regexp)
13129 (match-end 2)
13130 (match-string 2))))
13132 (defun org-at-date-range-p (&optional inactive-ok)
13133 "Is the cursor inside a date range?"
13134 (interactive)
13135 (save-excursion
13136 (catch 'exit
13137 (let ((pos (point)))
13138 (skip-chars-backward "^[<\r\n")
13139 (skip-chars-backward "<[")
13140 (and (looking-at (if inactive-ok org-tr-regexp-both org-tr-regexp))
13141 (>= (match-end 0) pos)
13142 (throw 'exit t))
13143 (skip-chars-backward "^<[\r\n")
13144 (skip-chars-backward "<[")
13145 (and (looking-at (if inactive-ok org-tr-regexp-both org-tr-regexp))
13146 (>= (match-end 0) pos)
13147 (throw 'exit t)))
13148 nil)))
13150 (defun org-get-repeat (&optional tagline)
13151 "Check if there is a deadline/schedule with repeater in this entry."
13152 (save-match-data
13153 (save-excursion
13154 (org-back-to-heading t)
13155 (and (re-search-forward (if tagline
13156 (concat tagline "\\s-*" org-repeat-re)
13157 org-repeat-re)
13158 (org-entry-end-position) t)
13159 (match-string-no-properties 1)))))
13161 (defvar org-last-changed-timestamp)
13162 (defvar org-last-inserted-timestamp)
13163 (defvar org-log-post-message)
13164 (defvar org-log-note-purpose)
13165 (defvar org-log-note-how nil)
13166 (defvar org-log-note-extra)
13167 (defun org-auto-repeat-maybe (done-word)
13168 "Check if the current headline contains a repeated deadline/schedule.
13169 If yes, set TODO state back to what it was and change the base date
13170 of repeating deadline/scheduled time stamps to new date.
13171 This function is run automatically after each state change to a DONE state."
13172 ;; last-state is dynamically scoped into this function
13173 (let* ((repeat (org-get-repeat))
13174 (aa (assoc org-last-state org-todo-kwd-alist))
13175 (interpret (nth 1 aa))
13176 (head (nth 2 aa))
13177 (whata '(("h" . hour) ("d" . day) ("m" . month) ("y" . year)))
13178 (msg "Entry repeats: ")
13179 (org-log-done nil)
13180 (org-todo-log-states nil)
13181 re type n what ts time to-state)
13182 (when (and repeat (not (zerop (string-to-number (substring repeat 1)))))
13183 (if (eq org-log-repeat t) (setq org-log-repeat 'state))
13184 (setq to-state (or (org-entry-get nil "REPEAT_TO_STATE")
13185 org-todo-repeat-to-state))
13186 (unless (and to-state (member to-state org-todo-keywords-1))
13187 (setq to-state (if (eq interpret 'type) org-last-state head)))
13188 (org-todo to-state)
13189 (when (or org-log-repeat (org-entry-get nil "CLOCK"))
13190 (org-entry-put nil "LAST_REPEAT" (format-time-string
13191 (org-time-stamp-format t t))))
13192 (when org-log-repeat
13193 (if (or (memq 'org-add-log-note (default-value 'post-command-hook))
13194 (memq 'org-add-log-note post-command-hook))
13195 ;; OK, we are already setup for some record
13196 (if (eq org-log-repeat 'note)
13197 ;; make sure we take a note, not only a time stamp
13198 (setq org-log-note-how 'note))
13199 ;; Set up for taking a record
13200 (org-add-log-setup 'state (or done-word (car org-done-keywords))
13201 org-last-state
13202 'findpos org-log-repeat)))
13203 (org-back-to-heading t)
13204 (org-add-planning-info nil nil 'closed)
13205 (setq re (concat "\\(" org-scheduled-time-regexp "\\)\\|\\("
13206 org-deadline-time-regexp "\\)\\|\\("
13207 org-ts-regexp "\\)"))
13208 (while (re-search-forward
13209 re (save-excursion (outline-next-heading) (point)) t)
13210 (setq type (if (match-end 1) org-scheduled-string
13211 (if (match-end 3) org-deadline-string "Plain:"))
13212 ts (match-string (if (match-end 2) 2 (if (match-end 4) 4 0))))
13213 (when (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([hdwmy]\\)" ts)
13214 (setq n (string-to-number (match-string 2 ts))
13215 what (match-string 3 ts))
13216 (if (equal what "w") (setq n (* n 7) what "d"))
13217 (if (and (equal what "h") (not (string-match "[0-9]\\{1,2\\}:[0-9]\\{2\\}" ts)))
13218 (user-error "Cannot repeat in Repeat in %d hour(s) because no hour has been set" n))
13219 ;; Preparation, see if we need to modify the start date for the change
13220 (when (match-end 1)
13221 (setq time (save-match-data (org-time-string-to-time ts)))
13222 (cond
13223 ((equal (match-string 1 ts) ".")
13224 ;; Shift starting date to today
13225 (org-timestamp-change
13226 (- (org-today) (time-to-days time))
13227 'day))
13228 ((equal (match-string 1 ts) "+")
13229 (let ((nshiftmax 10) (nshift 0))
13230 (while (or (= nshift 0)
13231 (<= (time-to-days time)
13232 (time-to-days (current-time))))
13233 (when (= (incf nshift) nshiftmax)
13234 (or (y-or-n-p (message "%d repeater intervals were not enough to shift date past today. Continue? " nshift))
13235 (user-error "Abort")))
13236 (org-timestamp-change n (cdr (assoc what whata)))
13237 (org-at-timestamp-p t)
13238 (setq ts (match-string 1))
13239 (setq time (save-match-data (org-time-string-to-time ts)))))
13240 (org-timestamp-change (- n) (cdr (assoc what whata)))
13241 ;; rematch, so that we have everything in place for the real shift
13242 (org-at-timestamp-p t)
13243 (setq ts (match-string 1))
13244 (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([hdwmy]\\)" ts))))
13245 (save-excursion (org-timestamp-change n (cdr (assoc what whata)) nil t))
13246 (setq msg (concat msg type " " org-last-changed-timestamp " "))))
13247 (setq org-log-post-message msg)
13248 (message "%s" msg))))
13250 (defun org-show-todo-tree (arg)
13251 "Make a compact tree which shows all headlines marked with TODO.
13252 The tree will show the lines where the regexp matches, and all higher
13253 headlines above the match.
13254 With a \\[universal-argument] prefix, prompt for a regexp to match.
13255 With a numeric prefix N, construct a sparse tree for the Nth element
13256 of `org-todo-keywords-1'."
13257 (interactive "P")
13258 (let ((case-fold-search nil)
13259 (kwd-re
13260 (cond ((null arg) org-not-done-regexp)
13261 ((equal arg '(4))
13262 (let ((kwd (org-icompleting-read "Keyword (or KWD1|KWD2|...): "
13263 (mapcar 'list org-todo-keywords-1))))
13264 (concat "\\("
13265 (mapconcat 'identity (org-split-string kwd "|") "\\|")
13266 "\\)\\>")))
13267 ((<= (prefix-numeric-value arg) (length org-todo-keywords-1))
13268 (regexp-quote (nth (1- (prefix-numeric-value arg))
13269 org-todo-keywords-1)))
13270 (t (user-error "Invalid prefix argument: %s" arg)))))
13271 (message "%d TODO entries found"
13272 (org-occur (concat "^" org-outline-regexp " *" kwd-re )))))
13274 (defun org-deadline (arg &optional time)
13275 "Insert the \"DEADLINE:\" string with a timestamp to make a deadline.
13276 With one universal prefix argument, remove any deadline from the item.
13277 With two universal prefix arguments, prompt for a warning delay.
13278 With argument TIME, set the deadline at the corresponding date. TIME
13279 can either be an Org date like \"2011-07-24\" or a delta like \"+2d\"."
13280 (interactive "P")
13281 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
13282 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
13283 'region-start-level 'region))
13284 org-loop-over-headlines-in-active-region)
13285 (org-map-entries
13286 `(org-deadline ',arg ,time)
13287 org-loop-over-headlines-in-active-region
13288 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
13289 (let* ((old-date (org-entry-get nil "DEADLINE"))
13290 (old-date-time (if old-date (org-time-string-to-time old-date)))
13291 (repeater (and old-date
13292 (string-match
13293 "\\([.+-]+[0-9]+[hdwmy]\\(?:[/ ][-+]?[0-9]+[hdwmy]\\)?\\) ?"
13294 old-date)
13295 (match-string 1 old-date))))
13296 (cond
13297 ((equal arg '(4))
13298 (when (and old-date org-log-redeadline)
13299 (org-add-log-setup 'deldeadline nil old-date 'findpos
13300 org-log-redeadline))
13301 (org-remove-timestamp-with-keyword org-deadline-string)
13302 (message "Item no longer has a deadline."))
13303 ((equal arg '(16))
13304 (save-excursion
13305 (org-back-to-heading t)
13306 (if (re-search-forward
13307 org-deadline-time-regexp
13308 (save-excursion (outline-next-heading) (point)) t)
13309 (let* ((rpl0 (match-string 1))
13310 (rpl (replace-regexp-in-string " -[0-9]+[hdwmy]" "" rpl0)))
13311 (replace-match
13312 (concat org-deadline-string
13313 " <" rpl
13314 (format " -%dd"
13315 (abs
13316 (- (time-to-days
13317 (save-match-data
13318 (org-read-date nil t nil "Warn starting from" old-date-time)))
13319 (time-to-days old-date-time))))
13320 ">") t t))
13321 (user-error "No deadline information to update"))))
13323 (org-add-planning-info 'deadline time 'closed)
13324 (when (and old-date org-log-redeadline
13325 (not (equal old-date
13326 (substring org-last-inserted-timestamp 1 -1))))
13327 (org-add-log-setup 'redeadline nil old-date 'findpos
13328 org-log-redeadline))
13329 (when repeater
13330 (save-excursion
13331 (org-back-to-heading t)
13332 (when (re-search-forward (concat org-deadline-string " "
13333 org-last-inserted-timestamp)
13334 (save-excursion
13335 (outline-next-heading) (point)) t)
13336 (goto-char (1- (match-end 0)))
13337 (insert " " repeater)
13338 (setq org-last-inserted-timestamp
13339 (concat (substring org-last-inserted-timestamp 0 -1)
13340 " " repeater
13341 (substring org-last-inserted-timestamp -1))))))
13342 (message "Deadline on %s" org-last-inserted-timestamp))))))
13344 (defun org-schedule (arg &optional time)
13345 "Insert the SCHEDULED: string with a timestamp to schedule a TODO item.
13346 With one universal prefix argument, remove any scheduling date from the item.
13347 With two universal prefix arguments, prompt for a delay cookie.
13348 With argument TIME, scheduled at the corresponding date. TIME can
13349 either be an Org date like \"2011-07-24\" or a delta like \"+2d\"."
13350 (interactive "P")
13351 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
13352 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
13353 'region-start-level 'region))
13354 org-loop-over-headlines-in-active-region)
13355 (org-map-entries
13356 `(org-schedule ',arg ,time)
13357 org-loop-over-headlines-in-active-region
13358 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
13359 (let* ((old-date (org-entry-get nil "SCHEDULED"))
13360 (old-date-time (if old-date (org-time-string-to-time old-date)))
13361 (repeater (and old-date
13362 (string-match
13363 "\\([.+-]+[0-9]+[hdwmy]\\(?:[/ ][-+]?[0-9]+[hdwmy]\\)?\\) ?"
13364 old-date)
13365 (match-string 1 old-date))))
13366 (cond
13367 ((equal arg '(4))
13368 (progn
13369 (when (and old-date org-log-reschedule)
13370 (org-add-log-setup 'delschedule nil old-date 'findpos
13371 org-log-reschedule))
13372 (org-remove-timestamp-with-keyword org-scheduled-string)
13373 (message "Item is no longer scheduled.")))
13374 ((equal arg '(16))
13375 (save-excursion
13376 (org-back-to-heading t)
13377 (if (re-search-forward
13378 org-scheduled-time-regexp
13379 (save-excursion (outline-next-heading) (point)) t)
13380 (let* ((rpl0 (match-string 1))
13381 (rpl (replace-regexp-in-string " -[0-9]+[hdwmy]" "" rpl0)))
13382 (replace-match
13383 (concat org-scheduled-string
13384 " <" rpl
13385 (format " -%dd"
13386 (abs
13387 (- (time-to-days
13388 (save-match-data
13389 (org-read-date nil t nil "Delay until" old-date-time)))
13390 (time-to-days old-date-time))))
13391 ">") t t))
13392 (user-error "No scheduled information to update"))))
13394 (org-add-planning-info 'scheduled time 'closed)
13395 (when (and old-date org-log-reschedule
13396 (not (equal old-date
13397 (substring org-last-inserted-timestamp 1 -1))))
13398 (org-add-log-setup 'reschedule nil old-date 'findpos
13399 org-log-reschedule))
13400 (when repeater
13401 (save-excursion
13402 (org-back-to-heading t)
13403 (when (re-search-forward (concat org-scheduled-string " "
13404 org-last-inserted-timestamp)
13405 (save-excursion
13406 (outline-next-heading) (point)) t)
13407 (goto-char (1- (match-end 0)))
13408 (insert " " repeater)
13409 (setq org-last-inserted-timestamp
13410 (concat (substring org-last-inserted-timestamp 0 -1)
13411 " " repeater
13412 (substring org-last-inserted-timestamp -1))))))
13413 (message "Scheduled to %s" org-last-inserted-timestamp))))))
13415 (defun org-get-scheduled-time (pom &optional inherit)
13416 "Get the scheduled time as a time tuple, of a format suitable
13417 for calling org-schedule with, or if there is no scheduling,
13418 returns nil."
13419 (let ((time (org-entry-get pom "SCHEDULED" inherit)))
13420 (when time
13421 (apply 'encode-time (org-parse-time-string time)))))
13423 (defun org-get-deadline-time (pom &optional inherit)
13424 "Get the deadline as a time tuple, of a format suitable for
13425 calling org-deadline with, or if there is no scheduling, returns
13426 nil."
13427 (let ((time (org-entry-get pom "DEADLINE" inherit)))
13428 (when time
13429 (apply 'encode-time (org-parse-time-string time)))))
13431 (defun org-remove-timestamp-with-keyword (keyword)
13432 "Remove all time stamps with KEYWORD in the current entry."
13433 (let ((re (concat "\\<" (regexp-quote keyword) " +<[^>\n]+>[ \t]*"))
13434 beg)
13435 (save-excursion
13436 (org-back-to-heading t)
13437 (setq beg (point))
13438 (outline-next-heading)
13439 (while (re-search-backward re beg t)
13440 (replace-match "")
13441 (if (and (string-match "\\S-" (buffer-substring (point-at-bol) (point)))
13442 (equal (char-before) ?\ ))
13443 (backward-delete-char 1)
13444 (if (string-match "^[ \t]*$" (buffer-substring
13445 (point-at-bol) (point-at-eol)))
13446 (delete-region (point-at-bol)
13447 (min (point-max) (1+ (point-at-eol))))))))))
13449 (defvar org-time-was-given) ; dynamically scoped parameter
13450 (defvar org-end-time-was-given) ; dynamically scoped parameter
13452 (defun org-at-planning-p ()
13453 "Non-nil when point is on a planning info line."
13454 ;; This is as accurate and faster than `org-element-at-point' since
13455 ;; planning info location is fixed in the section.
13456 (org-with-wide-buffer
13457 (beginning-of-line)
13458 (and (org-looking-at-p org-planning-line-re)
13459 (eq (point)
13460 (ignore-errors
13461 (if (and (featurep 'org-inlinetask) (org-inlinetask-in-task-p))
13462 (org-back-to-heading t)
13463 (org-with-limited-levels (org-back-to-heading t)))
13464 (line-beginning-position 2))))))
13466 (defun org-add-planning-info (what &optional time &rest remove)
13467 "Insert new timestamp with keyword in the planning line.
13468 WHAT indicates what kind of time stamp to add. It is a symbol
13469 among `closed', `deadline', `scheduled' and nil. TIME indicates
13470 the time to use. If none is given, the user is prompted for
13471 a date. REMOVE indicates what kind of entries to remove. An old
13472 WHAT entry will also be removed."
13473 (let (org-time-was-given org-end-time-was-given default-time default-input)
13474 (catch 'exit
13475 (when (and (memq what '(scheduled deadline))
13476 (or (not time)
13477 (and (stringp time)
13478 (string-match "^[-+]+[0-9]" time))))
13479 ;; Try to get a default date/time from existing timestamp
13480 (save-excursion
13481 (org-back-to-heading t)
13482 (let ((end (save-excursion (outline-next-heading) (point))) ts)
13483 (when (re-search-forward (if (eq what 'scheduled)
13484 org-scheduled-time-regexp
13485 org-deadline-time-regexp)
13486 end t)
13487 (setq ts (match-string 1)
13488 default-time (apply 'encode-time (org-parse-time-string ts))
13489 default-input (and ts (org-get-compact-tod ts)))))))
13490 (when what
13491 (setq time
13492 (if (stringp time)
13493 ;; This is a string (relative or absolute), set
13494 ;; proper date.
13495 (apply #'encode-time
13496 (org-read-date-analyze
13497 time default-time (decode-time default-time)))
13498 ;; If necessary, get the time from the user
13499 (or time (org-read-date nil 'to-time nil nil
13500 default-time default-input)))))
13502 (org-with-wide-buffer
13503 (org-back-to-heading t)
13504 (forward-line)
13505 (unless (bolp) (insert "\n"))
13506 (cond ((org-looking-at-p org-planning-line-re)
13507 ;; Move to current indentation.
13508 (skip-chars-forward " \t")
13509 ;; Check if we have to remove something.
13510 (dolist (type (if what (cons what remove) remove))
13511 (when (save-excursion
13512 (re-search-forward
13513 (case type
13514 (closed org-closed-time-regexp)
13515 (deadline org-deadline-time-regexp)
13516 (scheduled org-scheduled-time-regexp)
13517 (otherwise (error "Invalid planning type: %s" type)))
13518 (line-end-position) t))
13519 (replace-match "")
13520 (when (looking-at "--+<[^>]+>") (replace-match ""))
13521 (when (and (not what) (eq type 'closed))
13522 (save-excursion
13523 (beginning-of-line)
13524 (if (looking-at "[ \t]*$")
13525 (delete-region (point) (1+ (point-at-eol)))))))
13526 ;; Remove leading white spaces.
13527 (when (and (not (bolp)) (looking-at "[ \t]+")) (replace-match ""))))
13528 ((not what) (throw 'exit nil)) ; Nothing to do.
13529 (t (insert-before-markers "\n")
13530 (backward-char 1)
13531 (when org-adapt-indentation
13532 (org-indent-to-column (1+ (org-outline-level))))))
13533 (when what
13534 ;; Insert planning keyword.
13535 (insert (case what
13536 (closed org-closed-string)
13537 (deadline org-deadline-string)
13538 (scheduled org-scheduled-string)
13539 (otherwise (error "Invalid planning type: %s" what)))
13540 " ")
13541 ;; Insert associated timestamp.
13542 (let ((ts (org-insert-time-stamp
13543 time
13544 (or org-time-was-given
13545 (and (eq what 'closed) org-log-done-with-time))
13546 (eq what 'closed)
13547 nil nil (list org-end-time-was-given))))
13548 (unless (eolp) (insert " "))
13549 ts))))))
13551 (defvar org-log-note-marker (make-marker))
13552 (defvar org-log-note-purpose nil)
13553 (defvar org-log-note-state nil)
13554 (defvar org-log-note-previous-state nil)
13555 (defvar org-log-note-extra nil)
13556 (defvar org-log-note-window-configuration nil)
13557 (defvar org-log-note-return-to (make-marker))
13558 (defvar org-log-note-effective-time nil
13559 "Remembered current time so that dynamically scoped
13560 `org-extend-today-until' affects tha timestamps in state change
13561 log")
13563 (defvar org-log-post-message nil
13564 "Message to be displayed after a log note has been stored.
13565 The auto-repeater uses this.")
13567 (defun org-add-note ()
13568 "Add a note to the current entry.
13569 This is done in the same way as adding a state change note."
13570 (interactive)
13571 (org-add-log-setup 'note nil nil 'findpos nil))
13573 (defun org-log-beginning (&optional create)
13574 "Return expected start of log notes in current entry.
13575 When optional argument CREATE is non-nil, the function creates
13576 a drawer to store notes, if necessary. Returned position ignores
13577 narrowing."
13578 (org-with-wide-buffer
13579 (org-end-of-meta-data)
13580 (let ((end (if (org-at-heading-p) (point)
13581 (save-excursion (outline-next-heading) (point))))
13582 (drawer (org-log-into-drawer)))
13583 (cond
13584 (drawer
13585 (let ((regexp (concat "^[ \t]*:" (regexp-quote drawer) ":[ \t]*$"))
13586 (case-fold-search t))
13587 (catch 'exit
13588 ;; Try to find existing drawer.
13589 (while (re-search-forward regexp end t)
13590 (let ((element (org-element-at-point)))
13591 (when (eq (org-element-type element) 'drawer)
13592 (let ((cend (org-element-property :contents-end element)))
13593 (when (and (not org-log-states-order-reversed) cend)
13594 (goto-char cend)))
13595 (throw 'exit nil))))
13596 ;; No drawer found. Create one, if permitted.
13597 (when create
13598 (unless (bolp) (insert "\n"))
13599 (let ((beg (point)))
13600 (insert ":" drawer ":\n:END:\n")
13601 (org-indent-region beg (point)))
13602 (end-of-line -1)))))
13603 (org-log-state-notes-insert-after-drawers
13604 (while (and (looking-at org-drawer-regexp)
13605 (progn (goto-char (match-end 0))
13606 (re-search-forward org-property-end-re end t)))
13607 (forward-line)))))
13608 (if (bolp) (point) (line-beginning-position 2))))
13610 (defun org-add-log-setup (&optional purpose state prev-state findpos how extra)
13611 "Set up the post command hook to take a note.
13612 If this is about to TODO state change, the new state is expected in STATE.
13613 When FINDPOS is non-nil, find the correct position for the note in
13614 the current entry. If not, assume that it can be inserted at point.
13615 HOW is an indicator what kind of note should be created.
13616 EXTRA is additional text that will be inserted into the notes buffer."
13617 (org-with-wide-buffer
13618 (when findpos
13619 (goto-char (org-log-beginning t))
13620 (unless org-log-states-order-reversed
13621 (org-skip-over-state-notes)
13622 (skip-chars-backward " \t\n\r")
13623 (forward-line)))
13624 (move-marker org-log-note-marker (point))
13625 ;; Preserve position even if a property drawer is inserted in the
13626 ;; process.
13627 (set-marker-insertion-type org-log-note-marker t)
13628 (setq org-log-note-purpose purpose
13629 org-log-note-state state
13630 org-log-note-previous-state prev-state
13631 org-log-note-how how
13632 org-log-note-extra extra
13633 org-log-note-effective-time (org-current-effective-time))
13634 (add-hook 'post-command-hook 'org-add-log-note 'append)))
13636 (defun org-skip-over-state-notes ()
13637 "Skip past the list of State notes in an entry."
13638 (when (ignore-errors (goto-char (org-in-item-p)))
13639 (let* ((struct (org-list-struct))
13640 (prevs (org-list-prevs-alist struct))
13641 (regexp
13642 (concat "[ \t]*- +"
13643 (replace-regexp-in-string
13644 " +" " +"
13645 (org-replace-escapes
13646 (regexp-quote (cdr (assq 'state org-log-note-headings)))
13647 `(("%d" . ,org-ts-regexp-inactive)
13648 ("%D" . ,org-ts-regexp)
13649 ("%s" . "\"\\S-+\"")
13650 ("%S" . "\"\\S-+\"")
13651 ("%t" . ,org-ts-regexp-inactive)
13652 ("%T" . ,org-ts-regexp)
13653 ("%u" . ".*?")
13654 ("%U" . ".*?")))))))
13655 (while (org-looking-at-p regexp)
13656 (goto-char (or (org-list-get-next-item (point) struct prevs)
13657 (org-list-get-item-end (point) struct)))))))
13659 (defun org-add-log-note (&optional purpose)
13660 "Pop up a window for taking a note, and add this note later at point."
13661 (remove-hook 'post-command-hook 'org-add-log-note)
13662 (setq org-log-note-window-configuration (current-window-configuration))
13663 (delete-other-windows)
13664 (move-marker org-log-note-return-to (point))
13665 (org-pop-to-buffer-same-window (marker-buffer org-log-note-marker))
13666 (goto-char org-log-note-marker)
13667 (org-switch-to-buffer-other-window "*Org Note*")
13668 (erase-buffer)
13669 (if (memq org-log-note-how '(time state))
13670 (let (current-prefix-arg) (org-store-log-note))
13671 (let ((org-inhibit-startup t)) (org-mode))
13672 (insert (format "# Insert note for %s.
13673 # Finish with C-c C-c, or cancel with C-c C-k.\n\n"
13674 (cond
13675 ((eq org-log-note-purpose 'clock-out) "stopped clock")
13676 ((eq org-log-note-purpose 'done) "closed todo item")
13677 ((eq org-log-note-purpose 'state)
13678 (format "state change from \"%s\" to \"%s\""
13679 (or org-log-note-previous-state "")
13680 (or org-log-note-state "")))
13681 ((eq org-log-note-purpose 'reschedule)
13682 "rescheduling")
13683 ((eq org-log-note-purpose 'delschedule)
13684 "no longer scheduled")
13685 ((eq org-log-note-purpose 'redeadline)
13686 "changing deadline")
13687 ((eq org-log-note-purpose 'deldeadline)
13688 "removing deadline")
13689 ((eq org-log-note-purpose 'refile)
13690 "refiling")
13691 ((eq org-log-note-purpose 'note)
13692 "this entry")
13693 (t (error "This should not happen")))))
13694 (if org-log-note-extra (insert org-log-note-extra))
13695 (org-set-local 'org-finish-function 'org-store-log-note)
13696 (run-hooks 'org-log-buffer-setup-hook)))
13698 (defvar org-note-abort nil) ; dynamically scoped
13699 (defun org-store-log-note ()
13700 "Finish taking a log note, and insert it to where it belongs."
13701 (let ((txt (buffer-string)))
13702 (kill-buffer (current-buffer))
13703 (let ((note (cdr (assq org-log-note-purpose org-log-note-headings))) lines)
13704 (while (string-match "\\`# .*\n[ \t\n]*" txt)
13705 (setq txt (replace-match "" t t txt)))
13706 (if (string-match "\\s-+\\'" txt)
13707 (setq txt (replace-match "" t t txt)))
13708 (setq lines (org-split-string txt "\n"))
13709 (when (and note (string-match "\\S-" note))
13710 (setq note
13711 (org-replace-escapes
13712 note
13713 (list (cons "%u" (user-login-name))
13714 (cons "%U" user-full-name)
13715 (cons "%t" (format-time-string
13716 (org-time-stamp-format 'long 'inactive)
13717 org-log-note-effective-time))
13718 (cons "%T" (format-time-string
13719 (org-time-stamp-format 'long nil)
13720 org-log-note-effective-time))
13721 (cons "%d" (format-time-string
13722 (org-time-stamp-format nil 'inactive)
13723 org-log-note-effective-time))
13724 (cons "%D" (format-time-string
13725 (org-time-stamp-format nil nil)
13726 org-log-note-effective-time))
13727 (cons "%s" (if org-log-note-state
13728 (concat "\"" org-log-note-state "\"")
13729 ""))
13730 (cons "%S" (if org-log-note-previous-state
13731 (concat "\"" org-log-note-previous-state "\"")
13732 "\"\"")))))
13733 (when lines (setq note (concat note " \\\\")))
13734 (push note lines))
13735 (when (or current-prefix-arg org-note-abort)
13736 (when (org-log-into-drawer)
13737 (org-remove-empty-drawer-at org-log-note-marker))
13738 (setq lines nil))
13739 (when lines
13740 (with-current-buffer (marker-buffer org-log-note-marker)
13741 (save-excursion
13742 (goto-char org-log-note-marker)
13743 (move-marker org-log-note-marker nil)
13744 ;; Make sure point is at the beginning of an empty line.
13745 (cond ((not (bolp)) (let ((inhibit-read-only t)) (insert "\n")))
13746 ((looking-at "[ \t]*\\S-") (save-excursion (insert "\n"))))
13747 ;; In an existing list, add a new item at the top level.
13748 ;; Otherwise, indent line like a regular one.
13749 (let ((itemp (org-in-item-p)))
13750 (if itemp
13751 (org-indent-line-to
13752 (let ((struct (save-excursion
13753 (goto-char itemp) (org-list-struct))))
13754 (org-list-get-ind (org-list-get-top-point struct) struct)))
13755 (org-indent-line)))
13756 (insert (org-list-bullet-string "-") (pop lines))
13757 (let ((ind (org-list-item-body-column (line-beginning-position))))
13758 (dolist (line lines)
13759 (insert "\n")
13760 (org-indent-line-to ind)
13761 (insert line)))
13762 (message "Note stored")
13763 (org-back-to-heading t)
13764 (org-cycle-hide-drawers 'children))
13765 ;; Fix `buffer-undo-list' when `org-store-log-note' is called
13766 ;; from within `org-add-log-note' because `buffer-undo-list'
13767 ;; is then modified outside of `org-with-remote-undo'.
13768 (when (eq this-command 'org-agenda-todo)
13769 (setcdr buffer-undo-list (cddr buffer-undo-list)))))))
13770 ;; Don't add undo information when called from `org-agenda-todo'
13771 (let ((buffer-undo-list (eq this-command 'org-agenda-todo)))
13772 (set-window-configuration org-log-note-window-configuration)
13773 (with-current-buffer (marker-buffer org-log-note-return-to)
13774 (goto-char org-log-note-return-to))
13775 (move-marker org-log-note-return-to nil)
13776 (and org-log-post-message (message "%s" org-log-post-message))))
13778 (defun org-remove-empty-drawer-at (pos)
13779 "Remove an empty drawer at position POS.
13780 POS may also be a marker."
13781 (with-current-buffer (if (markerp pos) (marker-buffer pos) (current-buffer))
13782 (org-with-wide-buffer
13783 (goto-char pos)
13784 (let ((drawer (org-element-at-point)))
13785 (when (and (memq (org-element-type drawer) '(drawer property-drawer))
13786 (not (org-element-property :contents-begin drawer)))
13787 (delete-region (org-element-property :begin drawer)
13788 (progn (goto-char (org-element-property :end drawer))
13789 (skip-chars-backward " \r\t\n")
13790 (forward-line)
13791 (point))))))))
13793 (defvar org-ts-type nil)
13794 (defun org-sparse-tree (&optional arg type)
13795 "Create a sparse tree, prompt for the details.
13796 This command can create sparse trees. You first need to select the type
13797 of match used to create the tree:
13799 t Show all TODO entries.
13800 T Show entries with a specific TODO keyword.
13801 m Show entries selected by a tags/property match.
13802 p Enter a property name and its value (both with completion on existing
13803 names/values) and show entries with that property.
13804 r Show entries matching a regular expression (`/' can be used as well).
13805 b Show deadlines and scheduled items before a date.
13806 a Show deadlines and scheduled items after a date.
13807 d Show deadlines due within `org-deadline-warning-days'.
13808 D Show deadlines and scheduled items between a date range."
13809 (interactive "P")
13810 (setq type (or type org-sparse-tree-default-date-type))
13811 (setq org-ts-type type)
13812 (message "Sparse tree: [/]regexp [t]odo [T]odo-kwd [m]atch [p]roperty
13813 [d]eadlines [b]efore-date [a]fter-date [D]ates range
13814 [c]ycle through date types: %s"
13815 (case type
13816 (all "all timestamps")
13817 (scheduled "only scheduled")
13818 (deadline "only deadline")
13819 (active "only active timestamps")
13820 (inactive "only inactive timestamps")
13821 (closed "with a closed time-stamp")
13822 (otherwise "scheduled/deadline")))
13823 (let ((answer (read-char-exclusive)))
13824 (case answer
13826 (org-sparse-tree
13828 (cadr
13829 (memq type '(nil all scheduled deadline active inactive closed)))))
13830 (?d (call-interactively 'org-check-deadlines))
13831 (?b (call-interactively 'org-check-before-date))
13832 (?a (call-interactively 'org-check-after-date))
13833 (?D (call-interactively 'org-check-dates-range))
13834 (?t (call-interactively 'org-show-todo-tree))
13835 (?T (org-show-todo-tree '(4)))
13836 (?m (call-interactively 'org-match-sparse-tree))
13837 ((?p ?P)
13838 (let* ((kwd (org-icompleting-read
13839 "Property: " (mapcar 'list (org-buffer-property-keys))))
13840 (value (org-icompleting-read
13841 "Value: " (mapcar 'list (org-property-values kwd)))))
13842 (unless (string-match "\\`{.*}\\'" value)
13843 (setq value (concat "\"" value "\"")))
13844 (org-match-sparse-tree arg (concat kwd "=" value))))
13845 ((?r ?R ?/) (call-interactively 'org-occur))
13846 (otherwise (user-error "No such sparse tree command \"%c\"" answer)))))
13848 (defvar org-occur-highlights nil
13849 "List of overlays used for occur matches.")
13850 (make-variable-buffer-local 'org-occur-highlights)
13851 (defvar org-occur-parameters nil
13852 "Parameters of the active org-occur calls.
13853 This is a list, each call to org-occur pushes as cons cell,
13854 containing the regular expression and the callback, onto the list.
13855 The list can contain several entries if `org-occur' has been called
13856 several time with the KEEP-PREVIOUS argument. Otherwise, this list
13857 will only contain one set of parameters. When the highlights are
13858 removed (for example with `C-c C-c', or with the next edit (depending
13859 on `org-remove-highlights-with-change'), this variable is emptied
13860 as well.")
13861 (make-variable-buffer-local 'org-occur-parameters)
13863 (defun org-occur (regexp &optional keep-previous callback)
13864 "Make a compact tree which shows all matches of REGEXP.
13865 The tree will show the lines where the regexp matches, and all higher
13866 headlines above the match. It will also show the heading after the match,
13867 to make sure editing the matching entry is easy.
13868 If KEEP-PREVIOUS is non-nil, highlighting and exposing done by a previous
13869 call to `org-occur' will be kept, to allow stacking of calls to this
13870 command.
13871 If CALLBACK is non-nil, it is a function which is called to confirm
13872 that the match should indeed be shown."
13873 (interactive "sRegexp: \nP")
13874 (when (equal regexp "")
13875 (user-error "Regexp cannot be empty"))
13876 (unless keep-previous
13877 (org-remove-occur-highlights nil nil t))
13878 (push (cons regexp callback) org-occur-parameters)
13879 (let ((cnt 0))
13880 (save-excursion
13881 (goto-char (point-min))
13882 (if (or (not keep-previous) ; do not want to keep
13883 (not org-occur-highlights)) ; no previous matches
13884 ;; hide everything
13885 (org-overview))
13886 (while (re-search-forward regexp nil t)
13887 (when (or (not callback)
13888 (save-match-data (funcall callback)))
13889 (setq cnt (1+ cnt))
13890 (when org-highlight-sparse-tree-matches
13891 (org-highlight-new-match (match-beginning 0) (match-end 0)))
13892 (org-show-context 'occur-tree))))
13893 (when org-remove-highlights-with-change
13894 (org-add-hook 'before-change-functions 'org-remove-occur-highlights
13895 nil 'local))
13896 (unless org-sparse-tree-open-archived-trees
13897 (org-hide-archived-subtrees (point-min) (point-max)))
13898 (run-hooks 'org-occur-hook)
13899 (if (org-called-interactively-p 'interactive)
13900 (message "%d match(es) for regexp %s" cnt regexp))
13901 cnt))
13903 (defun org-occur-next-match (&optional n reset)
13904 "Function for `next-error-function' to find sparse tree matches.
13905 N is the number of matches to move, when negative move backwards.
13906 RESET is entirely ignored - this function always goes back to the
13907 starting point when no match is found."
13908 (let* ((limit (if (< n 0) (point-min) (point-max)))
13909 (search-func (if (< n 0)
13910 'previous-single-char-property-change
13911 'next-single-char-property-change))
13912 (n (abs n))
13913 (pos (point))
13915 (catch 'exit
13916 (while (setq p1 (funcall search-func (point) 'org-type))
13917 (when (equal p1 limit)
13918 (goto-char pos)
13919 (user-error "No more matches"))
13920 (when (equal (get-char-property p1 'org-type) 'org-occur)
13921 (setq n (1- n))
13922 (when (= n 0)
13923 (goto-char p1)
13924 (throw 'exit (point))))
13925 (goto-char p1))
13926 (goto-char p1)
13927 (user-error "No more matches"))))
13929 (defun org-show-context (&optional key)
13930 "Make sure point and context are visible.
13931 How much context is shown depends upon the variables
13932 `org-show-hierarchy-above', `org-show-following-heading',
13933 `org-show-entry-below' and `org-show-siblings'."
13934 (let ((heading-p (org-at-heading-p t))
13935 (hierarchy-p (org-get-alist-option org-show-hierarchy-above key))
13936 (following-p (org-get-alist-option org-show-following-heading key))
13937 (entry-p (org-get-alist-option org-show-entry-below key))
13938 (siblings-p (org-get-alist-option org-show-siblings key)))
13939 ;; Show heading or entry text
13940 (if (and heading-p (not entry-p))
13941 (org-flag-heading nil) ; only show the heading
13942 (and (or entry-p (outline-invisible-p) (org-invisible-p2))
13943 (org-show-hidden-entry))) ; show entire entry
13944 (when following-p
13945 ;; Show next sibling, or heading below text
13946 (save-excursion
13947 (and (if heading-p (org-goto-sibling) (outline-next-heading))
13948 (org-flag-heading nil))))
13949 (when siblings-p (org-show-siblings))
13950 (when hierarchy-p
13951 ;; show all higher headings, possibly with siblings
13952 (save-excursion
13953 (while (and (ignore-errors (progn (org-up-heading-all 1) t))
13954 (not (bobp)))
13955 (org-flag-heading nil)
13956 (when siblings-p (org-show-siblings)))))))
13958 (defvar org-reveal-start-hook nil
13959 "Hook run before revealing a location.")
13961 (defun org-reveal (&optional siblings)
13962 "Show current entry, hierarchy above it, and the following headline.
13963 This can be used to show a consistent set of context around locations
13964 exposed with `org-show-hierarchy-above' or `org-show-following-heading'
13965 not t for the search context.
13967 With optional argument SIBLINGS, on each level of the hierarchy all
13968 siblings are shown. This repairs the tree structure to what it would
13969 look like when opened with hierarchical calls to `org-cycle'.
13970 With double optional argument \\[universal-argument] \\[universal-argument], \
13971 go to the parent and show the
13972 entire tree."
13973 (interactive "P")
13974 (run-hooks 'org-reveal-start-hook)
13975 (let ((org-show-hierarchy-above t)
13976 (org-show-following-heading t)
13977 (org-show-siblings (if siblings t org-show-siblings)))
13978 (org-show-context nil))
13979 (when (equal siblings '(16))
13980 (save-excursion
13981 (when (org-up-heading-safe)
13982 (org-show-subtree)
13983 (run-hook-with-args 'org-cycle-hook 'subtree)))))
13985 (defun org-highlight-new-match (beg end)
13986 "Highlight from BEG to END and mark the highlight is an occur headline."
13987 (let ((ov (make-overlay beg end)))
13988 (overlay-put ov 'face 'secondary-selection)
13989 (overlay-put ov 'org-type 'org-occur)
13990 (push ov org-occur-highlights)))
13992 (defun org-remove-occur-highlights (&optional beg end noremove)
13993 "Remove the occur highlights from the buffer.
13994 BEG and END are ignored. If NOREMOVE is nil, remove this function
13995 from the `before-change-functions' in the current buffer."
13996 (interactive)
13997 (unless org-inhibit-highlight-removal
13998 (mapc 'delete-overlay org-occur-highlights)
13999 (setq org-occur-highlights nil)
14000 (setq org-occur-parameters nil)
14001 (unless noremove
14002 (remove-hook 'before-change-functions
14003 'org-remove-occur-highlights 'local))))
14005 ;;;; Priorities
14007 (defvar org-priority-regexp ".*?\\(\\[#\\([A-Z0-9]\\)\\] ?\\)"
14008 "Regular expression matching the priority indicator.")
14010 (defvar org-remove-priority-next-time nil)
14012 (defun org-priority-up ()
14013 "Increase the priority of the current item."
14014 (interactive)
14015 (org-priority 'up))
14017 (defun org-priority-down ()
14018 "Decrease the priority of the current item."
14019 (interactive)
14020 (org-priority 'down))
14022 (defun org-priority (&optional action show)
14023 "Change the priority of an item.
14024 ACTION can be `set', `up', `down', or a character."
14025 (interactive "P")
14026 (if (equal action '(4))
14027 (org-show-priority)
14028 (unless org-enable-priority-commands
14029 (user-error "Priority commands are disabled"))
14030 (setq action (or action 'set))
14031 (let (current new news have remove)
14032 (save-excursion
14033 (org-back-to-heading t)
14034 (if (looking-at org-priority-regexp)
14035 (setq current (string-to-char (match-string 2))
14036 have t))
14037 (cond
14038 ((eq action 'remove)
14039 (setq remove t new ?\ ))
14040 ((or (eq action 'set)
14041 (if (featurep 'xemacs) (characterp action) (integerp action)))
14042 (if (not (eq action 'set))
14043 (setq new action)
14044 (message "Priority %c-%c, SPC to remove: "
14045 org-highest-priority org-lowest-priority)
14046 (save-match-data
14047 (setq new (read-char-exclusive))))
14048 (if (and (= (upcase org-highest-priority) org-highest-priority)
14049 (= (upcase org-lowest-priority) org-lowest-priority))
14050 (setq new (upcase new)))
14051 (cond ((equal new ?\ ) (setq remove t))
14052 ((or (< (upcase new) org-highest-priority) (> (upcase new) org-lowest-priority))
14053 (user-error "Priority must be between `%c' and `%c'"
14054 org-highest-priority org-lowest-priority))))
14055 ((eq action 'up)
14056 (setq new (if have
14057 (1- current) ; normal cycling
14058 ;; last priority was empty
14059 (if (eq last-command this-command)
14060 org-lowest-priority ; wrap around empty to lowest
14061 ;; default
14062 (if org-priority-start-cycle-with-default
14063 org-default-priority
14064 (1- org-default-priority))))))
14065 ((eq action 'down)
14066 (setq new (if have
14067 (1+ current) ; normal cycling
14068 ;; last priority was empty
14069 (if (eq last-command this-command)
14070 org-highest-priority ; wrap around empty to highest
14071 ;; default
14072 (if org-priority-start-cycle-with-default
14073 org-default-priority
14074 (1+ org-default-priority))))))
14075 (t (user-error "Invalid action")))
14076 (if (or (< (upcase new) org-highest-priority)
14077 (> (upcase new) org-lowest-priority))
14078 (if (and (memq action '(up down))
14079 (not have) (not (eq last-command this-command)))
14080 ;; `new' is from default priority
14081 (error
14082 "The default can not be set, see `org-default-priority' why")
14083 ;; normal cycling: `new' is beyond highest/lowest priority
14084 ;; and is wrapped around to the empty priority
14085 (setq remove t)))
14086 (setq news (format "%c" new))
14087 (if have
14088 (if remove
14089 (replace-match "" t t nil 1)
14090 (replace-match news t t nil 2))
14091 (if remove
14092 (user-error "No priority cookie found in line")
14093 (let ((case-fold-search nil))
14094 (looking-at org-todo-line-regexp))
14095 (if (match-end 2)
14096 (progn
14097 (goto-char (match-end 2))
14098 (insert " [#" news "]"))
14099 (goto-char (match-beginning 3))
14100 (insert "[#" news "] "))))
14101 (org-set-tags nil 'align))
14102 (if remove
14103 (message "Priority removed")
14104 (message "Priority of current item set to %s" news)))))
14106 (defun org-show-priority ()
14107 "Show the priority of the current item.
14108 This priority is composed of the main priority given with the [#A] cookies,
14109 and by additional input from the age of a schedules or deadline entry."
14110 (interactive)
14111 (let ((pri (if (eq major-mode 'org-agenda-mode)
14112 (org-get-at-bol 'priority)
14113 (save-excursion
14114 (save-match-data
14115 (beginning-of-line)
14116 (and (looking-at org-heading-regexp)
14117 (org-get-priority (match-string 0))))))))
14118 (message "Priority is %d" (if pri pri -1000))))
14120 (defun org-get-priority (s)
14121 "Find priority cookie and return priority."
14122 (save-match-data
14123 (if (functionp org-get-priority-function)
14124 (funcall org-get-priority-function)
14125 (if (not (string-match org-priority-regexp s))
14126 (* 1000 (- org-lowest-priority org-default-priority))
14127 (* 1000 (- org-lowest-priority
14128 (string-to-char (match-string 2 s))))))))
14130 ;;;; Tags
14132 (defvar org-agenda-archives-mode)
14133 (defvar org-map-continue-from nil
14134 "Position from where mapping should continue.
14135 Can be set by the action argument to `org-scan-tags' and `org-map-entries'.")
14137 (defvar org-scanner-tags nil
14138 "The current tag list while the tags scanner is running.")
14139 (defvar org-trust-scanner-tags nil
14140 "Should `org-get-tags-at' use the tags for the scanner.
14141 This is for internal dynamical scoping only.
14142 When this is non-nil, the function `org-get-tags-at' will return the value
14143 of `org-scanner-tags' instead of building the list by itself. This
14144 can lead to large speed-ups when the tags scanner is used in a file with
14145 many entries, and when the list of tags is retrieved, for example to
14146 obtain a list of properties. Building the tags list for each entry in such
14147 a file becomes an N^2 operation - but with this variable set, it scales
14148 as N.")
14150 (defun org-scan-tags (action matcher todo-only &optional start-level)
14151 "Scan headline tags with inheritance and produce output ACTION.
14153 ACTION can be `sparse-tree' to produce a sparse tree in the current buffer,
14154 or `agenda' to produce an entry list for an agenda view. It can also be
14155 a Lisp form or a function that should be called at each matched headline, in
14156 this case the return value is a list of all return values from these calls.
14158 MATCHER is a Lisp form to be evaluated, testing if a given set of tags
14159 qualifies a headline for inclusion. When TODO-ONLY is non-nil,
14160 only lines with a not-done TODO keyword are included in the output.
14161 This should be the same variable that was scoped into
14162 and set by `org-make-tags-matcher' when it constructed MATCHER.
14164 START-LEVEL can be a string with asterisks, reducing the scope to
14165 headlines matching this string."
14166 (require 'org-agenda)
14167 (let* ((re (concat "^"
14168 (if start-level
14169 ;; Get the correct level to match
14170 (concat "\\*\\{" (number-to-string start-level) "\\} ")
14171 org-outline-regexp)
14172 " *\\(\\<\\("
14173 (mapconcat 'regexp-quote org-todo-keywords-1 "\\|")
14174 (org-re "\\)\\>\\)? *\\(.*?\\)\\(:[[:alnum:]_@#%:]+:\\)?[ \t]*$")))
14175 (props (list 'face 'default
14176 'done-face 'org-agenda-done
14177 'undone-face 'default
14178 'mouse-face 'highlight
14179 'org-not-done-regexp org-not-done-regexp
14180 'org-todo-regexp org-todo-regexp
14181 'org-complex-heading-regexp org-complex-heading-regexp
14182 'help-echo
14183 (format "mouse-2 or RET jump to org file %s"
14184 (abbreviate-file-name
14185 (or (buffer-file-name (buffer-base-buffer))
14186 (buffer-name (buffer-base-buffer)))))))
14187 (org-map-continue-from nil)
14188 lspos tags tags-list
14189 (tags-alist (list (cons 0 org-file-tags)))
14190 (llast 0) rtn rtn1 level category i txt
14191 todo marker entry priority)
14192 (when (not (or (member action '(agenda sparse-tree)) (functionp action)))
14193 (setq action (list 'lambda nil action)))
14194 (save-excursion
14195 (goto-char (point-min))
14196 (when (eq action 'sparse-tree)
14197 (org-overview)
14198 (org-remove-occur-highlights))
14199 (while (let (case-fold-search)
14200 (re-search-forward re nil t))
14201 (setq org-map-continue-from nil)
14202 (catch :skip
14203 (setq todo (if (match-end 1) (org-match-string-no-properties 2))
14204 tags (if (match-end 4) (org-match-string-no-properties 4)))
14205 (goto-char (setq lspos (match-beginning 0)))
14206 (setq level (org-reduced-level (org-outline-level))
14207 category (org-get-category))
14208 (setq i llast llast level)
14209 ;; remove tag lists from same and sublevels
14210 (while (>= i level)
14211 (when (setq entry (assoc i tags-alist))
14212 (setq tags-alist (delete entry tags-alist)))
14213 (setq i (1- i)))
14214 ;; add the next tags
14215 (when tags
14216 (setq tags (org-split-string tags ":")
14217 tags-alist
14218 (cons (cons level tags) tags-alist)))
14219 ;; compile tags for current headline
14220 (setq tags-list
14221 (if org-use-tag-inheritance
14222 (apply 'append (mapcar 'cdr (reverse tags-alist)))
14223 tags)
14224 org-scanner-tags tags-list)
14225 (when org-use-tag-inheritance
14226 (setcdr (car tags-alist)
14227 (mapcar (lambda (x)
14228 (setq x (copy-sequence x))
14229 (org-add-prop-inherited x))
14230 (cdar tags-alist))))
14231 (when (and tags org-use-tag-inheritance
14232 (or (not (eq t org-use-tag-inheritance))
14233 org-tags-exclude-from-inheritance))
14234 ;; selective inheritance, remove uninherited ones
14235 (setcdr (car tags-alist)
14236 (org-remove-uninherited-tags (cdar tags-alist))))
14237 (when (and
14239 ;; eval matcher only when the todo condition is OK
14240 (and (or (not todo-only) (member todo org-not-done-keywords))
14241 (let ((case-fold-search t) (org-trust-scanner-tags t))
14242 (eval matcher)))
14244 ;; Call the skipper, but return t if it does not skip,
14245 ;; so that the `and' form continues evaluating
14246 (progn
14247 (unless (eq action 'sparse-tree) (org-agenda-skip))
14250 ;; Check if timestamps are deselecting this entry
14251 (or (not todo-only)
14252 (and (member todo org-not-done-keywords)
14253 (or (not org-agenda-tags-todo-honor-ignore-options)
14254 (not (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item))))))
14256 ;; select this headline
14257 (cond
14258 ((eq action 'sparse-tree)
14259 (and org-highlight-sparse-tree-matches
14260 (org-get-heading) (match-end 0)
14261 (org-highlight-new-match
14262 (match-beginning 1) (match-end 1)))
14263 (org-show-context 'tags-tree))
14264 ((eq action 'agenda)
14265 (setq txt (org-agenda-format-item
14267 (concat
14268 (if (eq org-tags-match-list-sublevels 'indented)
14269 (make-string (1- level) ?.) "")
14270 (org-get-heading))
14271 level category
14272 tags-list)
14273 priority (org-get-priority txt))
14274 (goto-char lspos)
14275 (setq marker (org-agenda-new-marker))
14276 (org-add-props txt props
14277 'org-marker marker 'org-hd-marker marker 'org-category category
14278 'todo-state todo
14279 'priority priority 'type "tagsmatch")
14280 (push txt rtn))
14281 ((functionp action)
14282 (setq org-map-continue-from nil)
14283 (save-excursion
14284 (setq rtn1 (funcall action))
14285 (push rtn1 rtn)))
14286 (t (user-error "Invalid action")))
14288 ;; if we are to skip sublevels, jump to end of subtree
14289 (unless org-tags-match-list-sublevels
14290 (org-end-of-subtree t)
14291 (backward-char 1))))
14292 ;; Get the correct position from where to continue
14293 (if org-map-continue-from
14294 (goto-char org-map-continue-from)
14295 (and (= (point) lspos) (end-of-line 1)))))
14296 (when (and (eq action 'sparse-tree)
14297 (not org-sparse-tree-open-archived-trees))
14298 (org-hide-archived-subtrees (point-min) (point-max)))
14299 (nreverse rtn)))
14301 (defun org-remove-uninherited-tags (tags)
14302 "Remove all tags that are not inherited from the list TAGS."
14303 (cond
14304 ((eq org-use-tag-inheritance t)
14305 (if org-tags-exclude-from-inheritance
14306 (org-delete-all org-tags-exclude-from-inheritance tags)
14307 tags))
14308 ((not org-use-tag-inheritance) nil)
14309 ((stringp org-use-tag-inheritance)
14310 (delq nil (mapcar
14311 (lambda (x)
14312 (if (and (string-match org-use-tag-inheritance x)
14313 (not (member x org-tags-exclude-from-inheritance)))
14314 x nil))
14315 tags)))
14316 ((listp org-use-tag-inheritance)
14317 (delq nil (mapcar
14318 (lambda (x)
14319 (if (member x org-use-tag-inheritance) x nil))
14320 tags)))))
14322 (defun org-match-sparse-tree (&optional todo-only match)
14323 "Create a sparse tree according to tags string MATCH.
14324 MATCH can contain positive and negative selection of tags, like
14325 \"+WORK+URGENT-WITHBOSS\".
14326 If optional argument TODO-ONLY is non-nil, only select lines that are
14327 also TODO lines."
14328 (interactive "P")
14329 (org-agenda-prepare-buffers (list (current-buffer)))
14330 (org-scan-tags 'sparse-tree (cdr (org-make-tags-matcher match)) todo-only))
14332 (defalias 'org-tags-sparse-tree 'org-match-sparse-tree)
14334 (defvar org-cached-props nil)
14335 (defun org-cached-entry-get (pom property)
14336 (if (or (eq t org-use-property-inheritance)
14337 (and (stringp org-use-property-inheritance)
14338 (let ((case-fold-search t))
14339 (org-string-match-p org-use-property-inheritance property)))
14340 (and (listp org-use-property-inheritance)
14341 (member-ignore-case property org-use-property-inheritance)))
14342 ;; Caching is not possible, check it directly.
14343 (org-entry-get pom property 'inherit)
14344 ;; Get all properties, so we can do complicated checks easily.
14345 (cdr (assoc-string property
14346 (or org-cached-props
14347 (setq org-cached-props (org-entry-properties pom)))
14348 t))))
14350 (defun org-global-tags-completion-table (&optional files)
14351 "Return the list of all tags in all agenda buffer/files.
14352 Optional FILES argument is a list of files which can be used
14353 instead of the agenda files."
14354 (save-excursion
14355 (org-uniquify
14356 (delq nil
14357 (apply 'append
14358 (mapcar
14359 (lambda (file)
14360 (set-buffer (find-file-noselect file))
14361 (append (org-get-buffer-tags)
14362 (mapcar (lambda (x) (if (stringp (car-safe x))
14363 (list (car-safe x)) nil))
14364 org-tag-alist)))
14365 (if (and files (car files))
14366 files
14367 (org-agenda-files))))))))
14369 (defun org-make-tags-matcher (match)
14370 "Create the TAGS/TODO matcher form for the selection string MATCH.
14372 The variable `todo-only' is scoped dynamically into this function.
14373 It will be set to t if the matcher restricts matching to TODO entries,
14374 otherwise will not be touched.
14376 Returns a cons of the selection string MATCH and the constructed
14377 lisp form implementing the matcher. The matcher is to be evaluated
14378 at an Org entry, with point on the headline, and returns t if the
14379 entry matches the selection string MATCH. The returned lisp form
14380 references two variables with information about the entry, which
14381 must be bound around the form's evaluation: todo, the TODO keyword
14382 at the entry (or nil of none); and tags-list, the list of all tags
14383 at the entry including inherited ones. Additionally, the category
14384 of the entry (if any) must be specified as the text property
14385 'org-category on the headline.
14387 See also `org-scan-tags'.
14389 (declare (special todo-only))
14390 (unless (boundp 'todo-only)
14391 (error "`org-make-tags-matcher' expects todo-only to be scoped in"))
14392 (unless match
14393 ;; Get a new match request, with completion against the global
14394 ;; tags table and the local tags in current buffer
14395 (let ((org-last-tags-completion-table
14396 (org-uniquify
14397 (delq nil (append (org-get-buffer-tags)
14398 (org-global-tags-completion-table))))))
14399 (setq match (org-completing-read-no-i
14400 "Match: " 'org-tags-completion-function nil nil nil
14401 'org-tags-history))))
14403 ;; Parse the string and create a lisp form
14404 (let ((match0 match)
14405 (re (org-re "^&?\\([-+:]\\)?\\({[^}]+}\\|LEVEL\\([<=>]\\{1,2\\}\\)\\([0-9]+\\)\\|\\(\\(?:[[:alnum:]_]+\\(?:\\\\-\\)*\\)+\\)\\([<>=]\\{1,2\\}\\)\\({[^}]+}\\|\"[^\"]*\"\\|-?[.0-9]+\\(?:[eE][-+]?[0-9]+\\)?\\)\\|[[:alnum:]_@#%]+\\)"))
14406 minus tag mm
14407 tagsmatch todomatch tagsmatcher todomatcher kwd matcher
14408 orterms term orlist re-p str-p level-p level-op time-p
14409 prop-p pn pv po gv rest (start 0) (ss 0))
14410 ;; Expand group tags
14411 (setq match (org-tags-expand match))
14413 ;; Check if there is a TODO part of this match, which would be the
14414 ;; part after a "/". TO make sure that this slash is not part of
14415 ;; a property value to be matched against, we also check that there
14416 ;; is no " after that slash.
14417 ;; First, find the last slash
14418 (while (string-match "/+" match ss)
14419 (setq start (match-beginning 0) ss (match-end 0)))
14420 (if (and (string-match "/+" match start)
14421 (not (save-match-data (string-match "\"" match start))))
14422 ;; match contains also a todo-matching request
14423 (progn
14424 (setq tagsmatch (substring match 0 (match-beginning 0))
14425 todomatch (substring match (match-end 0)))
14426 (if (string-match "^!" todomatch)
14427 (setq todo-only t todomatch (substring todomatch 1)))
14428 (if (string-match "^\\s-*$" todomatch)
14429 (setq todomatch nil)))
14430 ;; only matching tags
14431 (setq tagsmatch match todomatch nil))
14433 ;; Make the tags matcher
14434 (if (or (not tagsmatch) (not (string-match "\\S-" tagsmatch)))
14435 (setq tagsmatcher t)
14436 (setq orterms (org-split-string tagsmatch "|") orlist nil)
14437 (while (setq term (pop orterms))
14438 (while (and (equal (substring term -1) "\\") orterms)
14439 (setq term (concat term "|" (pop orterms)))) ; repair bad split
14440 (while (string-match re term)
14441 (setq rest (substring term (match-end 0))
14442 minus (and (match-end 1)
14443 (equal (match-string 1 term) "-"))
14444 tag (save-match-data (replace-regexp-in-string
14445 "\\\\-" "-"
14446 (match-string 2 term)))
14447 re-p (equal (string-to-char tag) ?{)
14448 level-p (match-end 4)
14449 prop-p (match-end 5)
14450 mm (cond
14451 (re-p `(org-match-any-p ,(substring tag 1 -1) tags-list))
14452 (level-p
14453 (setq level-op (org-op-to-function (match-string 3 term)))
14454 `(,level-op level ,(string-to-number
14455 (match-string 4 term))))
14456 (prop-p
14457 (setq pn (match-string 5 term)
14458 po (match-string 6 term)
14459 pv (match-string 7 term)
14460 re-p (equal (string-to-char pv) ?{)
14461 str-p (equal (string-to-char pv) ?\")
14462 time-p (save-match-data
14463 (string-match "^\"[[<].*[]>]\"$" pv))
14464 pv (if (or re-p str-p) (substring pv 1 -1) pv))
14465 (if time-p (setq pv (org-matcher-time pv)))
14466 (setq po (org-op-to-function po (if time-p 'time str-p)))
14467 (cond
14468 ((equal pn "CATEGORY")
14469 (setq gv '(get-text-property (point) 'org-category)))
14470 ((equal pn "TODO")
14471 (setq gv 'todo))
14473 (setq gv `(org-cached-entry-get nil ,pn))))
14474 (if re-p
14475 (if (eq po 'org<>)
14476 `(not (string-match ,pv (or ,gv "")))
14477 `(string-match ,pv (or ,gv "")))
14478 (if str-p
14479 `(,po (or ,gv "") ,pv)
14480 `(,po (string-to-number (or ,gv ""))
14481 ,(string-to-number pv) ))))
14482 (t `(member ,tag tags-list)))
14483 mm (if minus (list 'not mm) mm)
14484 term rest)
14485 (push mm tagsmatcher))
14486 (push (if (> (length tagsmatcher) 1)
14487 (cons 'and tagsmatcher)
14488 (car tagsmatcher))
14489 orlist)
14490 (setq tagsmatcher nil))
14491 (setq tagsmatcher (if (> (length orlist) 1) (cons 'or orlist) (car orlist)))
14492 (setq tagsmatcher
14493 (list 'progn '(setq org-cached-props nil) tagsmatcher)))
14494 ;; Make the todo matcher
14495 (if (or (not todomatch) (not (string-match "\\S-" todomatch)))
14496 (setq todomatcher t)
14497 (setq orterms (org-split-string todomatch "|") orlist nil)
14498 (while (setq term (pop orterms))
14499 (while (string-match re term)
14500 (setq minus (and (match-end 1)
14501 (equal (match-string 1 term) "-"))
14502 kwd (match-string 2 term)
14503 re-p (equal (string-to-char kwd) ?{)
14504 term (substring term (match-end 0))
14505 mm (if re-p
14506 `(string-match ,(substring kwd 1 -1) todo)
14507 (list 'equal 'todo kwd))
14508 mm (if minus (list 'not mm) mm))
14509 (push mm todomatcher))
14510 (push (if (> (length todomatcher) 1)
14511 (cons 'and todomatcher)
14512 (car todomatcher))
14513 orlist)
14514 (setq todomatcher nil))
14515 (setq todomatcher (if (> (length orlist) 1)
14516 (cons 'or orlist) (car orlist))))
14518 ;; Return the string and lisp forms of the matcher
14519 (setq matcher (if todomatcher
14520 (list 'and tagsmatcher todomatcher)
14521 tagsmatcher))
14522 (when todo-only
14523 (setq matcher (list 'and '(member todo org-not-done-keywords)
14524 matcher)))
14525 (cons match0 matcher)))
14527 (defun org-tags-expand (match &optional single-as-list downcased)
14528 "Expand group tags in MATCH.
14530 This replaces every group tag in MATCH with a regexp tag search.
14531 For example, a group tag \"Work\" defined as { Work : Lab Conf }
14532 will be replaced like this:
14534 Work => {\\(?:Work\\|Lab\\|Conf\\)}
14535 +Work => +{\\(?:Work\\|Lab\\|Conf\\)}
14536 -Work => -{\\(?:Work\\|Lab\\|Conf\\)}
14538 Replacing by a regexp preserves the structure of the match.
14539 E.g., this expansion
14541 Work|Home => {\\(?:Work\\|Lab\\|Conf\\}|Home
14543 will match anything tagged with \"Lab\" and \"Home\", or tagged
14544 with \"Conf\" and \"Home\" or tagged with \"Work\" and \"home\".
14546 When the optional argument SINGLE-AS-LIST is non-nil, MATCH is
14547 assumed to be a single group tag, and the function will return
14548 the list of tags in this group.
14550 When DOWNCASE is non-nil, expand downcased TAGS."
14551 (if org-group-tags
14552 (let* ((case-fold-search t)
14553 (stable org-mode-syntax-table)
14554 (tal (or org-tag-groups-alist-for-agenda
14555 org-tag-groups-alist))
14556 (tal (if downcased
14557 (mapcar (lambda(tg) (mapcar 'downcase tg)) tal) tal))
14558 (tml (mapcar 'car tal))
14559 (rtnmatch match) rpl)
14560 ;; @ and _ are allowed as word-components in tags
14561 (modify-syntax-entry ?@ "w" stable)
14562 (modify-syntax-entry ?_ "w" stable)
14563 (while (and tml
14564 (with-syntax-table stable
14565 (string-match
14566 (concat "\\(?1:[+-]?\\)\\(?2:\\<"
14567 (regexp-opt tml) "\\>\\)") rtnmatch)))
14568 (let* ((dir (match-string 1 rtnmatch))
14569 (tag (match-string 2 rtnmatch))
14570 (tag (if downcased (downcase tag) tag)))
14571 (setq tml (delete tag tml))
14572 (when (not (get-text-property 0 'grouptag (match-string 2 rtnmatch)))
14573 (setq rpl (append (org-uniquify rpl) (assoc tag tal)))
14574 (setq rpl (concat dir "{\\<" (regexp-opt rpl) "\\>}"))
14575 (if (stringp rpl) (org-add-props rpl '(grouptag t)))
14576 (setq rtnmatch (replace-match rpl t t rtnmatch)))))
14577 (if single-as-list
14578 (or (reverse rpl) (list rtnmatch))
14579 rtnmatch))
14580 (if single-as-list (list (if downcased (downcase match) match))
14581 match)))
14583 (defun org-op-to-function (op &optional stringp)
14584 "Turn an operator into the appropriate function."
14585 (setq op
14586 (cond
14587 ((equal op "<" ) '(< string< org-time<))
14588 ((equal op ">" ) '(> org-string> org-time>))
14589 ((member op '("<=" "=<")) '(<= org-string<= org-time<=))
14590 ((member op '(">=" "=>")) '(>= org-string>= org-time>=))
14591 ((member op '("=" "==")) '(= string= org-time=))
14592 ((member op '("<>" "!=")) '(org<> org-string<> org-time<>))))
14593 (nth (if (eq stringp 'time) 2 (if stringp 1 0)) op))
14595 (defun org<> (a b) (not (= a b)))
14596 (defun org-string<= (a b) (or (string= a b) (string< a b)))
14597 (defun org-string>= (a b) (not (string< a b)))
14598 (defun org-string> (a b) (and (not (string= a b)) (not (string< a b))))
14599 (defun org-string<> (a b) (not (string= a b)))
14600 (defun org-time= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (= a b)))
14601 (defun org-time< (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (< a b)))
14602 (defun org-time<= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (<= a b)))
14603 (defun org-time> (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (> a b)))
14604 (defun org-time>= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (>= a b)))
14605 (defun org-time<> (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (org<> a b)))
14606 (defun org-2ft (s)
14607 "Convert S to a floating point time.
14608 If S is already a number, just return it. If it is a string, parse
14609 it as a time string and apply `float-time' to it. If S is nil, just return 0."
14610 (cond
14611 ((numberp s) s)
14612 ((stringp s)
14613 (condition-case nil
14614 (float-time (apply 'encode-time (org-parse-time-string s)))
14615 (error 0.)))
14616 (t 0.)))
14618 (defun org-time-today ()
14619 "Time in seconds today at 0:00.
14620 Returns the float number of seconds since the beginning of the
14621 epoch to the beginning of today (00:00)."
14622 (float-time (apply 'encode-time
14623 (append '(0 0 0) (nthcdr 3 (decode-time))))))
14625 (defun org-matcher-time (s)
14626 "Interpret a time comparison value."
14627 (save-match-data
14628 (cond
14629 ((string= s "<now>") (float-time))
14630 ((string= s "<today>") (org-time-today))
14631 ((string= s "<tomorrow>") (+ 86400.0 (org-time-today)))
14632 ((string= s "<yesterday>") (- (org-time-today) 86400.0))
14633 ((string-match "^<\\([-+][0-9]+\\)\\([hdwmy]\\)>$" s)
14634 (+ (org-time-today)
14635 (* (string-to-number (match-string 1 s))
14636 (cdr (assoc (match-string 2 s)
14637 '(("d" . 86400.0) ("w" . 604800.0)
14638 ("m" . 2678400.0) ("y" . 31557600.0)))))))
14639 (t (org-2ft s)))))
14641 (defun org-match-any-p (re list)
14642 "Does re match any element of list?"
14643 (setq list (mapcar (lambda (x) (string-match re x)) list))
14644 (delq nil list))
14646 (defvar org-add-colon-after-tag-completion nil) ;; dynamically scoped param
14647 (defvar org-tags-overlay (make-overlay 1 1))
14648 (org-detach-overlay org-tags-overlay)
14650 (defun org-get-local-tags-at (&optional pos)
14651 "Get a list of tags defined in the current headline."
14652 (org-get-tags-at pos 'local))
14654 (defun org-get-local-tags ()
14655 "Get a list of tags defined in the current headline."
14656 (org-get-tags-at nil 'local))
14658 (defun org-get-tags-at (&optional pos local)
14659 "Get a list of all headline tags applicable at POS.
14660 POS defaults to point. If tags are inherited, the list contains
14661 the targets in the same sequence as the headlines appear, i.e.
14662 the tags of the current headline come last.
14663 When LOCAL is non-nil, only return tags from the current headline,
14664 ignore inherited ones."
14665 (interactive)
14666 (if (and org-trust-scanner-tags
14667 (or (not pos) (equal pos (point)))
14668 (not local))
14669 org-scanner-tags
14670 (let (tags ltags lastpos parent)
14671 (save-excursion
14672 (save-restriction
14673 (widen)
14674 (goto-char (or pos (point)))
14675 (save-match-data
14676 (catch 'done
14677 (condition-case nil
14678 (progn
14679 (org-back-to-heading t)
14680 (while (not (equal lastpos (point)))
14681 (setq lastpos (point))
14682 (when (looking-at
14683 (org-re "[^\r\n]+?:\\([[:alnum:]_@#%:]+\\):[ \t]*$"))
14684 (setq ltags (org-split-string
14685 (org-match-string-no-properties 1) ":"))
14686 (when parent
14687 (setq ltags (mapcar 'org-add-prop-inherited ltags)))
14688 (setq tags (append
14689 (if parent
14690 (org-remove-uninherited-tags ltags)
14691 ltags)
14692 tags)))
14693 (or org-use-tag-inheritance (throw 'done t))
14694 (if local (throw 'done t))
14695 (or (org-up-heading-safe) (error nil))
14696 (setq parent t)))
14697 (error nil)))))
14698 (if local
14699 tags
14700 (reverse (delete-dups
14701 (reverse (append
14702 (org-remove-uninherited-tags
14703 org-file-tags) tags)))))))))
14705 (defun org-add-prop-inherited (s)
14706 (add-text-properties 0 (length s) '(inherited t) s)
14709 (defun org-toggle-tag (tag &optional onoff)
14710 "Toggle the tag TAG for the current line.
14711 If ONOFF is `on' or `off', don't toggle but set to this state."
14712 (let (res current)
14713 (save-excursion
14714 (org-back-to-heading t)
14715 (if (re-search-forward (org-re "[ \t]:\\([[:alnum:]_@#%:]+\\):[ \t]*$")
14716 (point-at-eol) t)
14717 (progn
14718 (setq current (match-string 1))
14719 (replace-match ""))
14720 (setq current ""))
14721 (setq current (nreverse (org-split-string current ":")))
14722 (cond
14723 ((eq onoff 'on)
14724 (setq res t)
14725 (or (member tag current) (push tag current)))
14726 ((eq onoff 'off)
14727 (or (not (member tag current)) (setq current (delete tag current))))
14728 (t (if (member tag current)
14729 (setq current (delete tag current))
14730 (setq res t)
14731 (push tag current))))
14732 (end-of-line 1)
14733 (if current
14734 (progn
14735 (insert " :" (mapconcat 'identity (nreverse current) ":") ":")
14736 (org-set-tags nil t))
14737 (delete-horizontal-space))
14738 (run-hooks 'org-after-tags-change-hook))
14739 res))
14741 (defun org-align-tags-here (to-col)
14742 ;; Assumes that this is a headline
14743 "Align tags on the current headline to TO-COL."
14744 (let ((pos (point)) (col (current-column)) ncol tags-l p)
14745 (beginning-of-line 1)
14746 (if (and (looking-at (org-re ".*?\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
14747 (< pos (match-beginning 2)))
14748 (progn
14749 (setq tags-l (- (match-end 2) (match-beginning 2)))
14750 (goto-char (match-beginning 1))
14751 (insert " ")
14752 (delete-region (point) (1+ (match-beginning 2)))
14753 (setq ncol (max (current-column)
14754 (1+ col)
14755 (if (> to-col 0)
14756 to-col
14757 (- (abs to-col) tags-l))))
14758 (setq p (point))
14759 (insert (make-string (- ncol (current-column)) ?\ ))
14760 (setq ncol (current-column))
14761 (when indent-tabs-mode (tabify p (point-at-eol)))
14762 (org-move-to-column (min ncol col)))
14763 (goto-char pos))))
14765 (defun org-set-tags-command (&optional arg just-align)
14766 "Call the set-tags command for the current entry."
14767 (interactive "P")
14768 (if (or (org-at-heading-p) (and arg (org-before-first-heading-p)))
14769 (org-set-tags arg just-align)
14770 (save-excursion
14771 (unless (and (org-region-active-p)
14772 org-loop-over-headlines-in-active-region)
14773 (org-back-to-heading t))
14774 (org-set-tags arg just-align))))
14776 (defun org-set-tags-to (data)
14777 "Set the tags of the current entry to DATA, replacing the current tags.
14778 DATA may be a tags string like :aa:bb:cc:, or a list of tags.
14779 If DATA is nil or the empty string, any tags will be removed."
14780 (interactive "sTags: ")
14781 (setq data
14782 (cond
14783 ((eq data nil) "")
14784 ((equal data "") "")
14785 ((stringp data)
14786 (concat ":" (mapconcat 'identity (org-split-string data ":+") ":")
14787 ":"))
14788 ((listp data)
14789 (concat ":" (mapconcat 'identity data ":") ":"))))
14790 (when data
14791 (save-excursion
14792 (org-back-to-heading t)
14793 (when (looking-at org-complex-heading-regexp)
14794 (if (match-end 5)
14795 (progn
14796 (goto-char (match-beginning 5))
14797 (insert data)
14798 (delete-region (point) (point-at-eol))
14799 (org-set-tags nil 'align))
14800 (goto-char (point-at-eol))
14801 (insert " " data)
14802 (org-set-tags nil 'align)))
14803 (beginning-of-line 1)
14804 (if (looking-at ".*?\\([ \t]+\\)$")
14805 (delete-region (match-beginning 1) (match-end 1))))))
14807 (defun org-align-all-tags ()
14808 "Align the tags i all headings."
14809 (interactive)
14810 (save-excursion
14811 (or (ignore-errors (org-back-to-heading t))
14812 (outline-next-heading))
14813 (if (org-at-heading-p)
14814 (org-set-tags t)
14815 (message "No headings"))))
14817 (defvar org-indent-indentation-per-level)
14818 (defun org-set-tags (&optional arg just-align)
14819 "Set the tags for the current headline.
14820 With prefix ARG, realign all tags in headings in the current buffer.
14821 When JUST-ALIGN is non-nil, only align tags."
14822 (interactive "P")
14823 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
14824 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
14825 'region-start-level 'region))
14826 org-loop-over-headlines-in-active-region)
14827 (org-map-entries
14828 ;; We don't use ARG and JUST-ALIGN here because these args
14829 ;; are not useful when looping over headlines.
14830 `(org-set-tags)
14831 org-loop-over-headlines-in-active-region
14832 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
14833 (let* ((re org-outline-regexp-bol)
14834 (current (unless arg (org-get-tags-string)))
14835 (col (current-column))
14836 (org-setting-tags t)
14837 table current-tags inherited-tags ; computed below when needed
14838 tags p0 c0 c1 rpl di tc level)
14839 (if arg
14840 (save-excursion
14841 (goto-char (point-min))
14842 (let ((buffer-invisibility-spec (org-inhibit-invisibility)))
14843 (while (re-search-forward re nil t)
14844 (org-set-tags nil t)
14845 (end-of-line 1)))
14846 (message "All tags realigned to column %d" org-tags-column))
14847 (if just-align
14848 (setq tags current)
14849 ;; Get a new set of tags from the user
14850 (save-excursion
14851 (setq table (append org-tag-persistent-alist
14852 (or org-tag-alist (org-get-buffer-tags))
14853 (and
14854 org-complete-tags-always-offer-all-agenda-tags
14855 (org-global-tags-completion-table
14856 (org-agenda-files))))
14857 org-last-tags-completion-table table
14858 current-tags (org-split-string current ":")
14859 inherited-tags (nreverse
14860 (nthcdr (length current-tags)
14861 (nreverse (org-get-tags-at))))
14862 tags
14863 (if (or (eq t org-use-fast-tag-selection)
14864 (and org-use-fast-tag-selection
14865 (delq nil (mapcar 'cdr table))))
14866 (org-fast-tag-selection
14867 current-tags inherited-tags table
14868 (if org-fast-tag-selection-include-todo
14869 org-todo-key-alist))
14870 (let ((org-add-colon-after-tag-completion (< 1 (length table))))
14871 (org-trim
14872 (org-icompleting-read "Tags: "
14873 'org-tags-completion-function
14874 nil nil current 'org-tags-history))))))
14875 (while (string-match "[-+&]+" tags)
14876 ;; No boolean logic, just a list
14877 (setq tags (replace-match ":" t t tags))))
14879 (setq tags (replace-regexp-in-string "[,]" ":" tags))
14881 (if org-tags-sort-function
14882 (setq tags (mapconcat 'identity
14883 (sort (org-split-string
14884 tags (org-re "[^[:alnum:]_@#%]+"))
14885 org-tags-sort-function) ":")))
14887 (if (string-match "\\`[\t ]*\\'" tags)
14888 (setq tags "")
14889 (unless (string-match ":$" tags) (setq tags (concat tags ":")))
14890 (unless (string-match "^:" tags) (setq tags (concat ":" tags))))
14892 ;; Insert new tags at the correct column
14893 (beginning-of-line 1)
14894 (setq level (or (and (looking-at org-outline-regexp)
14895 (- (match-end 0) (point) 1))
14897 (cond
14898 ((and (equal current "") (equal tags "")))
14899 ((re-search-forward
14900 (concat "\\([ \t]*" (regexp-quote current) "\\)[ \t]*$")
14901 (point-at-eol) t)
14902 (if (equal tags "")
14903 (setq rpl "")
14904 (goto-char (match-beginning 0))
14905 (setq c0 (current-column)
14906 ;; compute offset for the case of org-indent-mode active
14907 di (if (org-bound-and-true-p org-indent-mode)
14908 (* (1- org-indent-indentation-per-level) (1- level))
14910 p0 (if (equal (char-before) ?*) (1+ (point)) (point))
14911 tc (+ org-tags-column (if (> org-tags-column 0) (- di) di))
14912 c1 (max (1+ c0) (if (> tc 0) tc (- (- tc) (string-width tags))))
14913 rpl (concat (make-string (max 0 (- c1 c0)) ?\ ) tags)))
14914 (replace-match rpl t t)
14915 (and (not (featurep 'xemacs)) c0 indent-tabs-mode (tabify p0 (point)))
14916 tags)
14917 (t (error "Tags alignment failed")))
14918 (org-move-to-column col)
14919 (unless just-align
14920 (run-hooks 'org-after-tags-change-hook))))))
14922 (defun org-change-tag-in-region (beg end tag off)
14923 "Add or remove TAG for each entry in the region.
14924 This works in the agenda, and also in an org-mode buffer."
14925 (interactive
14926 (list (region-beginning) (region-end)
14927 (let ((org-last-tags-completion-table
14928 (if (derived-mode-p 'org-mode)
14929 (org-uniquify
14930 (delq nil (append (org-get-buffer-tags)
14931 (org-global-tags-completion-table))))
14932 (org-global-tags-completion-table))))
14933 (org-icompleting-read
14934 "Tag: " 'org-tags-completion-function nil nil nil
14935 'org-tags-history))
14936 (progn
14937 (message "[s]et or [r]emove? ")
14938 (equal (read-char-exclusive) ?r))))
14939 (if (fboundp 'deactivate-mark) (deactivate-mark))
14940 (let ((agendap (equal major-mode 'org-agenda-mode))
14941 l1 l2 m buf pos newhead (cnt 0))
14942 (goto-char end)
14943 (setq l2 (1- (org-current-line)))
14944 (goto-char beg)
14945 (setq l1 (org-current-line))
14946 (loop for l from l1 to l2 do
14947 (org-goto-line l)
14948 (setq m (get-text-property (point) 'org-hd-marker))
14949 (when (or (and (derived-mode-p 'org-mode) (org-at-heading-p))
14950 (and agendap m))
14951 (setq buf (if agendap (marker-buffer m) (current-buffer))
14952 pos (if agendap m (point)))
14953 (with-current-buffer buf
14954 (save-excursion
14955 (save-restriction
14956 (goto-char pos)
14957 (setq cnt (1+ cnt))
14958 (org-toggle-tag tag (if off 'off 'on))
14959 (setq newhead (org-get-heading)))))
14960 (and agendap (org-agenda-change-all-lines newhead m))))
14961 (message "Tag :%s: %s in %d headings" tag (if off "removed" "set") cnt)))
14963 (defun org-tags-completion-function (string predicate &optional flag)
14964 (let (s1 s2 rtn (ctable org-last-tags-completion-table)
14965 (confirm (lambda (x) (stringp (car x)))))
14966 (if (string-match "^\\(.*[-+:&,|]\\)\\([^-+:&,|]*\\)$" string)
14967 (setq s1 (match-string 1 string)
14968 s2 (match-string 2 string))
14969 (setq s1 "" s2 string))
14970 (cond
14971 ((eq flag nil)
14972 ;; try completion
14973 (setq rtn (try-completion s2 ctable confirm))
14974 (if (stringp rtn)
14975 (setq rtn
14976 (concat s1 s2 (substring rtn (length s2))
14977 (if (and org-add-colon-after-tag-completion
14978 (assoc rtn ctable))
14979 ":" ""))))
14980 rtn)
14981 ((eq flag t)
14982 ;; all-completions
14983 (all-completions s2 ctable confirm))
14984 ((eq flag 'lambda)
14985 ;; exact match?
14986 (assoc s2 ctable)))))
14988 (defun org-fast-tag-insert (kwd tags face &optional end)
14989 "Insert KDW, and the TAGS, the latter with face FACE.
14990 Also insert END."
14991 (insert (format "%-12s" (concat kwd ":"))
14992 (org-add-props (mapconcat 'identity tags " ") nil 'face face)
14993 (or end "")))
14995 (defun org-fast-tag-show-exit (flag)
14996 (save-excursion
14997 (org-goto-line 3)
14998 (if (re-search-forward "[ \t]+Next change exits" (point-at-eol) t)
14999 (replace-match ""))
15000 (when flag
15001 (end-of-line 1)
15002 (org-move-to-column (- (window-width) 19) t)
15003 (insert (org-add-props " Next change exits" nil 'face 'org-warning)))))
15005 (defun org-set-current-tags-overlay (current prefix)
15006 "Add an overlay to CURRENT tag with PREFIX."
15007 (let ((s (concat ":" (mapconcat 'identity current ":") ":")))
15008 (if (featurep 'xemacs)
15009 (org-overlay-display org-tags-overlay (concat prefix s)
15010 'secondary-selection)
15011 (put-text-property 0 (length s) 'face '(secondary-selection org-tag) s)
15012 (org-overlay-display org-tags-overlay (concat prefix s)))))
15014 (defvar org-last-tag-selection-key nil)
15015 (defun org-fast-tag-selection (current inherited table &optional todo-table)
15016 "Fast tag selection with single keys.
15017 CURRENT is the current list of tags in the headline, INHERITED is the
15018 list of inherited tags, and TABLE is an alist of tags and corresponding keys,
15019 possibly with grouping information. TODO-TABLE is a similar table with
15020 TODO keywords, should these have keys assigned to them.
15021 If the keys are nil, a-z are automatically assigned.
15022 Returns the new tags string, or nil to not change the current settings."
15023 (let* ((fulltable (append table todo-table))
15024 (maxlen (apply 'max (mapcar
15025 (lambda (x)
15026 (if (stringp (car x)) (string-width (car x)) 0))
15027 fulltable)))
15028 (buf (current-buffer))
15029 (expert (eq org-fast-tag-selection-single-key 'expert))
15030 (buffer-tags nil)
15031 (fwidth (+ maxlen 3 1 3))
15032 (ncol (/ (- (window-width) 4) fwidth))
15033 (i-face 'org-done)
15034 (c-face 'org-todo)
15035 tg cnt e c char c1 c2 ntable tbl rtn
15036 ov-start ov-end ov-prefix
15037 (exit-after-next org-fast-tag-selection-single-key)
15038 (done-keywords org-done-keywords)
15039 groups ingroup)
15040 (save-excursion
15041 (beginning-of-line 1)
15042 (if (looking-at
15043 (org-re ".*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
15044 (setq ov-start (match-beginning 1)
15045 ov-end (match-end 1)
15046 ov-prefix "")
15047 (setq ov-start (1- (point-at-eol))
15048 ov-end (1+ ov-start))
15049 (skip-chars-forward "^\n\r")
15050 (setq ov-prefix
15051 (concat
15052 (buffer-substring (1- (point)) (point))
15053 (if (> (current-column) org-tags-column)
15055 (make-string (- org-tags-column (current-column)) ?\ ))))))
15056 (move-overlay org-tags-overlay ov-start ov-end)
15057 (save-window-excursion
15058 (if expert
15059 (set-buffer (get-buffer-create " *Org tags*"))
15060 (delete-other-windows)
15061 (set-window-buffer (split-window-vertically) (get-buffer-create " *Org tags*"))
15062 (org-switch-to-buffer-other-window " *Org tags*"))
15063 (erase-buffer)
15064 (org-set-local 'org-done-keywords done-keywords)
15065 (org-fast-tag-insert "Inherited" inherited i-face "\n")
15066 (org-fast-tag-insert "Current" current c-face "\n\n")
15067 (org-fast-tag-show-exit exit-after-next)
15068 (org-set-current-tags-overlay current ov-prefix)
15069 (setq tbl fulltable char ?a cnt 0)
15070 (while (setq e (pop tbl))
15071 (cond
15072 ((equal (car e) :startgroup)
15073 (push '() groups) (setq ingroup t)
15074 (when (not (= cnt 0))
15075 (setq cnt 0)
15076 (insert "\n"))
15077 (insert (if (cdr e) (format "%s: " (cdr e)) "") "{ "))
15078 ((equal (car e) :endgroup)
15079 (setq ingroup nil cnt 0)
15080 (insert "}" (if (cdr e) (format " (%s) " (cdr e)) "") "\n"))
15081 ((equal e '(:newline))
15082 (when (not (= cnt 0))
15083 (setq cnt 0)
15084 (insert "\n")
15085 (setq e (car tbl))
15086 (while (equal (car tbl) '(:newline))
15087 (insert "\n")
15088 (setq tbl (cdr tbl)))))
15089 ((equal e '(:grouptags)) nil)
15091 (setq tg (copy-sequence (car e)) c2 nil)
15092 (if (cdr e)
15093 (setq c (cdr e))
15094 ;; automatically assign a character.
15095 (setq c1 (string-to-char
15096 (downcase (substring
15097 tg (if (= (string-to-char tg) ?@) 1 0)))))
15098 (if (or (rassoc c1 ntable) (rassoc c1 table))
15099 (while (or (rassoc char ntable) (rassoc char table))
15100 (setq char (1+ char)))
15101 (setq c2 c1))
15102 (setq c (or c2 char)))
15103 (if ingroup (push tg (car groups)))
15104 (setq tg (org-add-props tg nil 'face
15105 (cond
15106 ((not (assoc tg table))
15107 (org-get-todo-face tg))
15108 ((member tg current) c-face)
15109 ((member tg inherited) i-face))))
15110 (if (equal (caar tbl) :grouptags)
15111 (org-add-props tg nil 'face 'org-tag-group))
15112 (if (and (= cnt 0) (not ingroup)) (insert " "))
15113 (insert "[" c "] " tg (make-string
15114 (- fwidth 4 (length tg)) ?\ ))
15115 (push (cons tg c) ntable)
15116 (when (= (setq cnt (1+ cnt)) ncol)
15117 (insert "\n")
15118 (if ingroup (insert " "))
15119 (setq cnt 0)))))
15120 (setq ntable (nreverse ntable))
15121 (insert "\n")
15122 (goto-char (point-min))
15123 (if (not expert) (org-fit-window-to-buffer))
15124 (setq rtn
15125 (catch 'exit
15126 (while t
15127 (message "[a-z..]:Toggle [SPC]:clear [RET]:accept [TAB]:free [!] %sgroups%s"
15128 (if (not groups) "no " "")
15129 (if expert " [C-c]:window" (if exit-after-next " [C-c]:single" " [C-c]:multi")))
15130 (setq c (let ((inhibit-quit t)) (read-char-exclusive)))
15131 (setq org-last-tag-selection-key c)
15132 (cond
15133 ((= c ?\r) (throw 'exit t))
15134 ((= c ?!)
15135 (setq groups (not groups))
15136 (goto-char (point-min))
15137 (while (re-search-forward "[{}]" nil t) (replace-match " ")))
15138 ((= c ?\C-c)
15139 (if (not expert)
15140 (org-fast-tag-show-exit
15141 (setq exit-after-next (not exit-after-next)))
15142 (setq expert nil)
15143 (delete-other-windows)
15144 (set-window-buffer (split-window-vertically) " *Org tags*")
15145 (org-switch-to-buffer-other-window " *Org tags*")
15146 (org-fit-window-to-buffer)))
15147 ((or (= c ?\C-g)
15148 (and (= c ?q) (not (rassoc c ntable))))
15149 (org-detach-overlay org-tags-overlay)
15150 (setq quit-flag t))
15151 ((= c ?\ )
15152 (setq current nil)
15153 (if exit-after-next (setq exit-after-next 'now)))
15154 ((= c ?\t)
15155 (condition-case nil
15156 (setq tg (org-icompleting-read
15157 "Tag: "
15158 (or buffer-tags
15159 (with-current-buffer buf
15160 (org-get-buffer-tags)))))
15161 (quit (setq tg "")))
15162 (when (string-match "\\S-" tg)
15163 (add-to-list 'buffer-tags (list tg))
15164 (if (member tg current)
15165 (setq current (delete tg current))
15166 (push tg current)))
15167 (if exit-after-next (setq exit-after-next 'now)))
15168 ((setq e (rassoc c todo-table) tg (car e))
15169 (with-current-buffer buf
15170 (save-excursion (org-todo tg)))
15171 (if exit-after-next (setq exit-after-next 'now)))
15172 ((setq e (rassoc c ntable) tg (car e))
15173 (if (member tg current)
15174 (setq current (delete tg current))
15175 (loop for g in groups do
15176 (if (member tg g)
15177 (mapc (lambda (x)
15178 (setq current (delete x current)))
15179 g)))
15180 (push tg current))
15181 (if exit-after-next (setq exit-after-next 'now))))
15183 ;; Create a sorted list
15184 (setq current
15185 (sort current
15186 (lambda (a b)
15187 (assoc b (cdr (memq (assoc a ntable) ntable))))))
15188 (if (eq exit-after-next 'now) (throw 'exit t))
15189 (goto-char (point-min))
15190 (beginning-of-line 2)
15191 (delete-region (point) (point-at-eol))
15192 (org-fast-tag-insert "Current" current c-face)
15193 (org-set-current-tags-overlay current ov-prefix)
15194 (while (re-search-forward
15195 (org-re "\\[.\\] \\([[:alnum:]_@#%]+\\)") nil t)
15196 (setq tg (match-string 1))
15197 (add-text-properties
15198 (match-beginning 1) (match-end 1)
15199 (list 'face
15200 (cond
15201 ((member tg current) c-face)
15202 ((member tg inherited) i-face)
15203 (t (get-text-property (match-beginning 1) 'face))))))
15204 (goto-char (point-min)))))
15205 (org-detach-overlay org-tags-overlay)
15206 (if rtn
15207 (mapconcat 'identity current ":")
15208 nil))))
15210 (defun org-get-tags-string ()
15211 "Get the TAGS string in the current headline."
15212 (unless (org-at-heading-p t)
15213 (user-error "Not on a heading"))
15214 (save-excursion
15215 (beginning-of-line 1)
15216 (if (looking-at (org-re ".*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
15217 (org-match-string-no-properties 1)
15218 "")))
15220 (defun org-get-tags ()
15221 "Get the list of tags specified in the current headline."
15222 (org-split-string (org-get-tags-string) ":"))
15224 (defun org-get-buffer-tags ()
15225 "Get a table of all tags used in the buffer, for completion."
15226 (org-with-wide-buffer
15227 (goto-char (point-min))
15228 (let ((tag-re (concat org-outline-regexp-bol
15229 "\\(?:.*?[ \t]\\)?"
15230 (org-re ":\\([[:alnum:]_@#%:]+\\):[ \t]*$")))
15231 tags)
15232 (while (re-search-forward tag-re nil t)
15233 (dolist (tag (org-split-string (org-match-string-no-properties 1) ":"))
15234 (push tag tags)))
15235 (mapcar #'list (append org-file-tags (org-uniquify tags))))))
15237 ;;;; The mapping API
15239 (defun org-map-entries (func &optional match scope &rest skip)
15240 "Call FUNC at each headline selected by MATCH in SCOPE.
15242 FUNC is a function or a lisp form. The function will be called without
15243 arguments, with the cursor positioned at the beginning of the headline.
15244 The return values of all calls to the function will be collected and
15245 returned as a list.
15247 The call to FUNC will be wrapped into a save-excursion form, so FUNC
15248 does not need to preserve point. After evaluation, the cursor will be
15249 moved to the end of the line (presumably of the headline of the
15250 processed entry) and search continues from there. Under some
15251 circumstances, this may not produce the wanted results. For example,
15252 if you have removed (e.g. archived) the current (sub)tree it could
15253 mean that the next entry will be skipped entirely. In such cases, you
15254 can specify the position from where search should continue by making
15255 FUNC set the variable `org-map-continue-from' to the desired buffer
15256 position.
15258 MATCH is a tags/property/todo match as it is used in the agenda tags view.
15259 Only headlines that are matched by this query will be considered during
15260 the iteration. When MATCH is nil or t, all headlines will be
15261 visited by the iteration.
15263 SCOPE determines the scope of this command. It can be any of:
15265 nil The current buffer, respecting the restriction if any
15266 tree The subtree started with the entry at point
15267 region The entries within the active region, if any
15268 region-start-level
15269 The entries within the active region, but only those at
15270 the same level than the first one.
15271 file The current buffer, without restriction
15272 file-with-archives
15273 The current buffer, and any archives associated with it
15274 agenda All agenda files
15275 agenda-with-archives
15276 All agenda files with any archive files associated with them
15277 \(file1 file2 ...)
15278 If this is a list, all files in the list will be scanned
15280 The remaining args are treated as settings for the skipping facilities of
15281 the scanner. The following items can be given here:
15283 archive skip trees with the archive tag
15284 comment skip trees with the COMMENT keyword
15285 function or Emacs Lisp form:
15286 will be used as value for `org-agenda-skip-function', so
15287 whenever the function returns a position, FUNC will not be
15288 called for that entry and search will continue from the
15289 position returned
15291 If your function needs to retrieve the tags including inherited tags
15292 at the *current* entry, you can use the value of the variable
15293 `org-scanner-tags' which will be much faster than getting the value
15294 with `org-get-tags-at'. If your function gets properties with
15295 `org-entry-properties' at the *current* entry, bind `org-trust-scanner-tags'
15296 to t around the call to `org-entry-properties' to get the same speedup.
15297 Note that if your function moves around to retrieve tags and properties at
15298 a *different* entry, you cannot use these techniques."
15299 (unless (and (or (eq scope 'region) (eq scope 'region-start-level))
15300 (not (org-region-active-p)))
15301 (let* ((org-agenda-archives-mode nil) ; just to make sure
15302 (org-agenda-skip-archived-trees (memq 'archive skip))
15303 (org-agenda-skip-comment-trees (memq 'comment skip))
15304 (org-agenda-skip-function
15305 (car (org-delete-all '(comment archive) skip)))
15306 (org-tags-match-list-sublevels t)
15307 (start-level (eq scope 'region-start-level))
15308 matcher file res
15309 org-todo-keywords-for-agenda
15310 org-done-keywords-for-agenda
15311 org-todo-keyword-alist-for-agenda
15312 org-tag-alist-for-agenda
15313 todo-only)
15315 (cond
15316 ((eq match t) (setq matcher t))
15317 ((eq match nil) (setq matcher t))
15318 (t (setq matcher (if match (cdr (org-make-tags-matcher match)) t))))
15320 (save-excursion
15321 (save-restriction
15322 (cond ((eq scope 'tree)
15323 (org-back-to-heading t)
15324 (org-narrow-to-subtree)
15325 (setq scope nil))
15326 ((and (or (eq scope 'region) (eq scope 'region-start-level))
15327 (org-region-active-p))
15328 ;; If needed, set start-level to a string like "2"
15329 (when start-level
15330 (save-excursion
15331 (goto-char (region-beginning))
15332 (unless (org-at-heading-p) (outline-next-heading))
15333 (setq start-level (org-current-level))))
15334 (narrow-to-region (region-beginning)
15335 (save-excursion
15336 (goto-char (region-end))
15337 (unless (and (bolp) (org-at-heading-p))
15338 (outline-next-heading))
15339 (point)))
15340 (setq scope nil)))
15342 (if (not scope)
15343 (progn
15344 (org-agenda-prepare-buffers
15345 (list (buffer-file-name (current-buffer))))
15346 (setq res (org-scan-tags func matcher todo-only start-level)))
15347 ;; Get the right scope
15348 (cond
15349 ((and scope (listp scope) (symbolp (car scope)))
15350 (setq scope (eval scope)))
15351 ((eq scope 'agenda)
15352 (setq scope (org-agenda-files t)))
15353 ((eq scope 'agenda-with-archives)
15354 (setq scope (org-agenda-files t))
15355 (setq scope (org-add-archive-files scope)))
15356 ((eq scope 'file)
15357 (setq scope (list (buffer-file-name))))
15358 ((eq scope 'file-with-archives)
15359 (setq scope (org-add-archive-files (list (buffer-file-name))))))
15360 (org-agenda-prepare-buffers scope)
15361 (while (setq file (pop scope))
15362 (with-current-buffer (org-find-base-buffer-visiting file)
15363 (save-excursion
15364 (save-restriction
15365 (widen)
15366 (goto-char (point-min))
15367 (setq res (append res (org-scan-tags func matcher todo-only))))))))))
15368 res)))
15370 ;;; Properties API
15372 (defconst org-special-properties
15373 '("ALLTAGS" "BLOCKED" "CATEGORY" "CLOCKSUM" "CLOCKSUM_T" "CLOSED" "DEADLINE"
15374 "FILE" "ITEM" "PRIORITY" "SCHEDULED" "TAGS" "TIMESTAMP" "TIMESTAMP_IA"
15375 "TODO")
15376 "The special properties valid in Org mode.
15377 These are properties that are not defined in the property drawer,
15378 but in some other way.")
15380 (defconst org-default-properties
15381 '("ARCHIVE" "CATEGORY" "SUMMARY" "DESCRIPTION" "CUSTOM_ID"
15382 "LOCATION" "LOGGING" "COLUMNS" "VISIBILITY"
15383 "TABLE_EXPORT_FORMAT" "TABLE_EXPORT_FILE"
15384 "EXPORT_OPTIONS" "EXPORT_TEXT" "EXPORT_FILE_NAME"
15385 "EXPORT_TITLE" "EXPORT_AUTHOR" "EXPORT_DATE" "UNNUMBERED"
15386 "ORDERED" "NOBLOCKING" "COOKIE_DATA" "LOG_INTO_DRAWER" "REPEAT_TO_STATE"
15387 "CLOCK_MODELINE_TOTAL" "STYLE" "HTML_CONTAINER_CLASS")
15388 "Some properties that are used by Org mode for various purposes.
15389 Being in this list makes sure that they are offered for completion.")
15391 (defun org--update-property-plist (key val props)
15392 "Associate KEY to VAL in alist PROPS.
15393 Modifications are made by side-effect. Return new alist."
15394 (let* ((appending (string= (substring key -1) "+"))
15395 (key (if appending (substring key 0 -1) key))
15396 (old (assoc-string key props t)))
15397 (if (not old) (cons (cons key val) props)
15398 (setcdr old (if appending (concat (cdr old) " " val) val))
15399 props)))
15401 (defun org-get-property-block (&optional beg force)
15402 "Return the (beg . end) range of the body of the property drawer.
15403 BEG is the beginning of the current subtree, or of the part
15404 before the first headline. If it is not given, it will be found.
15405 If the drawer does not exist, create it if FORCE is non-nil, or
15406 return nil."
15407 (org-with-wide-buffer
15408 (when beg (goto-char beg))
15409 (unless (org-before-first-heading-p)
15410 (let ((beg (cond (beg)
15411 ((or (not (featurep 'org-inlinetask))
15412 (org-inlinetask-in-task-p))
15413 (org-back-to-heading t))
15414 (t (org-with-limited-levels (org-back-to-heading t))))))
15415 (forward-line)
15416 (when (org-looking-at-p org-planning-line-re) (forward-line))
15417 (cond ((looking-at org-property-drawer-re)
15418 (forward-line)
15419 (cons (point) (progn (goto-char (match-end 0))
15420 (line-beginning-position))))
15421 (force
15422 (goto-char beg)
15423 (org-insert-property-drawer)
15424 (let ((pos (save-excursion (search-forward ":END:")
15425 (line-beginning-position))))
15426 (cons pos pos))))))))
15428 (defun org-at-property-p ()
15429 "Non-nil when point is inside a property drawer.
15430 See `org-property-re' for match data, if applicable."
15431 (save-excursion
15432 (beginning-of-line)
15433 (and (looking-at org-property-re)
15434 (let ((property-drawer (save-match-data (org-get-property-block))))
15435 (and property-drawer (< (point) (cdr property-drawer)))))))
15437 (defun org-property-action ()
15438 "Do an action on properties."
15439 (interactive)
15440 (unless (org-at-property-p) (user-error "Not at a property"))
15441 (message "Property Action: [s]et [d]elete [D]elete globally [c]ompute")
15442 (let ((c (read-char-exclusive)))
15443 (case c
15444 (?s (call-interactively #'org-set-property))
15445 (?d (call-interactively #'org-delete-property))
15446 (?D (call-interactively #'org-delete-property-globally))
15447 (?c (call-interactively #'org-compute-property-at-point))
15448 (otherwise (user-error "No such property action %c" c)))))
15450 (defun org-inc-effort ()
15451 "Increment the value of the effort property in the current entry."
15452 (interactive)
15453 (org-set-effort nil t))
15455 (defvar org-clock-effort) ; Defined in org-clock.el.
15456 (defvar org-clock-current-task) ; Defined in org-clock.el.
15457 (defun org-set-effort (&optional value increment)
15458 "Set the effort property of the current entry.
15459 With numerical prefix arg, use the nth allowed value, 0 stands for the
15460 10th allowed value.
15462 When INCREMENT is non-nil, set the property to the next allowed value."
15463 (interactive "P")
15464 (if (equal value 0) (setq value 10))
15465 (let* ((completion-ignore-case t)
15466 (prop org-effort-property)
15467 (cur (org-entry-get nil prop))
15468 (allowed (org-property-get-allowed-values nil prop 'table))
15469 (existing (mapcar 'list (org-property-values prop)))
15470 (heading (nth 4 (org-heading-components)))
15472 (val (cond
15473 ((stringp value) value)
15474 ((and allowed (integerp value))
15475 (or (car (nth (1- value) allowed))
15476 (car (org-last allowed))))
15477 ((and allowed increment)
15478 (or (caadr (member (list cur) allowed))
15479 (user-error "Allowed effort values are not set")))
15480 (allowed
15481 (message "Select 1-9,0, [RET%s]: %s"
15482 (if cur (concat "=" cur) "")
15483 (mapconcat 'car allowed " "))
15484 (setq rpl (read-char-exclusive))
15485 (if (equal rpl ?\r)
15487 (setq rpl (- rpl ?0))
15488 (if (equal rpl 0) (setq rpl 10))
15489 (if (and (> rpl 0) (<= rpl (length allowed)))
15490 (car (nth (1- rpl) allowed))
15491 (org-completing-read "Effort: " allowed nil))))
15493 (let (org-completion-use-ido org-completion-use-iswitchb)
15494 (org-completing-read
15495 (concat "Effort " (if (and cur (string-match "\\S-" cur))
15496 (concat "[" cur "]") "")
15497 ": ")
15498 existing nil nil "" nil cur))))))
15499 (unless (equal (org-entry-get nil prop) val)
15500 (org-entry-put nil prop val))
15501 (org-refresh-property
15502 '((effort . identity)
15503 (effort-minutes . org-duration-string-to-minutes))
15504 val)
15505 (when (string= heading org-clock-current-task)
15506 (setq org-clock-effort (get-text-property (point-at-bol) 'effort))
15507 (org-clock-update-mode-line))
15508 (message "%s is now %s" prop val)))
15510 (defun org-entry-properties (&optional pom which)
15511 "Get all properties of the current entry.
15513 When POM is a buffer position, get all properties from the entry
15514 there instead.
15516 This includes the TODO keyword, the tags, time strings for
15517 deadline, scheduled, and clocking, and any additional properties
15518 defined in the entry.
15520 If WHICH is nil or `all', get all properties. If WHICH is
15521 `special' or `standard', only get that subclass. If WHICH is
15522 a string, only get that property.
15524 Return value is an alist. Keys are properties, as upcased
15525 strings."
15526 (org-with-point-at pom
15527 (when (and (derived-mode-p 'org-mode)
15528 (ignore-errors (org-back-to-heading t)))
15529 (catch 'exit
15530 (let* ((beg (point))
15531 (specific (and (stringp which) (upcase which)))
15532 (which (cond ((not specific) which)
15533 ((member specific org-special-properties) 'special)
15534 (t 'standard)))
15535 props)
15536 ;; Get the special properties, like TODO and TAGS.
15537 (when (memq which '(nil all special))
15538 (when (or (not specific) (string= specific "CLOCKSUM"))
15539 (let ((clocksum (get-text-property (point) :org-clock-minutes)))
15540 (when clocksum
15541 (push (cons "CLOCKSUM"
15542 (org-columns-number-to-string
15543 (/ (float clocksum) 60.) 'add_times))
15544 props)))
15545 (when specific (throw 'exit props)))
15546 (when (or (not specific) (string= specific "CLOCKSUM_T"))
15547 (let ((clocksumt (get-text-property (point)
15548 :org-clock-minutes-today)))
15549 (when clocksumt
15550 (push (cons "CLOCKSUM_T"
15551 (org-columns-number-to-string
15552 (/ (float clocksumt) 60.) 'add_times))
15553 props)))
15554 (when specific (throw 'exit props)))
15555 (when (or (not specific) (string= specific "ITEM"))
15556 (when (looking-at org-complex-heading-regexp)
15557 (push (cons "ITEM"
15558 (concat
15559 (org-match-string-no-properties 1)
15560 (let ((title (org-match-string-no-properties 4)))
15561 (when (org-string-nw-p title)
15562 (concat " " (org-remove-tabs title))))))
15563 props))
15564 (when specific (throw 'exit props)))
15565 (when (or (not specific) (string= specific "TODO"))
15566 (when (and (looking-at org-todo-line-regexp) (match-end 2))
15567 (push (cons "TODO" (org-match-string-no-properties 2)) props))
15568 (when specific (throw 'exit props)))
15569 (when (or (not specific) (string= specific "PRIORITY"))
15570 (when (looking-at org-priority-regexp)
15571 (push (cons "PRIORITY" (org-match-string-no-properties 2)) props))
15572 (when specific (throw 'exit props)))
15573 (when (or (not specific) (string= specific "FILE"))
15574 (push (cons "FILE" (buffer-file-name (buffer-base-buffer)))
15575 props)
15576 (when specific (throw 'exit props)))
15577 (when (or (not specific) (string= specific "TAGS"))
15578 (let ((value (org-string-nw-p (org-get-tags-string))))
15579 (when value (push (cons "TAGS" value) props)))
15580 (when specific (throw 'exit props)))
15581 (when (or (not specific) (string= specific "ALLTAGS"))
15582 (let ((value (org-get-tags-at)))
15583 (when value
15584 (push (cons "ALLTAGS"
15585 (format ":%s:" (mapconcat #'identity value ":")))
15586 props)))
15587 (when specific (throw 'exit props)))
15588 (when (or (not specific) (string= specific "BLOCKED"))
15589 (push (cons "BLOCKED" (if (org-entry-blocked-p) "t" "")) props)
15590 (when specific (throw 'exit props)))
15591 (when (or (not specific)
15592 (member specific '("CLOSED" "DEADLINE" "SCHEDULED")))
15593 (forward-line)
15594 (when (org-looking-at-p org-planning-line-re)
15595 (end-of-line)
15596 (let ((bol (line-beginning-position))
15597 ;; Backward compatibility: time keywords used to
15598 ;; be configurable (before 8.3). Make sure we
15599 ;; get the correct keyword.
15600 (key-assoc `(("CLOSED" . ,org-closed-string)
15601 ("DEADLINE" . ,org-deadline-string)
15602 ("SCHEDULED" . ,org-scheduled-string))))
15603 (dolist (pair (if specific (list (assoc specific key-assoc))
15604 key-assoc))
15605 (save-excursion
15606 (when (search-backward (cdr pair) bol t)
15607 (goto-char (match-end 0))
15608 (skip-chars-forward " \t")
15609 (and (looking-at org-ts-regexp-both)
15610 (push (cons (car pair)
15611 (org-match-string-no-properties 0))
15612 props)))))))
15613 (when specific (throw 'exit props)))
15614 (when (or (not specific)
15615 (member specific '("TIMESTAMP" "TIMESTAMP_IA")))
15616 (let ((find-ts
15617 (lambda (end ts)
15618 (let ((regexp (if (or (string= specific "TIMESTAMP")
15619 (assoc "TIMESTAMP_IA" ts))
15620 org-ts-regexp
15621 org-ts-regexp-both)))
15622 (catch 'next
15623 (while (re-search-forward regexp end t)
15624 (backward-char)
15625 (let ((object (org-element-context)))
15626 ;; Accept to match timestamps in node
15627 ;; properties, too.
15628 (when (memq (org-element-type object)
15629 '(node-property timestamp))
15630 (let ((type
15631 (org-element-property :type object)))
15632 (cond
15633 ((and (memq type '(active active-range))
15634 (not (equal specific "TIMESTAMP_IA")))
15635 (unless (assoc "TIMESTAMP" ts)
15636 (push (cons "TIMESTAMP"
15637 (org-element-property
15638 :raw-value object))
15640 (when specific (throw 'exit ts))))
15641 ((and (memq type '(inactive inactive-range))
15642 (not (string= specific "TIMESTAMP")))
15643 (unless (assoc "TIMESTAMP_IA" ts)
15644 (push (cons "TIMESTAMP_IA"
15645 (org-element-property
15646 :raw-value object))
15648 (when specific (throw 'exit ts))))))
15649 ;; Both timestamp types are found,
15650 ;; move to next part.
15651 (when (= (length ts) 2) (throw 'next ts)))))
15652 ts)))))
15653 (goto-char beg)
15654 ;; First look for timestamps within headline.
15655 (let ((ts (funcall find-ts (line-end-position) nil)))
15656 (if (= (length ts) 2) (setq props (nconc ts props))
15657 (forward-line)
15658 ;; Then find timestamps in the section, skipping
15659 ;; planning line.
15660 (when (org-looking-at-p org-planning-line-re)
15661 (forward-line))
15662 (let ((end (save-excursion (outline-next-heading))))
15663 (setq props (nconc (funcall find-ts end ts) props))))))))
15664 ;; Get the standard properties, like :PROP:.
15665 (when (memq which '(nil all standard))
15666 ;; If we are looking after a specific property, delegate
15667 ;; to `org-entry-get', which is faster. However, make an
15668 ;; exception for "CATEGORY", since it can be also set
15669 ;; through keywords (i.e. #+CATEGORY).
15670 (if (and specific (not (equal specific "CATEGORY")))
15671 (let ((value (org-entry-get beg specific nil t)))
15672 (throw 'exit (and value (list (cons specific value)))))
15673 (let ((range (org-get-property-block beg)))
15674 (when range
15675 (let ((end (cdr range)) seen-base)
15676 (goto-char (car range))
15677 ;; Unlike to `org--update-property-plist', we
15678 ;; handle the case where base values is found
15679 ;; after its extension. We also forbid standard
15680 ;; properties to be named as special properties.
15681 (while (re-search-forward org-property-re end t)
15682 (let* ((key (upcase (org-match-string-no-properties 2)))
15683 (extendp (org-string-match-p "\\+\\'" key))
15684 (key-base (if extendp (substring key 0 -1) key))
15685 (value (org-match-string-no-properties 3)))
15686 (cond
15687 ((member-ignore-case key-base org-special-properties))
15688 (extendp
15689 (setq props
15690 (org--update-property-plist key value props)))
15691 ((member key seen-base))
15692 (t (push key seen-base)
15693 (let ((p (assoc-string key props t)))
15694 (if p (setcdr p (concat value " " (cdr p)))
15695 (push (cons key value) props))))))))))))
15696 (unless (assoc "CATEGORY" props)
15697 (push (cons "CATEGORY" (org-get-category beg)) props)
15698 (when (string= specific "CATEGORY") (throw 'exit props)))
15699 ;; Return value.
15700 (append (get-text-property beg 'org-summaries) props))))))
15702 (defun org-entry-get (pom property &optional inherit literal-nil)
15703 "Get value of PROPERTY for entry or content at point-or-marker POM.
15705 If INHERIT is non-nil and the entry does not have the property,
15706 then also check higher levels of the hierarchy. If INHERIT is
15707 the symbol `selective', use inheritance only if the setting in
15708 `org-use-property-inheritance' selects PROPERTY for inheritance.
15710 If the property is present but empty, the return value is the
15711 empty string. If the property is not present at all, nil is
15712 returned. In any other case, return the value as a string.
15713 Search is case-insensitive.
15715 If LITERAL-NIL is set, return the string value \"nil\" as
15716 a string, do not interpret it as the list atom nil. This is used
15717 for inheritance when a \"nil\" value can supersede a non-nil
15718 value higher up the hierarchy."
15719 (org-with-point-at pom
15720 (cond
15721 ((and inherit
15722 (or (not (eq inherit 'selective)) (org-property-inherit-p property)))
15723 (org-entry-get-with-inheritance property literal-nil))
15724 ((member-ignore-case property org-special-properties)
15725 ;; We need a special property. Use `org-entry-properties' to
15726 ;; retrieve it, but specify the wanted property.
15727 (cdr (assoc-string property (org-entry-properties nil property))))
15729 (let ((range (org-get-property-block)))
15730 (when range
15731 (let* ((case-fold-search t)
15732 (end (cdr range))
15733 (props
15734 (let ((global
15735 (or (assoc-string property org-file-properties t)
15736 (assoc-string property org-global-properties t)
15737 (assoc-string
15738 property org-global-properties-fixed t))))
15739 ;; Make sure to not re-use GLOBAL as
15740 ;; `org--update-property-plist' would alter it by
15741 ;; side-effect.
15742 (and global (list (cons property (cdr global))))))
15743 (find-value
15744 (lambda (key)
15745 (when (re-search-forward (org-re-property key nil t) end t)
15746 (setq props
15747 (org--update-property-plist
15748 key (org-match-string-no-properties 3) props))))))
15749 (goto-char (car range))
15750 ;; Find base value.
15751 (save-excursion (funcall find-value property))
15752 ;; Find additional values.
15753 (let ((property+ (concat property "+")))
15754 (while (funcall find-value property+)))
15755 ;; Return final value.
15756 (let ((val (cdr (assoc-string property props t))))
15757 (if literal-nil val (org-not-nil val))))))))))
15759 (defun org-property-or-variable-value (var &optional inherit)
15760 "Check if there is a property fixing the value of VAR.
15761 If yes, return this value. If not, return the current value of the variable."
15762 (let ((prop (org-entry-get nil (symbol-name var) inherit)))
15763 (if (and prop (stringp prop) (string-match "\\S-" prop))
15764 (read prop)
15765 (symbol-value var))))
15767 (defun org-entry-delete (pom property)
15768 "Delete the property PROPERTY from entry at point-or-marker POM."
15769 (unless (member property org-special-properties)
15770 (org-with-point-at pom
15771 (let ((range (org-get-property-block)))
15772 (when range
15773 (let ((begin (car range))
15774 (end (copy-marker (cdr range))))
15775 (goto-char begin)
15776 (when (re-search-forward (org-re-property property nil t) end t)
15777 (delete-region (match-beginning 0) (line-beginning-position 2))
15778 ;; If drawer is empty, remove it altogether.
15779 (when (= begin end)
15780 (delete-region (line-beginning-position 0)
15781 (line-beginning-position 2)))
15782 (set-marker end nil))))))))
15784 ;; Multi-values properties are properties that contain multiple values
15785 ;; These values are assumed to be single words, separated by whitespace.
15786 (defun org-entry-add-to-multivalued-property (pom property value)
15787 "Add VALUE to the words in the PROPERTY in entry at point-or-marker POM."
15788 (let* ((old (org-entry-get pom property))
15789 (values (and old (org-split-string old "[ \t]"))))
15790 (setq value (org-entry-protect-space value))
15791 (unless (member value values)
15792 (setq values (append values (list value)))
15793 (org-entry-put pom property
15794 (mapconcat 'identity values " ")))))
15796 (defun org-entry-remove-from-multivalued-property (pom property value)
15797 "Remove VALUE from words in the PROPERTY in entry at point-or-marker POM."
15798 (let* ((old (org-entry-get pom property))
15799 (values (and old (org-split-string old "[ \t]"))))
15800 (setq value (org-entry-protect-space value))
15801 (when (member value values)
15802 (setq values (delete value values))
15803 (org-entry-put pom property
15804 (mapconcat 'identity values " ")))))
15806 (defun org-entry-member-in-multivalued-property (pom property value)
15807 "Is VALUE one of the words in the PROPERTY in entry at point-or-marker POM?"
15808 (let* ((old (org-entry-get pom property))
15809 (values (and old (org-split-string old "[ \t]"))))
15810 (setq value (org-entry-protect-space value))
15811 (member value values)))
15813 (defun org-entry-get-multivalued-property (pom property)
15814 "Return a list of values in a multivalued property."
15815 (let* ((value (org-entry-get pom property))
15816 (values (and value (org-split-string value "[ \t]"))))
15817 (mapcar 'org-entry-restore-space values)))
15819 (defun org-entry-put-multivalued-property (pom property &rest values)
15820 "Set multivalued PROPERTY at point-or-marker POM to VALUES.
15821 VALUES should be a list of strings. Spaces will be protected."
15822 (org-entry-put pom property
15823 (mapconcat 'org-entry-protect-space values " "))
15824 (let* ((value (org-entry-get pom property))
15825 (values (and value (org-split-string value "[ \t]"))))
15826 (mapcar 'org-entry-restore-space values)))
15828 (defun org-entry-protect-space (s)
15829 "Protect spaces and newline in string S."
15830 (while (string-match " " s)
15831 (setq s (replace-match "%20" t t s)))
15832 (while (string-match "\n" s)
15833 (setq s (replace-match "%0A" t t s)))
15836 (defun org-entry-restore-space (s)
15837 "Restore spaces and newline in string S."
15838 (while (string-match "%20" s)
15839 (setq s (replace-match " " t t s)))
15840 (while (string-match "%0A" s)
15841 (setq s (replace-match "\n" t t s)))
15844 (defvar org-entry-property-inherited-from (make-marker)
15845 "Marker pointing to the entry from where a property was inherited.
15846 Each call to `org-entry-get-with-inheritance' will set this marker to the
15847 location of the entry where the inheritance search matched. If there was
15848 no match, the marker will point nowhere.
15849 Note that also `org-entry-get' calls this function, if the INHERIT flag
15850 is set.")
15852 (defun org-entry-get-with-inheritance (property &optional literal-nil)
15853 "Get PROPERTY of entry or content at point, search higher levels if needed.
15854 The search will stop at the first ancestor which has the property defined.
15855 If the value found is \"nil\", return nil to show that the property
15856 should be considered as undefined (this is the meaning of nil here).
15857 However, if LITERAL-NIL is set, return the string value \"nil\" instead."
15858 (move-marker org-entry-property-inherited-from nil)
15859 (let (value)
15860 (org-with-wide-buffer
15861 (catch 'exit
15862 (while t
15863 (when (setq value (org-entry-get nil property nil literal-nil))
15864 (org-back-to-heading t)
15865 (move-marker org-entry-property-inherited-from (point))
15866 (throw 'exit nil))
15867 (or (org-up-heading-safe) (throw 'exit nil)))))
15868 (unless value
15869 (setq value
15870 (cdr (or (assoc-string property org-file-properties t)
15871 (assoc-string property org-global-properties t)
15872 (assoc-string property org-global-properties-fixed t)))))
15873 (if literal-nil value (org-not-nil value))))
15875 (defvar org-property-changed-functions nil
15876 "Hook called when the value of a property has changed.
15877 Each hook function should accept two arguments, the name of the property
15878 and the new value.")
15880 (defun org-entry-put (pom property value)
15881 "Set PROPERTY to VALUE for entry at point-or-marker POM.
15883 If the value is `nil', it is converted to the empty string. If
15884 it is not a string, an error is raised.
15886 PROPERTY can be any regular property (see
15887 `org-special-properties'). It can also be \"TODO\",
15888 \"PRIORITY\", \"SCHEDULED\" and \"DEADLINE\".
15890 For the last two properties, VALUE may have any of the special
15891 values \"earlier\" and \"later\". The function then increases or
15892 decreases scheduled or deadline date by one day."
15893 (cond ((null value) (setq value ""))
15894 ((not (stringp value)) (error "Properties values should be strings")))
15895 (org-with-point-at pom
15896 (if (or (not (featurep 'org-inlinetask)) (org-inlinetask-in-task-p))
15897 (org-back-to-heading t)
15898 (org-with-limited-levels (org-back-to-heading t)))
15899 (let ((beg (point)))
15900 (cond
15901 ((equal property "TODO")
15902 (cond ((not (org-string-nw-p value)) (setq value 'none))
15903 ((not (member value org-todo-keywords-1))
15904 (user-error "\"%s\" is not a valid TODO state" value)))
15905 (org-todo value)
15906 (org-set-tags nil 'align))
15907 ((equal property "PRIORITY")
15908 (org-priority (if (org-string-nw-p value) (string-to-char value) ?\s))
15909 (org-set-tags nil 'align))
15910 ((equal property "SCHEDULED")
15911 (forward-line)
15912 (if (and (org-looking-at-p org-planning-line-re)
15913 (re-search-forward
15914 org-scheduled-time-regexp (line-end-position) t))
15915 (cond ((string= value "earlier") (org-timestamp-change -1 'day))
15916 ((string= value "later") (org-timestamp-change 1 'day))
15917 ((string= value "") (org-schedule '(4)))
15918 (t (org-schedule nil value)))
15919 (if (member value '("earlier" "later" ""))
15920 (call-interactively #'org-schedule)
15921 (org-schedule nil value))))
15922 ((equal property "DEADLINE")
15923 (forward-line)
15924 (if (and (org-looking-at-p org-planning-line-re)
15925 (re-search-forward
15926 org-deadline-time-regexp (line-end-position) t))
15927 (cond ((string= value "earlier") (org-timestamp-change -1 'day))
15928 ((string= value "later") (org-timestamp-change 1 'day))
15929 ((string= value "") (org-deadline '(4)))
15930 (t (org-deadline nil value)))
15931 (if (member value '("earlier" "later" ""))
15932 (call-interactively #'org-deadline)
15933 (org-deadline nil value))))
15934 ((member property org-special-properties)
15935 (error "The %s property cannot be set with `org-entry-put'" property))
15937 (let* ((range (org-get-property-block beg 'force))
15938 (end (cdr range))
15939 (case-fold-search t))
15940 (goto-char (car range))
15941 (if (re-search-forward (org-re-property property nil t) end t)
15942 (progn (delete-region (match-beginning 0) (match-end 0))
15943 (goto-char (match-beginning 0)))
15944 (goto-char end)
15945 (insert "\n")
15946 (backward-char))
15947 (insert ":" property ":")
15948 (when value (insert " " value))
15949 (org-indent-line)))))
15950 (run-hook-with-args 'org-property-changed-functions property value)))
15952 (defun org-buffer-property-keys (&optional specials defaults columns)
15953 "Get all property keys in the current buffer.
15955 When SPECIALS is non-nil, also list the special properties that
15956 reflect things like tags and TODO state.
15958 When DEFAULTS is non-nil, also include properties that has
15959 special meaning internally: ARCHIVE, CATEGORY, SUMMARY,
15960 DESCRIPTION, LOCATION, and LOGGING and others.
15962 When COLUMNS in non-nil, also include property names given in
15963 COLUMN formats in the current buffer."
15964 (let ((case-fold-search t)
15965 (props (append
15966 (and specials org-special-properties)
15967 (and defaults (cons org-effort-property org-default-properties))
15968 nil)))
15969 (org-with-wide-buffer
15970 (goto-char (point-min))
15971 (while (re-search-forward org-property-start-re nil t)
15972 (let ((range (org-get-property-block)))
15973 (catch 'skip
15974 (unless range
15975 (when (and (not (org-before-first-heading-p))
15976 (y-or-n-p (format "Malformed drawer at %d, repair?"
15977 (line-beginning-position))))
15978 (org-get-property-block nil t))
15979 (throw 'skip nil))
15980 (goto-char (car range))
15981 (let ((begin (car range))
15982 (end (cdr range)))
15983 ;; Make sure that found property block is not located
15984 ;; before current point, as it would generate an infloop.
15985 ;; It can happen, for example, in the following
15986 ;; situation:
15988 ;; * Headline
15989 ;; :PROPERTIES:
15990 ;; ...
15991 ;; :END:
15992 ;; *************** Inlinetask
15993 ;; #+BEGIN_EXAMPLE
15994 ;; :PROPERTIES:
15995 ;; #+END_EXAMPLE
15997 (if (< begin (point)) (throw 'skip nil) (goto-char begin))
15998 (while (< (point) end)
15999 (let ((p (progn (looking-at org-property-re)
16000 (org-match-string-no-properties 2))))
16001 ;; Only add true property name, not extension symbol.
16002 (add-to-list 'props
16003 (if (not (org-string-match-p "\\+\\'" p)) p
16004 (substring p 0 -1))))
16005 (forward-line))))
16006 (outline-next-heading)))
16007 (when columns
16008 (goto-char (point-min))
16009 (while (re-search-forward "^[ \t]*\\(?:#\\+\\|:\\)COLUMNS:" nil t)
16010 (let ((element (org-element-at-point)))
16011 (when (memq (org-element-type element) '(keyword node-property))
16012 (let ((value (org-element-property :value element))
16013 (start 0))
16014 (while (string-match "%[0-9]*\\(\\S-+\\)" value start)
16015 (setq start (match-end 0))
16016 (let ((p (org-match-string-no-properties 1 value)))
16017 (unless (member-ignore-case p org-special-properties)
16018 (add-to-list 'props p))))))))))
16019 (sort props (lambda (a b) (string< (upcase a) (upcase b))))))
16021 (defun org-property-values (key)
16022 "List all non-nil values of property KEY in current buffer."
16023 (org-with-wide-buffer
16024 (goto-char (point-min))
16025 (let ((case-fold-search t)
16026 (re (org-re-property key))
16027 values)
16028 (while (re-search-forward re nil t)
16029 (add-to-list 'values (org-entry-get (point) key)))
16030 values)))
16032 (defun org-insert-property-drawer ()
16033 "Insert a property drawer into the current entry."
16034 (org-with-wide-buffer
16035 (if (or (not (featurep 'org-inlinetask)) (org-inlinetask-in-task-p))
16036 (org-back-to-heading t)
16037 (org-with-limited-levels (org-back-to-heading t)))
16038 (forward-line)
16039 (when (org-looking-at-p org-planning-line-re) (forward-line))
16040 (unless (org-looking-at-p org-property-drawer-re)
16041 (let ((inhibit-read-only t))
16042 (unless (bolp) (insert "\n"))
16043 (let ((begin (point)))
16044 (insert ":PROPERTIES:\n:END:\n")
16045 (org-indent-region begin (point)))))))
16047 (defun org-insert-drawer (&optional arg drawer)
16048 "Insert a drawer at point.
16050 When optional argument ARG is non-nil, insert a property drawer.
16052 Optional argument DRAWER, when non-nil, is a string representing
16053 drawer's name. Otherwise, the user is prompted for a name.
16055 If a region is active, insert the drawer around that region
16056 instead.
16058 Point is left between drawer's boundaries."
16059 (interactive "P")
16060 (let* ((drawer (if arg "PROPERTIES"
16061 (or drawer (read-from-minibuffer "Drawer: ")))))
16062 (cond
16063 ;; With C-u, fall back on `org-insert-property-drawer'
16064 (arg (org-insert-property-drawer))
16065 ;; Check validity of suggested drawer's name.
16066 ((not (org-string-match-p org-drawer-regexp (format ":%s:" drawer)))
16067 (user-error "Invalid drawer name"))
16068 ;; With an active region, insert a drawer at point.
16069 ((not (org-region-active-p))
16070 (progn
16071 (unless (bolp) (insert "\n"))
16072 (insert (format ":%s:\n\n:END:\n" drawer))
16073 (forward-line -2)))
16074 ;; Otherwise, insert the drawer at point
16076 (let ((rbeg (region-beginning))
16077 (rend (copy-marker (region-end))))
16078 (unwind-protect
16079 (progn
16080 (goto-char rbeg)
16081 (beginning-of-line)
16082 (when (save-excursion
16083 (re-search-forward org-outline-regexp-bol rend t))
16084 (user-error "Drawers cannot contain headlines"))
16085 ;; Position point at the beginning of the first
16086 ;; non-blank line in region. Insert drawer's opening
16087 ;; there, then indent it.
16088 (org-skip-whitespace)
16089 (beginning-of-line)
16090 (insert ":" drawer ":\n")
16091 (forward-line -1)
16092 (indent-for-tab-command)
16093 ;; Move point to the beginning of the first blank line
16094 ;; after the last non-blank line in region. Insert
16095 ;; drawer's closing, then indent it.
16096 (goto-char rend)
16097 (skip-chars-backward " \r\t\n")
16098 (insert "\n:END:")
16099 (deactivate-mark t)
16100 (indent-for-tab-command)
16101 (unless (eolp) (insert "\n")))
16102 ;; Clear marker, whatever the outcome of insertion is.
16103 (set-marker rend nil)))))))
16105 (defvar org-property-set-functions-alist nil
16106 "Property set function alist.
16107 Each entry should have the following format:
16109 (PROPERTY . READ-FUNCTION)
16111 The read function will be called with the same argument as
16112 `org-completing-read'.")
16114 (defun org-set-property-function (property)
16115 "Get the function that should be used to set PROPERTY.
16116 This is computed according to `org-property-set-functions-alist'."
16117 (or (cdr (assoc property org-property-set-functions-alist))
16118 'org-completing-read))
16120 (defun org-read-property-value (property)
16121 "Read PROPERTY value from user."
16122 (let* ((completion-ignore-case t)
16123 (allowed (org-property-get-allowed-values nil property 'table))
16124 (cur (org-entry-get nil property))
16125 (prompt (concat property " value"
16126 (if (and cur (string-match "\\S-" cur))
16127 (concat " [" cur "]") "") ": "))
16128 (set-function (org-set-property-function property))
16129 (val (if allowed
16130 (funcall set-function prompt allowed nil
16131 (not (get-text-property 0 'org-unrestricted
16132 (caar allowed))))
16133 (let (org-completion-use-ido org-completion-use-iswitchb)
16134 (funcall set-function prompt
16135 (mapcar 'list (org-property-values property))
16136 nil nil "" nil cur)))))
16137 (org-trim val)))
16139 (defvar org-last-set-property nil)
16140 (defvar org-last-set-property-value nil)
16141 (defun org-read-property-name ()
16142 "Read a property name."
16143 (let* ((completion-ignore-case t)
16144 (keys (org-buffer-property-keys nil t t))
16145 (default-prop (or (save-excursion
16146 (save-match-data
16147 (beginning-of-line)
16148 (and (looking-at "^\\s-*:\\([^:\n]+\\):")
16149 (null (string= (match-string 1) "END"))
16150 (match-string 1))))
16151 org-last-set-property))
16152 (property (org-icompleting-read
16153 (concat "Property"
16154 (if default-prop (concat " [" default-prop "]") "")
16155 ": ")
16156 (mapcar 'list keys)
16157 nil nil nil nil
16158 default-prop)))
16159 (if (member property keys)
16160 property
16161 (or (cdr (assoc (downcase property)
16162 (mapcar (lambda (x) (cons (downcase x) x))
16163 keys)))
16164 property))))
16166 (defun org-set-property-and-value (use-last)
16167 "Allow to set [PROPERTY]: [value] direction from prompt.
16168 When use-default, don't even ask, just use the last
16169 \"[PROPERTY]: [value]\" string from the history."
16170 (interactive "P")
16171 (let* ((completion-ignore-case t)
16172 (pv (or (and use-last org-last-set-property-value)
16173 (org-completing-read
16174 "Enter a \"[Property]: [value]\" pair: "
16175 nil nil nil nil nil
16176 org-last-set-property-value)))
16177 prop val)
16178 (when (string-match "^[ \t]*\\([^:]+\\):[ \t]*\\(.*\\)[ \t]*$" pv)
16179 (setq prop (match-string 1 pv)
16180 val (match-string 2 pv))
16181 (org-set-property prop val))))
16183 (defun org-set-property (property value)
16184 "In the current entry, set PROPERTY to VALUE.
16185 When called interactively, this will prompt for a property name, offering
16186 completion on existing and default properties. And then it will prompt
16187 for a value, offering completion either on allowed values (via an inherited
16188 xxx_ALL property) or on existing values in other instances of this property
16189 in the current file."
16190 (interactive (list nil nil))
16191 (let* ((property (or property (org-read-property-name)))
16192 (value (or value (org-read-property-value property)))
16193 (fn (cdr (assoc property org-properties-postprocess-alist))))
16194 (setq org-last-set-property property)
16195 (setq org-last-set-property-value (concat property ": " value))
16196 ;; Possibly postprocess the inserted value:
16197 (when fn (setq value (funcall fn value)))
16198 (unless (equal (org-entry-get nil property) value)
16199 (org-entry-put nil property value))))
16201 (defun org-delete-property (property)
16202 "In the current entry, delete PROPERTY."
16203 (interactive
16204 (let* ((completion-ignore-case t)
16205 (cat (org-entry-get (point) "CATEGORY"))
16206 (props0 (org-entry-properties nil 'standard))
16207 (props (if cat props0
16208 (delete `("CATEGORY" . ,(org-get-category)) props0)))
16209 (prop (if (< 1 (length props))
16210 (org-icompleting-read "Property: " props nil t)
16211 (caar props))))
16212 (list prop)))
16213 (if (not property)
16214 (message "No property to delete in this entry")
16215 (org-entry-delete nil property)
16216 (message "Property \"%s\" deleted" property)))
16218 (defun org-delete-property-globally (property)
16219 "Remove PROPERTY globally, from all entries."
16220 (interactive
16221 (let* ((completion-ignore-case t)
16222 (prop (org-icompleting-read
16223 "Globally remove property: "
16224 (mapcar 'list (org-buffer-property-keys)))))
16225 (list prop)))
16226 (save-excursion
16227 (save-restriction
16228 (widen)
16229 (goto-char (point-min))
16230 (let ((cnt 0))
16231 (while (re-search-forward
16232 (org-re-property property)
16233 nil t)
16234 (setq cnt (1+ cnt))
16235 (delete-region (match-beginning 0) (1+ (point-at-eol))))
16236 (message "Property \"%s\" removed from %d entries" property cnt)))))
16238 (defvar org-columns-current-fmt-compiled) ; defined in org-colview.el
16240 (defun org-compute-property-at-point ()
16241 "Compute the property at point.
16242 This looks for an enclosing column format, extracts the operator and
16243 then applies it to the property in the column format's scope."
16244 (interactive)
16245 (unless (org-at-property-p)
16246 (user-error "Not at a property"))
16247 (let ((prop (org-match-string-no-properties 2)))
16248 (org-columns-get-format-and-top-level)
16249 (unless (nth 3 (assoc prop org-columns-current-fmt-compiled))
16250 (user-error "No operator defined for property %s" prop))
16251 (org-columns-compute prop)))
16253 (defvar org-property-allowed-value-functions nil
16254 "Hook for functions supplying allowed values for a specific property.
16255 The functions must take a single argument, the name of the property, and
16256 return a flat list of allowed values. If \":ETC\" is one of
16257 the values, this means that these values are intended as defaults for
16258 completion, but that other values should be allowed too.
16259 The functions must return nil if they are not responsible for this
16260 property.")
16262 (defun org-property-get-allowed-values (pom property &optional table)
16263 "Get allowed values for the property PROPERTY.
16264 When TABLE is non-nil, return an alist that can directly be used for
16265 completion."
16266 (let (vals)
16267 (cond
16268 ((equal property "TODO")
16269 (setq vals (org-with-point-at pom
16270 (append org-todo-keywords-1 '("")))))
16271 ((equal property "PRIORITY")
16272 (let ((n org-lowest-priority))
16273 (while (>= n org-highest-priority)
16274 (push (char-to-string n) vals)
16275 (setq n (1- n)))))
16276 ((member property org-special-properties))
16277 ((setq vals (run-hook-with-args-until-success
16278 'org-property-allowed-value-functions property)))
16280 (setq vals (org-entry-get pom (concat property "_ALL") 'inherit))
16281 (when (and vals (string-match "\\S-" vals))
16282 (setq vals (car (read-from-string (concat "(" vals ")"))))
16283 (setq vals (mapcar (lambda (x)
16284 (cond ((stringp x) x)
16285 ((numberp x) (number-to-string x))
16286 ((symbolp x) (symbol-name x))
16287 (t "???")))
16288 vals)))))
16289 (when (member ":ETC" vals)
16290 (setq vals (remove ":ETC" vals))
16291 (org-add-props (car vals) '(org-unrestricted t)))
16292 (if table (mapcar 'list vals) vals)))
16294 (defun org-property-previous-allowed-value (&optional previous)
16295 "Switch to the next allowed value for this property."
16296 (interactive)
16297 (org-property-next-allowed-value t))
16299 (defun org-property-next-allowed-value (&optional previous)
16300 "Switch to the next allowed value for this property."
16301 (interactive)
16302 (unless (org-at-property-p)
16303 (user-error "Not at a property"))
16304 (let* ((prop (car (save-match-data (org-split-string (match-string 1) ":"))))
16305 (key (match-string 2))
16306 (value (match-string 3))
16307 (allowed (or (org-property-get-allowed-values (point) key)
16308 (and (member value '("[ ]" "[-]" "[X]"))
16309 '("[ ]" "[X]"))))
16310 (heading (save-match-data (nth 4 (org-heading-components))))
16311 nval)
16312 (unless allowed
16313 (user-error "Allowed values for this property have not been defined"))
16314 (if previous (setq allowed (reverse allowed)))
16315 (if (member value allowed)
16316 (setq nval (car (cdr (member value allowed)))))
16317 (setq nval (or nval (car allowed)))
16318 (if (equal nval value)
16319 (user-error "Only one allowed value for this property"))
16320 (org-at-property-p)
16321 (replace-match (concat " :" key ": " nval) t t)
16322 (org-indent-line)
16323 (beginning-of-line 1)
16324 (skip-chars-forward " \t")
16325 (when (equal prop org-effort-property)
16326 (org-refresh-property
16327 '((effort . identity)
16328 (effort-minutes . org-duration-string-to-minutes))
16329 nval)
16330 (when (string= org-clock-current-task heading)
16331 (setq org-clock-effort nval)
16332 (org-clock-update-mode-line)))
16333 (run-hook-with-args 'org-property-changed-functions key nval)))
16335 (defun org-find-olp (path &optional this-buffer)
16336 "Return a marker pointing to the entry at outline path OLP.
16337 If anything goes wrong, throw an error.
16338 You can wrap this call to catch the error like this:
16340 (condition-case msg
16341 (org-mobile-locate-entry (match-string 4))
16342 (error (nth 1 msg)))
16344 The return value will then be either a string with the error message,
16345 or a marker if everything is OK.
16347 If THIS-BUFFER is set, the outline path does not contain a file,
16348 only headings."
16349 (let* ((file (if this-buffer buffer-file-name (pop path)))
16350 (buffer (if this-buffer (current-buffer) (find-file-noselect file)))
16351 (level 1)
16352 (lmin 1)
16353 (lmax 1)
16354 limit re end found pos heading cnt flevel)
16355 (unless buffer (error "File not found :%s" file))
16356 (with-current-buffer buffer
16357 (save-excursion
16358 (save-restriction
16359 (widen)
16360 (setq limit (point-max))
16361 (goto-char (point-min))
16362 (while (setq heading (pop path))
16363 (setq re (format org-complex-heading-regexp-format
16364 (regexp-quote heading)))
16365 (setq cnt 0 pos (point))
16366 (while (re-search-forward re end t)
16367 (setq level (- (match-end 1) (match-beginning 1)))
16368 (if (and (>= level lmin) (<= level lmax))
16369 (setq found (match-beginning 0) flevel level cnt (1+ cnt))))
16370 (when (= cnt 0) (error "Heading not found on level %d: %s"
16371 lmax heading))
16372 (when (> cnt 1) (error "Heading not unique on level %d: %s"
16373 lmax heading))
16374 (goto-char found)
16375 (setq lmin (1+ flevel) lmax (+ lmin (if org-odd-levels-only 1 0)))
16376 (setq end (save-excursion (org-end-of-subtree t t))))
16377 (when (org-at-heading-p)
16378 (point-marker)))))))
16380 (defun org-find-exact-headline-in-buffer (heading &optional buffer pos-only)
16381 "Find node HEADING in BUFFER.
16382 Return a marker to the heading if it was found, or nil if not.
16383 If POS-ONLY is set, return just the position instead of a marker.
16385 The heading text must match exact, but it may have a TODO keyword,
16386 a priority cookie and tags in the standard locations."
16387 (with-current-buffer (or buffer (current-buffer))
16388 (save-excursion
16389 (save-restriction
16390 (widen)
16391 (goto-char (point-min))
16392 (let (case-fold-search)
16393 (if (re-search-forward
16394 (format org-complex-heading-regexp-format
16395 (regexp-quote heading)) nil t)
16396 (if pos-only
16397 (match-beginning 0)
16398 (move-marker (make-marker) (match-beginning 0)))))))))
16400 (defun org-find-exact-heading-in-directory (heading &optional dir)
16401 "Find Org node headline HEADING in all .org files in directory DIR.
16402 When the target headline is found, return a marker to this location."
16403 (let ((files (directory-files (or dir default-directory)
16404 t "\\`[^.#].*\\.org\\'"))
16405 file visiting m buffer)
16406 (catch 'found
16407 (while (setq file (pop files))
16408 (message "trying %s" file)
16409 (setq visiting (org-find-base-buffer-visiting file))
16410 (setq buffer (or visiting (find-file-noselect file)))
16411 (setq m (org-find-exact-headline-in-buffer
16412 heading buffer))
16413 (when (and (not m) (not visiting)) (kill-buffer buffer))
16414 (and m (throw 'found m))))))
16416 (defun org-find-entry-with-id (ident)
16417 "Locate the entry that contains the ID property with exact value IDENT.
16418 IDENT can be a string, a symbol or a number, this function will search for
16419 the string representation of it.
16420 Return the position where this entry starts, or nil if there is no such entry."
16421 (interactive "sID: ")
16422 (let ((id (cond
16423 ((stringp ident) ident)
16424 ((symbol-name ident) (symbol-name ident))
16425 ((numberp ident) (number-to-string ident))
16426 (t (error "IDENT %s must be a string, symbol or number" ident))))
16427 (case-fold-search nil))
16428 (save-excursion
16429 (save-restriction
16430 (widen)
16431 (goto-char (point-min))
16432 (when (re-search-forward
16433 (concat "^[ \t]*:ID:[ \t]+" (regexp-quote id) "[ \t]*$")
16434 nil t)
16435 (org-back-to-heading t)
16436 (point))))))
16438 ;;;; Timestamps
16440 (defvar org-last-changed-timestamp nil)
16441 (defvar org-last-inserted-timestamp nil
16442 "The last time stamp inserted with `org-insert-time-stamp'.")
16443 (defvar org-ts-what) ; dynamically scoped parameter
16445 (defun org-time-stamp (arg &optional inactive)
16446 "Prompt for a date/time and insert a time stamp.
16447 If the user specifies a time like HH:MM or if this command is
16448 called with at least one prefix argument, the time stamp contains
16449 the date and the time. Otherwise, only the date is be included.
16451 All parts of a date not specified by the user is filled in from
16452 the current date/time. So if you just press return without
16453 typing anything, the time stamp will represent the current
16454 date/time.
16456 If there is already a timestamp at the cursor, it will be
16457 modified.
16459 With two universal prefix arguments, insert an active timestamp
16460 with the current time without prompting the user.
16462 When called from lisp, the timestamp is inactive if INACTIVE is
16463 non-nil."
16464 (interactive "P")
16465 (let* ((ts nil)
16466 (default-time
16467 ;; Default time is either today, or, when entering a range,
16468 ;; the range start.
16469 (if (or (and (org-at-timestamp-p t) (setq ts (match-string 0)))
16470 (save-excursion
16471 (re-search-backward
16472 (concat org-ts-regexp "--?-?\\=") ; 1-3 minuses
16473 (- (point) 20) t)))
16474 (apply 'encode-time (org-parse-time-string (match-string 1)))
16475 (current-time)))
16476 (default-input (and ts (org-get-compact-tod ts)))
16477 (repeater (save-excursion
16478 (save-match-data
16479 (beginning-of-line)
16480 (when (re-search-forward
16481 "\\([.+-]+[0-9]+[hdwmy] ?\\)+" ;;\\(?:[/ ][-+]?[0-9]+[hdwmy]\\)?\\) ?"
16482 (save-excursion (progn (end-of-line) (point))) t)
16483 (match-string 0)))))
16484 org-time-was-given org-end-time-was-given time)
16485 (cond
16486 ((and (org-at-timestamp-p t)
16487 (memq last-command '(org-time-stamp org-time-stamp-inactive))
16488 (memq this-command '(org-time-stamp org-time-stamp-inactive)))
16489 (insert "--")
16490 (setq time (let ((this-command this-command))
16491 (org-read-date arg 'totime nil nil
16492 default-time default-input inactive)))
16493 (org-insert-time-stamp time (or org-time-was-given arg) inactive))
16494 ((org-at-timestamp-p t)
16495 (setq time (let ((this-command this-command))
16496 (org-read-date arg 'totime nil nil default-time default-input inactive)))
16497 (when (org-at-timestamp-p t) ; just to get the match data
16498 ; (setq inactive (eq (char-after (match-beginning 0)) ?\[))
16499 (replace-match "")
16500 (setq org-last-changed-timestamp
16501 (org-insert-time-stamp
16502 time (or org-time-was-given arg)
16503 inactive nil nil (list org-end-time-was-given)))
16504 (when repeater (goto-char (1- (point))) (insert " " repeater)
16505 (setq org-last-changed-timestamp
16506 (concat (substring org-last-inserted-timestamp 0 -1)
16507 " " repeater ">"))))
16508 (message "Timestamp updated"))
16509 ((equal arg '(16))
16510 (org-insert-time-stamp (current-time) t inactive))
16512 (setq time (let ((this-command this-command))
16513 (org-read-date arg 'totime nil nil default-time default-input inactive)))
16514 (org-insert-time-stamp time (or org-time-was-given arg) inactive
16515 nil nil (list org-end-time-was-given))))))
16517 ;; FIXME: can we use this for something else, like computing time differences?
16518 (defun org-get-compact-tod (s)
16519 (when (string-match "\\(\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)\\(-\\(\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)\\)?" s)
16520 (let* ((t1 (match-string 1 s))
16521 (h1 (string-to-number (match-string 2 s)))
16522 (m1 (string-to-number (match-string 3 s)))
16523 (t2 (and (match-end 4) (match-string 5 s)))
16524 (h2 (and t2 (string-to-number (match-string 6 s))))
16525 (m2 (and t2 (string-to-number (match-string 7 s))))
16526 dh dm)
16527 (if (not t2)
16529 (setq dh (- h2 h1) dm (- m2 m1))
16530 (if (< dm 0) (setq dm (+ dm 60) dh (1- dh)))
16531 (concat t1 "+" (number-to-string dh)
16532 (and (/= 0 dm) (format ":%02d" dm)))))))
16534 (defun org-time-stamp-inactive (&optional arg)
16535 "Insert an inactive time stamp.
16536 An inactive time stamp is enclosed in square brackets instead of angle
16537 brackets. It is inactive in the sense that it does not trigger agenda entries,
16538 does not link to the calendar and cannot be changed with the S-cursor keys.
16539 So these are more for recording a certain time/date."
16540 (interactive "P")
16541 (org-time-stamp arg 'inactive))
16543 (defvar org-date-ovl (make-overlay 1 1))
16544 (overlay-put org-date-ovl 'face 'org-date-selected)
16545 (org-detach-overlay org-date-ovl)
16547 (defvar org-ans1) ; dynamically scoped parameter
16548 (defvar org-ans2) ; dynamically scoped parameter
16550 (defvar org-plain-time-of-day-regexp) ; defined below
16552 (defvar org-overriding-default-time nil) ; dynamically scoped
16553 (defvar org-read-date-overlay nil)
16554 (defvar org-dcst nil) ; dynamically scoped
16555 (defvar org-read-date-history nil)
16556 (defvar org-read-date-final-answer nil)
16557 (defvar org-read-date-analyze-futurep nil)
16558 (defvar org-read-date-analyze-forced-year nil)
16559 (defvar org-read-date-inactive)
16561 (defvar org-read-date-minibuffer-local-map
16562 (let* ((map (make-sparse-keymap)))
16563 (set-keymap-parent map minibuffer-local-map)
16564 (org-defkey map (kbd ".")
16565 (lambda () (interactive)
16566 ;; Are we at the beginning of the prompt?
16567 (if (looking-back "^[^:]+: ")
16568 (org-eval-in-calendar '(calendar-goto-today))
16569 (insert "."))))
16570 (org-defkey map (kbd "C-.")
16571 (lambda () (interactive)
16572 (org-eval-in-calendar '(calendar-goto-today))))
16573 (org-defkey map [(meta shift left)]
16574 (lambda () (interactive)
16575 (org-eval-in-calendar '(calendar-backward-month 1))))
16576 (org-defkey map [(meta shift right)]
16577 (lambda () (interactive)
16578 (org-eval-in-calendar '(calendar-forward-month 1))))
16579 (org-defkey map [(meta shift up)]
16580 (lambda () (interactive)
16581 (org-eval-in-calendar '(calendar-backward-year 1))))
16582 (org-defkey map [(meta shift down)]
16583 (lambda () (interactive)
16584 (org-eval-in-calendar '(calendar-forward-year 1))))
16585 (org-defkey map [?\e (shift left)]
16586 (lambda () (interactive)
16587 (org-eval-in-calendar '(calendar-backward-month 1))))
16588 (org-defkey map [?\e (shift right)]
16589 (lambda () (interactive)
16590 (org-eval-in-calendar '(calendar-forward-month 1))))
16591 (org-defkey map [?\e (shift up)]
16592 (lambda () (interactive)
16593 (org-eval-in-calendar '(calendar-backward-year 1))))
16594 (org-defkey map [?\e (shift down)]
16595 (lambda () (interactive)
16596 (org-eval-in-calendar '(calendar-forward-year 1))))
16597 (org-defkey map [(shift up)]
16598 (lambda () (interactive)
16599 (org-eval-in-calendar '(calendar-backward-week 1))))
16600 (org-defkey map [(shift down)]
16601 (lambda () (interactive)
16602 (org-eval-in-calendar '(calendar-forward-week 1))))
16603 (org-defkey map [(shift left)]
16604 (lambda () (interactive)
16605 (org-eval-in-calendar '(calendar-backward-day 1))))
16606 (org-defkey map [(shift right)]
16607 (lambda () (interactive)
16608 (org-eval-in-calendar '(calendar-forward-day 1))))
16609 (org-defkey map "!"
16610 (lambda () (interactive)
16611 (org-eval-in-calendar '(diary-view-entries))
16612 (message "")))
16613 (org-defkey map ">"
16614 (lambda () (interactive)
16615 (org-eval-in-calendar '(calendar-scroll-left 1))))
16616 (org-defkey map "<"
16617 (lambda () (interactive)
16618 (org-eval-in-calendar '(calendar-scroll-right 1))))
16619 (org-defkey map "\C-v"
16620 (lambda () (interactive)
16621 (org-eval-in-calendar
16622 '(calendar-scroll-left-three-months 1))))
16623 (org-defkey map "\M-v"
16624 (lambda () (interactive)
16625 (org-eval-in-calendar
16626 '(calendar-scroll-right-three-months 1))))
16627 map)
16628 "Keymap for minibuffer commands when using `org-read-date'.")
16630 (defvar org-def)
16631 (defvar org-defdecode)
16632 (defvar org-with-time)
16634 (defun org-read-date (&optional org-with-time to-time from-string prompt
16635 default-time default-input inactive)
16636 "Read a date, possibly a time, and make things smooth for the user.
16637 The prompt will suggest to enter an ISO date, but you can also enter anything
16638 which will at least partially be understood by `parse-time-string'.
16639 Unrecognized parts of the date will default to the current day, month, year,
16640 hour and minute. If this command is called to replace a timestamp at point,
16641 or to enter the second timestamp of a range, the default time is taken
16642 from the existing stamp. Furthermore, the command prefers the future,
16643 so if you are giving a date where the year is not given, and the day-month
16644 combination is already past in the current year, it will assume you
16645 mean next year. For details, see the manual. A few examples:
16647 3-2-5 --> 2003-02-05
16648 feb 15 --> currentyear-02-15
16649 2/15 --> currentyear-02-15
16650 sep 12 9 --> 2009-09-12
16651 12:45 --> today 12:45
16652 22 sept 0:34 --> currentyear-09-22 0:34
16653 12 --> currentyear-currentmonth-12
16654 Fri --> nearest Friday after today
16655 -Tue --> last Tuesday
16656 etc.
16658 Furthermore you can specify a relative date by giving, as the *first* thing
16659 in the input: a plus/minus sign, a number and a letter [hdwmy] to indicate
16660 change in days weeks, months, years.
16661 With a single plus or minus, the date is relative to today. With a double
16662 plus or minus, it is relative to the date in DEFAULT-TIME. E.g.
16663 +4d --> four days from today
16664 +4 --> same as above
16665 +2w --> two weeks from today
16666 ++5 --> five days from default date
16668 The function understands only English month and weekday abbreviations.
16670 While prompting, a calendar is popped up - you can also select the
16671 date with the mouse (button 1). The calendar shows a period of three
16672 months. To scroll it to other months, use the keys `>' and `<'.
16673 If you don't like the calendar, turn it off with
16674 \(setq org-read-date-popup-calendar nil)
16676 With optional argument TO-TIME, the date will immediately be converted
16677 to an internal time.
16678 With an optional argument ORG-WITH-TIME, the prompt will suggest to
16679 also insert a time. Note that when ORG-WITH-TIME is not set, you can
16680 still enter a time, and this function will inform the calling routine
16681 about this change. The calling routine may then choose to change the
16682 format used to insert the time stamp into the buffer to include the time.
16683 With optional argument FROM-STRING, read from this string instead from
16684 the user. PROMPT can overwrite the default prompt. DEFAULT-TIME is
16685 the time/date that is used for everything that is not specified by the
16686 user."
16687 (require 'parse-time)
16688 (let* ((org-time-stamp-rounding-minutes
16689 (if (equal org-with-time '(16)) '(0 0) org-time-stamp-rounding-minutes))
16690 (org-dcst org-display-custom-times)
16691 (ct (org-current-time))
16692 (org-def (or org-overriding-default-time default-time ct))
16693 (org-defdecode (decode-time org-def))
16694 (dummy (progn
16695 (when (< (nth 2 org-defdecode) org-extend-today-until)
16696 (setcar (nthcdr 2 org-defdecode) -1)
16697 (setcar (nthcdr 1 org-defdecode) 59)
16698 (setq org-def (apply 'encode-time org-defdecode)
16699 org-defdecode (decode-time org-def)))))
16700 (cur-frame (selected-frame))
16701 (mouse-autoselect-window nil) ; Don't let the mouse jump
16702 (calendar-frame-setup nil)
16703 (calendar-setup (when (eq calendar-setup 'calendar-only) 'calendar-only))
16704 (calendar-move-hook nil)
16705 (calendar-view-diary-initially-flag nil)
16706 (calendar-view-holidays-initially-flag nil)
16707 (timestr (format-time-string
16708 (if org-with-time "%Y-%m-%d %H:%M" "%Y-%m-%d") org-def))
16709 (prompt (concat (if prompt (concat prompt " ") "")
16710 (format "Date+time [%s]: " timestr)))
16711 ans (org-ans0 "") org-ans1 org-ans2 final cal-frame)
16713 (cond
16714 (from-string (setq ans from-string))
16715 (org-read-date-popup-calendar
16716 (save-excursion
16717 (save-window-excursion
16718 (calendar)
16719 (when (eq calendar-setup 'calendar-only)
16720 (setq cal-frame
16721 (window-frame (get-buffer-window "*Calendar*" 'visible)))
16722 (select-frame cal-frame))
16723 (org-eval-in-calendar '(setq cursor-type nil) t)
16724 (unwind-protect
16725 (progn
16726 (calendar-forward-day (- (time-to-days org-def)
16727 (calendar-absolute-from-gregorian
16728 (calendar-current-date))))
16729 (org-eval-in-calendar nil t)
16730 (let* ((old-map (current-local-map))
16731 (map (copy-keymap calendar-mode-map))
16732 (minibuffer-local-map
16733 (copy-keymap org-read-date-minibuffer-local-map)))
16734 (org-defkey map (kbd "RET") 'org-calendar-select)
16735 (org-defkey map [mouse-1] 'org-calendar-select-mouse)
16736 (org-defkey map [mouse-2] 'org-calendar-select-mouse)
16737 (unwind-protect
16738 (progn
16739 (use-local-map map)
16740 (setq org-read-date-inactive inactive)
16741 (add-hook 'post-command-hook 'org-read-date-display)
16742 (setq org-ans0 (read-string prompt default-input
16743 'org-read-date-history nil))
16744 ;; org-ans0: from prompt
16745 ;; org-ans1: from mouse click
16746 ;; org-ans2: from calendar motion
16747 (setq ans (concat org-ans0 " " (or org-ans1 org-ans2))))
16748 (remove-hook 'post-command-hook 'org-read-date-display)
16749 (use-local-map old-map)
16750 (when org-read-date-overlay
16751 (delete-overlay org-read-date-overlay)
16752 (setq org-read-date-overlay nil)))))
16753 (bury-buffer "*Calendar*")
16754 (when cal-frame
16755 (delete-frame cal-frame)
16756 (select-frame-set-input-focus cur-frame))))))
16758 (t ; Naked prompt only
16759 (unwind-protect
16760 (setq ans (read-string prompt default-input
16761 'org-read-date-history timestr))
16762 (when org-read-date-overlay
16763 (delete-overlay org-read-date-overlay)
16764 (setq org-read-date-overlay nil)))))
16766 (setq final (org-read-date-analyze ans org-def org-defdecode))
16768 (when org-read-date-analyze-forced-year
16769 (message "Year was forced into %s"
16770 (if org-read-date-force-compatible-dates
16771 "compatible range (1970-2037)"
16772 "range representable on this machine"))
16773 (ding))
16775 ;; One round trip to get rid of 34th of August and stuff like that....
16776 (setq final (decode-time (apply 'encode-time final)))
16778 (setq org-read-date-final-answer ans)
16780 (if to-time
16781 (apply 'encode-time final)
16782 (if (and (boundp 'org-time-was-given) org-time-was-given)
16783 (format "%04d-%02d-%02d %02d:%02d"
16784 (nth 5 final) (nth 4 final) (nth 3 final)
16785 (nth 2 final) (nth 1 final))
16786 (format "%04d-%02d-%02d" (nth 5 final) (nth 4 final) (nth 3 final))))))
16788 (defun org-read-date-display ()
16789 "Display the current date prompt interpretation in the minibuffer."
16790 (when org-read-date-display-live
16791 (when org-read-date-overlay
16792 (delete-overlay org-read-date-overlay))
16793 (when (minibufferp (current-buffer))
16794 (save-excursion
16795 (end-of-line 1)
16796 (while (not (equal (buffer-substring
16797 (max (point-min) (- (point) 4)) (point))
16798 " "))
16799 (insert " ")))
16800 (let* ((ans (concat (buffer-substring (point-at-bol) (point-max))
16801 " " (or org-ans1 org-ans2)))
16802 (org-end-time-was-given nil)
16803 (f (org-read-date-analyze ans org-def org-defdecode))
16804 (fmts (if org-dcst
16805 org-time-stamp-custom-formats
16806 org-time-stamp-formats))
16807 (fmt (if (or org-with-time
16808 (and (boundp 'org-time-was-given) org-time-was-given))
16809 (cdr fmts)
16810 (car fmts)))
16811 (txt (format-time-string fmt (apply 'encode-time f)))
16812 (txt (if org-read-date-inactive (concat "[" (substring txt 1 -1) "]") txt))
16813 (txt (concat "=> " txt)))
16814 (when (and org-end-time-was-given
16815 (string-match org-plain-time-of-day-regexp txt))
16816 (setq txt (concat (substring txt 0 (match-end 0)) "-"
16817 org-end-time-was-given
16818 (substring txt (match-end 0)))))
16819 (when org-read-date-analyze-futurep
16820 (setq txt (concat txt " (=>F)")))
16821 (setq org-read-date-overlay
16822 (make-overlay (1- (point-at-eol)) (point-at-eol)))
16823 (org-overlay-display org-read-date-overlay txt 'secondary-selection)))))
16825 (defun org-read-date-analyze (ans org-def org-defdecode)
16826 "Analyze the combined answer of the date prompt."
16827 ;; FIXME: cleanup and comment
16828 (let ((nowdecode (decode-time (current-time)))
16829 delta deltan deltaw deltadef year month day
16830 hour minute second wday pm h2 m2 tl wday1
16831 iso-year iso-weekday iso-week iso-year iso-date futurep kill-year)
16832 (setq org-read-date-analyze-futurep nil
16833 org-read-date-analyze-forced-year nil)
16834 (when (string-match "\\`[ \t]*\\.[ \t]*\\'" ans)
16835 (setq ans "+0"))
16837 (when (setq delta (org-read-date-get-relative ans (current-time) org-def))
16838 (setq ans (replace-match "" t t ans)
16839 deltan (car delta)
16840 deltaw (nth 1 delta)
16841 deltadef (nth 2 delta)))
16843 ;; Check if there is an iso week date in there. If yes, store the
16844 ;; info and postpone interpreting it until the rest of the parsing
16845 ;; is done.
16846 (when (string-match "\\<\\(?:\\([0-9]+\\)-\\)?[wW]\\([0-9]\\{1,2\\}\\)\\(?:-\\([0-6]\\)\\)?\\([ \t]\\|$\\)" ans)
16847 (setq iso-year (if (match-end 1)
16848 (org-small-year-to-year
16849 (string-to-number (match-string 1 ans))))
16850 iso-weekday (if (match-end 3)
16851 (string-to-number (match-string 3 ans)))
16852 iso-week (string-to-number (match-string 2 ans)))
16853 (setq ans (replace-match "" t t ans)))
16855 ;; Help matching ISO dates with single digit month or day, like 2006-8-11.
16856 (when (string-match
16857 "^ *\\(\\([0-9]+\\)-\\)?\\([0-1]?[0-9]\\)-\\([0-3]?[0-9]\\)\\([^-0-9]\\|$\\)" ans)
16858 (setq year (if (match-end 2)
16859 (string-to-number (match-string 2 ans))
16860 (progn (setq kill-year t)
16861 (string-to-number (format-time-string "%Y"))))
16862 month (string-to-number (match-string 3 ans))
16863 day (string-to-number (match-string 4 ans)))
16864 (if (< year 100) (setq year (+ 2000 year)))
16865 (setq ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
16866 t nil ans)))
16868 ;; Help matching dotted european dates
16869 (when (string-match
16870 "^ *\\(3[01]\\|0?[1-9]\\|[12][0-9]\\)\\. ?\\(0?[1-9]\\|1[012]\\)\\.\\( ?[1-9][0-9]\\{3\\}\\)?" ans)
16871 (setq year (if (match-end 3) (string-to-number (match-string 3 ans))
16872 (setq kill-year t)
16873 (string-to-number (format-time-string "%Y")))
16874 day (string-to-number (match-string 1 ans))
16875 month (string-to-number (match-string 2 ans))
16876 ans (replace-match (format "%04d-%02d-%02d" year month day)
16877 t nil ans)))
16879 ;; Help matching american dates, like 5/30 or 5/30/7
16880 (when (string-match
16881 "^ *\\(0?[1-9]\\|1[012]\\)/\\(0?[1-9]\\|[12][0-9]\\|3[01]\\)\\(/\\([0-9]+\\)\\)?\\([^/0-9]\\|$\\)" ans)
16882 (setq year (if (match-end 4)
16883 (string-to-number (match-string 4 ans))
16884 (progn (setq kill-year t)
16885 (string-to-number (format-time-string "%Y"))))
16886 month (string-to-number (match-string 1 ans))
16887 day (string-to-number (match-string 2 ans)))
16888 (if (< year 100) (setq year (+ 2000 year)))
16889 (setq ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
16890 t nil ans)))
16891 ;; Help matching am/pm times, because `parse-time-string' does not do that.
16892 ;; If there is a time with am/pm, and *no* time without it, we convert
16893 ;; so that matching will be successful.
16894 (loop for i from 1 to 2 do ; twice, for end time as well
16895 (when (and (not (string-match "\\(\\`\\|[^+]\\)[012]?[0-9]:[0-9][0-9]\\([ \t\n]\\|$\\)" ans))
16896 (string-match "\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\(am\\|AM\\|pm\\|PM\\)\\>" ans))
16897 (setq hour (string-to-number (match-string 1 ans))
16898 minute (if (match-end 3)
16899 (string-to-number (match-string 3 ans))
16901 pm (equal ?p
16902 (string-to-char (downcase (match-string 4 ans)))))
16903 (if (and (= hour 12) (not pm))
16904 (setq hour 0)
16905 (if (and pm (< hour 12)) (setq hour (+ 12 hour))))
16906 (setq ans (replace-match (format "%02d:%02d" hour minute)
16907 t t ans))))
16909 ;; Check if a time range is given as a duration
16910 (when (string-match "\\([012]?[0-9]\\):\\([0-6][0-9]\\)\\+\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?" ans)
16911 (setq hour (string-to-number (match-string 1 ans))
16912 h2 (+ hour (string-to-number (match-string 3 ans)))
16913 minute (string-to-number (match-string 2 ans))
16914 m2 (+ minute (if (match-end 5) (string-to-number
16915 (match-string 5 ans))0)))
16916 (if (>= m2 60) (setq h2 (1+ h2) m2 (- m2 60)))
16917 (setq ans (replace-match (format "%02d:%02d-%02d:%02d" hour minute h2 m2)
16918 t t ans)))
16920 ;; Check if there is a time range
16921 (when (boundp 'org-end-time-was-given)
16922 (setq org-time-was-given nil)
16923 (when (and (string-match org-plain-time-of-day-regexp ans)
16924 (match-end 8))
16925 (setq org-end-time-was-given (match-string 8 ans))
16926 (setq ans (concat (substring ans 0 (match-beginning 7))
16927 (substring ans (match-end 7))))))
16929 (setq tl (parse-time-string ans)
16930 day (or (nth 3 tl) (nth 3 org-defdecode))
16931 month
16932 (cond ((nth 4 tl))
16933 ((not org-read-date-prefer-future) (nth 4 org-defdecode))
16934 ;; Day was specified. Make sure DAY+MONTH
16935 ;; combination happens in the future.
16936 ((nth 3 tl)
16937 (setq futurep t)
16938 (if (< day (nth 3 nowdecode)) (1+ (nth 4 nowdecode))
16939 (nth 4 nowdecode)))
16940 (t (nth 4 org-defdecode)))
16941 year
16942 (cond ((and (not kill-year) (nth 5 tl)))
16943 ((not org-read-date-prefer-future) (nth 5 org-defdecode))
16944 ;; Month was guessed in the future and is at least
16945 ;; equal to NOWDECODE's. Fix year accordingly.
16946 (futurep
16947 (if (or (> month (nth 4 nowdecode))
16948 (>= day (nth 3 nowdecode)))
16949 (nth 5 nowdecode)
16950 (1+ (nth 5 nowdecode))))
16951 ;; Month was specified. Make sure MONTH+YEAR
16952 ;; combination happens in the future.
16953 ((nth 4 tl)
16954 (setq futurep t)
16955 (cond ((> month (nth 4 nowdecode)) (nth 5 nowdecode))
16956 ((< month (nth 5 nowdecode)) (1+ (nth 5 nowdecode)))
16957 ((< day (nth 3 nowdecode)) (1+ (nth 5 nowdecode)))
16958 (t (nth 5 nowdecode))))
16959 (t (nth 5 org-defdecode)))
16960 hour (or (nth 2 tl) (nth 2 org-defdecode))
16961 minute (or (nth 1 tl) (nth 1 org-defdecode))
16962 second (or (nth 0 tl) 0)
16963 wday (nth 6 tl))
16965 (when (and (eq org-read-date-prefer-future 'time)
16966 (not (nth 3 tl)) (not (nth 4 tl)) (not (nth 5 tl))
16967 (equal day (nth 3 nowdecode))
16968 (equal month (nth 4 nowdecode))
16969 (equal year (nth 5 nowdecode))
16970 (nth 2 tl)
16971 (or (< (nth 2 tl) (nth 2 nowdecode))
16972 (and (= (nth 2 tl) (nth 2 nowdecode))
16973 (nth 1 tl)
16974 (< (nth 1 tl) (nth 1 nowdecode)))))
16975 (setq day (1+ day)
16976 futurep t))
16978 ;; Special date definitions below
16979 (cond
16980 (iso-week
16981 ;; There was an iso week
16982 (require 'cal-iso)
16983 (setq futurep nil)
16984 (setq year (or iso-year year)
16985 day (or iso-weekday wday 1)
16986 wday nil ; to make sure that the trigger below does not match
16987 iso-date (calendar-gregorian-from-absolute
16988 (calendar-iso-to-absolute
16989 (list iso-week day year))))
16990 ; FIXME: Should we also push ISO weeks into the future?
16991 ; (when (and org-read-date-prefer-future
16992 ; (not iso-year)
16993 ; (< (calendar-absolute-from-gregorian iso-date)
16994 ; (time-to-days (current-time))))
16995 ; (setq year (1+ year)
16996 ; iso-date (calendar-gregorian-from-absolute
16997 ; (calendar-iso-to-absolute
16998 ; (list iso-week day year)))))
16999 (setq month (car iso-date)
17000 year (nth 2 iso-date)
17001 day (nth 1 iso-date)))
17002 (deltan
17003 (setq futurep nil)
17004 (unless deltadef
17005 (let ((now (decode-time (current-time))))
17006 (setq day (nth 3 now) month (nth 4 now) year (nth 5 now))))
17007 (cond ((member deltaw '("d" "")) (setq day (+ day deltan)))
17008 ((equal deltaw "w") (setq day (+ day (* 7 deltan))))
17009 ((equal deltaw "m") (setq month (+ month deltan)))
17010 ((equal deltaw "y") (setq year (+ year deltan)))))
17011 ((and wday (not (nth 3 tl)))
17012 ;; Weekday was given, but no day, so pick that day in the week
17013 ;; on or after the derived date.
17014 (setq wday1 (nth 6 (decode-time (encode-time 0 0 0 day month year))))
17015 (unless (equal wday wday1)
17016 (setq day (+ day (% (- wday wday1 -7) 7))))))
17017 (if (and (boundp 'org-time-was-given)
17018 (nth 2 tl))
17019 (setq org-time-was-given t))
17020 (if (< year 100) (setq year (+ 2000 year)))
17021 ;; Check of the date is representable
17022 (if org-read-date-force-compatible-dates
17023 (progn
17024 (if (< year 1970)
17025 (setq year 1970 org-read-date-analyze-forced-year t))
17026 (if (> year 2037)
17027 (setq year 2037 org-read-date-analyze-forced-year t)))
17028 (condition-case nil
17029 (ignore (encode-time second minute hour day month year))
17030 (error
17031 (setq year (nth 5 org-defdecode))
17032 (setq org-read-date-analyze-forced-year t))))
17033 (setq org-read-date-analyze-futurep futurep)
17034 (list second minute hour day month year)))
17036 (defvar parse-time-weekdays)
17037 (defun org-read-date-get-relative (s today default)
17038 "Check string S for special relative date string.
17039 TODAY and DEFAULT are internal times, for today and for a default.
17040 Return shift list (N what def-flag)
17041 WHAT is \"d\", \"w\", \"m\", or \"y\" for day, week, month, year.
17042 N is the number of WHATs to shift.
17043 DEF-FLAG is t when a double ++ or -- indicates shift relative to
17044 the DEFAULT date rather than TODAY."
17045 (require 'parse-time)
17046 (when (and
17047 (string-match
17048 (concat
17049 "\\`[ \t]*\\([-+]\\{0,2\\}\\)"
17050 "\\([0-9]+\\)?"
17051 "\\([hdwmy]\\|\\(" (mapconcat 'car parse-time-weekdays "\\|") "\\)\\)?"
17052 "\\([ \t]\\|$\\)") s)
17053 (or (> (match-end 1) (match-beginning 1)) (match-end 4)))
17054 (let* ((dir (if (> (match-end 1) (match-beginning 1))
17055 (string-to-char (substring (match-string 1 s) -1))
17056 ?+))
17057 (rel (and (match-end 1) (= 2 (- (match-end 1) (match-beginning 1)))))
17058 (n (if (match-end 2) (string-to-number (match-string 2 s)) 1))
17059 (what (if (match-end 3) (match-string 3 s) "d"))
17060 (wday1 (cdr (assoc (downcase what) parse-time-weekdays)))
17061 (date (if rel default today))
17062 (wday (nth 6 (decode-time date)))
17063 delta)
17064 (if wday1
17065 (progn
17066 (setq delta (mod (+ 7 (- wday1 wday)) 7))
17067 (if (= delta 0) (setq delta 7))
17068 (if (= dir ?-)
17069 (progn
17070 (setq delta (- delta 7))
17071 (if (= delta 0) (setq delta -7))))
17072 (if (> n 1) (setq delta (+ delta (* (1- n) (if (= dir ?-) -7 7)))))
17073 (list delta "d" rel))
17074 (list (* n (if (= dir ?-) -1 1)) what rel)))))
17076 (defun org-order-calendar-date-args (arg1 arg2 arg3)
17077 "Turn a user-specified date into the internal representation.
17078 The internal representation needed by the calendar is (month day year).
17079 This is a wrapper to handle the brain-dead convention in calendar that
17080 user function argument order change dependent on argument order."
17081 (if (boundp 'calendar-date-style)
17082 (cond
17083 ((eq calendar-date-style 'american)
17084 (list arg1 arg2 arg3))
17085 ((eq calendar-date-style 'european)
17086 (list arg2 arg1 arg3))
17087 ((eq calendar-date-style 'iso)
17088 (list arg2 arg3 arg1)))
17089 (org-no-warnings ;; european-calendar-style is obsolete as of version 23.1
17090 (if (org-bound-and-true-p european-calendar-style)
17091 (list arg2 arg1 arg3)
17092 (list arg1 arg2 arg3)))))
17094 (defun org-eval-in-calendar (form &optional keepdate)
17095 "Eval FORM in the calendar window and return to current window.
17096 When KEEPDATE is non-nil, update `org-ans2' from the cursor date,
17097 otherwise stick to the current value of `org-ans2'."
17098 (let ((sf (selected-frame))
17099 (sw (selected-window)))
17100 (select-window (get-buffer-window "*Calendar*" t))
17101 (eval form)
17102 (when (and (not keepdate) (calendar-cursor-to-date))
17103 (let* ((date (calendar-cursor-to-date))
17104 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
17105 (setq org-ans2 (format-time-string "%Y-%m-%d" time))))
17106 (move-overlay org-date-ovl (1- (point)) (1+ (point)) (current-buffer))
17107 (select-window sw)
17108 (org-select-frame-set-input-focus sf)))
17110 (defun org-calendar-select ()
17111 "Return to `org-read-date' with the date currently selected.
17112 This is used by `org-read-date' in a temporary keymap for the calendar buffer."
17113 (interactive)
17114 (when (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-ans1 (format-time-string "%Y-%m-%d" time)))
17118 (if (active-minibuffer-window) (exit-minibuffer))))
17120 (defun org-insert-time-stamp (time &optional with-hm inactive pre post extra)
17121 "Insert a date stamp for the date given by the internal TIME.
17122 See `format-time-string' for the format of TIME.
17123 WITH-HM means use the stamp format that includes the time of the day.
17124 INACTIVE means use square brackets instead of angular ones, so that the
17125 stamp will not contribute to the agenda.
17126 PRE and POST are optional strings to be inserted before and after the
17127 stamp.
17128 The command returns the inserted time stamp."
17129 (let ((fmt (funcall (if with-hm 'cdr 'car) org-time-stamp-formats))
17130 stamp)
17131 (if inactive (setq fmt (concat "[" (substring fmt 1 -1) "]")))
17132 (insert-before-markers (or pre ""))
17133 (when (listp extra)
17134 (setq extra (car extra))
17135 (if (and (stringp extra)
17136 (string-match "\\([0-9]+\\):\\([0-9]+\\)" extra))
17137 (setq extra (format "-%02d:%02d"
17138 (string-to-number (match-string 1 extra))
17139 (string-to-number (match-string 2 extra))))
17140 (setq extra nil)))
17141 (when extra
17142 (setq fmt (concat (substring fmt 0 -1) extra (substring fmt -1))))
17143 (insert-before-markers (setq stamp (format-time-string fmt time)))
17144 (insert-before-markers (or post ""))
17145 (setq org-last-inserted-timestamp stamp)))
17147 (defun org-toggle-time-stamp-overlays ()
17148 "Toggle the use of custom time stamp formats."
17149 (interactive)
17150 (setq org-display-custom-times (not org-display-custom-times))
17151 (unless org-display-custom-times
17152 (let ((p (point-min)) (bmp (buffer-modified-p)))
17153 (while (setq p (next-single-property-change p 'display))
17154 (if (and (get-text-property p 'display)
17155 (eq (get-text-property p 'face) 'org-date))
17156 (remove-text-properties
17157 p (setq p (next-single-property-change p 'display))
17158 '(display t))))
17159 (set-buffer-modified-p bmp)))
17160 (if (featurep 'xemacs)
17161 (remove-text-properties (point-min) (point-max) '(end-glyph t)))
17162 (org-restart-font-lock)
17163 (setq org-table-may-need-update t)
17164 (if org-display-custom-times
17165 (message "Time stamps are overlaid with custom format")
17166 (message "Time stamp overlays removed")))
17168 (defun org-display-custom-time (beg end)
17169 "Overlay modified time stamp format over timestamp between BEG and END."
17170 (let* ((ts (buffer-substring beg end))
17171 t1 w1 with-hm tf time str w2 (off 0))
17172 (save-match-data
17173 (setq t1 (org-parse-time-string ts t))
17174 (if (string-match "\\(-[0-9]+:[0-9]+\\)?\\( [.+]?\\+[0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)?\\'" ts)
17175 (setq off (- (match-end 0) (match-beginning 0)))))
17176 (setq end (- end off))
17177 (setq w1 (- end beg)
17178 with-hm (and (nth 1 t1) (nth 2 t1))
17179 tf (funcall (if with-hm 'cdr 'car) org-time-stamp-custom-formats)
17180 time (org-fix-decoded-time t1)
17181 str (org-add-props
17182 (format-time-string
17183 (substring tf 1 -1) (apply 'encode-time time))
17184 nil 'mouse-face 'highlight)
17185 w2 (length str))
17186 (if (not (= w2 w1))
17187 (add-text-properties (1+ beg) (+ 2 beg)
17188 (list 'org-dwidth t 'org-dwidth-n (- w1 w2))))
17189 (if (featurep 'xemacs)
17190 (progn
17191 (put-text-property beg end 'invisible t)
17192 (put-text-property beg end 'end-glyph (make-glyph str)))
17193 (put-text-property beg end 'display str))))
17195 (defun org-fix-decoded-time (time)
17196 "Set 0 instead of nil for the first 6 elements of time.
17197 Don't touch the rest."
17198 (let ((n 0))
17199 (mapcar (lambda (x) (if (< (setq n (1+ n)) 7) (or x 0) x)) time)))
17201 (define-obsolete-function-alias 'org-days-to-time 'org-time-stamp-to-now "24.4")
17203 (defun org-time-stamp-to-now (timestamp-string &optional seconds)
17204 "Difference between TIMESTAMP-STRING and now in days.
17205 If SECONDS is non-nil, return the difference in seconds."
17206 (let ((fdiff (if seconds 'org-float-time 'time-to-days)))
17207 (- (funcall fdiff (org-time-string-to-time timestamp-string))
17208 (funcall fdiff (current-time)))))
17210 (defun org-deadline-close (timestamp-string &optional ndays)
17211 "Is the time in TIMESTAMP-STRING close to the current date?"
17212 (setq ndays (or ndays (org-get-wdays timestamp-string)))
17213 (and (< (org-time-stamp-to-now timestamp-string) ndays)
17214 (not (org-entry-is-done-p))))
17216 (defun org-get-wdays (ts &optional delay zero-delay)
17217 "Get the deadline lead time appropriate for timestring TS.
17218 When DELAY is non-nil, get the delay time for scheduled items
17219 instead of the deadline lead time. When ZERO-DELAY is non-nil
17220 and `org-scheduled-delay-days' is 0, enforce 0 as the delay,
17221 don't try to find the delay cookie in the scheduled timestamp."
17222 (let ((tv (if delay org-scheduled-delay-days
17223 org-deadline-warning-days)))
17224 (cond
17225 ((or (and delay (< tv 0))
17226 (and delay zero-delay (<= tv 0))
17227 (and (not delay) (<= tv 0)))
17228 ;; Enforce this value no matter what
17229 (- tv))
17230 ((string-match "-\\([0-9]+\\)\\([hdwmy]\\)\\(\\'\\|>\\| \\)" ts)
17231 ;; lead time is specified.
17232 (floor (* (string-to-number (match-string 1 ts))
17233 (cdr (assoc (match-string 2 ts)
17234 '(("d" . 1) ("w" . 7)
17235 ("m" . 30.4) ("y" . 365.25)
17236 ("h" . 0.041667)))))))
17237 ;; go for the default.
17238 (t tv))))
17240 (defun org-calendar-select-mouse (ev)
17241 "Return to `org-read-date' with the date currently selected.
17242 This is used by `org-read-date' in a temporary keymap for the calendar buffer."
17243 (interactive "e")
17244 (mouse-set-point ev)
17245 (when (calendar-cursor-to-date)
17246 (let* ((date (calendar-cursor-to-date))
17247 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
17248 (setq org-ans1 (format-time-string "%Y-%m-%d" time)))
17249 (if (active-minibuffer-window) (exit-minibuffer))))
17251 (defun org-check-deadlines (ndays)
17252 "Check if there are any deadlines due or past due.
17253 A deadline is considered due if it happens within `org-deadline-warning-days'
17254 days from today's date. If the deadline appears in an entry marked DONE,
17255 it is not shown. The prefix arg NDAYS can be used to test that many
17256 days. If the prefix is a raw \\[universal-argument] prefix, all deadlines are shown."
17257 (interactive "P")
17258 (let* ((org-warn-days
17259 (cond
17260 ((equal ndays '(4)) 100000)
17261 (ndays (prefix-numeric-value ndays))
17262 (t (abs org-deadline-warning-days))))
17263 (case-fold-search nil)
17264 (regexp (concat "\\<" org-deadline-string " *<\\([^>]+\\)>"))
17265 (callback
17266 (lambda () (org-deadline-close (match-string 1) org-warn-days))))
17268 (message "%d deadlines past-due or due within %d days"
17269 (org-occur regexp nil callback)
17270 org-warn-days)))
17272 (defsubst org-re-timestamp (type)
17273 "Return a regexp for timestamp TYPE.
17274 Allowed values for TYPE are:
17276 all: all timestamps
17277 active: only active timestamps (<...>)
17278 inactive: only inactive timestamps ([...])
17279 scheduled: only scheduled timestamps
17280 deadline: only deadline timestamps
17281 closed: only closed time-stamps
17283 When TYPE is nil, fall back on returning a regexp that matches
17284 both scheduled and deadline timestamps."
17285 (case type
17286 (all org-ts-regexp-both)
17287 (active org-ts-regexp)
17288 (inactive org-ts-regexp-inactive)
17289 (scheduled org-scheduled-time-regexp)
17290 (deadline org-deadline-time-regexp)
17291 (closed org-closed-time-regexp)
17292 (otherwise
17293 (concat "\\<"
17294 (regexp-opt (list org-deadline-string org-scheduled-string))
17295 " *<\\([^>]+\\)>"))))
17297 (defun org-check-before-date (date)
17298 "Check if there are deadlines or scheduled entries before DATE."
17299 (interactive (list (org-read-date)))
17300 (let ((case-fold-search nil)
17301 (regexp (org-re-timestamp org-ts-type))
17302 (callback
17303 `(lambda ()
17304 (and ,(if (memq org-ts-type '(active inactive all))
17305 '(eq (org-element-type (org-element-context) 'timestamp))
17306 '(org-at-planning-p))
17307 (time-less-p
17308 (org-time-string-to-time (match-string 1))
17309 (org-time-string-to-time date))))))
17310 (message "%d entries before %s"
17311 (org-occur regexp nil callback) date)))
17313 (defun org-check-after-date (date)
17314 "Check if there are deadlines or scheduled entries after DATE."
17315 (interactive (list (org-read-date)))
17316 (let ((case-fold-search nil)
17317 (regexp (org-re-timestamp org-ts-type))
17318 (callback
17319 `(lambda ()
17320 (and ,(if (memq org-ts-type '(active inactive all))
17321 '(eq (org-element-type (org-element-context) 'timestamp))
17322 '(org-at-planning-p))
17323 (not (time-less-p
17324 (org-time-string-to-time (match-string 1))
17325 (org-time-string-to-time date)))))))
17326 (message "%d entries after %s"
17327 (org-occur regexp nil callback) date)))
17329 (defun org-check-dates-range (start-date end-date)
17330 "Check for deadlines/scheduled entries between START-DATE and END-DATE."
17331 (interactive (list (org-read-date nil nil nil "Range starts")
17332 (org-read-date nil nil nil "Range end")))
17333 (let ((case-fold-search nil)
17334 (regexp (org-re-timestamp org-ts-type))
17335 (callback
17336 `(lambda ()
17337 (let ((match (match-string 1)))
17338 (and
17339 ,(if (memq org-ts-type '(active inactive all))
17340 '(eq (org-element-type (org-element-context) 'timestamp))
17341 '(org-at-planning-p))
17342 (not (time-less-p
17343 (org-time-string-to-time match)
17344 (org-time-string-to-time start-date)))
17345 (time-less-p
17346 (org-time-string-to-time match)
17347 (org-time-string-to-time end-date)))))))
17348 (message "%d entries between %s and %s"
17349 (org-occur regexp nil callback) start-date end-date)))
17351 (defun org-evaluate-time-range (&optional to-buffer)
17352 "Evaluate a time range by computing the difference between start and end.
17353 Normally the result is just printed in the echo area, but with prefix arg
17354 TO-BUFFER, the result is inserted just after the date stamp into the buffer.
17355 If the time range is actually in a table, the result is inserted into the
17356 next column.
17357 For time difference computation, a year is assumed to be exactly 365
17358 days in order to avoid rounding problems."
17359 (interactive "P")
17361 (org-clock-update-time-maybe)
17362 (save-excursion
17363 (unless (org-at-date-range-p t)
17364 (goto-char (point-at-bol))
17365 (re-search-forward org-tr-regexp-both (point-at-eol) t))
17366 (if (not (org-at-date-range-p t))
17367 (user-error "Not at a time-stamp range, and none found in current line")))
17368 (let* ((ts1 (match-string 1))
17369 (ts2 (match-string 2))
17370 (havetime (or (> (length ts1) 15) (> (length ts2) 15)))
17371 (match-end (match-end 0))
17372 (time1 (org-time-string-to-time ts1))
17373 (time2 (org-time-string-to-time ts2))
17374 (t1 (org-float-time time1))
17375 (t2 (org-float-time time2))
17376 (diff (abs (- t2 t1)))
17377 (negative (< (- t2 t1) 0))
17378 ;; (ys (floor (* 365 24 60 60)))
17379 (ds (* 24 60 60))
17380 (hs (* 60 60))
17381 (fy "%dy %dd %02d:%02d")
17382 (fy1 "%dy %dd")
17383 (fd "%dd %02d:%02d")
17384 (fd1 "%dd")
17385 (fh "%02d:%02d")
17386 y d h m align)
17387 (if havetime
17388 (setq ; y (floor (/ diff ys)) diff (mod diff ys)
17390 d (floor (/ diff ds)) diff (mod diff ds)
17391 h (floor (/ diff hs)) diff (mod diff hs)
17392 m (floor (/ diff 60)))
17393 (setq ; y (floor (/ diff ys)) diff (mod diff ys)
17395 d (floor (+ (/ diff ds) 0.5))
17396 h 0 m 0))
17397 (if (not to-buffer)
17398 (message "%s" (org-make-tdiff-string y d h m))
17399 (if (org-at-table-p)
17400 (progn
17401 (goto-char match-end)
17402 (setq align t)
17403 (and (looking-at " *|") (goto-char (match-end 0))))
17404 (goto-char match-end))
17405 (if (looking-at
17406 "\\( *-? *[0-9]+y\\)?\\( *[0-9]+d\\)? *[0-9][0-9]:[0-9][0-9]")
17407 (replace-match ""))
17408 (if negative (insert " -"))
17409 (if (> y 0) (insert " " (format (if havetime fy fy1) y d h m))
17410 (if (> d 0) (insert " " (format (if havetime fd fd1) d h m))
17411 (insert " " (format fh h m))))
17412 (if align (org-table-align))
17413 (message "Time difference inserted")))))
17415 (defun org-make-tdiff-string (y d h m)
17416 (let ((fmt "")
17417 (l nil))
17418 (if (> y 0) (setq fmt (concat fmt "%d year" (if (> y 1) "s" "") " ")
17419 l (push y l)))
17420 (if (> d 0) (setq fmt (concat fmt "%d day" (if (> d 1) "s" "") " ")
17421 l (push d l)))
17422 (if (> h 0) (setq fmt (concat fmt "%d hour" (if (> h 1) "s" "") " ")
17423 l (push h l)))
17424 (if (> m 0) (setq fmt (concat fmt "%d minute" (if (> m 1) "s" "") " ")
17425 l (push m l)))
17426 (apply 'format fmt (nreverse l))))
17428 (defun org-time-string-to-time (s &optional buffer pos)
17429 "Convert a timestamp string into internal time."
17430 (condition-case errdata
17431 (apply 'encode-time (org-parse-time-string s))
17432 (error (error "Bad timestamp `%s'%s\nError was: %s"
17433 s (if (not (and buffer pos))
17435 (format " at %d in buffer `%s'" pos buffer))
17436 (cdr errdata)))))
17438 (defun org-time-string-to-seconds (s)
17439 "Convert a timestamp string to a number of seconds."
17440 (org-float-time (org-time-string-to-time s)))
17442 (defun org-time-string-to-absolute (s &optional daynr prefer show-all buffer pos)
17443 "Convert a time stamp to an absolute day number.
17444 If there is a specifier for a cyclic time stamp, get the closest
17445 date to DAYNR.
17446 PREFER and SHOW-ALL are passed through to `org-closest-date'.
17447 The variable `date' is bound by the calendar when this is called."
17448 (cond
17449 ((and daynr (string-match "\\`%%\\((.*)\\)" s))
17450 (if (org-diary-sexp-entry (match-string 1 s) "" date)
17451 daynr
17452 (+ daynr 1000)))
17453 ((and daynr (string-match "\\+[0-9]+[hdwmy]" s))
17454 (org-closest-date s (if (and (boundp 'daynr) (integerp daynr)) daynr
17455 (time-to-days (current-time))) (match-string 0 s)
17456 prefer show-all))
17457 (t (time-to-days
17458 (condition-case errdata
17459 (apply 'encode-time (org-parse-time-string s))
17460 (error (error "Bad timestamp `%s'%s\nError was: %s"
17461 s (if (not (and buffer pos))
17463 (format " at %d in buffer `%s'" pos buffer))
17464 (cdr errdata))))))))
17466 (defun org-days-to-iso-week (days)
17467 "Return the iso week number."
17468 (require 'cal-iso)
17469 (car (calendar-iso-from-absolute days)))
17471 (defun org-small-year-to-year (year)
17472 "Convert 2-digit years into 4-digit years.
17473 YEAR is expanded into one of the 30 next years, if possible, or
17474 into a past one. Any year larger than 99 is returned unchanged."
17475 (if (>= year 100) year
17476 (let* ((current (string-to-number (format-time-string "%Y" (current-time))))
17477 (century (/ current 100))
17478 (offset (- year (% current 100))))
17479 (cond ((> offset 30) (+ (* (1- century) 100) year))
17480 ((> offset -70) (+ (* century 100) year))
17481 (t (+ (* (1+ century) 100) year))))))
17483 (defun org-time-from-absolute (d)
17484 "Return the time corresponding to date D.
17485 D may be an absolute day number, or a calendar-type list (month day year)."
17486 (if (numberp d) (setq d (calendar-gregorian-from-absolute d)))
17487 (encode-time 0 0 0 (nth 1 d) (car d) (nth 2 d)))
17489 (defun org-calendar-holiday ()
17490 "List of holidays, for Diary display in Org-mode."
17491 (require 'holidays)
17492 (let ((hl (funcall
17493 (if (fboundp 'calendar-check-holidays)
17494 'calendar-check-holidays 'check-calendar-holidays) date)))
17495 (if hl (mapconcat 'identity hl "; "))))
17497 (defun org-diary-sexp-entry (sexp entry date)
17498 "Process a SEXP diary ENTRY for DATE."
17499 (require 'diary-lib)
17500 (let ((result (if calendar-debug-sexp
17501 (let ((stack-trace-on-error t))
17502 (eval (car (read-from-string sexp))))
17503 (condition-case nil
17504 (eval (car (read-from-string sexp)))
17505 (error
17506 (beep)
17507 (message "Bad sexp at line %d in %s: %s"
17508 (org-current-line)
17509 (buffer-file-name) sexp)
17510 (sleep-for 2))))))
17511 (cond ((stringp result) (split-string result "; "))
17512 ((and (consp result)
17513 (not (consp (cdr result)))
17514 (stringp (cdr result))) (cdr result))
17515 ((and (consp result)
17516 (stringp (car result))) result)
17517 (result entry))))
17519 (defun org-diary-to-ical-string (frombuf)
17520 "Get iCalendar entries from diary entries in buffer FROMBUF.
17521 This uses the icalendar.el library."
17522 (let* ((tmpdir (if (featurep 'xemacs)
17523 (temp-directory)
17524 temporary-file-directory))
17525 (tmpfile (make-temp-name
17526 (expand-file-name "orgics" tmpdir)))
17527 buf rtn b e)
17528 (with-current-buffer frombuf
17529 (icalendar-export-region (point-min) (point-max) tmpfile)
17530 (setq buf (find-buffer-visiting tmpfile))
17531 (set-buffer buf)
17532 (goto-char (point-min))
17533 (if (re-search-forward "^BEGIN:VEVENT" nil t)
17534 (setq b (match-beginning 0)))
17535 (goto-char (point-max))
17536 (if (re-search-backward "^END:VEVENT" nil t)
17537 (setq e (match-end 0)))
17538 (setq rtn (if (and b e) (concat (buffer-substring b e) "\n") "")))
17539 (kill-buffer buf)
17540 (delete-file tmpfile)
17541 rtn))
17543 (defun org-closest-date (start current change prefer show-all)
17544 "Find the date closest to CURRENT that is consistent with START and CHANGE.
17545 When PREFER is `past', return a date that is either CURRENT or past.
17546 When PREFER is `future', return a date that is either CURRENT or future.
17547 When SHOW-ALL is nil, only return the current occurrence of a time stamp."
17548 ;; Make the proper lists from the dates
17549 (catch 'exit
17550 (let ((a1 '(("h" . hour)
17551 ("d" . day)
17552 ("w" . week)
17553 ("m" . month)
17554 ("y" . year)))
17555 (shour (nth 2 (org-parse-time-string start)))
17556 dn dw sday cday n1 n2 n0
17557 d m y y1 y2 date1 date2 nmonths nm ny m2)
17559 (setq start (org-date-to-gregorian start)
17560 current (org-date-to-gregorian
17561 (if show-all
17562 current
17563 (time-to-days (current-time))))
17564 sday (calendar-absolute-from-gregorian start)
17565 cday (calendar-absolute-from-gregorian current))
17567 (if (<= cday sday) (throw 'exit sday))
17569 (if (string-match "\\(\\+[0-9]+\\)\\([hdwmy]\\)" change)
17570 (setq dn (string-to-number (match-string 1 change))
17571 dw (cdr (assoc (match-string 2 change) a1)))
17572 (user-error "Invalid change specifier: %s" change))
17573 (if (eq dw 'week) (setq dw 'day dn (* 7 dn)))
17574 (cond
17575 ((eq dw 'hour)
17576 (let ((missing-hours
17577 (mod (+ (- (* 24 (- cday sday)) shour) org-extend-today-until)
17578 dn)))
17579 (setq n1 (if (zerop missing-hours) cday
17580 (- cday (1+ (floor (/ missing-hours 24)))))
17581 n2 (+ cday (floor (/ (- dn missing-hours) 24))))))
17582 ((eq dw 'day)
17583 (setq n1 (+ sday (* dn (floor (/ (- cday sday) dn))))
17584 n2 (+ n1 dn)))
17585 ((eq dw 'year)
17586 (setq d (nth 1 start) m (car start) y1 (nth 2 start) y2 (nth 2 current))
17587 (setq y1 (+ (* (floor (/ (- y2 y1) dn)) dn) y1))
17588 (setq date1 (list m d y1)
17589 n1 (calendar-absolute-from-gregorian date1)
17590 date2 (list m d (+ y1 (* (if (< n1 cday) 1 -1) dn)))
17591 n2 (calendar-absolute-from-gregorian date2)))
17592 ((eq dw 'month)
17593 ;; approx number of month between the two dates
17594 (setq nmonths (floor (/ (- cday sday) 30.436875)))
17595 ;; How often does dn fit in there?
17596 (setq d (nth 1 start) m (car start) y (nth 2 start)
17597 nm (* dn (max 0 (1- (floor (/ nmonths dn)))))
17598 m (+ m nm)
17599 ny (floor (/ m 12))
17600 y (+ y ny)
17601 m (- m (* ny 12)))
17602 (while (> m 12) (setq m (- m 12) y (1+ y)))
17603 (setq n1 (calendar-absolute-from-gregorian (list m d y)))
17604 (setq m2 (+ m dn) y2 y)
17605 (if (> m2 12) (setq y2 (1+ y2) m2 (- m2 12)))
17606 (setq n2 (calendar-absolute-from-gregorian (list m2 d y2)))
17607 (while (<= n2 cday)
17608 (setq n1 n2 m m2 y y2)
17609 (setq m2 (+ m dn) y2 y)
17610 (if (> m2 12) (setq y2 (1+ y2) m2 (- m2 12)))
17611 (setq n2 (calendar-absolute-from-gregorian (list m2 d y2))))))
17612 ;; Make sure n1 is the earlier date
17613 (setq n0 n1 n1 (min n1 n2) n2 (max n0 n2))
17614 (if show-all
17615 (cond
17616 ((eq prefer 'past) (if (= cday n2) n2 n1))
17617 ((eq prefer 'future) (if (= cday n1) n1 n2))
17618 (t (if (> (abs (- cday n1)) (abs (- cday n2))) n2 n1)))
17619 (cond
17620 ((eq prefer 'past) (if (= cday n2) n2 n1))
17621 ((eq prefer 'future) (if (= cday n1) n1 n2))
17622 (t (if (= cday n1) n1 n2)))))))
17624 (defun org-date-to-gregorian (date)
17625 "Turn any specification of DATE into a Gregorian date for the calendar."
17626 (cond ((integerp date) (calendar-gregorian-from-absolute date))
17627 ((and (listp date) (= (length date) 3)) date)
17628 ((stringp date)
17629 (setq date (org-parse-time-string date))
17630 (list (nth 4 date) (nth 3 date) (nth 5 date)))
17631 ((listp date)
17632 (list (nth 4 date) (nth 3 date) (nth 5 date)))))
17634 (defun org-parse-time-string (s &optional nodefault)
17635 "Parse the standard Org-mode time string.
17636 This should be a lot faster than the normal `parse-time-string'.
17637 If time is not given, defaults to 0:00. However, with optional NODEFAULT,
17638 hour and minute fields will be nil if not given."
17639 (cond ((string-match org-ts-regexp0 s)
17640 (list 0
17641 (if (or (match-beginning 8) (not nodefault))
17642 (string-to-number (or (match-string 8 s) "0")))
17643 (if (or (match-beginning 7) (not nodefault))
17644 (string-to-number (or (match-string 7 s) "0")))
17645 (string-to-number (match-string 4 s))
17646 (string-to-number (match-string 3 s))
17647 (string-to-number (match-string 2 s))
17648 nil nil nil))
17649 ((string-match "^<[^>]+>$" s)
17650 (decode-time (seconds-to-time (org-matcher-time s))))
17651 (t (error "Not a standard Org-mode time string: %s" s))))
17653 (defun org-timestamp-up (&optional arg)
17654 "Increase the date item at the cursor by one.
17655 If the cursor is on the year, change the year. If it is on the month,
17656 the day or the time, change that.
17657 With prefix ARG, change by that many units."
17658 (interactive "p")
17659 (org-timestamp-change (prefix-numeric-value arg) nil 'updown))
17661 (defun org-timestamp-down (&optional arg)
17662 "Decrease the date item at the cursor by one.
17663 If the cursor is on the year, change the year. If it is on the month,
17664 the day or the time, change that.
17665 With prefix ARG, change by that many units."
17666 (interactive "p")
17667 (org-timestamp-change (- (prefix-numeric-value arg)) nil 'updown))
17669 (defun org-timestamp-up-day (&optional arg)
17670 "Increase the date in the time stamp by one day.
17671 With prefix ARG, change that many days."
17672 (interactive "p")
17673 (if (and (not (org-at-timestamp-p t))
17674 (org-at-heading-p))
17675 (org-todo 'up)
17676 (org-timestamp-change (prefix-numeric-value arg) 'day 'updown)))
17678 (defun org-timestamp-down-day (&optional arg)
17679 "Decrease the date in the time stamp by one day.
17680 With prefix ARG, change that many days."
17681 (interactive "p")
17682 (if (and (not (org-at-timestamp-p t))
17683 (org-at-heading-p))
17684 (org-todo 'down)
17685 (org-timestamp-change (- (prefix-numeric-value arg)) 'day) 'updown))
17687 (defun org-at-timestamp-p (&optional inactive-ok)
17688 "Determine if the cursor is in or at a timestamp."
17689 (interactive)
17690 (let* ((tsr (if inactive-ok org-ts-regexp3 org-ts-regexp2))
17691 (pos (point))
17692 (ans (or (looking-at tsr)
17693 (save-excursion
17694 (skip-chars-backward "^[<\n\r\t")
17695 (if (> (point) (point-min)) (backward-char 1))
17696 (and (looking-at tsr)
17697 (> (- (match-end 0) pos) -1))))))
17698 (and ans
17699 (boundp 'org-ts-what)
17700 (setq org-ts-what
17701 (cond
17702 ((= pos (match-beginning 0)) 'bracket)
17703 ;; Point is considered to be "on the bracket" whether
17704 ;; it's really on it or right after it.
17705 ((= pos (1- (match-end 0))) 'bracket)
17706 ((= pos (match-end 0)) 'after)
17707 ((org-pos-in-match-range pos 2) 'year)
17708 ((org-pos-in-match-range pos 3) 'month)
17709 ((org-pos-in-match-range pos 7) 'hour)
17710 ((org-pos-in-match-range pos 8) 'minute)
17711 ((or (org-pos-in-match-range pos 4)
17712 (org-pos-in-match-range pos 5)) 'day)
17713 ((and (> pos (or (match-end 8) (match-end 5)))
17714 (< pos (match-end 0)))
17715 (- pos (or (match-end 8) (match-end 5))))
17716 (t 'day))))
17717 ans))
17719 (defun org-toggle-timestamp-type ()
17720 "Toggle the type (<active> or [inactive]) of a time stamp."
17721 (interactive)
17722 (when (org-at-timestamp-p t)
17723 (let ((beg (match-beginning 0)) (end (match-end 0))
17724 (map '((?\[ . "<") (?\] . ">") (?< . "[") (?> . "]"))))
17725 (save-excursion
17726 (goto-char beg)
17727 (while (re-search-forward "[][<>]" end t)
17728 (replace-match (cdr (assoc (char-after (match-beginning 0)) map))
17729 t t)))
17730 (message "Timestamp is now %sactive"
17731 (if (equal (char-after beg) ?<) "" "in")))))
17733 (defun org-at-clock-log-p nil
17734 "Is the cursor on the clock log line?"
17735 (save-excursion
17736 (move-beginning-of-line 1)
17737 (looking-at org-clock-line-re)))
17739 (defvar org-clock-history) ; defined in org-clock.el
17740 (defvar org-clock-adjust-closest nil) ; defined in org-clock.el
17741 (defun org-timestamp-change (n &optional what updown suppress-tmp-delay)
17742 "Change the date in the time stamp at point.
17743 The date will be changed by N times WHAT. WHAT can be `day', `month',
17744 `year', `minute', `second'. If WHAT is not given, the cursor position
17745 in the timestamp determines what will be changed.
17746 When SUPPRESS-TMP-DELAY is non-nil, suppress delays like \"--2d\"."
17747 (let ((origin (point)) origin-cat
17748 with-hm inactive
17749 (dm (max (nth 1 org-time-stamp-rounding-minutes) 1))
17750 org-ts-what
17751 extra rem
17752 ts time time0 fixnext clrgx)
17753 (if (not (org-at-timestamp-p t))
17754 (user-error "Not at a timestamp"))
17755 (if (and (not what) (eq org-ts-what 'bracket))
17756 (org-toggle-timestamp-type)
17757 ;; Point isn't on brackets. Remember the part of the time-stamp
17758 ;; the point was in. Indeed, size of time-stamps may change,
17759 ;; but point must be kept in the same category nonetheless.
17760 (setq origin-cat org-ts-what)
17761 (if (and (not what) (not (eq org-ts-what 'day))
17762 org-display-custom-times
17763 (get-text-property (point) 'display)
17764 (not (get-text-property (1- (point)) 'display)))
17765 (setq org-ts-what 'day))
17766 (setq org-ts-what (or what org-ts-what)
17767 inactive (= (char-after (match-beginning 0)) ?\[)
17768 ts (match-string 0))
17769 (replace-match "")
17770 (when (string-match
17771 "\\(\\(-[012][0-9]:[0-5][0-9]\\)?\\( +[.+]?-?[-+][0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)*\\)[]>]"
17773 (setq extra (match-string 1 ts))
17774 (if suppress-tmp-delay
17775 (setq extra (replace-regexp-in-string " --[0-9]+[hdwmy]" "" extra))))
17776 (if (string-match "^.\\{10\\}.*?[0-9]+:[0-9][0-9]" ts)
17777 (setq with-hm t))
17778 (setq time0 (org-parse-time-string ts))
17779 (when (and updown
17780 (eq org-ts-what 'minute)
17781 (not current-prefix-arg))
17782 ;; This looks like s-up and s-down. Change by one rounding step.
17783 (setq n (* dm (cond ((> n 0) 1) ((< n 0) -1) (t 0))))
17784 (when (not (= 0 (setq rem (% (nth 1 time0) dm))))
17785 (setcar (cdr time0) (+ (nth 1 time0)
17786 (if (> n 0) (- rem) (- dm rem))))))
17787 (setq time
17788 (encode-time (or (car time0) 0)
17789 (+ (if (eq org-ts-what 'minute) n 0) (nth 1 time0))
17790 (+ (if (eq org-ts-what 'hour) n 0) (nth 2 time0))
17791 (+ (if (eq org-ts-what 'day) n 0) (nth 3 time0))
17792 (+ (if (eq org-ts-what 'month) n 0) (nth 4 time0))
17793 (+ (if (eq org-ts-what 'year) n 0) (nth 5 time0))
17794 (nthcdr 6 time0)))
17795 (when (and (member org-ts-what '(hour minute))
17796 extra
17797 (string-match "-\\([012][0-9]\\):\\([0-5][0-9]\\)" extra))
17798 (setq extra (org-modify-ts-extra
17799 extra
17800 (if (eq org-ts-what 'hour) 2 5)
17801 n dm)))
17802 (when (integerp org-ts-what)
17803 (setq extra (org-modify-ts-extra extra org-ts-what n dm)))
17804 (if (eq what 'calendar)
17805 (let ((cal-date (org-get-date-from-calendar)))
17806 (setcar (nthcdr 4 time0) (nth 0 cal-date)) ; month
17807 (setcar (nthcdr 3 time0) (nth 1 cal-date)) ; day
17808 (setcar (nthcdr 5 time0) (nth 2 cal-date)) ; year
17809 (setcar time0 (or (car time0) 0))
17810 (setcar (nthcdr 1 time0) (or (nth 1 time0) 0))
17811 (setcar (nthcdr 2 time0) (or (nth 2 time0) 0))
17812 (setq time (apply 'encode-time time0))))
17813 ;; Insert the new time-stamp, and ensure point stays in the same
17814 ;; category as before (i.e. not after the last position in that
17815 ;; category).
17816 (let ((pos (point)))
17817 ;; Stay before inserted string. `save-excursion' is of no use.
17818 (setq org-last-changed-timestamp
17819 (org-insert-time-stamp time with-hm inactive nil nil extra))
17820 (goto-char pos))
17821 (save-match-data
17822 (looking-at org-ts-regexp3)
17823 (goto-char (cond
17824 ;; `day' category ends before `hour' if any, or at
17825 ;; the end of the day name.
17826 ((eq origin-cat 'day)
17827 (min (or (match-beginning 7) (1- (match-end 5))) origin))
17828 ((eq origin-cat 'hour) (min (match-end 7) origin))
17829 ((eq origin-cat 'minute) (min (1- (match-end 8)) origin))
17830 ((integerp origin-cat) (min (1- (match-end 0)) origin))
17831 ;; `year' and `month' have both fixed size: point
17832 ;; couldn't have moved into another part.
17833 (t origin))))
17834 ;; Update clock if on a CLOCK line.
17835 (org-clock-update-time-maybe)
17836 ;; Maybe adjust the closest clock in `org-clock-history'
17837 (when org-clock-adjust-closest
17838 (if (not (and (org-at-clock-log-p)
17839 (< 1 (length (delq nil (mapcar 'marker-position
17840 org-clock-history))))))
17841 (message "No clock to adjust")
17842 (cond ((save-excursion ; fix previous clock?
17843 (re-search-backward org-ts-regexp0 nil t)
17844 (org-looking-back (concat org-clock-string " \\[")))
17845 (setq fixnext 1 clrgx (concat org-ts-regexp0 "\\] =>.*$")))
17846 ((save-excursion ; fix next clock?
17847 (re-search-backward org-ts-regexp0 nil t)
17848 (looking-at (concat org-ts-regexp0 "\\] =>")))
17849 (setq fixnext -1 clrgx (concat org-clock-string " \\[" org-ts-regexp0))))
17850 (save-window-excursion
17851 ;; Find closest clock to point, adjust the previous/next one in history
17852 (let* ((p (save-excursion (org-back-to-heading t)))
17853 (cl (mapcar (lambda(c) (abs (- (marker-position c) p))) org-clock-history))
17854 (clfixnth
17855 (+ fixnext (- (length cl) (or (length (member (apply 'min cl) cl)) 100))))
17856 (clfixpos (if (> 0 clfixnth) nil (nth clfixnth org-clock-history))))
17857 (if (not clfixpos)
17858 (message "No clock to adjust")
17859 (save-excursion
17860 (org-goto-marker-or-bmk clfixpos)
17861 (org-show-subtree)
17862 (when (re-search-forward clrgx nil t)
17863 (goto-char (match-beginning 1))
17864 (let (org-clock-adjust-closest)
17865 (org-timestamp-change n org-ts-what updown))
17866 (message "Clock adjusted in %s for heading: %s"
17867 (file-name-nondirectory (buffer-file-name))
17868 (org-get-heading t t)))))))))
17869 ;; Try to recenter the calendar window, if any.
17870 (if (and org-calendar-follow-timestamp-change
17871 (get-buffer-window "*Calendar*" t)
17872 (memq org-ts-what '(day month year)))
17873 (org-recenter-calendar (time-to-days time))))))
17875 (defun org-modify-ts-extra (s pos n dm)
17876 "Change the different parts of the lead-time and repeat fields in timestamp."
17877 (let ((idx '(("d" . 0) ("w" . 1) ("m" . 2) ("y" . 3) ("d" . -1) ("y" . 4)))
17878 ng h m new rem)
17879 (when (string-match "\\(-\\([012][0-9]\\):\\([0-5][0-9]\\)\\)?\\( +\\+\\([0-9]+\\)\\([dmwy]\\)\\)?\\( +-\\([0-9]+\\)\\([dmwy]\\)\\)?" s)
17880 (cond
17881 ((or (org-pos-in-match-range pos 2)
17882 (org-pos-in-match-range pos 3))
17883 (setq m (string-to-number (match-string 3 s))
17884 h (string-to-number (match-string 2 s)))
17885 (if (org-pos-in-match-range pos 2)
17886 (setq h (+ h n))
17887 (setq n (* dm (org-no-warnings (signum n))))
17888 (when (not (= 0 (setq rem (% m dm))))
17889 (setq m (+ m (if (> n 0) (- rem) (- dm rem)))))
17890 (setq m (+ m n)))
17891 (if (< m 0) (setq m (+ m 60) h (1- h)))
17892 (if (> m 59) (setq m (- m 60) h (1+ h)))
17893 (setq h (min 24 (max 0 h)))
17894 (setq ng 1 new (format "-%02d:%02d" h m)))
17895 ((org-pos-in-match-range pos 6)
17896 (setq ng 6 new (car (rassoc (+ n (cdr (assoc (match-string 6 s) idx))) idx))))
17897 ((org-pos-in-match-range pos 5)
17898 (setq ng 5 new (format "%d" (max 1 (+ n (string-to-number (match-string 5 s)))))))
17900 ((org-pos-in-match-range pos 9)
17901 (setq ng 9 new (car (rassoc (+ n (cdr (assoc (match-string 9 s) idx))) idx))))
17902 ((org-pos-in-match-range pos 8)
17903 (setq ng 8 new (format "%d" (max 0 (+ n (string-to-number (match-string 8 s))))))))
17905 (when ng
17906 (setq s (concat
17907 (substring s 0 (match-beginning ng))
17909 (substring s (match-end ng))))))
17912 (defun org-recenter-calendar (date)
17913 "If the calendar is visible, recenter it to DATE."
17914 (let ((cwin (get-buffer-window "*Calendar*" t)))
17915 (when cwin
17916 (let ((calendar-move-hook nil))
17917 (with-selected-window cwin
17918 (calendar-goto-date (if (listp date) date
17919 (calendar-gregorian-from-absolute date))))))))
17921 (defun org-goto-calendar (&optional arg)
17922 "Go to the Emacs calendar at the current date.
17923 If there is a time stamp in the current line, go to that date.
17924 A prefix ARG can be used to force the current date."
17925 (interactive "P")
17926 (let ((tsr org-ts-regexp) diff
17927 (calendar-move-hook nil)
17928 (calendar-view-holidays-initially-flag nil)
17929 (calendar-view-diary-initially-flag nil))
17930 (if (or (org-at-timestamp-p)
17931 (save-excursion
17932 (beginning-of-line 1)
17933 (looking-at (concat ".*" tsr))))
17934 (let ((d1 (time-to-days (current-time)))
17935 (d2 (time-to-days
17936 (org-time-string-to-time (match-string 1)))))
17937 (setq diff (- d2 d1))))
17938 (calendar)
17939 (calendar-goto-today)
17940 (if (and diff (not arg)) (calendar-forward-day diff))))
17942 (defun org-get-date-from-calendar ()
17943 "Return a list (month day year) of date at point in calendar."
17944 (with-current-buffer "*Calendar*"
17945 (save-match-data
17946 (calendar-cursor-to-date))))
17948 (defun org-date-from-calendar ()
17949 "Insert time stamp corresponding to cursor date in *Calendar* buffer.
17950 If there is already a time stamp at the cursor position, update it."
17951 (interactive)
17952 (if (org-at-timestamp-p t)
17953 (org-timestamp-change 0 'calendar)
17954 (let ((cal-date (org-get-date-from-calendar)))
17955 (org-insert-time-stamp
17956 (encode-time 0 0 0 (nth 1 cal-date) (car cal-date) (nth 2 cal-date))))))
17958 (defcustom org-effort-durations
17959 `(("min" . 1)
17960 ("h" . 60)
17961 ("d" . ,(* 60 8))
17962 ("w" . ,(* 60 8 5))
17963 ("m" . ,(* 60 8 5 4))
17964 ("y" . ,(* 60 8 5 40)))
17965 "Conversion factor to minutes for an effort modifier.
17967 Each entry has the form (MODIFIER . MINUTES).
17969 In an effort string, a number followed by MODIFIER is multiplied
17970 by the specified number of MINUTES to obtain an effort in
17971 minutes.
17973 For example, if the value of this variable is ((\"hours\" . 60)), then an
17974 effort string \"2hours\" is equivalent to 120 minutes."
17975 :group 'org-agenda
17976 :version "25.1"
17977 :package-version '(Org . "8.3")
17978 :type '(alist :key-type (string :tag "Modifier")
17979 :value-type (number :tag "Minutes")))
17981 (defun org-minutes-to-clocksum-string (m)
17982 "Format number of minutes as a clocksum string.
17983 The format is determined by `org-time-clocksum-format',
17984 `org-time-clocksum-use-fractional' and
17985 `org-time-clocksum-fractional-format' and
17986 `org-time-clocksum-use-effort-durations'."
17987 (let ((clocksum "")
17988 (m (round m)) ; Don't allow fractions of minutes
17989 h d w mo y fmt n)
17990 (setq h (if org-time-clocksum-use-effort-durations
17991 (cdr (assoc "h" org-effort-durations)) 60)
17992 d (if org-time-clocksum-use-effort-durations
17993 (/ (cdr (assoc "d" org-effort-durations)) h) 24)
17994 w (if org-time-clocksum-use-effort-durations
17995 (/ (cdr (assoc "w" org-effort-durations)) (* d h)) 7)
17996 mo (if org-time-clocksum-use-effort-durations
17997 (/ (cdr (assoc "m" org-effort-durations)) (* d h)) 30)
17998 y (if org-time-clocksum-use-effort-durations
17999 (/ (cdr (assoc "y" org-effort-durations)) (* d h)) 365))
18000 ;; fractional format
18001 (if org-time-clocksum-use-fractional
18002 (cond
18003 ;; single format string
18004 ((stringp org-time-clocksum-fractional-format)
18005 (format org-time-clocksum-fractional-format (/ m (float h))))
18006 ;; choice of fractional formats for different time units
18007 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :years))
18008 (> (/ (truncate m) (* y d h)) 0))
18009 (format fmt (/ m (* y d (float h)))))
18010 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :months))
18011 (> (/ (truncate m) (* mo d h)) 0))
18012 (format fmt (/ m (* mo d (float h)))))
18013 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :weeks))
18014 (> (/ (truncate m) (* w d h)) 0))
18015 (format fmt (/ m (* w d (float h)))))
18016 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :days))
18017 (> (/ (truncate m) (* d h)) 0))
18018 (format fmt (/ m (* d (float h)))))
18019 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :hours))
18020 (> (/ (truncate m) h) 0))
18021 (format fmt (/ m (float h))))
18022 ((setq fmt (plist-get org-time-clocksum-fractional-format :minutes))
18023 (format fmt m))
18024 ;; fall back to smallest time unit with a format
18025 ((setq fmt (plist-get org-time-clocksum-fractional-format :hours))
18026 (format fmt (/ m (float h))))
18027 ((setq fmt (plist-get org-time-clocksum-fractional-format :days))
18028 (format fmt (/ m (* d (float h)))))
18029 ((setq fmt (plist-get org-time-clocksum-fractional-format :weeks))
18030 (format fmt (/ m (* w d (float h)))))
18031 ((setq fmt (plist-get org-time-clocksum-fractional-format :months))
18032 (format fmt (/ m (* mo d (float h)))))
18033 ((setq fmt (plist-get org-time-clocksum-fractional-format :years))
18034 (format fmt (/ m (* y d (float h))))))
18035 ;; standard (non-fractional) format, with single format string
18036 (if (stringp org-time-clocksum-format)
18037 (format org-time-clocksum-format (setq n (/ m h)) (- m (* h n)))
18038 ;; separate formats components
18039 (and (setq fmt (plist-get org-time-clocksum-format :years))
18040 (or (> (setq n (/ (truncate m) (* y d h))) 0)
18041 (plist-get org-time-clocksum-format :require-years))
18042 (setq clocksum (concat clocksum (format fmt n))
18043 m (- m (* n y d h))))
18044 (and (setq fmt (plist-get org-time-clocksum-format :months))
18045 (or (> (setq n (/ (truncate m) (* mo d h))) 0)
18046 (plist-get org-time-clocksum-format :require-months))
18047 (setq clocksum (concat clocksum (format fmt n))
18048 m (- m (* n mo d h))))
18049 (and (setq fmt (plist-get org-time-clocksum-format :weeks))
18050 (or (> (setq n (/ (truncate m) (* w d h))) 0)
18051 (plist-get org-time-clocksum-format :require-weeks))
18052 (setq clocksum (concat clocksum (format fmt n))
18053 m (- m (* n w d h))))
18054 (and (setq fmt (plist-get org-time-clocksum-format :days))
18055 (or (> (setq n (/ (truncate m) (* d h))) 0)
18056 (plist-get org-time-clocksum-format :require-days))
18057 (setq clocksum (concat clocksum (format fmt n))
18058 m (- m (* n d h))))
18059 (and (setq fmt (plist-get org-time-clocksum-format :hours))
18060 (or (> (setq n (/ (truncate m) h)) 0)
18061 (plist-get org-time-clocksum-format :require-hours))
18062 (setq clocksum (concat clocksum (format fmt n))
18063 m (- m (* n h))))
18064 (and (setq fmt (plist-get org-time-clocksum-format :minutes))
18065 (or (> m 0) (plist-get org-time-clocksum-format :require-minutes))
18066 (setq clocksum (concat clocksum (format fmt m))))
18067 ;; return formatted time duration
18068 clocksum))))
18070 (defalias 'org-minutes-to-hh:mm-string 'org-minutes-to-clocksum-string)
18071 (make-obsolete 'org-minutes-to-hh:mm-string 'org-minutes-to-clocksum-string
18072 "Org mode version 8.0")
18074 (defun org-hours-to-clocksum-string (n)
18075 (org-minutes-to-clocksum-string (* n 60)))
18077 (defun org-hh:mm-string-to-minutes (s)
18078 "Convert a string H:MM to a number of minutes.
18079 If the string is just a number, interpret it as minutes.
18080 In fact, the first hh:mm or number in the string will be taken,
18081 there can be extra stuff in the string.
18082 If no number is found, the return value is 0."
18083 (cond
18084 ((integerp s) s)
18085 ((string-match "\\([0-9]+\\):\\([0-9]+\\)" s)
18086 (+ (* (string-to-number (match-string 1 s)) 60)
18087 (string-to-number (match-string 2 s))))
18088 ((string-match "\\([0-9]+\\)" s)
18089 (string-to-number (match-string 1 s)))
18090 (t 0)))
18092 (defcustom org-image-actual-width t
18093 "Should we use the actual width of images when inlining them?
18095 When set to `t', always use the image width.
18097 When set to a number, use imagemagick (when available) to set
18098 the image's width to this value.
18100 When set to a number in a list, try to get the width from any
18101 #+ATTR.* keyword if it matches a width specification like
18103 #+ATTR_HTML: :width 300px
18105 and fall back on that number if none is found.
18107 When set to nil, try to get the width from an #+ATTR.* keyword
18108 and fall back on the original width if none is found.
18110 This requires Emacs >= 24.1, build with imagemagick support."
18111 :group 'org-appearance
18112 :version "24.4"
18113 :package-version '(Org . "8.0")
18114 :type '(choice
18115 (const :tag "Use the image width" t)
18116 (integer :tag "Use a number of pixels")
18117 (list :tag "Use #+ATTR* or a number of pixels" (integer))
18118 (const :tag "Use #+ATTR* or don't resize" nil)))
18120 (defcustom org-agenda-inhibit-startup nil
18121 "Inhibit startup when preparing agenda buffers.
18122 When this variable is `t', the initialization of the Org agenda
18123 buffers is inhibited: e.g. the visibility state is not set, the
18124 tables are not re-aligned, etc."
18125 :type 'boolean
18126 :version "24.3"
18127 :group 'org-agenda)
18129 (define-obsolete-variable-alias
18130 'org-agenda-ignore-drawer-properties
18131 'org-agenda-ignore-properties "25.1")
18133 (defcustom org-agenda-ignore-properties nil
18134 "Avoid updating text properties when building the agenda.
18135 Properties are used to prepare buffers for effort estimates,
18136 appointments, statistics and subtree-local categories.
18137 If you don't use these in the agenda, you can add them to this
18138 list and agenda building will be a bit faster.
18139 The value is a list, with zero or more of the symbols `effort', `appt',
18140 `stats' or `category'."
18141 :type '(set :greedy t
18142 (const effort)
18143 (const appt)
18144 (const stats)
18145 (const category))
18146 :version "25.1"
18147 :package-version '(Org . "8.3")
18148 :group 'org-agenda)
18150 (defun org-duration-string-to-minutes (s &optional output-to-string)
18151 "Convert a duration string S to minutes.
18153 A bare number is interpreted as minutes, modifiers can be set by
18154 customizing `org-effort-durations' (which see).
18156 Entries containing a colon are interpreted as H:MM by
18157 `org-hh:mm-string-to-minutes'."
18158 (let ((result 0)
18159 (re (concat "\\([0-9.]+\\) *\\("
18160 (regexp-opt (mapcar 'car org-effort-durations))
18161 "\\)")))
18162 (while (string-match re s)
18163 (incf result (* (cdr (assoc (match-string 2 s) org-effort-durations))
18164 (string-to-number (match-string 1 s))))
18165 (setq s (replace-match "" nil t s)))
18166 (setq result (floor result))
18167 (incf result (org-hh:mm-string-to-minutes s))
18168 (if output-to-string (number-to-string result) result)))
18170 ;;;; Files
18172 (defun org-save-all-org-buffers ()
18173 "Save all Org-mode buffers without user confirmation."
18174 (interactive)
18175 (message "Saving all Org-mode buffers...")
18176 (save-some-buffers t (lambda () (derived-mode-p 'org-mode)))
18177 (when (featurep 'org-id) (org-id-locations-save))
18178 (message "Saving all Org-mode buffers... done"))
18180 (defun org-revert-all-org-buffers ()
18181 "Revert all Org-mode buffers.
18182 Prompt for confirmation when there are unsaved changes.
18183 Be sure you know what you are doing before letting this function
18184 overwrite your changes.
18186 This function is useful in a setup where one tracks org files
18187 with a version control system, to revert on one machine after pulling
18188 changes from another. I believe the procedure must be like this:
18190 1. M-x org-save-all-org-buffers
18191 2. Pull changes from the other machine, resolve conflicts
18192 3. M-x org-revert-all-org-buffers"
18193 (interactive)
18194 (unless (yes-or-no-p "Revert all Org buffers from their files? ")
18195 (user-error "Abort"))
18196 (save-excursion
18197 (save-window-excursion
18198 (mapc
18199 (lambda (b)
18200 (when (and (with-current-buffer b (derived-mode-p 'org-mode))
18201 (with-current-buffer b buffer-file-name))
18202 (org-pop-to-buffer-same-window b)
18203 (revert-buffer t 'no-confirm)))
18204 (buffer-list))
18205 (when (and (featurep 'org-id) org-id-track-globally)
18206 (org-id-locations-load)))))
18208 ;;;; Agenda files
18210 ;;;###autoload
18211 (defun org-switchb (&optional arg)
18212 "Switch between Org buffers.
18213 With one prefix argument, restrict available buffers to files.
18214 With two prefix arguments, restrict available buffers to agenda files.
18216 Defaults to `iswitchb' for buffer name completion.
18217 Set `org-completion-use-ido' to make it use ido instead."
18218 (interactive "P")
18219 (let ((blist (cond ((equal arg '(4)) (org-buffer-list 'files))
18220 ((equal arg '(16)) (org-buffer-list 'agenda))
18221 (t (org-buffer-list))))
18222 (org-completion-use-iswitchb org-completion-use-iswitchb)
18223 (org-completion-use-ido org-completion-use-ido))
18224 (unless (or org-completion-use-ido org-completion-use-iswitchb)
18225 (setq org-completion-use-iswitchb t))
18226 (org-pop-to-buffer-same-window
18227 (org-icompleting-read "Org buffer: "
18228 (mapcar 'list (mapcar 'buffer-name blist))
18229 nil t))))
18231 ;;; Define some older names previously used for this functionality
18232 ;;;###autoload
18233 (defalias 'org-ido-switchb 'org-switchb)
18234 ;;;###autoload
18235 (defalias 'org-iswitchb 'org-switchb)
18237 (defun org-buffer-list (&optional predicate exclude-tmp)
18238 "Return a list of Org buffers.
18239 PREDICATE can be `export', `files' or `agenda'.
18241 export restrict the list to Export buffers.
18242 files restrict the list to buffers visiting Org files.
18243 agenda restrict the list to buffers visiting agenda files.
18245 If EXCLUDE-TMP is non-nil, ignore temporary buffers."
18246 (let* ((bfn nil)
18247 (agenda-files (and (eq predicate 'agenda)
18248 (mapcar 'file-truename (org-agenda-files t))))
18249 (filter
18250 (cond
18251 ((eq predicate 'files)
18252 (lambda (b) (with-current-buffer b (derived-mode-p 'org-mode))))
18253 ((eq predicate 'export)
18254 (lambda (b) (string-match "\*Org .*Export" (buffer-name b))))
18255 ((eq predicate 'agenda)
18256 (lambda (b)
18257 (with-current-buffer b
18258 (and (derived-mode-p 'org-mode)
18259 (setq bfn (buffer-file-name b))
18260 (member (file-truename bfn) agenda-files)))))
18261 (t (lambda (b) (with-current-buffer b
18262 (or (derived-mode-p 'org-mode)
18263 (string-match "\*Org .*Export"
18264 (buffer-name b)))))))))
18265 (delq nil
18266 (mapcar
18267 (lambda(b)
18268 (if (and (funcall filter b)
18269 (or (not exclude-tmp)
18270 (not (string-match "tmp" (buffer-name b)))))
18272 nil))
18273 (buffer-list)))))
18275 (defun org-agenda-files (&optional unrestricted archives)
18276 "Get the list of agenda files.
18277 Optional UNRESTRICTED means return the full list even if a restriction
18278 is currently in place.
18279 When ARCHIVES is t, include all archive files that are really being
18280 used by the agenda files. If ARCHIVE is `ifmode', do this only if
18281 `org-agenda-archives-mode' is t."
18282 (let ((files
18283 (cond
18284 ((and (not unrestricted) (get 'org-agenda-files 'org-restrict)))
18285 ((stringp org-agenda-files) (org-read-agenda-file-list))
18286 ((listp org-agenda-files) org-agenda-files)
18287 (t (error "Invalid value of `org-agenda-files'")))))
18288 (setq files (apply 'append
18289 (mapcar (lambda (f)
18290 (if (file-directory-p f)
18291 (directory-files
18292 f t org-agenda-file-regexp)
18293 (list f)))
18294 files)))
18295 (when org-agenda-skip-unavailable-files
18296 (setq files (delq nil
18297 (mapcar (function
18298 (lambda (file)
18299 (and (file-readable-p file) file)))
18300 files))))
18301 (when (or (eq archives t)
18302 (and (eq archives 'ifmode) (eq org-agenda-archives-mode t)))
18303 (setq files (org-add-archive-files files)))
18304 files))
18306 (defun org-agenda-file-p (&optional file)
18307 "Return non-nil, if FILE is an agenda file.
18308 If FILE is omitted, use the file associated with the current
18309 buffer."
18310 (let ((fname (or file (buffer-file-name))))
18311 (and fname
18312 (member (file-truename fname)
18313 (mapcar #'file-truename (org-agenda-files t))))))
18315 (defun org-edit-agenda-file-list ()
18316 "Edit the list of agenda files.
18317 Depending on setup, this either uses customize to edit the variable
18318 `org-agenda-files', or it visits the file that is holding the list. In the
18319 latter case, the buffer is set up in a way that saving it automatically kills
18320 the buffer and restores the previous window configuration."
18321 (interactive)
18322 (if (stringp org-agenda-files)
18323 (let ((cw (current-window-configuration)))
18324 (find-file org-agenda-files)
18325 (org-set-local 'org-window-configuration cw)
18326 (org-add-hook 'after-save-hook
18327 (lambda ()
18328 (set-window-configuration
18329 (prog1 org-window-configuration
18330 (kill-buffer (current-buffer))))
18331 (org-install-agenda-files-menu)
18332 (message "New agenda file list installed"))
18333 nil 'local)
18334 (message "%s" (substitute-command-keys
18335 "Edit list and finish with \\[save-buffer]")))
18336 (customize-variable 'org-agenda-files)))
18338 (defun org-store-new-agenda-file-list (list)
18339 "Set new value for the agenda file list and save it correctly."
18340 (if (stringp org-agenda-files)
18341 (let ((fe (org-read-agenda-file-list t)) b u)
18342 (while (setq b (find-buffer-visiting org-agenda-files))
18343 (kill-buffer b))
18344 (with-temp-file org-agenda-files
18345 (insert
18346 (mapconcat
18347 (lambda (f) ;; Keep un-expanded entries.
18348 (if (setq u (assoc f fe))
18349 (cdr u)
18351 list "\n")
18352 "\n")))
18353 (let ((org-mode-hook nil) (org-inhibit-startup t)
18354 (org-insert-mode-line-in-empty-file nil))
18355 (setq org-agenda-files list)
18356 (customize-save-variable 'org-agenda-files org-agenda-files))))
18358 (defun org-read-agenda-file-list (&optional pair-with-expansion)
18359 "Read the list of agenda files from a file.
18360 If PAIR-WITH-EXPANSION is t return pairs with un-expanded
18361 filenames, used by `org-store-new-agenda-file-list' to write back
18362 un-expanded file names."
18363 (when (file-directory-p org-agenda-files)
18364 (error "`org-agenda-files' cannot be a single directory"))
18365 (when (stringp org-agenda-files)
18366 (with-temp-buffer
18367 (insert-file-contents org-agenda-files)
18368 (mapcar
18369 (lambda (f)
18370 (let ((e (expand-file-name (substitute-in-file-name f)
18371 org-directory)))
18372 (if pair-with-expansion
18373 (cons e f)
18374 e)))
18375 (org-split-string (buffer-string) "[ \t\r\n]*?[\r\n][ \t\r\n]*")))))
18377 ;;;###autoload
18378 (defun org-cycle-agenda-files ()
18379 "Cycle through the files in `org-agenda-files'.
18380 If the current buffer visits an agenda file, find the next one in the list.
18381 If the current buffer does not, find the first agenda file."
18382 (interactive)
18383 (let* ((fs (org-agenda-files t))
18384 (files (append fs (list (car fs))))
18385 (tcf (if buffer-file-name (file-truename buffer-file-name)))
18386 file)
18387 (unless files (user-error "No agenda files"))
18388 (catch 'exit
18389 (while (setq file (pop files))
18390 (if (equal (file-truename file) tcf)
18391 (when (car files)
18392 (find-file (car files))
18393 (throw 'exit t))))
18394 (find-file (car fs)))
18395 (if (buffer-base-buffer) (org-pop-to-buffer-same-window (buffer-base-buffer)))))
18397 (defun org-agenda-file-to-front (&optional to-end)
18398 "Move/add the current file to the top of the agenda file list.
18399 If the file is not present in the list, it is added to the front. If it is
18400 present, it is moved there. With optional argument TO-END, add/move to the
18401 end of the list."
18402 (interactive "P")
18403 (let ((org-agenda-skip-unavailable-files nil)
18404 (file-alist (mapcar (lambda (x)
18405 (cons (file-truename x) x))
18406 (org-agenda-files t)))
18407 (ctf (file-truename
18408 (or buffer-file-name
18409 (user-error "Please save the current buffer to a file"))))
18410 x had)
18411 (setq x (assoc ctf file-alist) had x)
18413 (if (not x) (setq x (cons ctf (abbreviate-file-name buffer-file-name))))
18414 (if to-end
18415 (setq file-alist (append (delq x file-alist) (list x)))
18416 (setq file-alist (cons x (delq x file-alist))))
18417 (org-store-new-agenda-file-list (mapcar 'cdr file-alist))
18418 (org-install-agenda-files-menu)
18419 (message "File %s to %s of agenda file list"
18420 (if had "moved" "added") (if to-end "end" "front"))))
18422 (defun org-remove-file (&optional file)
18423 "Remove current file from the list of files in variable `org-agenda-files'.
18424 These are the files which are being checked for agenda entries.
18425 Optional argument FILE means use this file instead of the current."
18426 (interactive)
18427 (let* ((org-agenda-skip-unavailable-files nil)
18428 (file (or file buffer-file-name
18429 (user-error "Current buffer does not visit a file")))
18430 (true-file (file-truename file))
18431 (afile (abbreviate-file-name file))
18432 (files (delq nil (mapcar
18433 (lambda (x)
18434 (if (equal true-file
18435 (file-truename x))
18436 nil x))
18437 (org-agenda-files t)))))
18438 (if (not (= (length files) (length (org-agenda-files t))))
18439 (progn
18440 (org-store-new-agenda-file-list files)
18441 (org-install-agenda-files-menu)
18442 (message "Removed from Org Agenda list: %s" afile))
18443 (message "File was not in list: %s (not removed)" afile))))
18445 (defun org-file-menu-entry (file)
18446 (vector file (list 'find-file file) t))
18448 (defun org-check-agenda-file (file)
18449 "Make sure FILE exists. If not, ask user what to do."
18450 (when (not (file-exists-p file))
18451 (message "Non-existent agenda file %s. [R]emove from list or [A]bort?"
18452 (abbreviate-file-name file))
18453 (let ((r (downcase (read-char-exclusive))))
18454 (cond
18455 ((equal r ?r)
18456 (org-remove-file file)
18457 (throw 'nextfile t))
18458 (t (user-error "Abort"))))))
18460 (defun org-get-agenda-file-buffer (file)
18461 "Get an agenda buffer visiting FILE.
18462 If the buffer needs to be created, add it to the list of buffers
18463 which might be released later."
18464 (let ((buf (org-find-base-buffer-visiting file)))
18465 (if buf
18466 buf ; just return it
18467 ;; Make a new buffer and remember it
18468 (setq buf (find-file-noselect file))
18469 (if buf (push buf org-agenda-new-buffers))
18470 buf)))
18472 (defun org-release-buffers (blist)
18473 "Release all buffers in list, asking the user for confirmation when needed.
18474 When a buffer is unmodified, it is just killed. When modified, it is saved
18475 \(if the user agrees) and then killed."
18476 (let (buf file)
18477 (while (setq buf (pop blist))
18478 (setq file (buffer-file-name buf))
18479 (when (and (buffer-modified-p buf)
18480 file
18481 (y-or-n-p (format "Save file %s? " file)))
18482 (with-current-buffer buf (save-buffer)))
18483 (kill-buffer buf))))
18485 (defun org-agenda-prepare-buffers (files)
18486 "Create buffers for all agenda files, protect archived trees and comments."
18487 (interactive)
18488 (let ((pa '(:org-archived t))
18489 (pc '(:org-comment t))
18490 (pall '(:org-archived t :org-comment t))
18491 (inhibit-read-only t)
18492 (org-inhibit-startup org-agenda-inhibit-startup)
18493 (rea (concat ":" org-archive-tag ":"))
18494 file re pos)
18495 (setq org-tag-alist-for-agenda nil
18496 org-tag-groups-alist-for-agenda nil)
18497 (save-excursion
18498 (save-restriction
18499 (while (setq file (pop files))
18500 (catch 'nextfile
18501 (if (bufferp file)
18502 (set-buffer file)
18503 (org-check-agenda-file file)
18504 (set-buffer (org-get-agenda-file-buffer file)))
18505 (widen)
18506 (org-set-regexps-and-options 'tags-only)
18507 (setq pos (point))
18508 (or (memq 'category org-agenda-ignore-properties)
18509 (org-refresh-category-properties))
18510 (or (memq 'stats org-agenda-ignore-properties)
18511 (org-refresh-stats-properties))
18512 (or (memq 'effort org-agenda-ignore-properties)
18513 (org-refresh-effort-properties))
18514 (or (memq 'appt org-agenda-ignore-properties)
18515 (org-refresh-properties "APPT_WARNTIME" 'org-appt-warntime))
18516 (setq org-todo-keywords-for-agenda
18517 (append org-todo-keywords-for-agenda org-todo-keywords-1))
18518 (setq org-done-keywords-for-agenda
18519 (append org-done-keywords-for-agenda org-done-keywords))
18520 (setq org-todo-keyword-alist-for-agenda
18521 (append org-todo-keyword-alist-for-agenda org-todo-key-alist))
18522 (setq org-tag-alist-for-agenda
18523 (org-uniquify
18524 (append org-tag-alist-for-agenda
18525 org-tag-alist
18526 org-tag-persistent-alist)))
18527 (if org-group-tags
18528 (setq org-tag-groups-alist-for-agenda
18529 (org-uniquify-alist
18530 (append org-tag-groups-alist-for-agenda org-tag-groups-alist))))
18531 (org-with-silent-modifications
18532 (save-excursion
18533 (remove-text-properties (point-min) (point-max) pall)
18534 (when org-agenda-skip-archived-trees
18535 (goto-char (point-min))
18536 (while (re-search-forward rea nil t)
18537 (if (org-at-heading-p t)
18538 (add-text-properties (point-at-bol) (org-end-of-subtree t) pa))))
18539 (goto-char (point-min))
18540 (setq re (format "^\\* .*\\<%s\\>" org-comment-string))
18541 (while (re-search-forward re nil t)
18542 (when (save-match-data (org-in-commented-heading-p t))
18543 (add-text-properties
18544 (match-beginning 0) (org-end-of-subtree t) pc)))))
18545 (goto-char pos)))))
18546 (setq org-todo-keywords-for-agenda
18547 (org-uniquify org-todo-keywords-for-agenda))
18548 (setq org-todo-keyword-alist-for-agenda
18549 (org-uniquify org-todo-keyword-alist-for-agenda))))
18552 ;;;; CDLaTeX minor mode
18554 (defvar org-cdlatex-mode-map (make-sparse-keymap)
18555 "Keymap for the minor `org-cdlatex-mode'.")
18557 (org-defkey org-cdlatex-mode-map "_" 'org-cdlatex-underscore-caret)
18558 (org-defkey org-cdlatex-mode-map "^" 'org-cdlatex-underscore-caret)
18559 (org-defkey org-cdlatex-mode-map "`" 'cdlatex-math-symbol)
18560 (org-defkey org-cdlatex-mode-map "'" 'org-cdlatex-math-modify)
18561 (org-defkey org-cdlatex-mode-map "\C-c{" 'org-cdlatex-environment-indent)
18563 (defvar org-cdlatex-texmathp-advice-is-done nil
18564 "Flag remembering if we have applied the advice to texmathp already.")
18566 (define-minor-mode org-cdlatex-mode
18567 "Toggle the minor `org-cdlatex-mode'.
18568 This mode supports entering LaTeX environment and math in LaTeX fragments
18569 in Org-mode.
18570 \\{org-cdlatex-mode-map}"
18571 nil " OCDL" nil
18572 (when org-cdlatex-mode
18573 (require 'cdlatex)
18574 (run-hooks 'cdlatex-mode-hook)
18575 (cdlatex-compute-tables))
18576 (unless org-cdlatex-texmathp-advice-is-done
18577 (setq org-cdlatex-texmathp-advice-is-done t)
18578 (defadvice texmathp (around org-math-always-on activate)
18579 "Always return t in org-mode buffers.
18580 This is because we want to insert math symbols without dollars even outside
18581 the LaTeX math segments. If Orgmode thinks that point is actually inside
18582 an embedded LaTeX fragment, let texmathp do its job.
18583 \\[org-cdlatex-mode-map]"
18584 (interactive)
18585 (let (p)
18586 (cond
18587 ((not (derived-mode-p 'org-mode)) ad-do-it)
18588 ((eq this-command 'cdlatex-math-symbol)
18589 (setq ad-return-value t
18590 texmathp-why '("cdlatex-math-symbol in org-mode" . 0)))
18592 (let ((p (org-inside-LaTeX-fragment-p)))
18593 (if (and p (member (car p) (plist-get org-format-latex-options :matchers)))
18594 (setq ad-return-value t
18595 texmathp-why '("Org-mode embedded math" . 0))
18596 (if p ad-do-it)))))))))
18598 (defun turn-on-org-cdlatex ()
18599 "Unconditionally turn on `org-cdlatex-mode'."
18600 (org-cdlatex-mode 1))
18602 (defun org-try-cdlatex-tab ()
18603 "Check if it makes sense to execute `cdlatex-tab', and do it if yes.
18604 It makes sense to do so if `org-cdlatex-mode' is active and if the cursor is
18605 - inside a LaTeX fragment, or
18606 - after the first word in a line, where an abbreviation expansion could
18607 insert a LaTeX environment."
18608 (when org-cdlatex-mode
18609 (cond
18610 ;; Before any word on the line: No expansion possible.
18611 ((save-excursion (skip-chars-backward " \t") (bolp)) nil)
18612 ;; Just after first word on the line: Expand it. Make sure it
18613 ;; cannot happen on headlines, though.
18614 ((save-excursion
18615 (skip-chars-backward "a-zA-Z0-9*")
18616 (skip-chars-backward " \t")
18617 (and (bolp) (not (org-at-heading-p))))
18618 (cdlatex-tab) t)
18619 ((org-inside-LaTeX-fragment-p) (cdlatex-tab) t))))
18621 (defun org-cdlatex-underscore-caret (&optional arg)
18622 "Execute `cdlatex-sub-superscript' in LaTeX fragments.
18623 Revert to the normal definition outside of these fragments."
18624 (interactive "P")
18625 (if (org-inside-LaTeX-fragment-p)
18626 (call-interactively 'cdlatex-sub-superscript)
18627 (let (org-cdlatex-mode)
18628 (call-interactively (key-binding (vector last-input-event))))))
18630 (defun org-cdlatex-math-modify (&optional arg)
18631 "Execute `cdlatex-math-modify' in LaTeX fragments.
18632 Revert to the normal definition outside of these fragments."
18633 (interactive "P")
18634 (if (org-inside-LaTeX-fragment-p)
18635 (call-interactively 'cdlatex-math-modify)
18636 (let (org-cdlatex-mode)
18637 (call-interactively (key-binding (vector last-input-event))))))
18639 (defun org-cdlatex-environment-indent (&optional environment item)
18640 "Execute `cdlatex-environment' and indent the inserted environment."
18641 (interactive)
18642 (cdlatex-environment environment item)
18643 (let ((element (org-element-at-point)))
18644 (org-indent-region (org-element-property :begin element)
18645 (org-element-property :end element))))
18648 ;;;; LaTeX fragments
18650 (defun org-inside-LaTeX-fragment-p ()
18651 "Test if point is inside a LaTeX fragment.
18652 I.e. after a \\begin, \\(, \\[, $, or $$, without the corresponding closing
18653 sequence appearing also before point.
18654 Even though the matchers for math are configurable, this function assumes
18655 that \\begin, \\(, \\[, and $$ are always used. Only the single dollar
18656 delimiters are skipped when they have been removed by customization.
18657 The return value is nil, or a cons cell with the delimiter and the
18658 position of this delimiter.
18660 This function does a reasonably good job, but can locally be fooled by
18661 for example currency specifications. For example it will assume being in
18662 inline math after \"$22.34\". The LaTeX fragment formatter will only format
18663 fragments that are properly closed, but during editing, we have to live
18664 with the uncertainty caused by missing closing delimiters. This function
18665 looks only before point, not after."
18666 (catch 'exit
18667 (let ((pos (point))
18668 (dodollar (member "$" (plist-get org-format-latex-options :matchers)))
18669 (lim (progn
18670 (re-search-backward (concat "^\\(" paragraph-start "\\)") nil t)
18671 (point)))
18672 dd-on str (start 0) m re)
18673 (goto-char pos)
18674 (when dodollar
18675 (setq str (concat (buffer-substring lim (point)) "\000 X$.")
18676 re (nth 1 (assoc "$" org-latex-regexps)))
18677 (while (string-match re str start)
18678 (cond
18679 ((= (match-end 0) (length str))
18680 (throw 'exit (cons "$" (+ lim (match-beginning 0) 1))))
18681 ((= (match-end 0) (- (length str) 5))
18682 (throw 'exit nil))
18683 (t (setq start (match-end 0))))))
18684 (when (setq m (re-search-backward "\\(\\\\begin{[^}]*}\\|\\\\(\\|\\\\\\[\\)\\|\\(\\\\end{[^}]*}\\|\\\\)\\|\\\\\\]\\)\\|\\(\\$\\$\\)" lim t))
18685 (goto-char pos)
18686 (and (match-beginning 1) (throw 'exit (cons (match-string 1) m)))
18687 (and (match-beginning 2) (throw 'exit nil))
18688 ;; count $$
18689 (while (re-search-backward "\\$\\$" lim t)
18690 (setq dd-on (not dd-on)))
18691 (goto-char pos)
18692 (if dd-on (cons "$$" m))))))
18694 (defun org-inside-latex-macro-p ()
18695 "Is point inside a LaTeX macro or its arguments?"
18696 (save-match-data
18697 (org-in-regexp
18698 "\\\\[a-zA-Z]+\\*?\\(\\(\\[[^][\n{}]*\\]\\)\\|\\({[^{}\n]*}\\)\\)*")))
18700 (defvar org-latex-fragment-image-overlays nil
18701 "List of overlays carrying the images of latex fragments.")
18702 (make-variable-buffer-local 'org-latex-fragment-image-overlays)
18704 (defun org-remove-latex-fragment-image-overlays ()
18705 "Remove all overlays with LaTeX fragment images in current buffer."
18706 (mapc 'delete-overlay org-latex-fragment-image-overlays)
18707 (setq org-latex-fragment-image-overlays nil))
18709 (define-obsolete-function-alias
18710 'org-preview-latex-fragment 'org-toggle-latex-fragment "24.4")
18711 (defun org-toggle-latex-fragment (&optional subtree)
18712 "Preview the LaTeX fragment at point, or all locally or globally.
18713 If the cursor is in a LaTeX fragment, create the image and overlay
18714 it over the source code. If there is no fragment at point, display
18715 all fragments in the current text, from one headline to the next. With
18716 prefix SUBTREE, display all fragments in the current subtree. With a
18717 double prefix arg \\[universal-argument] \\[universal-argument], or when \
18718 the cursor is before the first headline,
18719 display all fragments in the buffer.
18720 The images can be removed again with \\[org-toggle-latex-fragment]."
18721 (interactive "P")
18722 (unless (buffer-file-name (buffer-base-buffer))
18723 (user-error "Can't preview LaTeX fragment in a non-file buffer"))
18724 (if org-latex-fragment-image-overlays
18725 (progn (org-remove-latex-fragment-image-overlays)
18726 (message "LaTeX fragments images removed"))
18727 (when (display-graphic-p)
18728 (org-remove-latex-fragment-image-overlays)
18729 (org-with-wide-buffer
18730 (let (beg end msg)
18731 (cond
18732 ((equal subtree '(16))
18733 (setq beg (point-min) end (point-max)
18734 msg "Creating images for buffer...%s"))
18735 ((equal subtree '(4))
18736 (org-back-to-heading)
18737 (setq beg (point) end (org-end-of-subtree t)
18738 msg "Creating images for subtree...%s"))
18739 ((let ((context (org-element-context)))
18740 (when (memq (org-element-type context)
18741 '(latex-environment latex-fragment))
18742 (setq beg (org-element-property :begin context)
18743 end (org-element-property :end context)
18744 msg "Creating image...%s"))))
18745 ((org-before-first-heading-p)
18746 (setq beg (point-min) end (point-max)
18747 msg "Creating images for buffer...%s"))
18749 (org-back-to-heading)
18750 (setq beg (point) end (progn (outline-next-heading) (point))
18751 msg "Creating images for entry...%s")))
18752 (message msg "")
18753 (narrow-to-region beg end)
18754 (goto-char beg)
18755 (org-format-latex
18756 (concat org-latex-preview-ltxpng-directory
18757 (file-name-sans-extension
18758 (file-name-nondirectory
18759 (buffer-file-name (buffer-base-buffer)))))
18760 default-directory 'overlays msg 'forbuffer
18761 org-latex-create-formula-image-program)
18762 (message msg "done. Use `C-c C-x C-l' to remove images."))))))
18764 (defun org-format-latex
18765 (prefix &optional dir overlays msg forbuffer processing-type)
18766 "Replace LaTeX fragments with links to an image, and produce images.
18767 Some of the options can be changed using the variable
18768 `org-format-latex-options'."
18769 (when (and overlays (fboundp 'clear-image-cache)) (clear-image-cache))
18770 (unless (eq processing-type 'verbatim)
18771 (let* ((math-regexp "\\$\\|\\\\[([]\\|^[ \t]*\\\\begin{[A-Za-z0-9*]+}")
18772 (cnt 0)
18773 checkdir-flag)
18774 (goto-char (point-min))
18775 (while (re-search-forward math-regexp nil t)
18776 (unless (and overlays
18777 (eq (get-char-property (point) 'org-overlay-type)
18778 'org-latex-overlay))
18779 (let* ((context (org-element-context))
18780 (type (org-element-type context)))
18781 (when (memq type '(latex-environment latex-fragment))
18782 (let ((block-type (eq type 'latex-environment))
18783 (value (org-element-property :value context))
18784 (beg (org-element-property :begin context))
18785 (end (save-excursion
18786 (goto-char (org-element-property :end context))
18787 (skip-chars-backward " \r\t\n")
18788 (point))))
18789 (case processing-type
18790 (mathjax
18791 ;; Prepare for MathJax processing.
18792 (if (eq (char-after beg) ?$)
18793 (save-excursion
18794 (delete-region beg end)
18795 (insert "\\(" (substring value 1 -1) "\\)"))
18796 (goto-char end)))
18797 ((dvipng imagemagick)
18798 ;; Process to an image.
18799 (incf cnt)
18800 (goto-char beg)
18801 (let* ((face (face-at-point))
18802 ;; Get the colors from the face at point.
18804 (let ((color (plist-get org-format-latex-options
18805 :foreground)))
18806 (if (and forbuffer (eq color 'auto))
18807 (face-attribute face :foreground nil 'default)
18808 color)))
18810 (let ((color (plist-get org-format-latex-options
18811 :background)))
18812 (if (and forbuffer (eq color 'auto))
18813 (face-attribute face :background nil 'default)
18814 color)))
18815 (hash (sha1 (prin1-to-string
18816 (list org-format-latex-header
18817 org-latex-default-packages-alist
18818 org-latex-packages-alist
18819 org-format-latex-options
18820 forbuffer value fg bg))))
18821 (absprefix (expand-file-name prefix dir))
18822 (linkfile (format "%s_%s.png" prefix hash))
18823 (movefile (format "%s_%s.png" absprefix hash))
18824 (sep (and block-type "\n\n"))
18825 (link (concat sep "[[file:" linkfile "]]" sep))
18826 (options
18827 (org-combine-plists
18828 org-format-latex-options
18829 `(:foreground ,fg :background ,bg))))
18830 (when msg (message msg cnt))
18831 (unless checkdir-flag ; Ensure the directory exists.
18832 (setq checkdir-flag t)
18833 (let ((todir (file-name-directory absprefix)))
18834 (unless (file-directory-p todir)
18835 (make-directory todir t))))
18836 (unless (file-exists-p movefile)
18837 (org-create-formula-image
18838 value movefile options forbuffer processing-type))
18839 (if overlays
18840 (progn
18841 (dolist (o (overlays-in beg end))
18842 (when (eq (overlay-get o 'org-overlay-type)
18843 'org-latex-overlay)
18844 (delete-overlay o)))
18845 (let ((ov (make-overlay beg end)))
18846 (overlay-put ov
18847 'org-overlay-type
18848 'org-latex-overlay)
18849 (if (featurep 'xemacs)
18850 (progn
18851 (overlay-put ov 'invisible t)
18852 (overlay-put
18853 ov 'end-glyph
18854 (make-glyph
18855 (vector 'png :file movefile))))
18856 (overlay-put
18857 ov 'display
18858 (list 'image
18859 :type 'png
18860 :file movefile
18861 :ascent 'center)))
18862 (push ov org-latex-fragment-image-overlays))
18863 (goto-char end))
18864 (delete-region beg end)
18865 (insert
18866 (org-add-props link
18867 (list 'org-latex-src
18868 (replace-regexp-in-string "\"" "" value)
18869 'org-latex-src-embed-type
18870 (if block-type 'paragraph 'character)))))))
18871 (mathml
18872 ;; Process to MathML.
18873 (unless (org-format-latex-mathml-available-p)
18874 (user-error "LaTeX to MathML converter not configured"))
18875 (incf cnt)
18876 (when msg (message msg cnt))
18877 (goto-char beg)
18878 (delete-region beg end)
18879 (insert (org-format-latex-as-mathml
18880 value block-type prefix dir)))
18881 (otherwise
18882 (error "Unknown conversion type %s for LaTeX fragments"
18883 processing-type)))))))))))
18885 (defun org-create-math-formula (latex-frag &optional mathml-file)
18886 "Convert LATEX-FRAG to MathML and store it in MATHML-FILE.
18887 Use `org-latex-to-mathml-convert-command'. If the conversion is
18888 sucessful, return the portion between \"<math...> </math>\"
18889 elements otherwise return nil. When MATHML-FILE is specified,
18890 write the results in to that file. When invoked as an
18891 interactive command, prompt for LATEX-FRAG, with initial value
18892 set to the current active region and echo the results for user
18893 inspection."
18894 (interactive (list (let ((frag (when (org-region-active-p)
18895 (buffer-substring-no-properties
18896 (region-beginning) (region-end)))))
18897 (read-string "LaTeX Fragment: " frag nil frag))))
18898 (unless latex-frag (user-error "Invalid LaTeX fragment"))
18899 (let* ((tmp-in-file (file-relative-name
18900 (make-temp-name (expand-file-name "ltxmathml-in"))))
18901 (ignore (write-region latex-frag nil tmp-in-file))
18902 (tmp-out-file (file-relative-name
18903 (make-temp-name (expand-file-name "ltxmathml-out"))))
18904 (cmd (format-spec
18905 org-latex-to-mathml-convert-command
18906 `((?j . ,(shell-quote-argument
18907 (expand-file-name org-latex-to-mathml-jar-file)))
18908 (?I . ,(shell-quote-argument tmp-in-file))
18909 (?o . ,(shell-quote-argument tmp-out-file)))))
18910 mathml shell-command-output)
18911 (when (org-called-interactively-p 'any)
18912 (unless (org-format-latex-mathml-available-p)
18913 (user-error "LaTeX to MathML converter not configured")))
18914 (message "Running %s" cmd)
18915 (setq shell-command-output (shell-command-to-string cmd))
18916 (setq mathml
18917 (when (file-readable-p tmp-out-file)
18918 (with-current-buffer (find-file-noselect tmp-out-file t)
18919 (goto-char (point-min))
18920 (when (re-search-forward
18921 (concat
18922 (regexp-quote
18923 "<math xmlns=\"http://www.w3.org/1998/Math/MathML\">")
18924 "\\(.\\|\n\\)*"
18925 (regexp-quote "</math>")) nil t)
18926 (prog1 (match-string 0) (kill-buffer))))))
18927 (cond
18928 (mathml
18929 (setq mathml
18930 (concat "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" mathml))
18931 (when mathml-file
18932 (write-region mathml nil mathml-file))
18933 (when (org-called-interactively-p 'any)
18934 (message mathml)))
18935 ((message "LaTeX to MathML conversion failed")
18936 (message shell-command-output)))
18937 (delete-file tmp-in-file)
18938 (when (file-exists-p tmp-out-file)
18939 (delete-file tmp-out-file))
18940 mathml))
18942 (defun org-format-latex-as-mathml (latex-frag latex-frag-type
18943 prefix &optional dir)
18944 "Use `org-create-math-formula' but check local cache first."
18945 (let* ((absprefix (expand-file-name prefix dir))
18946 (print-length nil) (print-level nil)
18947 (formula-id (concat
18948 "formula-"
18949 (sha1
18950 (prin1-to-string
18951 (list latex-frag
18952 org-latex-to-mathml-convert-command)))))
18953 (formula-cache (format "%s-%s.mathml" absprefix formula-id))
18954 (formula-cache-dir (file-name-directory formula-cache)))
18956 (unless (file-directory-p formula-cache-dir)
18957 (make-directory formula-cache-dir t))
18959 (unless (file-exists-p formula-cache)
18960 (org-create-math-formula latex-frag formula-cache))
18962 (if (file-exists-p formula-cache)
18963 ;; Successful conversion. Return the link to MathML file.
18964 (org-add-props
18965 (format "[[file:%s]]" (file-relative-name formula-cache dir))
18966 (list 'org-latex-src (replace-regexp-in-string "\"" "" latex-frag)
18967 'org-latex-src-embed-type (if latex-frag-type
18968 'paragraph 'character)))
18969 ;; Failed conversion. Return the LaTeX fragment verbatim
18970 latex-frag)))
18972 (defun org-create-formula-image (string tofile options buffer &optional type)
18973 "Create an image from LaTeX source using dvipng or convert.
18974 This function calls either `org-create-formula-image-with-dvipng'
18975 or `org-create-formula-image-with-imagemagick' depending on the
18976 value of `org-latex-create-formula-image-program' or on the value
18977 of the optional TYPE variable.
18979 Note: ultimately these two function should be combined as they
18980 share a good deal of logic."
18981 (org-check-external-command
18982 "latex" "needed to convert LaTeX fragments to images")
18983 (funcall
18984 (case (or type org-latex-create-formula-image-program)
18985 ('dvipng
18986 (org-check-external-command
18987 "dvipng" "needed to convert LaTeX fragments to images")
18988 'org-create-formula-image-with-dvipng)
18989 ('imagemagick
18990 (org-check-external-command
18991 "convert" "you need to install imagemagick")
18992 'org-create-formula-image-with-imagemagick)
18993 (t (error
18994 "Invalid value of `org-latex-create-formula-image-program'")))
18995 string tofile options buffer))
18997 (declare-function org-export-get-backend "ox" (name))
18998 (declare-function org-export--get-global-options "ox" (&optional backend))
18999 (declare-function org-export--get-inbuffer-options "ox" (&optional backend))
19000 (declare-function org-latex-guess-inputenc "ox-latex" (header))
19001 (declare-function org-latex-guess-babel-language "ox-latex" (header info))
19002 (defun org-create-formula--latex-header ()
19003 "Return LaTeX header appropriate for previewing a LaTeX snippet."
19004 (let ((info (org-combine-plists (org-export--get-global-options
19005 (org-export-get-backend 'latex))
19006 (org-export--get-inbuffer-options
19007 (org-export-get-backend 'latex)))))
19008 (org-latex-guess-babel-language
19009 (org-latex-guess-inputenc
19010 (org-splice-latex-header
19011 org-format-latex-header
19012 org-latex-default-packages-alist
19013 org-latex-packages-alist t
19014 (plist-get info :latex-header)))
19015 info)))
19017 (defun org--get-display-dpi ()
19018 "Get the DPI of the display.
19020 Assumes that the display has the same pixel width in the
19021 horizontal and vertical directions."
19022 (if (display-graphic-p)
19023 (round (/ (display-pixel-height)
19024 (/ (display-mm-height) 25.4)))
19025 (error "Attempt to calculate the dpi of a non-graphic display")))
19027 ;; This function borrows from Ganesh Swami's latex2png.el
19028 (defun org-create-formula-image-with-dvipng (string tofile options buffer)
19029 "This calls dvipng."
19030 (require 'ox-latex)
19031 (let* ((tmpdir (if (featurep 'xemacs)
19032 (temp-directory)
19033 temporary-file-directory))
19034 (texfilebase (make-temp-name
19035 (expand-file-name "orgtex" tmpdir)))
19036 (texfile (concat texfilebase ".tex"))
19037 (dvifile (concat texfilebase ".dvi"))
19038 (pngfile (concat texfilebase ".png"))
19039 (scale (or (plist-get options (if buffer :scale :html-scale)) 1.0))
19040 ;; This assumes that the display has the same pixel width in
19041 ;; the horizontal and vertical directions
19042 (dpi (number-to-string (* scale (if buffer (org--get-display-dpi) 120))))
19043 (fg (or (plist-get options (if buffer :foreground :html-foreground))
19044 "Black"))
19045 (bg (or (plist-get options (if buffer :background :html-background))
19046 "Transparent")))
19047 (if (eq fg 'default) (setq fg (org-dvipng-color :foreground))
19048 (unless (string= fg "Transparent") (setq fg (org-dvipng-color-format fg))))
19049 (if (eq bg 'default) (setq bg (org-dvipng-color :background))
19050 (unless (string= bg "Transparent") (setq bg (org-dvipng-color-format bg))))
19051 (let ((latex-header (org-create-formula--latex-header)))
19052 (with-temp-file texfile
19053 (insert latex-header)
19054 (insert "\n\\begin{document}\n" string "\n\\end{document}\n")))
19055 (let ((dir default-directory))
19056 (ignore-errors
19057 (cd tmpdir)
19058 (call-process "latex" nil nil nil texfile))
19059 (cd dir))
19060 (if (not (file-exists-p dvifile))
19061 (progn (message "Failed to create dvi file from %s" texfile) nil)
19062 (ignore-errors
19063 (if (featurep 'xemacs)
19064 (call-process "dvipng" nil nil nil
19065 "-fg" fg "-bg" bg
19066 "-T" "tight"
19067 "-o" pngfile
19068 dvifile)
19069 (call-process "dvipng" nil nil nil
19070 "-fg" fg "-bg" bg
19071 "-D" dpi
19072 ;;"-x" scale "-y" scale
19073 "-T" "tight"
19074 "-o" pngfile
19075 dvifile)))
19076 (if (not (file-exists-p pngfile))
19077 (if org-format-latex-signal-error
19078 (error "Failed to create png file from %s" texfile)
19079 (message "Failed to create png file from %s" texfile)
19080 nil)
19081 ;; Use the requested file name and clean up
19082 (copy-file pngfile tofile 'replace)
19083 (loop for e in '(".dvi" ".tex" ".aux" ".log" ".png" ".out") do
19084 (if (file-exists-p (concat texfilebase e))
19085 (delete-file (concat texfilebase e))))
19086 pngfile))))
19088 (declare-function org-latex-compile "ox-latex" (texfile &optional snippet))
19089 (defun org-create-formula-image-with-imagemagick (string tofile options buffer)
19090 "This calls convert, which is included into imagemagick."
19091 (require 'ox-latex)
19092 (let* ((tmpdir (if (featurep 'xemacs)
19093 (temp-directory)
19094 temporary-file-directory))
19095 (texfilebase (make-temp-name
19096 (expand-file-name "orgtex" tmpdir)))
19097 (texfile (concat texfilebase ".tex"))
19098 (pdffile (concat texfilebase ".pdf"))
19099 (pngfile (concat texfilebase ".png"))
19100 (scale (or (plist-get options (if buffer :scale :html-scale)) 1.0))
19101 (dpi (number-to-string (* scale (if buffer (org--get-display-dpi) 120))))
19102 (fg (or (plist-get options (if buffer :foreground :html-foreground))
19103 "black"))
19104 (bg (or (plist-get options (if buffer :background :html-background))
19105 "white")))
19106 (if (eq fg 'default) (setq fg (org-latex-color :foreground))
19107 (setq fg (org-latex-color-format fg)))
19108 (if (eq bg 'default) (setq bg (org-latex-color :background))
19109 (setq bg (org-latex-color-format
19110 (if (string= bg "Transparent") "white" bg))))
19111 (let ((latex-header (org-create-formula--latex-header)))
19112 (with-temp-file texfile
19113 (insert latex-header)
19114 (insert "\n\\begin{document}\n"
19115 "\\definecolor{fg}{rgb}{" fg "}\n"
19116 "\\definecolor{bg}{rgb}{" bg "}\n"
19117 "\n\\pagecolor{bg}\n"
19118 "\n{\\color{fg}\n"
19119 string
19120 "\n}\n"
19121 "\n\\end{document}\n")))
19122 (org-latex-compile texfile t)
19123 (if (not (file-exists-p pdffile))
19124 (progn (message "Failed to create pdf file from %s" texfile) nil)
19125 (ignore-errors
19126 (if (featurep 'xemacs)
19127 (call-process "convert" nil nil nil
19128 "-density" "96"
19129 "-trim"
19130 "-antialias"
19131 pdffile
19132 "-quality" "100"
19133 ;; "-sharpen" "0x1.0"
19134 pngfile)
19135 (call-process "convert" nil nil nil
19136 "-density" dpi
19137 "-trim"
19138 "-antialias"
19139 pdffile
19140 "-quality" "100"
19141 ;; "-sharpen" "0x1.0"
19142 pngfile)))
19143 (if (not (file-exists-p pngfile))
19144 (if org-format-latex-signal-error
19145 (error "Failed to create png file from %s" texfile)
19146 (message "Failed to create png file from %s" texfile)
19147 nil)
19148 ;; Use the requested file name and clean up
19149 (copy-file pngfile tofile 'replace)
19150 (loop for e in '(".pdf" ".tex" ".aux" ".log" ".png") do
19151 (if (file-exists-p (concat texfilebase e))
19152 (delete-file (concat texfilebase e))))
19153 pngfile))))
19155 (defun org-splice-latex-header (tpl def-pkg pkg snippets-p &optional extra)
19156 "Fill a LaTeX header template TPL.
19157 In the template, the following place holders will be recognized:
19159 [DEFAULT-PACKAGES] \\usepackage statements for DEF-PKG
19160 [NO-DEFAULT-PACKAGES] do not include DEF-PKG
19161 [PACKAGES] \\usepackage statements for PKG
19162 [NO-PACKAGES] do not include PKG
19163 [EXTRA] the string EXTRA
19164 [NO-EXTRA] do not include EXTRA
19166 For backward compatibility, if both the positive and the negative place
19167 holder is missing, the positive one (without the \"NO-\") will be
19168 assumed to be present at the end of the template.
19169 DEF-PKG and PKG are assumed to be alists of options/packagename lists.
19170 EXTRA is a string.
19171 SNIPPETS-P indicates if this is run to create snippet images for HTML."
19172 (let (rpl (end ""))
19173 (if (string-match "^[ \t]*\\[\\(NO-\\)?DEFAULT-PACKAGES\\][ \t]*\n?" tpl)
19174 (setq rpl (if (or (match-end 1) (not def-pkg))
19175 "" (org-latex-packages-to-string def-pkg snippets-p t))
19176 tpl (replace-match rpl t t tpl))
19177 (if def-pkg (setq end (org-latex-packages-to-string def-pkg snippets-p))))
19179 (if (string-match "\\[\\(NO-\\)?PACKAGES\\][ \t]*\n?" tpl)
19180 (setq rpl (if (or (match-end 1) (not pkg))
19181 "" (org-latex-packages-to-string pkg snippets-p t))
19182 tpl (replace-match rpl t t tpl))
19183 (if pkg (setq end
19184 (concat end "\n"
19185 (org-latex-packages-to-string pkg snippets-p)))))
19187 (if (string-match "\\[\\(NO-\\)?EXTRA\\][ \t]*\n?" tpl)
19188 (setq rpl (if (or (match-end 1) (not extra))
19189 "" (concat extra "\n"))
19190 tpl (replace-match rpl t t tpl))
19191 (if (and extra (string-match "\\S-" extra))
19192 (setq end (concat end "\n" extra))))
19194 (if (string-match "\\S-" end)
19195 (concat tpl "\n" end)
19196 tpl)))
19198 (defun org-latex-packages-to-string (pkg &optional snippets-p newline)
19199 "Turn an alist of packages into a string with the \\usepackage macros."
19200 (setq pkg (mapconcat (lambda(p)
19201 (cond
19202 ((stringp p) p)
19203 ((and snippets-p (>= (length p) 3) (not (nth 2 p)))
19204 (format "%% Package %s omitted" (cadr p)))
19205 ((equal "" (car p))
19206 (format "\\usepackage{%s}" (cadr p)))
19208 (format "\\usepackage[%s]{%s}"
19209 (car p) (cadr p)))))
19211 "\n"))
19212 (if newline (concat pkg "\n") pkg))
19214 (defun org-dvipng-color (attr)
19215 "Return a RGB color specification for dvipng."
19216 (apply 'format "rgb %s %s %s"
19217 (mapcar 'org-normalize-color
19218 (if (featurep 'xemacs)
19219 (color-rgb-components
19220 (face-property 'default
19221 (cond ((eq attr :foreground) 'foreground)
19222 ((eq attr :background) 'background))))
19223 (color-values (face-attribute 'default attr nil))))))
19225 (defun org-dvipng-color-format (color-name)
19226 "Convert COLOR-NAME to a RGB color value for dvipng."
19227 (apply 'format "rgb %s %s %s"
19228 (mapcar 'org-normalize-color
19229 (color-values color-name))))
19231 (defun org-latex-color (attr)
19232 "Return a RGB color for the LaTeX color package."
19233 (apply 'format "%s,%s,%s"
19234 (mapcar 'org-normalize-color
19235 (if (featurep 'xemacs)
19236 (color-rgb-components
19237 (face-property 'default
19238 (cond ((eq attr :foreground) 'foreground)
19239 ((eq attr :background) 'background))))
19240 (color-values (face-attribute 'default attr nil))))))
19242 (defun org-latex-color-format (color-name)
19243 "Convert COLOR-NAME to a RGB color value."
19244 (apply 'format "%s,%s,%s"
19245 (mapcar 'org-normalize-color
19246 (color-values color-name))))
19248 (defun org-normalize-color (value)
19249 "Return string to be used as color value for an RGB component."
19250 (format "%g" (/ value 65535.0)))
19254 ;; Image display
19256 (defvar org-inline-image-overlays nil)
19257 (make-variable-buffer-local 'org-inline-image-overlays)
19259 (defun org-toggle-inline-images (&optional include-linked)
19260 "Toggle the display of inline images.
19261 INCLUDE-LINKED is passed to `org-display-inline-images'."
19262 (interactive "P")
19263 (if org-inline-image-overlays
19264 (progn
19265 (org-remove-inline-images)
19266 (when (org-called-interactively-p 'interactive)
19267 (message "Inline image display turned off")))
19268 (org-display-inline-images include-linked)
19269 (when (org-called-interactively-p 'interactive)
19270 (message (if org-inline-image-overlays
19271 (format "%d images displayed inline"
19272 (length org-inline-image-overlays))
19273 "No images to display inline")))))
19275 (defun org-redisplay-inline-images ()
19276 "Refresh the display of inline images."
19277 (interactive)
19278 (if (not org-inline-image-overlays)
19279 (org-toggle-inline-images)
19280 (org-toggle-inline-images)
19281 (org-toggle-inline-images)))
19283 (defun org-display-inline-images (&optional include-linked refresh beg end)
19284 "Display inline images.
19286 An inline image is a link which follows either of these
19287 conventions:
19289 1. Its path is a file with an extension matching return value
19290 from `image-file-name-regexp' and it has no contents.
19292 2. Its description consists in a single link of the previous
19293 type.
19295 When optional argument INCLUDE-LINKED is non-nil, also links with
19296 a text description part will be inlined. This can be nice for
19297 a quick look at those images, but it does not reflect what
19298 exported files will look like.
19300 When optional argument REFRESH is non-nil, refresh existing
19301 images between BEG and END. This will create new image displays
19302 only if necessary. BEG and END default to the buffer
19303 boundaries."
19304 (interactive "P")
19305 (when (display-graphic-p)
19306 (unless refresh
19307 (org-remove-inline-images)
19308 (when (fboundp 'clear-image-cache) (clear-image-cache)))
19309 (org-with-wide-buffer
19310 (goto-char (or beg (point-min)))
19311 (let ((case-fold-search t)
19312 (file-extension-re (org-image-file-name-regexp)))
19313 (while (re-search-forward "[][]\\[\\(?:file\\|[./~]\\)" end t)
19314 (let ((link (save-match-data (org-element-context))))
19315 ;; Check if we're at an inline image.
19316 (when (and (equal (org-element-property :type link) "file")
19317 (or include-linked
19318 (not (org-element-property :contents-begin link)))
19319 (let ((parent (org-element-property :parent link)))
19320 (or (not (eq (org-element-type parent) 'link))
19321 (not (cdr (org-element-contents parent)))))
19322 (org-string-match-p file-extension-re
19323 (org-element-property :path link)))
19324 (let ((file (expand-file-name (org-element-property :path link))))
19325 (when (file-exists-p file)
19326 (let ((width
19327 ;; Apply `org-image-actual-width' specifications.
19328 (cond
19329 ((not (image-type-available-p 'imagemagick)) nil)
19330 ((eq org-image-actual-width t) nil)
19331 ((listp org-image-actual-width)
19333 ;; First try to find a width among
19334 ;; attributes associated to the paragraph
19335 ;; containing link.
19336 (let ((paragraph
19337 (let ((e link))
19338 (while (and (setq e (org-element-property
19339 :parent e))
19340 (not (eq (org-element-type e)
19341 'paragraph))))
19342 e)))
19343 (when paragraph
19344 (save-excursion
19345 (goto-char (org-element-property :begin paragraph))
19346 (when
19347 (re-search-forward
19348 "^[ \t]*#\\+attr_.*?: +.*?:width +\\(\\S-+\\)"
19349 (org-element-property
19350 :post-affiliated paragraph)
19352 (string-to-number (match-string 1))))))
19353 ;; Otherwise, fall-back to provided number.
19354 (car org-image-actual-width)))
19355 ((numberp org-image-actual-width)
19356 org-image-actual-width)))
19357 (old (get-char-property-and-overlay
19358 (org-element-property :begin link)
19359 'org-image-overlay)))
19360 (if (and (car-safe old) refresh)
19361 (image-refresh (overlay-get (cdr old) 'display))
19362 (let ((image (create-image file
19363 (and width 'imagemagick)
19365 :width width)))
19366 (when image
19367 (let* ((link
19368 ;; If inline image is the description
19369 ;; of another link, be sure to
19370 ;; consider the latter as the one to
19371 ;; apply the overlay on.
19372 (let ((parent
19373 (org-element-property :parent link)))
19374 (if (eq (org-element-type parent) 'link)
19375 parent
19376 link)))
19377 (ov (make-overlay
19378 (org-element-property :begin link)
19379 (progn
19380 (goto-char
19381 (org-element-property :end link))
19382 (skip-chars-backward " \t")
19383 (point)))))
19384 (overlay-put ov 'display image)
19385 (overlay-put ov 'face 'default)
19386 (overlay-put ov 'org-image-overlay t)
19387 (overlay-put
19388 ov 'modification-hooks
19389 (list 'org-display-inline-remove-overlay))
19390 (push ov org-inline-image-overlays)))))))))))))))
19392 (define-obsolete-function-alias
19393 'org-display-inline-modification-hook 'org-display-inline-remove-overlay "24.3")
19395 (defun org-display-inline-remove-overlay (ov after beg end &optional len)
19396 "Remove inline-display overlay if a corresponding region is modified."
19397 (let ((inhibit-modification-hooks t))
19398 (when (and ov after)
19399 (delete ov org-inline-image-overlays)
19400 (delete-overlay ov))))
19402 (defun org-remove-inline-images ()
19403 "Remove inline display of images."
19404 (interactive)
19405 (mapc 'delete-overlay org-inline-image-overlays)
19406 (setq org-inline-image-overlays nil))
19408 ;;;; Key bindings
19410 ;; Outline functions from `outline-mode-prefix-map'
19411 ;; that can be remapped in Org:
19412 (define-key org-mode-map [remap outline-mark-subtree] 'org-mark-subtree)
19413 (define-key org-mode-map [remap show-subtree] 'org-show-subtree)
19414 (define-key org-mode-map [remap outline-forward-same-level]
19415 'org-forward-heading-same-level)
19416 (define-key org-mode-map [remap outline-backward-same-level]
19417 'org-backward-heading-same-level)
19418 (define-key org-mode-map [remap show-branches]
19419 'org-kill-note-or-show-branches)
19420 (define-key org-mode-map [remap outline-promote] 'org-promote-subtree)
19421 (define-key org-mode-map [remap outline-demote] 'org-demote-subtree)
19422 (define-key org-mode-map [remap outline-insert-heading] 'org-ctrl-c-ret)
19423 (define-key org-mode-map [remap outline-next-visible-heading]
19424 'org-next-visible-heading)
19425 (define-key org-mode-map [remap outline-previous-visible-heading]
19426 'org-previous-visible-heading)
19428 ;; Outline functions from `outline-mode-prefix-map' that can not
19429 ;; be remapped in Org:
19431 ;; - the column "key binding" shows whether the Outline function is still
19432 ;; available in Org mode on the same key that it has been bound to in
19433 ;; Outline mode:
19434 ;; - "overridden": key used for a different functionality in Org mode
19435 ;; - else: key still bound to the same Outline function in Org mode
19437 ;; | Outline function | key binding | Org replacement |
19438 ;; |------------------------------------+-------------+--------------------------|
19439 ;; | `outline-next-visible-heading' | `C-c C-n' | better: skip inlinetasks |
19440 ;; | `outline-previous-visible-heading' | `C-c C-p' | better: skip inlinetasks |
19441 ;; | `outline-up-heading' | `C-c C-u' | still same function |
19442 ;; | `outline-move-subtree-up' | overridden | better: org-shiftup |
19443 ;; | `outline-move-subtree-down' | overridden | better: org-shiftdown |
19444 ;; | `show-entry' | overridden | no replacement |
19445 ;; | `show-children' | `C-c C-i' | visibility cycling |
19446 ;; | `show-branches' | `C-c C-k' | still same function |
19447 ;; | `show-subtree' | overridden | visibility cycling |
19448 ;; | `show-all' | overridden | no replacement |
19449 ;; | `hide-subtree' | overridden | visibility cycling |
19450 ;; | `hide-body' | overridden | no replacement |
19451 ;; | `hide-entry' | overridden | visibility cycling |
19452 ;; | `hide-leaves' | overridden | no replacement |
19453 ;; | `hide-sublevels' | overridden | no replacement |
19454 ;; | `hide-other' | overridden | no replacement |
19456 ;; Make `C-c C-x' a prefix key
19457 (org-defkey org-mode-map "\C-c\C-x" (make-sparse-keymap))
19459 ;; TAB key with modifiers
19460 (org-defkey org-mode-map "\C-i" 'org-cycle)
19461 (org-defkey org-mode-map [(tab)] 'org-cycle)
19462 (org-defkey org-mode-map [(control tab)] 'org-force-cycle-archived)
19463 (org-defkey org-mode-map "\M-\t" 'pcomplete)
19464 ;; The following line is necessary under Suse GNU/Linux
19465 (unless (featurep 'xemacs)
19466 (org-defkey org-mode-map [S-iso-lefttab] 'org-shifttab))
19467 (org-defkey org-mode-map [(shift tab)] 'org-shifttab)
19468 (define-key org-mode-map [backtab] 'org-shifttab)
19470 (org-defkey org-mode-map [(shift return)] 'org-table-copy-down)
19471 (org-defkey org-mode-map [(meta shift return)] 'org-insert-todo-heading)
19472 (org-defkey org-mode-map [(meta return)] 'org-meta-return)
19474 ;; Cursor keys with modifiers
19475 (org-defkey org-mode-map [(meta left)] 'org-metaleft)
19476 (org-defkey org-mode-map [(meta right)] 'org-metaright)
19477 (org-defkey org-mode-map [(meta up)] 'org-metaup)
19478 (org-defkey org-mode-map [(meta down)] 'org-metadown)
19480 (org-defkey org-mode-map [(control meta shift right)] 'org-increase-number-at-point)
19481 (org-defkey org-mode-map [(control meta shift left)] 'org-decrease-number-at-point)
19482 (org-defkey org-mode-map [(meta shift left)] 'org-shiftmetaleft)
19483 (org-defkey org-mode-map [(meta shift right)] 'org-shiftmetaright)
19484 (org-defkey org-mode-map [(meta shift up)] 'org-shiftmetaup)
19485 (org-defkey org-mode-map [(meta shift down)] 'org-shiftmetadown)
19487 (org-defkey org-mode-map [(shift up)] 'org-shiftup)
19488 (org-defkey org-mode-map [(shift down)] 'org-shiftdown)
19489 (org-defkey org-mode-map [(shift left)] 'org-shiftleft)
19490 (org-defkey org-mode-map [(shift right)] 'org-shiftright)
19492 (org-defkey org-mode-map [(control shift right)] 'org-shiftcontrolright)
19493 (org-defkey org-mode-map [(control shift left)] 'org-shiftcontrolleft)
19494 (org-defkey org-mode-map [(control shift up)] 'org-shiftcontrolup)
19495 (org-defkey org-mode-map [(control shift down)] 'org-shiftcontroldown)
19497 ;; Babel keys
19498 (define-key org-mode-map org-babel-key-prefix org-babel-map)
19499 (mapc (lambda (pair)
19500 (define-key org-babel-map (car pair) (cdr pair)))
19501 org-babel-key-bindings)
19503 ;;; Extra keys for tty access.
19504 ;; We only set them when really needed because otherwise the
19505 ;; menus don't show the simple keys
19507 (when (or org-use-extra-keys
19508 (featurep 'xemacs) ;; because XEmacs supports multi-device stuff
19509 (not window-system))
19510 (org-defkey org-mode-map "\C-c\C-xc" 'org-table-copy-down)
19511 (org-defkey org-mode-map "\C-c\C-xM" 'org-insert-todo-heading)
19512 (org-defkey org-mode-map "\C-c\C-xm" 'org-meta-return)
19513 (org-defkey org-mode-map [?\e (return)] 'org-meta-return)
19514 (org-defkey org-mode-map [?\e (left)] 'org-metaleft)
19515 (org-defkey org-mode-map "\C-c\C-xl" 'org-metaleft)
19516 (org-defkey org-mode-map [?\e (right)] 'org-metaright)
19517 (org-defkey org-mode-map "\C-c\C-xr" 'org-metaright)
19518 (org-defkey org-mode-map [?\e (up)] 'org-metaup)
19519 (org-defkey org-mode-map "\C-c\C-xu" 'org-metaup)
19520 (org-defkey org-mode-map [?\e (down)] 'org-metadown)
19521 (org-defkey org-mode-map "\C-c\C-xd" 'org-metadown)
19522 (org-defkey org-mode-map "\C-c\C-xL" 'org-shiftmetaleft)
19523 (org-defkey org-mode-map "\C-c\C-xR" 'org-shiftmetaright)
19524 (org-defkey org-mode-map "\C-c\C-xU" 'org-shiftmetaup)
19525 (org-defkey org-mode-map "\C-c\C-xD" 'org-shiftmetadown)
19526 (org-defkey org-mode-map [?\C-c (up)] 'org-shiftup)
19527 (org-defkey org-mode-map [?\C-c (down)] 'org-shiftdown)
19528 (org-defkey org-mode-map [?\C-c (left)] 'org-shiftleft)
19529 (org-defkey org-mode-map [?\C-c (right)] 'org-shiftright)
19530 (org-defkey org-mode-map [?\C-c ?\C-x (right)] 'org-shiftcontrolright)
19531 (org-defkey org-mode-map [?\C-c ?\C-x (left)] 'org-shiftcontrolleft)
19532 (org-defkey org-mode-map [?\e (tab)] 'pcomplete)
19533 (org-defkey org-mode-map [?\e (shift return)] 'org-insert-todo-heading)
19534 (org-defkey org-mode-map [?\e (shift left)] 'org-shiftmetaleft)
19535 (org-defkey org-mode-map [?\e (shift right)] 'org-shiftmetaright)
19536 (org-defkey org-mode-map [?\e (shift up)] 'org-shiftmetaup)
19537 (org-defkey org-mode-map [?\e (shift down)] 'org-shiftmetadown))
19539 ;; All the other keys
19541 (org-defkey org-mode-map "\C-c\C-a" 'show-all) ; in case allout messed up.
19542 (org-defkey org-mode-map "\C-c\C-r" 'org-reveal)
19543 (if (boundp 'narrow-map)
19544 (org-defkey narrow-map "s" 'org-narrow-to-subtree)
19545 (org-defkey org-mode-map "\C-xns" 'org-narrow-to-subtree))
19546 (if (boundp 'narrow-map)
19547 (org-defkey narrow-map "b" 'org-narrow-to-block)
19548 (org-defkey org-mode-map "\C-xnb" 'org-narrow-to-block))
19549 (if (boundp 'narrow-map)
19550 (org-defkey narrow-map "e" 'org-narrow-to-element)
19551 (org-defkey org-mode-map "\C-xne" 'org-narrow-to-element))
19552 (org-defkey org-mode-map "\C-\M-t" 'org-transpose-element)
19553 (org-defkey org-mode-map "\M-}" 'org-forward-element)
19554 (org-defkey org-mode-map "\M-{" 'org-backward-element)
19555 (org-defkey org-mode-map "\C-c\C-^" 'org-up-element)
19556 (org-defkey org-mode-map "\C-c\C-_" 'org-down-element)
19557 (org-defkey org-mode-map "\C-c\C-f" 'org-forward-heading-same-level)
19558 (org-defkey org-mode-map "\C-c\C-b" 'org-backward-heading-same-level)
19559 (org-defkey org-mode-map "\C-c\M-f" 'org-next-block)
19560 (org-defkey org-mode-map "\C-c\M-b" 'org-previous-block)
19561 (org-defkey org-mode-map "\C-c$" 'org-archive-subtree)
19562 (org-defkey org-mode-map "\C-c\C-x\C-s" 'org-advertized-archive-subtree)
19563 (org-defkey org-mode-map "\C-c\C-x\C-a" 'org-archive-subtree-default)
19564 (org-defkey org-mode-map "\C-c\C-xd" 'org-insert-drawer)
19565 (org-defkey org-mode-map "\C-c\C-xa" 'org-toggle-archive-tag)
19566 (org-defkey org-mode-map "\C-c\C-xA" 'org-archive-to-archive-sibling)
19567 (org-defkey org-mode-map "\C-c\C-xb" 'org-tree-to-indirect-buffer)
19568 (org-defkey org-mode-map "\C-c\C-xq" 'org-toggle-tags-groups)
19569 (org-defkey org-mode-map "\C-c\C-j" 'org-goto)
19570 (org-defkey org-mode-map "\C-c\C-t" 'org-todo)
19571 (org-defkey org-mode-map "\C-c\C-q" 'org-set-tags-command)
19572 (org-defkey org-mode-map "\C-c\C-s" 'org-schedule)
19573 (org-defkey org-mode-map "\C-c\C-d" 'org-deadline)
19574 (org-defkey org-mode-map "\C-c;" 'org-toggle-comment)
19575 (org-defkey org-mode-map "\C-c\C-w" 'org-refile)
19576 (org-defkey org-mode-map "\C-c\M-w" 'org-copy)
19577 (org-defkey org-mode-map "\C-c/" 'org-sparse-tree) ; Minor-mode reserved
19578 (org-defkey org-mode-map "\C-c\\" 'org-match-sparse-tree) ; Minor-mode res.
19579 (org-defkey org-mode-map "\C-c\C-m" 'org-ctrl-c-ret)
19580 (org-defkey org-mode-map "\M-\C-m" 'org-insert-heading)
19581 (org-defkey org-mode-map "\C-c\C-xc" 'org-clone-subtree-with-time-shift)
19582 (org-defkey org-mode-map "\C-c\C-xv" 'org-copy-visible)
19583 (org-defkey org-mode-map [(control return)] 'org-insert-heading-respect-content)
19584 (org-defkey org-mode-map [(shift control return)] 'org-insert-todo-heading-respect-content)
19585 (org-defkey org-mode-map "\C-c\C-x\C-n" 'org-next-link)
19586 (org-defkey org-mode-map "\C-c\C-x\C-p" 'org-previous-link)
19587 (org-defkey org-mode-map "\C-c\C-l" 'org-insert-link)
19588 (org-defkey org-mode-map "\C-c\M-l" 'org-insert-last-stored-link)
19589 (org-defkey org-mode-map "\C-c\C-\M-l" 'org-insert-all-links)
19590 (org-defkey org-mode-map "\C-c\C-o" 'org-open-at-point)
19591 (org-defkey org-mode-map "\C-c%" 'org-mark-ring-push)
19592 (org-defkey org-mode-map "\C-c&" 'org-mark-ring-goto)
19593 (org-defkey org-mode-map "\C-c\C-z" 'org-add-note) ; Alternative binding
19594 (org-defkey org-mode-map "\C-c." 'org-time-stamp) ; Minor-mode reserved
19595 (org-defkey org-mode-map "\C-c!" 'org-time-stamp-inactive) ; Minor-mode r.
19596 (org-defkey org-mode-map "\C-c," 'org-priority) ; Minor-mode reserved
19597 (org-defkey org-mode-map "\C-c\C-y" 'org-evaluate-time-range)
19598 (org-defkey org-mode-map "\C-c>" 'org-goto-calendar)
19599 (org-defkey org-mode-map "\C-c<" 'org-date-from-calendar)
19600 (org-defkey org-mode-map [(control ?,)] 'org-cycle-agenda-files)
19601 (org-defkey org-mode-map [(control ?\')] 'org-cycle-agenda-files)
19602 (org-defkey org-mode-map "\C-c[" 'org-agenda-file-to-front)
19603 (org-defkey org-mode-map "\C-c]" 'org-remove-file)
19604 (org-defkey org-mode-map "\C-c\C-x<" 'org-agenda-set-restriction-lock)
19605 (org-defkey org-mode-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
19606 (org-defkey org-mode-map "\C-c-" 'org-ctrl-c-minus)
19607 (org-defkey org-mode-map "\C-c*" 'org-ctrl-c-star)
19608 (org-defkey org-mode-map "\C-c^" 'org-sort)
19609 (org-defkey org-mode-map "\C-c\C-c" 'org-ctrl-c-ctrl-c)
19610 (org-defkey org-mode-map "\C-c\C-k" 'org-kill-note-or-show-branches)
19611 (org-defkey org-mode-map "\C-c#" 'org-update-statistics-cookies)
19612 (org-defkey org-mode-map [remap open-line] 'org-open-line)
19613 (org-defkey org-mode-map [remap comment-dwim] 'org-comment-dwim)
19614 (org-defkey org-mode-map [remap forward-paragraph] 'org-forward-paragraph)
19615 (org-defkey org-mode-map [remap backward-paragraph] 'org-backward-paragraph)
19616 (org-defkey org-mode-map "\C-m" 'org-return)
19617 (org-defkey org-mode-map "\C-j" 'org-return-indent)
19618 (org-defkey org-mode-map "\C-c?" 'org-table-field-info)
19619 (org-defkey org-mode-map "\C-c " 'org-table-blank-field)
19620 (org-defkey org-mode-map "\C-c+" 'org-table-sum)
19621 (org-defkey org-mode-map "\C-c=" 'org-table-eval-formula)
19622 (org-defkey org-mode-map "\C-c'" 'org-edit-special)
19623 (org-defkey org-mode-map "\C-c`" 'org-table-edit-field)
19624 (org-defkey org-mode-map "\C-c\"a" 'orgtbl-ascii-plot)
19625 (org-defkey org-mode-map "\C-c\"g" 'org-plot/gnuplot)
19626 (org-defkey org-mode-map "\C-c|" 'org-table-create-or-convert-from-region)
19627 (org-defkey org-mode-map [(control ?#)] 'org-table-rotate-recalc-marks)
19628 (org-defkey org-mode-map "\C-c~" 'org-table-create-with-table.el)
19629 (org-defkey org-mode-map "\C-c\C-a" 'org-attach)
19630 (org-defkey org-mode-map "\C-c}" 'org-table-toggle-coordinate-overlays)
19631 (org-defkey org-mode-map "\C-c{" 'org-table-toggle-formula-debugger)
19632 (org-defkey org-mode-map "\C-c\C-e" 'org-export-dispatch)
19633 (org-defkey org-mode-map "\C-c:" 'org-toggle-fixed-width)
19634 (org-defkey org-mode-map "\C-c\C-x\C-f" 'org-emphasize)
19635 (org-defkey org-mode-map "\C-c\C-xf" 'org-footnote-action)
19636 (org-defkey org-mode-map "\C-c\C-x\C-mg" 'org-mobile-pull)
19637 (org-defkey org-mode-map "\C-c\C-x\C-mp" 'org-mobile-push)
19638 (org-defkey org-mode-map "\C-c@" 'org-mark-subtree)
19639 (org-defkey org-mode-map "\M-h" 'org-mark-element)
19640 (org-defkey org-mode-map [?\C-c (control ?*)] 'org-list-make-subtree)
19641 ;;(org-defkey org-mode-map [?\C-c (control ?-)] 'org-list-make-list-from-subtree)
19643 (org-defkey org-mode-map "\C-c\C-x\C-w" 'org-cut-special)
19644 (org-defkey org-mode-map "\C-c\C-x\M-w" 'org-copy-special)
19645 (org-defkey org-mode-map "\C-c\C-x\C-y" 'org-paste-special)
19647 (org-defkey org-mode-map "\C-c\C-x\C-t" 'org-toggle-time-stamp-overlays)
19648 (org-defkey org-mode-map "\C-c\C-x\C-i" 'org-clock-in)
19649 (org-defkey org-mode-map "\C-c\C-x\C-x" 'org-clock-in-last)
19650 (org-defkey org-mode-map "\C-c\C-x\C-z" 'org-resolve-clocks)
19651 (org-defkey org-mode-map "\C-c\C-x\C-o" 'org-clock-out)
19652 (org-defkey org-mode-map "\C-c\C-x\C-j" 'org-clock-goto)
19653 (org-defkey org-mode-map "\C-c\C-x\C-q" 'org-clock-cancel)
19654 (org-defkey org-mode-map "\C-c\C-x\C-d" 'org-clock-display)
19655 (org-defkey org-mode-map "\C-c\C-x\C-r" 'org-clock-report)
19656 (org-defkey org-mode-map "\C-c\C-x\C-u" 'org-dblock-update)
19657 (org-defkey org-mode-map "\C-c\C-x\C-l" 'org-toggle-latex-fragment)
19658 (org-defkey org-mode-map "\C-c\C-x\C-v" 'org-toggle-inline-images)
19659 (org-defkey org-mode-map "\C-c\C-x\C-\M-v" 'org-redisplay-inline-images)
19660 (org-defkey org-mode-map "\C-c\C-x\\" 'org-toggle-pretty-entities)
19661 (org-defkey org-mode-map "\C-c\C-x\C-b" 'org-toggle-checkbox)
19662 (org-defkey org-mode-map "\C-c\C-xp" 'org-set-property)
19663 (org-defkey org-mode-map "\C-c\C-xP" 'org-set-property-and-value)
19664 (org-defkey org-mode-map "\C-c\C-xe" 'org-set-effort)
19665 (org-defkey org-mode-map "\C-c\C-xE" 'org-inc-effort)
19666 (org-defkey org-mode-map "\C-c\C-xo" 'org-toggle-ordered-property)
19667 (org-defkey org-mode-map "\C-c\C-xi" 'org-insert-columns-dblock)
19668 (org-defkey org-mode-map [(control ?c) (control ?x) ?\;] 'org-timer-set-timer)
19669 (org-defkey org-mode-map [(control ?c) (control ?x) ?\:] 'org-timer-cancel-timer)
19671 (org-defkey org-mode-map "\C-c\C-x." 'org-timer)
19672 (org-defkey org-mode-map "\C-c\C-x-" 'org-timer-item)
19673 (org-defkey org-mode-map "\C-c\C-x0" 'org-timer-start)
19674 (org-defkey org-mode-map "\C-c\C-x_" 'org-timer-stop)
19675 (org-defkey org-mode-map "\C-c\C-x," 'org-timer-pause-or-continue)
19677 (define-key org-mode-map "\C-c\C-x\C-c" 'org-columns)
19679 (define-key org-mode-map "\C-c\C-x!" 'org-reload)
19681 (define-key org-mode-map "\C-c\C-xg" 'org-feed-update-all)
19682 (define-key org-mode-map "\C-c\C-xG" 'org-feed-goto-inbox)
19684 (define-key org-mode-map "\C-c\C-x[" 'org-reftex-citation)
19687 (when (featurep 'xemacs)
19688 (org-defkey org-mode-map 'button3 'popup-mode-menu))
19691 (defconst org-speed-commands-default
19693 ("Outline Navigation")
19694 ("n" . (org-speed-move-safe 'org-next-visible-heading))
19695 ("p" . (org-speed-move-safe 'org-previous-visible-heading))
19696 ("f" . (org-speed-move-safe 'org-forward-heading-same-level))
19697 ("b" . (org-speed-move-safe 'org-backward-heading-same-level))
19698 ("F" . org-next-block)
19699 ("B" . org-previous-block)
19700 ("u" . (org-speed-move-safe 'outline-up-heading))
19701 ("j" . org-goto)
19702 ("g" . (org-refile t))
19703 ("Outline Visibility")
19704 ("c" . org-cycle)
19705 ("C" . org-shifttab)
19706 (" " . org-display-outline-path)
19707 ("s" . org-narrow-to-subtree)
19708 ("=" . org-columns)
19709 ("Outline Structure Editing")
19710 ("U" . org-metaup)
19711 ("D" . org-metadown)
19712 ("r" . org-metaright)
19713 ("l" . org-metaleft)
19714 ("R" . org-shiftmetaright)
19715 ("L" . org-shiftmetaleft)
19716 ("i" . (progn (forward-char 1) (call-interactively
19717 'org-insert-heading-respect-content)))
19718 ("^" . org-sort)
19719 ("w" . org-refile)
19720 ("a" . org-archive-subtree-default-with-confirmation)
19721 ("@" . org-mark-subtree)
19722 ("#" . org-toggle-comment)
19723 ("Clock Commands")
19724 ("I" . org-clock-in)
19725 ("O" . org-clock-out)
19726 ("Meta Data Editing")
19727 ("t" . org-todo)
19728 ("," . (org-priority))
19729 ("0" . (org-priority ?\ ))
19730 ("1" . (org-priority ?A))
19731 ("2" . (org-priority ?B))
19732 ("3" . (org-priority ?C))
19733 (":" . org-set-tags-command)
19734 ("e" . org-set-effort)
19735 ("E" . org-inc-effort)
19736 ("W" . (lambda(m) (interactive "sMinutes before warning: ")
19737 (org-entry-put (point) "APPT_WARNTIME" m)))
19738 ("Agenda Views etc")
19739 ("v" . org-agenda)
19740 ("/" . org-sparse-tree)
19741 ("Misc")
19742 ("o" . org-open-at-point)
19743 ("?" . org-speed-command-help)
19744 ("<" . (org-agenda-set-restriction-lock 'subtree))
19745 (">" . (org-agenda-remove-restriction-lock))
19747 "The default speed commands.")
19749 (defun org-print-speed-command (e)
19750 (if (> (length (car e)) 1)
19751 (progn
19752 (princ "\n")
19753 (princ (car e))
19754 (princ "\n")
19755 (princ (make-string (length (car e)) ?-))
19756 (princ "\n"))
19757 (princ (car e))
19758 (princ " ")
19759 (if (symbolp (cdr e))
19760 (princ (symbol-name (cdr e)))
19761 (prin1 (cdr e)))
19762 (princ "\n")))
19764 (defun org-speed-command-help ()
19765 "Show the available speed commands."
19766 (interactive)
19767 (if (not org-use-speed-commands)
19768 (user-error "Speed commands are not activated, customize `org-use-speed-commands'")
19769 (with-output-to-temp-buffer "*Help*"
19770 (princ "User-defined Speed commands\n===========================\n")
19771 (mapc 'org-print-speed-command org-speed-commands-user)
19772 (princ "\n")
19773 (princ "Built-in Speed commands\n=======================\n")
19774 (mapc 'org-print-speed-command org-speed-commands-default))
19775 (with-current-buffer "*Help*"
19776 (setq truncate-lines t))))
19778 (defun org-speed-move-safe (cmd)
19779 "Execute CMD, but make sure that the cursor always ends up in a headline.
19780 If not, return to the original position and throw an error."
19781 (interactive)
19782 (let ((pos (point)))
19783 (call-interactively cmd)
19784 (unless (and (bolp) (org-at-heading-p))
19785 (goto-char pos)
19786 (error "Boundary reached while executing %s" cmd))))
19788 (defvar org-self-insert-command-undo-counter 0)
19790 (defvar org-table-auto-blank-field) ; defined in org-table.el
19791 (defvar org-speed-command nil)
19793 (define-obsolete-function-alias
19794 'org-speed-command-default-hook 'org-speed-command-activate "24.3")
19796 (defun org-speed-command-activate (keys)
19797 "Hook for activating single-letter speed commands.
19798 `org-speed-commands-default' specifies a minimal command set.
19799 Use `org-speed-commands-user' for further customization."
19800 (when (or (and (bolp) (looking-at org-outline-regexp))
19801 (and (functionp org-use-speed-commands)
19802 (funcall org-use-speed-commands)))
19803 (cdr (assoc keys (append org-speed-commands-user
19804 org-speed-commands-default)))))
19806 (define-obsolete-function-alias
19807 'org-babel-speed-command-hook 'org-babel-speed-command-activate "24.3")
19809 (defun org-babel-speed-command-activate (keys)
19810 "Hook for activating single-letter code block commands."
19811 (when (and (bolp) (looking-at org-babel-src-block-regexp))
19812 (cdr (assoc keys org-babel-key-bindings))))
19814 (defcustom org-speed-command-hook
19815 '(org-speed-command-default-hook org-babel-speed-command-hook)
19816 "Hook for activating speed commands at strategic locations.
19817 Hook functions are called in sequence until a valid handler is
19818 found.
19820 Each hook takes a single argument, a user-pressed command key
19821 which is also a `self-insert-command' from the global map.
19823 Within the hook, examine the cursor position and the command key
19824 and return nil or a valid handler as appropriate. Handler could
19825 be one of an interactive command, a function, or a form.
19827 Set `org-use-speed-commands' to non-nil value to enable this
19828 hook. The default setting is `org-speed-command-activate'."
19829 :group 'org-structure
19830 :version "24.1"
19831 :type 'hook)
19833 (defun org-self-insert-command (N)
19834 "Like `self-insert-command', use overwrite-mode for whitespace in tables.
19835 If the cursor is in a table looking at whitespace, the whitespace is
19836 overwritten, and the table is not marked as requiring realignment."
19837 (interactive "p")
19838 (org-check-before-invisible-edit 'insert)
19839 (cond
19840 ((and org-use-speed-commands
19841 (let ((kv (this-command-keys-vector)))
19842 (setq org-speed-command
19843 (run-hook-with-args-until-success
19844 'org-speed-command-hook
19845 (make-string 1 (aref kv (1- (length kv))))))))
19846 (cond
19847 ((commandp org-speed-command)
19848 (setq this-command org-speed-command)
19849 (call-interactively org-speed-command))
19850 ((functionp org-speed-command)
19851 (funcall org-speed-command))
19852 ((and org-speed-command (listp org-speed-command))
19853 (eval org-speed-command))
19854 (t (let (org-use-speed-commands)
19855 (call-interactively 'org-self-insert-command)))))
19856 ((and
19857 (org-table-p)
19858 (progn
19859 ;; check if we blank the field, and if that triggers align
19860 (and (featurep 'org-table) org-table-auto-blank-field
19861 (memq last-command
19862 '(org-cycle org-return org-shifttab org-ctrl-c-ctrl-c))
19863 (if (or (equal (char-after) ?\ ) (looking-at "[^|\n]* |"))
19864 ;; got extra space, this field does not determine column width
19865 (let (org-table-may-need-update) (org-table-blank-field))
19866 ;; no extra space, this field may determine column width
19867 (org-table-blank-field)))
19869 (eq N 1)
19870 (looking-at "[^|\n]* |"))
19871 (let (org-table-may-need-update)
19872 (goto-char (1- (match-end 0)))
19873 (backward-delete-char 1)
19874 (goto-char (match-beginning 0))
19875 (self-insert-command N)))
19877 (setq org-table-may-need-update t)
19878 (self-insert-command N)
19879 (org-fix-tags-on-the-fly)
19880 (if org-self-insert-cluster-for-undo
19881 (if (not (eq last-command 'org-self-insert-command))
19882 (setq org-self-insert-command-undo-counter 1)
19883 (if (>= org-self-insert-command-undo-counter 20)
19884 (setq org-self-insert-command-undo-counter 1)
19885 (and (> org-self-insert-command-undo-counter 0)
19886 buffer-undo-list (listp buffer-undo-list)
19887 (not (cadr buffer-undo-list)) ; remove nil entry
19888 (setcdr buffer-undo-list (cddr buffer-undo-list)))
19889 (setq org-self-insert-command-undo-counter
19890 (1+ org-self-insert-command-undo-counter))))))))
19892 (defun org-check-before-invisible-edit (kind)
19893 "Check is editing if kind KIND would be dangerous with invisible text around.
19894 The detailed reaction depends on the user option `org-catch-invisible-edits'."
19895 ;; First, try to get out of here as quickly as possible, to reduce overhead
19896 (if (and org-catch-invisible-edits
19897 (or (not (boundp 'visible-mode)) (not visible-mode))
19898 (or (get-char-property (point) 'invisible)
19899 (get-char-property (max (point-min) (1- (point))) 'invisible)))
19900 ;; OK, we need to take a closer look
19901 (let* ((invisible-at-point (get-char-property (point) 'invisible))
19902 (invisible-before-point (if (bobp) nil (get-char-property
19903 (1- (point)) 'invisible)))
19904 (border-and-ok-direction
19906 ;; Check if we are acting predictably before invisible text
19907 (and invisible-at-point (not invisible-before-point)
19908 (memq kind '(insert delete-backward)))
19909 ;; Check if we are acting predictably after invisible text
19910 ;; This works not well, and I have turned it off. It seems
19911 ;; better to always show and stop after invisible text.
19912 ;; (and (not invisible-at-point) invisible-before-point
19913 ;; (memq kind '(insert delete)))
19915 (when (or (memq invisible-at-point '(outline org-hide-block t))
19916 (memq invisible-before-point '(outline org-hide-block t)))
19917 (if (eq org-catch-invisible-edits 'error)
19918 (user-error "Editing in invisible areas is prohibited, make them visible first"))
19919 (if (and org-custom-properties-overlays
19920 (y-or-n-p "Display invisible properties in this buffer? "))
19921 (org-toggle-custom-properties-visibility)
19922 ;; Make the area visible
19923 (save-excursion
19924 (if invisible-before-point
19925 (goto-char (previous-single-char-property-change
19926 (point) 'invisible)))
19927 (show-subtree))
19928 (cond
19929 ((eq org-catch-invisible-edits 'show)
19930 ;; That's it, we do the edit after showing
19931 (message
19932 "Unfolding invisible region around point before editing")
19933 (sit-for 1))
19934 ((and (eq org-catch-invisible-edits 'smart)
19935 border-and-ok-direction)
19936 (message "Unfolding invisible region around point before editing"))
19938 ;; Don't do the edit, make the user repeat it in full visibility
19939 (user-error "Edit in invisible region aborted, repeat to confirm with text visible"))))))))
19941 (defun org-fix-tags-on-the-fly ()
19942 (when (and (equal (char-after (point-at-bol)) ?*)
19943 (org-at-heading-p))
19944 (org-align-tags-here org-tags-column)))
19946 (defun org-delete-backward-char (N)
19947 "Like `delete-backward-char', insert whitespace at field end in tables.
19948 When deleting backwards, in tables this function will insert whitespace in
19949 front of the next \"|\" separator, to keep the table aligned. The table will
19950 still be marked for re-alignment if the field did fill the entire column,
19951 because, in this case the deletion might narrow the column."
19952 (interactive "p")
19953 (save-match-data
19954 (org-check-before-invisible-edit 'delete-backward)
19955 (if (and (org-table-p)
19956 (eq N 1)
19957 (string-match "|" (buffer-substring (point-at-bol) (point)))
19958 (looking-at ".*?|"))
19959 (let ((pos (point))
19960 (noalign (looking-at "[^|\n\r]* |"))
19961 (c org-table-may-need-update))
19962 (backward-delete-char N)
19963 (if (not overwrite-mode)
19964 (progn
19965 (skip-chars-forward "^|")
19966 (insert " ")
19967 (goto-char (1- pos))))
19968 ;; noalign: if there were two spaces at the end, this field
19969 ;; does not determine the width of the column.
19970 (if noalign (setq org-table-may-need-update c)))
19971 (backward-delete-char N)
19972 (org-fix-tags-on-the-fly))))
19974 (defun org-delete-char (N)
19975 "Like `delete-char', but insert whitespace at field end in tables.
19976 When deleting characters, in tables this function will insert whitespace in
19977 front of the next \"|\" separator, to keep the table aligned. The table will
19978 still be marked for re-alignment if the field did fill the entire column,
19979 because, in this case the deletion might narrow the column."
19980 (interactive "p")
19981 (save-match-data
19982 (org-check-before-invisible-edit 'delete)
19983 (if (and (org-table-p)
19984 (not (bolp))
19985 (not (= (char-after) ?|))
19986 (eq N 1))
19987 (if (looking-at ".*?|")
19988 (let ((pos (point))
19989 (noalign (looking-at "[^|\n\r]* |"))
19990 (c org-table-may-need-update))
19991 (replace-match
19992 (concat (substring (match-string 0) 1 -1) " |") nil t)
19993 (goto-char pos)
19994 ;; noalign: if there were two spaces at the end, this field
19995 ;; does not determine the width of the column.
19996 (if noalign (setq org-table-may-need-update c)))
19997 (delete-char N))
19998 (delete-char N)
19999 (org-fix-tags-on-the-fly))))
20001 ;; Make `delete-selection-mode' work with org-mode and orgtbl-mode
20002 (put 'org-self-insert-command 'delete-selection
20003 (lambda ()
20004 (not (run-hook-with-args-until-success
20005 'self-insert-uses-region-functions))))
20006 (put 'orgtbl-self-insert-command 'delete-selection
20007 (lambda ()
20008 (not (run-hook-with-args-until-success
20009 'self-insert-uses-region-functions))))
20010 (put 'org-delete-char 'delete-selection 'supersede)
20011 (put 'org-delete-backward-char 'delete-selection 'supersede)
20012 (put 'org-yank 'delete-selection 'yank)
20014 ;; Make `flyspell-mode' delay after some commands
20015 (put 'org-self-insert-command 'flyspell-delayed t)
20016 (put 'orgtbl-self-insert-command 'flyspell-delayed t)
20017 (put 'org-delete-char 'flyspell-delayed t)
20018 (put 'org-delete-backward-char 'flyspell-delayed t)
20020 ;; Make pabbrev-mode expand after org-mode commands
20021 (put 'org-self-insert-command 'pabbrev-expand-after-command t)
20022 (put 'orgtbl-self-insert-command 'pabbrev-expand-after-command t)
20024 (defun org-remap (map &rest commands)
20025 "In MAP, remap the functions given in COMMANDS.
20026 COMMANDS is a list of alternating OLDDEF NEWDEF command names."
20027 (let (new old)
20028 (while commands
20029 (setq old (pop commands) new (pop commands))
20030 (if (fboundp 'command-remapping)
20031 (org-defkey map (vector 'remap old) new)
20032 (substitute-key-definition old new map global-map)))))
20034 (defun org-transpose-words ()
20035 "Transpose words for Org.
20036 This uses the `org-mode-transpose-word-syntax-table' syntax
20037 table, which interprets characters in `org-emphasis-alist' as
20038 word constituents."
20039 (interactive)
20040 (with-syntax-table org-mode-transpose-word-syntax-table
20041 (call-interactively 'transpose-words)))
20042 (org-remap org-mode-map 'transpose-words 'org-transpose-words)
20044 (when (eq org-enable-table-editor 'optimized)
20045 ;; If the user wants maximum table support, we need to hijack
20046 ;; some standard editing functions
20047 (org-remap org-mode-map
20048 'self-insert-command 'org-self-insert-command
20049 'delete-char 'org-delete-char
20050 'delete-backward-char 'org-delete-backward-char)
20051 (org-defkey org-mode-map "|" 'org-force-self-insert))
20053 (defvar org-ctrl-c-ctrl-c-hook nil
20054 "Hook for functions attaching themselves to `C-c C-c'.
20056 This can be used to add additional functionality to the C-c C-c
20057 key which executes context-dependent commands. This hook is run
20058 before any other test, while `org-ctrl-c-ctrl-c-final-hook' is
20059 run after the last test.
20061 Each function will be called with no arguments. The function
20062 must check if the context is appropriate for it to act. If yes,
20063 it should do its thing and then return a non-nil value. If the
20064 context is wrong, just do nothing and return nil.")
20066 (defvar org-ctrl-c-ctrl-c-final-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 after any other test, while `org-ctrl-c-ctrl-c-hook' is run
20072 before the first 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-tab-first-hook nil
20080 "Hook for functions to attach themselves to TAB.
20081 See `org-ctrl-c-ctrl-c-hook' for more information.
20082 This hook runs as the first action when TAB is pressed, even before
20083 `org-cycle' messes around with the `outline-regexp' to cater for
20084 inline tasks and plain list item folding.
20085 If any function in this hook returns t, any other actions that
20086 would have been caused by TAB (such as table field motion or visibility
20087 cycling) will not occur.")
20089 (defvar org-tab-after-check-for-table-hook nil
20090 "Hook for functions to attach themselves to TAB.
20091 See `org-ctrl-c-ctrl-c-hook' for more information.
20092 This hook runs after it has been established that the cursor is not in a
20093 table, but before checking if the cursor is in a headline or if global cycling
20094 should be done.
20095 If any function in this hook returns t, not other actions like visibility
20096 cycling will be done.")
20098 (defvar org-tab-after-check-for-cycling-hook nil
20099 "Hook for functions to attach themselves to TAB.
20100 See `org-ctrl-c-ctrl-c-hook' for more information.
20101 This hook runs after it has been established that not table field motion and
20102 not visibility should be done because of current context. This is probably
20103 the place where a package like yasnippets can hook in.")
20105 (defvar org-tab-before-tab-emulation-hook nil
20106 "Hook for functions to attach themselves to TAB.
20107 See `org-ctrl-c-ctrl-c-hook' for more information.
20108 This hook runs after every other options for TAB have been exhausted, but
20109 before indentation and \t insertion takes place.")
20111 (defvar org-metaleft-hook nil
20112 "Hook for functions attaching themselves to `M-left'.
20113 See `org-ctrl-c-ctrl-c-hook' for more information.")
20114 (defvar org-metaright-hook nil
20115 "Hook for functions attaching themselves to `M-right'.
20116 See `org-ctrl-c-ctrl-c-hook' for more information.")
20117 (defvar org-metaup-hook nil
20118 "Hook for functions attaching themselves to `M-up'.
20119 See `org-ctrl-c-ctrl-c-hook' for more information.")
20120 (defvar org-metadown-hook nil
20121 "Hook for functions attaching themselves to `M-down'.
20122 See `org-ctrl-c-ctrl-c-hook' for more information.")
20123 (defvar org-shiftmetaleft-hook nil
20124 "Hook for functions attaching themselves to `M-S-left'.
20125 See `org-ctrl-c-ctrl-c-hook' for more information.")
20126 (defvar org-shiftmetaright-hook nil
20127 "Hook for functions attaching themselves to `M-S-right'.
20128 See `org-ctrl-c-ctrl-c-hook' for more information.")
20129 (defvar org-shiftmetaup-hook nil
20130 "Hook for functions attaching themselves to `M-S-up'.
20131 See `org-ctrl-c-ctrl-c-hook' for more information.")
20132 (defvar org-shiftmetadown-hook nil
20133 "Hook for functions attaching themselves to `M-S-down'.
20134 See `org-ctrl-c-ctrl-c-hook' for more information.")
20135 (defvar org-metareturn-hook nil
20136 "Hook for functions attaching themselves to `M-RET'.
20137 See `org-ctrl-c-ctrl-c-hook' for more information.")
20138 (defvar org-shiftup-hook nil
20139 "Hook for functions attaching themselves to `S-up'.
20140 See `org-ctrl-c-ctrl-c-hook' for more information.")
20141 (defvar org-shiftup-final-hook nil
20142 "Hook for functions attaching themselves to `S-up'.
20143 This one runs after all other options except shift-select have been excluded.
20144 See `org-ctrl-c-ctrl-c-hook' for more information.")
20145 (defvar org-shiftdown-hook nil
20146 "Hook for functions attaching themselves to `S-down'.
20147 See `org-ctrl-c-ctrl-c-hook' for more information.")
20148 (defvar org-shiftdown-final-hook nil
20149 "Hook for functions attaching themselves to `S-down'.
20150 This one runs after all other options except shift-select have been excluded.
20151 See `org-ctrl-c-ctrl-c-hook' for more information.")
20152 (defvar org-shiftleft-hook nil
20153 "Hook for functions attaching themselves to `S-left'.
20154 See `org-ctrl-c-ctrl-c-hook' for more information.")
20155 (defvar org-shiftleft-final-hook nil
20156 "Hook for functions attaching themselves to `S-left'.
20157 This one runs after all other options except shift-select have been excluded.
20158 See `org-ctrl-c-ctrl-c-hook' for more information.")
20159 (defvar org-shiftright-hook nil
20160 "Hook for functions attaching themselves to `S-right'.
20161 See `org-ctrl-c-ctrl-c-hook' for more information.")
20162 (defvar org-shiftright-final-hook nil
20163 "Hook for functions attaching themselves to `S-right'.
20164 This one runs after all other options except shift-select have been excluded.
20165 See `org-ctrl-c-ctrl-c-hook' for more information.")
20167 (defun org-modifier-cursor-error ()
20168 "Throw an error, a modified cursor command was applied in wrong context."
20169 (user-error "This command is active in special context like tables, headlines or items"))
20171 (defun org-shiftselect-error ()
20172 "Throw an error because Shift-Cursor command was applied in wrong context."
20173 (if (and (boundp 'shift-select-mode) shift-select-mode)
20174 (user-error "To use shift-selection with Org-mode, customize `org-support-shift-select'")
20175 (user-error "This command works only in special context like headlines or timestamps")))
20177 (defun org-call-for-shift-select (cmd)
20178 (let ((this-command-keys-shift-translated t))
20179 (call-interactively cmd)))
20181 (defun org-shifttab (&optional arg)
20182 "Global visibility cycling or move to previous table field.
20183 Call `org-table-previous-field' within a table.
20184 When ARG is nil, cycle globally through visibility states.
20185 When ARG is a numeric prefix, show contents of this level."
20186 (interactive "P")
20187 (cond
20188 ((org-at-table-p) (call-interactively 'org-table-previous-field))
20189 ((integerp arg)
20190 (let ((arg2 (if org-odd-levels-only (1- (* 2 arg)) arg)))
20191 (message "Content view to level: %d" arg)
20192 (org-content (prefix-numeric-value arg2))
20193 (org-cycle-show-empty-lines t)
20194 (setq org-cycle-global-status 'overview)))
20195 (t (call-interactively 'org-global-cycle))))
20197 (defun org-shiftmetaleft ()
20198 "Promote subtree or delete table column.
20199 Calls `org-promote-subtree', `org-outdent-item-tree', or
20200 `org-table-delete-column', depending on context. See the
20201 individual commands for more information."
20202 (interactive)
20203 (cond
20204 ((run-hook-with-args-until-success 'org-shiftmetaleft-hook))
20205 ((org-at-table-p) (call-interactively 'org-table-delete-column))
20206 ((org-at-heading-p) (call-interactively 'org-promote-subtree))
20207 ((if (not (org-region-active-p)) (org-at-item-p)
20208 (save-excursion (goto-char (region-beginning))
20209 (org-at-item-p)))
20210 (call-interactively 'org-outdent-item-tree))
20211 (t (org-modifier-cursor-error))))
20213 (defun org-shiftmetaright ()
20214 "Demote subtree or insert table column.
20215 Calls `org-demote-subtree', `org-indent-item-tree', or
20216 `org-table-insert-column', depending on context. See the
20217 individual commands for more information."
20218 (interactive)
20219 (cond
20220 ((run-hook-with-args-until-success 'org-shiftmetaright-hook))
20221 ((org-at-table-p) (call-interactively 'org-table-insert-column))
20222 ((org-at-heading-p) (call-interactively 'org-demote-subtree))
20223 ((if (not (org-region-active-p)) (org-at-item-p)
20224 (save-excursion (goto-char (region-beginning))
20225 (org-at-item-p)))
20226 (call-interactively 'org-indent-item-tree))
20227 (t (org-modifier-cursor-error))))
20229 (defun org-shiftmetaup (&optional arg)
20230 "Drag the line at point up.
20231 In a table, kill the current row.
20232 On a clock timestamp, update the value of the timestamp like `S-<up>'
20233 but also adjust the previous clocked item in the clock history.
20234 Everywhere else, drag the line at point up."
20235 (interactive "P")
20236 (cond
20237 ((run-hook-with-args-until-success 'org-shiftmetaup-hook))
20238 ((org-at-table-p) (call-interactively 'org-table-kill-row))
20239 ((org-at-clock-log-p) (let ((org-clock-adjust-closest t))
20240 (call-interactively 'org-timestamp-up)))
20241 (t (call-interactively 'org-drag-line-backward))))
20243 (defun org-shiftmetadown (&optional arg)
20244 "Drag the line at point down.
20245 In a table, insert an empty row at the current line.
20246 On a clock timestamp, update the value of the timestamp like `S-<down>'
20247 but also adjust the previous clocked item in the clock history.
20248 Everywhere else, drag the line at point down."
20249 (interactive "P")
20250 (cond
20251 ((run-hook-with-args-until-success 'org-shiftmetadown-hook))
20252 ((org-at-table-p) (call-interactively 'org-table-insert-row))
20253 ((org-at-clock-log-p) (let ((org-clock-adjust-closest t))
20254 (call-interactively 'org-timestamp-down)))
20255 (t (call-interactively 'org-drag-line-forward))))
20257 (defsubst org-hidden-tree-error ()
20258 (user-error
20259 "Hidden subtree, open with TAB or use subtree command M-S-<left>/<right>"))
20261 (defun org-metaleft (&optional arg)
20262 "Promote heading or move table column to left.
20263 Calls `org-do-promote' or `org-table-move-column', depending on context.
20264 With no specific context, calls the Emacs default `backward-word'.
20265 See the individual commands for more information."
20266 (interactive "P")
20267 (cond
20268 ((run-hook-with-args-until-success 'org-metaleft-hook))
20269 ((org-at-table-p) (org-call-with-arg 'org-table-move-column 'left))
20270 ((org-with-limited-levels
20271 (or (org-at-heading-p)
20272 (and (org-region-active-p)
20273 (save-excursion
20274 (goto-char (region-beginning))
20275 (org-at-heading-p)))))
20276 (when (org-check-for-hidden 'headlines) (org-hidden-tree-error))
20277 (call-interactively 'org-do-promote))
20278 ;; At an inline task.
20279 ((org-at-heading-p)
20280 (call-interactively 'org-inlinetask-promote))
20281 ((or (org-at-item-p)
20282 (and (org-region-active-p)
20283 (save-excursion
20284 (goto-char (region-beginning))
20285 (org-at-item-p))))
20286 (when (org-check-for-hidden 'items) (org-hidden-tree-error))
20287 (call-interactively 'org-outdent-item))
20288 (t (call-interactively 'backward-word))))
20290 (defun org-metaright (&optional arg)
20291 "Demote a subtree, a list item or move table column to right.
20292 In front of a drawer or a block keyword, indent it correctly.
20293 With no specific context, calls the Emacs default `forward-word'.
20294 See the individual commands for more information."
20295 (interactive "P")
20296 (cond
20297 ((run-hook-with-args-until-success 'org-metaright-hook))
20298 ((org-at-table-p) (call-interactively 'org-table-move-column))
20299 ((org-at-drawer-p) (call-interactively 'org-indent-drawer))
20300 ((org-at-block-p) (call-interactively 'org-indent-block))
20301 ((org-with-limited-levels
20302 (or (org-at-heading-p)
20303 (and (org-region-active-p)
20304 (save-excursion
20305 (goto-char (region-beginning))
20306 (org-at-heading-p)))))
20307 (when (org-check-for-hidden 'headlines) (org-hidden-tree-error))
20308 (call-interactively 'org-do-demote))
20309 ;; At an inline task.
20310 ((org-at-heading-p)
20311 (call-interactively 'org-inlinetask-demote))
20312 ((or (org-at-item-p)
20313 (and (org-region-active-p)
20314 (save-excursion
20315 (goto-char (region-beginning))
20316 (org-at-item-p))))
20317 (when (org-check-for-hidden 'items) (org-hidden-tree-error))
20318 (call-interactively 'org-indent-item))
20319 (t (call-interactively 'forward-word))))
20321 (defun org-check-for-hidden (what)
20322 "Check if there are hidden headlines/items in the current visual line.
20323 WHAT can be either `headlines' or `items'. If the current line is
20324 an outline or item heading and it has a folded subtree below it,
20325 this function returns t, nil otherwise."
20326 (let ((re (cond
20327 ((eq what 'headlines) org-outline-regexp-bol)
20328 ((eq what 'items) (org-item-beginning-re))
20329 (t (error "This should not happen"))))
20330 beg end)
20331 (save-excursion
20332 (catch 'exit
20333 (unless (org-region-active-p)
20334 (setq beg (point-at-bol))
20335 (beginning-of-line 2)
20336 (while (and (not (eobp)) ;; this is like `next-line'
20337 (get-char-property (1- (point)) 'invisible))
20338 (beginning-of-line 2))
20339 (setq end (point))
20340 (goto-char beg)
20341 (goto-char (point-at-eol))
20342 (setq end (max end (point)))
20343 (while (re-search-forward re end t)
20344 (if (get-char-property (match-beginning 0) 'invisible)
20345 (throw 'exit t))))
20346 nil))))
20348 (defun org-metaup (&optional arg)
20349 "Move subtree up or move table row up.
20350 Calls `org-move-subtree-up' or `org-table-move-row' or
20351 `org-move-item-up', depending on context. See the individual commands
20352 for more information."
20353 (interactive "P")
20354 (cond
20355 ((run-hook-with-args-until-success 'org-metaup-hook))
20356 ((org-region-active-p)
20357 (let* ((a (min (region-beginning) (region-end)))
20358 (b (1- (max (region-beginning) (region-end))))
20359 (c (save-excursion (goto-char a)
20360 (move-beginning-of-line 0)))
20361 (d (save-excursion (goto-char a)
20362 (move-end-of-line 0) (point))))
20363 (transpose-regions a b c d)
20364 (goto-char c)))
20365 ((org-at-table-p) (org-call-with-arg 'org-table-move-row 'up))
20366 ((org-at-heading-p) (call-interactively 'org-move-subtree-up))
20367 ((org-at-item-p) (call-interactively 'org-move-item-up))
20368 (t (org-drag-element-backward))))
20370 (defun org-metadown (&optional arg)
20371 "Move subtree down or move table row down.
20372 Calls `org-move-subtree-down' or `org-table-move-row' or
20373 `org-move-item-down', depending on context. See the individual
20374 commands for more information."
20375 (interactive "P")
20376 (cond
20377 ((run-hook-with-args-until-success 'org-metadown-hook))
20378 ((org-region-active-p)
20379 (let* ((a (min (region-beginning) (region-end)))
20380 (b (max (region-beginning) (region-end)))
20381 (c (save-excursion (goto-char b)
20382 (move-beginning-of-line 1)))
20383 (d (save-excursion (goto-char b)
20384 (move-end-of-line 1) (1+ (point)))))
20385 (transpose-regions a b c d)
20386 (goto-char d)))
20387 ((org-at-table-p) (call-interactively 'org-table-move-row))
20388 ((org-at-heading-p) (call-interactively 'org-move-subtree-down))
20389 ((org-at-item-p) (call-interactively 'org-move-item-down))
20390 (t (org-drag-element-forward))))
20392 (defun org-shiftup (&optional arg)
20393 "Increase item in timestamp or increase priority of current headline.
20394 Calls `org-timestamp-up' or `org-priority-up', or `org-previous-item',
20395 depending on context. See the individual commands for more information."
20396 (interactive "P")
20397 (cond
20398 ((run-hook-with-args-until-success 'org-shiftup-hook))
20399 ((and org-support-shift-select (org-region-active-p))
20400 (org-call-for-shift-select 'previous-line))
20401 ((org-at-timestamp-p t)
20402 (call-interactively (if org-edit-timestamp-down-means-later
20403 'org-timestamp-down 'org-timestamp-up)))
20404 ((and (not (eq org-support-shift-select 'always))
20405 org-enable-priority-commands
20406 (org-at-heading-p))
20407 (call-interactively 'org-priority-up))
20408 ((and (not org-support-shift-select) (org-at-item-p))
20409 (call-interactively 'org-previous-item))
20410 ((org-clocktable-try-shift 'up arg))
20411 ((run-hook-with-args-until-success 'org-shiftup-final-hook))
20412 (org-support-shift-select
20413 (org-call-for-shift-select 'previous-line))
20414 (t (org-shiftselect-error))))
20416 (defun org-shiftdown (&optional arg)
20417 "Decrease item in timestamp or decrease priority of current headline.
20418 Calls `org-timestamp-down' or `org-priority-down', or `org-next-item'
20419 depending on context. See the individual commands for more information."
20420 (interactive "P")
20421 (cond
20422 ((run-hook-with-args-until-success 'org-shiftdown-hook))
20423 ((and org-support-shift-select (org-region-active-p))
20424 (org-call-for-shift-select 'next-line))
20425 ((org-at-timestamp-p t)
20426 (call-interactively (if org-edit-timestamp-down-means-later
20427 'org-timestamp-up 'org-timestamp-down)))
20428 ((and (not (eq org-support-shift-select 'always))
20429 org-enable-priority-commands
20430 (org-at-heading-p))
20431 (call-interactively 'org-priority-down))
20432 ((and (not org-support-shift-select) (org-at-item-p))
20433 (call-interactively 'org-next-item))
20434 ((org-clocktable-try-shift 'down arg))
20435 ((run-hook-with-args-until-success 'org-shiftdown-final-hook))
20436 (org-support-shift-select
20437 (org-call-for-shift-select 'next-line))
20438 (t (org-shiftselect-error))))
20440 (defun org-shiftright (&optional arg)
20441 "Cycle the thing at point or in the current line, depending on context.
20442 Depending on context, this does one of the following:
20444 - switch a timestamp at point one day into the future
20445 - on a headline, switch to the next TODO keyword.
20446 - on an item, switch entire list to the next bullet type
20447 - on a property line, switch to the next allowed value
20448 - on a clocktable definition line, move time block into the future"
20449 (interactive "P")
20450 (cond
20451 ((run-hook-with-args-until-success 'org-shiftright-hook))
20452 ((and org-support-shift-select (org-region-active-p))
20453 (org-call-for-shift-select 'forward-char))
20454 ((org-at-timestamp-p t) (call-interactively 'org-timestamp-up-day))
20455 ((and (not (eq org-support-shift-select 'always))
20456 (org-at-heading-p))
20457 (let ((org-inhibit-logging
20458 (not org-treat-S-cursor-todo-selection-as-state-change))
20459 (org-inhibit-blocking
20460 (not org-treat-S-cursor-todo-selection-as-state-change)))
20461 (org-call-with-arg 'org-todo 'right)))
20462 ((or (and org-support-shift-select
20463 (not (eq org-support-shift-select 'always))
20464 (org-at-item-bullet-p))
20465 (and (not org-support-shift-select) (org-at-item-p)))
20466 (org-call-with-arg 'org-cycle-list-bullet nil))
20467 ((and (not (eq org-support-shift-select 'always))
20468 (org-at-property-p))
20469 (call-interactively 'org-property-next-allowed-value))
20470 ((org-clocktable-try-shift 'right arg))
20471 ((run-hook-with-args-until-success 'org-shiftright-final-hook))
20472 (org-support-shift-select
20473 (org-call-for-shift-select 'forward-char))
20474 (t (org-shiftselect-error))))
20476 (defun org-shiftleft (&optional arg)
20477 "Cycle the thing at point or in the current line, depending on context.
20478 Depending on context, this does one of the following:
20480 - switch a timestamp at point one day into the past
20481 - on a headline, switch to the previous TODO keyword.
20482 - on an item, switch entire list to the previous bullet type
20483 - on a property line, switch to the previous allowed value
20484 - on a clocktable definition line, move time block into the past"
20485 (interactive "P")
20486 (cond
20487 ((run-hook-with-args-until-success 'org-shiftleft-hook))
20488 ((and org-support-shift-select (org-region-active-p))
20489 (org-call-for-shift-select 'backward-char))
20490 ((org-at-timestamp-p t) (call-interactively 'org-timestamp-down-day))
20491 ((and (not (eq org-support-shift-select 'always))
20492 (org-at-heading-p))
20493 (let ((org-inhibit-logging
20494 (not org-treat-S-cursor-todo-selection-as-state-change))
20495 (org-inhibit-blocking
20496 (not org-treat-S-cursor-todo-selection-as-state-change)))
20497 (org-call-with-arg 'org-todo 'left)))
20498 ((or (and org-support-shift-select
20499 (not (eq org-support-shift-select 'always))
20500 (org-at-item-bullet-p))
20501 (and (not org-support-shift-select) (org-at-item-p)))
20502 (org-call-with-arg 'org-cycle-list-bullet 'previous))
20503 ((and (not (eq org-support-shift-select 'always))
20504 (org-at-property-p))
20505 (call-interactively 'org-property-previous-allowed-value))
20506 ((org-clocktable-try-shift 'left arg))
20507 ((run-hook-with-args-until-success 'org-shiftleft-final-hook))
20508 (org-support-shift-select
20509 (org-call-for-shift-select 'backward-char))
20510 (t (org-shiftselect-error))))
20512 (defun org-shiftcontrolright ()
20513 "Switch to next TODO set."
20514 (interactive)
20515 (cond
20516 ((and org-support-shift-select (org-region-active-p))
20517 (org-call-for-shift-select 'forward-word))
20518 ((and (not (eq org-support-shift-select 'always))
20519 (org-at-heading-p))
20520 (org-call-with-arg 'org-todo 'nextset))
20521 (org-support-shift-select
20522 (org-call-for-shift-select 'forward-word))
20523 (t (org-shiftselect-error))))
20525 (defun org-shiftcontrolleft ()
20526 "Switch to previous TODO set."
20527 (interactive)
20528 (cond
20529 ((and org-support-shift-select (org-region-active-p))
20530 (org-call-for-shift-select 'backward-word))
20531 ((and (not (eq org-support-shift-select 'always))
20532 (org-at-heading-p))
20533 (org-call-with-arg 'org-todo 'previousset))
20534 (org-support-shift-select
20535 (org-call-for-shift-select 'backward-word))
20536 (t (org-shiftselect-error))))
20538 (defun org-shiftcontrolup (&optional n)
20539 "Change timestamps synchronously up in CLOCK log lines.
20540 Optional argument N tells to change by that many units."
20541 (interactive "P")
20542 (if (and (org-at-clock-log-p) (org-at-timestamp-p t))
20543 (let (org-support-shift-select)
20544 (org-clock-timestamps-up n))
20545 (user-error "Not at a clock log")))
20547 (defun org-shiftcontroldown (&optional n)
20548 "Change timestamps synchronously down in CLOCK log lines.
20549 Optional argument N tells to change by that many units."
20550 (interactive "P")
20551 (if (and (org-at-clock-log-p) (org-at-timestamp-p t))
20552 (let (org-support-shift-select)
20553 (org-clock-timestamps-down n))
20554 (user-error "Not at a clock log")))
20556 (defun org-increase-number-at-point (&optional inc)
20557 "Increment the number at point.
20558 With an optional prefix numeric argument INC, increment using
20559 this numeric value."
20560 (interactive "p")
20561 (if (not (number-at-point))
20562 (user-error "Not on a number")
20563 (unless inc (setq inc 1))
20564 (let ((pos (point))
20565 (beg (skip-chars-backward "-+^/*0-9eE."))
20566 (end (skip-chars-forward "-+^/*0-9eE^.")) nap)
20567 (setq nap (buffer-substring-no-properties
20568 (+ pos beg) (+ pos beg end)))
20569 (delete-region (+ pos beg) (+ pos beg end))
20570 (insert (calc-eval (concat (number-to-string inc) "+" nap))))
20571 (when (org-at-table-p)
20572 (org-table-align)
20573 (org-table-end-of-field 1))))
20575 (defun org-decrease-number-at-point (&optional inc)
20576 "Decrement the number at point.
20577 With an optional prefix numeric argument INC, decrement using
20578 this numeric value."
20579 (interactive "p")
20580 (org-increase-number-at-point (- inc)))
20582 (defun org-ctrl-c-ret ()
20583 "Call `org-table-hline-and-move' or `org-insert-heading' dep. on context."
20584 (interactive)
20585 (cond
20586 ((org-at-table-p) (call-interactively 'org-table-hline-and-move))
20587 (t (call-interactively 'org-insert-heading))))
20589 (defun org-find-visible ()
20590 (let ((s (point)))
20591 (while (and (not (= (point-max) (setq s (next-overlay-change s))))
20592 (get-char-property s 'invisible)))
20594 (defun org-find-invisible ()
20595 (let ((s (point)))
20596 (while (and (not (= (point-max) (setq s (next-overlay-change s))))
20597 (not (get-char-property s 'invisible))))
20600 (defun org-copy-visible (beg end)
20601 "Copy the visible parts of the region."
20602 (interactive "r")
20603 (let (snippets s)
20604 (save-excursion
20605 (save-restriction
20606 (narrow-to-region beg end)
20607 (setq s (goto-char (point-min)))
20608 (while (not (= (point) (point-max)))
20609 (goto-char (org-find-invisible))
20610 (push (buffer-substring s (point)) snippets)
20611 (setq s (goto-char (org-find-visible))))))
20612 (kill-new (apply 'concat (nreverse snippets)))))
20614 (defun org-copy-special ()
20615 "Copy region in table or copy current subtree.
20616 Calls `org-table-copy' or `org-copy-subtree', depending on context.
20617 See the individual commands for more information."
20618 (interactive)
20619 (call-interactively
20620 (if (org-at-table-p) 'org-table-copy-region 'org-copy-subtree)))
20622 (defun org-cut-special ()
20623 "Cut region in table or cut current subtree.
20624 Calls `org-table-copy' or `org-cut-subtree', depending on context.
20625 See the individual commands for more information."
20626 (interactive)
20627 (call-interactively
20628 (if (org-at-table-p) 'org-table-cut-region 'org-cut-subtree)))
20630 (defun org-paste-special (arg)
20631 "Paste rectangular region into table, or past subtree relative to level.
20632 Calls `org-table-paste-rectangle' or `org-paste-subtree', depending on context.
20633 See the individual commands for more information."
20634 (interactive "P")
20635 (if (org-at-table-p)
20636 (org-table-paste-rectangle)
20637 (org-paste-subtree arg)))
20639 (defsubst org-in-fixed-width-region-p ()
20640 "Is point in a fixed-width region?"
20641 (save-match-data
20642 (eq 'fixed-width (org-element-type (org-element-at-point)))))
20644 (defun org-edit-special (&optional arg)
20645 "Call a special editor for the element at point.
20646 When at a table, call the formula editor with `org-table-edit-formulas'.
20647 When in a source code block, call `org-edit-src-code'.
20648 When in a fixed-width region, call `org-edit-fixed-width-region'.
20649 When in an export block, call `org-edit-export-block'.
20650 When at an #+INCLUDE keyword, visit the included file.
20651 On a link, call `ffap' to visit the link at point.
20652 Otherwise, return a user error."
20653 (interactive "P")
20654 (let ((element (org-element-at-point)))
20655 (assert (not buffer-read-only) nil
20656 "Buffer is read-only: %s" (buffer-name))
20657 (case (org-element-type element)
20658 (src-block
20659 (if (not arg) (org-edit-src-code)
20660 (let* ((info (org-babel-get-src-block-info))
20661 (lang (nth 0 info))
20662 (params (nth 2 info))
20663 (session (cdr (assq :session params))))
20664 (if (not session) (org-edit-src-code)
20665 ;; At a src-block with a session and function called with
20666 ;; an ARG: switch to the buffer related to the inferior
20667 ;; process.
20668 (switch-to-buffer
20669 (funcall (intern (concat "org-babel-prep-session:" lang))
20670 session params))))))
20671 (keyword
20672 (if (member (org-element-property :key element) '("INCLUDE" "SETUPFILE"))
20673 (org-open-link-from-string
20674 (format "[[%s]]"
20675 (expand-file-name
20676 (let ((value (org-element-property :value element)))
20677 (cond ((not (org-string-nw-p value))
20678 (user-error "No file to edit"))
20679 ((string-match "\\`\"\\(.*?\\)\"" value)
20680 (match-string 1 value))
20681 ((string-match "\\`[^ \t\"]\\S-*" value)
20682 (match-string 0 value))
20683 (t (user-error "No valid file specified")))))))
20684 (user-error "No special environment to edit here")))
20685 (table
20686 (if (eq (org-element-property :type element) 'table.el)
20687 (org-edit-table.el)
20688 (call-interactively 'org-table-edit-formulas)))
20689 ;; Only Org tables contain `table-row' type elements.
20690 (table-row (call-interactively 'org-table-edit-formulas))
20691 ((example-block src-block) (org-edit-src-code))
20692 (export-block (org-edit-export-block))
20693 (fixed-width (org-edit-fixed-width-region))
20694 (otherwise
20695 ;; No notable element at point. Though, we may be at a link,
20696 ;; which is an object. Thus, scan deeper.
20697 (if (eq (org-element-type (org-element-context element)) 'link)
20698 (call-interactively 'ffap)
20699 (user-error "No special environment to edit here"))))))
20701 (defvar org-table-coordinate-overlays) ; defined in org-table.el
20702 (defun org-ctrl-c-ctrl-c (&optional arg)
20703 "Set tags in headline, or update according to changed information at point.
20705 This command does many different things, depending on context:
20707 - If a function in `org-ctrl-c-ctrl-c-hook' recognizes this location,
20708 this is what we do.
20710 - If the cursor is on a statistics cookie, update it.
20712 - If the cursor is in a headline, prompt for tags and insert them
20713 into the current line, aligned to `org-tags-column'. When called
20714 with prefix arg, realign all tags in the current buffer.
20716 - If the cursor is in one of the special #+KEYWORD lines, this
20717 triggers scanning the buffer for these lines and updating the
20718 information.
20720 - If the cursor is inside a table, realign the table. This command
20721 works even if the automatic table editor has been turned off.
20723 - If the cursor is on a #+TBLFM line, re-apply the formulas to
20724 the entire table.
20726 - If the cursor is at a footnote reference or definition, jump to
20727 the corresponding definition or references, respectively.
20729 - If the cursor is a the beginning of a dynamic block, update it.
20731 - If the current buffer is a capture buffer, close note and file it.
20733 - If the cursor is on a <<<target>>>, update radio targets and
20734 corresponding links in this buffer.
20736 - If the cursor is on a numbered item in a plain list, renumber the
20737 ordered list.
20739 - If the cursor is on a checkbox, toggle it.
20741 - If the cursor is on a code block, evaluate it. The variable
20742 `org-confirm-babel-evaluate' can be used to control prompting
20743 before code block evaluation, by default every code block
20744 evaluation requires confirmation. Code block evaluation can be
20745 inhibited by setting `org-babel-no-eval-on-ctrl-c-ctrl-c'."
20746 (interactive "P")
20747 (cond
20748 ((or (and (boundp 'org-clock-overlays) org-clock-overlays)
20749 org-occur-highlights)
20750 (and (boundp 'org-clock-overlays) (org-clock-remove-overlays))
20751 (org-remove-occur-highlights)
20752 (message "Temporary highlights/overlays removed from current buffer"))
20753 ((and (local-variable-p 'org-finish-function (current-buffer))
20754 (fboundp org-finish-function))
20755 (funcall org-finish-function))
20756 ((run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-hook))
20758 (if (save-excursion (beginning-of-line) (looking-at "[ \t]*$"))
20759 (or (run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-final-hook)
20760 (user-error "C-c C-c can do nothing useful at this location"))
20761 (let* ((context (org-element-context))
20762 (type (org-element-type context)))
20763 (case type
20764 ;; When at a link, act according to the parent instead.
20765 (link (setq context (org-element-property :parent context))
20766 (setq type (org-element-type context)))
20767 ;; Unsupported object types: refer to the first supported
20768 ;; element or object containing it.
20769 ((bold code entity export-snippet inline-babel-call inline-src-block
20770 italic latex-fragment line-break macro strike-through subscript
20771 superscript underline verbatim)
20772 (setq context
20773 (org-element-lineage
20774 context '(radio-target paragraph verse-block table-cell)))))
20775 ;; For convenience: at the first line of a paragraph on the
20776 ;; same line as an item, apply function on that item instead.
20777 (when (eq type 'paragraph)
20778 (let ((parent (org-element-property :parent context)))
20779 (when (and (eq (org-element-type parent) 'item)
20780 (= (line-beginning-position)
20781 (org-element-property :begin parent)))
20782 (setq context parent type 'item))))
20783 ;; Act according to type of element or object at point.
20784 (case type
20785 (clock (org-clock-update-time-maybe))
20786 (dynamic-block
20787 (save-excursion
20788 (goto-char (org-element-property :post-affiliated context))
20789 (org-update-dblock)))
20790 (footnote-definition
20791 (goto-char (org-element-property :post-affiliated context))
20792 (call-interactively 'org-footnote-action))
20793 (footnote-reference (call-interactively 'org-footnote-action))
20794 ((headline inlinetask)
20795 (save-excursion (goto-char (org-element-property :begin context))
20796 (call-interactively 'org-set-tags)))
20797 (item
20798 ;; At an item: a double C-u set checkbox to "[-]"
20799 ;; unconditionally, whereas a single one will toggle its
20800 ;; presence. Without an universal argument, if the item
20801 ;; has a checkbox, toggle it. Otherwise repair the list.
20802 (let* ((box (org-element-property :checkbox context))
20803 (struct (org-element-property :structure context))
20804 (old-struct (copy-tree struct))
20805 (parents (org-list-parents-alist struct))
20806 (prevs (org-list-prevs-alist struct))
20807 (orderedp (org-not-nil (org-entry-get nil "ORDERED"))))
20808 (org-list-set-checkbox
20809 (org-element-property :begin context) struct
20810 (cond ((equal arg '(16)) "[-]")
20811 ((and (not box) (equal arg '(4))) "[ ]")
20812 ((or (not box) (equal arg '(4))) nil)
20813 ((eq box 'on) "[ ]")
20814 (t "[X]")))
20815 ;; Mimic `org-list-write-struct' but with grabbing
20816 ;; a return value from `org-list-struct-fix-box'.
20817 (org-list-struct-fix-ind struct parents 2)
20818 (org-list-struct-fix-item-end struct)
20819 (org-list-struct-fix-bul struct prevs)
20820 (org-list-struct-fix-ind struct parents)
20821 (let ((block-item
20822 (org-list-struct-fix-box struct parents prevs orderedp)))
20823 (if (and box (equal struct old-struct))
20824 (if (equal arg '(16))
20825 (message "Checkboxes already reset")
20826 (user-error "Cannot toggle this checkbox: %s"
20827 (if (eq box 'on)
20828 "all subitems checked"
20829 "unchecked subitems")))
20830 (org-list-struct-apply-struct struct old-struct)
20831 (org-update-checkbox-count-maybe))
20832 (when block-item
20833 (message "Checkboxes were removed due to empty box at line %d"
20834 (org-current-line block-item))))))
20835 (keyword
20836 (let ((org-inhibit-startup-visibility-stuff t)
20837 (org-startup-align-all-tables nil))
20838 (when (boundp 'org-table-coordinate-overlays)
20839 (mapc 'delete-overlay org-table-coordinate-overlays)
20840 (setq org-table-coordinate-overlays nil))
20841 (org-save-outline-visibility 'use-markers (org-mode-restart)))
20842 (message "Local setup has been refreshed"))
20843 (plain-list
20844 ;; At a plain list, with a double C-u argument, set
20845 ;; checkboxes of each item to "[-]", whereas a single one
20846 ;; will toggle their presence according to the state of the
20847 ;; first item in the list. Without an argument, repair the
20848 ;; list.
20849 (let* ((begin (org-element-property :contents-begin context))
20850 (beginm (move-marker (make-marker) begin))
20851 (struct (org-element-property :structure context))
20852 (old-struct (copy-tree struct))
20853 (first-box (save-excursion
20854 (goto-char begin)
20855 (looking-at org-list-full-item-re)
20856 (match-string-no-properties 3)))
20857 (new-box (cond ((equal arg '(16)) "[-]")
20858 ((equal arg '(4)) (unless first-box "[ ]"))
20859 ((equal first-box "[X]") "[ ]")
20860 (t "[X]"))))
20861 (cond
20862 (arg
20863 (mapc (lambda (pos) (org-list-set-checkbox pos struct new-box))
20864 (org-list-get-all-items
20865 begin struct (org-list-prevs-alist struct))))
20866 ((and first-box (eq (point) begin))
20867 ;; For convenience, when point is at bol on the first
20868 ;; item of the list and no argument is provided, simply
20869 ;; toggle checkbox of that item, if any.
20870 (org-list-set-checkbox begin struct new-box)))
20871 (org-list-write-struct
20872 struct (org-list-parents-alist struct) old-struct)
20873 (org-update-checkbox-count-maybe)
20874 (save-excursion (goto-char beginm) (org-list-send-list 'maybe))))
20875 ((property-drawer node-property)
20876 (call-interactively 'org-property-action))
20877 ((radio-target target)
20878 (call-interactively 'org-update-radio-target-regexp))
20879 (statistics-cookie
20880 (call-interactively 'org-update-statistics-cookies))
20881 ((table table-cell table-row)
20882 ;; At a table, recalculate every field and align it. Also
20883 ;; send the table if necessary. If the table has
20884 ;; a `table.el' type, just give up. At a table row or
20885 ;; cell, maybe recalculate line but always align table.
20886 (if (eq (org-element-property :type context) 'table.el)
20887 (message "Use C-c ' to edit table.el tables")
20888 (let ((org-enable-table-editor t))
20889 (if (or (eq type 'table)
20890 ;; Check if point is at a TBLFM line.
20891 (and (eq type 'table-row)
20892 (= (point) (org-element-property :end context))))
20893 (save-excursion
20894 (if (org-at-TBLFM-p)
20895 (progn (require 'org-table)
20896 (org-table-calc-current-TBLFM))
20897 (goto-char (org-element-property :contents-begin context))
20898 (org-call-with-arg 'org-table-recalculate (or arg t))
20899 (orgtbl-send-table 'maybe)))
20900 (org-table-maybe-eval-formula)
20901 (cond (arg (call-interactively 'org-table-recalculate))
20902 ((org-table-maybe-recalculate-line))
20903 (t (org-table-align)))))))
20904 (timestamp (org-timestamp-change 0 'day))
20905 (otherwise
20906 (or (run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-final-hook)
20907 (user-error
20908 "C-c C-c can do nothing useful at this location")))))))))
20910 (defun org-mode-restart ()
20911 (interactive)
20912 (let ((indent-status (org-bound-and-true-p org-indent-mode)))
20913 (funcall major-mode)
20914 (hack-local-variables)
20915 (when (and indent-status (not (org-bound-and-true-p org-indent-mode)))
20916 (org-indent-mode -1)))
20917 (message "%s restarted" major-mode))
20919 (defun org-kill-note-or-show-branches ()
20920 "If this is a Note buffer, abort storing the note. Else call `show-branches'."
20921 (interactive)
20922 (if (not org-finish-function)
20923 (progn
20924 (hide-subtree)
20925 (call-interactively 'show-branches))
20926 (let ((org-note-abort t))
20927 (funcall org-finish-function))))
20929 (defun org-open-line (n)
20930 "Insert a new row in tables, call `open-line' elsewhere.
20931 If `org-special-ctrl-o' is nil, just call `open-line' everywhere."
20932 (interactive "*p")
20933 (cond
20934 ((not org-special-ctrl-o)
20935 (open-line n))
20936 ((org-at-table-p)
20937 (org-table-insert-row))
20939 (open-line n))))
20941 (defun org-return (&optional indent)
20942 "Goto next table row or insert a newline.
20944 Calls `org-table-next-row' or `newline', depending on context.
20946 When optional INDENT argument is non-nil, call
20947 `newline-and-indent' instead of `newline'.
20949 When `org-return-follows-link' is non-nil and point is on
20950 a timestamp or a link, call `org-open-at-point'. However, it
20951 will not happen if point is in a table or on a \"dead\"
20952 object (e.g., within a comment). In these case, you need to use
20953 `org-open-at-point' directly."
20954 (interactive)
20955 (if (and (save-excursion
20956 (beginning-of-line)
20957 (looking-at org-todo-line-regexp))
20958 (match-beginning 3)
20959 (>= (point) (match-beginning 3)))
20960 ;; Point is on headline tags. Do not break them: add a newline
20961 ;; after the headline instead.
20962 (progn (org-show-entry)
20963 (end-of-line)
20964 (if indent (newline-and-indent) (newline)))
20965 (let* ((context (if org-return-follows-link (org-element-context)
20966 (org-element-at-point)))
20967 (type (org-element-type context)))
20968 (cond
20969 ;; In a table, call `org-table-next-row'.
20970 ((or (and (eq type 'table)
20971 (>= (point) (org-element-property :contents-begin context))
20972 (< (point) (org-element-property :contents-end context)))
20973 (org-element-lineage context '(table-row table-cell) t))
20974 (org-table-justify-field-maybe)
20975 (call-interactively #'org-table-next-row))
20976 ;; On a link or a timestamp but not on white spaces after it,
20977 ;; call `org-open-line' if `org-return-follows-link' allows it.
20978 ((and org-return-follows-link
20979 (memq type '(link timestamp))
20980 (< (point)
20981 (save-excursion (goto-char (org-element-property :end context))
20982 (skip-chars-backward " \t")
20983 (point))))
20984 (call-interactively #'org-open-at-point))
20985 ;; In a list, make sure indenting keeps trailing text within.
20986 ((and indent
20987 (not (eolp))
20988 (org-element-lineage context '(item plain-list) t))
20989 (let ((trailing-data
20990 (delete-and-extract-region (point) (line-end-position))))
20991 (newline-and-indent)
20992 (save-excursion (insert trailing-data))))
20993 (t (if indent (newline-and-indent) (newline)))))))
20995 (defun org-return-indent ()
20996 "Goto next table row or insert a newline and indent.
20997 Calls `org-table-next-row' or `newline-and-indent', depending on
20998 context. See the individual commands for more information."
20999 (interactive)
21000 (org-return t))
21002 (defun org-ctrl-c-star ()
21003 "Compute table, or change heading status of lines.
21004 Calls `org-table-recalculate' or `org-toggle-heading',
21005 depending on context."
21006 (interactive)
21007 (cond
21008 ((org-at-table-p)
21009 (call-interactively 'org-table-recalculate))
21011 ;; Convert all lines in region to list items
21012 (call-interactively 'org-toggle-heading))))
21014 (defun org-ctrl-c-minus ()
21015 "Insert separator line in table or modify bullet status of line.
21016 Also turns a plain line or a region of lines into list items.
21017 Calls `org-table-insert-hline', `org-toggle-item', or
21018 `org-cycle-list-bullet', depending on context."
21019 (interactive)
21020 (cond
21021 ((org-at-table-p)
21022 (call-interactively 'org-table-insert-hline))
21023 ((org-region-active-p)
21024 (call-interactively 'org-toggle-item))
21025 ((org-in-item-p)
21026 (call-interactively 'org-cycle-list-bullet))
21028 (call-interactively 'org-toggle-item))))
21030 (defun org-toggle-item (arg)
21031 "Convert headings or normal lines to items, items to normal lines.
21032 If there is no active region, only the current line is considered.
21034 If the first non blank line in the region is a headline, convert
21035 all headlines to items, shifting text accordingly.
21037 If it is an item, convert all items to normal lines.
21039 If it is normal text, change region into a list of items.
21040 With a prefix argument ARG, change the region in a single item."
21041 (interactive "P")
21042 (let ((shift-text
21043 (function
21044 ;; Shift text in current section to IND, from point to END.
21045 ;; The function leaves point to END line.
21046 (lambda (ind end)
21047 (let ((min-i 1000) (end (copy-marker end)))
21048 ;; First determine the minimum indentation (MIN-I) of
21049 ;; the text.
21050 (save-excursion
21051 (catch 'exit
21052 (while (< (point) end)
21053 (let ((i (org-get-indentation)))
21054 (cond
21055 ;; Skip blank lines and inline tasks.
21056 ((looking-at "^[ \t]*$"))
21057 ((looking-at org-outline-regexp-bol))
21058 ;; We can't find less than 0 indentation.
21059 ((zerop i) (throw 'exit (setq min-i 0)))
21060 ((< i min-i) (setq min-i i))))
21061 (forward-line))))
21062 ;; Then indent each line so that a line indented to
21063 ;; MIN-I becomes indented to IND. Ignore blank lines
21064 ;; and inline tasks in the process.
21065 (let ((delta (- ind min-i)))
21066 (while (< (point) end)
21067 (unless (or (looking-at "^[ \t]*$")
21068 (looking-at org-outline-regexp-bol))
21069 (org-indent-line-to (+ (org-get-indentation) delta)))
21070 (forward-line)))))))
21071 (skip-blanks
21072 (function
21073 ;; Return beginning of first non-blank line, starting from
21074 ;; line at POS.
21075 (lambda (pos)
21076 (save-excursion
21077 (goto-char pos)
21078 (skip-chars-forward " \r\t\n")
21079 (point-at-bol)))))
21080 beg end)
21081 ;; Determine boundaries of changes.
21082 (if (org-region-active-p)
21083 (setq beg (funcall skip-blanks (region-beginning))
21084 end (copy-marker (region-end)))
21085 (setq beg (funcall skip-blanks (point-at-bol))
21086 end (copy-marker (point-at-eol))))
21087 ;; Depending on the starting line, choose an action on the text
21088 ;; between BEG and END.
21089 (org-with-limited-levels
21090 (save-excursion
21091 (goto-char beg)
21092 (cond
21093 ;; Case 1. Start at an item: de-itemize. Note that it only
21094 ;; happens when a region is active: `org-ctrl-c-minus'
21095 ;; would call `org-cycle-list-bullet' otherwise.
21096 ((org-at-item-p)
21097 (while (< (point) end)
21098 (when (org-at-item-p)
21099 (skip-chars-forward " \t")
21100 (delete-region (point) (match-end 0)))
21101 (forward-line)))
21102 ;; Case 2. Start at an heading: convert to items.
21103 ((org-at-heading-p)
21104 (let* ((bul (org-list-bullet-string "-"))
21105 (bul-len (length bul))
21106 (done (org-entry-is-done-p))
21107 (todo (org-entry-is-todo-p))
21108 ;; Indentation of the first heading. It should be
21109 ;; relative to the indentation of its parent, if any.
21110 (start-ind (save-excursion
21111 (cond
21112 ((not org-adapt-indentation) 0)
21113 ((not (outline-previous-heading)) 0)
21114 (t (length (match-string 0))))))
21115 ;; Level of first heading. Further headings will be
21116 ;; compared to it to determine hierarchy in the list.
21117 (ref-level (org-reduced-level (org-outline-level))))
21118 (when (or done todo) (org-todo ""))
21119 (while (< (point) end)
21120 (let* ((level (org-reduced-level (org-outline-level)))
21121 (delta (max 0 (- level ref-level))))
21122 ;; If current headline is less indented than the first
21123 ;; one, set it as reference, in order to preserve
21124 ;; subtrees.
21125 (when (< level ref-level) (setq ref-level level))
21126 (replace-match bul t t)
21127 (org-indent-line-to (+ start-ind (* delta bul-len)))
21128 (when (or done todo)
21129 (let* ((struct (org-list-struct))
21130 (old (copy-tree struct)))
21131 (org-list-set-checkbox (line-beginning-position)
21132 struct
21133 (if done "[X]" "[ ]"))
21134 (org-list-write-struct struct
21135 (org-list-parents-alist struct)
21136 old)))
21137 ;; Ensure all text down to END (or SECTION-END) belongs
21138 ;; to the newly created item.
21139 (let ((section-end (save-excursion
21140 (or (outline-next-heading) (point)))))
21141 (forward-line)
21142 (funcall shift-text
21143 (+ start-ind (* (1+ delta) bul-len))
21144 (min end section-end)))))))
21145 ;; Case 3. Normal line with ARG: make the first line of region
21146 ;; an item, and shift indentation of others lines to
21147 ;; set them as item's body.
21148 (arg (let* ((bul (org-list-bullet-string "-"))
21149 (bul-len (length bul))
21150 (ref-ind (org-get-indentation)))
21151 (skip-chars-forward " \t")
21152 (insert bul)
21153 (forward-line)
21154 (while (< (point) end)
21155 ;; Ensure that lines less indented than first one
21156 ;; still get included in item body.
21157 (funcall shift-text
21158 (+ ref-ind bul-len)
21159 (min end (save-excursion (or (outline-next-heading)
21160 (point)))))
21161 (forward-line))))
21162 ;; Case 4. Normal line without ARG: turn each non-item line
21163 ;; into an item.
21165 (while (< (point) end)
21166 (unless (or (org-at-heading-p) (org-at-item-p))
21167 (if (looking-at "\\([ \t]*\\)\\(\\S-\\)")
21168 (replace-match
21169 (concat "\\1" (org-list-bullet-string "-") "\\2"))))
21170 (forward-line))))))))
21172 (defun org-toggle-heading (&optional nstars)
21173 "Convert headings to normal text, or items or text to headings.
21174 If there is no active region, only convert the current line.
21176 With a \\[universal-argument] prefix, convert the whole list at
21177 point into heading.
21179 In a region:
21181 - If the first non blank line is a headline, remove the stars
21182 from all headlines in the region.
21184 - If it is a normal line, turn each and every normal line (i.e.,
21185 not an heading or an item) in the region into headings. If you
21186 want to convert only the first line of this region, use one
21187 universal prefix argument.
21189 - If it is a plain list item, turn all plain list items into headings.
21191 When converting a line into a heading, the number of stars is chosen
21192 such that the lines become children of the current entry. However,
21193 when a numeric prefix argument is given, its value determines the
21194 number of stars to add."
21195 (interactive "P")
21196 (let ((skip-blanks
21197 (function
21198 ;; Return beginning of first non-blank line, starting from
21199 ;; line at POS.
21200 (lambda (pos)
21201 (save-excursion
21202 (goto-char pos)
21203 (while (org-at-comment-p) (forward-line))
21204 (skip-chars-forward " \r\t\n")
21205 (point-at-bol)))))
21206 beg end toggled)
21207 ;; Determine boundaries of changes. If a universal prefix has
21208 ;; been given, put the list in a region. If region ends at a bol,
21209 ;; do not consider the last line to be in the region.
21211 (when (and current-prefix-arg (org-at-item-p))
21212 (if (listp current-prefix-arg) (setq current-prefix-arg 1))
21213 (org-mark-element))
21215 (if (org-region-active-p)
21216 (setq beg (funcall skip-blanks (region-beginning))
21217 end (copy-marker (save-excursion
21218 (goto-char (region-end))
21219 (if (bolp) (point) (point-at-eol)))))
21220 (setq beg (funcall skip-blanks (point-at-bol))
21221 end (copy-marker (point-at-eol))))
21222 ;; Ensure inline tasks don't count as headings.
21223 (org-with-limited-levels
21224 (save-excursion
21225 (goto-char beg)
21226 (cond
21227 ;; Case 1. Started at an heading: de-star headings.
21228 ((org-at-heading-p)
21229 (while (< (point) end)
21230 (when (org-at-heading-p t)
21231 (looking-at org-outline-regexp) (replace-match "")
21232 (setq toggled t))
21233 (forward-line)))
21234 ;; Case 2. Started at an item: change items into headlines.
21235 ;; One star will be added by `org-list-to-subtree'.
21236 ((org-at-item-p)
21237 (while (< (point) end)
21238 (when (org-at-item-p)
21239 ;; Pay attention to cases when region ends before list.
21240 (let* ((struct (org-list-struct))
21241 (list-end (min (org-list-get-bottom-point struct) (1+ end))))
21242 (save-restriction
21243 (narrow-to-region (point) list-end)
21244 (insert (org-list-to-subtree (org-list-parse-list t)))))
21245 (setq toggled t))
21246 (forward-line)))
21247 ;; Case 3. Started at normal text: make every line an heading,
21248 ;; skipping headlines and items.
21249 (t (let* ((stars
21250 (make-string
21251 (if (numberp nstars) nstars (or (org-current-level) 0)) ?*))
21252 (add-stars
21253 (cond (nstars "") ; stars from prefix only
21254 ((equal stars "") "*") ; before first heading
21255 (org-odd-levels-only "**") ; inside heading, odd
21256 (t "*"))) ; inside heading, oddeven
21257 (rpl (concat stars add-stars " "))
21258 (lend (if (listp nstars) (save-excursion (end-of-line) (point)))))
21259 (while (< (point) (if (equal nstars '(4)) lend end))
21260 (when (and (not (or (org-at-heading-p) (org-at-item-p) (org-at-comment-p)))
21261 (looking-at "\\([ \t]*\\)\\(\\S-\\)"))
21262 (replace-match (concat rpl (match-string 2))) (setq toggled t))
21263 (forward-line)))))))
21264 (unless toggled (message "Cannot toggle heading from here"))))
21266 (defun org-meta-return (&optional arg)
21267 "Insert a new heading or wrap a region in a table.
21268 Calls `org-insert-heading' or `org-table-wrap-region', depending
21269 on context. See the individual commands for more information."
21270 (interactive "P")
21271 (org-check-before-invisible-edit 'insert)
21272 (or (run-hook-with-args-until-success 'org-metareturn-hook)
21273 (let* ((element (org-element-at-point))
21274 (type (org-element-type element)))
21275 (when (eq type 'table-row)
21276 (setq element (org-element-property :parent element))
21277 (setq type 'table))
21278 (if (and (eq type 'table)
21279 (eq (org-element-property :type element) 'org)
21280 (>= (point) (org-element-property :contents-begin element))
21281 (< (point) (org-element-property :contents-end element)))
21282 (call-interactively 'org-table-wrap-region)
21283 (call-interactively 'org-insert-heading)))))
21285 ;;; Menu entries
21287 (defsubst org-in-subtree-not-table-p ()
21288 "Are we in a subtree and not in a table?"
21289 (and (not (org-before-first-heading-p))
21290 (not (org-at-table-p))))
21292 ;; Define the Org-mode menus
21293 (easy-menu-define org-tbl-menu org-mode-map "Tbl menu"
21294 '("Tbl"
21295 ["Align" org-ctrl-c-ctrl-c :active (org-at-table-p)]
21296 ["Next Field" org-cycle (org-at-table-p)]
21297 ["Previous Field" org-shifttab (org-at-table-p)]
21298 ["Next Row" org-return (org-at-table-p)]
21299 "--"
21300 ["Blank Field" org-table-blank-field (org-at-table-p)]
21301 ["Edit Field" org-table-edit-field (org-at-table-p)]
21302 ["Copy Field from Above" org-table-copy-down (org-at-table-p)]
21303 "--"
21304 ("Column"
21305 ["Move Column Left" org-metaleft (org-at-table-p)]
21306 ["Move Column Right" org-metaright (org-at-table-p)]
21307 ["Delete Column" org-shiftmetaleft (org-at-table-p)]
21308 ["Insert Column" org-shiftmetaright (org-at-table-p)])
21309 ("Row"
21310 ["Move Row Up" org-metaup (org-at-table-p)]
21311 ["Move Row Down" org-metadown (org-at-table-p)]
21312 ["Delete Row" org-shiftmetaup (org-at-table-p)]
21313 ["Insert Row" org-shiftmetadown (org-at-table-p)]
21314 ["Sort lines in region" org-table-sort-lines (org-at-table-p)]
21315 "--"
21316 ["Insert Hline" org-ctrl-c-minus (org-at-table-p)])
21317 ("Rectangle"
21318 ["Copy Rectangle" org-copy-special (org-at-table-p)]
21319 ["Cut Rectangle" org-cut-special (org-at-table-p)]
21320 ["Paste Rectangle" org-paste-special (org-at-table-p)]
21321 ["Fill Rectangle" org-table-wrap-region (org-at-table-p)])
21322 "--"
21323 ("Calculate"
21324 ["Set Column Formula" org-table-eval-formula (org-at-table-p)]
21325 ["Set Field Formula" (org-table-eval-formula '(4)) :active (org-at-table-p) :keys "C-u C-c ="]
21326 ["Edit Formulas" org-edit-special (org-at-table-p)]
21327 "--"
21328 ["Recalculate line" org-table-recalculate (org-at-table-p)]
21329 ["Recalculate all" (lambda () (interactive) (org-table-recalculate '(4))) :active (org-at-table-p) :keys "C-u C-c *"]
21330 ["Iterate all" (lambda () (interactive) (org-table-recalculate '(16))) :active (org-at-table-p) :keys "C-u C-u C-c *"]
21331 "--"
21332 ["Toggle Recalculate Mark" org-table-rotate-recalc-marks (org-at-table-p)]
21333 "--"
21334 ["Sum Column/Rectangle" org-table-sum
21335 (or (org-at-table-p) (org-region-active-p))]
21336 ["Which Column?" org-table-current-column (org-at-table-p)])
21337 ["Debug Formulas"
21338 org-table-toggle-formula-debugger
21339 :style toggle :selected (org-bound-and-true-p org-table-formula-debug)]
21340 ["Show Col/Row Numbers"
21341 org-table-toggle-coordinate-overlays
21342 :style toggle
21343 :selected (org-bound-and-true-p org-table-overlay-coordinates)]
21344 "--"
21345 ["Create" org-table-create (and (not (org-at-table-p))
21346 org-enable-table-editor)]
21347 ["Convert Region" org-table-convert-region (not (org-at-table-p 'any))]
21348 ["Import from File" org-table-import (not (org-at-table-p))]
21349 ["Export to File" org-table-export (org-at-table-p)]
21350 "--"
21351 ["Create/Convert from/to table.el" org-table-create-with-table.el t]
21352 "--"
21353 ("Plot"
21354 ["Ascii plot" orgtbl-ascii-plot :active (org-at-table-p) :keys "C-c \" a"]
21355 ["Gnuplot" org-plot/gnuplot :active (org-at-table-p) :keys "C-c \" g"])))
21357 (easy-menu-define org-org-menu org-mode-map "Org menu"
21358 '("Org"
21359 ("Show/Hide"
21360 ["Cycle Visibility" org-cycle :active (or (bobp) (outline-on-heading-p))]
21361 ["Cycle Global Visibility" org-shifttab :active (not (org-at-table-p))]
21362 ["Sparse Tree..." org-sparse-tree t]
21363 ["Reveal Context" org-reveal t]
21364 ["Show All" show-all t]
21365 "--"
21366 ["Subtree to indirect buffer" org-tree-to-indirect-buffer t])
21367 "--"
21368 ["New Heading" org-insert-heading t]
21369 ("Navigate Headings"
21370 ["Up" outline-up-heading t]
21371 ["Next" outline-next-visible-heading t]
21372 ["Previous" outline-previous-visible-heading t]
21373 ["Next Same Level" outline-forward-same-level t]
21374 ["Previous Same Level" outline-backward-same-level t]
21375 "--"
21376 ["Jump" org-goto t])
21377 ("Edit Structure"
21378 ["Refile Subtree" org-refile (org-in-subtree-not-table-p)]
21379 "--"
21380 ["Move Subtree Up" org-metaup (org-at-heading-p)]
21381 ["Move Subtree Down" org-metadown (org-at-heading-p)]
21382 "--"
21383 ["Copy Subtree" org-copy-special (org-in-subtree-not-table-p)]
21384 ["Cut Subtree" org-cut-special (org-in-subtree-not-table-p)]
21385 ["Paste Subtree" org-paste-special (not (org-at-table-p))]
21386 "--"
21387 ["Clone subtree, shift time" org-clone-subtree-with-time-shift t]
21388 "--"
21389 ["Copy visible text" org-copy-visible t]
21390 "--"
21391 ["Promote Heading" org-metaleft (org-in-subtree-not-table-p)]
21392 ["Promote Subtree" org-shiftmetaleft (org-in-subtree-not-table-p)]
21393 ["Demote Heading" org-metaright (org-in-subtree-not-table-p)]
21394 ["Demote Subtree" org-shiftmetaright (org-in-subtree-not-table-p)]
21395 "--"
21396 ["Sort Region/Children" org-sort t]
21397 "--"
21398 ["Convert to odd levels" org-convert-to-odd-levels t]
21399 ["Convert to odd/even levels" org-convert-to-oddeven-levels t])
21400 ("Editing"
21401 ["Emphasis..." org-emphasize t]
21402 ["Edit Source Example" org-edit-special t]
21403 "--"
21404 ["Footnote new/jump" org-footnote-action t]
21405 ["Footnote extra" (org-footnote-action t) :active t :keys "C-u C-c C-x f"])
21406 ("Archive"
21407 ["Archive (default method)" org-archive-subtree-default (org-in-subtree-not-table-p)]
21408 "--"
21409 ["Move Subtree to Archive file" org-advertized-archive-subtree (org-in-subtree-not-table-p)]
21410 ["Toggle ARCHIVE tag" org-toggle-archive-tag (org-in-subtree-not-table-p)]
21411 ["Move subtree to Archive sibling" org-archive-to-archive-sibling (org-in-subtree-not-table-p)]
21413 "--"
21414 ("Hyperlinks"
21415 ["Store Link (Global)" org-store-link t]
21416 ["Find existing link to here" org-occur-link-in-agenda-files t]
21417 ["Insert Link" org-insert-link t]
21418 ["Follow Link" org-open-at-point t]
21419 "--"
21420 ["Next link" org-next-link t]
21421 ["Previous link" org-previous-link t]
21422 "--"
21423 ["Descriptive Links"
21424 org-toggle-link-display
21425 :style radio
21426 :selected org-descriptive-links
21428 ["Literal Links"
21429 org-toggle-link-display
21430 :style radio
21431 :selected (not org-descriptive-links)])
21432 "--"
21433 ("TODO Lists"
21434 ["TODO/DONE/-" org-todo t]
21435 ("Select keyword"
21436 ["Next keyword" org-shiftright (org-at-heading-p)]
21437 ["Previous keyword" org-shiftleft (org-at-heading-p)]
21438 ["Complete Keyword" pcomplete (assq :todo-keyword (org-context))]
21439 ["Next keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-at-heading-p))]
21440 ["Previous keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-at-heading-p))])
21441 ["Show TODO Tree" org-show-todo-tree :active t :keys "C-c / t"]
21442 ["Global TODO list" org-todo-list :active t :keys "C-c a t"]
21443 "--"
21444 ["Enforce dependencies" (customize-variable 'org-enforce-todo-dependencies)
21445 :selected org-enforce-todo-dependencies :style toggle :active t]
21446 "Settings for tree at point"
21447 ["Do Children sequentially" org-toggle-ordered-property :style radio
21448 :selected (org-entry-get nil "ORDERED")
21449 :active org-enforce-todo-dependencies :keys "C-c C-x o"]
21450 ["Do Children parallel" org-toggle-ordered-property :style radio
21451 :selected (not (org-entry-get nil "ORDERED"))
21452 :active org-enforce-todo-dependencies :keys "C-c C-x o"]
21453 "--"
21454 ["Set Priority" org-priority t]
21455 ["Priority Up" org-shiftup t]
21456 ["Priority Down" org-shiftdown t]
21457 "--"
21458 ["Get news from all feeds" org-feed-update-all t]
21459 ["Go to the inbox of a feed..." org-feed-goto-inbox t]
21460 ["Customize feeds" (customize-variable 'org-feed-alist) t])
21461 ("TAGS and Properties"
21462 ["Set Tags" org-set-tags-command (not (org-before-first-heading-p))]
21463 ["Change tag in region" org-change-tag-in-region (org-region-active-p)]
21464 "--"
21465 ["Set property" org-set-property (not (org-before-first-heading-p))]
21466 ["Column view of properties" org-columns t]
21467 ["Insert Column View DBlock" org-insert-columns-dblock t])
21468 ("Dates and Scheduling"
21469 ["Timestamp" org-time-stamp (not (org-before-first-heading-p))]
21470 ["Timestamp (inactive)" org-time-stamp-inactive (not (org-before-first-heading-p))]
21471 ("Change Date"
21472 ["1 Day Later" org-shiftright (org-at-timestamp-p)]
21473 ["1 Day Earlier" org-shiftleft (org-at-timestamp-p)]
21474 ["1 ... Later" org-shiftup (org-at-timestamp-p)]
21475 ["1 ... Earlier" org-shiftdown (org-at-timestamp-p)])
21476 ["Compute Time Range" org-evaluate-time-range t]
21477 ["Schedule Item" org-schedule (not (org-before-first-heading-p))]
21478 ["Deadline" org-deadline (not (org-before-first-heading-p))]
21479 "--"
21480 ["Custom time format" org-toggle-time-stamp-overlays
21481 :style radio :selected org-display-custom-times]
21482 "--"
21483 ["Goto Calendar" org-goto-calendar t]
21484 ["Date from Calendar" org-date-from-calendar t]
21485 "--"
21486 ["Start/Restart Timer" org-timer-start t]
21487 ["Pause/Continue Timer" org-timer-pause-or-continue t]
21488 ["Stop Timer" org-timer-pause-or-continue :active t :keys "C-u C-c C-x ,"]
21489 ["Insert Timer String" org-timer t]
21490 ["Insert Timer Item" org-timer-item t])
21491 ("Logging work"
21492 ["Clock in" org-clock-in :active t :keys "C-c C-x C-i"]
21493 ["Switch task" (lambda () (interactive) (org-clock-in '(4))) :active t :keys "C-u C-c C-x C-i"]
21494 ["Clock out" org-clock-out t]
21495 ["Clock cancel" org-clock-cancel t]
21496 "--"
21497 ["Mark as default task" org-clock-mark-default-task t]
21498 ["Clock in, mark as default" (lambda () (interactive) (org-clock-in '(16))) :active t :keys "C-u C-u C-c C-x C-i"]
21499 ["Goto running clock" org-clock-goto t]
21500 "--"
21501 ["Display times" org-clock-display t]
21502 ["Create clock table" org-clock-report t]
21503 "--"
21504 ["Record DONE time"
21505 (progn (setq org-log-done (not org-log-done))
21506 (message "Switching to %s will %s record a timestamp"
21507 (car org-done-keywords)
21508 (if org-log-done "automatically" "not")))
21509 :style toggle :selected org-log-done])
21510 "--"
21511 ["Agenda Command..." org-agenda t]
21512 ["Set Restriction Lock" org-agenda-set-restriction-lock t]
21513 ("File List for Agenda")
21514 ("Special views current file"
21515 ["TODO Tree" org-show-todo-tree t]
21516 ["Check Deadlines" org-check-deadlines t]
21517 ["Timeline" org-timeline t]
21518 ["Tags/Property tree" org-match-sparse-tree t])
21519 "--"
21520 ["Export/Publish..." org-export-dispatch t]
21521 ("LaTeX"
21522 ["Org CDLaTeX mode" org-cdlatex-mode :style toggle
21523 :selected org-cdlatex-mode]
21524 ["Insert Environment" cdlatex-environment (fboundp 'cdlatex-environment)]
21525 ["Insert math symbol" cdlatex-math-symbol (fboundp 'cdlatex-math-symbol)]
21526 ["Modify math symbol" org-cdlatex-math-modify
21527 (org-inside-LaTeX-fragment-p)]
21528 ["Insert citation" org-reftex-citation t]
21529 "--"
21530 ["Template for BEAMER" (org-beamer-insert-options-template) t])
21531 "--"
21532 ("MobileOrg"
21533 ["Push Files and Views" org-mobile-push t]
21534 ["Get Captured and Flagged" org-mobile-pull t]
21535 ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "C-c a ?"]
21536 "--"
21537 ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
21538 "--"
21539 ("Documentation"
21540 ["Show Version" org-version t]
21541 ["Info Documentation" org-info t])
21542 ("Customize"
21543 ["Browse Org Group" org-customize t]
21544 "--"
21545 ["Expand This Menu" org-create-customize-menu
21546 (fboundp 'customize-menu-create)])
21547 ["Send bug report" org-submit-bug-report t]
21548 "--"
21549 ("Refresh/Reload"
21550 ["Refresh setup current buffer" org-mode-restart t]
21551 ["Reload Org (after update)" org-reload t]
21552 ["Reload Org uncompiled" (org-reload t) :active t :keys "C-u C-c C-x !"])
21555 (defun org-info (&optional node)
21556 "Read documentation for Org-mode in the info system.
21557 With optional NODE, go directly to that node."
21558 (interactive)
21559 (info (format "(org)%s" (or node ""))))
21561 ;;;###autoload
21562 (defun org-submit-bug-report ()
21563 "Submit a bug report on Org-mode via mail.
21565 Don't hesitate to report any problems or inaccurate documentation.
21567 If you don't have setup sending mail from (X)Emacs, please copy the
21568 output buffer into your mail program, as it gives us important
21569 information about your Org-mode version and configuration."
21570 (interactive)
21571 (require 'reporter)
21572 (org-load-modules-maybe)
21573 (org-require-autoloaded-modules)
21574 (let ((reporter-prompt-for-summary-p "Bug report subject: "))
21575 (reporter-submit-bug-report
21576 "emacs-orgmode@gnu.org"
21577 (org-version nil 'full)
21578 (let (list)
21579 (save-window-excursion
21580 (org-pop-to-buffer-same-window (get-buffer-create "*Warn about privacy*"))
21581 (delete-other-windows)
21582 (erase-buffer)
21583 (insert "You are about to submit a bug report to the Org-mode mailing list.
21585 We would like to add your full Org-mode and Outline configuration to the
21586 bug report. This greatly simplifies the work of the maintainer and
21587 other experts on the mailing list.
21589 HOWEVER, some variables you have customized may contain private
21590 information. The names of customers, colleagues, or friends, might
21591 appear in the form of file names, tags, todo states, or search strings.
21592 If you answer yes to the prompt, you might want to check and remove
21593 such private information before sending the email.")
21594 (add-text-properties (point-min) (point-max) '(face org-warning))
21595 (when (yes-or-no-p "Include your Org-mode configuration ")
21596 (mapatoms
21597 (lambda (v)
21598 (and (boundp v)
21599 (string-match "\\`\\(org-\\|outline-\\)" (symbol-name v))
21600 (or (and (symbol-value v)
21601 (string-match "\\(-hook\\|-function\\)\\'" (symbol-name v)))
21602 (and
21603 (get v 'custom-type) (get v 'standard-value)
21604 (not (equal (symbol-value v) (eval (car (get v 'standard-value)))))))
21605 (push v list)))))
21606 (kill-buffer (get-buffer "*Warn about privacy*"))
21607 list))
21608 nil nil
21609 "Remember to cover the basics, that is, what you expected to happen and
21610 what in fact did happen. You don't know how to make a good report? See
21612 http://orgmode.org/manual/Feedback.html#Feedback
21614 Your bug report will be posted to the Org-mode mailing list.
21615 ------------------------------------------------------------------------")
21616 (save-excursion
21617 (if (re-search-backward "^\\(Subject: \\)Org-mode version \\(.*?\\);[ \t]*\\(.*\\)" nil t)
21618 (replace-match "\\1Bug: \\3 [\\2]")))))
21621 (defun org-install-agenda-files-menu ()
21622 (let ((bl (buffer-list)))
21623 (save-excursion
21624 (while bl
21625 (set-buffer (pop bl))
21626 (if (derived-mode-p 'org-mode) (setq bl nil)))
21627 (when (derived-mode-p 'org-mode)
21628 (easy-menu-change
21629 '("Org") "File List for Agenda"
21630 (append
21631 (list
21632 ["Edit File List" (org-edit-agenda-file-list) t]
21633 ["Add/Move Current File to Front of List" org-agenda-file-to-front t]
21634 ["Remove Current File from List" org-remove-file t]
21635 ["Cycle through agenda files" org-cycle-agenda-files t]
21636 ["Occur in all agenda files" org-occur-in-agenda-files t]
21637 "--")
21638 (mapcar 'org-file-menu-entry (org-agenda-files t))))))))
21640 ;;;; Documentation
21642 (defun org-require-autoloaded-modules ()
21643 (interactive)
21644 (mapc 'require
21645 '(org-agenda org-archive org-attach org-clock org-colview org-id
21646 org-table org-timer)))
21648 ;;;###autoload
21649 (defun org-reload (&optional uncompiled)
21650 "Reload all org lisp files.
21651 With prefix arg UNCOMPILED, load the uncompiled versions."
21652 (interactive "P")
21653 (require 'loadhist)
21654 (let* ((org-dir (org-find-library-dir "org"))
21655 (contrib-dir (or (org-find-library-dir "org-contribdir") org-dir))
21656 (feature-re "^\\(org\\|ob\\|ox\\)\\(-.*\\)?")
21657 (remove-re (mapconcat 'identity
21658 (mapcar (lambda (f) (concat "^" f "$"))
21659 (list (if (featurep 'xemacs)
21660 "org-colview"
21661 "org-colview-xemacs")
21662 "org" "org-loaddefs" "org-version"))
21663 "\\|"))
21664 (feats (delete-dups
21665 (mapcar 'file-name-sans-extension
21666 (mapcar 'file-name-nondirectory
21667 (delq nil
21668 (mapcar 'feature-file
21669 features))))))
21670 (lfeat (append
21671 (sort
21672 (setq feats
21673 (delq nil (mapcar
21674 (lambda (f)
21675 (if (and (string-match feature-re f)
21676 (not (string-match remove-re f)))
21677 f nil))
21678 feats)))
21679 'string-lessp)
21680 (list "org-version" "org")))
21681 (load-suffixes (when (boundp 'load-suffixes) load-suffixes))
21682 (load-suffixes (if uncompiled (reverse load-suffixes) load-suffixes))
21683 load-uncore load-misses)
21684 (setq load-misses
21685 (delq 't
21686 (mapcar (lambda (f)
21687 (or (org-load-noerror-mustsuffix (concat org-dir f))
21688 (and (string= org-dir contrib-dir)
21689 (org-load-noerror-mustsuffix (concat contrib-dir f)))
21690 (and (org-load-noerror-mustsuffix (concat (org-find-library-dir f) f))
21691 (add-to-list 'load-uncore f 'append)
21694 lfeat)))
21695 (if load-uncore
21696 (message "The following feature%s found in load-path, please check if that's correct:\n%s"
21697 (if (> (length load-uncore) 1) "s were" " was") load-uncore))
21698 (if load-misses
21699 (message "Some error occurred while reloading Org feature%s\n%s\nPlease check *Messages*!\n%s"
21700 (if (> (length load-misses) 1) "s" "") load-misses (org-version nil 'full))
21701 (message "Successfully reloaded Org\n%s" (org-version nil 'full)))))
21703 ;;;###autoload
21704 (defun org-customize ()
21705 "Call the customize function with org as argument."
21706 (interactive)
21707 (org-load-modules-maybe)
21708 (org-require-autoloaded-modules)
21709 (customize-browse 'org))
21711 (defun org-create-customize-menu ()
21712 "Create a full customization menu for Org-mode, insert it into the menu."
21713 (interactive)
21714 (org-load-modules-maybe)
21715 (org-require-autoloaded-modules)
21716 (if (fboundp 'customize-menu-create)
21717 (progn
21718 (easy-menu-change
21719 '("Org") "Customize"
21720 `(["Browse Org group" org-customize t]
21721 "--"
21722 ,(customize-menu-create 'org)
21723 ["Set" Custom-set t]
21724 ["Save" Custom-save t]
21725 ["Reset to Current" Custom-reset-current t]
21726 ["Reset to Saved" Custom-reset-saved t]
21727 ["Reset to Standard Settings" Custom-reset-standard t]))
21728 (message "\"Org\"-menu now contains full customization menu"))
21729 (error "Cannot expand menu (outdated version of cus-edit.el)")))
21731 ;;;; Miscellaneous stuff
21733 ;;; Generally useful functions
21735 (defsubst org-get-at-eol (property n)
21736 "Get text property PROPERTY at the end of line less N characters."
21737 (get-text-property (- (point-at-eol) n) property))
21739 (defun org-find-text-property-in-string (prop s)
21740 "Return the first non-nil value of property PROP in string S."
21741 (or (get-text-property 0 prop s)
21742 (get-text-property (or (next-single-property-change 0 prop s) 0)
21743 prop s)))
21745 (defun org-display-warning (message) ;; Copied from Emacs-Muse
21746 "Display the given MESSAGE as a warning."
21747 (if (fboundp 'display-warning)
21748 (display-warning 'org message
21749 (if (featurep 'xemacs) 'warning :warning))
21750 (let ((buf (get-buffer-create "*Org warnings*")))
21751 (with-current-buffer buf
21752 (goto-char (point-max))
21753 (insert "Warning (Org): " message)
21754 (unless (bolp)
21755 (newline)))
21756 (display-buffer buf)
21757 (sit-for 0))))
21759 (defun org-eval (form)
21760 "Eval FORM and return result."
21761 (condition-case error
21762 (eval form)
21763 (error (format "%%![Error: %s]" error))))
21765 (defun org-in-clocktable-p ()
21766 "Check if the cursor is in a clocktable."
21767 (let ((pos (point)) start)
21768 (save-excursion
21769 (end-of-line 1)
21770 (and (re-search-backward "^[ \t]*#\\+BEGIN:[ \t]+clocktable" nil t)
21771 (setq start (match-beginning 0))
21772 (re-search-forward "^[ \t]*#\\+END:.*" nil t)
21773 (>= (match-end 0) pos)
21774 start))))
21776 (defun org-in-verbatim-emphasis ()
21777 (save-match-data
21778 (and (org-in-regexp org-emph-re 2)
21779 (>= (point) (match-beginning 3))
21780 (<= (point) (match-end 4))
21781 (member (match-string 3) '("=" "~")))))
21783 (defun org-goto-marker-or-bmk (marker &optional bookmark)
21784 "Go to MARKER, widen if necessary. When marker is not live, try BOOKMARK."
21785 (if (and marker (marker-buffer marker)
21786 (buffer-live-p (marker-buffer marker)))
21787 (progn
21788 (org-pop-to-buffer-same-window (marker-buffer marker))
21789 (if (or (> marker (point-max)) (< marker (point-min)))
21790 (widen))
21791 (goto-char marker)
21792 (org-show-context 'org-goto))
21793 (if bookmark
21794 (bookmark-jump bookmark)
21795 (error "Cannot find location"))))
21797 (defun org-quote-csv-field (s)
21798 "Quote field for inclusion in CSV material."
21799 (if (string-match "[\",]" s)
21800 (concat "\"" (mapconcat 'identity (split-string s "\"") "\"\"") "\"")
21803 (defun org-force-self-insert (N)
21804 "Needed to enforce self-insert under remapping."
21805 (interactive "p")
21806 (self-insert-command N))
21808 (defun org-string-width (s)
21809 "Compute width of string, ignoring invisible characters.
21810 This ignores character with invisibility property `org-link', and also
21811 characters with property `org-cwidth', because these will become invisible
21812 upon the next fontification round."
21813 (let (b l)
21814 (when (or (eq t buffer-invisibility-spec)
21815 (assq 'org-link buffer-invisibility-spec))
21816 (while (setq b (text-property-any 0 (length s)
21817 'invisible 'org-link s))
21818 (setq s (concat (substring s 0 b)
21819 (substring s (or (next-single-property-change
21820 b 'invisible s) (length s)))))))
21821 (while (setq b (text-property-any 0 (length s) 'org-cwidth t s))
21822 (setq s (concat (substring s 0 b)
21823 (substring s (or (next-single-property-change
21824 b 'org-cwidth s) (length s))))))
21825 (setq l (string-width s) b -1)
21826 (while (setq b (text-property-any (1+ b) (length s) 'org-dwidth t s))
21827 (setq l (- l (get-text-property b 'org-dwidth-n s))))
21830 (defun org-shorten-string (s maxlength)
21831 "Shorten string S so tht it is no longer than MAXLENGTH characters.
21832 If the string is shorter or has length MAXLENGTH, just return the
21833 original string. If it is longer, the functions finds a space in the
21834 string, breaks this string off at that locations and adds three dots
21835 as ellipsis. Including the ellipsis, the string will not be longer
21836 than MAXLENGTH. If finding a good breaking point in the string does
21837 not work, the string is just chopped off in the middle of a word
21838 if necessary."
21839 (if (<= (length s) maxlength)
21841 (let* ((n (max (- maxlength 4) 1))
21842 (re (concat "\\`\\(.\\{1," (int-to-string n) "\\}[^ ]\\)\\([ ]\\|\\'\\)")))
21843 (if (string-match re s)
21844 (concat (match-string 1 s) "...")
21845 (concat (substring s 0 (max (- maxlength 3) 0)) "...")))))
21847 (defun org-get-indentation (&optional line)
21848 "Get the indentation of the current line, interpreting tabs.
21849 When LINE is given, assume it represents a line and compute its indentation."
21850 (if line
21851 (if (string-match "^ *" (org-remove-tabs line))
21852 (match-end 0))
21853 (save-excursion
21854 (beginning-of-line 1)
21855 (skip-chars-forward " \t")
21856 (current-column))))
21858 (defun org-get-string-indentation (s)
21859 "What indentation has S due to SPACE and TAB at the beginning of the string?"
21860 (let ((n -1) (i 0) (w tab-width) c)
21861 (catch 'exit
21862 (while (< (setq n (1+ n)) (length s))
21863 (setq c (aref s n))
21864 (cond ((= c ?\ ) (setq i (1+ i)))
21865 ((= c ?\t) (setq i (* (/ (+ w i) w) w)))
21866 (t (throw 'exit t)))))
21869 (defun org-remove-tabs (s &optional width)
21870 "Replace tabulators in S with spaces.
21871 Assumes that s is a single line, starting in column 0."
21872 (setq width (or width tab-width))
21873 (while (string-match "\t" s)
21874 (setq s (replace-match
21875 (make-string
21876 (- (* width (/ (+ (match-beginning 0) width) width))
21877 (match-beginning 0)) ?\ )
21878 t t s)))
21881 (defun org-fix-indentation (line ind)
21882 "Fix indentation in LINE.
21883 IND is a cons cell with target and minimum indentation.
21884 If the current indentation in LINE is smaller than the minimum,
21885 leave it alone. If it is larger than ind, set it to the target."
21886 (let* ((l (org-remove-tabs line))
21887 (i (org-get-indentation l))
21888 (i1 (car ind)) (i2 (cdr ind)))
21889 (if (>= i i2) (setq l (substring line i2)))
21890 (if (> i1 0)
21891 (concat (make-string i1 ?\ ) l)
21892 l)))
21894 (defun org-remove-indentation (code &optional n)
21895 "Remove the maximum common indentation from the lines in CODE.
21896 N may optionally be the number of spaces to remove."
21897 (with-temp-buffer
21898 (insert code)
21899 (org-do-remove-indentation n)
21900 (buffer-string)))
21902 (defun org-do-remove-indentation (&optional n)
21903 "Remove the maximum common indentation from the buffer."
21904 (untabify (point-min) (point-max))
21905 (let ((min 10000) re)
21906 (if n
21907 (setq min n)
21908 (goto-char (point-min))
21909 (while (re-search-forward "^ *[^ \n]" nil t)
21910 (setq min (min min (1- (- (match-end 0) (match-beginning 0)))))))
21911 (unless (or (= min 0) (= min 10000))
21912 (setq re (format "^ \\{%d\\}" min))
21913 (goto-char (point-min))
21914 (while (re-search-forward re nil t)
21915 (replace-match "")
21916 (end-of-line 1))
21917 min)))
21919 (defun org-fill-template (template alist)
21920 "Find each %key of ALIST in TEMPLATE and replace it."
21921 (let ((case-fold-search nil)
21922 entry key value)
21923 (setq alist (sort (copy-sequence alist)
21924 (lambda (a b) (< (length (car a)) (length (car b))))))
21925 (while (setq entry (pop alist))
21926 (setq template
21927 (replace-regexp-in-string
21928 (concat "%" (regexp-quote (car entry)))
21929 (or (cdr entry) "") template t t)))
21930 template))
21932 (defun org-base-buffer (buffer)
21933 "Return the base buffer of BUFFER, if it has one. Else return the buffer."
21934 (if (not buffer)
21935 buffer
21936 (or (buffer-base-buffer buffer)
21937 buffer)))
21939 (defun org-wrap (string &optional width lines)
21940 "Wrap string to either a number of lines, or a width in characters.
21941 If WIDTH is non-nil, the string is wrapped to that width, however many lines
21942 that costs. If there is a word longer than WIDTH, the text is actually
21943 wrapped to the length of that word.
21944 IF WIDTH is nil and LINES is non-nil, the string is forced into at most that
21945 many lines, whatever width that takes.
21946 The return value is a list of lines, without newlines at the end."
21947 (let* ((words (org-split-string string "[ \t\n]+"))
21948 (maxword (apply 'max (mapcar 'org-string-width words)))
21949 w ll)
21950 (cond (width
21951 (org-do-wrap words (max maxword width)))
21952 (lines
21953 (setq w maxword)
21954 (setq ll (org-do-wrap words maxword))
21955 (if (<= (length ll) lines)
21957 (setq ll words)
21958 (while (> (length ll) lines)
21959 (setq w (1+ w))
21960 (setq ll (org-do-wrap words w)))
21961 ll))
21962 (t (error "Cannot wrap this")))))
21964 (defun org-do-wrap (words width)
21965 "Create lines of maximum width WIDTH (in characters) from word list WORDS."
21966 (let (lines line)
21967 (while words
21968 (setq line (pop words))
21969 (while (and words (< (+ (length line) (length (car words))) width))
21970 (setq line (concat line " " (pop words))))
21971 (setq lines (push line lines)))
21972 (nreverse lines)))
21974 (defun org-split-string (string &optional separators)
21975 "Splits STRING into substrings at SEPARATORS.
21976 No empty strings are returned if there are matches at the beginning
21977 and end of string."
21978 (let ((rexp (or separators "[ \f\t\n\r\v]+"))
21979 (start 0)
21980 notfirst
21981 (list nil))
21982 (while (and (string-match rexp string
21983 (if (and notfirst
21984 (= start (match-beginning 0))
21985 (< start (length string)))
21986 (1+ start) start))
21987 (< (match-beginning 0) (length string)))
21988 (setq notfirst t)
21989 (or (eq (match-beginning 0) 0)
21990 (and (eq (match-beginning 0) (match-end 0))
21991 (eq (match-beginning 0) start))
21992 (setq list
21993 (cons (substring string start (match-beginning 0))
21994 list)))
21995 (setq start (match-end 0)))
21996 (or (eq start (length string))
21997 (setq list
21998 (cons (substring string start)
21999 list)))
22000 (nreverse list)))
22002 (defun org-quote-vert (s)
22003 "Replace \"|\" with \"\\vert\"."
22004 (while (string-match "|" s)
22005 (setq s (replace-match "\\vert" t t s)))
22008 (defun org-uuidgen-p (s)
22009 "Is S an ID created by UUIDGEN?"
22010 (string-match "\\`[0-9a-f]\\{8\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{12\\}\\'" (downcase s)))
22012 (defun org-in-src-block-p (&optional inside)
22013 "Whether point is in a code source block.
22014 When INSIDE is non-nil, don't consider we are within a src block
22015 when point is at #+BEGIN_SRC or #+END_SRC."
22016 (let ((case-fold-search t) ov)
22017 (or (and (eq (get-char-property (point) 'src-block) t))
22018 (and (not inside)
22019 (save-match-data
22020 (save-excursion
22021 (beginning-of-line)
22022 (looking-at ".*#\\+\\(begin\\|end\\)_src")))))))
22024 (defun org-context ()
22025 "Return a list of contexts of the current cursor position.
22026 If several contexts apply, all are returned.
22027 Each context entry is a list with a symbol naming the context, and
22028 two positions indicating start and end of the context. Possible
22029 contexts are:
22031 :headline anywhere in a headline
22032 :headline-stars on the leading stars in a headline
22033 :todo-keyword on a TODO keyword (including DONE) in a headline
22034 :tags on the TAGS in a headline
22035 :priority on the priority cookie in a headline
22036 :item on the first line of a plain list item
22037 :item-bullet on the bullet/number of a plain list item
22038 :checkbox on the checkbox in a plain list item
22039 :table in an org-mode table
22040 :table-special on a special filed in a table
22041 :table-table in a table.el table
22042 :clocktable in a clocktable
22043 :src-block in a source block
22044 :link on a hyperlink
22045 :keyword on a keyword: SCHEDULED, DEADLINE, CLOSE, COMMENT.
22046 :target on a <<target>>
22047 :radio-target on a <<<radio-target>>>
22048 :latex-fragment on a LaTeX fragment
22049 :latex-preview on a LaTeX fragment with overlaid preview image
22051 This function expects the position to be visible because it uses font-lock
22052 faces as a help to recognize the following contexts: :table-special, :link,
22053 and :keyword."
22054 (let* ((f (get-text-property (point) 'face))
22055 (faces (if (listp f) f (list f)))
22056 (case-fold-search t)
22057 (p (point)) clist o)
22058 ;; First the large context
22059 (cond
22060 ((org-at-heading-p t)
22061 (push (list :headline (point-at-bol) (point-at-eol)) clist)
22062 (when (progn
22063 (beginning-of-line 1)
22064 (looking-at org-todo-line-tags-regexp))
22065 (push (org-point-in-group p 1 :headline-stars) clist)
22066 (push (org-point-in-group p 2 :todo-keyword) clist)
22067 (push (org-point-in-group p 4 :tags) clist))
22068 (goto-char p)
22069 (skip-chars-backward "^[\n\r \t") (or (bobp) (backward-char 1))
22070 (if (looking-at "\\[#[A-Z0-9]\\]")
22071 (push (org-point-in-group p 0 :priority) clist)))
22073 ((org-at-item-p)
22074 (push (org-point-in-group p 2 :item-bullet) clist)
22075 (push (list :item (point-at-bol)
22076 (save-excursion (org-end-of-item) (point)))
22077 clist)
22078 (and (org-at-item-checkbox-p)
22079 (push (org-point-in-group p 0 :checkbox) clist)))
22081 ((org-at-table-p)
22082 (push (list :table (org-table-begin) (org-table-end)) clist)
22083 (if (memq 'org-formula faces)
22084 (push (list :table-special
22085 (previous-single-property-change p 'face)
22086 (next-single-property-change p 'face)) clist)))
22087 ((org-at-table-p 'any)
22088 (push (list :table-table) clist)))
22089 (goto-char p)
22091 (let ((case-fold-search t))
22092 ;; New the "medium" contexts: clocktables, source blocks
22093 (cond ((org-in-clocktable-p)
22094 (push (list :clocktable
22095 (and (or (looking-at "[ \t]*\\(#\\+BEGIN: clocktable\\)")
22096 (re-search-backward "[ \t]*\\(#+BEGIN: clocktable\\)" nil t))
22097 (match-beginning 1))
22098 (and (re-search-forward "[ \t]*#\\+END:?" nil t)
22099 (match-end 0))) clist))
22100 ((org-in-src-block-p)
22101 (push (list :src-block
22102 (and (or (looking-at "[ \t]*\\(#\\+BEGIN_SRC\\)")
22103 (re-search-backward "[ \t]*\\(#+BEGIN_SRC\\)" nil t))
22104 (match-beginning 1))
22105 (and (search-forward "#+END_SRC" nil t)
22106 (match-beginning 0))) clist))))
22107 (goto-char p)
22109 ;; Now the small context
22110 (cond
22111 ((org-at-timestamp-p)
22112 (push (org-point-in-group p 0 :timestamp) clist))
22113 ((memq 'org-link faces)
22114 (push (list :link
22115 (previous-single-property-change p 'face)
22116 (next-single-property-change p 'face)) clist))
22117 ((memq 'org-special-keyword faces)
22118 (push (list :keyword
22119 (previous-single-property-change p 'face)
22120 (next-single-property-change p 'face)) clist))
22121 ((org-at-target-p)
22122 (push (org-point-in-group p 0 :target) clist)
22123 (goto-char (1- (match-beginning 0)))
22124 (if (looking-at org-radio-target-regexp)
22125 (push (org-point-in-group p 0 :radio-target) clist))
22126 (goto-char p))
22127 ((setq o (car (delq nil
22128 (mapcar
22129 (lambda (x)
22130 (if (memq x org-latex-fragment-image-overlays) x))
22131 (overlays-at (point))))))
22132 (push (list :latex-fragment
22133 (overlay-start o) (overlay-end o)) clist)
22134 (push (list :latex-preview
22135 (overlay-start o) (overlay-end o)) clist))
22136 ((org-inside-LaTeX-fragment-p)
22137 ;; FIXME: positions wrong.
22138 (push (list :latex-fragment (point) (point)) clist)))
22140 (setq clist (nreverse (delq nil clist)))
22141 clist))
22143 (defun org-in-regexp (re &optional nlines visually)
22144 "Check if point is inside a match of RE.
22146 Normally only the current line is checked, but you can include
22147 NLINES extra lines after point into the search. If VISUALLY is
22148 set, require that the cursor is not after the match but really
22149 on, so that the block visually is on the match."
22150 (catch 'exit
22151 (let ((pos (point))
22152 (eol (point-at-eol (+ 1 (or nlines 0))))
22153 (inc (if visually 1 0)))
22154 (save-excursion
22155 (beginning-of-line (- 1 (or nlines 0)))
22156 (while (re-search-forward re eol t)
22157 (if (and (<= (match-beginning 0) pos)
22158 (>= (+ inc (match-end 0)) pos))
22159 (throw 'exit (cons (match-beginning 0) (match-end 0)))))))))
22160 (define-obsolete-function-alias 'org-at-regexp-p 'org-in-regexp
22161 "Org mode 8.3")
22163 (defun org-between-regexps-p (start-re end-re &optional lim-up lim-down)
22164 "Non-nil when point is between matches of START-RE and END-RE.
22166 Also return a non-nil value when point is on one of the matches.
22168 Optional arguments LIM-UP and LIM-DOWN bound the search; they are
22169 buffer positions. Default values are the positions of headlines
22170 surrounding the point.
22172 The functions returns a cons cell whose car (resp. cdr) is the
22173 position before START-RE (resp. after END-RE)."
22174 (save-match-data
22175 (let ((pos (point))
22176 (limit-up (or lim-up (save-excursion (outline-previous-heading))))
22177 (limit-down (or lim-down (save-excursion (outline-next-heading))))
22178 beg end)
22179 (save-excursion
22180 ;; Point is on a block when on START-RE or if START-RE can be
22181 ;; found before it...
22182 (and (or (org-in-regexp start-re)
22183 (re-search-backward start-re limit-up t))
22184 (setq beg (match-beginning 0))
22185 ;; ... and END-RE after it...
22186 (goto-char (match-end 0))
22187 (re-search-forward end-re limit-down t)
22188 (> (setq end (match-end 0)) pos)
22189 ;; ... without another START-RE in-between.
22190 (goto-char (match-beginning 0))
22191 (not (re-search-backward start-re (1+ beg) t))
22192 ;; Return value.
22193 (cons beg end))))))
22195 (defun org-in-block-p (names)
22196 "Non-nil when point belongs to a block whose name belongs to NAMES.
22198 NAMES is a list of strings containing names of blocks.
22200 Return first block name matched, or nil. Beware that in case of
22201 nested blocks, the returned name may not belong to the closest
22202 block from point."
22203 (save-match-data
22204 (catch 'exit
22205 (let ((case-fold-search t)
22206 (lim-up (save-excursion (outline-previous-heading)))
22207 (lim-down (save-excursion (outline-next-heading))))
22208 (mapc (lambda (name)
22209 (let ((n (regexp-quote name)))
22210 (when (org-between-regexps-p
22211 (concat "^[ \t]*#\\+begin_" n)
22212 (concat "^[ \t]*#\\+end_" n)
22213 lim-up lim-down)
22214 (throw 'exit n))))
22215 names))
22216 nil)))
22218 (defun org-occur-in-agenda-files (regexp &optional nlines)
22219 "Call `multi-occur' with buffers for all agenda files."
22220 (interactive "sOrg-files matching: \np")
22221 (let* ((files (org-agenda-files))
22222 (tnames (mapcar 'file-truename files))
22223 (extra org-agenda-text-search-extra-files)
22225 (when (eq (car extra) 'agenda-archives)
22226 (setq extra (cdr extra))
22227 (setq files (org-add-archive-files files)))
22228 (while (setq f (pop extra))
22229 (unless (member (file-truename f) tnames)
22230 (add-to-list 'files f 'append)
22231 (add-to-list 'tnames (file-truename f) 'append)))
22232 (multi-occur
22233 (mapcar (lambda (x)
22234 (with-current-buffer
22235 (or (get-file-buffer x) (find-file-noselect x))
22236 (widen)
22237 (current-buffer)))
22238 files)
22239 regexp)))
22241 (if (boundp 'occur-mode-find-occurrence-hook)
22242 ;; Emacs 23
22243 (add-hook 'occur-mode-find-occurrence-hook
22244 (lambda ()
22245 (when (derived-mode-p 'org-mode)
22246 (org-reveal))))
22247 ;; Emacs 22
22248 (defadvice occur-mode-goto-occurrence
22249 (after org-occur-reveal activate)
22250 (and (derived-mode-p 'org-mode) (org-reveal)))
22251 (defadvice occur-mode-goto-occurrence-other-window
22252 (after org-occur-reveal activate)
22253 (and (derived-mode-p 'org-mode) (org-reveal)))
22254 (defadvice occur-mode-display-occurrence
22255 (after org-occur-reveal activate)
22256 (when (derived-mode-p 'org-mode)
22257 (let ((pos (occur-mode-find-occurrence)))
22258 (with-current-buffer (marker-buffer pos)
22259 (save-excursion
22260 (goto-char pos)
22261 (org-reveal)))))))
22263 (defun org-occur-link-in-agenda-files ()
22264 "Create a link and search for it in the agendas.
22265 The link is not stored in `org-stored-links', it is just created
22266 for the search purpose."
22267 (interactive)
22268 (let ((link (condition-case nil
22269 (org-store-link nil)
22270 (error "Unable to create a link to here"))))
22271 (org-occur-in-agenda-files (regexp-quote link))))
22273 (defun org-reverse-string (string)
22274 "Return the reverse of STRING."
22275 (apply 'string (reverse (string-to-list string))))
22277 ;; defsubst org-uniquify must be defined before first use
22279 (defun org-uniquify-alist (alist)
22280 "Merge elements of ALIST with the same key.
22282 For example, in this alist:
22284 \(org-uniquify-alist '((a 1) (b 2) (a 3)))
22285 => '((a 1 3) (b 2))
22287 merge (a 1) and (a 3) into (a 1 3).
22289 The function returns the new ALIST."
22290 (let (rtn)
22291 (mapc
22292 (lambda (e)
22293 (let (n)
22294 (if (not (assoc (car e) rtn))
22295 (push e rtn)
22296 (setq n (cons (car e) (append (cdr (assoc (car e) rtn)) (cdr e))))
22297 (setq rtn (assq-delete-all (car e) rtn))
22298 (push n rtn))))
22299 alist)
22300 rtn))
22302 (defun org-delete-all (elts list)
22303 "Remove all elements in ELTS from LIST."
22304 (while elts
22305 (setq list (delete (pop elts) list)))
22306 list)
22308 (defun org-count (cl-item cl-seq)
22309 "Count the number of occurrences of ITEM in SEQ.
22310 Taken from `count' in cl-seq.el with all keyword arguments removed."
22311 (let ((cl-end (length cl-seq)) (cl-start 0) (cl-count 0) cl-x)
22312 (when (consp cl-seq) (setq cl-seq (nthcdr cl-start cl-seq)))
22313 (while (< cl-start cl-end)
22314 (setq cl-x (if (consp cl-seq) (pop cl-seq) (aref cl-seq cl-start)))
22315 (if (equal cl-item cl-x) (setq cl-count (1+ cl-count)))
22316 (setq cl-start (1+ cl-start)))
22317 cl-count))
22319 (defun org-remove-if (predicate seq)
22320 "Remove everything from SEQ that fulfills PREDICATE."
22321 (let (res e)
22322 (while seq
22323 (setq e (pop seq))
22324 (if (not (funcall predicate e)) (push e res)))
22325 (nreverse res)))
22327 (defun org-remove-if-not (predicate seq)
22328 "Remove everything from SEQ that does not fulfill PREDICATE."
22329 (let (res e)
22330 (while seq
22331 (setq e (pop seq))
22332 (if (funcall predicate e) (push e res)))
22333 (nreverse res)))
22335 (defun org-reduce (cl-func cl-seq &rest cl-keys)
22336 "Reduce two-argument FUNCTION across SEQ.
22337 Taken from `reduce' in cl-seq.el with all keyword arguments but
22338 \":initial-value\" removed."
22339 (let ((cl-accum (cond ((memq :initial-value cl-keys)
22340 (cadr (memq :initial-value cl-keys)))
22341 (cl-seq (pop cl-seq))
22342 (t (funcall cl-func)))))
22343 (while cl-seq
22344 (setq cl-accum (funcall cl-func cl-accum (pop cl-seq))))
22345 cl-accum))
22347 (defun org-every (pred seq)
22348 "Return true if PREDICATE is true of every element of SEQ.
22349 Adapted from `every' in cl.el."
22350 (catch 'org-every
22351 (mapc (lambda (e) (unless (funcall pred e) (throw 'org-every nil))) seq)
22354 (defun org-some (pred seq)
22355 "Return true if PREDICATE is true of any element of SEQ.
22356 Adapted from `some' in cl.el."
22357 (catch 'org-some
22358 (mapc (lambda (e) (when (funcall pred e) (throw 'org-some t))) seq)
22359 nil))
22361 (defun org-back-over-empty-lines ()
22362 "Move backwards over whitespace, to the beginning of the first empty line.
22363 Returns the number of empty lines passed."
22364 (let ((pos (point)))
22365 (if (cdr (assoc 'heading org-blank-before-new-entry))
22366 (skip-chars-backward " \t\n\r")
22367 (unless (eobp)
22368 (forward-line -1)))
22369 (beginning-of-line 2)
22370 (goto-char (min (point) pos))
22371 (count-lines (point) pos)))
22373 (defun org-skip-whitespace ()
22374 (skip-chars-forward " \t\n\r"))
22376 (defun org-point-in-group (point group &optional context)
22377 "Check if POINT is in match-group GROUP.
22378 If CONTEXT is non-nil, return a list with CONTEXT and the boundaries of the
22379 match. If the match group does not exist or point is not inside it,
22380 return nil."
22381 (and (match-beginning group)
22382 (>= point (match-beginning group))
22383 (<= point (match-end group))
22384 (if context
22385 (list context (match-beginning group) (match-end group))
22386 t)))
22388 (defun org-switch-to-buffer-other-window (&rest args)
22389 "Switch to buffer in a second window on the current frame.
22390 In particular, do not allow pop-up frames.
22391 Returns the newly created buffer."
22392 (org-no-popups
22393 (apply 'switch-to-buffer-other-window args)))
22395 (defun org-combine-plists (&rest plists)
22396 "Create a single property list from all plists in PLISTS.
22397 The process starts by copying the first list, and then setting properties
22398 from the other lists. Settings in the last list are the most significant
22399 ones and overrule settings in the other lists."
22400 (let ((rtn (copy-sequence (pop plists)))
22401 p v ls)
22402 (while plists
22403 (setq ls (pop plists))
22404 (while ls
22405 (setq p (pop ls) v (pop ls))
22406 (setq rtn (plist-put rtn p v))))
22407 rtn))
22409 (defun org-replace-escapes (string table)
22410 "Replace %-escapes in STRING with values in TABLE.
22411 TABLE is an association list with keys like \"%a\" and string values.
22412 The sequences in STRING may contain normal field width and padding information,
22413 for example \"%-5s\". Replacements happen in the sequence given by TABLE,
22414 so values can contain further %-escapes if they are define later in TABLE."
22415 (let ((tbl (copy-alist table))
22416 (case-fold-search nil)
22417 (pchg 0)
22418 e re rpl)
22419 (while (setq e (pop tbl))
22420 (setq re (concat "%-?[0-9.]*" (substring (car e) 1)))
22421 (when (and (cdr e) (string-match re (cdr e)))
22422 (let ((sref (substring (cdr e) (match-beginning 0) (match-end 0)))
22423 (safe "SREF"))
22424 (add-text-properties 0 3 (list 'sref sref) safe)
22425 (setcdr e (replace-match safe t t (cdr e)))))
22426 (while (string-match re string)
22427 (setq rpl (format (concat (substring (match-string 0 string) 0 -1) "s")
22428 (cdr e)))
22429 (setq string (replace-match rpl t t string))))
22430 (while (setq pchg (next-property-change pchg string))
22431 (let ((sref (get-text-property pchg 'sref string)))
22432 (when (and sref (string-match "SREF" string pchg))
22433 (setq string (replace-match sref t t string)))))
22434 string))
22436 (defun org-sublist (list start end)
22437 "Return a section of LIST, from START to END.
22438 Counting starts at 1."
22439 (let (rtn (c start))
22440 (setq list (nthcdr (1- start) list))
22441 (while (and list (<= c end))
22442 (push (pop list) rtn)
22443 (setq c (1+ c)))
22444 (nreverse rtn)))
22446 (defun org-find-base-buffer-visiting (file)
22447 "Like `find-buffer-visiting' but always return the base buffer and
22448 not an indirect buffer."
22449 (let ((buf (or (get-file-buffer file)
22450 (find-buffer-visiting file))))
22451 (if buf
22452 (or (buffer-base-buffer buf) buf)
22453 nil)))
22455 (defun org-image-file-name-regexp (&optional extensions)
22456 "Return regexp matching the file names of images.
22457 If EXTENSIONS is given, only match these."
22458 (if (and (not extensions) (fboundp 'image-file-name-regexp))
22459 (image-file-name-regexp)
22460 (let ((image-file-name-extensions
22461 (or extensions
22462 '("png" "jpeg" "jpg" "gif" "tiff" "tif"
22463 "xbm" "xpm" "pbm" "pgm" "ppm"))))
22464 (concat "\\."
22465 (regexp-opt (nconc (mapcar 'upcase
22466 image-file-name-extensions)
22467 image-file-name-extensions)
22469 "\\'"))))
22471 (defun org-file-image-p (file &optional extensions)
22472 "Return non-nil if FILE is an image."
22473 (save-match-data
22474 (string-match (org-image-file-name-regexp extensions) file)))
22476 (defun org-get-cursor-date (&optional with-time)
22477 "Return the date at cursor in as a time.
22478 This works in the calendar and in the agenda, anywhere else it just
22479 returns the current time.
22480 If WITH-TIME is non-nil, returns the time of the event at point (in
22481 the agenda) or the current time of the day."
22482 (let (date day defd tp tm hod mod)
22483 (when with-time
22484 (setq tp (get-text-property (point) 'time))
22485 (when (and tp (string-match "\\([0-9][0-9]\\):\\([0-9][0-9]\\)" tp))
22486 (setq hod (string-to-number (match-string 1 tp))
22487 mod (string-to-number (match-string 2 tp))))
22488 (or tp (setq hod (nth 2 (decode-time (current-time)))
22489 mod (nth 1 (decode-time (current-time))))))
22490 (cond
22491 ((eq major-mode 'calendar-mode)
22492 (setq date (calendar-cursor-to-date)
22493 defd (encode-time 0 (or mod 0) (or hod 0)
22494 (nth 1 date) (nth 0 date) (nth 2 date))))
22495 ((eq major-mode 'org-agenda-mode)
22496 (setq day (get-text-property (point) 'day))
22497 (if day
22498 (setq date (calendar-gregorian-from-absolute day)
22499 defd (encode-time 0 (or mod 0) (or hod 0)
22500 (nth 1 date) (nth 0 date) (nth 2 date))))))
22501 (or defd (current-time))))
22503 (defun org-mark-subtree (&optional up)
22504 "Mark the current subtree.
22505 This puts point at the start of the current subtree, and mark at
22506 the end. If a numeric prefix UP is given, move up into the
22507 hierarchy of headlines by UP levels before marking the subtree."
22508 (interactive "P")
22509 (org-with-limited-levels
22510 (cond ((org-at-heading-p) (beginning-of-line))
22511 ((org-before-first-heading-p) (user-error "Not in a subtree"))
22512 (t (outline-previous-visible-heading 1))))
22513 (when up (while (and (> up 0) (org-up-heading-safe)) (decf up)))
22514 (if (org-called-interactively-p 'any)
22515 (call-interactively 'org-mark-element)
22516 (org-mark-element)))
22519 ;;; Indentation
22521 (defun org--get-expected-indentation (element contentsp)
22522 "Expected indentation column for current line, according to ELEMENT.
22523 ELEMENT is an element containing point. CONTENTSP is non-nil
22524 when indentation is to be computed according to contents of
22525 ELEMENT."
22526 (let ((type (org-element-type element))
22527 (start (org-element-property :begin element)))
22528 (org-with-wide-buffer
22529 (cond
22530 (contentsp
22531 (case type
22532 (footnote-definition 0)
22533 ((headline inlinetask nil)
22534 (if (not org-adapt-indentation) 0
22535 (let ((level (org-current-level)))
22536 (if level (1+ level) 0))))
22537 (item
22538 (org-list-item-body-column
22539 (org-element-property :post-affiliated element)))
22540 (plain-list
22541 (save-excursion
22542 (goto-char (org-element-property :post-affiliated element))
22543 (org-get-indentation)))
22544 (otherwise
22545 (goto-char start)
22546 (org-get-indentation))))
22547 ((memq type '(headline inlinetask nil))
22548 (if (save-excursion (beginning-of-line) (looking-at "[ \t]*$"))
22549 (org--get-expected-indentation element t)
22551 ((eq type 'footnote-definition) 0)
22552 ;; First paragraph of a footnote definition or an item.
22553 ;; Indent like parent.
22554 ((< (line-beginning-position) start)
22555 (org--get-expected-indentation
22556 (org-element-property :parent element) t))
22557 ;; At first line: indent according to previous sibling, if any,
22558 ;; ignoring footnote definitions and inline tasks, or parent's
22559 ;; contents.
22560 ((= (line-beginning-position) start)
22561 (catch 'exit
22562 (while t
22563 (if (= (point-min) start) (throw 'exit 0)
22564 (goto-char (1- start))
22565 (let* ((previous (org-element-at-point))
22566 (parent previous))
22567 (while (and parent (<= (org-element-property :end parent) start))
22568 (setq previous parent
22569 parent (org-element-property :parent parent)))
22570 (cond
22571 ((not previous) (throw 'exit 0))
22572 ((> (org-element-property :end previous) start)
22573 (throw 'exit (org--get-expected-indentation previous t)))
22574 ((memq (org-element-type previous)
22575 '(footnote-definition inlinetask))
22576 (setq start (org-element-property :begin previous)))
22577 (t (goto-char (org-element-property :begin previous))
22578 (throw 'exit
22579 (if (bolp) (org-get-indentation)
22580 ;; At first paragraph in an item or
22581 ;; a footnote definition.
22582 (org--get-expected-indentation
22583 (org-element-property :parent previous) t))))))))))
22584 ;; Otherwise, move to the first non-blank line above.
22586 (beginning-of-line)
22587 (let ((pos (point)))
22588 (skip-chars-backward " \r\t\n")
22589 (cond
22590 ;; Two blank lines end a footnote definition or a plain
22591 ;; list. When we indent an empty line after them, the
22592 ;; containing list or footnote definition is over, so it
22593 ;; qualifies as a previous sibling. Therefore, we indent
22594 ;; like its first line.
22595 ((and (memq type '(footnote-definition plain-list))
22596 (> (count-lines (point) pos) 2))
22597 (goto-char start)
22598 (org-get-indentation))
22599 ;; Line above is the first one of a paragraph at the
22600 ;; beginning of an item or a footnote definition. Indent
22601 ;; like parent.
22602 ((< (line-beginning-position) start)
22603 (org--get-expected-indentation
22604 (org-element-property :parent element) t))
22605 ;; POS is after contents in a greater element. Indent like
22606 ;; the beginning of the element.
22608 ;; As a special case, if point is at the end of a footnote
22609 ;; definition or an item, indent like the very last element
22610 ;; within.
22611 ((and (not (eq type 'paragraph))
22612 (let ((cend (org-element-property :contents-end element)))
22613 (and cend (<= cend pos))))
22614 (if (memq type '(footnote-definition item plain-list))
22615 (org--get-expected-indentation (org-element-at-point) nil)
22616 (goto-char start)
22617 (org-get-indentation)))
22618 ;; In any other case, indent like the current line.
22619 (t (org-get-indentation)))))))))
22621 (defun org--align-node-property ()
22622 "Align node property at point.
22623 Alignment is done according to `org-property-format', which see."
22624 (when (save-excursion
22625 (beginning-of-line)
22626 (looking-at org-property-re))
22627 (replace-match
22628 (concat (match-string 4)
22629 (org-trim
22630 (format org-property-format (match-string 1) (match-string 3))))
22631 t t)))
22633 (defun org-indent-line ()
22634 "Indent line depending on context.
22636 Indentation is done according to the following rules:
22638 - Footnote definitions, headlines and inline tasks have to
22639 start at column 0.
22641 - On the very first line of an element, consider, in order, the
22642 next rules until one matches:
22644 1. If there's a sibling element before, ignoring footnote
22645 definitions and inline tasks, indent like its first line.
22647 2. If element has a parent, indent like its contents. More
22648 precisely, if parent is an item, indent after the
22649 description part, if any, or the bullet (see
22650 `org-list-description-max-indent'). Else, indent like
22651 parent's first line.
22653 3. Otherwise, indent relatively to current level, if
22654 `org-adapt-indentation' is non-nil, or to left margin.
22656 - On a blank line at the end of an element, indent according to
22657 the type of the element. More precisely
22659 1. If element is a plain list, an item, or a footnote
22660 definition, indent like the very last element within.
22662 2. If element is a paragraph, indent like its last non blank
22663 line.
22665 3. Otherwise, indent like its very first line.
22667 - In the code part of a source block, use language major mode
22668 to indent current line if `org-src-tab-acts-natively' is
22669 non-nil. If it is nil, do nothing.
22671 - Otherwise, indent like the first non-blank line above.
22673 The function doesn't indent an item as it could break the whole
22674 list structure. Instead, use \\<org-mode-map>\\[org-shiftmetaleft] or \
22675 \\[org-shiftmetaright].
22677 Also align node properties according to `org-property-format'."
22678 (interactive)
22679 (cond
22680 (orgstruct-is-++
22681 (let ((indent-line-function
22682 (cadadr (assq 'indent-line-function org-fb-vars))))
22683 (indent-according-to-mode)))
22684 ((org-at-heading-p) 'noindent)
22686 (let* ((element (save-excursion (beginning-of-line) (org-element-at-point)))
22687 (type (org-element-type element)))
22688 (cond ((and (memq type '(plain-list item))
22689 (= (line-beginning-position)
22690 (org-element-property :post-affiliated element)))
22691 'noindent)
22692 ((and (eq type 'src-block)
22693 org-src-tab-acts-natively
22694 (> (line-beginning-position)
22695 (org-element-property :post-affiliated element))
22696 (< (line-beginning-position)
22697 (org-with-wide-buffer
22698 (goto-char (org-element-property :end element))
22699 (skip-chars-backward " \r\t\n")
22700 (line-beginning-position))))
22701 (org-babel-do-key-sequence-in-edit-buffer (kbd "TAB")))
22703 (let ((column (org--get-expected-indentation element nil)))
22704 ;; Preserve current column.
22705 (if (<= (current-column) (current-indentation))
22706 (org-indent-line-to column)
22707 (save-excursion (org-indent-line-to column))))
22708 ;; Align node property. Also preserve current column.
22709 (when (eq type 'node-property)
22710 (let ((column (current-column)))
22711 (org--align-node-property)
22712 (org-move-to-column column)))))))))
22714 (defun org-indent-region (start end)
22715 "Indent each non-blank line in the region.
22716 Called from a program, START and END specify the region to
22717 indent. The function will not indent contents of example blocks,
22718 verse blocks and export blocks as leading white spaces are
22719 assumed to be significant there."
22720 (interactive "r")
22721 (save-excursion
22722 (goto-char start)
22723 (skip-chars-forward " \r\t\n")
22724 (unless (eobp) (beginning-of-line))
22725 (let ((indent-to
22726 (lambda (ind pos)
22727 ;; Set IND as indentation for all lines between point and
22728 ;; POS or END, whichever comes first. Blank lines are
22729 ;; ignored. Leave point after POS once done.
22730 (let ((limit (copy-marker (min end pos))))
22731 (while (< (point) limit)
22732 (unless (org-looking-at-p "[ \t]*$") (org-indent-line-to ind))
22733 (forward-line))
22734 (set-marker limit nil))))
22735 (end (copy-marker end)))
22736 (while (< (point) end)
22737 (if (or (org-looking-at-p " \r\t\n") (org-at-heading-p)) (forward-line)
22738 (let* ((element (org-element-at-point))
22739 (type (org-element-type element))
22740 (element-end (copy-marker (org-element-property :end element)))
22741 (ind (org--get-expected-indentation element nil)))
22742 (cond
22743 ((or (memq type '(paragraph table table-row))
22744 (not (or (org-element-property :contents-begin element)
22745 (memq type
22746 '(example-block export-block src-block)))))
22747 ;; Elements here are indented as a single block. Also
22748 ;; align node properties.
22749 (when (eq type 'node-property)
22750 (org--align-node-property)
22751 (beginning-of-line))
22752 (funcall indent-to ind element-end))
22754 ;; Elements in this category consist of three parts:
22755 ;; before the contents, the contents, and after the
22756 ;; contents. The contents are treated specially,
22757 ;; according to the element type, or not indented at
22758 ;; all. Other parts are indented as a single block.
22759 (let* ((post (copy-marker
22760 (org-element-property :post-affiliated element)))
22761 (cbeg
22762 (copy-marker
22763 (cond
22764 ((not (org-element-property :contents-begin element))
22765 ;; Fake contents for source blocks.
22766 (org-with-wide-buffer
22767 (goto-char post)
22768 (forward-line)
22769 (point)))
22770 ((memq type '(footnote-definition item plain-list))
22771 ;; Contents in these elements could start on
22772 ;; the same line as the beginning of the
22773 ;; element. Make sure we start indenting
22774 ;; from the second line.
22775 (org-with-wide-buffer
22776 (goto-char post)
22777 (end-of-line)
22778 (skip-chars-forward " \r\t\n")
22779 (if (eobp) (point) (line-beginning-position))))
22780 (t (org-element-property :contents-begin element)))))
22781 (cend (copy-marker
22782 (or (org-element-property :contents-end element)
22783 ;; Fake contents for source blocks.
22784 (org-with-wide-buffer
22785 (goto-char element-end)
22786 (skip-chars-backward " \r\t\n")
22787 (line-beginning-position)))
22788 t)))
22789 ;; Do not change items indentation individually as it
22790 ;; might break the list as a whole. On the other
22791 ;; hand, when at a plain list, indent it as a whole.
22792 (cond ((eq type 'plain-list)
22793 (let ((offset (- ind (org-get-indentation))))
22794 (unless (zerop offset)
22795 (indent-rigidly (org-element-property :begin element)
22796 (org-element-property :end element)
22797 offset))
22798 (goto-char cbeg)))
22799 ((eq type 'item) (goto-char cbeg))
22800 (t (funcall indent-to ind cbeg)))
22801 (when (< (point) end)
22802 (case type
22803 ((example-block export-block verse-block))
22804 (src-block
22805 ;; In a source block, indent source code
22806 ;; according to language major mode, but only if
22807 ;; `org-src-tab-acts-natively' is non-nil.
22808 (when (and (< (point) end) org-src-tab-acts-natively)
22809 (ignore-errors
22810 (org-babel-do-in-edit-buffer
22811 (indent-region (point-min) (point-max))))))
22812 (t (org-indent-region (point) (min cend end))))
22813 (goto-char (min cend end))
22814 (when (< (point) end) (funcall indent-to ind element-end)))
22815 (set-marker post nil)
22816 (set-marker cbeg nil)
22817 (set-marker cend nil))))
22818 (set-marker element-end nil))))
22819 (set-marker end nil))))
22821 (defun org-indent-drawer ()
22822 "Indent the drawer at point."
22823 (interactive)
22824 (unless (save-excursion
22825 (beginning-of-line)
22826 (org-looking-at-p org-drawer-regexp))
22827 (user-error "Not at a drawer"))
22828 (let ((element (org-element-at-point)))
22829 (unless (memq (org-element-type element) '(drawer property-drawer))
22830 (user-error "Not at a drawer"))
22831 (org-with-wide-buffer
22832 (org-indent-region (org-element-property :begin element)
22833 (org-element-property :end element))))
22834 (message "Drawer at point indented"))
22836 (defun org-indent-block ()
22837 "Indent the block at point."
22838 (interactive)
22839 (unless (save-excursion
22840 (beginning-of-line)
22841 (let ((case-fold-search t))
22842 (org-looking-at-p "[ \t]*#\\+\\(begin\\|end\\)_")))
22843 (user-error "Not at a block"))
22844 (let ((element (org-element-at-point)))
22845 (unless (memq (org-element-type element)
22846 '(comment-block center-block dynamic-block example-block
22847 export-block quote-block special-block
22848 src-block verse-block))
22849 (user-error "Not at a block"))
22850 (org-with-wide-buffer
22851 (org-indent-region (org-element-property :begin element)
22852 (org-element-property :end element))))
22853 (message "Block at point indented"))
22856 ;;; Filling
22858 ;; We use our own fill-paragraph and auto-fill functions.
22860 ;; `org-fill-paragraph' relies on adaptive filling and context
22861 ;; checking. Appropriate `fill-prefix' is computed with
22862 ;; `org-adaptive-fill-function'.
22864 ;; `org-auto-fill-function' takes care of auto-filling. It calls
22865 ;; `do-auto-fill' only on valid areas with `fill-prefix' shadowed with
22866 ;; `org-adaptive-fill-function' value. Internally,
22867 ;; `org-comment-line-break-function' breaks the line.
22869 ;; `org-setup-filling' installs filling and auto-filling related
22870 ;; variables during `org-mode' initialization.
22872 (defvar org-element-paragraph-separate) ; org-element.el
22873 (defun org-setup-filling ()
22874 (require 'org-element)
22875 ;; Prevent auto-fill from inserting unwanted new items.
22876 (when (boundp 'fill-nobreak-predicate)
22877 (org-set-local
22878 'fill-nobreak-predicate
22879 (org-uniquify
22880 (append fill-nobreak-predicate
22881 '(org-fill-line-break-nobreak-p
22882 org-fill-paragraph-with-timestamp-nobreak-p)))))
22883 (let ((paragraph-ending (substring org-element-paragraph-separate 1)))
22884 (org-set-local 'paragraph-start paragraph-ending)
22885 (org-set-local 'paragraph-separate paragraph-ending))
22886 (org-set-local 'fill-paragraph-function 'org-fill-paragraph)
22887 (org-set-local 'auto-fill-inhibit-regexp nil)
22888 (org-set-local 'adaptive-fill-function 'org-adaptive-fill-function)
22889 (org-set-local 'normal-auto-fill-function 'org-auto-fill-function)
22890 (org-set-local 'comment-line-break-function 'org-comment-line-break-function))
22892 (defun org-fill-line-break-nobreak-p ()
22893 "Non-nil when a new line at point would create an Org line break."
22894 (save-excursion
22895 (skip-chars-backward "[ \t]")
22896 (skip-chars-backward "\\\\")
22897 (looking-at "\\\\\\\\\\($\\|[^\\\\]\\)")))
22899 (defun org-fill-paragraph-with-timestamp-nobreak-p ()
22900 "Non-nil when a new line at point would split a timestamp."
22901 (and (org-at-timestamp-p t)
22902 (not (looking-at org-ts-regexp-both))))
22904 (declare-function message-in-body-p "message" ())
22905 (defvar orgtbl-line-start-regexp) ; From org-table.el
22906 (defun org-adaptive-fill-function ()
22907 "Compute a fill prefix for the current line.
22908 Return fill prefix, as a string, or nil if current line isn't
22909 meant to be filled. For convenience, if `adaptive-fill-regexp'
22910 matches in paragraphs or comments, use it."
22911 (catch 'exit
22912 (when (derived-mode-p 'message-mode)
22913 (save-excursion
22914 (beginning-of-line)
22915 (cond ((or (not (message-in-body-p))
22916 (looking-at orgtbl-line-start-regexp))
22917 (throw 'exit nil))
22918 ((looking-at message-cite-prefix-regexp)
22919 (throw 'exit (match-string-no-properties 0)))
22920 ((looking-at org-outline-regexp)
22921 (throw 'exit (make-string (length (match-string 0)) ?\s))))))
22922 (org-with-wide-buffer
22923 (unless (org-at-heading-p)
22924 (let* ((p (line-beginning-position))
22925 (element (save-excursion
22926 (beginning-of-line)
22927 (org-element-at-point)))
22928 (type (org-element-type element))
22929 (post-affiliated (org-element-property :post-affiliated element)))
22930 (unless (< p post-affiliated)
22931 (case type
22932 (comment
22933 (save-excursion
22934 (beginning-of-line)
22935 (looking-at "[ \t]*")
22936 (concat (match-string 0) "# ")))
22937 (footnote-definition "")
22938 ((item plain-list)
22939 (make-string (org-list-item-body-column post-affiliated) ?\s))
22940 (paragraph
22941 ;; Fill prefix is usually the same as the current line,
22942 ;; unless the paragraph is at the beginning of an item.
22943 (let ((parent (org-element-property :parent element)))
22944 (save-excursion
22945 (beginning-of-line)
22946 (cond ((eq (org-element-type parent) 'item)
22947 (make-string (org-list-item-body-column
22948 (org-element-property :begin parent))
22949 ?\s))
22950 ((and adaptive-fill-regexp
22951 ;; Locally disable
22952 ;; `adaptive-fill-function' to let
22953 ;; `fill-context-prefix' handle
22954 ;; `adaptive-fill-regexp' variable.
22955 (let (adaptive-fill-function)
22956 (fill-context-prefix
22957 post-affiliated
22958 (org-element-property :end element)))))
22959 ((looking-at "[ \t]+") (match-string 0))
22960 (t "")))))
22961 (comment-block
22962 ;; Only fill contents if P is within block boundaries.
22963 (let* ((cbeg (save-excursion (goto-char post-affiliated)
22964 (forward-line)
22965 (point)))
22966 (cend (save-excursion
22967 (goto-char (org-element-property :end element))
22968 (skip-chars-backward " \r\t\n")
22969 (line-beginning-position))))
22970 (when (and (>= p cbeg) (< p cend))
22971 (if (save-excursion (beginning-of-line) (looking-at "[ \t]+"))
22972 (match-string 0)
22973 "")))))))))))
22975 (declare-function message-goto-body "message" ())
22976 (defvar message-cite-prefix-regexp) ; From message.el
22977 (defun org-fill-paragraph (&optional justify)
22978 "Fill element at point, when applicable.
22980 This function only applies to comment blocks, comments, example
22981 blocks and paragraphs. Also, as a special case, re-align table
22982 when point is at one.
22984 If JUSTIFY is non-nil (interactively, with prefix argument),
22985 justify as well. If `sentence-end-double-space' is non-nil, then
22986 period followed by one space does not end a sentence, so don't
22987 break a line there. The variable `fill-column' controls the
22988 width for filling.
22990 For convenience, when point is at a plain list, an item or
22991 a footnote definition, try to fill the first paragraph within."
22992 (interactive)
22993 (if (and (derived-mode-p 'message-mode)
22994 (or (not (message-in-body-p))
22995 (save-excursion (move-beginning-of-line 1)
22996 (looking-at message-cite-prefix-regexp))))
22997 ;; First ensure filling is correct in message-mode.
22998 (let ((fill-paragraph-function
22999 (cadadr (assoc 'fill-paragraph-function org-fb-vars)))
23000 (fill-prefix (cadadr (assoc 'fill-prefix org-fb-vars)))
23001 (paragraph-start (cadadr (assoc 'paragraph-start org-fb-vars)))
23002 (paragraph-separate
23003 (cadadr (assoc 'paragraph-separate org-fb-vars))))
23004 (fill-paragraph nil))
23005 (with-syntax-table org-mode-transpose-word-syntax-table
23006 ;; Move to end of line in order to get the first paragraph
23007 ;; within a plain list or a footnote definition.
23008 (let ((element (save-excursion
23009 (end-of-line)
23010 (or (ignore-errors (org-element-at-point))
23011 (user-error "An element cannot be parsed line %d"
23012 (line-number-at-pos (point)))))))
23013 ;; First check if point is in a blank line at the beginning of
23014 ;; the buffer. In that case, ignore filling.
23015 (case (org-element-type element)
23016 ;; Use major mode filling function is src blocks.
23017 (src-block (org-babel-do-key-sequence-in-edit-buffer (kbd "M-q")))
23018 ;; Align Org tables, leave table.el tables as-is.
23019 (table-row (org-table-align) t)
23020 (table
23021 (when (eq (org-element-property :type element) 'org)
23022 (save-excursion
23023 (goto-char (org-element-property :post-affiliated element))
23024 (org-table-align)))
23026 (paragraph
23027 ;; Paragraphs may contain `line-break' type objects.
23028 (let ((beg (max (point-min)
23029 (org-element-property :contents-begin element)))
23030 (end (min (point-max)
23031 (org-element-property :contents-end element))))
23032 ;; Do nothing if point is at an affiliated keyword.
23033 (if (< (line-end-position) beg) t
23034 (when (derived-mode-p 'message-mode)
23035 ;; In `message-mode', do not fill following citation
23036 ;; in current paragraph nor text before message body.
23037 (let ((body-start (save-excursion (message-goto-body))))
23038 (when body-start (setq beg (max body-start beg))))
23039 (when (save-excursion
23040 (re-search-forward
23041 (concat "^" message-cite-prefix-regexp) end t))
23042 (setq end (match-beginning 0))))
23043 ;; Fill paragraph, taking line breaks into account.
23044 (save-excursion
23045 (goto-char beg)
23046 (let ((cuts (list beg)))
23047 (while (re-search-forward "\\\\\\\\[ \t]*\n" end t)
23048 (when (eq 'line-break
23049 (org-element-type
23050 (save-excursion (backward-char)
23051 (org-element-context))))
23052 (push (point) cuts)))
23053 (dolist (c (delq end cuts))
23054 (fill-region-as-paragraph c end justify)
23055 (setq end c))))
23056 t)))
23057 ;; Contents of `comment-block' type elements should be
23058 ;; filled as plain text, but only if point is within block
23059 ;; markers.
23060 (comment-block
23061 (let* ((case-fold-search t)
23062 (beg (save-excursion
23063 (goto-char (org-element-property :begin element))
23064 (re-search-forward "^[ \t]*#\\+begin_comment" nil t)
23065 (forward-line)
23066 (point)))
23067 (end (save-excursion
23068 (goto-char (org-element-property :end element))
23069 (re-search-backward "^[ \t]*#\\+end_comment" nil t)
23070 (line-beginning-position))))
23071 (if (or (< (point) beg) (> (point) end)) t
23072 (fill-region-as-paragraph
23073 (save-excursion (end-of-line)
23074 (re-search-backward "^[ \t]*$" beg 'move)
23075 (line-beginning-position))
23076 (save-excursion (beginning-of-line)
23077 (re-search-forward "^[ \t]*$" end 'move)
23078 (line-beginning-position))
23079 justify))))
23080 ;; Fill comments.
23081 (comment
23082 (let ((begin (org-element-property :post-affiliated element))
23083 (end (org-element-property :end element)))
23084 (when (and (>= (point) begin) (<= (point) end))
23085 (let ((begin (save-excursion
23086 (end-of-line)
23087 (if (re-search-backward "^[ \t]*#[ \t]*$" begin t)
23088 (progn (forward-line) (point))
23089 begin)))
23090 (end (save-excursion
23091 (end-of-line)
23092 (if (re-search-forward "^[ \t]*#[ \t]*$" end 'move)
23093 (1- (line-beginning-position))
23094 (skip-chars-backward " \r\t\n")
23095 (line-end-position)))))
23096 ;; Do not fill comments when at a blank line.
23097 (when (> end begin)
23098 (let ((fill-prefix
23099 (save-excursion
23100 (beginning-of-line)
23101 (looking-at "[ \t]*#")
23102 (let ((comment-prefix (match-string 0)))
23103 (goto-char (match-end 0))
23104 (if (looking-at adaptive-fill-regexp)
23105 (concat comment-prefix (match-string 0))
23106 (concat comment-prefix " "))))))
23107 (save-excursion
23108 (fill-region-as-paragraph begin end justify))))))
23110 ;; Ignore every other element.
23111 (otherwise t))))))
23113 (defun org-auto-fill-function ()
23114 "Auto-fill function."
23115 ;; Check if auto-filling is meaningful.
23116 (let ((fc (current-fill-column)))
23117 (when (and fc (> (current-column) fc))
23118 (let* ((fill-prefix (org-adaptive-fill-function))
23119 ;; Enforce empty fill prefix, if required. Otherwise, it
23120 ;; will be computed again.
23121 (adaptive-fill-mode (not (equal fill-prefix ""))))
23122 (when fill-prefix (do-auto-fill))))))
23124 (defun org-comment-line-break-function (&optional soft)
23125 "Break line at point and indent, continuing comment if within one.
23126 The inserted newline is marked hard if variable
23127 `use-hard-newlines' is true, unless optional argument SOFT is
23128 non-nil."
23129 (if soft (insert-and-inherit ?\n) (newline 1))
23130 (save-excursion (forward-char -1) (delete-horizontal-space))
23131 (delete-horizontal-space)
23132 (indent-to-left-margin)
23133 (insert-before-markers-and-inherit fill-prefix))
23136 ;;; Fixed Width Areas
23138 (defun org-toggle-fixed-width ()
23139 "Toggle fixed-width markup.
23141 Add or remove fixed-width markup on current line, whenever it
23142 makes sense. Return an error otherwise.
23144 If a region is active and if it contains only fixed-width areas
23145 or blank lines, remove all fixed-width markup in it. If the
23146 region contains anything else, convert all non-fixed-width lines
23147 to fixed-width ones.
23149 Blank lines at the end of the region are ignored unless the
23150 region only contains such lines."
23151 (interactive)
23152 (if (not (org-region-active-p))
23153 ;; No region:
23155 ;; Remove fixed width marker only in a fixed-with element.
23157 ;; Add fixed width maker in paragraphs, in blank lines after
23158 ;; elements or at the beginning of a headline or an inlinetask,
23159 ;; and before any one-line elements (e.g., a clock).
23160 (progn
23161 (beginning-of-line)
23162 (let* ((element (org-element-at-point))
23163 (type (org-element-type element)))
23164 (cond
23165 ((and (eq type 'fixed-width)
23166 (looking-at "[ \t]*\\(:\\(?: \\|$\\)\\)"))
23167 (replace-match
23168 "" nil nil nil (if (= (line-end-position) (match-end 0)) 0 1)))
23169 ((and (memq type '(babel-call clock comment diary-sexp headline
23170 horizontal-rule keyword paragraph
23171 planning))
23172 (<= (org-element-property :post-affiliated element) (point)))
23173 (skip-chars-forward " \t")
23174 (insert ": "))
23175 ((and (org-looking-at-p "[ \t]*$")
23176 (or (eq type 'inlinetask)
23177 (save-excursion
23178 (skip-chars-forward " \r\t\n")
23179 (<= (org-element-property :end element) (point)))))
23180 (delete-region (point) (line-end-position))
23181 (org-indent-line)
23182 (insert ": "))
23183 (t (user-error "Cannot insert a fixed-width line here")))))
23184 ;; Region active.
23185 (let* ((begin (save-excursion
23186 (goto-char (region-beginning))
23187 (line-beginning-position)))
23188 (end (copy-marker
23189 (save-excursion
23190 (goto-char (region-end))
23191 (unless (eolp) (beginning-of-line))
23192 (if (save-excursion (re-search-backward "\\S-" begin t))
23193 (progn (skip-chars-backward " \r\t\n") (point))
23194 (point)))))
23195 (all-fixed-width-p
23196 (catch 'not-all-p
23197 (save-excursion
23198 (goto-char begin)
23199 (skip-chars-forward " \r\t\n")
23200 (when (eobp) (throw 'not-all-p nil))
23201 (while (< (point) end)
23202 (let ((element (org-element-at-point)))
23203 (if (eq (org-element-type element) 'fixed-width)
23204 (goto-char (org-element-property :end element))
23205 (throw 'not-all-p nil))))
23206 t))))
23207 (if all-fixed-width-p
23208 (save-excursion
23209 (goto-char begin)
23210 (while (< (point) end)
23211 (when (looking-at "[ \t]*\\(:\\(?: \\|$\\)\\)")
23212 (replace-match
23213 "" nil nil nil
23214 (if (= (line-end-position) (match-end 0)) 0 1)))
23215 (forward-line)))
23216 (let ((min-ind (point-max)))
23217 ;; Find minimum indentation across all lines.
23218 (save-excursion
23219 (goto-char begin)
23220 (if (not (save-excursion (re-search-forward "\\S-" end t)))
23221 (setq min-ind 0)
23222 (catch 'zerop
23223 (while (< (point) end)
23224 (unless (org-looking-at-p "[ \t]*$")
23225 (let ((ind (org-get-indentation)))
23226 (setq min-ind (min min-ind ind))
23227 (when (zerop ind) (throw 'zerop t))))
23228 (forward-line)))))
23229 ;; Loop over all lines and add fixed-width markup everywhere
23230 ;; but in fixed-width lines.
23231 (save-excursion
23232 (goto-char begin)
23233 (while (< (point) end)
23234 (cond
23235 ((org-at-heading-p)
23236 (insert ": ")
23237 (forward-line)
23238 (while (and (< (point) end) (org-looking-at-p "[ \t]*$"))
23239 (insert ":")
23240 (forward-line)))
23241 ((org-looking-at-p "[ \t]*:\\( \\|$\\)")
23242 (let* ((element (org-element-at-point))
23243 (element-end (org-element-property :end element)))
23244 (if (eq (org-element-type element) 'fixed-width)
23245 (progn (goto-char element-end)
23246 (skip-chars-backward " \r\t\n")
23247 (forward-line))
23248 (let ((limit (min end element-end)))
23249 (while (< (point) limit)
23250 (org-move-to-column min-ind t)
23251 (insert ": ")
23252 (forward-line))))))
23254 (org-move-to-column min-ind t)
23255 (insert ": ")
23256 (forward-line)))))))
23257 (set-marker end nil))))
23260 ;;; Comments
23262 ;; Org comments syntax is quite complex. It requires the entire line
23263 ;; to be just a comment. Also, even with the right syntax at the
23264 ;; beginning of line, some some elements (i.e. verse-block or
23265 ;; example-block) don't accept comments. Usual Emacs comment commands
23266 ;; cannot cope with those requirements. Therefore, Org replaces them.
23268 ;; Org still relies on `comment-dwim', but cannot trust
23269 ;; `comment-only-p'. So, `comment-region-function' and
23270 ;; `uncomment-region-function' both point
23271 ;; to`org-comment-or-uncomment-region'. Eventually,
23272 ;; `org-insert-comment' takes care of insertion of comments at the
23273 ;; beginning of line.
23275 ;; `org-setup-comments-handling' install comments related variables
23276 ;; during `org-mode' initialization.
23278 (defun org-setup-comments-handling ()
23279 (interactive)
23280 (org-set-local 'comment-use-syntax nil)
23281 (org-set-local 'comment-start "# ")
23282 (org-set-local 'comment-start-skip "^\\s-*#\\(?: \\|$\\)")
23283 (org-set-local 'comment-insert-comment-function 'org-insert-comment)
23284 (org-set-local 'comment-region-function 'org-comment-or-uncomment-region)
23285 (org-set-local 'uncomment-region-function 'org-comment-or-uncomment-region))
23287 (defun org-insert-comment ()
23288 "Insert an empty comment above current line.
23289 If the line is empty, insert comment at its beginning. When
23290 point is within a source block, comment according to the related
23291 major mode."
23292 (if (let ((element (org-element-at-point)))
23293 (and (eq (org-element-type element) 'src-block)
23294 (< (save-excursion
23295 (goto-char (org-element-property :post-affiliated element))
23296 (line-end-position))
23297 (point))
23298 (> (save-excursion
23299 (goto-char (org-element-property :end element))
23300 (skip-chars-backward " \r\t\n")
23301 (line-beginning-position))
23302 (point))))
23303 (org-babel-do-in-edit-buffer (call-interactively 'comment-dwim))
23304 (beginning-of-line)
23305 (if (looking-at "\\s-*$") (delete-region (point) (point-at-eol))
23306 (open-line 1))
23307 (org-indent-line)
23308 (insert "# ")))
23310 (defvar comment-empty-lines) ; From newcomment.el.
23311 (defun org-comment-or-uncomment-region (beg end &rest ignore)
23312 "Comment or uncomment each non-blank line in the region.
23313 Uncomment each non-blank line between BEG and END if it only
23314 contains commented lines. Otherwise, comment them. If region is
23315 strictly within a source block, use appropriate comment syntax."
23316 (if (let ((element (org-element-at-point)))
23317 (and (eq (org-element-type element) 'src-block)
23318 (< (save-excursion
23319 (goto-char (org-element-property :post-affiliated element))
23320 (line-end-position))
23321 beg)
23322 (>= (save-excursion
23323 (goto-char (org-element-property :end element))
23324 (skip-chars-backward " \r\t\n")
23325 (line-beginning-position))
23326 end)))
23327 (org-babel-do-in-edit-buffer (call-interactively 'comment-dwim))
23328 (save-restriction
23329 ;; Restrict region
23330 (narrow-to-region (save-excursion (goto-char beg)
23331 (skip-chars-forward " \r\t\n" end)
23332 (line-beginning-position))
23333 (save-excursion (goto-char end)
23334 (skip-chars-backward " \r\t\n" beg)
23335 (line-end-position)))
23336 (let ((uncommentp
23337 ;; UNCOMMENTP is non-nil when every non blank line between
23338 ;; BEG and END is a comment.
23339 (save-excursion
23340 (goto-char (point-min))
23341 (while (and (not (eobp))
23342 (let ((element (org-element-at-point)))
23343 (and (eq (org-element-type element) 'comment)
23344 (goto-char (min (point-max)
23345 (org-element-property
23346 :end element)))))))
23347 (eobp))))
23348 (if uncommentp
23349 ;; Only blank lines and comments in region: uncomment it.
23350 (save-excursion
23351 (goto-char (point-min))
23352 (while (not (eobp))
23353 (when (looking-at "[ \t]*\\(#\\(?: \\|$\\)\\)")
23354 (replace-match "" nil nil nil 1))
23355 (forward-line)))
23356 ;; Comment each line in region.
23357 (let ((min-indent (point-max)))
23358 ;; First find the minimum indentation across all lines.
23359 (save-excursion
23360 (goto-char (point-min))
23361 (while (and (not (eobp)) (not (zerop min-indent)))
23362 (unless (looking-at "[ \t]*$")
23363 (setq min-indent (min min-indent (current-indentation))))
23364 (forward-line)))
23365 ;; Then loop over all lines.
23366 (save-excursion
23367 (goto-char (point-min))
23368 (while (not (eobp))
23369 (unless (and (not comment-empty-lines) (looking-at "[ \t]*$"))
23370 ;; Don't get fooled by invisible text (e.g. link path)
23371 ;; when moving to column MIN-INDENT.
23372 (let ((buffer-invisibility-spec nil))
23373 (org-move-to-column min-indent t))
23374 (insert comment-start))
23375 (forward-line)))))))))
23377 (defun org-comment-dwim (arg)
23378 "Call `comment-dwim' within a source edit buffer if needed."
23379 (interactive "*P")
23380 (if (org-in-src-block-p)
23381 (org-babel-do-in-edit-buffer (call-interactively 'comment-dwim))
23382 (call-interactively 'comment-dwim)))
23385 ;;; Timestamps API
23387 ;; This section contains tools to operate on timestamp objects, as
23388 ;; returned by, e.g. `org-element-context'.
23390 (defun org-timestamp-has-time-p (timestamp)
23391 "Non-nil when TIMESTAMP has a time specified."
23392 (org-element-property :hour-start timestamp))
23394 (defun org-timestamp-format (timestamp format &optional end utc)
23395 "Format a TIMESTAMP element into a string.
23397 FORMAT is a format specifier to be passed to
23398 `format-time-string'.
23400 When optional argument END is non-nil, use end of date-range or
23401 time-range, if possible.
23403 When optional argument UTC is non-nil, time will be expressed as
23404 Universal Time."
23405 (format-time-string
23406 format
23407 (apply 'encode-time
23408 (cons 0
23409 (mapcar
23410 (lambda (prop) (or (org-element-property prop timestamp) 0))
23411 (if end '(:minute-end :hour-end :day-end :month-end :year-end)
23412 '(:minute-start :hour-start :day-start :month-start
23413 :year-start)))))
23414 utc))
23416 (defun org-timestamp-split-range (timestamp &optional end)
23417 "Extract a timestamp object from a date or time range.
23419 TIMESTAMP is a timestamp object. END, when non-nil, means extract
23420 the end of the range. Otherwise, extract its start.
23422 Return a new timestamp object sharing the same parent as
23423 TIMESTAMP."
23424 (let ((type (org-element-property :type timestamp)))
23425 (if (memq type '(active inactive diary)) timestamp
23426 (let ((split-ts (list 'timestamp (copy-sequence (nth 1 timestamp)))))
23427 ;; Set new type.
23428 (org-element-put-property
23429 split-ts :type (if (eq type 'active-range) 'active 'inactive))
23430 ;; Copy start properties over end properties if END is
23431 ;; non-nil. Otherwise, copy end properties over `start' ones.
23432 (let ((p-alist '((:minute-start . :minute-end)
23433 (:hour-start . :hour-end)
23434 (:day-start . :day-end)
23435 (:month-start . :month-end)
23436 (:year-start . :year-end))))
23437 (dolist (p-cell p-alist)
23438 (org-element-put-property
23439 split-ts
23440 (funcall (if end 'car 'cdr) p-cell)
23441 (org-element-property
23442 (funcall (if end 'cdr 'car) p-cell) split-ts)))
23443 ;; Eventually refresh `:raw-value'.
23444 (org-element-put-property split-ts :raw-value nil)
23445 (org-element-put-property
23446 split-ts :raw-value (org-element-interpret-data split-ts)))))))
23448 (defun org-timestamp-translate (timestamp &optional boundary)
23449 "Translate TIMESTAMP object to custom format.
23451 Format string is defined in `org-time-stamp-custom-formats',
23452 which see.
23454 When optional argument BOUNDARY is non-nil, it is either the
23455 symbol `start' or `end'. In this case, only translate the
23456 starting or ending part of TIMESTAMP if it is a date or time
23457 range. Otherwise, translate both parts.
23459 Return timestamp as-is if `org-display-custom-times' is nil or if
23460 it has a `diary' type."
23461 (let ((type (org-element-property :type timestamp)))
23462 (if (or (not org-display-custom-times) (eq type 'diary))
23463 (org-element-interpret-data timestamp)
23464 (let ((fmt (funcall (if (org-timestamp-has-time-p timestamp) #'cdr #'car)
23465 org-time-stamp-custom-formats)))
23466 (if (and (not boundary) (memq type '(active-range inactive-range)))
23467 (concat (org-timestamp-format timestamp fmt)
23468 "--"
23469 (org-timestamp-format timestamp fmt t))
23470 (org-timestamp-format timestamp fmt (eq boundary 'end)))))))
23474 ;;; Other stuff.
23476 (defun org-reftex-citation ()
23477 "Use reftex-citation to insert a citation into the buffer.
23478 This looks for a line like
23480 #+BIBLIOGRAPHY: foo plain option:-d
23482 and derives from it that foo.bib is the bibliography file relevant
23483 for this document. It then installs the necessary environment for RefTeX
23484 to work in this buffer and calls `reftex-citation' to insert a citation
23485 into the buffer.
23487 Export of such citations to both LaTeX and HTML is handled by the contributed
23488 package ox-bibtex by Taru Karttunen."
23489 (interactive)
23490 (let ((reftex-docstruct-symbol 'rds)
23491 (reftex-cite-format "\\cite{%l}")
23492 rds bib)
23493 (save-excursion
23494 (save-restriction
23495 (widen)
23496 (let ((case-fold-search t)
23497 (re "^[ \t]*#\\+BIBLIOGRAPHY:[ \t]+\\([^ \t\n]+\\)"))
23498 (if (not (save-excursion
23499 (or (re-search-forward re nil t)
23500 (re-search-backward re nil t))))
23501 (user-error "No bibliography defined in file")
23502 (setq bib (concat (match-string 1) ".bib")
23503 rds (list (list 'bib bib)))))))
23504 (call-interactively 'reftex-citation)))
23506 ;;;; Functions extending outline functionality
23508 (defun org-beginning-of-line (&optional arg)
23509 "Go to the beginning of the current line. If that is invisible, continue
23510 to a visible line beginning. This makes the function of C-a more intuitive.
23511 If this is a headline, and `org-special-ctrl-a/e' is set, ignore tags on the
23512 first attempt, and only move to after the tags when the cursor is already
23513 beyond the end of the headline."
23514 (interactive "P")
23515 (let ((pos (point))
23516 (special (if (consp org-special-ctrl-a/e)
23517 (car org-special-ctrl-a/e)
23518 org-special-ctrl-a/e))
23519 deactivate-mark refpos)
23520 (if (org-bound-and-true-p visual-line-mode)
23521 (beginning-of-visual-line 1)
23522 (beginning-of-line 1))
23523 (if (and arg (fboundp 'move-beginning-of-line))
23524 (call-interactively 'move-beginning-of-line)
23525 (if (bobp)
23527 (backward-char 1)
23528 (if (org-truely-invisible-p)
23529 (while (and (not (bobp)) (org-truely-invisible-p))
23530 (backward-char 1)
23531 (beginning-of-line 1))
23532 (forward-char 1))))
23533 (when special
23534 (cond
23535 ((and (looking-at org-complex-heading-regexp)
23536 (= (char-after (match-end 1)) ?\ ))
23537 (setq refpos (min (1+ (or (match-end 3) (match-end 2) (match-end 1)))
23538 (point-at-eol)))
23539 (goto-char
23540 (if (eq special t)
23541 (cond ((> pos refpos) refpos)
23542 ((= pos (point)) refpos)
23543 (t (point)))
23544 (cond ((> pos (point)) (point))
23545 ((not (eq last-command this-command)) (point))
23546 (t refpos)))))
23547 ((org-at-item-p)
23548 ;; Being at an item and not looking at an the item means point
23549 ;; was previously moved to beginning of a visual line, which
23550 ;; doesn't contain the item. Therefore, do nothing special,
23551 ;; just stay here.
23552 (when (looking-at org-list-full-item-re)
23553 ;; Set special position at first white space character after
23554 ;; bullet, and check-box, if any.
23555 (let ((after-bullet
23556 (let ((box (match-end 3)))
23557 (if (not box) (match-end 1)
23558 (let ((after (char-after box)))
23559 (if (and after (= after ? )) (1+ box) box))))))
23560 ;; Special case: Move point to special position when
23561 ;; currently after it or at beginning of line.
23562 (if (eq special t)
23563 (when (or (> pos after-bullet) (= (point) pos))
23564 (goto-char after-bullet))
23565 ;; Reversed case: Move point to special position when
23566 ;; point was already at beginning of line and command is
23567 ;; repeated.
23568 (when (and (= (point) pos) (eq last-command this-command))
23569 (goto-char after-bullet))))))))
23570 (org-no-warnings
23571 (and (featurep 'xemacs) (setq zmacs-region-stays t))))
23572 (setq disable-point-adjustment
23573 (or (not (invisible-p (point)))
23574 (not (invisible-p (max (point-min) (1- (point))))))))
23576 (defun org-end-of-line (&optional arg)
23577 "Go to the end of the line.
23578 If this is a headline, and `org-special-ctrl-a/e' is set, ignore
23579 tags on the first attempt, and only move to after the tags when
23580 the cursor is already beyond the end of the headline."
23581 (interactive "P")
23582 (let ((special (if (consp org-special-ctrl-a/e) (cdr org-special-ctrl-a/e)
23583 org-special-ctrl-a/e))
23584 (move-fun (cond ((org-bound-and-true-p visual-line-mode)
23585 'end-of-visual-line)
23586 ((fboundp 'move-end-of-line) 'move-end-of-line)
23587 (t 'end-of-line)))
23588 deactivate-mark)
23589 (if (or (not special) arg) (call-interactively move-fun)
23590 (let* ((element (save-excursion (beginning-of-line)
23591 (org-element-at-point)))
23592 (type (org-element-type element)))
23593 (cond
23594 ((memq type '(headline inlinetask))
23595 (let ((pos (point)))
23596 (beginning-of-line 1)
23597 (if (looking-at (org-re ".*?\\(?:\\([ \t]*\\)\\(:[[:alnum:]_@#%:]+:\\)?[ \t]*\\)?$"))
23598 (if (eq special t)
23599 (if (or (< pos (match-beginning 1)) (= pos (match-end 0)))
23600 (goto-char (match-beginning 1))
23601 (goto-char (match-end 0)))
23602 (if (or (< pos (match-end 0))
23603 (not (eq this-command last-command)))
23604 (goto-char (match-end 0))
23605 (goto-char (match-beginning 1))))
23606 (call-interactively move-fun))))
23607 ((outline-invisible-p (line-end-position))
23608 ;; If element is hidden, `move-end-of-line' would put point
23609 ;; after it. Use `end-of-line' to stay on current line.
23610 (call-interactively 'end-of-line))
23611 (t (call-interactively move-fun)))))
23612 (org-no-warnings (and (featurep 'xemacs) (setq zmacs-region-stays t))))
23613 (setq disable-point-adjustment
23614 (or (not (invisible-p (point)))
23615 (not (invisible-p (max (point-min) (1- (point))))))))
23617 (define-key org-mode-map "\C-a" 'org-beginning-of-line)
23618 (define-key org-mode-map "\C-e" 'org-end-of-line)
23620 (defun org-backward-sentence (&optional arg)
23621 "Go to beginning of sentence, or beginning of table field.
23622 This will call `backward-sentence' or `org-table-beginning-of-field',
23623 depending on context."
23624 (interactive "P")
23625 (cond
23626 ((org-at-table-p) (call-interactively 'org-table-beginning-of-field))
23627 (t (call-interactively 'backward-sentence))))
23629 (defun org-forward-sentence (&optional arg)
23630 "Go to end of sentence, or end of table field.
23631 This will call `forward-sentence' or `org-table-end-of-field',
23632 depending on context."
23633 (interactive "P")
23634 (cond
23635 ((org-at-table-p) (call-interactively 'org-table-end-of-field))
23636 (t (call-interactively 'forward-sentence))))
23638 (define-key org-mode-map "\M-a" 'org-backward-sentence)
23639 (define-key org-mode-map "\M-e" 'org-forward-sentence)
23641 (defun org-kill-line (&optional arg)
23642 "Kill line, to tags or end of line."
23643 (interactive "P")
23644 (cond
23645 ((or (not org-special-ctrl-k)
23646 (bolp)
23647 (not (org-at-heading-p)))
23648 (if (and (get-char-property (min (point-max) (point-at-eol)) 'invisible)
23649 org-ctrl-k-protect-subtree)
23650 (if (or (eq org-ctrl-k-protect-subtree 'error)
23651 (not (y-or-n-p "Kill hidden subtree along with headline? ")))
23652 (user-error "C-k aborted as it would kill a hidden subtree")))
23653 (call-interactively
23654 (if (org-bound-and-true-p visual-line-mode) 'kill-visual-line 'kill-line)))
23655 ((looking-at (org-re ".*?\\S-\\([ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)[ \t]*$"))
23656 (kill-region (point) (match-beginning 1))
23657 (org-set-tags nil t))
23658 (t (kill-region (point) (point-at-eol)))))
23660 (define-key org-mode-map "\C-k" 'org-kill-line)
23662 (defun org-yank (&optional arg)
23663 "Yank. If the kill is a subtree, treat it specially.
23664 This command will look at the current kill and check if is a single
23665 subtree, or a series of subtrees[1]. If it passes the test, and if the
23666 cursor is at the beginning of a line or after the stars of a currently
23667 empty headline, then the yank is handled specially. How exactly depends
23668 on the value of the following variables, both set by default.
23670 `org-yank-folded-subtrees'
23671 When set, the subtree(s) will be folded after insertion, but only
23672 if doing so would now swallow text after the yanked text.
23674 `org-yank-adjusted-subtrees'
23675 When set, the subtree will be promoted or demoted in order to
23676 fit into the local outline tree structure, which means that the
23677 level will be adjusted so that it becomes the smaller one of the
23678 two *visible* surrounding headings.
23680 Any prefix to this command will cause `yank' to be called directly with
23681 no special treatment. In particular, a simple \\[universal-argument] prefix \
23682 will just
23683 plainly yank the text as it is.
23685 \[1] The test checks if the first non-white line is a heading
23686 and if there are no other headings with fewer stars."
23687 (interactive "P")
23688 (org-yank-generic 'yank arg))
23690 (defun org-yank-generic (command arg)
23691 "Perform some yank-like command.
23693 This function implements the behavior described in the `org-yank'
23694 documentation. However, it has been generalized to work for any
23695 interactive command with similar behavior."
23697 ;; pretend to be command COMMAND
23698 (setq this-command command)
23700 (if arg
23701 (call-interactively command)
23703 (let ((subtreep ; is kill a subtree, and the yank position appropriate?
23704 (and (org-kill-is-subtree-p)
23705 (or (bolp)
23706 (and (looking-at "[ \t]*$")
23707 (string-match
23708 "\\`\\*+\\'"
23709 (buffer-substring (point-at-bol) (point)))))))
23710 swallowp)
23711 (cond
23712 ((and subtreep org-yank-folded-subtrees)
23713 (let ((beg (point))
23714 end)
23715 (if (and subtreep org-yank-adjusted-subtrees)
23716 (org-paste-subtree nil nil 'for-yank)
23717 (call-interactively command))
23719 (setq end (point))
23720 (goto-char beg)
23721 (when (and (bolp) subtreep
23722 (not (setq swallowp
23723 (org-yank-folding-would-swallow-text beg end))))
23724 (org-with-limited-levels
23725 (or (looking-at org-outline-regexp)
23726 (re-search-forward org-outline-regexp-bol end t))
23727 (while (and (< (point) end) (looking-at org-outline-regexp))
23728 (hide-subtree)
23729 (org-cycle-show-empty-lines 'folded)
23730 (condition-case nil
23731 (outline-forward-same-level 1)
23732 (error (goto-char end))))))
23733 (when swallowp
23734 (message
23735 "Inserted text not folded because that would swallow text"))
23737 (goto-char end)
23738 (skip-chars-forward " \t\n\r")
23739 (beginning-of-line 1)
23740 (push-mark beg 'nomsg)))
23741 ((and subtreep org-yank-adjusted-subtrees)
23742 (let ((beg (point-at-bol)))
23743 (org-paste-subtree nil nil 'for-yank)
23744 (push-mark beg 'nomsg)))
23746 (call-interactively command))))))
23748 (defun org-yank-folding-would-swallow-text (beg end)
23749 "Would hide-subtree at BEG swallow any text after END?"
23750 (let (level)
23751 (org-with-limited-levels
23752 (save-excursion
23753 (goto-char beg)
23754 (when (or (looking-at org-outline-regexp)
23755 (re-search-forward org-outline-regexp-bol end t))
23756 (setq level (org-outline-level)))
23757 (goto-char end)
23758 (skip-chars-forward " \t\r\n\v\f")
23759 (if (or (eobp)
23760 (and (bolp) (looking-at org-outline-regexp)
23761 (<= (org-outline-level) level)))
23762 nil ; Nothing would be swallowed
23763 t))))) ; something would swallow
23765 (define-key org-mode-map "\C-y" 'org-yank)
23767 (defun org-truely-invisible-p ()
23768 "Check if point is at a character currently not visible.
23769 This version does not only check the character property, but also
23770 `visible-mode'."
23771 ;; Early versions of noutline don't have `outline-invisible-p'.
23772 (if (org-bound-and-true-p visible-mode)
23774 (outline-invisible-p)))
23776 (defun org-invisible-p2 ()
23777 "Check if point is at a character currently not visible."
23778 (save-excursion
23779 (if (and (eolp) (not (bobp))) (backward-char 1))
23780 ;; Early versions of noutline don't have `outline-invisible-p'.
23781 (outline-invisible-p)))
23783 (defun org-back-to-heading (&optional invisible-ok)
23784 "Call `outline-back-to-heading', but provide a better error message."
23785 (condition-case nil
23786 (outline-back-to-heading invisible-ok)
23787 (error (error "Before first headline at position %d in buffer %s"
23788 (point) (current-buffer)))))
23790 (defun org-before-first-heading-p ()
23791 "Before first heading?"
23792 (save-excursion
23793 (end-of-line)
23794 (null (re-search-backward org-outline-regexp-bol nil t))))
23796 (defun org-at-heading-p (&optional ignored)
23797 (outline-on-heading-p t))
23798 ;; Compatibility alias with Org versions < 7.8.03
23799 (defalias 'org-on-heading-p 'org-at-heading-p)
23801 (defun org-in-commented-heading-p (&optional no-inheritance)
23802 "Non-nil if point is under a commented heading.
23803 This function also checks ancestors of the current headline,
23804 unless optional argument NO-INHERITANCE is non-nil."
23805 (cond
23806 ((org-before-first-heading-p) nil)
23807 ((let ((headline (nth 4 (org-heading-components))))
23808 (and headline
23809 (let ((case-fold-search nil))
23810 (org-string-match-p (concat "^" org-comment-string "\\(?: \\|$\\)")
23811 headline)))))
23812 (no-inheritance nil)
23814 (save-excursion (and (org-up-heading-safe) (org-in-commented-heading-p))))))
23816 (defun org-at-comment-p nil
23817 "Is cursor in a commented line?"
23818 (save-excursion
23819 (save-match-data
23820 (beginning-of-line)
23821 (looking-at "^[ \t]*# "))))
23823 (defun org-at-drawer-p nil
23824 "Is cursor at a drawer keyword?"
23825 (save-excursion
23826 (move-beginning-of-line 1)
23827 (looking-at org-drawer-regexp)))
23829 (defun org-at-block-p nil
23830 "Is cursor at a block keyword?"
23831 (save-excursion
23832 (move-beginning-of-line 1)
23833 (looking-at org-block-regexp)))
23835 (defun org-point-at-end-of-empty-headline ()
23836 "If point is at the end of an empty headline, return t, else nil.
23837 If the heading only contains a TODO keyword, it is still still considered
23838 empty."
23839 (and (looking-at "[ \t]*$")
23840 (when org-todo-line-regexp
23841 (save-excursion
23842 (beginning-of-line 1)
23843 (let ((case-fold-search nil))
23844 (looking-at org-todo-line-regexp)
23845 (string= (match-string 3) ""))))))
23847 (defun org-at-heading-or-item-p ()
23848 (or (org-at-heading-p) (org-at-item-p)))
23850 (defun org-at-target-p ()
23851 (or (org-in-regexp org-radio-target-regexp)
23852 (org-in-regexp org-target-regexp)))
23853 ;; Compatibility alias with Org versions < 7.8.03
23854 (defalias 'org-on-target-p 'org-at-target-p)
23856 (defun org-up-heading-all (arg)
23857 "Move to the heading line of which the present line is a subheading.
23858 This function considers both visible and invisible heading lines.
23859 With argument, move up ARG levels."
23860 (if (fboundp 'outline-up-heading-all)
23861 (outline-up-heading-all arg) ; emacs 21 version of outline.el
23862 (outline-up-heading arg t))) ; emacs 22 version of outline.el
23864 (defun org-up-heading-safe ()
23865 "Move to the heading line of which the present line is a subheading.
23866 This version will not throw an error. It will return the level of the
23867 headline found, or nil if no higher level is found.
23869 Also, this function will be a lot faster than `outline-up-heading',
23870 because it relies on stars being the outline starters. This can really
23871 make a significant difference in outlines with very many siblings."
23872 (when (ignore-errors (org-back-to-heading t))
23873 (let ((level-up (1- (funcall outline-level))))
23874 (and (> level-up 0)
23875 (re-search-backward (format "^\\*\\{1,%d\\} " level-up) nil t)
23876 (funcall outline-level)))))
23878 (defun org-first-sibling-p ()
23879 "Is this heading the first child of its parents?"
23880 (interactive)
23881 (let ((re org-outline-regexp-bol)
23882 level l)
23883 (unless (org-at-heading-p t)
23884 (user-error "Not at a heading"))
23885 (setq level (funcall outline-level))
23886 (save-excursion
23887 (if (not (re-search-backward re nil t))
23889 (setq l (funcall outline-level))
23890 (< l level)))))
23892 (defun org-goto-sibling (&optional previous)
23893 "Goto the next sibling, even if it is invisible.
23894 When PREVIOUS is set, go to the previous sibling instead. Returns t
23895 when a sibling was found. When none is found, return nil and don't
23896 move point."
23897 (let ((fun (if previous 're-search-backward 're-search-forward))
23898 (pos (point))
23899 (re org-outline-regexp-bol)
23900 level l)
23901 (when (ignore-errors (org-back-to-heading t))
23902 (setq level (funcall outline-level))
23903 (catch 'exit
23904 (or previous (forward-char 1))
23905 (while (funcall fun re nil t)
23906 (setq l (funcall outline-level))
23907 (when (< l level) (goto-char pos) (throw 'exit nil))
23908 (when (= l level) (goto-char (match-beginning 0)) (throw 'exit t)))
23909 (goto-char pos)
23910 nil))))
23912 (defun org-show-siblings ()
23913 "Show all siblings of the current headline."
23914 (save-excursion
23915 (while (org-goto-sibling) (org-flag-heading nil)))
23916 (save-excursion
23917 (while (org-goto-sibling 'previous)
23918 (org-flag-heading nil))))
23920 (defun org-goto-first-child ()
23921 "Goto the first child, even if it is invisible.
23922 Return t when a child was found. Otherwise don't move point and
23923 return nil."
23924 (let (level (pos (point)) (re org-outline-regexp-bol))
23925 (when (ignore-errors (org-back-to-heading t))
23926 (setq level (outline-level))
23927 (forward-char 1)
23928 (if (and (re-search-forward re nil t) (> (outline-level) level))
23929 (progn (goto-char (match-beginning 0)) t)
23930 (goto-char pos) nil))))
23932 (defun org-show-hidden-entry ()
23933 "Show an entry where even the heading is hidden."
23934 (save-excursion
23935 (org-show-entry)))
23937 (defun org-flag-heading (flag &optional entry)
23938 "Flag the current heading. FLAG non-nil means make invisible.
23939 When ENTRY is non-nil, show the entire entry."
23940 (save-excursion
23941 (org-back-to-heading t)
23942 ;; Check if we should show the entire entry
23943 (if entry
23944 (progn
23945 (org-show-entry)
23946 (save-excursion
23947 (and (outline-next-heading)
23948 (org-flag-heading nil))))
23949 (outline-flag-region (max (point-min) (1- (point)))
23950 (save-excursion (outline-end-of-heading) (point))
23951 flag))))
23953 (defun org-get-next-sibling ()
23954 "Move to next heading of the same level, and return point.
23955 If there is no such heading, return nil.
23956 This is like outline-next-sibling, but invisible headings are ok."
23957 (let ((level (funcall outline-level)))
23958 (outline-next-heading)
23959 (while (and (not (eobp)) (> (funcall outline-level) level))
23960 (outline-next-heading))
23961 (if (or (eobp) (< (funcall outline-level) level))
23963 (point))))
23965 (defun org-get-last-sibling ()
23966 "Move to previous heading of the same level, and return point.
23967 If there is no such heading, return nil."
23968 (let ((opoint (point))
23969 (level (funcall outline-level)))
23970 (outline-previous-heading)
23971 (when (and (/= (point) opoint) (outline-on-heading-p t))
23972 (while (and (> (funcall outline-level) level)
23973 (not (bobp)))
23974 (outline-previous-heading))
23975 (if (< (funcall outline-level) level)
23977 (point)))))
23979 (defun org-end-of-subtree (&optional invisible-ok to-heading)
23980 "Goto to the end of a subtree."
23981 ;; This contains an exact copy of the original function, but it uses
23982 ;; `org-back-to-heading', to make it work also in invisible
23983 ;; trees. And is uses an invisible-ok argument.
23984 ;; Under Emacs this is not needed, but the old outline.el needs this fix.
23985 ;; Furthermore, when used inside Org, finding the end of a large subtree
23986 ;; with many children and grandchildren etc, this can be much faster
23987 ;; than the outline version.
23988 (org-back-to-heading invisible-ok)
23989 (let ((first t)
23990 (level (funcall outline-level)))
23991 (if (and (derived-mode-p 'org-mode) (< level 1000))
23992 ;; A true heading (not a plain list item), in Org-mode
23993 ;; This means we can easily find the end by looking
23994 ;; only for the right number of stars. Using a regexp to do
23995 ;; this is so much faster than using a Lisp loop.
23996 (let ((re (concat "^\\*\\{1," (int-to-string level) "\\} ")))
23997 (forward-char 1)
23998 (and (re-search-forward re nil 'move) (beginning-of-line 1)))
23999 ;; something else, do it the slow way
24000 (while (and (not (eobp))
24001 (or first (> (funcall outline-level) level)))
24002 (setq first nil)
24003 (outline-next-heading)))
24004 (unless to-heading
24005 (if (memq (preceding-char) '(?\n ?\^M))
24006 (progn
24007 ;; Go to end of line before heading
24008 (forward-char -1)
24009 (if (memq (preceding-char) '(?\n ?\^M))
24010 ;; leave blank line before heading
24011 (forward-char -1))))))
24012 (point))
24014 (defun org-end-of-meta-data (&optional full)
24015 "Skip planning line and properties drawer in current entry.
24016 When optional argument FULL is non-nil, also skip empty lines,
24017 clocking lines and regular drawers at the beginning of the
24018 entry."
24019 (org-back-to-heading t)
24020 (forward-line)
24021 (when (org-looking-at-p org-planning-line-re) (forward-line))
24022 (when (looking-at org-property-drawer-re)
24023 (goto-char (match-end 0))
24024 (forward-line))
24025 (when (and full (not (org-at-heading-p)))
24026 (catch 'exit
24027 (let ((end (save-excursion (outline-next-heading) (point)))
24028 (re (concat "[ \t]*$" "\\|" org-clock-line-re)))
24029 (while (not (eobp))
24030 (cond ((org-looking-at-p org-drawer-regexp)
24031 (if (re-search-forward "^[ \t]*:END:[ \t]*$" end t)
24032 (forward-line)
24033 (throw 'exit t)))
24034 ((org-looking-at-p re) (forward-line))
24035 (t (throw 'exit t))))))))
24037 (defun org-forward-heading-same-level (arg &optional invisible-ok)
24038 "Move forward to the ARG'th subheading at same level as this one.
24039 Stop at the first and last subheadings of a superior heading.
24040 Normally this only looks at visible headings, but when INVISIBLE-OK is
24041 non-nil it will also look at invisible ones."
24042 (interactive "p")
24043 (if (not (ignore-errors (org-back-to-heading invisible-ok)))
24044 (if (and arg (< arg 0))
24045 (goto-char (point-min))
24046 (outline-next-heading))
24047 (org-at-heading-p)
24048 (let ((level (- (match-end 0) (match-beginning 0) 1))
24049 (f (if (and arg (< arg 0))
24050 're-search-backward
24051 're-search-forward))
24052 (count (if arg (abs arg) 1))
24053 (result (point)))
24054 (while (and (prog1 (> count 0)
24055 (forward-char (if (and arg (< arg 0)) -1 1)))
24056 (funcall f org-outline-regexp-bol nil 'move))
24057 (let ((l (- (match-end 0) (match-beginning 0) 1)))
24058 (cond ((< l level) (setq count 0))
24059 ((and (= l level)
24060 (or invisible-ok
24061 (progn
24062 (goto-char (line-beginning-position))
24063 (not (outline-invisible-p)))))
24064 (setq count (1- count))
24065 (when (eq l level)
24066 (setq result (point)))))))
24067 (goto-char result))
24068 (beginning-of-line 1)))
24070 (defun org-backward-heading-same-level (arg &optional invisible-ok)
24071 "Move backward to the ARG'th subheading at same level as this one.
24072 Stop at the first and last subheadings of a superior heading."
24073 (interactive "p")
24074 (org-forward-heading-same-level (if arg (- arg) -1) invisible-ok))
24076 (defun org-next-visible-heading (arg)
24077 "Move to the next visible heading.
24079 This function wraps `outline-next-visible-heading' with
24080 `org-with-limited-levels' in order to skip over inline tasks and
24081 respect customization of `org-odd-levels-only'."
24082 (interactive "p")
24083 (org-with-limited-levels
24084 (outline-next-visible-heading arg)))
24086 (defun org-previous-visible-heading (arg)
24087 "Move to the next visible heading.
24089 This function wraps `outline-previous-visible-heading' with
24090 `org-with-limited-levels' in order to skip over inline tasks and
24091 respect customization of `org-odd-levels-only'."
24092 (interactive "p")
24093 (org-with-limited-levels
24094 (outline-previous-visible-heading arg)))
24096 (defun org-next-block (arg &optional backward block-regexp)
24097 "Jump to the next block.
24098 With a prefix argument ARG, jump forward ARG many source blocks.
24099 When BACKWARD is non-nil, jump to the previous block.
24100 When BLOCK-REGEXP is non-nil, use this regexp to find blocks."
24101 (interactive "p")
24102 (let ((re (or block-regexp org-block-regexp))
24103 (re-search-fn (or (and backward 're-search-backward)
24104 're-search-forward)))
24105 (if (looking-at re) (forward-char 1))
24106 (condition-case nil
24107 (funcall re-search-fn re nil nil arg)
24108 (error (user-error "No %s code blocks"
24109 (if backward "previous" "further" ))))
24110 (goto-char (match-beginning 0)) (org-show-context)))
24112 (defun org-previous-block (arg &optional block-regexp)
24113 "Jump to the previous block.
24114 With a prefix argument ARG, jump backward ARG many source blocks.
24115 When BLOCK-REGEXP is non-nil, use this regexp to find blocks."
24116 (interactive "p")
24117 (org-next-block arg t block-regexp))
24119 (defun org-forward-paragraph ()
24120 "Move forward to beginning of next paragraph or equivalent.
24122 The function moves point to the beginning of the next visible
24123 structural element, which can be a paragraph, a table, a list
24124 item, etc. It also provides some special moves for convenience:
24126 - On an affiliated keyword, jump to the beginning of the
24127 relative element.
24128 - On an item or a footnote definition, move to the second
24129 element inside, if any.
24130 - On a table or a property drawer, jump after it.
24131 - On a verse or source block, stop after blank lines."
24132 (interactive)
24133 (when (eobp) (user-error "Cannot move further down"))
24134 (let* ((deactivate-mark nil)
24135 (element (org-element-at-point))
24136 (type (org-element-type element))
24137 (post-affiliated (org-element-property :post-affiliated element))
24138 (contents-begin (org-element-property :contents-begin element))
24139 (contents-end (org-element-property :contents-end element))
24140 (end (let ((end (org-element-property :end element)) (parent element))
24141 (while (and (setq parent (org-element-property :parent parent))
24142 (= (org-element-property :contents-end parent) end))
24143 (setq end (org-element-property :end parent)))
24144 end)))
24145 (cond ((not element)
24146 (skip-chars-forward " \r\t\n")
24147 (or (eobp) (beginning-of-line)))
24148 ;; On affiliated keywords, move to element's beginning.
24149 ((< (point) post-affiliated)
24150 (goto-char post-affiliated))
24151 ;; At a table row, move to the end of the table. Similarly,
24152 ;; at a node property, move to the end of the property
24153 ;; drawer.
24154 ((memq type '(node-property table-row))
24155 (goto-char (org-element-property
24156 :end (org-element-property :parent element))))
24157 ((memq type '(property-drawer table)) (goto-char end))
24158 ;; Consider blank lines as separators in verse and source
24159 ;; blocks to ease editing.
24160 ((memq type '(src-block verse-block))
24161 (when (eq type 'src-block)
24162 (setq contents-end
24163 (save-excursion (goto-char end)
24164 (skip-chars-backward " \r\t\n")
24165 (line-beginning-position))))
24166 (beginning-of-line)
24167 (when (looking-at "[ \t]*$") (skip-chars-forward " \r\t\n"))
24168 (if (not (re-search-forward "^[ \t]*$" contents-end t))
24169 (goto-char end)
24170 (skip-chars-forward " \r\t\n")
24171 (if (= (point) contents-end) (goto-char end)
24172 (beginning-of-line))))
24173 ;; With no contents, just skip element.
24174 ((not contents-begin) (goto-char end))
24175 ;; If contents are invisible, skip the element altogether.
24176 ((outline-invisible-p (line-end-position))
24177 (case type
24178 (headline
24179 (org-with-limited-levels (outline-next-visible-heading 1)))
24180 ;; At a plain list, make sure we move to the next item
24181 ;; instead of skipping the whole list.
24182 (plain-list (forward-char)
24183 (org-forward-paragraph))
24184 (otherwise (goto-char end))))
24185 ((>= (point) contents-end) (goto-char end))
24186 ((>= (point) contents-begin)
24187 ;; This can only happen on paragraphs and plain lists.
24188 (case type
24189 (paragraph (goto-char end))
24190 ;; At a plain list, try to move to second element in
24191 ;; first item, if possible.
24192 (plain-list (end-of-line)
24193 (org-forward-paragraph))))
24194 ;; When contents start on the middle of a line (e.g. in
24195 ;; items and footnote definitions), try to reach first
24196 ;; element starting after current line.
24197 ((> (line-end-position) contents-begin)
24198 (end-of-line)
24199 (org-forward-paragraph))
24200 (t (goto-char contents-begin)))))
24202 (defun org-backward-paragraph ()
24203 "Move backward to start of previous paragraph or equivalent.
24205 The function moves point to the beginning of the current
24206 structural element, which can be a paragraph, a table, a list
24207 item, etc., or to the beginning of the previous visible one if
24208 point is already there. It also provides some special moves for
24209 convenience:
24211 - On an affiliated keyword, jump to the first one.
24212 - On a table or a property drawer, move to its beginning.
24213 - On a verse or source block, stop before blank lines."
24214 (interactive)
24215 (when (bobp) (user-error "Cannot move further up"))
24216 (let* ((deactivate-mark nil)
24217 (element (org-element-at-point))
24218 (type (org-element-type element))
24219 (contents-begin (org-element-property :contents-begin element))
24220 (contents-end (org-element-property :contents-end element))
24221 (post-affiliated (org-element-property :post-affiliated element))
24222 (begin (org-element-property :begin element)))
24223 (cond
24224 ((not element) (goto-char (point-min)))
24225 ((= (point) begin)
24226 (backward-char)
24227 (org-backward-paragraph))
24228 ((<= (point) post-affiliated) (goto-char begin))
24229 ((memq type '(node-property table-row))
24230 (goto-char (org-element-property
24231 :post-affiliated (org-element-property :parent element))))
24232 ((memq type '(property-drawer table)) (goto-char begin))
24233 ((memq type '(src-block verse-block))
24234 (when (eq type 'src-block)
24235 (setq contents-begin
24236 (save-excursion (goto-char begin) (forward-line) (point))))
24237 (if (= (point) contents-begin) (goto-char post-affiliated)
24238 ;; Inside a verse block, see blank lines as paragraph
24239 ;; separators.
24240 (let ((origin (point)))
24241 (skip-chars-backward " \r\t\n" contents-begin)
24242 (when (re-search-backward "^[ \t]*$" contents-begin 'move)
24243 (skip-chars-forward " \r\t\n" origin)
24244 (if (= (point) origin) (goto-char contents-begin)
24245 (beginning-of-line))))))
24246 ((not contents-begin) (goto-char (or post-affiliated begin)))
24247 ((eq type 'paragraph)
24248 (goto-char contents-begin)
24249 ;; When at first paragraph in an item or a footnote definition,
24250 ;; move directly to beginning of line.
24251 (let ((parent-contents
24252 (org-element-property
24253 :contents-begin (org-element-property :parent element))))
24254 (when (and parent-contents (= parent-contents contents-begin))
24255 (beginning-of-line))))
24256 ;; At the end of a greater element, move to the beginning of the
24257 ;; last element within.
24258 ((>= (point) contents-end)
24259 (goto-char (1- contents-end))
24260 (org-backward-paragraph))
24261 (t (goto-char (or post-affiliated begin))))
24262 ;; Ensure we never leave point invisible.
24263 (when (outline-invisible-p (point)) (beginning-of-visual-line))))
24265 (defun org-forward-element ()
24266 "Move forward by one element.
24267 Move to the next element at the same level, when possible."
24268 (interactive)
24269 (cond ((eobp) (user-error "Cannot move further down"))
24270 ((org-with-limited-levels (org-at-heading-p))
24271 (let ((origin (point)))
24272 (goto-char (org-end-of-subtree nil t))
24273 (unless (org-with-limited-levels (org-at-heading-p))
24274 (goto-char origin)
24275 (user-error "Cannot move further down"))))
24277 (let* ((elem (org-element-at-point))
24278 (end (org-element-property :end elem))
24279 (parent (org-element-property :parent elem)))
24280 (cond ((and parent (= (org-element-property :contents-end parent) end))
24281 (goto-char (org-element-property :end parent)))
24282 ((integer-or-marker-p end) (goto-char end))
24283 (t (message "No element at point")))))))
24285 (defun org-backward-element ()
24286 "Move backward by one element.
24287 Move to the previous element at the same level, when possible."
24288 (interactive)
24289 (cond ((bobp) (user-error "Cannot move further up"))
24290 ((org-with-limited-levels (org-at-heading-p))
24291 ;; At a headline, move to the previous one, if any, or stay
24292 ;; here.
24293 (let ((origin (point)))
24294 (org-with-limited-levels (org-backward-heading-same-level 1))
24295 ;; When current headline has no sibling above, move to its
24296 ;; parent.
24297 (when (= (point) origin)
24298 (or (org-with-limited-levels (org-up-heading-safe))
24299 (progn (goto-char origin)
24300 (user-error "Cannot move further up"))))))
24302 (let* ((elem (org-element-at-point))
24303 (beg (org-element-property :begin elem)))
24304 (cond
24305 ;; Move to beginning of current element if point isn't
24306 ;; there already.
24307 ((null beg) (message "No element at point"))
24308 ((/= (point) beg) (goto-char beg))
24309 (t (goto-char beg)
24310 (skip-chars-backward " \r\t\n")
24311 (unless (bobp)
24312 (let ((prev (org-element-at-point)))
24313 (goto-char (org-element-property :begin prev))
24314 (while (and (setq prev (org-element-property :parent prev))
24315 (<= (org-element-property :end prev) beg))
24316 (goto-char (org-element-property :begin prev)))))))))))
24318 (defun org-up-element ()
24319 "Move to upper element."
24320 (interactive)
24321 (if (org-with-limited-levels (org-at-heading-p))
24322 (unless (org-up-heading-safe) (user-error "No surrounding element"))
24323 (let* ((elem (org-element-at-point))
24324 (parent (org-element-property :parent elem)))
24325 (if parent (goto-char (org-element-property :begin parent))
24326 (if (org-with-limited-levels (org-before-first-heading-p))
24327 (user-error "No surrounding element")
24328 (org-with-limited-levels (org-back-to-heading)))))))
24330 (defvar org-element-greater-elements)
24331 (defun org-down-element ()
24332 "Move to inner element."
24333 (interactive)
24334 (let ((element (org-element-at-point)))
24335 (cond
24336 ((memq (org-element-type element) '(plain-list table))
24337 (goto-char (org-element-property :contents-begin element))
24338 (forward-char))
24339 ((memq (org-element-type element) org-element-greater-elements)
24340 ;; If contents are hidden, first disclose them.
24341 (when (outline-invisible-p (line-end-position)) (org-cycle))
24342 (goto-char (or (org-element-property :contents-begin element)
24343 (user-error "No content for this element"))))
24344 (t (user-error "No inner element")))))
24346 (defun org-drag-element-backward ()
24347 "Move backward element at point."
24348 (interactive)
24349 (if (org-with-limited-levels (org-at-heading-p)) (org-move-subtree-up)
24350 (let* ((elem (org-element-at-point))
24351 (prev-elem
24352 (save-excursion
24353 (goto-char (org-element-property :begin elem))
24354 (skip-chars-backward " \r\t\n")
24355 (unless (bobp)
24356 (let* ((beg (org-element-property :begin elem))
24357 (prev (org-element-at-point))
24358 (up prev))
24359 (while (and (setq up (org-element-property :parent up))
24360 (<= (org-element-property :end up) beg))
24361 (setq prev up))
24362 prev)))))
24363 ;; Error out if no previous element or previous element is
24364 ;; a parent of the current one.
24365 (if (or (not prev-elem) (org-element-nested-p elem prev-elem))
24366 (user-error "Cannot drag element backward")
24367 (let ((pos (point)))
24368 (org-element-swap-A-B prev-elem elem)
24369 (goto-char (+ (org-element-property :begin prev-elem)
24370 (- pos (org-element-property :begin elem)))))))))
24372 (defun org-drag-element-forward ()
24373 "Move forward element at point."
24374 (interactive)
24375 (let* ((pos (point))
24376 (elem (org-element-at-point)))
24377 (when (= (point-max) (org-element-property :end elem))
24378 (user-error "Cannot drag element forward"))
24379 (goto-char (org-element-property :end elem))
24380 (let ((next-elem (org-element-at-point)))
24381 (when (or (org-element-nested-p elem next-elem)
24382 (and (eq (org-element-type next-elem) 'headline)
24383 (not (eq (org-element-type elem) 'headline))))
24384 (goto-char pos)
24385 (user-error "Cannot drag element forward"))
24386 ;; Compute new position of point: it's shifted by NEXT-ELEM
24387 ;; body's length (without final blanks) and by the length of
24388 ;; blanks between ELEM and NEXT-ELEM.
24389 (let ((size-next (- (save-excursion
24390 (goto-char (org-element-property :end next-elem))
24391 (skip-chars-backward " \r\t\n")
24392 (forward-line)
24393 ;; Small correction if buffer doesn't end
24394 ;; with a newline character.
24395 (if (and (eolp) (not (bolp))) (1+ (point)) (point)))
24396 (org-element-property :begin next-elem)))
24397 (size-blank (- (org-element-property :end elem)
24398 (save-excursion
24399 (goto-char (org-element-property :end elem))
24400 (skip-chars-backward " \r\t\n")
24401 (forward-line)
24402 (point)))))
24403 (org-element-swap-A-B elem next-elem)
24404 (goto-char (+ pos size-next size-blank))))))
24406 (defun org-drag-line-forward (arg)
24407 "Drag the line at point ARG lines forward."
24408 (interactive "p")
24409 (dotimes (n (abs arg))
24410 (let ((c (current-column)))
24411 (if (< 0 arg)
24412 (progn
24413 (beginning-of-line 2)
24414 (transpose-lines 1)
24415 (beginning-of-line 0))
24416 (transpose-lines 1)
24417 (beginning-of-line -1))
24418 (org-move-to-column c))))
24420 (defun org-drag-line-backward (arg)
24421 "Drag the line at point ARG lines backward."
24422 (interactive "p")
24423 (org-drag-line-forward (- arg)))
24425 (defun org-mark-element ()
24426 "Put point at beginning of this element, mark at end.
24428 Interactively, if this command is repeated or (in Transient Mark
24429 mode) if the mark is active, it marks the next element after the
24430 ones already marked."
24431 (interactive)
24432 (let (deactivate-mark)
24433 (if (and (org-called-interactively-p 'any)
24434 (or (and (eq last-command this-command) (mark t))
24435 (and transient-mark-mode mark-active)))
24436 (set-mark
24437 (save-excursion
24438 (goto-char (mark))
24439 (goto-char (org-element-property :end (org-element-at-point)))))
24440 (let ((element (org-element-at-point)))
24441 (end-of-line)
24442 (push-mark (org-element-property :end element) t t)
24443 (goto-char (org-element-property :begin element))))))
24445 (defun org-narrow-to-element ()
24446 "Narrow buffer to current element."
24447 (interactive)
24448 (let ((elem (org-element-at-point)))
24449 (cond
24450 ((eq (car elem) 'headline)
24451 (narrow-to-region
24452 (org-element-property :begin elem)
24453 (org-element-property :end elem)))
24454 ((memq (car elem) org-element-greater-elements)
24455 (narrow-to-region
24456 (org-element-property :contents-begin elem)
24457 (org-element-property :contents-end elem)))
24459 (narrow-to-region
24460 (org-element-property :begin elem)
24461 (org-element-property :end elem))))))
24463 (defun org-transpose-element ()
24464 "Transpose current and previous elements, keeping blank lines between.
24465 Point is moved after both elements."
24466 (interactive)
24467 (org-skip-whitespace)
24468 (let ((end (org-element-property :end (org-element-at-point))))
24469 (org-drag-element-backward)
24470 (goto-char end)))
24472 (defun org-unindent-buffer ()
24473 "Un-indent the visible part of the buffer.
24474 Relative indentation (between items, inside blocks, etc.) isn't
24475 modified."
24476 (interactive)
24477 (unless (eq major-mode 'org-mode)
24478 (user-error "Cannot un-indent a buffer not in Org mode"))
24479 (let* ((parse-tree (org-element-parse-buffer 'greater-element))
24480 unindent-tree ; For byte-compiler.
24481 (unindent-tree
24482 (function
24483 (lambda (contents)
24484 (mapc
24485 (lambda (element)
24486 (if (memq (org-element-type element) '(headline section))
24487 (funcall unindent-tree (org-element-contents element))
24488 (save-excursion
24489 (save-restriction
24490 (narrow-to-region
24491 (org-element-property :begin element)
24492 (org-element-property :end element))
24493 (org-do-remove-indentation)))))
24494 (reverse contents))))))
24495 (funcall unindent-tree (org-element-contents parse-tree))))
24497 (defun org-show-subtree ()
24498 "Show everything after this heading at deeper levels."
24499 (interactive)
24500 (outline-flag-region
24501 (point)
24502 (save-excursion
24503 (org-end-of-subtree t t))
24504 nil))
24506 (defun org-show-entry ()
24507 "Show the body directly following this heading.
24508 Show the heading too, if it is currently invisible."
24509 (interactive)
24510 (save-excursion
24511 (ignore-errors
24512 (org-back-to-heading t)
24513 (outline-flag-region
24514 (max (point-min) (1- (point)))
24515 (save-excursion
24516 (if (re-search-forward
24517 (concat "[\r\n]\\(" org-outline-regexp "\\)") nil t)
24518 (match-beginning 1)
24519 (point-max)))
24520 nil)
24521 (org-cycle-hide-drawers 'children))))
24523 (defun org-make-options-regexp (kwds &optional extra)
24524 "Make a regular expression for keyword lines.
24525 KWDS is a list of keywords, as strings. Optional argument EXTRA,
24526 when non-nil, is a regexp matching keywords names."
24527 (concat "^[ \t]*#\\+\\("
24528 (regexp-opt kwds)
24529 (and extra (concat (and kwds "\\|") extra))
24530 "\\):[ \t]*\\(.*\\)"))
24532 ;; Make isearch reveal the necessary context
24533 (defun org-isearch-end ()
24534 "Reveal context after isearch exits."
24535 (when isearch-success ; only if search was successful
24536 (if (featurep 'xemacs)
24537 ;; Under XEmacs, the hook is run in the correct place,
24538 ;; we directly show the context.
24539 (org-show-context 'isearch)
24540 ;; In Emacs the hook runs *before* restoring the overlays.
24541 ;; So we have to use a one-time post-command-hook to do this.
24542 ;; (Emacs 22 has a special variable, see function `org-mode')
24543 (unless (and (boundp 'isearch-mode-end-hook-quit)
24544 isearch-mode-end-hook-quit)
24545 ;; Only when the isearch was not quitted.
24546 (org-add-hook 'post-command-hook 'org-isearch-post-command
24547 'append 'local)))))
24549 (defun org-isearch-post-command ()
24550 "Remove self from hook, and show context."
24551 (remove-hook 'post-command-hook 'org-isearch-post-command 'local)
24552 (org-show-context 'isearch))
24555 ;;;; Integration with and fixes for other packages
24557 ;;; Imenu support
24559 (defvar org-imenu-markers nil
24560 "All markers currently used by Imenu.")
24561 (make-variable-buffer-local 'org-imenu-markers)
24563 (defun org-imenu-new-marker (&optional pos)
24564 "Return a new marker for use by Imenu, and remember the marker."
24565 (let ((m (make-marker)))
24566 (move-marker m (or pos (point)))
24567 (push m org-imenu-markers)
24570 (defun org-imenu-get-tree ()
24571 "Produce the index for Imenu."
24572 (mapc (lambda (x) (move-marker x nil)) org-imenu-markers)
24573 (setq org-imenu-markers nil)
24574 (let* ((n org-imenu-depth)
24575 (re (concat "^" (org-get-limited-outline-regexp)))
24576 (subs (make-vector (1+ n) nil))
24577 (last-level 0)
24578 m level head0 head)
24579 (save-excursion
24580 (save-restriction
24581 (widen)
24582 (goto-char (point-max))
24583 (while (re-search-backward re nil t)
24584 (setq level (org-reduced-level (funcall outline-level)))
24585 (when (and (<= level n)
24586 (looking-at org-complex-heading-regexp)
24587 (setq head0 (org-match-string-no-properties 4)))
24588 (setq head (org-link-display-format head0)
24589 m (org-imenu-new-marker))
24590 (org-add-props head nil 'org-imenu-marker m 'org-imenu t)
24591 (if (>= level last-level)
24592 (push (cons head m) (aref subs level))
24593 (push (cons head (aref subs (1+ level))) (aref subs level))
24594 (loop for i from (1+ level) to n do (aset subs i nil)))
24595 (setq last-level level)))))
24596 (aref subs 1)))
24598 (eval-after-load "imenu"
24599 '(progn
24600 (add-hook 'imenu-after-jump-hook
24601 (lambda ()
24602 (if (derived-mode-p 'org-mode)
24603 (org-show-context 'org-goto))))))
24605 (defun org-link-display-format (link)
24606 "Replace a link with its the description.
24607 If there is no description, use the link target."
24608 (save-match-data
24609 (if (string-match org-bracket-link-analytic-regexp link)
24610 (replace-match (if (match-end 5)
24611 (match-string 5 link)
24612 (concat (match-string 1 link)
24613 (match-string 3 link)))
24614 nil t link)
24615 link)))
24617 (defun org-toggle-link-display ()
24618 "Toggle the literal or descriptive display of links."
24619 (interactive)
24620 (if org-descriptive-links
24621 (progn (org-remove-from-invisibility-spec '(org-link))
24622 (org-restart-font-lock)
24623 (setq org-descriptive-links nil))
24624 (progn (add-to-invisibility-spec '(org-link))
24625 (org-restart-font-lock)
24626 (setq org-descriptive-links t))))
24628 ;; Speedbar support
24630 (defvar org-speedbar-restriction-lock-overlay (make-overlay 1 1)
24631 "Overlay marking the agenda restriction line in speedbar.")
24632 (overlay-put org-speedbar-restriction-lock-overlay
24633 'face 'org-agenda-restriction-lock)
24634 (overlay-put org-speedbar-restriction-lock-overlay
24635 'help-echo "Agendas are currently limited to this item.")
24636 (org-detach-overlay org-speedbar-restriction-lock-overlay)
24638 (defun org-speedbar-set-agenda-restriction ()
24639 "Restrict future agenda commands to the location at point in speedbar.
24640 To get rid of the restriction, use \\[org-agenda-remove-restriction-lock]."
24641 (interactive)
24642 (require 'org-agenda)
24643 (let (p m tp np dir txt)
24644 (cond
24645 ((setq p (text-property-any (point-at-bol) (point-at-eol)
24646 'org-imenu t))
24647 (setq m (get-text-property p 'org-imenu-marker))
24648 (with-current-buffer (marker-buffer m)
24649 (goto-char m)
24650 (org-agenda-set-restriction-lock 'subtree)))
24651 ((setq p (text-property-any (point-at-bol) (point-at-eol)
24652 'speedbar-function 'speedbar-find-file))
24653 (setq tp (previous-single-property-change
24654 (1+ p) 'speedbar-function)
24655 np (next-single-property-change
24656 tp 'speedbar-function)
24657 dir (speedbar-line-directory)
24658 txt (buffer-substring-no-properties (or tp (point-min))
24659 (or np (point-max))))
24660 (with-current-buffer (find-file-noselect
24661 (let ((default-directory dir))
24662 (expand-file-name txt)))
24663 (unless (derived-mode-p 'org-mode)
24664 (user-error "Cannot restrict to non-Org-mode file"))
24665 (org-agenda-set-restriction-lock 'file)))
24666 (t (user-error "Don't know how to restrict Org-mode's agenda")))
24667 (move-overlay org-speedbar-restriction-lock-overlay
24668 (point-at-bol) (point-at-eol))
24669 (setq current-prefix-arg nil)
24670 (org-agenda-maybe-redo)))
24672 (defvar speedbar-file-key-map)
24673 (declare-function speedbar-add-supported-extension "speedbar" (extension))
24674 (eval-after-load "speedbar"
24675 '(progn
24676 (speedbar-add-supported-extension ".org")
24677 (define-key speedbar-file-key-map "<" 'org-speedbar-set-agenda-restriction)
24678 (define-key speedbar-file-key-map "\C-c\C-x<" 'org-speedbar-set-agenda-restriction)
24679 (define-key speedbar-file-key-map ">" 'org-agenda-remove-restriction-lock)
24680 (define-key speedbar-file-key-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
24681 (add-hook 'speedbar-visiting-tag-hook
24682 (lambda () (and (derived-mode-p 'org-mode) (org-show-context 'org-goto))))))
24684 ;;; Fixes and Hacks for problems with other packages
24686 (defun org--flyspell-object-check-p (element)
24687 "Non-nil when Flyspell can check object at point.
24688 ELEMENT is the element at point."
24689 (let ((object (save-excursion
24690 (when (org-looking-at-p "\\>") (backward-char))
24691 (org-element-context element))))
24692 (case (org-element-type object)
24693 ;; Prevent checks in links due to keybinding conflict with
24694 ;; Flyspell.
24695 ((code entity export-snippet inline-babel-call
24696 inline-src-block line-break latex-fragment link macro
24697 statistics-cookie target timestamp verbatim)
24698 nil)
24699 (footnote-reference
24700 ;; Only in inline footnotes, within the definition.
24701 (and (eq (org-element-property :type object) 'inline)
24702 (< (save-excursion
24703 (goto-char (org-element-property :begin object))
24704 (search-forward ":" nil t 2))
24705 (point))))
24706 (otherwise t))))
24708 (defun org-mode-flyspell-verify ()
24709 "Function used for `flyspell-generic-check-word-predicate'."
24710 (if (org-at-heading-p)
24711 ;; At a headline or an inlinetask, check title only. This is
24712 ;; faster than relying on `org-element-at-point'.
24713 (and (save-excursion (beginning-of-line)
24714 (and (let ((case-fold-search t))
24715 (not (looking-at "\\*+ END[ \t]*$")))
24716 (looking-at org-complex-heading-regexp)))
24717 (match-beginning 4)
24718 (>= (point) (match-beginning 4))
24719 (or (not (match-beginning 5))
24720 (< (point) (match-beginning 5))))
24721 (let* ((element (org-element-at-point))
24722 (post-affiliated (org-element-property :post-affiliated element)))
24723 (cond
24724 ;; Ignore checks in all affiliated keywords but captions.
24725 ((< (point) post-affiliated)
24726 (and (save-excursion
24727 (beginning-of-line)
24728 (let ((case-fold-search t)) (looking-at "[ \t]*#\\+CAPTION:")))
24729 (> (point) (match-end 0))
24730 (org--flyspell-object-check-p element)))
24731 ;; Ignore checks in LOGBOOK (or equivalent) drawer.
24732 ((let ((log (org-log-into-drawer)))
24733 (and log
24734 (let ((drawer (org-element-lineage element '(drawer))))
24735 (and drawer
24736 (eq (compare-strings
24737 log nil nil
24738 (org-element-property :drawer-name drawer) nil nil t)
24739 t)))))
24740 nil)
24742 (case (org-element-type element)
24743 ((comment quote-section) t)
24744 (comment-block
24745 ;; Allow checks between block markers, not on them.
24746 (and (> (line-beginning-position) post-affiliated)
24747 (save-excursion
24748 (end-of-line)
24749 (skip-chars-forward " \r\t\n")
24750 (< (point) (org-element-property :end element)))))
24751 ;; Arbitrary list of keywords where checks are meaningful.
24752 ;; Make sure point is on the value part of the element.
24753 (keyword
24754 (and (member (org-element-property :key element)
24755 '("DESCRIPTION" "TITLE"))
24756 (< (save-excursion
24757 (beginning-of-line) (search-forward ":") (point))
24758 (point))))
24759 ;; Check is globally allowed in paragraphs verse blocks and
24760 ;; table rows (after affiliated keywords) but some objects
24761 ;; must not be affected.
24762 ((paragraph table-row verse-block)
24763 (let ((cbeg (org-element-property :contents-begin element))
24764 (cend (org-element-property :contents-end element)))
24765 (and cbeg (>= (point) cbeg) (< (point) cend)
24766 (org--flyspell-object-check-p element))))))))))
24767 (put 'org-mode 'flyspell-mode-predicate 'org-mode-flyspell-verify)
24769 (defun org-remove-flyspell-overlays-in (beg end)
24770 "Remove flyspell overlays in region."
24771 (and (org-bound-and-true-p flyspell-mode)
24772 (fboundp 'flyspell-delete-region-overlays)
24773 (flyspell-delete-region-overlays beg end)))
24775 (defvar flyspell-delayed-commands)
24776 (eval-after-load "flyspell"
24777 '(add-to-list 'flyspell-delayed-commands 'org-self-insert-command))
24779 ;; Make `bookmark-jump' shows the jump location if it was hidden.
24780 (eval-after-load "bookmark"
24781 '(if (boundp 'bookmark-after-jump-hook)
24782 ;; We can use the hook
24783 (add-hook 'bookmark-after-jump-hook 'org-bookmark-jump-unhide)
24784 ;; Hook not available, use advice
24785 (defadvice bookmark-jump (after org-make-visible activate)
24786 "Make the position visible."
24787 (org-bookmark-jump-unhide))))
24789 ;; Make sure saveplace shows the location if it was hidden
24790 (eval-after-load "saveplace"
24791 '(defadvice save-place-find-file-hook (after org-make-visible activate)
24792 "Make the position visible."
24793 (org-bookmark-jump-unhide)))
24795 ;; Make sure ecb shows the location if it was hidden
24796 (eval-after-load "ecb"
24797 '(defadvice ecb-method-clicked (after esf/org-show-context activate)
24798 "Make hierarchy visible when jumping into location from ECB tree buffer."
24799 (if (derived-mode-p 'org-mode)
24800 (org-show-context))))
24802 (defun org-bookmark-jump-unhide ()
24803 "Unhide the current position, to show the bookmark location."
24804 (and (derived-mode-p 'org-mode)
24805 (or (outline-invisible-p)
24806 (save-excursion (goto-char (max (point-min) (1- (point))))
24807 (outline-invisible-p)))
24808 (org-show-context 'bookmark-jump)))
24810 (defun org-mark-jump-unhide ()
24811 "Make the point visible with `org-show-context' after jumping to the mark."
24812 (when (and (derived-mode-p 'org-mode)
24813 (outline-invisible-p))
24814 (org-show-context 'mark-goto)))
24816 (eval-after-load "simple"
24817 '(defadvice pop-to-mark-command (after org-make-visible activate)
24818 "Make the point visible with `org-show-context'."
24819 (org-mark-jump-unhide)))
24821 (eval-after-load "simple"
24822 '(defadvice exchange-point-and-mark (after org-make-visible activate)
24823 "Make the point visible with `org-show-context'."
24824 (org-mark-jump-unhide)))
24826 (eval-after-load "simple"
24827 '(defadvice pop-global-mark (after org-make-visible activate)
24828 "Make the point visible with `org-show-context'."
24829 (org-mark-jump-unhide)))
24831 ;; Make session.el ignore our circular variable
24832 (defvar session-globals-exclude)
24833 (eval-after-load "session"
24834 '(add-to-list 'session-globals-exclude 'org-mark-ring))
24836 ;;;; Finish up
24838 (provide 'org)
24840 (run-hooks 'org-load-hook)
24842 ;;; org.el ends here