Fix some defconst and docstrings
[org-mode.git] / lisp / org.el
blobf9785ae4b82117a44a399fc58c038a465daad199
1 ;;; org.el --- Outline-based notes management and organizer
3 ;; Carstens outline-mode for keeping track of everything.
4 ;; Copyright (C) 2004-2013 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 (load "org-loaddefs.el" t t t)
82 (require 'org-macs)
83 (require 'org-compat)
85 ;; `org-outline-regexp' ought to be a defconst but is let-bound in
86 ;; some places -- e.g. see the macro `org-with-limited-levels'.
88 ;; In Org buffers, the value of `outline-regexp' is that of
89 ;; `org-outline-regexp'. The only function still directly relying on
90 ;; `outline-regexp' is `org-overview' so that `org-cycle' can do its
91 ;; job when `orgstruct-mode' is active.
92 (defvar org-outline-regexp "\\*+ "
93 "Regexp to match Org headlines.")
95 (defvar org-outline-regexp-bol "^\\*+ "
96 "Regexp to match Org headlines.
97 This is similar to `org-outline-regexp' but additionally makes
98 sure that we are at the beginning of the line.")
100 (defvar org-heading-regexp "^\\(\\*+\\)\\(?: +\\(.*?\\)\\)?[ \t]*$"
101 "Matches a headline, putting stars and text into groups.
102 Stars are put in group 1 and the trimmed body in group 2.")
104 ;; Emacs 22 calendar compatibility: Make sure the new variables are available
105 (unless (boundp 'calendar-view-holidays-initially-flag)
106 (org-defvaralias 'calendar-view-holidays-initially-flag
107 'view-calendar-holidays-initially))
108 (unless (boundp 'calendar-view-diary-initially-flag)
109 (org-defvaralias 'calendar-view-diary-initially-flag
110 'view-diary-entries-initially))
111 (unless (boundp 'diary-fancy-buffer)
112 (org-defvaralias 'diary-fancy-buffer 'fancy-diary-buffer))
114 (declare-function org-inlinetask-at-task-p "org-inlinetask" ())
115 (declare-function org-inlinetask-outline-regexp "org-inlinetask" ())
116 (declare-function org-inlinetask-toggle-visibility "org-inlinetask" ())
117 (declare-function org-pop-to-buffer-same-window "org-compat" (&optional buffer-or-name norecord label))
118 (declare-function org-clocktable-shift "org-clock" (dir n))
119 (declare-function org-clock-get-last-clock-out-time "org-clock" ())
120 (declare-function org-clock-update-time-maybe "org-clock" ())
121 (declare-function org-clock-remove-overlays "org-clock" (&optional beg end noremove))
122 (declare-function org-clock-timestamps-up "org-clock" (&optional n))
123 (declare-function org-clock-timestamps-down "org-clock" (&optional n))
124 (declare-function org-clock-sum-current-item "org-clock" (&optional tstart))
126 (declare-function org-babel-tangle-file "ob-tangle" (file &optional target-file lang))
127 (declare-function orgtbl-mode "org-table" (&optional arg))
128 (declare-function org-clock-out "org-clock" (&optional switch-to-state fail-quietly at-time))
129 (declare-function org-beamer-mode "ox-beamer" ())
130 (declare-function org-table-blank-field "org-table" ())
131 (declare-function org-table-edit-field "org-table" (arg))
132 (declare-function org-table-insert-row "org-table" (&optional arg))
133 (declare-function org-table-justify-field-maybe "org-table" (&optional new))
134 (declare-function org-table-set-constants "org-table" ())
135 (declare-function org-table-calc-current-TBLFM "org-table" (&optional arg))
136 (declare-function org-id-get-create "org-id" (&optional force))
137 (declare-function org-add-archive-files "org-archive" (files))
138 (declare-function org-id-find-id-file "org-id" (id))
139 (declare-function org-tags-view "org-agenda" (&optional todo-only match))
140 (declare-function org-agenda-list "org-agenda" (&optional arg start-day span))
141 (declare-function org-agenda-redo "org-agenda" (&optional all))
142 (declare-function org-table-align "org-table" ())
143 (declare-function org-table-begin "org-table" (&optional table-type))
144 (declare-function org-table-end "org-table" (&optional table-type))
145 (declare-function org-table-paste-rectangle "org-table" ())
146 (declare-function org-table-maybe-eval-formula "org-table" ())
147 (declare-function org-table-maybe-recalculate-line "org-table" ())
149 (declare-function org-element--parse-objects "org-element"
150 (beg end acc restriction))
151 (declare-function org-element-at-point "org-element" (&optional keep-trail))
152 (declare-function org-element-cache-reset "org-element" (&optional all))
153 (declare-function org-element-contents "org-element" (element))
154 (declare-function org-element-context "org-element" (&optional element))
155 (declare-function org-element-interpret-data "org-element"
156 (data &optional parent))
157 (declare-function org-element-map "org-element"
158 (data types fun &optional info first-match no-recursion))
159 (declare-function org-element-nested-p "org-element" (elem-a elem-b))
160 (declare-function org-element-parse-buffer "org-element"
161 (&optional granularity visible-only))
162 (declare-function org-element-property "org-element" (property element))
163 (declare-function org-element-put-property "org-element"
164 (element property value))
165 (declare-function org-element-swap-A-B "org-element" (elem-a elem-b))
166 (declare-function org-element--parse-objects "org-element"
167 (beg end acc restriction))
168 (declare-function org-element-parse-buffer "org-element"
169 (&optional granularity visible-only))
170 (declare-function org-element-restriction "org-element" (element))
171 (declare-function org-element-type "org-element" (element))
173 (defsubst org-uniquify (list)
174 "Non-destructively remove duplicate elements from LIST."
175 (let ((res (copy-sequence list))) (delete-dups res)))
177 ;; load languages based on value of `org-babel-load-languages'
178 (defvar org-babel-load-languages)
180 ;;;###autoload
181 (defun org-babel-do-load-languages (sym value)
182 "Load the languages defined in `org-babel-load-languages'."
183 (set-default sym value)
184 (mapc (lambda (pair)
185 (let ((active (cdr pair)) (lang (symbol-name (car pair))))
186 (if active
187 (progn
188 (require (intern (concat "ob-" lang))))
189 (progn
190 (funcall 'fmakunbound
191 (intern (concat "org-babel-execute:" lang)))
192 (funcall 'fmakunbound
193 (intern (concat "org-babel-expand-body:" lang)))))))
194 org-babel-load-languages))
196 ;;;###autoload
197 (defun org-babel-load-file (file &optional compile)
198 "Load Emacs Lisp source code blocks in the Org-mode FILE.
199 This function exports the source code using `org-babel-tangle'
200 and then loads the resulting file using `load-file'. With prefix
201 arg (noninteractively: 2nd arg) COMPILE the tangled Emacs Lisp
202 file to byte-code before it is loaded."
203 (interactive "fFile to load: \nP")
204 (require 'ob-core)
205 (let* ((age (lambda (file)
206 (float-time
207 (time-subtract (current-time)
208 (nth 5 (or (file-attributes (file-truename file))
209 (file-attributes file)))))))
210 (base-name (file-name-sans-extension file))
211 (exported-file (concat base-name ".el")))
212 ;; tangle if the org-mode file is newer than the elisp file
213 (unless (and (file-exists-p exported-file)
214 (> (funcall age file) (funcall age exported-file)))
215 (setq exported-file
216 (car (org-babel-tangle-file file exported-file "emacs-lisp"))))
217 (message "%s %s"
218 (if compile
219 (progn (byte-compile-file exported-file 'load)
220 "Compiled and loaded")
221 (progn (load-file exported-file) "Loaded"))
222 exported-file)))
224 (defcustom org-babel-load-languages '((emacs-lisp . t))
225 "Languages which can be evaluated in Org-mode buffers.
226 This list can be used to load support for any of the languages
227 below, note that each language will depend on a different set of
228 system executables and/or Emacs modes. When a language is
229 \"loaded\", then code blocks in that language can be evaluated
230 with `org-babel-execute-src-block' bound by default to C-c
231 C-c (note the `org-babel-no-eval-on-ctrl-c-ctrl-c' variable can
232 be set to remove code block evaluation from the C-c C-c
233 keybinding. By default only Emacs Lisp (which has no
234 requirements) is loaded."
235 :group 'org-babel
236 :set 'org-babel-do-load-languages
237 :version "24.1"
238 :type '(alist :tag "Babel Languages"
239 :key-type
240 (choice
241 (const :tag "Awk" awk)
242 (const :tag "C" C)
243 (const :tag "R" R)
244 (const :tag "Asymptote" asymptote)
245 (const :tag "Calc" calc)
246 (const :tag "Clojure" clojure)
247 (const :tag "CSS" css)
248 (const :tag "Ditaa" ditaa)
249 (const :tag "Dot" dot)
250 (const :tag "Emacs Lisp" emacs-lisp)
251 (const :tag "Fortran" fortran)
252 (const :tag "Gnuplot" gnuplot)
253 (const :tag "Haskell" haskell)
254 (const :tag "IO" io)
255 (const :tag "Java" java)
256 (const :tag "Javascript" js)
257 (const :tag "LaTeX" latex)
258 (const :tag "Ledger" ledger)
259 (const :tag "Lilypond" lilypond)
260 (const :tag "Lisp" lisp)
261 (const :tag "Makefile" makefile)
262 (const :tag "Maxima" maxima)
263 (const :tag "Matlab" matlab)
264 (const :tag "Mscgen" mscgen)
265 (const :tag "Ocaml" ocaml)
266 (const :tag "Octave" octave)
267 (const :tag "Org" org)
268 (const :tag "Perl" perl)
269 (const :tag "Pico Lisp" picolisp)
270 (const :tag "PlantUML" plantuml)
271 (const :tag "Python" python)
272 (const :tag "Ruby" ruby)
273 (const :tag "Sass" sass)
274 (const :tag "Scala" scala)
275 (const :tag "Scheme" scheme)
276 (const :tag "Screen" screen)
277 (const :tag "Shell Script" sh)
278 (const :tag "Shen" shen)
279 (const :tag "Sql" sql)
280 (const :tag "Sqlite" sqlite)
281 (const :tag "ebnf2ps" ebnf2ps))
282 :value-type (boolean :tag "Activate" :value t)))
284 ;;;; Customization variables
285 (defcustom org-clone-delete-id nil
286 "Remove ID property of clones of a subtree.
287 When non-nil, clones of a subtree don't inherit the ID property.
288 Otherwise they inherit the ID property with a new unique
289 identifier."
290 :type 'boolean
291 :version "24.1"
292 :group 'org-id)
294 ;;; Version
295 (org-check-version)
297 ;;;###autoload
298 (defun org-version (&optional here full message)
299 "Show the org-mode version in the echo area.
300 With prefix argument HERE, insert it at point.
301 When FULL is non-nil, use a verbose version string.
302 When MESSAGE is non-nil, display a message with the version."
303 (interactive "P")
304 (let* ((org-dir (ignore-errors (org-find-library-dir "org")))
305 (save-load-suffixes (when (boundp 'load-suffixes) load-suffixes))
306 (load-suffixes (list ".el"))
307 (org-install-dir (ignore-errors (org-find-library-dir "org-loaddefs")))
308 (org-trash (or
309 (and (fboundp 'org-release) (fboundp 'org-git-version))
310 (org-load-noerror-mustsuffix (concat org-dir "org-version"))))
311 (load-suffixes save-load-suffixes)
312 (org-version (org-release))
313 (git-version (org-git-version))
314 (version (format "Org-mode version %s (%s @ %s)"
315 org-version
316 git-version
317 (if org-install-dir
318 (if (string= org-dir org-install-dir)
319 org-install-dir
320 (concat "mixed installation! " org-install-dir " and " org-dir))
321 "org-loaddefs.el can not be found!")))
322 (version1 (if full version org-version)))
323 (if (org-called-interactively-p 'interactive)
324 (if here
325 (insert version)
326 (message version))
327 (if message (message version1))
328 version1)))
330 (defconst org-version (org-version))
333 ;;; Syntax Constants
335 ;;;; Block
337 (defconst org-block-regexp
338 "^[ \t]*#\\+begin_?\\([^ \n]+\\)\\(\\([^\n]+\\)\\)?\n\\([^\000]+?\\)#\\+end_?\\1[ \t]*$"
339 "Regular expression for hiding blocks.")
341 (defconst org-dblock-start-re
342 "^[ \t]*#\\+\\(?:BEGIN\\|begin\\):[ \t]+\\(\\S-+\\)\\([ \t]+\\(.*\\)\\)?"
343 "Matches the start line of a dynamic block, with parameters.")
345 (defconst org-dblock-end-re "^[ \t]*#\\+\\(?:END\\|end\\)\\([: \t\r\n]\\|$\\)"
346 "Matches the end of a dynamic block.")
348 ;;;; Clock and Planning
350 (defconst org-clock-string "CLOCK:"
351 "String used as prefix for timestamps clocking work hours on an item.")
353 (defconst org-closed-string "CLOSED:"
354 "String used as the prefix for timestamps logging closing a TODO entry.")
356 (defconst org-deadline-string "DEADLINE:"
357 "String to mark deadline entries.
358 A deadline is this string, followed by a time stamp. Should be a word,
359 terminated by a colon. You can insert a schedule keyword and
360 a timestamp with \\[org-deadline].")
362 (defconst org-scheduled-string "SCHEDULED:"
363 "String to mark scheduled TODO entries.
364 A schedule is this string, followed by a time stamp. Should be a word,
365 terminated by a colon. You can insert a schedule keyword and
366 a timestamp with \\[org-schedule].")
368 (defconst org-planning-or-clock-line-re
369 (concat "^[ \t]*"
370 (regexp-opt
371 (list org-clock-string org-closed-string org-deadline-string
372 org-scheduled-string)
374 "Matches a line with planning or clock info.
375 Matched keyword is in group 1.")
377 ;;;; Drawer
379 (defconst org-drawer-regexp "^[ \t]*:\\(\\(?:\\w\\|[-_]\\)+\\):[ \t]*$"
380 "Matches first or last line of a hidden block.
381 Group 1 contains drawer's name or \"END\".")
383 (defconst org-property-start-re "^[ \t]*:PROPERTIES:[ \t]*$"
384 "Regular expression matching the first line of a property drawer.")
386 (defconst org-property-end-re "^[ \t]*:END:[ \t]*$"
387 "Regular expression matching the last line of a property drawer.")
389 (defconst org-clock-drawer-start-re "^[ \t]*:CLOCK:[ \t]*$"
390 "Regular expression matching the first line of a clock drawer.")
392 (defconst org-clock-drawer-end-re "^[ \t]*:END:[ \t]*$"
393 "Regular expression matching the last line of a clock drawer.")
395 (defconst org-property-drawer-re
396 (concat "\\(" org-property-start-re "\\)[^\000]*?\\("
397 org-property-end-re "\\)\n?")
398 "Matches an entire property drawer.")
400 (defconst org-clock-drawer-re
401 (concat "\\(" org-clock-drawer-start-re "\\)[^\000]*?\\("
402 org-clock-drawer-end-re "\\)\n?")
403 "Matches an entire clock drawer.")
405 ;;;; Headline
407 (defconst org-heading-keyword-regexp-format
408 "^\\(\\*+\\)\\(?: +%s\\)\\(?: +\\(.*?\\)\\)?[ \t]*$"
409 "Printf format for a regexp matching a headline with some keyword.
410 This regexp will match the headline of any node which has the
411 exact keyword that is put into the format. The keyword isn't in
412 any group by default, but the stars and the body are.")
414 (defconst org-heading-keyword-maybe-regexp-format
415 "^\\(\\*+\\)\\(?: +%s\\)?\\(?: +\\(.*?\\)\\)?[ \t]*$"
416 "Printf format for a regexp matching a headline, possibly with some keyword.
417 This regexp can match any headline with the specified keyword, or
418 without a keyword. The keyword isn't in any group by default,
419 but the stars and the body are.")
421 (defconst org-archive-tag "ARCHIVE"
422 "The tag that marks a subtree as archived.
423 An archived subtree does not open during visibility cycling, and does
424 not contribute to the agenda listings.")
426 (defconst org-comment-string "COMMENT"
427 "Entries starting with this keyword will never be exported.
428 An entry can be toggled between COMMENT and normal with
429 \\[org-toggle-comment].")
431 (defconst org-quote-string "QUOTE"
432 "Entries starting with this keyword will be exported in fixed-width font.
433 Quoting applies only to the text in the entry following the headline, and does
434 not extend beyond the next headline, even if that is lower level.
435 An entry can be toggled between QUOTE and normal with
436 \\[org-toggle-fixed-width-section].")
438 ;;;; LaTeX Environments and Fragments
440 (defconst org-latex-regexps
441 '(("begin" "^[ \t]*\\(\\\\begin{\\([a-zA-Z0-9\\*]+\\)[^\000]+?\\\\end{\\2}\\)" 1 t)
442 ;; ("$" "\\([ (]\\|^\\)\\(\\(\\([$]\\)\\([^ \r\n,.$].*?\\(\n.*?\\)\\{0,5\\}[^ \r\n,.$]\\)\\4\\)\\)\\([ .,?;:'\")]\\|$\\)" 2 nil)
443 ;; \000 in the following regex is needed for org-inside-LaTeX-fragment-p
444 ("$1" "\\([^$]\\|^\\)\\(\\$[^ \r\n,;.$]\\$\\)\\([- .,?;:'\")\000]\\|$\\)" 2 nil)
445 ("$" "\\([^$]\\|^\\)\\(\\(\\$\\([^ \r\n,;.$][^$\n\r]*?\\(\n[^$\n\r]*?\\)\\{0,2\\}[^ \r\n,.$]\\)\\$\\)\\)\\([- .,?;:'\")\000]\\|$\\)" 2 nil)
446 ("\\(" "\\\\([^\000]*?\\\\)" 0 nil)
447 ("\\[" "\\\\\\[[^\000]*?\\\\\\]" 0 nil)
448 ("$$" "\\$\\$[^\000]*?\\$\\$" 0 nil))
449 "Regular expressions for matching embedded LaTeX.")
451 ;;;; Node Property
453 (defconst org-effort-property "Effort"
454 "The property that is being used to keep track of effort estimates.
455 Effort estimates given in this property need to have the format H:MM.")
457 ;;;; Table
459 (defconst org-table-any-line-regexp "^[ \t]*\\(|\\|\\+-[-+]\\)"
460 "Detect an org-type or table-type table.")
462 (defconst org-table-line-regexp "^[ \t]*|"
463 "Detect an org-type table line.")
465 (defconst org-table-dataline-regexp "^[ \t]*|[^-]"
466 "Detect an org-type table line.")
468 (defconst org-table-hline-regexp "^[ \t]*|-"
469 "Detect an org-type table hline.")
471 (defconst org-table1-hline-regexp "^[ \t]*\\+-[-+]"
472 "Detect a table-type table hline.")
474 (defconst org-table-any-border-regexp "^[ \t]*[^|+ \t]"
475 "Detect the first line outside a table when searching from within it.
476 This works for both table types.")
478 (defconst org-TBLFM-regexp "^[ \t]*#\\+TBLFM: "
479 "Detect a #+TBLFM line.")
481 ;;;; Timestamp
483 (defconst org-ts-regexp "<\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^\r\n>]*?\\)>"
484 "Regular expression for fast time stamp matching.")
486 (defconst org-ts-regexp-both "[[<]\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^]\r\n>]*?\\)[]>]"
487 "Regular expression for fast time stamp matching.")
489 (defconst org-ts-regexp0
490 "\\(\\([0-9]\\{4\\}\\)-\\([0-9]\\{2\\}\\)-\\([0-9]\\{2\\}\\)\\( +[^]+0-9>\r\n -]+\\)?\\( +\\([0-9]\\{1,2\\}\\):\\([0-9]\\{2\\}\\)\\)?\\)"
491 "Regular expression matching time strings for analysis.
492 This one does not require the space after the date, so it can be used
493 on a string that terminates immediately after the date.")
495 (defconst org-ts-regexp1 "\\(\\([0-9]\\{4\\}\\)-\\([0-9]\\{2\\}\\)-\\([0-9]\\{2\\}\\) *\\([^]+0-9>\r\n -]*\\)\\( \\([0-9]\\{1,2\\}\\):\\([0-9]\\{2\\}\\)\\)?\\)"
496 "Regular expression matching time strings for analysis.")
498 (defconst org-ts-regexp2 (concat "<" org-ts-regexp1 "[^>\n]\\{0,16\\}>")
499 "Regular expression matching time stamps, with groups.")
501 (defconst org-ts-regexp3 (concat "[[<]" org-ts-regexp1 "[^]>\n]\\{0,16\\}[]>]")
502 "Regular expression matching time stamps (also [..]), with groups.")
504 (defconst org-tr-regexp (concat org-ts-regexp "--?-?" org-ts-regexp)
505 "Regular expression matching a time stamp range.")
507 (defconst org-tr-regexp-both
508 (concat org-ts-regexp-both "--?-?" org-ts-regexp-both)
509 "Regular expression matching a time stamp range.")
511 (defconst org-tsr-regexp (concat org-ts-regexp "\\(--?-?"
512 org-ts-regexp "\\)?")
513 "Regular expression matching a time stamp or time stamp range.")
515 (defconst org-tsr-regexp-both
516 (concat org-ts-regexp-both "\\(--?-?"
517 org-ts-regexp-both "\\)?")
518 "Regular expression matching a time stamp or time stamp range.
519 The time stamps may be either active or inactive.")
521 (defconst org-repeat-re
522 "<[0-9]\\{4\\}-[0-9][0-9]-[0-9][0-9] [^>\n]*?\\([.+]?\\+[0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)"
523 "Regular expression for specifying repeated events.
524 After a match, group 1 contains the repeat expression.")
526 (defconst org-time-stamp-formats '("<%Y-%m-%d %a>" . "<%Y-%m-%d %a %H:%M>")
527 "Formats for `format-time-string' which are used for time stamps.")
530 ;;; The custom variables
532 (defgroup org nil
533 "Outline-based notes management and organizer."
534 :tag "Org"
535 :group 'outlines
536 :group 'calendar)
538 (defcustom org-mode-hook nil
539 "Mode hook for Org-mode, run after the mode was turned on."
540 :group 'org
541 :type 'hook)
543 (defcustom org-load-hook nil
544 "Hook that is run after org.el has been loaded."
545 :group 'org
546 :type 'hook)
548 (defcustom org-log-buffer-setup-hook nil
549 "Hook that is run after an Org log buffer is created."
550 :group 'org
551 :version "24.1"
552 :type 'hook)
554 (defvar org-modules) ; defined below
555 (defvar org-modules-loaded nil
556 "Have the modules been loaded already?")
558 (defun org-load-modules-maybe (&optional force)
559 "Load all extensions listed in `org-modules'."
560 (when (or force (not org-modules-loaded))
561 (mapc (lambda (ext)
562 (condition-case nil (require ext)
563 (error (message "Problems while trying to load feature `%s'" ext))))
564 org-modules)
565 (setq org-modules-loaded t)))
567 (defun org-set-modules (var value)
568 "Set VAR to VALUE and call `org-load-modules-maybe' with the force flag."
569 (set var value)
570 (when (featurep 'org)
571 (org-load-modules-maybe 'force)
572 (org-element-cache-reset 'all)))
574 (defcustom org-modules '(org-w3m org-bbdb org-bibtex org-docview org-gnus org-info org-irc org-mhe org-rmail)
575 "Modules that should always be loaded together with org.el.
577 If a description starts with <C>, the file is not part of Emacs
578 and loading it will require that you have downloaded and properly
579 installed the Org mode distribution.
581 You can also use this system to load external packages (i.e. neither Org
582 core modules, nor modules from the CONTRIB directory). Just add symbols
583 to the end of the list. If the package is called org-xyz.el, then you need
584 to add the symbol `xyz', and the package must have a call to:
586 \(provide 'org-xyz)
588 For export specific modules, see also `org-export-backends'."
589 :group 'org
590 :set 'org-set-modules
591 :version "24.4"
592 :package-version '(Org . "8.0")
593 :type
594 '(set :greedy t
595 (const :tag " bbdb: Links to BBDB entries" org-bbdb)
596 (const :tag " bibtex: Links to BibTeX entries" org-bibtex)
597 (const :tag " crypt: Encryption of subtrees" org-crypt)
598 (const :tag " ctags: Access to Emacs tags with links" org-ctags)
599 (const :tag " docview: Links to doc-view buffers" org-docview)
600 (const :tag " gnus: Links to GNUS folders/messages" org-gnus)
601 (const :tag " habit: Track your consistency with habits" org-habit)
602 (const :tag " id: Global IDs for identifying entries" org-id)
603 (const :tag " info: Links to Info nodes" org-info)
604 (const :tag " inlinetask: Tasks independent of outline hierarchy" org-inlinetask)
605 (const :tag " irc: Links to IRC/ERC chat sessions" org-irc)
606 (const :tag " mhe: Links to MHE folders/messages" org-mhe)
607 (const :tag " mouse: Additional mouse support" org-mouse)
608 (const :tag " protocol: Intercept calls from emacsclient" org-protocol)
609 (const :tag " rmail: Links to RMAIL folders/messages" org-rmail)
610 (const :tag " w3m: Special cut/paste from w3m to Org-mode." org-w3m)
612 (const :tag "C annotate-file: Annotate a file with org syntax" org-annotate-file)
613 (const :tag "C bookmark: Org-mode links to bookmarks" org-bookmark)
614 (const :tag "C bullets: Add overlays to headlines stars" org-bullets)
615 (const :tag "C checklist: Extra functions for checklists in repeated tasks" org-checklist)
616 (const :tag "C choose: Use TODO keywords to mark decisions states" org-choose)
617 (const :tag "C collector: Collect properties into tables" org-collector)
618 (const :tag "C depend: TODO dependencies for Org-mode\n\t\t\t(PARTIALLY OBSOLETE, see built-in dependency support))" org-depend)
619 (const :tag "C drill: Flashcards and spaced repetition for Org-mode" org-drill)
620 (const :tag "C elisp-symbol: Org-mode links to emacs-lisp symbols" org-elisp-symbol)
621 (const :tag "C eshell Support for links to working directories in eshell" org-eshell)
622 (const :tag "C eval-light: Evaluate inbuffer-code on demand" org-eval-light)
623 (const :tag "C eval: Include command output as text" org-eval)
624 (const :tag "C expiry: Expiry mechanism for Org-mode entries" org-expiry)
625 (const :tag "C favtable: Lookup table of favorite references and links" org-favtable)
626 (const :tag "C git-link: Provide org links to specific file version" org-git-link)
627 (const :tag "C interactive-query: Interactive modification of tags query\n\t\t\t(PARTIALLY OBSOLETE, see secondary filtering)" org-interactive-query)
628 (const :tag "C invoice: Help manage client invoices in Org-mode" org-invoice)
629 (const :tag "C jira: Add a jira:ticket protocol to Org-mode" org-jira)
630 (const :tag "C learn: SuperMemo's incremental learning algorithm" org-learn)
631 (const :tag "C mac-iCal Imports events from iCal.app to the Emacs diary" org-mac-iCal)
632 (const :tag "C mac-link: Grab links and url from various mac Applications" org-mac-link)
633 (const :tag "C mairix: Hook mairix search into Org-mode for different MUAs" org-mairix)
634 (const :tag "C man: Support for links to manpages in Org-mode" org-man)
635 (const :tag "C mew: Links to Mew folders/messages" org-mew)
636 (const :tag "C mtags: Support for muse-like tags" org-mtags)
637 (const :tag "C notmuch: Provide org links to notmuch searches or messages" org-notmuch)
638 (const :tag "C panel: Simple routines for us with bad memory" org-panel)
639 (const :tag "C registry: A registry for Org-mode links" org-registry)
640 (const :tag "C screen: Visit screen sessions through Org-mode links" org-screen)
641 (const :tag "C secretary: Team management with org-mode" org-secretary)
642 (const :tag "C sqlinsert: Convert Org-mode tables to SQL insertions" orgtbl-sqlinsert)
643 (const :tag "C toc: Table of contents for Org-mode buffer" org-toc)
644 (const :tag "C track: Keep up with Org-mode development" org-track)
645 (const :tag "C velocity Something like Notational Velocity for Org" org-velocity)
646 (const :tag "C vm: Links to VM folders/messages" org-vm)
647 (const :tag "C wikinodes: CamelCase wiki-like links" org-wikinodes)
648 (const :tag "C wl: Links to Wanderlust folders/messages" org-wl)
649 (repeat :tag "External packages" :inline t (symbol :tag "Package"))))
651 (defvar org-export--registered-backends) ; From ox.el.
652 (declare-function org-export-derived-backend-p "ox" (backend &rest backends))
653 (declare-function org-export-backend-name "ox" (backend))
654 (defcustom org-export-backends '(ascii html icalendar latex)
655 "List of export back-ends that should be always available.
657 If a description starts with <C>, the file is not part of Emacs
658 and loading it will require that you have downloaded and properly
659 installed the Org mode distribution.
661 Unlike to `org-modules', libraries in this list will not be
662 loaded along with Org, but only once the export framework is
663 needed.
665 This variable needs to be set before org.el is loaded. If you
666 need to make a change while Emacs is running, use the customize
667 interface or run the following code, where VAL stands for the new
668 value of the variable, after updating it:
670 \(progn
671 \(setq org-export--registered-backends
672 \(org-remove-if-not
673 \(lambda (backend)
674 \(let ((name (org-export-backend-name backend)))
675 \(or (memq name val)
676 \(catch 'parentp
677 \(dolist (b val)
678 \(and (org-export-derived-backend-p b name)
679 \(throw 'parentp t)))))))
680 org-export--registered-backends))
681 \(let ((new-list (mapcar 'org-export-backend-name
682 org-export--registered-backends)))
683 \(dolist (backend val)
684 \(cond
685 \((not (load (format \"ox-%s\" backend) t t))
686 \(message \"Problems while trying to load export back-end `%s'\"
687 backend))
688 \((not (memq backend new-list)) (push backend new-list))))
689 \(set-default 'org-export-backends new-list)))
691 Adding a back-end to this list will also pull the back-end it
692 depends on, if any."
693 :group 'org
694 :group 'org-export
695 :version "24.4"
696 :package-version '(Org . "8.0")
697 :initialize 'custom-initialize-set
698 :set (lambda (var val)
699 (if (not (featurep 'ox)) (set-default var val)
700 ;; Any back-end not required anymore (not present in VAL and not
701 ;; a parent of any back-end in the new value) is removed from the
702 ;; list of registered back-ends.
703 (setq org-export--registered-backends
704 (org-remove-if-not
705 (lambda (backend)
706 (let ((name (org-export-backend-name backend)))
707 (or (memq name val)
708 (catch 'parentp
709 (dolist (b val)
710 (and (org-export-derived-backend-p b name)
711 (throw 'parentp t)))))))
712 org-export--registered-backends))
713 ;; Now build NEW-LIST of both new back-ends and required
714 ;; parents.
715 (let ((new-list (mapcar 'org-export-backend-name
716 org-export--registered-backends)))
717 (dolist (backend val)
718 (cond
719 ((not (load (format "ox-%s" backend) t t))
720 (message "Problems while trying to load export back-end `%s'"
721 backend))
722 ((not (memq backend new-list)) (push backend new-list))))
723 ;; Set VAR to that list with fixed dependencies.
724 (set-default var new-list))))
725 :type '(set :greedy t
726 (const :tag " ascii Export buffer to ASCII format" ascii)
727 (const :tag " beamer Export buffer to Beamer presentation" beamer)
728 (const :tag " html Export buffer to HTML format" html)
729 (const :tag " icalendar Export buffer to iCalendar format" icalendar)
730 (const :tag " latex Export buffer to LaTeX format" latex)
731 (const :tag " man Export buffer to MAN format" man)
732 (const :tag " md Export buffer to Markdown format" md)
733 (const :tag " odt Export buffer to ODT format" odt)
734 (const :tag " org Export buffer to Org format" org)
735 (const :tag " texinfo Export buffer to Texinfo format" texinfo)
736 (const :tag "C confluence Export buffer to Confluence Wiki format" confluence)
737 (const :tag "C deck Export buffer to deck.js presentations" deck)
738 (const :tag "C freemind Export buffer to Freemind mindmap format" freemind)
739 (const :tag "C groff Export buffer to Groff format" groff)
740 (const :tag "C koma-letter Export buffer to KOMA Scrlttrl2 format" koma-letter)
741 (const :tag "C RSS 2.0 Export buffer to RSS 2.0 format" rss)
742 (const :tag "C s5 Export buffer to s5 presentations" s5)
743 (const :tag "C taskjuggler Export buffer to TaskJuggler format" taskjuggler)))
745 (eval-after-load 'ox
746 '(mapc
747 (lambda (backend)
748 (condition-case nil (require (intern (format "ox-%s" backend)))
749 (error (message "Problems while trying to load export back-end `%s'"
750 backend))))
751 org-export-backends))
753 (defcustom org-support-shift-select nil
754 "Non-nil means make shift-cursor commands select text when possible.
756 In Emacs 23, when `shift-select-mode' is on, shifted cursor keys
757 start selecting a region, or enlarge regions started in this way.
758 In Org-mode, in special contexts, these same keys are used for
759 other purposes, important enough to compete with shift selection.
760 Org tries to balance these needs by supporting `shift-select-mode'
761 outside these special contexts, under control of this variable.
763 The default of this variable is nil, to avoid confusing behavior. Shifted
764 cursor keys will then execute Org commands in the following contexts:
765 - on a headline, changing TODO state (left/right) and priority (up/down)
766 - on a time stamp, changing the time
767 - in a plain list item, changing the bullet type
768 - in a property definition line, switching between allowed values
769 - in the BEGIN line of a clock table (changing the time block).
770 Outside these contexts, the commands will throw an error.
772 When this variable is t and the cursor is not in a special
773 context, Org-mode will support shift-selection for making and
774 enlarging regions. To make this more effective, the bullet
775 cycling will no longer happen anywhere in an item line, but only
776 if the cursor is exactly on the bullet.
778 If you set this variable to the symbol `always', then the keys
779 will not be special in headlines, property lines, and item lines,
780 to make shift selection work there as well. If this is what you
781 want, you can use the following alternative commands: `C-c C-t'
782 and `C-c ,' to change TODO state and priority, `C-u C-u C-c C-t'
783 can be used to switch TODO sets, `C-c -' to cycle item bullet
784 types, and properties can be edited by hand or in column view.
786 However, when the cursor is on a timestamp, shift-cursor commands
787 will still edit the time stamp - this is just too good to give up.
789 XEmacs user should have this variable set to nil, because
790 `shift-select-mode' is in Emacs 23 or later only."
791 :group 'org
792 :type '(choice
793 (const :tag "Never" nil)
794 (const :tag "When outside special context" t)
795 (const :tag "Everywhere except timestamps" always)))
797 (defcustom org-loop-over-headlines-in-active-region nil
798 "Shall some commands act upon headlines in the active region?
800 When set to `t', some commands will be performed in all headlines
801 within the active region.
803 When set to `start-level', some commands will be performed in all
804 headlines within the active region, provided that these headlines
805 are of the same level than the first one.
807 When set to a string, those commands will be performed on the
808 matching headlines within the active region. Such string must be
809 a tags/property/todo match as it is used in the agenda tags view.
811 The list of commands is: `org-schedule', `org-deadline',
812 `org-todo', `org-archive-subtree', `org-archive-set-tag' and
813 `org-archive-to-archive-sibling'. The archiving commands skip
814 already archived entries."
815 :type '(choice (const :tag "Don't loop" nil)
816 (const :tag "All headlines in active region" t)
817 (const :tag "In active region, headlines at the same level than the first one" 'start-level)
818 (string :tag "Tags/Property/Todo matcher"))
819 :version "24.1"
820 :group 'org-todo
821 :group 'org-archive)
823 (defgroup org-startup nil
824 "Options concerning startup of Org-mode."
825 :tag "Org Startup"
826 :group 'org)
828 (defcustom org-startup-folded t
829 "Non-nil means entering Org-mode will switch to OVERVIEW.
830 This can also be configured on a per-file basis by adding one of
831 the following lines anywhere in the buffer:
833 #+STARTUP: fold (or `overview', this is equivalent)
834 #+STARTUP: nofold (or `showall', this is equivalent)
835 #+STARTUP: content
836 #+STARTUP: showeverything
838 By default, this option is ignored when Org opens agenda files
839 for the first time. If you want the agenda to honor the startup
840 option, set `org-agenda-inhibit-startup' to nil."
841 :group 'org-startup
842 :type '(choice
843 (const :tag "nofold: show all" nil)
844 (const :tag "fold: overview" t)
845 (const :tag "content: all headlines" content)
846 (const :tag "show everything, even drawers" showeverything)))
848 (defcustom org-startup-truncated t
849 "Non-nil means entering Org-mode will set `truncate-lines'.
850 This is useful since some lines containing links can be very long and
851 uninteresting. Also tables look terrible when wrapped."
852 :group 'org-startup
853 :type 'boolean)
855 (defcustom org-startup-indented nil
856 "Non-nil means turn on `org-indent-mode' on startup.
857 This can also be configured on a per-file basis by adding one of
858 the following lines anywhere in the buffer:
860 #+STARTUP: indent
861 #+STARTUP: noindent"
862 :group 'org-structure
863 :type '(choice
864 (const :tag "Not" nil)
865 (const :tag "Globally (slow on startup in large files)" t)))
867 (defcustom org-use-sub-superscripts t
868 "Non-nil means interpret \"_\" and \"^\" for display.
870 If you want to control how Org exports those characters, see
871 `org-export-with-sub-superscripts'. `org-use-sub-superscripts'
872 used to be an alias for `org-export-with-sub-superscripts' in
873 Org <8.0, it is not anymore.
875 When this option is turned on, you can use TeX-like syntax for
876 sub- and superscripts within the buffer. Several characters after
877 \"_\" or \"^\" will be considered as a single item - so grouping
878 with {} is normally not needed. For example, the following things
879 will be parsed as single sub- or superscripts:
881 10^24 or 10^tau several digits will be considered 1 item.
882 10^-12 or 10^-tau a leading sign with digits or a word
883 x^2-y^3 will be read as x^2 - y^3, because items are
884 terminated by almost any nonword/nondigit char.
885 x_{i^2} or x^(2-i) braces or parenthesis do grouping.
887 Still, ambiguity is possible. So when in doubt, use {} to enclose
888 the sub/superscript. If you set this variable to the symbol `{}',
889 the braces are *required* in order to trigger interpretations as
890 sub/superscript. This can be helpful in documents that need \"_\"
891 frequently in plain text."
892 :group 'org-startup
893 :version "24.4"
894 :package-version '(Org . "8.0")
895 :type '(choice
896 (const :tag "Always interpret" t)
897 (const :tag "Only with braces" {})
898 (const :tag "Never interpret" nil)))
900 (defcustom org-startup-with-beamer-mode nil
901 "Non-nil means turn on `org-beamer-mode' on startup.
902 This can also be configured on a per-file basis by adding one of
903 the following lines anywhere in the buffer:
905 #+STARTUP: beamer"
906 :group 'org-startup
907 :version "24.1"
908 :type 'boolean)
910 (defcustom org-startup-align-all-tables nil
911 "Non-nil means align all tables when visiting a file.
912 This is useful when the column width in tables is forced with <N> cookies
913 in table fields. Such tables will look correct only after the first re-align.
914 This can also be configured on a per-file basis by adding one of
915 the following lines anywhere in the buffer:
916 #+STARTUP: align
917 #+STARTUP: noalign"
918 :group 'org-startup
919 :type 'boolean)
921 (defcustom org-startup-with-inline-images nil
922 "Non-nil means show inline images when loading a new Org file.
923 This can also be configured on a per-file basis by adding one of
924 the following lines anywhere in the buffer:
925 #+STARTUP: inlineimages
926 #+STARTUP: noinlineimages"
927 :group 'org-startup
928 :version "24.1"
929 :type 'boolean)
931 (defcustom org-startup-with-latex-preview nil
932 "Non-nil means preview LaTeX fragments when loading a new Org file.
934 This can also be configured on a per-file basis by adding one of
935 the following lines anywhere in the buffer:
936 #+STARTUP: latexpreview
937 #+STARTUP: nolatexpreview"
938 :group 'org-startup
939 :version "24.4"
940 :package-version '(Org . "8.0")
941 :type 'boolean)
943 (defcustom org-insert-mode-line-in-empty-file nil
944 "Non-nil means insert the first line setting Org-mode in empty files.
945 When the function `org-mode' is called interactively in an empty file, this
946 normally means that the file name does not automatically trigger Org-mode.
947 To ensure that the file will always be in Org-mode in the future, a
948 line enforcing Org-mode will be inserted into the buffer, if this option
949 has been set."
950 :group 'org-startup
951 :type 'boolean)
953 (defcustom org-replace-disputed-keys nil
954 "Non-nil means use alternative key bindings for some keys.
955 Org-mode uses S-<cursor> keys for changing timestamps and priorities.
956 These keys are also used by other packages like shift-selection-mode'
957 \(built into Emacs 23), `CUA-mode' or `windmove.el'.
958 If you want to use Org-mode together with one of these other modes,
959 or more generally if you would like to move some Org-mode commands to
960 other keys, set this variable and configure the keys with the variable
961 `org-disputed-keys'.
963 This option is only relevant at load-time of Org-mode, and must be set
964 *before* org.el is loaded. Changing it requires a restart of Emacs to
965 become effective."
966 :group 'org-startup
967 :type 'boolean)
969 (defcustom org-use-extra-keys nil
970 "Non-nil means use extra key sequence definitions for certain commands.
971 This happens automatically if you run XEmacs or if `window-system'
972 is nil. This variable lets you do the same manually. You must
973 set it before loading org.
975 Example: on Carbon Emacs 22 running graphically, with an external
976 keyboard on a Powerbook, the default way of setting M-left might
977 not work for either Alt or ESC. Setting this variable will make
978 it work for ESC."
979 :group 'org-startup
980 :type 'boolean)
982 (org-defvaralias 'org-CUA-compatible 'org-replace-disputed-keys)
984 (defcustom org-disputed-keys
985 '(([(shift up)] . [(meta p)])
986 ([(shift down)] . [(meta n)])
987 ([(shift left)] . [(meta -)])
988 ([(shift right)] . [(meta +)])
989 ([(control shift right)] . [(meta shift +)])
990 ([(control shift left)] . [(meta shift -)]))
991 "Keys for which Org-mode and other modes compete.
992 This is an alist, cars are the default keys, second element specifies
993 the alternative to use when `org-replace-disputed-keys' is t.
995 Keys can be specified in any syntax supported by `define-key'.
996 The value of this option takes effect only at Org-mode's startup,
997 therefore you'll have to restart Emacs to apply it after changing."
998 :group 'org-startup
999 :type 'alist)
1001 (defun org-key (key)
1002 "Select key according to `org-replace-disputed-keys' and `org-disputed-keys'.
1003 Or return the original if not disputed.
1004 Also apply the translations defined in `org-xemacs-key-equivalents'."
1005 (when org-replace-disputed-keys
1006 (let* ((nkey (key-description key))
1007 (x (org-find-if (lambda (x)
1008 (equal (key-description (car x)) nkey))
1009 org-disputed-keys)))
1010 (setq key (if x (cdr x) key))))
1011 (when (featurep 'xemacs)
1012 (setq key (or (cdr (assoc key org-xemacs-key-equivalents)) key)))
1013 key)
1015 (defun org-find-if (predicate seq)
1016 (catch 'exit
1017 (while seq
1018 (if (funcall predicate (car seq))
1019 (throw 'exit (car seq))
1020 (pop seq)))))
1022 (defun org-defkey (keymap key def)
1023 "Define a key, possibly translated, as returned by `org-key'."
1024 (define-key keymap (org-key key) def))
1026 (defcustom org-ellipsis nil
1027 "The ellipsis to use in the Org-mode outline.
1028 When nil, just use the standard three dots. When a string, use that instead,
1029 When a face, use the standard 3 dots, but with the specified face.
1030 The change affects only Org-mode (which will then use its own display table).
1031 Changing this requires executing `M-x org-mode' in a buffer to become
1032 effective."
1033 :group 'org-startup
1034 :type '(choice (const :tag "Default" nil)
1035 (face :tag "Face" :value org-warning)
1036 (string :tag "String" :value "...#")))
1038 (defvar org-display-table nil
1039 "The display table for org-mode, in case `org-ellipsis' is non-nil.")
1041 (defgroup org-keywords nil
1042 "Keywords in Org-mode."
1043 :tag "Org Keywords"
1044 :group 'org)
1046 (defcustom org-closed-keep-when-no-todo nil
1047 "Remove CLOSED: time-stamp when switching back to a non-todo state?"
1048 :group 'org-todo
1049 :group 'org-keywords
1050 :version "24.4"
1051 :package-version '(Org . "8.0")
1052 :type 'boolean)
1054 (defgroup org-structure nil
1055 "Options concerning the general structure of Org-mode files."
1056 :tag "Org Structure"
1057 :group 'org)
1059 (defgroup org-reveal-location nil
1060 "Options about how to make context of a location visible."
1061 :tag "Org Reveal Location"
1062 :group 'org-structure)
1064 (defconst org-context-choice
1065 '(choice
1066 (const :tag "Always" t)
1067 (const :tag "Never" nil)
1068 (repeat :greedy t :tag "Individual contexts"
1069 (cons
1070 (choice :tag "Context"
1071 (const agenda)
1072 (const org-goto)
1073 (const occur-tree)
1074 (const tags-tree)
1075 (const link-search)
1076 (const mark-goto)
1077 (const bookmark-jump)
1078 (const isearch)
1079 (const default))
1080 (boolean))))
1081 "Contexts for the reveal options.")
1083 (defcustom org-show-hierarchy-above '((default . t))
1084 "Non-nil means show full hierarchy when revealing a location.
1085 Org-mode often shows locations in an org-mode file which might have
1086 been invisible before. When this is set, the hierarchy of headings
1087 above the exposed location is shown.
1088 Turning this off for example for sparse trees makes them very compact.
1089 Instead of t, this can also be an alist specifying this option for different
1090 contexts. Valid contexts are
1091 agenda when exposing an entry from the agenda
1092 org-goto when using the command `org-goto' on key C-c C-j
1093 occur-tree when using the command `org-occur' on key C-c /
1094 tags-tree when constructing a sparse tree based on tags matches
1095 link-search when exposing search matches associated with a link
1096 mark-goto when exposing the jump goal of a mark
1097 bookmark-jump when exposing a bookmark location
1098 isearch when exiting from an incremental search
1099 default default for all contexts not set explicitly"
1100 :group 'org-reveal-location
1101 :type org-context-choice)
1103 (defcustom org-show-following-heading '((default . nil))
1104 "Non-nil means show following heading when revealing a location.
1105 Org-mode often shows locations in an org-mode file which might have
1106 been invisible before. When this is set, the heading following the
1107 match is shown.
1108 Turning this off for example for sparse trees makes them very compact,
1109 but makes it harder to edit the location of the match. In such a case,
1110 use the command \\[org-reveal] to show more context.
1111 Instead of t, this can also be an alist specifying this option for different
1112 contexts. See `org-show-hierarchy-above' for valid contexts."
1113 :group 'org-reveal-location
1114 :type org-context-choice)
1116 (defcustom org-show-siblings '((default . nil) (isearch t) (bookmark-jump t))
1117 "Non-nil means show all sibling heading when revealing a location.
1118 Org-mode often shows locations in an org-mode file which might have
1119 been invisible before. When this is set, the sibling of the current entry
1120 heading are all made visible. If `org-show-hierarchy-above' is t,
1121 the same happens on each level of the hierarchy above the current entry.
1123 By default this is on for the isearch context, off for all other contexts.
1124 Turning this off for example for sparse trees makes them very compact,
1125 but makes it harder to edit the location of the match. In such a case,
1126 use the command \\[org-reveal] to show more context.
1127 Instead of t, this can also be an alist specifying this option for different
1128 contexts. See `org-show-hierarchy-above' for valid contexts."
1129 :group 'org-reveal-location
1130 :type org-context-choice
1131 :version "24.4"
1132 :package-version '(Org . "8.0"))
1134 (defcustom org-show-entry-below '((default . nil))
1135 "Non-nil means show the entry below a headline when revealing a location.
1136 Org-mode often shows locations in an org-mode file which might have
1137 been invisible before. When this is set, the text below the headline that is
1138 exposed is also shown.
1140 By default this is off for all contexts.
1141 Instead of t, this can also be an alist specifying this option for different
1142 contexts. See `org-show-hierarchy-above' for valid contexts."
1143 :group 'org-reveal-location
1144 :type org-context-choice)
1146 (defcustom org-indirect-buffer-display 'other-window
1147 "How should indirect tree buffers be displayed?
1148 This applies to indirect buffers created with the commands
1149 \\[org-tree-to-indirect-buffer] and \\[org-agenda-tree-to-indirect-buffer].
1150 Valid values are:
1151 current-window Display in the current window
1152 other-window Just display in another window.
1153 dedicated-frame Create one new frame, and re-use it each time.
1154 new-frame Make a new frame each time. Note that in this case
1155 previously-made indirect buffers are kept, and you need to
1156 kill these buffers yourself."
1157 :group 'org-structure
1158 :group 'org-agenda-windows
1159 :type '(choice
1160 (const :tag "In current window" current-window)
1161 (const :tag "In current frame, other window" other-window)
1162 (const :tag "Each time a new frame" new-frame)
1163 (const :tag "One dedicated frame" dedicated-frame)))
1165 (defcustom org-use-speed-commands nil
1166 "Non-nil means activate single letter commands at beginning of a headline.
1167 This may also be a function to test for appropriate locations where speed
1168 commands should be active.
1170 For example, to activate speed commands when the point is on any
1171 star at the beginning of the headline, you can do this:
1173 (setq org-use-speed-commands
1174 (lambda () (and (looking-at org-outline-regexp) (looking-back \"^\\**\"))))"
1175 :group 'org-structure
1176 :type '(choice
1177 (const :tag "Never" nil)
1178 (const :tag "At beginning of headline stars" t)
1179 (function)))
1181 (defcustom org-speed-commands-user nil
1182 "Alist of additional speed commands.
1183 This list will be checked before `org-speed-commands-default'
1184 when the variable `org-use-speed-commands' is non-nil
1185 and when the cursor is at the beginning of a headline.
1186 The car if each entry is a string with a single letter, which must
1187 be assigned to `self-insert-command' in the global map.
1188 The cdr is either a command to be called interactively, a function
1189 to be called, or a form to be evaluated.
1190 An entry that is just a list with a single string will be interpreted
1191 as a descriptive headline that will be added when listing the speed
1192 commands in the Help buffer using the `?' speed command."
1193 :group 'org-structure
1194 :type '(repeat :value ("k" . ignore)
1195 (choice :value ("k" . ignore)
1196 (list :tag "Descriptive Headline" (string :tag "Headline"))
1197 (cons :tag "Letter and Command"
1198 (string :tag "Command letter")
1199 (choice
1200 (function)
1201 (sexp))))))
1203 (defcustom org-bookmark-names-plist
1204 '(:last-capture "org-capture-last-stored"
1205 :last-refile "org-refile-last-stored"
1206 :last-capture-marker "org-capture-last-stored-marker")
1207 "Names for bookmarks automatically set by some Org commands.
1208 This can provide strings as names for a number of bookmarks Org sets
1209 automatically. The following keys are currently implemented:
1210 :last-capture
1211 :last-capture-marker
1212 :last-refile
1213 When a key does not show up in the property list, the corresponding bookmark
1214 is not set."
1215 :group 'org-structure
1216 :type 'plist)
1218 (defgroup org-cycle nil
1219 "Options concerning visibility cycling in Org-mode."
1220 :tag "Org Cycle"
1221 :group 'org-structure)
1223 (defcustom org-cycle-skip-children-state-if-no-children t
1224 "Non-nil means skip CHILDREN state in entries that don't have any."
1225 :group 'org-cycle
1226 :type 'boolean)
1228 (defcustom org-cycle-max-level nil
1229 "Maximum level which should still be subject to visibility cycling.
1230 Levels higher than this will, for cycling, be treated as text, not a headline.
1231 When `org-odd-levels-only' is set, a value of N in this variable actually
1232 means 2N-1 stars as the limiting headline.
1233 When nil, cycle all levels.
1234 Note that the limiting level of cycling is also influenced by
1235 `org-inlinetask-min-level'. When `org-cycle-max-level' is not set but
1236 `org-inlinetask-min-level' is, cycling will be limited to levels one less
1237 than its value."
1238 :group 'org-cycle
1239 :type '(choice
1240 (const :tag "No limit" nil)
1241 (integer :tag "Maximum level")))
1243 (defcustom org-hide-block-startup nil
1244 "Non-nil means entering Org-mode will fold all blocks.
1245 This can also be set in on a per-file basis with
1247 #+STARTUP: hideblocks
1248 #+STARTUP: showblocks"
1249 :group 'org-startup
1250 :group 'org-cycle
1251 :type 'boolean)
1253 (defcustom org-cycle-global-at-bob nil
1254 "Cycle globally if cursor is at beginning of buffer and not at a headline.
1255 This makes it possible to do global cycling without having to use S-TAB or
1256 \\[universal-argument] TAB. For this special case to work, the first line
1257 of the buffer must not be a headline -- it may be empty or some other text.
1258 When used in this way, `org-cycle-hook' is disabled temporarily to make
1259 sure the cursor stays at the beginning of the buffer. When this option is
1260 nil, don't do anything special at the beginning of the buffer."
1261 :group 'org-cycle
1262 :type 'boolean)
1264 (defcustom org-cycle-level-after-item/entry-creation t
1265 "Non-nil means cycle entry level or item indentation in new empty entries.
1267 When the cursor is at the end of an empty headline, i.e., with only stars
1268 and maybe a TODO keyword, TAB will then switch the entry to become a child,
1269 and then all possible ancestor states, before returning to the original state.
1270 This makes data entry extremely fast: M-RET to create a new headline,
1271 on TAB to make it a child, two or more tabs to make it a (grand-)uncle.
1273 When the cursor is at the end of an empty plain list item, one TAB will
1274 make it a subitem, two or more tabs will back up to make this an item
1275 higher up in the item hierarchy."
1276 :group 'org-cycle
1277 :type 'boolean)
1279 (defcustom org-cycle-emulate-tab t
1280 "Where should `org-cycle' emulate TAB.
1281 nil Never
1282 white Only in completely white lines
1283 whitestart Only at the beginning of lines, before the first non-white char
1284 t Everywhere except in headlines
1285 exc-hl-bol Everywhere except at the start of a headline
1286 If TAB is used in a place where it does not emulate TAB, the current subtree
1287 visibility is cycled."
1288 :group 'org-cycle
1289 :type '(choice (const :tag "Never" nil)
1290 (const :tag "Only in completely white lines" white)
1291 (const :tag "Before first char in a line" whitestart)
1292 (const :tag "Everywhere except in headlines" t)
1293 (const :tag "Everywhere except at bol in headlines" exc-hl-bol)))
1295 (defcustom org-cycle-separator-lines 2
1296 "Number of empty lines needed to keep an empty line between collapsed trees.
1297 If you leave an empty line between the end of a subtree and the following
1298 headline, this empty line is hidden when the subtree is folded.
1299 Org-mode will leave (exactly) one empty line visible if the number of
1300 empty lines is equal or larger to the number given in this variable.
1301 So the default 2 means at least 2 empty lines after the end of a subtree
1302 are needed to produce free space between a collapsed subtree and the
1303 following headline.
1305 If the number is negative, and the number of empty lines is at least -N,
1306 all empty lines are shown.
1308 Special case: when 0, never leave empty lines in collapsed view."
1309 :group 'org-cycle
1310 :type 'integer)
1311 (put 'org-cycle-separator-lines 'safe-local-variable 'integerp)
1313 (defcustom org-pre-cycle-hook nil
1314 "Hook that is run before visibility cycling is happening.
1315 The function(s) in this hook must accept a single argument which indicates
1316 the new state that will be set right after running this hook. The
1317 argument is a symbol. Before a global state change, it can have the values
1318 `overview', `content', or `all'. Before a local state change, it can have
1319 the values `folded', `children', or `subtree'."
1320 :group 'org-cycle
1321 :type 'hook)
1323 (defcustom org-cycle-hook '(org-cycle-hide-archived-subtrees
1324 org-cycle-hide-drawers
1325 org-cycle-hide-inline-tasks
1326 org-cycle-show-empty-lines
1327 org-optimize-window-after-visibility-change)
1328 "Hook that is run after `org-cycle' has changed the buffer visibility.
1329 The function(s) in this hook must accept a single argument which indicates
1330 the new state that was set by the most recent `org-cycle' command. The
1331 argument is a symbol. After a global state change, it can have the values
1332 `overview', `contents', or `all'. After a local state change, it can have
1333 the values `folded', `children', or `subtree'."
1334 :group 'org-cycle
1335 :type 'hook)
1337 (defgroup org-edit-structure nil
1338 "Options concerning structure editing in Org-mode."
1339 :tag "Org Edit Structure"
1340 :group 'org-structure)
1342 (defcustom org-odd-levels-only nil
1343 "Non-nil means skip even levels and only use odd levels for the outline.
1344 This has the effect that two stars are being added/taken away in
1345 promotion/demotion commands. It also influences how levels are
1346 handled by the exporters.
1347 Changing it requires restart of `font-lock-mode' to become effective
1348 for fontification also in regions already fontified.
1349 You may also set this on a per-file basis by adding one of the following
1350 lines to the buffer:
1352 #+STARTUP: odd
1353 #+STARTUP: oddeven"
1354 :group 'org-edit-structure
1355 :group 'org-appearance
1356 :type 'boolean)
1358 (defcustom org-adapt-indentation t
1359 "Non-nil means adapt indentation to outline node level.
1361 When this variable is set, Org assumes that you write outlines by
1362 indenting text in each node to align with the headline (after the stars).
1363 The following issues are influenced by this variable:
1365 - When this is set and the *entire* text in an entry is indented, the
1366 indentation is increased by one space in a demotion command, and
1367 decreased by one in a promotion command. If any line in the entry
1368 body starts with text at column 0, indentation is not changed at all.
1370 - Property drawers and planning information is inserted indented when
1371 this variable s set. When nil, they will not be indented.
1373 - TAB indents a line relative to context. The lines below a headline
1374 will be indented when this variable is set.
1376 Note that this is all about true indentation, by adding and removing
1377 space characters. See also `org-indent.el' which does level-dependent
1378 indentation in a virtual way, i.e. at display time in Emacs."
1379 :group 'org-edit-structure
1380 :type 'boolean)
1382 (defcustom org-special-ctrl-a/e nil
1383 "Non-nil means `C-a' and `C-e' behave specially in headlines and items.
1385 When t, `C-a' will bring back the cursor to the beginning of the
1386 headline text, i.e. after the stars and after a possible TODO
1387 keyword. In an item, this will be the position after bullet and
1388 check-box, if any. When the cursor is already at that position,
1389 another `C-a' will bring it to the beginning of the line.
1391 `C-e' will jump to the end of the headline, ignoring the presence
1392 of tags in the headline. A second `C-e' will then jump to the
1393 true end of the line, after any tags. This also means that, when
1394 this variable is non-nil, `C-e' also will never jump beyond the
1395 end of the heading of a folded section, i.e. not after the
1396 ellipses.
1398 When set to the symbol `reversed', the first `C-a' or `C-e' works
1399 normally, going to the true line boundary first. Only a directly
1400 following, identical keypress will bring the cursor to the
1401 special positions.
1403 This may also be a cons cell where the behavior for `C-a' and
1404 `C-e' is set separately."
1405 :group 'org-edit-structure
1406 :type '(choice
1407 (const :tag "off" nil)
1408 (const :tag "on: after stars/bullet and before tags first" t)
1409 (const :tag "reversed: true line boundary first" reversed)
1410 (cons :tag "Set C-a and C-e separately"
1411 (choice :tag "Special C-a"
1412 (const :tag "off" nil)
1413 (const :tag "on: after stars/bullet first" t)
1414 (const :tag "reversed: before stars/bullet first" reversed))
1415 (choice :tag "Special C-e"
1416 (const :tag "off" nil)
1417 (const :tag "on: before tags first" t)
1418 (const :tag "reversed: after tags first" reversed)))))
1419 (org-defvaralias 'org-special-ctrl-a 'org-special-ctrl-a/e)
1421 (defcustom org-special-ctrl-k nil
1422 "Non-nil means `C-k' will behave specially in headlines.
1423 When nil, `C-k' will call the default `kill-line' command.
1424 When t, the following will happen while the cursor is in the headline:
1426 - When the cursor is at the beginning of a headline, kill the entire
1427 line and possible the folded subtree below the line.
1428 - When in the middle of the headline text, kill the headline up to the tags.
1429 - When after the headline text, kill the tags."
1430 :group 'org-edit-structure
1431 :type 'boolean)
1433 (defcustom org-ctrl-k-protect-subtree nil
1434 "Non-nil means, do not delete a hidden subtree with C-k.
1435 When set to the symbol `error', simply throw an error when C-k is
1436 used to kill (part-of) a headline that has hidden text behind it.
1437 Any other non-nil value will result in a query to the user, if it is
1438 OK to kill that hidden subtree. When nil, kill without remorse."
1439 :group 'org-edit-structure
1440 :version "24.1"
1441 :type '(choice
1442 (const :tag "Do not protect hidden subtrees" nil)
1443 (const :tag "Protect hidden subtrees with a security query" t)
1444 (const :tag "Never kill a hidden subtree with C-k" error)))
1446 (defcustom org-special-ctrl-o t
1447 "Non-nil means, make `C-o' insert a row in tables."
1448 :group 'org-edit-structure
1449 :type 'boolean)
1451 (defcustom org-catch-invisible-edits nil
1452 "Check if in invisible region before inserting or deleting a character.
1453 Valid values are:
1455 nil Do not check, so just do invisible edits.
1456 error Throw an error and do nothing.
1457 show Make point visible, and do the requested edit.
1458 show-and-error Make point visible, then throw an error and abort the edit.
1459 smart Make point visible, and do insertion/deletion if it is
1460 adjacent to visible text and the change feels predictable.
1461 Never delete a previously invisible character or add in the
1462 middle or right after an invisible region. Basically, this
1463 allows insertion and backward-delete right before ellipses.
1464 FIXME: maybe in this case we should not even show?"
1465 :group 'org-edit-structure
1466 :version "24.1"
1467 :type '(choice
1468 (const :tag "Do not check" nil)
1469 (const :tag "Throw error when trying to edit" error)
1470 (const :tag "Unhide, but do not do the edit" show-and-error)
1471 (const :tag "Show invisible part and do the edit" show)
1472 (const :tag "Be smart and do the right thing" smart)))
1474 (defcustom org-yank-folded-subtrees t
1475 "Non-nil means when yanking subtrees, fold them.
1476 If the kill is a single subtree, or a sequence of subtrees, i.e. if
1477 it starts with a heading and all other headings in it are either children
1478 or siblings, then fold all the subtrees. However, do this only if no
1479 text after the yank would be swallowed into a folded tree by this action."
1480 :group 'org-edit-structure
1481 :type 'boolean)
1483 (defcustom org-yank-adjusted-subtrees nil
1484 "Non-nil means when yanking subtrees, adjust the level.
1485 With this setting, `org-paste-subtree' is used to insert the subtree, see
1486 this function for details."
1487 :group 'org-edit-structure
1488 :type 'boolean)
1490 (defcustom org-M-RET-may-split-line '((default . t))
1491 "Non-nil means M-RET will split the line at the cursor position.
1492 When nil, it will go to the end of the line before making a
1493 new line.
1494 You may also set this option in a different way for different
1495 contexts. Valid contexts are:
1497 headline when creating a new headline
1498 item when creating a new item
1499 table in a table field
1500 default the value to be used for all contexts not explicitly
1501 customized"
1502 :group 'org-structure
1503 :group 'org-table
1504 :type '(choice
1505 (const :tag "Always" t)
1506 (const :tag "Never" nil)
1507 (repeat :greedy t :tag "Individual contexts"
1508 (cons
1509 (choice :tag "Context"
1510 (const headline)
1511 (const item)
1512 (const table)
1513 (const default))
1514 (boolean)))))
1517 (defcustom org-insert-heading-respect-content nil
1518 "Non-nil means insert new headings after the current subtree.
1519 When nil, the new heading is created directly after the current line.
1520 The commands \\[org-insert-heading-respect-content] and \\[org-insert-todo-heading-respect-content] turn
1521 this variable on for the duration of the command."
1522 :group 'org-structure
1523 :type 'boolean)
1525 (defcustom org-blank-before-new-entry '((heading . auto)
1526 (plain-list-item . auto))
1527 "Should `org-insert-heading' leave a blank line before new heading/item?
1528 The value is an alist, with `heading' and `plain-list-item' as CAR,
1529 and a boolean flag as CDR. The cdr may also be the symbol `auto', in
1530 which case Org will look at the surrounding headings/items and try to
1531 make an intelligent decision whether to insert a blank line or not.
1533 For plain lists, if `org-list-empty-line-terminates-plain-lists' is set,
1534 the setting here is ignored and no empty line is inserted to avoid breaking
1535 the list structure."
1536 :group 'org-edit-structure
1537 :type '(list
1538 (cons (const heading)
1539 (choice (const :tag "Never" nil)
1540 (const :tag "Always" t)
1541 (const :tag "Auto" auto)))
1542 (cons (const plain-list-item)
1543 (choice (const :tag "Never" nil)
1544 (const :tag "Always" t)
1545 (const :tag "Auto" auto)))))
1547 (defcustom org-insert-heading-hook nil
1548 "Hook being run after inserting a new heading."
1549 :group 'org-edit-structure
1550 :type 'hook)
1552 (defcustom org-enable-fixed-width-editor t
1553 "Non-nil means lines starting with \":\" are treated as fixed-width.
1554 This currently only means they are never auto-wrapped.
1555 When nil, such lines will be treated like ordinary lines.
1556 See also the QUOTE keyword."
1557 :group 'org-edit-structure
1558 :type 'boolean)
1560 (defcustom org-goto-auto-isearch t
1561 "Non-nil means typing characters in `org-goto' starts incremental search.
1562 When nil, you can use these keybindings to navigate the buffer:
1564 q Quit the org-goto interface
1565 n Go to the next visible heading
1566 p Go to the previous visible heading
1567 f Go one heading forward on same level
1568 b Go one heading backward on same level
1569 u Go one heading up"
1570 :group 'org-edit-structure
1571 :type 'boolean)
1573 (defgroup org-sparse-trees nil
1574 "Options concerning sparse trees in Org-mode."
1575 :tag "Org Sparse Trees"
1576 :group 'org-structure)
1578 (defcustom org-highlight-sparse-tree-matches t
1579 "Non-nil means highlight all matches that define a sparse tree.
1580 The highlights will automatically disappear the next time the buffer is
1581 changed by an edit command."
1582 :group 'org-sparse-trees
1583 :type 'boolean)
1585 (defcustom org-remove-highlights-with-change t
1586 "Non-nil means any change to the buffer will remove temporary highlights.
1587 Such highlights are created by `org-occur' and `org-clock-display'.
1588 When nil, `C-c C-c needs to be used to get rid of the highlights.
1589 The highlights created by `org-preview-latex-fragment' always need
1590 `C-c C-c' to be removed."
1591 :group 'org-sparse-trees
1592 :group 'org-time
1593 :type 'boolean)
1596 (defcustom org-occur-hook '(org-first-headline-recenter)
1597 "Hook that is run after `org-occur' has constructed a sparse tree.
1598 This can be used to recenter the window to show as much of the structure
1599 as possible."
1600 :group 'org-sparse-trees
1601 :type 'hook)
1603 (defgroup org-imenu-and-speedbar nil
1604 "Options concerning imenu and speedbar in Org-mode."
1605 :tag "Org Imenu and Speedbar"
1606 :group 'org-structure)
1608 (defcustom org-imenu-depth 2
1609 "The maximum level for Imenu access to Org-mode headlines.
1610 This also applied for speedbar access."
1611 :group 'org-imenu-and-speedbar
1612 :type 'integer)
1614 (defgroup org-table nil
1615 "Options concerning tables in Org-mode."
1616 :tag "Org Table"
1617 :group 'org)
1619 (defcustom org-enable-table-editor 'optimized
1620 "Non-nil means lines starting with \"|\" are handled by the table editor.
1621 When nil, such lines will be treated like ordinary lines.
1623 When equal to the symbol `optimized', the table editor will be optimized to
1624 do the following:
1625 - Automatic overwrite mode in front of whitespace in table fields.
1626 This makes the structure of the table stay in tact as long as the edited
1627 field does not exceed the column width.
1628 - Minimize the number of realigns. Normally, the table is aligned each time
1629 TAB or RET are pressed to move to another field. With optimization this
1630 happens only if changes to a field might have changed the column width.
1631 Optimization requires replacing the functions `self-insert-command',
1632 `delete-char', and `backward-delete-char' in Org-mode buffers, with a
1633 slight (in fact: unnoticeable) speed impact for normal typing. Org-mode is
1634 very good at guessing when a re-align will be necessary, but you can always
1635 force one with \\[org-ctrl-c-ctrl-c].
1637 If you would like to use the optimized version in Org-mode, but the
1638 un-optimized version in OrgTbl-mode, see the variable `orgtbl-optimized'.
1640 This variable can be used to turn on and off the table editor during a session,
1641 but in order to toggle optimization, a restart is required.
1643 See also the variable `org-table-auto-blank-field'."
1644 :group 'org-table
1645 :type '(choice
1646 (const :tag "off" nil)
1647 (const :tag "on" t)
1648 (const :tag "on, optimized" optimized)))
1650 (defcustom org-self-insert-cluster-for-undo (or (featurep 'xemacs)
1651 (version<= emacs-version "24.1"))
1652 "Non-nil means cluster self-insert commands for undo when possible.
1653 If this is set, then, like in the Emacs command loop, 20 consecutive
1654 characters will be undone together.
1655 This is configurable, because there is some impact on typing performance."
1656 :group 'org-table
1657 :type 'boolean)
1659 (defcustom org-table-tab-recognizes-table.el t
1660 "Non-nil means TAB will automatically notice a table.el table.
1661 When it sees such a table, it moves point into it and - if necessary -
1662 calls `table-recognize-table'."
1663 :group 'org-table-editing
1664 :type 'boolean)
1666 (defgroup org-link nil
1667 "Options concerning links in Org-mode."
1668 :tag "Org Link"
1669 :group 'org)
1671 (defvar org-link-abbrev-alist-local nil
1672 "Buffer-local version of `org-link-abbrev-alist', which see.
1673 The value of this is taken from the #+LINK lines.")
1674 (make-variable-buffer-local 'org-link-abbrev-alist-local)
1676 (defcustom org-link-abbrev-alist nil
1677 "Alist of link abbreviations.
1678 The car of each element is a string, to be replaced at the start of a link.
1679 The cdrs are replacement values, like (\"linkkey\" . REPLACE). Abbreviated
1680 links in Org-mode buffers can have an optional tag after a double colon, e.g.
1682 [[linkkey:tag][description]]
1684 The 'linkkey' must be a word word, starting with a letter, followed
1685 by letters, numbers, '-' or '_'.
1687 If REPLACE is a string, the tag will simply be appended to create the link.
1688 If the string contains \"%s\", the tag will be inserted there. If the string
1689 contains \"%h\", it will cause a url-encoded version of the tag to be inserted
1690 at that point (see the function `url-hexify-string'). If the string contains
1691 the specifier \"%(my-function)\", then the custom function `my-function' will
1692 be invoked: this function takes the tag as its only argument and must return
1693 a string.
1695 REPLACE may also be a function that will be called with the tag as the
1696 only argument to create the link, which should be returned as a string.
1698 See the manual for examples."
1699 :group 'org-link
1700 :type '(repeat
1701 (cons
1702 (string :tag "Protocol")
1703 (choice
1704 (string :tag "Format")
1705 (function)))))
1707 (defcustom org-descriptive-links t
1708 "Non-nil means Org will display descriptive links.
1709 E.g. [[http://orgmode.org][Org website]] will be displayed as
1710 \"Org Website\", hiding the link itself and just displaying its
1711 description. When set to `nil', Org will display the full links
1712 literally.
1714 You can interactively set the value of this variable by calling
1715 `org-toggle-link-display' or from the menu Org>Hyperlinks menu."
1716 :group 'org-link
1717 :type 'boolean)
1719 (defcustom org-link-file-path-type 'adaptive
1720 "How the path name in file links should be stored.
1721 Valid values are:
1723 relative Relative to the current directory, i.e. the directory of the file
1724 into which the link is being inserted.
1725 absolute Absolute path, if possible with ~ for home directory.
1726 noabbrev Absolute path, no abbreviation of home directory.
1727 adaptive Use relative path for files in the current directory and sub-
1728 directories of it. For other files, use an absolute path."
1729 :group 'org-link
1730 :type '(choice
1731 (const relative)
1732 (const absolute)
1733 (const noabbrev)
1734 (const adaptive)))
1736 (defcustom org-activate-links '(bracket angle plain radio tag date footnote)
1737 "Types of links that should be activated in Org-mode files.
1738 This is a list of symbols, each leading to the activation of a certain link
1739 type. In principle, it does not hurt to turn on most link types - there may
1740 be a small gain when turning off unused link types. The types are:
1742 bracket The recommended [[link][description]] or [[link]] links with hiding.
1743 angle Links in angular brackets that may contain whitespace like
1744 <bbdb:Carsten Dominik>.
1745 plain Plain links in normal text, no whitespace, like http://google.com.
1746 radio Text that is matched by a radio target, see manual for details.
1747 tag Tag settings in a headline (link to tag search).
1748 date Time stamps (link to calendar).
1749 footnote Footnote labels.
1751 Changing this variable requires a restart of Emacs to become effective."
1752 :group 'org-link
1753 :type '(set :greedy t
1754 (const :tag "Double bracket links" bracket)
1755 (const :tag "Angular bracket links" angle)
1756 (const :tag "Plain text links" plain)
1757 (const :tag "Radio target matches" radio)
1758 (const :tag "Tags" tag)
1759 (const :tag "Timestamps" date)
1760 (const :tag "Footnotes" footnote)))
1762 (defcustom org-make-link-description-function nil
1763 "Function to use for generating link descriptions from links.
1764 When nil, the link location will be used. This function must take
1765 two parameters: the first one is the link, the second one is the
1766 description generated by `org-insert-link'. The function should
1767 return the description to use."
1768 :group 'org-link
1769 :type '(choice (const nil) (function)))
1771 (defgroup org-link-store nil
1772 "Options concerning storing links in Org-mode."
1773 :tag "Org Store Link"
1774 :group 'org-link)
1776 (defcustom org-url-hexify-p t
1777 "When non-nil, hexify URL when creating a link."
1778 :type 'boolean
1779 :version "24.3"
1780 :group 'org-link-store)
1782 (defcustom org-email-link-description-format "Email %c: %.30s"
1783 "Format of the description part of a link to an email or usenet message.
1784 The following %-escapes will be replaced by corresponding information:
1786 %F full \"From\" field
1787 %f name, taken from \"From\" field, address if no name
1788 %T full \"To\" field
1789 %t first name in \"To\" field, address if no name
1790 %c correspondent. Usually \"from NAME\", but if you sent it yourself, it
1791 will be \"to NAME\". See also the variable `org-from-is-user-regexp'.
1792 %s subject
1793 %d date
1794 %m message-id.
1796 You may use normal field width specification between the % and the letter.
1797 This is for example useful to limit the length of the subject.
1799 Examples: \"%f on: %.30s\", \"Email from %f\", \"Email %c\""
1800 :group 'org-link-store
1801 :type 'string)
1803 (defcustom org-from-is-user-regexp
1804 (let (r1 r2)
1805 (when (and user-mail-address (not (string= user-mail-address "")))
1806 (setq r1 (concat "\\<" (regexp-quote user-mail-address) "\\>")))
1807 (when (and user-full-name (not (string= user-full-name "")))
1808 (setq r2 (concat "\\<" (regexp-quote user-full-name) "\\>")))
1809 (if (and r1 r2) (concat r1 "\\|" r2) (or r1 r2)))
1810 "Regexp matched against the \"From:\" header of an email or usenet message.
1811 It should match if the message is from the user him/herself."
1812 :group 'org-link-store
1813 :type 'regexp)
1815 (defcustom org-context-in-file-links t
1816 "Non-nil means file links from `org-store-link' contain context.
1817 A search string will be added to the file name with :: as separator and
1818 used to find the context when the link is activated by the command
1819 `org-open-at-point'. When this option is t, the entire active region
1820 will be placed in the search string of the file link. If set to a
1821 positive integer, only the first n lines of context will be stored.
1823 Using a prefix arg to the command \\[org-store-link] (`org-store-link')
1824 negates this setting for the duration of the command."
1825 :group 'org-link-store
1826 :type '(choice boolean integer))
1828 (defcustom org-keep-stored-link-after-insertion nil
1829 "Non-nil means keep link in list for entire session.
1831 The command `org-store-link' adds a link pointing to the current
1832 location to an internal list. These links accumulate during a session.
1833 The command `org-insert-link' can be used to insert links into any
1834 Org-mode file (offering completion for all stored links). When this
1835 option is nil, every link which has been inserted once using \\[org-insert-link]
1836 will be removed from the list, to make completing the unused links
1837 more efficient."
1838 :group 'org-link-store
1839 :type 'boolean)
1841 (defgroup org-link-follow nil
1842 "Options concerning following links in Org-mode."
1843 :tag "Org Follow Link"
1844 :group 'org-link)
1846 (defcustom org-link-translation-function nil
1847 "Function to translate links with different syntax to Org syntax.
1848 This can be used to translate links created for example by the Planner
1849 or emacs-wiki packages to Org syntax.
1850 The function must accept two parameters, a TYPE containing the link
1851 protocol name like \"rmail\" or \"gnus\" as a string, and the linked path,
1852 which is everything after the link protocol. It should return a cons
1853 with possibly modified values of type and path.
1854 Org contains a function for this, so if you set this variable to
1855 `org-translate-link-from-planner', you should be able follow many
1856 links created by planner."
1857 :group 'org-link-follow
1858 :type '(choice (const nil) (function)))
1860 (defcustom org-follow-link-hook nil
1861 "Hook that is run after a link has been followed."
1862 :group 'org-link-follow
1863 :type 'hook)
1865 (defcustom org-tab-follows-link nil
1866 "Non-nil means on links TAB will follow the link.
1867 Needs to be set before org.el is loaded.
1868 This really should not be used, it does not make sense, and the
1869 implementation is bad."
1870 :group 'org-link-follow
1871 :type 'boolean)
1873 (defcustom org-return-follows-link nil
1874 "Non-nil means on links RET will follow the link.
1875 In tables, the special behavior of RET has precedence."
1876 :group 'org-link-follow
1877 :type 'boolean)
1879 (defcustom org-mouse-1-follows-link
1880 (if (boundp 'mouse-1-click-follows-link) mouse-1-click-follows-link t)
1881 "Non-nil means mouse-1 on a link will follow the link.
1882 A longer mouse click will still set point. Does not work on XEmacs.
1883 Needs to be set before org.el is loaded."
1884 :group 'org-link-follow
1885 :version "24.4"
1886 :package-version '(Org . "8.3")
1887 :type '(choice
1888 (const :tag "A double click follows the link" 'double)
1889 (const :tag "Unconditionally follow the link with mouse-1" t)
1890 (integer :tag "mouse-1 click does not follow the link if longer than N ms" 450)))
1892 (defcustom org-mark-ring-length 4
1893 "Number of different positions to be recorded in the ring.
1894 Changing this requires a restart of Emacs to work correctly."
1895 :group 'org-link-follow
1896 :type 'integer)
1898 (defcustom org-link-search-must-match-exact-headline 'query-to-create
1899 "Non-nil means internal links in Org files must exactly match a headline.
1900 When nil, the link search tries to match a phrase with all words
1901 in the search text."
1902 :group 'org-link-follow
1903 :version "24.1"
1904 :type '(choice
1905 (const :tag "Use fuzzy text search" nil)
1906 (const :tag "Match only exact headline" t)
1907 (const :tag "Match exact headline or query to create it"
1908 query-to-create)))
1910 (defcustom org-link-frame-setup
1911 '((vm . vm-visit-folder-other-frame)
1912 (vm-imap . vm-visit-imap-folder-other-frame)
1913 (gnus . org-gnus-no-new-news)
1914 (file . find-file-other-window)
1915 (wl . wl-other-frame))
1916 "Setup the frame configuration for following links.
1917 When following a link with Emacs, it may often be useful to display
1918 this link in another window or frame. This variable can be used to
1919 set this up for the different types of links.
1920 For VM, use any of
1921 `vm-visit-folder'
1922 `vm-visit-folder-other-window'
1923 `vm-visit-folder-other-frame'
1924 For Gnus, use any of
1925 `gnus'
1926 `gnus-other-frame'
1927 `org-gnus-no-new-news'
1928 For FILE, use any of
1929 `find-file'
1930 `find-file-other-window'
1931 `find-file-other-frame'
1932 For Wanderlust use any of
1933 `wl'
1934 `wl-other-frame'
1935 For the calendar, use the variable `calendar-setup'.
1936 For BBDB, it is currently only possible to display the matches in
1937 another window."
1938 :group 'org-link-follow
1939 :type '(list
1940 (cons (const vm)
1941 (choice
1942 (const vm-visit-folder)
1943 (const vm-visit-folder-other-window)
1944 (const vm-visit-folder-other-frame)))
1945 (cons (const vm-imap)
1946 (choice
1947 (const vm-visit-imap-folder)
1948 (const vm-visit-imap-folder-other-window)
1949 (const vm-visit-imap-folder-other-frame)))
1950 (cons (const gnus)
1951 (choice
1952 (const gnus)
1953 (const gnus-other-frame)
1954 (const org-gnus-no-new-news)))
1955 (cons (const file)
1956 (choice
1957 (const find-file)
1958 (const find-file-other-window)
1959 (const find-file-other-frame)))
1960 (cons (const wl)
1961 (choice
1962 (const wl)
1963 (const wl-other-frame)))))
1965 (defcustom org-display-internal-link-with-indirect-buffer nil
1966 "Non-nil means use indirect buffer to display infile links.
1967 Activating internal links (from one location in a file to another location
1968 in the same file) normally just jumps to the location. When the link is
1969 activated with a \\[universal-argument] prefix (or with mouse-3), the link \
1970 is displayed in
1971 another window. When this option is set, the other window actually displays
1972 an indirect buffer clone of the current buffer, to avoid any visibility
1973 changes to the current buffer."
1974 :group 'org-link-follow
1975 :type 'boolean)
1977 (defcustom org-open-non-existing-files nil
1978 "Non-nil means `org-open-file' will open non-existing files.
1979 When nil, an error will be generated.
1980 This variable applies only to external applications because they
1981 might choke on non-existing files. If the link is to a file that
1982 will be opened in Emacs, the variable is ignored."
1983 :group 'org-link-follow
1984 :type 'boolean)
1986 (defcustom org-open-directory-means-index-dot-org nil
1987 "Non-nil means a link to a directory really means to index.org.
1988 When nil, following a directory link will run dired or open a finder/explorer
1989 window on that directory."
1990 :group 'org-link-follow
1991 :type 'boolean)
1993 (defcustom org-link-mailto-program '(browse-url "mailto:%a?subject=%s")
1994 "Function and arguments to call for following mailto links.
1995 This is a list with the first element being a Lisp function, and the
1996 remaining elements being arguments to the function. In string arguments,
1997 %a will be replaced by the address, and %s will be replaced by the subject
1998 if one was given like in <mailto:arthur@galaxy.org::this subject>."
1999 :group 'org-link-follow
2000 :type '(choice
2001 (const :tag "browse-url" (browse-url-mail "mailto:%a?subject=%s"))
2002 (const :tag "compose-mail" (compose-mail "%a" "%s"))
2003 (const :tag "message-mail" (message-mail "%a" "%s"))
2004 (cons :tag "other" (function) (repeat :tag "argument" sexp))))
2006 (defcustom org-confirm-shell-link-function 'yes-or-no-p
2007 "Non-nil means ask for confirmation before executing shell links.
2008 Shell links can be dangerous: just think about a link
2010 [[shell:rm -rf ~/*][Google Search]]
2012 This link would show up in your Org-mode document as \"Google Search\",
2013 but really it would remove your entire home directory.
2014 Therefore we advise against setting this variable to nil.
2015 Just change it to `y-or-n-p' if you want to confirm with a
2016 single keystroke rather than having to type \"yes\"."
2017 :group 'org-link-follow
2018 :type '(choice
2019 (const :tag "with yes-or-no (safer)" yes-or-no-p)
2020 (const :tag "with y-or-n (faster)" y-or-n-p)
2021 (const :tag "no confirmation (dangerous)" nil)))
2022 (put 'org-confirm-shell-link-function
2023 'safe-local-variable
2024 #'(lambda (x) (member x '(yes-or-no-p y-or-n-p))))
2026 (defcustom org-confirm-shell-link-not-regexp ""
2027 "A regexp to skip confirmation for shell links."
2028 :group 'org-link-follow
2029 :version "24.1"
2030 :type 'regexp)
2032 (defcustom org-confirm-elisp-link-function 'yes-or-no-p
2033 "Non-nil means ask for confirmation before executing Emacs Lisp links.
2034 Elisp links can be dangerous: just think about a link
2036 [[elisp:(shell-command \"rm -rf ~/*\")][Google Search]]
2038 This link would show up in your Org-mode document as \"Google Search\",
2039 but really it would remove your entire home directory.
2040 Therefore we advise against setting this variable to nil.
2041 Just change it to `y-or-n-p' if you want to confirm with a
2042 single keystroke rather than having to type \"yes\"."
2043 :group 'org-link-follow
2044 :type '(choice
2045 (const :tag "with yes-or-no (safer)" yes-or-no-p)
2046 (const :tag "with y-or-n (faster)" y-or-n-p)
2047 (const :tag "no confirmation (dangerous)" nil)))
2048 (put 'org-confirm-shell-link-function
2049 'safe-local-variable
2050 #'(lambda (x) (member x '(yes-or-no-p y-or-n-p))))
2052 (defcustom org-confirm-elisp-link-not-regexp ""
2053 "A regexp to skip confirmation for Elisp links."
2054 :group 'org-link-follow
2055 :version "24.1"
2056 :type 'regexp)
2058 (defconst org-file-apps-defaults-gnu
2059 '((remote . emacs)
2060 (system . mailcap)
2061 (t . mailcap))
2062 "Default file applications on a UNIX or GNU/Linux system.
2063 See `org-file-apps'.")
2065 (defconst org-file-apps-defaults-macosx
2066 '((remote . emacs)
2067 (t . "open %s")
2068 (system . "open %s")
2069 ("ps.gz" . "gv %s")
2070 ("eps.gz" . "gv %s")
2071 ("dvi" . "xdvi %s")
2072 ("fig" . "xfig %s"))
2073 "Default file applications on a MacOS X system.
2074 The system \"open\" is known as a default, but we use X11 applications
2075 for some files for which the OS does not have a good default.
2076 See `org-file-apps'.")
2078 (defconst org-file-apps-defaults-windowsnt
2079 (list
2080 '(remote . emacs)
2081 (cons t
2082 (list (if (featurep 'xemacs)
2083 'mswindows-shell-execute
2084 'w32-shell-execute)
2085 "open" 'file))
2086 (cons 'system
2087 (list (if (featurep 'xemacs)
2088 'mswindows-shell-execute
2089 'w32-shell-execute)
2090 "open" 'file)))
2091 "Default file applications on a Windows NT system.
2092 The system \"open\" is used for most files.
2093 See `org-file-apps'.")
2095 (defcustom org-file-apps
2096 '((auto-mode . emacs)
2097 ("\\.mm\\'" . default)
2098 ("\\.x?html?\\'" . default)
2099 ("\\.pdf\\'" . default))
2100 "External applications for opening `file:path' items in a document.
2101 Org-mode uses system defaults for different file types, but
2102 you can use this variable to set the application for a given file
2103 extension. The entries in this list are cons cells where the car identifies
2104 files and the cdr the corresponding command. Possible values for the
2105 file identifier are
2106 \"string\" A string as a file identifier can be interpreted in different
2107 ways, depending on its contents:
2109 - Alphanumeric characters only:
2110 Match links with this file extension.
2111 Example: (\"pdf\" . \"evince %s\")
2112 to open PDFs with evince.
2114 - Regular expression: Match links where the
2115 filename matches the regexp. If you want to
2116 use groups here, use shy groups.
2118 Example: (\"\\.x?html\\'\" . \"firefox %s\")
2119 (\"\\(?:xhtml\\|html\\)\" . \"firefox %s\")
2120 to open *.html and *.xhtml with firefox.
2122 - Regular expression which contains (non-shy) groups:
2123 Match links where the whole link, including \"::\", and
2124 anything after that, matches the regexp.
2125 In a custom command string, %1, %2, etc. are replaced with
2126 the parts of the link that were matched by the groups.
2127 For backwards compatibility, if a command string is given
2128 that does not use any of the group matches, this case is
2129 handled identically to the second one (i.e. match against
2130 file name only).
2131 In a custom lisp form, you can access the group matches with
2132 (match-string n link).
2134 Example: (\"\\.pdf::\\(\\d+\\)\\'\" . \"evince -p %1 %s\")
2135 to open [[file:document.pdf::5]] with evince at page 5.
2137 `directory' Matches a directory
2138 `remote' Matches a remote file, accessible through tramp or efs.
2139 Remote files most likely should be visited through Emacs
2140 because external applications cannot handle such paths.
2141 `auto-mode' Matches files that are matched by any entry in `auto-mode-alist',
2142 so all files Emacs knows how to handle. Using this with
2143 command `emacs' will open most files in Emacs. Beware that this
2144 will also open html files inside Emacs, unless you add
2145 (\"html\" . default) to the list as well.
2146 t Default for files not matched by any of the other options.
2147 `system' The system command to open files, like `open' on Windows
2148 and Mac OS X, and mailcap under GNU/Linux. This is the command
2149 that will be selected if you call `C-c C-o' with a double
2150 \\[universal-argument] \\[universal-argument] prefix.
2152 Possible values for the command are:
2153 `emacs' The file will be visited by the current Emacs process.
2154 `default' Use the default application for this file type, which is the
2155 association for t in the list, most likely in the system-specific
2156 part.
2157 This can be used to overrule an unwanted setting in the
2158 system-specific variable.
2159 `system' Use the system command for opening files, like \"open\".
2160 This command is specified by the entry whose car is `system'.
2161 Most likely, the system-specific version of this variable
2162 does define this command, but you can overrule/replace it
2163 here.
2164 string A command to be executed by a shell; %s will be replaced
2165 by the path to the file.
2166 sexp A Lisp form which will be evaluated. The file path will
2167 be available in the Lisp variable `file'.
2168 For more examples, see the system specific constants
2169 `org-file-apps-defaults-macosx'
2170 `org-file-apps-defaults-windowsnt'
2171 `org-file-apps-defaults-gnu'."
2172 :group 'org-link-follow
2173 :type '(repeat
2174 (cons (choice :value ""
2175 (string :tag "Extension")
2176 (const :tag "System command to open files" system)
2177 (const :tag "Default for unrecognized files" t)
2178 (const :tag "Remote file" remote)
2179 (const :tag "Links to a directory" directory)
2180 (const :tag "Any files that have Emacs modes"
2181 auto-mode))
2182 (choice :value ""
2183 (const :tag "Visit with Emacs" emacs)
2184 (const :tag "Use default" default)
2185 (const :tag "Use the system command" system)
2186 (string :tag "Command")
2187 (sexp :tag "Lisp form")))))
2189 (defcustom org-doi-server-url "http://dx.doi.org/"
2190 "The URL of the DOI server."
2191 :type 'string
2192 :version "24.3"
2193 :group 'org-link-follow)
2195 (defgroup org-refile nil
2196 "Options concerning refiling entries in Org-mode."
2197 :tag "Org Refile"
2198 :group 'org)
2200 (defcustom org-directory "~/org"
2201 "Directory with org files.
2202 This is just a default location to look for Org files. There is no need
2203 at all to put your files into this directory. It is only used in the
2204 following situations:
2206 1. When a capture template specifies a target file that is not an
2207 absolute path. The path will then be interpreted relative to
2208 `org-directory'
2209 2. When a capture note is filed away in an interactive way (when exiting the
2210 note buffer with `C-1 C-c C-c'. The user is prompted for an org file,
2211 with `org-directory' as the default path."
2212 :group 'org-refile
2213 :group 'org-capture
2214 :type 'directory)
2216 (defcustom org-default-notes-file (convert-standard-filename "~/.notes")
2217 "Default target for storing notes.
2218 Used as a fall back file for org-capture.el, for templates that
2219 do not specify a target file."
2220 :group 'org-refile
2221 :group 'org-capture
2222 :type '(choice
2223 (const :tag "Default from remember-data-file" nil)
2224 file))
2226 (defcustom org-goto-interface 'outline
2227 "The default interface to be used for `org-goto'.
2228 Allowed values are:
2229 outline The interface shows an outline of the relevant file
2230 and the correct heading is found by moving through
2231 the outline or by searching with incremental search.
2232 outline-path-completion Headlines in the current buffer are offered via
2233 completion. This is the interface also used by
2234 the refile command."
2235 :group 'org-refile
2236 :type '(choice
2237 (const :tag "Outline" outline)
2238 (const :tag "Outline-path-completion" outline-path-completion)))
2240 (defcustom org-goto-max-level 5
2241 "Maximum target level when running `org-goto' with refile interface."
2242 :group 'org-refile
2243 :type 'integer)
2245 (defcustom org-reverse-note-order nil
2246 "Non-nil means store new notes at the beginning of a file or entry.
2247 When nil, new notes will be filed to the end of a file or entry.
2248 This can also be a list with cons cells of regular expressions that
2249 are matched against file names, and values."
2250 :group 'org-capture
2251 :group 'org-refile
2252 :type '(choice
2253 (const :tag "Reverse always" t)
2254 (const :tag "Reverse never" nil)
2255 (repeat :tag "By file name regexp"
2256 (cons regexp boolean))))
2258 (defcustom org-log-refile nil
2259 "Information to record when a task is refiled.
2261 Possible values are:
2263 nil Don't add anything
2264 time Add a time stamp to the task
2265 note Prompt for a note and add it with template `org-log-note-headings'
2267 This option can also be set with on a per-file-basis with
2269 #+STARTUP: nologrefile
2270 #+STARTUP: logrefile
2271 #+STARTUP: lognoterefile
2273 You can have local logging settings for a subtree by setting the LOGGING
2274 property to one or more of these keywords.
2276 When bulk-refiling from the agenda, the value `note' is forbidden and
2277 will temporarily be changed to `time'."
2278 :group 'org-refile
2279 :group 'org-progress
2280 :version "24.1"
2281 :type '(choice
2282 (const :tag "No logging" nil)
2283 (const :tag "Record timestamp" time)
2284 (const :tag "Record timestamp with note." note)))
2286 (defcustom org-refile-targets nil
2287 "Targets for refiling entries with \\[org-refile].
2288 This is a list of cons cells. Each cell contains:
2289 - a specification of the files to be considered, either a list of files,
2290 or a symbol whose function or variable value will be used to retrieve
2291 a file name or a list of file names. If you use `org-agenda-files' for
2292 that, all agenda files will be scanned for targets. Nil means consider
2293 headings in the current buffer.
2294 - A specification of how to find candidate refile targets. This may be
2295 any of:
2296 - a cons cell (:tag . \"TAG\") to identify refile targets by a tag.
2297 This tag has to be present in all target headlines, inheritance will
2298 not be considered.
2299 - a cons cell (:todo . \"KEYWORD\") to identify refile targets by
2300 todo keyword.
2301 - a cons cell (:regexp . \"REGEXP\") with a regular expression matching
2302 headlines that are refiling targets.
2303 - a cons cell (:level . N). Any headline of level N is considered a target.
2304 Note that, when `org-odd-levels-only' is set, level corresponds to
2305 order in hierarchy, not to the number of stars.
2306 - a cons cell (:maxlevel . N). Any headline with level <= N is a target.
2307 Note that, when `org-odd-levels-only' is set, level corresponds to
2308 order in hierarchy, not to the number of stars.
2310 Each element of this list generates a set of possible targets.
2311 The union of these sets is presented (with completion) to
2312 the user by `org-refile'.
2314 You can set the variable `org-refile-target-verify-function' to a function
2315 to verify each headline found by the simple criteria above.
2317 When this variable is nil, all top-level headlines in the current buffer
2318 are used, equivalent to the value `((nil . (:level . 1))'."
2319 :group 'org-refile
2320 :type '(repeat
2321 (cons
2322 (choice :value org-agenda-files
2323 (const :tag "All agenda files" org-agenda-files)
2324 (const :tag "Current buffer" nil)
2325 (function) (variable) (file))
2326 (choice :tag "Identify target headline by"
2327 (cons :tag "Specific tag" (const :value :tag) (string))
2328 (cons :tag "TODO keyword" (const :value :todo) (string))
2329 (cons :tag "Regular expression" (const :value :regexp) (regexp))
2330 (cons :tag "Level number" (const :value :level) (integer))
2331 (cons :tag "Max Level number" (const :value :maxlevel) (integer))))))
2333 (defcustom org-refile-target-verify-function nil
2334 "Function to verify if the headline at point should be a refile target.
2335 The function will be called without arguments, with point at the
2336 beginning of the headline. It should return t and leave point
2337 where it is if the headline is a valid target for refiling.
2339 If the target should not be selected, the function must return nil.
2340 In addition to this, it may move point to a place from where the search
2341 should be continued. For example, the function may decide that the entire
2342 subtree of the current entry should be excluded and move point to the end
2343 of the subtree."
2344 :group 'org-refile
2345 :type '(choice
2346 (const nil)
2347 (function)))
2349 (defcustom org-refile-use-cache nil
2350 "Non-nil means cache refile targets to speed up the process.
2351 The cache for a particular file will be updated automatically when
2352 the buffer has been killed, or when any of the marker used for flagging
2353 refile targets no longer points at a live buffer.
2354 If you have added new entries to a buffer that might themselves be targets,
2355 you need to clear the cache manually by pressing `C-0 C-c C-w' or, if you
2356 find that easier, `C-u C-u C-u C-c C-w'."
2357 :group 'org-refile
2358 :version "24.1"
2359 :type 'boolean)
2361 (defcustom org-refile-use-outline-path nil
2362 "Non-nil means provide refile targets as paths.
2363 So a level 3 headline will be available as level1/level2/level3.
2365 When the value is `file', also include the file name (without directory)
2366 into the path. In this case, you can also stop the completion after
2367 the file name, to get entries inserted as top level in the file.
2369 When `full-file-path', include the full file path."
2370 :group 'org-refile
2371 :type '(choice
2372 (const :tag "Not" nil)
2373 (const :tag "Yes" t)
2374 (const :tag "Start with file name" file)
2375 (const :tag "Start with full file path" full-file-path)))
2377 (defcustom org-outline-path-complete-in-steps t
2378 "Non-nil means complete the outline path in hierarchical steps.
2379 When Org-mode uses the refile interface to select an outline path
2380 \(see variable `org-refile-use-outline-path'), the completion of
2381 the path can be done is a single go, or if can be done in steps down
2382 the headline hierarchy. Going in steps is probably the best if you
2383 do not use a special completion package like `ido' or `icicles'.
2384 However, when using these packages, going in one step can be very
2385 fast, while still showing the whole path to the entry."
2386 :group 'org-refile
2387 :type 'boolean)
2389 (defcustom org-refile-allow-creating-parent-nodes nil
2390 "Non-nil means allow to create new nodes as refile targets.
2391 New nodes are then created by adding \"/new node name\" to the completion
2392 of an existing node. When the value of this variable is `confirm',
2393 new node creation must be confirmed by the user (recommended)
2394 When nil, the completion must match an existing entry.
2396 Note that, if the new heading is not seen by the criteria
2397 listed in `org-refile-targets', multiple instances of the same
2398 heading would be created by trying again to file under the new
2399 heading."
2400 :group 'org-refile
2401 :type '(choice
2402 (const :tag "Never" nil)
2403 (const :tag "Always" t)
2404 (const :tag "Prompt for confirmation" confirm)))
2406 (defcustom org-refile-active-region-within-subtree nil
2407 "Non-nil means also refile active region within a subtree.
2409 By default `org-refile' doesn't allow refiling regions if they
2410 don't contain a set of subtrees, but it might be convenient to
2411 do so sometimes: in that case, the first line of the region is
2412 converted to a headline before refiling."
2413 :group 'org-refile
2414 :version "24.1"
2415 :type 'boolean)
2417 (defgroup org-todo nil
2418 "Options concerning TODO items in Org-mode."
2419 :tag "Org TODO"
2420 :group 'org)
2422 (defgroup org-progress nil
2423 "Options concerning Progress logging in Org-mode."
2424 :tag "Org Progress"
2425 :group 'org-time)
2427 (defvar org-todo-interpretation-widgets
2428 '((:tag "Sequence (cycling hits every state)" sequence)
2429 (:tag "Type (cycling directly to DONE)" type))
2430 "The available interpretation symbols for customizing `org-todo-keywords'.
2431 Interested libraries should add to this list.")
2433 (defcustom org-todo-keywords '((sequence "TODO" "DONE"))
2434 "List of TODO entry keyword sequences and their interpretation.
2435 \\<org-mode-map>This is a list of sequences.
2437 Each sequence starts with a symbol, either `sequence' or `type',
2438 indicating if the keywords should be interpreted as a sequence of
2439 action steps, or as different types of TODO items. The first
2440 keywords are states requiring action - these states will select a headline
2441 for inclusion into the global TODO list Org-mode produces. If one of
2442 the \"keywords\" is the vertical bar, \"|\", the remaining keywords
2443 signify that no further action is necessary. If \"|\" is not found,
2444 the last keyword is treated as the only DONE state of the sequence.
2446 The command \\[org-todo] cycles an entry through these states, and one
2447 additional state where no keyword is present. For details about this
2448 cycling, see the manual.
2450 TODO keywords and interpretation can also be set on a per-file basis with
2451 the special #+SEQ_TODO and #+TYP_TODO lines.
2453 Each keyword can optionally specify a character for fast state selection
2454 \(in combination with the variable `org-use-fast-todo-selection')
2455 and specifiers for state change logging, using the same syntax that
2456 is used in the \"#+TODO:\" lines. For example, \"WAIT(w)\" says that
2457 the WAIT state can be selected with the \"w\" key. \"WAIT(w!)\"
2458 indicates to record a time stamp each time this state is selected.
2460 Each keyword may also specify if a timestamp or a note should be
2461 recorded when entering or leaving the state, by adding additional
2462 characters in the parenthesis after the keyword. This looks like this:
2463 \"WAIT(w@/!)\". \"@\" means to add a note (with time), \"!\" means to
2464 record only the time of the state change. With X and Y being either
2465 \"@\" or \"!\", \"X/Y\" means use X when entering the state, and use
2466 Y when leaving the state if and only if the *target* state does not
2467 define X. You may omit any of the fast-selection key or X or /Y,
2468 so WAIT(w@), WAIT(w/@) and WAIT(@/@) are all valid.
2470 For backward compatibility, this variable may also be just a list
2471 of keywords. In this case the interpretation (sequence or type) will be
2472 taken from the (otherwise obsolete) variable `org-todo-interpretation'."
2473 :group 'org-todo
2474 :group 'org-keywords
2475 :type '(choice
2476 (repeat :tag "Old syntax, just keywords"
2477 (string :tag "Keyword"))
2478 (repeat :tag "New syntax"
2479 (cons
2480 (choice
2481 :tag "Interpretation"
2482 ;;Quick and dirty way to see
2483 ;;`org-todo-interpretations'. This takes the
2484 ;;place of item arguments
2485 :convert-widget
2486 (lambda (widget)
2487 (widget-put widget
2488 :args (mapcar
2489 #'(lambda (x)
2490 (widget-convert
2491 (cons 'const x)))
2492 org-todo-interpretation-widgets))
2493 widget))
2494 (repeat
2495 (string :tag "Keyword"))))))
2497 (defvar org-todo-keywords-1 nil
2498 "All TODO and DONE keywords active in a buffer.")
2499 (make-variable-buffer-local 'org-todo-keywords-1)
2500 (defvar org-todo-keywords-for-agenda nil)
2501 (defvar org-done-keywords-for-agenda nil)
2502 (defvar org-todo-keyword-alist-for-agenda nil)
2503 (defvar org-tag-alist-for-agenda nil
2504 "Alist of all tags from all agenda files.")
2505 (defvar org-tag-groups-alist-for-agenda nil
2506 "Alist of all groups tags from all current agenda files.")
2507 (defvar org-tag-groups-alist nil)
2508 (make-variable-buffer-local 'org-tag-groups-alist)
2509 (defvar org-agenda-contributing-files nil)
2510 (defvar org-not-done-keywords nil)
2511 (make-variable-buffer-local 'org-not-done-keywords)
2512 (defvar org-done-keywords nil)
2513 (make-variable-buffer-local 'org-done-keywords)
2514 (defvar org-todo-heads nil)
2515 (make-variable-buffer-local 'org-todo-heads)
2516 (defvar org-todo-sets nil)
2517 (make-variable-buffer-local 'org-todo-sets)
2518 (defvar org-todo-log-states nil)
2519 (make-variable-buffer-local 'org-todo-log-states)
2520 (defvar org-todo-kwd-alist nil)
2521 (make-variable-buffer-local 'org-todo-kwd-alist)
2522 (defvar org-todo-key-alist nil)
2523 (make-variable-buffer-local 'org-todo-key-alist)
2524 (defvar org-todo-key-trigger nil)
2525 (make-variable-buffer-local 'org-todo-key-trigger)
2527 (defcustom org-todo-interpretation 'sequence
2528 "Controls how TODO keywords are interpreted.
2529 This variable is in principle obsolete and is only used for
2530 backward compatibility, if the interpretation of todo keywords is
2531 not given already in `org-todo-keywords'. See that variable for
2532 more information."
2533 :group 'org-todo
2534 :group 'org-keywords
2535 :type '(choice (const sequence)
2536 (const type)))
2538 (defcustom org-use-fast-todo-selection t
2539 "Non-nil means use the fast todo selection scheme with C-c C-t.
2540 This variable describes if and under what circumstances the cycling
2541 mechanism for TODO keywords will be replaced by a single-key, direct
2542 selection scheme.
2544 When nil, fast selection is never used.
2546 When the symbol `prefix', it will be used when `org-todo' is called
2547 with a prefix argument, i.e. `C-u C-c C-t' in an Org-mode buffer, and
2548 `C-u t' in an agenda buffer.
2550 When t, fast selection is used by default. In this case, the prefix
2551 argument forces cycling instead.
2553 In all cases, the special interface is only used if access keys have
2554 actually been assigned by the user, i.e. if keywords in the configuration
2555 are followed by a letter in parenthesis, like TODO(t)."
2556 :group 'org-todo
2557 :type '(choice
2558 (const :tag "Never" nil)
2559 (const :tag "By default" t)
2560 (const :tag "Only with C-u C-c C-t" prefix)))
2562 (defcustom org-provide-todo-statistics t
2563 "Non-nil means update todo statistics after insert and toggle.
2564 ALL-HEADLINES means update todo statistics by including headlines
2565 with no TODO keyword as well, counting them as not done.
2566 A list of TODO keywords means the same, but skip keywords that are
2567 not in this list.
2569 When this is set, todo statistics is updated in the parent of the
2570 current entry each time a todo state is changed."
2571 :group 'org-todo
2572 :type '(choice
2573 (const :tag "Yes, only for TODO entries" t)
2574 (const :tag "Yes, including all entries" 'all-headlines)
2575 (repeat :tag "Yes, for TODOs in this list"
2576 (string :tag "TODO keyword"))
2577 (other :tag "No TODO statistics" nil)))
2579 (defcustom org-hierarchical-todo-statistics t
2580 "Non-nil means TODO statistics covers just direct children.
2581 When nil, all entries in the subtree are considered.
2582 This has only an effect if `org-provide-todo-statistics' is set.
2583 To set this to nil for only a single subtree, use a COOKIE_DATA
2584 property and include the word \"recursive\" into the value."
2585 :group 'org-todo
2586 :type 'boolean)
2588 (defcustom org-after-todo-state-change-hook nil
2589 "Hook which is run after the state of a TODO item was changed.
2590 The new state (a string with a TODO keyword, or nil) is available in the
2591 Lisp variable `org-state'."
2592 :group 'org-todo
2593 :type 'hook)
2595 (defvar org-blocker-hook nil
2596 "Hook for functions that are allowed to block a state change.
2598 Functions in this hook should not modify the buffer.
2599 Each function gets as its single argument a property list,
2600 see `org-trigger-hook' for more information about this list.
2602 If any of the functions in this hook returns nil, the state change
2603 is blocked.")
2605 (defvar org-trigger-hook nil
2606 "Hook for functions that are triggered by a state change.
2608 Each function gets as its single argument a property list with at
2609 least the following elements:
2611 (:type type-of-change :position pos-at-entry-start
2612 :from old-state :to new-state)
2614 Depending on the type, more properties may be present.
2616 This mechanism is currently implemented for:
2618 TODO state changes
2619 ------------------
2620 :type todo-state-change
2621 :from previous state (keyword as a string), or nil, or a symbol
2622 'todo' or 'done', to indicate the general type of state.
2623 :to new state, like in :from")
2625 (defcustom org-enforce-todo-dependencies nil
2626 "Non-nil means undone TODO entries will block switching the parent to DONE.
2627 Also, if a parent has an :ORDERED: property, switching an entry to DONE will
2628 be blocked if any prior sibling is not yet done.
2629 Finally, if the parent is blocked because of ordered siblings of its own,
2630 the child will also be blocked."
2631 :set (lambda (var val)
2632 (set var val)
2633 (if val
2634 (add-hook 'org-blocker-hook
2635 'org-block-todo-from-children-or-siblings-or-parent)
2636 (remove-hook 'org-blocker-hook
2637 'org-block-todo-from-children-or-siblings-or-parent)))
2638 :group 'org-todo
2639 :type 'boolean)
2641 (defcustom org-enforce-todo-checkbox-dependencies nil
2642 "Non-nil means unchecked boxes will block switching the parent to DONE.
2643 When this is nil, checkboxes have no influence on switching TODO states.
2644 When non-nil, you first need to check off all check boxes before the TODO
2645 entry can be switched to DONE.
2646 This variable needs to be set before org.el is loaded, and you need to
2647 restart Emacs after a change to make the change effective. The only way
2648 to change is while Emacs is running is through the customize interface."
2649 :set (lambda (var val)
2650 (set var val)
2651 (if val
2652 (add-hook 'org-blocker-hook
2653 'org-block-todo-from-checkboxes)
2654 (remove-hook 'org-blocker-hook
2655 'org-block-todo-from-checkboxes)))
2656 :group 'org-todo
2657 :type 'boolean)
2659 (defcustom org-treat-insert-todo-heading-as-state-change nil
2660 "Non-nil means inserting a TODO heading is treated as state change.
2661 So when the command \\[org-insert-todo-heading] is used, state change
2662 logging will apply if appropriate. When nil, the new TODO item will
2663 be inserted directly, and no logging will take place."
2664 :group 'org-todo
2665 :type 'boolean)
2667 (defcustom org-treat-S-cursor-todo-selection-as-state-change t
2668 "Non-nil means switching TODO states with S-cursor counts as state change.
2669 This is the default behavior. However, setting this to nil allows a
2670 convenient way to select a TODO state and bypass any logging associated
2671 with that."
2672 :group 'org-todo
2673 :type 'boolean)
2675 (defcustom org-todo-state-tags-triggers nil
2676 "Tag changes that should be triggered by TODO state changes.
2677 This is a list. Each entry is
2679 (state-change (tag . flag) .......)
2681 State-change can be a string with a state, and empty string to indicate the
2682 state that has no TODO keyword, or it can be one of the symbols `todo'
2683 or `done', meaning any not-done or done state, respectively."
2684 :group 'org-todo
2685 :group 'org-tags
2686 :type '(repeat
2687 (cons (choice :tag "When changing to"
2688 (const :tag "Not-done state" todo)
2689 (const :tag "Done state" done)
2690 (string :tag "State"))
2691 (repeat
2692 (cons :tag "Tag action"
2693 (string :tag "Tag")
2694 (choice (const :tag "Add" t) (const :tag "Remove" nil)))))))
2696 (defcustom org-log-done nil
2697 "Information to record when a task moves to the DONE state.
2699 Possible values are:
2701 nil Don't add anything, just change the keyword
2702 time Add a time stamp to the task
2703 note Prompt for a note and add it with template `org-log-note-headings'
2705 This option can also be set with on a per-file-basis with
2707 #+STARTUP: nologdone
2708 #+STARTUP: logdone
2709 #+STARTUP: lognotedone
2711 You can have local logging settings for a subtree by setting the LOGGING
2712 property to one or more of these keywords."
2713 :group 'org-todo
2714 :group 'org-progress
2715 :type '(choice
2716 (const :tag "No logging" nil)
2717 (const :tag "Record CLOSED timestamp" time)
2718 (const :tag "Record CLOSED timestamp with note." note)))
2720 ;; Normalize old uses of org-log-done.
2721 (cond
2722 ((eq org-log-done t) (setq org-log-done 'time))
2723 ((and (listp org-log-done) (memq 'done org-log-done))
2724 (setq org-log-done 'note)))
2726 (defcustom org-log-reschedule nil
2727 "Information to record when the scheduling date of a tasks is modified.
2729 Possible values are:
2731 nil Don't add anything, just change the date
2732 time Add a time stamp to the task
2733 note Prompt for a note and add it with template `org-log-note-headings'
2735 This option can also be set with on a per-file-basis with
2737 #+STARTUP: nologreschedule
2738 #+STARTUP: logreschedule
2739 #+STARTUP: lognotereschedule"
2740 :group 'org-todo
2741 :group 'org-progress
2742 :type '(choice
2743 (const :tag "No logging" nil)
2744 (const :tag "Record timestamp" time)
2745 (const :tag "Record timestamp with note." note)))
2747 (defcustom org-log-redeadline nil
2748 "Information to record when the deadline date of a tasks is modified.
2750 Possible values are:
2752 nil Don't add anything, just change the date
2753 time Add a time stamp to the task
2754 note Prompt for a note and add it with template `org-log-note-headings'
2756 This option can also be set with on a per-file-basis with
2758 #+STARTUP: nologredeadline
2759 #+STARTUP: logredeadline
2760 #+STARTUP: lognoteredeadline
2762 You can have local logging settings for a subtree by setting the LOGGING
2763 property to one or more of these keywords."
2764 :group 'org-todo
2765 :group 'org-progress
2766 :type '(choice
2767 (const :tag "No logging" nil)
2768 (const :tag "Record timestamp" time)
2769 (const :tag "Record timestamp with note." note)))
2771 (defcustom org-log-note-clock-out nil
2772 "Non-nil means record a note when clocking out of an item.
2773 This can also be configured on a per-file basis by adding one of
2774 the following lines anywhere in the buffer:
2776 #+STARTUP: lognoteclock-out
2777 #+STARTUP: nolognoteclock-out"
2778 :group 'org-todo
2779 :group 'org-progress
2780 :type 'boolean)
2782 (defcustom org-log-done-with-time t
2783 "Non-nil means the CLOSED time stamp will contain date and time.
2784 When nil, only the date will be recorded."
2785 :group 'org-progress
2786 :type 'boolean)
2788 (defcustom org-log-note-headings
2789 '((done . "CLOSING NOTE %t")
2790 (state . "State %-12s from %-12S %t")
2791 (note . "Note taken on %t")
2792 (reschedule . "Rescheduled from %S on %t")
2793 (delschedule . "Not scheduled, was %S on %t")
2794 (redeadline . "New deadline from %S on %t")
2795 (deldeadline . "Removed deadline, was %S on %t")
2796 (refile . "Refiled on %t")
2797 (clock-out . ""))
2798 "Headings for notes added to entries.
2799 The value is an alist, with the car being a symbol indicating the note
2800 context, and the cdr is the heading to be used. The heading may also be the
2801 empty string.
2802 %t in the heading will be replaced by a time stamp.
2803 %T will be an active time stamp instead the default inactive one
2804 %d will be replaced by a short-format time stamp.
2805 %D will be replaced by an active short-format time stamp.
2806 %s will be replaced by the new TODO state, in double quotes.
2807 %S will be replaced by the old TODO state, in double quotes.
2808 %u will be replaced by the user name.
2809 %U will be replaced by the full user name.
2811 In fact, it is not a good idea to change the `state' entry, because
2812 agenda log mode depends on the format of these entries."
2813 :group 'org-todo
2814 :group 'org-progress
2815 :type '(list :greedy t
2816 (cons (const :tag "Heading when closing an item" done) string)
2817 (cons (const :tag
2818 "Heading when changing todo state (todo sequence only)"
2819 state) string)
2820 (cons (const :tag "Heading when just taking a note" note) string)
2821 (cons (const :tag "Heading when rescheduling" reschedule) string)
2822 (cons (const :tag "Heading when an item is no longer scheduled" delschedule) string)
2823 (cons (const :tag "Heading when changing deadline" redeadline) string)
2824 (cons (const :tag "Heading when deleting a deadline" deldeadline) string)
2825 (cons (const :tag "Heading when refiling" refile) string)
2826 (cons (const :tag "Heading when clocking out" clock-out) string)))
2828 (unless (assq 'note org-log-note-headings)
2829 (push '(note . "%t") org-log-note-headings))
2831 (defcustom org-log-into-drawer nil
2832 "Non-nil means insert state change notes and time stamps into a drawer.
2833 When nil, state changes notes will be inserted after the headline and
2834 any scheduling and clock lines, but not inside a drawer.
2836 The value of this variable should be the name of the drawer to use.
2837 LOGBOOK is proposed as the default drawer for this purpose, you can
2838 also set this to a string to define the drawer of your choice.
2840 A value of t is also allowed, representing \"LOGBOOK\".
2842 A value of t or nil can also be set with on a per-file-basis with
2844 #+STARTUP: logdrawer
2845 #+STARTUP: nologdrawer
2847 If this variable is set, `org-log-state-notes-insert-after-drawers'
2848 will be ignored.
2850 You can set the property LOG_INTO_DRAWER to overrule this setting for
2851 a subtree."
2852 :group 'org-todo
2853 :group 'org-progress
2854 :type '(choice
2855 (const :tag "Not into a drawer" nil)
2856 (const :tag "LOGBOOK" t)
2857 (string :tag "Other")))
2859 (org-defvaralias 'org-log-state-notes-into-drawer 'org-log-into-drawer)
2861 (defun org-log-into-drawer ()
2862 "Return the value of `org-log-into-drawer', but let properties overrule.
2863 If the current entry has or inherits a LOG_INTO_DRAWER property, it will be
2864 used instead of the default value."
2865 (let ((p (org-entry-get nil "LOG_INTO_DRAWER" 'inherit t)))
2866 (cond
2867 ((not p) org-log-into-drawer)
2868 ((equal p "nil") nil)
2869 ((equal p "t") "LOGBOOK")
2870 (t p))))
2872 (defcustom org-log-state-notes-insert-after-drawers nil
2873 "Non-nil means insert state change notes after any drawers in entry.
2874 Only the drawers that *immediately* follow the headline and the
2875 deadline/scheduled line are skipped.
2876 When nil, insert notes right after the heading and perhaps the line
2877 with deadline/scheduling if present.
2879 This variable will have no effect if `org-log-into-drawer' is
2880 set."
2881 :group 'org-todo
2882 :group 'org-progress
2883 :type 'boolean)
2885 (defcustom org-log-states-order-reversed t
2886 "Non-nil means the latest state note will be directly after heading.
2887 When nil, the state change notes will be ordered according to time.
2889 This option can also be set with on a per-file-basis with
2891 #+STARTUP: logstatesreversed
2892 #+STARTUP: nologstatesreversed"
2893 :group 'org-todo
2894 :group 'org-progress
2895 :type 'boolean)
2897 (defcustom org-todo-repeat-to-state nil
2898 "The TODO state to which a repeater should return the repeating task.
2899 By default this is the first task in a TODO sequence, or the previous state
2900 in a TODO_TYP set. But you can specify another task here.
2901 alternatively, set the :REPEAT_TO_STATE: property of the entry."
2902 :group 'org-todo
2903 :version "24.1"
2904 :type '(choice (const :tag "Head of sequence" nil)
2905 (string :tag "Specific state")))
2907 (defcustom org-log-repeat 'time
2908 "Non-nil means record moving through the DONE state when triggering repeat.
2909 An auto-repeating task is immediately switched back to TODO when
2910 marked DONE. If you are not logging state changes (by adding \"@\"
2911 or \"!\" to the TODO keyword definition), or set `org-log-done' to
2912 record a closing note, there will be no record of the task moving
2913 through DONE. This variable forces taking a note anyway.
2915 nil Don't force a record
2916 time Record a time stamp
2917 note Prompt for a note and add it with template `org-log-note-headings'
2919 This option can also be set with on a per-file-basis with
2921 #+STARTUP: nologrepeat
2922 #+STARTUP: logrepeat
2923 #+STARTUP: lognoterepeat
2925 You can have local logging settings for a subtree by setting the LOGGING
2926 property to one or more of these keywords."
2927 :group 'org-todo
2928 :group 'org-progress
2929 :type '(choice
2930 (const :tag "Don't force a record" nil)
2931 (const :tag "Force recording the DONE state" time)
2932 (const :tag "Force recording a note with the DONE state" note)))
2935 (defgroup org-priorities nil
2936 "Priorities in Org-mode."
2937 :tag "Org Priorities"
2938 :group 'org-todo)
2940 (defcustom org-enable-priority-commands t
2941 "Non-nil means priority commands are active.
2942 When nil, these commands will be disabled, so that you never accidentally
2943 set a priority."
2944 :group 'org-priorities
2945 :type 'boolean)
2947 (defcustom org-highest-priority ?A
2948 "The highest priority of TODO items. A character like ?A, ?B etc.
2949 Must have a smaller ASCII number than `org-lowest-priority'."
2950 :group 'org-priorities
2951 :type 'character)
2953 (defcustom org-lowest-priority ?C
2954 "The lowest priority of TODO items. A character like ?A, ?B etc.
2955 Must have a larger ASCII number than `org-highest-priority'."
2956 :group 'org-priorities
2957 :type 'character)
2959 (defcustom org-default-priority ?B
2960 "The default priority of TODO items.
2961 This is the priority an item gets if no explicit priority is given.
2962 When starting to cycle on an empty priority the first step in the cycle
2963 depends on `org-priority-start-cycle-with-default'. The resulting first
2964 step priority must not exceed the range from `org-highest-priority' to
2965 `org-lowest-priority' which means that `org-default-priority' has to be
2966 in this range exclusive or inclusive the range boundaries. Else the
2967 first step refuses to set the default and the second will fall back
2968 to (depending on the command used) the highest or lowest priority."
2969 :group 'org-priorities
2970 :type 'character)
2972 (defcustom org-priority-start-cycle-with-default t
2973 "Non-nil means start with default priority when starting to cycle.
2974 When this is nil, the first step in the cycle will be (depending on the
2975 command used) one higher or lower than the default priority.
2976 See also `org-default-priority'."
2977 :group 'org-priorities
2978 :type 'boolean)
2980 (defcustom org-get-priority-function nil
2981 "Function to extract the priority from a string.
2982 The string is normally the headline. If this is nil Org computes the
2983 priority from the priority cookie like [#A] in the headline. It returns
2984 an integer, increasing by 1000 for each priority level.
2985 The user can set a different function here, which should take a string
2986 as an argument and return the numeric priority."
2987 :group 'org-priorities
2988 :version "24.1"
2989 :type '(choice
2990 (const nil)
2991 (function)))
2993 (defgroup org-time nil
2994 "Options concerning time stamps and deadlines in Org-mode."
2995 :tag "Org Time"
2996 :group 'org)
2998 (defcustom org-insert-labeled-timestamps-at-point nil
2999 "Non-nil means SCHEDULED and DEADLINE timestamps are inserted at point.
3000 When nil, these labeled time stamps are forces into the second line of an
3001 entry, just after the headline. When scheduling from the global TODO list,
3002 the time stamp will always be forced into the second line."
3003 :group 'org-time
3004 :type 'boolean)
3006 (defcustom org-time-stamp-rounding-minutes '(0 5)
3007 "Number of minutes to round time stamps to.
3008 These are two values, the first applies when first creating a time stamp.
3009 The second applies when changing it with the commands `S-up' and `S-down'.
3010 When changing the time stamp, this means that it will change in steps
3011 of N minutes, as given by the second value.
3013 When a setting is 0 or 1, insert the time unmodified. Useful rounding
3014 numbers should be factors of 60, so for example 5, 10, 15.
3016 When this is larger than 1, you can still force an exact time stamp by using
3017 a double prefix argument to a time stamp command like `C-c .' or `C-c !',
3018 and by using a prefix arg to `S-up/down' to specify the exact number
3019 of minutes to shift."
3020 :group 'org-time
3021 :get #'(lambda (var) ; Make sure both elements are there
3022 (if (integerp (default-value var))
3023 (list (default-value var) 5)
3024 (default-value var)))
3025 :type '(list
3026 (integer :tag "when inserting times")
3027 (integer :tag "when modifying times")))
3029 ;; Normalize old customizations of this variable.
3030 (when (integerp org-time-stamp-rounding-minutes)
3031 (setq org-time-stamp-rounding-minutes
3032 (list org-time-stamp-rounding-minutes
3033 org-time-stamp-rounding-minutes)))
3035 (defcustom org-display-custom-times nil
3036 "Non-nil means overlay custom formats over all time stamps.
3037 The formats are defined through the variable `org-time-stamp-custom-formats'.
3038 To turn this on on a per-file basis, insert anywhere in the file:
3039 #+STARTUP: customtime"
3040 :group 'org-time
3041 :set 'set-default
3042 :type 'sexp)
3043 (make-variable-buffer-local 'org-display-custom-times)
3045 (defcustom org-time-stamp-custom-formats
3046 '("<%m/%d/%y %a>" . "<%m/%d/%y %a %H:%M>") ; american
3047 "Custom formats for time stamps. See `format-time-string' for the syntax.
3048 These are overlaid over the default ISO format if the variable
3049 `org-display-custom-times' is set. Time like %H:%M should be at the
3050 end of the second format. The custom formats are also honored by export
3051 commands, if custom time display is turned on at the time of export."
3052 :group 'org-time
3053 :type 'sexp)
3055 (defun org-time-stamp-format (&optional long inactive)
3056 "Get the right format for a time string."
3057 (let ((f (if long (cdr org-time-stamp-formats)
3058 (car org-time-stamp-formats))))
3059 (if inactive
3060 (concat "[" (substring f 1 -1) "]")
3061 f)))
3063 (defcustom org-time-clocksum-format
3064 '(:days "%dd " :hours "%d" :require-hours t :minutes ":%02d" :require-minutes t)
3065 "The format string used when creating CLOCKSUM lines.
3066 This is also used when Org mode generates a time duration.
3068 The value can be a single format string containing two
3069 %-sequences, which will be filled with the number of hours and
3070 minutes in that order.
3072 Alternatively, the value can be a plist associating any of the
3073 keys :years, :months, :weeks, :days, :hours or :minutes with
3074 format strings. The time duration is formatted using only the
3075 time components that are needed and concatenating the results.
3076 If a time unit in absent, it falls back to the next smallest
3077 unit.
3079 The keys :require-years, :require-months, :require-days,
3080 :require-weeks, :require-hours, :require-minutes are also
3081 meaningful. A non-nil value for these keys indicates that the
3082 corresponding time component should always be included, even if
3083 its value is 0.
3086 For example,
3088 \(:days \"%dd\" :hours \"%d\" :require-hours t :minutes \":%02d\"
3089 :require-minutes t)
3091 means durations longer than a day will be expressed in days,
3092 hours and minutes, and durations less than a day will always be
3093 expressed in hours and minutes (even for durations less than an
3094 hour).
3096 The value
3098 \(:days \"%dd\" :minutes \"%dm\")
3100 means durations longer than a day will be expressed in days and
3101 minutes, and durations less than a day will be expressed entirely
3102 in minutes (even for durations longer than an hour)."
3103 :group 'org-time
3104 :group 'org-clock
3105 :version "24.4"
3106 :package-version '(Org . "8.0")
3107 :type '(choice (string :tag "Format string")
3108 (set :tag "Plist"
3109 (group :inline t (const :tag "Years" :years)
3110 (string :tag "Format string"))
3111 (group :inline t
3112 (const :tag "Always show years" :require-years)
3113 (const t))
3114 (group :inline t (const :tag "Months" :months)
3115 (string :tag "Format string"))
3116 (group :inline t
3117 (const :tag "Always show months" :require-months)
3118 (const t))
3119 (group :inline t (const :tag "Weeks" :weeks)
3120 (string :tag "Format string"))
3121 (group :inline t
3122 (const :tag "Always show weeks" :require-weeks)
3123 (const t))
3124 (group :inline t (const :tag "Days" :days)
3125 (string :tag "Format string"))
3126 (group :inline t
3127 (const :tag "Always show days" :require-days)
3128 (const t))
3129 (group :inline t (const :tag "Hours" :hours)
3130 (string :tag "Format string"))
3131 (group :inline t
3132 (const :tag "Always show hours" :require-hours)
3133 (const t))
3134 (group :inline t (const :tag "Minutes" :minutes)
3135 (string :tag "Format string"))
3136 (group :inline t
3137 (const :tag "Always show minutes" :require-minutes)
3138 (const t)))))
3140 (defcustom org-time-clocksum-use-fractional nil
3141 "When non-nil, \\[org-clock-display] uses fractional times.
3142 See `org-time-clocksum-format' for more on time clock formats."
3143 :group 'org-time
3144 :group 'org-clock
3145 :version "24.3"
3146 :type 'boolean)
3148 (defcustom org-time-clocksum-use-effort-durations nil
3149 "When non-nil, \\[org-clock-display] uses effort durations.
3150 E.g. by default, one day is considered to be a 8 hours effort,
3151 so a task that has been clocked for 16 hours will be displayed
3152 as during 2 days in the clock display or in the clocktable.
3154 See `org-effort-durations' on how to set effort durations
3155 and `org-time-clocksum-format' for more on time clock formats."
3156 :group 'org-time
3157 :group 'org-clock
3158 :version "24.4"
3159 :package-version '(Org . "8.0")
3160 :type 'boolean)
3162 (defcustom org-time-clocksum-fractional-format "%.2f"
3163 "The format string used when creating CLOCKSUM lines,
3164 or when Org mode generates a time duration, if
3165 `org-time-clocksum-use-fractional' is enabled.
3167 The value can be a single format string containing one
3168 %-sequence, which will be filled with the number of hours as
3169 a float.
3171 Alternatively, the value can be a plist associating any of the
3172 keys :years, :months, :weeks, :days, :hours or :minutes with
3173 a format string. The time duration is formatted using the
3174 largest time unit which gives a non-zero integer part. If all
3175 specified formats have zero integer part, the smallest time unit
3176 is used."
3177 :group 'org-time
3178 :type '(choice (string :tag "Format string")
3179 (set (group :inline t (const :tag "Years" :years)
3180 (string :tag "Format string"))
3181 (group :inline t (const :tag "Months" :months)
3182 (string :tag "Format string"))
3183 (group :inline t (const :tag "Weeks" :weeks)
3184 (string :tag "Format string"))
3185 (group :inline t (const :tag "Days" :days)
3186 (string :tag "Format string"))
3187 (group :inline t (const :tag "Hours" :hours)
3188 (string :tag "Format string"))
3189 (group :inline t (const :tag "Minutes" :minutes)
3190 (string :tag "Format string")))))
3192 (defcustom org-deadline-warning-days 14
3193 "Number of days before expiration during which a deadline becomes active.
3194 This variable governs the display in sparse trees and in the agenda.
3195 When 0 or negative, it means use this number (the absolute value of it)
3196 even if a deadline has a different individual lead time specified.
3198 Custom commands can set this variable in the options section."
3199 :group 'org-time
3200 :group 'org-agenda-daily/weekly
3201 :type 'integer)
3203 (defcustom org-scheduled-delay-days 0
3204 "Number of days before a scheduled item becomes active.
3205 This variable governs the display in sparse trees and in the agenda.
3206 The default value (i.e. 0) means: don't delay scheduled item.
3207 When negative, it means use this number (the absolute value of it)
3208 even if a scheduled item has a different individual delay time
3209 specified.
3211 Custom commands can set this variable in the options section."
3212 :group 'org-time
3213 :group 'org-agenda-daily/weekly
3214 :version "24.4"
3215 :package-version '(Org . "8.0")
3216 :type 'integer)
3218 (defcustom org-read-date-prefer-future t
3219 "Non-nil means assume future for incomplete date input from user.
3220 This affects the following situations:
3221 1. The user gives a month but not a year.
3222 For example, if it is April and you enter \"feb 2\", this will be read
3223 as Feb 2, *next* year. \"May 5\", however, will be this year.
3224 2. The user gives a day, but no month.
3225 For example, if today is the 15th, and you enter \"3\", Org-mode will
3226 read this as the third of *next* month. However, if you enter \"17\",
3227 it will be considered as *this* month.
3229 If you set this variable to the symbol `time', then also the following
3230 will work:
3232 3. If the user gives a time.
3233 If the time is before now, it will be interpreted as tomorrow.
3235 Currently none of this works for ISO week specifications.
3237 When this option is nil, the current day, month and year will always be
3238 used as defaults.
3240 See also `org-agenda-jump-prefer-future'."
3241 :group 'org-time
3242 :type '(choice
3243 (const :tag "Never" nil)
3244 (const :tag "Check month and day" t)
3245 (const :tag "Check month, day, and time" time)))
3247 (defcustom org-agenda-jump-prefer-future 'org-read-date-prefer-future
3248 "Should the agenda jump command prefer the future for incomplete dates?
3249 The default is to do the same as configured in `org-read-date-prefer-future'.
3250 But you can also set a deviating value here.
3251 This may t or nil, or the symbol `org-read-date-prefer-future'."
3252 :group 'org-agenda
3253 :group 'org-time
3254 :version "24.1"
3255 :type '(choice
3256 (const :tag "Use org-read-date-prefer-future"
3257 org-read-date-prefer-future)
3258 (const :tag "Never" nil)
3259 (const :tag "Always" t)))
3261 (defcustom org-read-date-force-compatible-dates t
3262 "Should date/time prompt force dates that are guaranteed to work in Emacs?
3264 Depending on the system Emacs is running on, certain dates cannot
3265 be represented with the type used internally to represent time.
3266 Dates between 1970-1-1 and 2038-1-1 can always be represented
3267 correctly. Some systems allow for earlier dates, some for later,
3268 some for both. One way to find out it to insert any date into an
3269 Org buffer, putting the cursor on the year and hitting S-up and
3270 S-down to test the range.
3272 When this variable is set to t, the date/time prompt will not let
3273 you specify dates outside the 1970-2037 range, so it is certain that
3274 these dates will work in whatever version of Emacs you are
3275 running, and also that you can move a file from one Emacs implementation
3276 to another. WHenever Org is forcing the year for you, it will display
3277 a message and beep.
3279 When this variable is nil, Org will check if the date is
3280 representable in the specific Emacs implementation you are using.
3281 If not, it will force a year, usually the current year, and beep
3282 to remind you. Currently this setting is not recommended because
3283 the likelihood that you will open your Org files in an Emacs that
3284 has limited date range is not negligible.
3286 A workaround for this problem is to use diary sexp dates for time
3287 stamps outside of this range."
3288 :group 'org-time
3289 :version "24.1"
3290 :type 'boolean)
3292 (defcustom org-read-date-display-live t
3293 "Non-nil means display current interpretation of date prompt live.
3294 This display will be in an overlay, in the minibuffer."
3295 :group 'org-time
3296 :type 'boolean)
3298 (defcustom org-read-date-popup-calendar t
3299 "Non-nil means pop up a calendar when prompting for a date.
3300 In the calendar, the date can be selected with mouse-1. However, the
3301 minibuffer will also be active, and you can simply enter the date as well.
3302 When nil, only the minibuffer will be available."
3303 :group 'org-time
3304 :type 'boolean)
3305 (org-defvaralias 'org-popup-calendar-for-date-prompt
3306 'org-read-date-popup-calendar)
3308 (make-obsolete-variable
3309 'org-read-date-minibuffer-setup-hook
3310 "Set `org-read-date-minibuffer-local-map' instead." "24.4")
3311 (defcustom org-read-date-minibuffer-setup-hook nil
3312 "Hook to be used to set up keys for the date/time interface.
3313 Add key definitions to `minibuffer-local-map', which will be a
3314 temporary copy.
3316 WARNING: This option is obsolete, you should use
3317 `org-read-date-minibuffer-local-map' to set up keys."
3318 :group 'org-time
3319 :type 'hook)
3321 (defcustom org-extend-today-until 0
3322 "The hour when your day really ends. Must be an integer.
3323 This has influence for the following applications:
3324 - When switching the agenda to \"today\". It it is still earlier than
3325 the time given here, the day recognized as TODAY is actually yesterday.
3326 - When a date is read from the user and it is still before the time given
3327 here, the current date and time will be assumed to be yesterday, 23:59.
3328 Also, timestamps inserted in capture templates follow this rule.
3330 IMPORTANT: This is a feature whose implementation is and likely will
3331 remain incomplete. Really, it is only here because past midnight seems to
3332 be the favorite working time of John Wiegley :-)"
3333 :group 'org-time
3334 :type 'integer)
3336 (defcustom org-use-effective-time nil
3337 "If non-nil, consider `org-extend-today-until' when creating timestamps.
3338 For example, if `org-extend-today-until' is 8, and it's 4am, then the
3339 \"effective time\" of any timestamps between midnight and 8am will be
3340 23:59 of the previous day."
3341 :group 'org-time
3342 :version "24.1"
3343 :type 'boolean)
3345 (defcustom org-use-last-clock-out-time-as-effective-time nil
3346 "When non-nil, use the last clock out time for `org-todo'.
3347 Note that this option has precedence over the combined use of
3348 `org-use-effective-time' and `org-extend-today-until'."
3349 :group 'org-time
3350 :version "24.4"
3351 :package-version '(Org . "8.0")
3352 :type 'boolean)
3354 (defcustom org-edit-timestamp-down-means-later nil
3355 "Non-nil means S-down will increase the time in a time stamp.
3356 When nil, S-up will increase."
3357 :group 'org-time
3358 :type 'boolean)
3360 (defcustom org-calendar-follow-timestamp-change t
3361 "Non-nil means make the calendar window follow timestamp changes.
3362 When a timestamp is modified and the calendar window is visible, it will be
3363 moved to the new date."
3364 :group 'org-time
3365 :type 'boolean)
3367 (defgroup org-tags nil
3368 "Options concerning tags in Org-mode."
3369 :tag "Org Tags"
3370 :group 'org)
3372 (defcustom org-tag-alist nil
3373 "List of tags allowed in Org-mode files.
3374 When this list is nil, Org-mode will base TAG input on what is already in the
3375 buffer.
3376 The value of this variable is an alist, the car of each entry must be a
3377 keyword as a string, the cdr may be a character that is used to select
3378 that tag through the fast-tag-selection interface.
3379 See the manual for details."
3380 :group 'org-tags
3381 :type '(repeat
3382 (choice
3383 (cons (string :tag "Tag name")
3384 (character :tag "Access char"))
3385 (list :tag "Start radio group"
3386 (const :startgroup)
3387 (option (string :tag "Group description")))
3388 (list :tag "Group tags delimiter"
3389 (const :grouptags))
3390 (list :tag "End radio group"
3391 (const :endgroup)
3392 (option (string :tag "Group description")))
3393 (const :tag "New line" (:newline)))))
3395 (defcustom org-tag-persistent-alist nil
3396 "List of tags that will always appear in all Org-mode files.
3397 This is in addition to any in buffer settings or customizations
3398 of `org-tag-alist'.
3399 When this list is nil, Org-mode will base TAG input on `org-tag-alist'.
3400 The value of this variable is an alist, the car of each entry must be a
3401 keyword as a string, the cdr may be a character that is used to select
3402 that tag through the fast-tag-selection interface.
3403 See the manual for details.
3404 To disable these tags on a per-file basis, insert anywhere in the file:
3405 #+STARTUP: noptag"
3406 :group 'org-tags
3407 :type '(repeat
3408 (choice
3409 (cons (string :tag "Tag name")
3410 (character :tag "Access char"))
3411 (const :tag "Start radio group" (:startgroup))
3412 (const :tag "Group tags delimiter" (:grouptags))
3413 (const :tag "End radio group" (:endgroup))
3414 (const :tag "New line" (:newline)))))
3416 (defcustom org-complete-tags-always-offer-all-agenda-tags nil
3417 "If non-nil, always offer completion for all tags of all agenda files.
3418 Instead of customizing this variable directly, you might want to
3419 set it locally for capture buffers, because there no list of
3420 tags in that file can be created dynamically (there are none).
3422 (add-hook 'org-capture-mode-hook
3423 (lambda ()
3424 (set (make-local-variable
3425 'org-complete-tags-always-offer-all-agenda-tags)
3426 t)))"
3427 :group 'org-tags
3428 :version "24.1"
3429 :type 'boolean)
3431 (defvar org-file-tags nil
3432 "List of tags that can be inherited by all entries in the file.
3433 The tags will be inherited if the variable `org-use-tag-inheritance'
3434 says they should be.
3435 This variable is populated from #+FILETAGS lines.")
3437 (defcustom org-use-fast-tag-selection 'auto
3438 "Non-nil means use fast tag selection scheme.
3439 This is a special interface to select and deselect tags with single keys.
3440 When nil, fast selection is never used.
3441 When the symbol `auto', fast selection is used if and only if selection
3442 characters for tags have been configured, either through the variable
3443 `org-tag-alist' or through a #+TAGS line in the buffer.
3444 When t, fast selection is always used and selection keys are assigned
3445 automatically if necessary."
3446 :group 'org-tags
3447 :type '(choice
3448 (const :tag "Always" t)
3449 (const :tag "Never" nil)
3450 (const :tag "When selection characters are configured" auto)))
3452 (defcustom org-fast-tag-selection-single-key nil
3453 "Non-nil means fast tag selection exits after first change.
3454 When nil, you have to press RET to exit it.
3455 During fast tag selection, you can toggle this flag with `C-c'.
3456 This variable can also have the value `expert'. In this case, the window
3457 displaying the tags menu is not even shown, until you press C-c again."
3458 :group 'org-tags
3459 :type '(choice
3460 (const :tag "No" nil)
3461 (const :tag "Yes" t)
3462 (const :tag "Expert" expert)))
3464 (defvar org-fast-tag-selection-include-todo nil
3465 "Non-nil means fast tags selection interface will also offer TODO states.
3466 This is an undocumented feature, you should not rely on it.")
3468 (defcustom org-tags-column (if (featurep 'xemacs) -76 -77)
3469 "The column to which tags should be indented in a headline.
3470 If this number is positive, it specifies the column. If it is negative,
3471 it means that the tags should be flushright to that column. For example,
3472 -80 works well for a normal 80 character screen.
3473 When 0, place tags directly after headline text, with only one space in
3474 between."
3475 :group 'org-tags
3476 :type 'integer)
3478 (defcustom org-auto-align-tags t
3479 "Non-nil keeps tags aligned when modifying headlines.
3480 Some operations (i.e. demoting) change the length of a headline and
3481 therefore shift the tags around. With this option turned on, after
3482 each such operation the tags are again aligned to `org-tags-column'."
3483 :group 'org-tags
3484 :type 'boolean)
3486 (defcustom org-use-tag-inheritance t
3487 "Non-nil means tags in levels apply also for sublevels.
3488 When nil, only the tags directly given in a specific line apply there.
3489 This may also be a list of tags that should be inherited, or a regexp that
3490 matches tags that should be inherited. Additional control is possible
3491 with the variable `org-tags-exclude-from-inheritance' which gives an
3492 explicit list of tags to be excluded from inheritance, even if the value of
3493 `org-use-tag-inheritance' would select it for inheritance.
3495 If this option is t, a match early-on in a tree can lead to a large
3496 number of matches in the subtree when constructing the agenda or creating
3497 a sparse tree. If you only want to see the first match in a tree during
3498 a search, check out the variable `org-tags-match-list-sublevels'."
3499 :group 'org-tags
3500 :type '(choice
3501 (const :tag "Not" nil)
3502 (const :tag "Always" t)
3503 (repeat :tag "Specific tags" (string :tag "Tag"))
3504 (regexp :tag "Tags matched by regexp")))
3506 (defcustom org-tags-exclude-from-inheritance nil
3507 "List of tags that should never be inherited.
3508 This is a way to exclude a few tags from inheritance. For way to do
3509 the opposite, to actively allow inheritance for selected tags,
3510 see the variable `org-use-tag-inheritance'."
3511 :group 'org-tags
3512 :type '(repeat (string :tag "Tag")))
3514 (defun org-tag-inherit-p (tag)
3515 "Check if TAG is one that should be inherited."
3516 (cond
3517 ((member tag org-tags-exclude-from-inheritance) nil)
3518 ((eq org-use-tag-inheritance t) t)
3519 ((not org-use-tag-inheritance) nil)
3520 ((stringp org-use-tag-inheritance)
3521 (string-match org-use-tag-inheritance tag))
3522 ((listp org-use-tag-inheritance)
3523 (member tag org-use-tag-inheritance))
3524 (t (error "Invalid setting of `org-use-tag-inheritance'"))))
3526 (defcustom org-tags-match-list-sublevels t
3527 "Non-nil means list also sublevels of headlines matching a search.
3528 This variable applies to tags/property searches, and also to stuck
3529 projects because this search is based on a tags match as well.
3531 When set to the symbol `indented', sublevels are indented with
3532 leading dots.
3534 Because of tag inheritance (see variable `org-use-tag-inheritance'),
3535 the sublevels of a headline matching a tag search often also match
3536 the same search. Listing all of them can create very long lists.
3537 Setting this variable to nil causes subtrees of a match to be skipped.
3539 This variable is semi-obsolete and probably should always be true. It
3540 is better to limit inheritance to certain tags using the variables
3541 `org-use-tag-inheritance' and `org-tags-exclude-from-inheritance'."
3542 :group 'org-tags
3543 :type '(choice
3544 (const :tag "No, don't list them" nil)
3545 (const :tag "Yes, do list them" t)
3546 (const :tag "List them, indented with leading dots" indented)))
3548 (defcustom org-tags-sort-function nil
3549 "When set, tags are sorted using this function as a comparator."
3550 :group 'org-tags
3551 :type '(choice
3552 (const :tag "No sorting" nil)
3553 (const :tag "Alphabetical" string<)
3554 (const :tag "Reverse alphabetical" string>)
3555 (function :tag "Custom function" nil)))
3557 (defvar org-tags-history nil
3558 "History of minibuffer reads for tags.")
3559 (defvar org-last-tags-completion-table nil
3560 "The last used completion table for tags.")
3561 (defvar org-after-tags-change-hook nil
3562 "Hook that is run after the tags in a line have changed.")
3564 (defgroup org-properties nil
3565 "Options concerning properties in Org-mode."
3566 :tag "Org Properties"
3567 :group 'org)
3569 (defcustom org-property-format "%-10s %s"
3570 "How property key/value pairs should be formatted by `indent-line'.
3571 When `indent-line' hits a property definition, it will format the line
3572 according to this format, mainly to make sure that the values are
3573 lined-up with respect to each other."
3574 :group 'org-properties
3575 :type 'string)
3577 (defcustom org-properties-postprocess-alist nil
3578 "Alist of properties and functions to adjust inserted values.
3579 Elements of this alist must be of the form
3581 ([string] [function])
3583 where [string] must be a property name and [function] must be a
3584 lambda expression: this lambda expression must take one argument,
3585 the value to adjust, and return the new value as a string.
3587 For example, this element will allow the property \"Remaining\"
3588 to be updated wrt the relation between the \"Effort\" property
3589 and the clock summary:
3591 ((\"Remaining\" (lambda(value)
3592 (let ((clocksum (org-clock-sum-current-item))
3593 (effort (org-duration-string-to-minutes
3594 (org-entry-get (point) \"Effort\"))))
3595 (org-minutes-to-clocksum-string (- effort clocksum))))))"
3596 :group 'org-properties
3597 :version "24.1"
3598 :type '(alist :key-type (string :tag "Property")
3599 :value-type (function :tag "Function")))
3601 (defcustom org-use-property-inheritance nil
3602 "Non-nil means properties apply also for sublevels.
3604 This setting is chiefly used during property searches. Turning it on can
3605 cause significant overhead when doing a search, which is why it is not
3606 on by default.
3608 When nil, only the properties directly given in the current entry count.
3609 When t, every property is inherited. The value may also be a list of
3610 properties that should have inheritance, or a regular expression matching
3611 properties that should be inherited.
3613 However, note that some special properties use inheritance under special
3614 circumstances (not in searches). Examples are CATEGORY, ARCHIVE, COLUMNS,
3615 and the properties ending in \"_ALL\" when they are used as descriptor
3616 for valid values of a property.
3618 Note for programmers:
3619 When querying an entry with `org-entry-get', you can control if inheritance
3620 should be used. By default, `org-entry-get' looks only at the local
3621 properties. You can request inheritance by setting the inherit argument
3622 to t (to force inheritance) or to `selective' (to respect the setting
3623 in this variable)."
3624 :group 'org-properties
3625 :type '(choice
3626 (const :tag "Not" nil)
3627 (const :tag "Always" t)
3628 (repeat :tag "Specific properties" (string :tag "Property"))
3629 (regexp :tag "Properties matched by regexp")))
3631 (defun org-property-inherit-p (property)
3632 "Check if PROPERTY is one that should be inherited."
3633 (cond
3634 ((eq org-use-property-inheritance t) t)
3635 ((not org-use-property-inheritance) nil)
3636 ((stringp org-use-property-inheritance)
3637 (string-match org-use-property-inheritance property))
3638 ((listp org-use-property-inheritance)
3639 (member property org-use-property-inheritance))
3640 (t (error "Invalid setting of `org-use-property-inheritance'"))))
3642 (defcustom org-columns-default-format "%25ITEM %TODO %3PRIORITY %TAGS"
3643 "The default column format, if no other format has been defined.
3644 This variable can be set on the per-file basis by inserting a line
3646 #+COLUMNS: %25ITEM ....."
3647 :group 'org-properties
3648 :type 'string)
3650 (defcustom org-columns-ellipses ".."
3651 "The ellipses to be used when a field in column view is truncated.
3652 When this is the empty string, as many characters as possible are shown,
3653 but then there will be no visual indication that the field has been truncated.
3654 When this is a string of length N, the last N characters of a truncated
3655 field are replaced by this string. If the column is narrower than the
3656 ellipses string, only part of the ellipses string will be shown."
3657 :group 'org-properties
3658 :type 'string)
3660 (defcustom org-columns-modify-value-for-display-function nil
3661 "Function that modifies values for display in column view.
3662 For example, it can be used to cut out a certain part from a time stamp.
3663 The function must take 2 arguments:
3665 column-title The title of the column (*not* the property name)
3666 value The value that should be modified.
3668 The function should return the value that should be displayed,
3669 or nil if the normal value should be used."
3670 :group 'org-properties
3671 :type '(choice (const nil) (function)))
3673 (defconst org-global-properties-fixed
3674 '(("VISIBILITY_ALL" . "folded children content all")
3675 ("CLOCK_MODELINE_TOTAL_ALL" . "current today repeat all auto"))
3676 "List of property/value pairs that can be inherited by any entry.
3678 These are fixed values, for the preset properties. The user variable
3679 that can be used to add to this list is `org-global-properties'.
3681 The entries in this list are cons cells where the car is a property
3682 name and cdr is a string with the value. If the value represents
3683 multiple items like an \"_ALL\" property, separate the items by
3684 spaces.")
3686 (defcustom org-global-properties nil
3687 "List of property/value pairs that can be inherited by any entry.
3689 This list will be combined with the constant `org-global-properties-fixed'.
3691 The entries in this list are cons cells where the car is a property
3692 name and cdr is a string with the value.
3694 You can set buffer-local values for the same purpose in the variable
3695 `org-file-properties' this by adding lines like
3697 #+PROPERTY: NAME VALUE"
3698 :group 'org-properties
3699 :type '(repeat
3700 (cons (string :tag "Property")
3701 (string :tag "Value"))))
3703 (defvar org-file-properties nil
3704 "List of property/value pairs that can be inherited by any entry.
3705 Valid for the current buffer.
3706 This variable is populated from #+PROPERTY lines.")
3707 (make-variable-buffer-local 'org-file-properties)
3709 (defgroup org-agenda nil
3710 "Options concerning agenda views in Org-mode."
3711 :tag "Org Agenda"
3712 :group 'org)
3714 (defvar org-category nil
3715 "Variable used by org files to set a category for agenda display.
3716 Such files should use a file variable to set it, for example
3718 # -*- mode: org; org-category: \"ELisp\"
3720 or contain a special line
3722 #+CATEGORY: ELisp
3724 If the file does not specify a category, then file's base name
3725 is used instead.")
3726 (make-variable-buffer-local 'org-category)
3727 (put 'org-category 'safe-local-variable #'(lambda (x) (or (symbolp x) (stringp x))))
3729 (defcustom org-agenda-files nil
3730 "The files to be used for agenda display.
3731 Entries may be added to this list with \\[org-agenda-file-to-front] and removed with
3732 \\[org-remove-file]. You can also use customize to edit the list.
3734 If an entry is a directory, all files in that directory that are matched by
3735 `org-agenda-file-regexp' will be part of the file list.
3737 If the value of the variable is not a list but a single file name, then
3738 the list of agenda files is actually stored and maintained in that file, one
3739 agenda file per line. In this file paths can be given relative to
3740 `org-directory'. Tilde expansion and environment variable substitution
3741 are also made."
3742 :group 'org-agenda
3743 :type '(choice
3744 (repeat :tag "List of files and directories" file)
3745 (file :tag "Store list in a file\n" :value "~/.agenda_files")))
3747 (defcustom org-agenda-file-regexp "\\`[^.].*\\.org\\'"
3748 "Regular expression to match files for `org-agenda-files'.
3749 If any element in the list in that variable contains a directory instead
3750 of a normal file, all files in that directory that are matched by this
3751 regular expression will be included."
3752 :group 'org-agenda
3753 :type 'regexp)
3755 (defcustom org-agenda-text-search-extra-files nil
3756 "List of extra files to be searched by text search commands.
3757 These files will be searched in addition to the agenda files by the
3758 commands `org-search-view' (`C-c a s') and `org-occur-in-agenda-files'.
3759 Note that these files will only be searched for text search commands,
3760 not for the other agenda views like todo lists, tag searches or the weekly
3761 agenda. This variable is intended to list notes and possibly archive files
3762 that should also be searched by these two commands.
3763 In fact, if the first element in the list is the symbol `agenda-archives',
3764 then all archive files of all agenda files will be added to the search
3765 scope."
3766 :group 'org-agenda
3767 :type '(set :greedy t
3768 (const :tag "Agenda Archives" agenda-archives)
3769 (repeat :inline t (file))))
3771 (org-defvaralias 'org-agenda-multi-occur-extra-files
3772 'org-agenda-text-search-extra-files)
3774 (defcustom org-agenda-skip-unavailable-files nil
3775 "Non-nil means to just skip non-reachable files in `org-agenda-files'.
3776 A nil value means to remove them, after a query, from the list."
3777 :group 'org-agenda
3778 :type 'boolean)
3780 (defcustom org-calendar-to-agenda-key [?c]
3781 "The key to be installed in `calendar-mode-map' for switching to the agenda.
3782 The command `org-calendar-goto-agenda' will be bound to this key. The
3783 default is the character `c' because then `c' can be used to switch back and
3784 forth between agenda and calendar."
3785 :group 'org-agenda
3786 :type 'sexp)
3788 (defcustom org-calendar-insert-diary-entry-key [?i]
3789 "The key to be installed in `calendar-mode-map' for adding diary entries.
3790 This option is irrelevant until `org-agenda-diary-file' has been configured
3791 to point to an Org-mode file. When that is the case, the command
3792 `org-agenda-diary-entry' will be bound to the key given here, by default
3793 `i'. In the calendar, `i' normally adds entries to `diary-file'. So
3794 if you want to continue doing this, you need to change this to a different
3795 key."
3796 :group 'org-agenda
3797 :type 'sexp)
3799 (defcustom org-agenda-diary-file 'diary-file
3800 "File to which to add new entries with the `i' key in agenda and calendar.
3801 When this is the symbol `diary-file', the functionality in the Emacs
3802 calendar will be used to add entries to the `diary-file'. But when this
3803 points to a file, `org-agenda-diary-entry' will be used instead."
3804 :group 'org-agenda
3805 :type '(choice
3806 (const :tag "The standard Emacs diary file" diary-file)
3807 (file :tag "Special Org file diary entries")))
3809 (eval-after-load "calendar"
3810 '(progn
3811 (org-defkey calendar-mode-map org-calendar-to-agenda-key
3812 'org-calendar-goto-agenda)
3813 (add-hook 'calendar-mode-hook
3814 (lambda ()
3815 (unless (eq org-agenda-diary-file 'diary-file)
3816 (define-key calendar-mode-map
3817 org-calendar-insert-diary-entry-key
3818 'org-agenda-diary-entry))))))
3820 (defgroup org-latex nil
3821 "Options for embedding LaTeX code into Org-mode."
3822 :tag "Org LaTeX"
3823 :group 'org)
3825 (defcustom org-format-latex-options
3826 '(:foreground default :background default :scale 1.0
3827 :html-foreground "Black" :html-background "Transparent"
3828 :html-scale 1.0 :matchers ("begin" "$1" "$" "$$" "\\(" "\\["))
3829 "Options for creating images from LaTeX fragments.
3830 This is a property list with the following properties:
3831 :foreground the foreground color for images embedded in Emacs, e.g. \"Black\".
3832 `default' means use the foreground of the default face.
3833 `auto' means use the foreground from the text face.
3834 :background the background color, or \"Transparent\".
3835 `default' means use the background of the default face.
3836 `auto' means use the background from the text face.
3837 :scale a scaling factor for the size of the images, to get more pixels
3838 :html-foreground, :html-background, :html-scale
3839 the same numbers for HTML export.
3840 :matchers a list indicating which matchers should be used to
3841 find LaTeX fragments. Valid members of this list are:
3842 \"begin\" find environments
3843 \"$1\" find single characters surrounded by $.$
3844 \"$\" find math expressions surrounded by $...$
3845 \"$$\" find math expressions surrounded by $$....$$
3846 \"\\(\" find math expressions surrounded by \\(...\\)
3847 \"\\ [\" find math expressions surrounded by \\ [...\\]"
3848 :group 'org-latex
3849 :type 'plist)
3851 (defcustom org-format-latex-signal-error t
3852 "Non-nil means signal an error when image creation of LaTeX snippets fails.
3853 When nil, just push out a message."
3854 :group 'org-latex
3855 :version "24.1"
3856 :type 'boolean)
3858 (defcustom org-latex-to-mathml-jar-file nil
3859 "Value of\"%j\" in `org-latex-to-mathml-convert-command'.
3860 Use this to specify additional executable file say a jar file.
3862 When using MathToWeb as the converter, specify the full-path to
3863 your mathtoweb.jar file."
3864 :group 'org-latex
3865 :version "24.1"
3866 :type '(choice
3867 (const :tag "None" nil)
3868 (file :tag "JAR file" :must-match t)))
3870 (defcustom org-latex-to-mathml-convert-command nil
3871 "Command to convert LaTeX fragments to MathML.
3872 Replace format-specifiers in the command as noted below and use
3873 `shell-command' to convert LaTeX to MathML.
3874 %j: Executable file in fully expanded form as specified by
3875 `org-latex-to-mathml-jar-file'.
3876 %I: Input LaTeX file in fully expanded form
3877 %o: Output MathML file
3878 This command is used by `org-create-math-formula'.
3880 When using MathToWeb as the converter, set this to
3881 \"java -jar %j -unicode -force -df %o %I\"."
3882 :group 'org-latex
3883 :version "24.1"
3884 :type '(choice
3885 (const :tag "None" nil)
3886 (string :tag "\nShell command")))
3888 (defcustom org-latex-create-formula-image-program 'dvipng
3889 "Program to convert LaTeX fragments with.
3891 dvipng Process the LaTeX fragments to dvi file, then convert
3892 dvi files to png files using dvipng.
3893 This will also include processing of non-math environments.
3894 imagemagick Convert the LaTeX fragments to pdf files and use imagemagick
3895 to convert pdf files to png files"
3896 :group 'org-latex
3897 :version "24.1"
3898 :type '(choice
3899 (const :tag "dvipng" dvipng)
3900 (const :tag "imagemagick" imagemagick)))
3902 (defcustom org-latex-preview-ltxpng-directory "ltxpng/"
3903 "Path to store latex preview images.
3904 A relative path here creates many directories relative to the
3905 processed org files paths. An absolute path puts all preview
3906 images at the same place."
3907 :group 'org-latex
3908 :version "24.3"
3909 :type 'string)
3911 (defun org-format-latex-mathml-available-p ()
3912 "Return t if `org-latex-to-mathml-convert-command' is usable."
3913 (save-match-data
3914 (when (and (boundp 'org-latex-to-mathml-convert-command)
3915 org-latex-to-mathml-convert-command)
3916 (let ((executable (car (split-string
3917 org-latex-to-mathml-convert-command))))
3918 (when (executable-find executable)
3919 (if (string-match
3920 "%j" org-latex-to-mathml-convert-command)
3921 (file-readable-p org-latex-to-mathml-jar-file)
3922 t))))))
3924 (defcustom org-format-latex-header "\\documentclass{article}
3925 \\usepackage[usenames]{color}
3926 \[PACKAGES]
3927 \[DEFAULT-PACKAGES]
3928 \\pagestyle{empty} % do not remove
3929 % The settings below are copied from fullpage.sty
3930 \\setlength{\\textwidth}{\\paperwidth}
3931 \\addtolength{\\textwidth}{-3cm}
3932 \\setlength{\\oddsidemargin}{1.5cm}
3933 \\addtolength{\\oddsidemargin}{-2.54cm}
3934 \\setlength{\\evensidemargin}{\\oddsidemargin}
3935 \\setlength{\\textheight}{\\paperheight}
3936 \\addtolength{\\textheight}{-\\headheight}
3937 \\addtolength{\\textheight}{-\\headsep}
3938 \\addtolength{\\textheight}{-\\footskip}
3939 \\addtolength{\\textheight}{-3cm}
3940 \\setlength{\\topmargin}{1.5cm}
3941 \\addtolength{\\topmargin}{-2.54cm}"
3942 "The document header used for processing LaTeX fragments.
3943 It is imperative that this header make sure that no page number
3944 appears on the page. The package defined in the variables
3945 `org-latex-default-packages-alist' and `org-latex-packages-alist'
3946 will either replace the placeholder \"[PACKAGES]\" in this
3947 header, or they will be appended."
3948 :group 'org-latex
3949 :type 'string)
3951 (defun org-set-packages-alist (var val)
3952 "Set the packages alist and make sure it has 3 elements per entry."
3953 (set var (mapcar (lambda (x)
3954 (if (and (consp x) (= (length x) 2))
3955 (list (car x) (nth 1 x) t)
3957 val)))
3959 (defun org-get-packages-alist (var)
3960 "Get the packages alist and make sure it has 3 elements per entry."
3961 (mapcar (lambda (x)
3962 (if (and (consp x) (= (length x) 2))
3963 (list (car x) (nth 1 x) t)
3965 (default-value var)))
3967 (defcustom org-latex-default-packages-alist
3968 '(("AUTO" "inputenc" t)
3969 ("T1" "fontenc" t)
3970 ("" "fixltx2e" nil)
3971 ("" "graphicx" t)
3972 ("" "longtable" nil)
3973 ("" "float" nil)
3974 ("" "wrapfig" nil)
3975 ("" "rotating" nil)
3976 ("normalem" "ulem" t)
3977 ("" "amsmath" t)
3978 ("" "textcomp" t)
3979 ("" "marvosym" t)
3980 ("" "wasysym" t)
3981 ("" "amssymb" t)
3982 ("" "hyperref" nil)
3983 "\\tolerance=1000")
3984 "Alist of default packages to be inserted in the header.
3986 Change this only if one of the packages here causes an
3987 incompatibility with another package you are using.
3989 The packages in this list are needed by one part or another of
3990 Org mode to function properly:
3992 - inputenc, fontenc: for basic font and character selection
3993 - fixltx2e: Important patches of LaTeX itself
3994 - graphicx: for including images
3995 - longtable: For multipage tables
3996 - float, wrapfig: for figure placement
3997 - rotating: for sideways figures and tables
3998 - ulem: for underline and strike-through
3999 - amsmath: for subscript and superscript and math environments
4000 - textcomp, marvosymb, wasysym, amssymb: for various symbols used
4001 for interpreting the entities in `org-entities'. You can skip
4002 some of these packages if you don't use any of their symbols.
4003 - hyperref: for cross references
4005 Therefore you should not modify this variable unless you know
4006 what you are doing. The one reason to change it anyway is that
4007 you might be loading some other package that conflicts with one
4008 of the default packages. Each cell is of the format
4009 \( \"options\" \"package\" snippet-flag). If SNIPPET-FLAG is t,
4010 the package also needs to be included when compiling LaTeX
4011 snippets into images for inclusion into non-LaTeX output."
4012 :group 'org-latex
4013 :group 'org-export-latex
4014 :set 'org-set-packages-alist
4015 :get 'org-get-packages-alist
4016 :version "24.1"
4017 :type '(repeat
4018 (choice
4019 (list :tag "options/package pair"
4020 (string :tag "options")
4021 (string :tag "package")
4022 (boolean :tag "Snippet"))
4023 (string :tag "A line of LaTeX"))))
4025 (defcustom org-latex-packages-alist nil
4026 "Alist of packages to be inserted in every LaTeX header.
4028 These will be inserted after `org-latex-default-packages-alist'.
4029 Each cell is of the format:
4031 \(\"options\" \"package\" snippet-flag)
4033 SNIPPET-FLAG, when t, indicates that this package is also needed
4034 when turning LaTeX snippets into images for inclusion into
4035 non-LaTeX output.
4037 Make sure that you only list packages here which:
4039 - you want in every file
4040 - do not conflict with the setup in `org-format-latex-header'.
4041 - do not conflict with the default packages in
4042 `org-latex-default-packages-alist'."
4043 :group 'org-latex
4044 :group 'org-export-latex
4045 :set 'org-set-packages-alist
4046 :get 'org-get-packages-alist
4047 :type '(repeat
4048 (choice
4049 (list :tag "options/package pair"
4050 (string :tag "options")
4051 (string :tag "package")
4052 (boolean :tag "Snippet"))
4053 (string :tag "A line of LaTeX"))))
4055 (defgroup org-appearance nil
4056 "Settings for Org-mode appearance."
4057 :tag "Org Appearance"
4058 :group 'org)
4060 (defcustom org-level-color-stars-only nil
4061 "Non-nil means fontify only the stars in each headline.
4062 When nil, the entire headline is fontified.
4063 Changing it requires restart of `font-lock-mode' to become effective
4064 also in regions already fontified."
4065 :group 'org-appearance
4066 :type 'boolean)
4068 (defcustom org-hide-leading-stars nil
4069 "Non-nil means hide the first N-1 stars in a headline.
4070 This works by using the face `org-hide' for these stars. This
4071 face is white for a light background, and black for a dark
4072 background. You may have to customize the face `org-hide' to
4073 make this work.
4074 Changing it requires restart of `font-lock-mode' to become effective
4075 also in regions already fontified.
4076 You may also set this on a per-file basis by adding one of the following
4077 lines to the buffer:
4079 #+STARTUP: hidestars
4080 #+STARTUP: showstars"
4081 :group 'org-appearance
4082 :type 'boolean)
4084 (defcustom org-hidden-keywords nil
4085 "List of symbols corresponding to keywords to be hidden the org buffer.
4086 For example, a value '(title) for this list will make the document's title
4087 appear in the buffer without the initial #+TITLE: keyword."
4088 :group 'org-appearance
4089 :version "24.1"
4090 :type '(set (const :tag "#+AUTHOR" author)
4091 (const :tag "#+DATE" date)
4092 (const :tag "#+EMAIL" email)
4093 (const :tag "#+TITLE" title)))
4095 (defcustom org-custom-properties nil
4096 "List of properties (as strings) with a special meaning.
4097 The default use of these custom properties is to let the user
4098 hide them with `org-toggle-custom-properties-visibility'."
4099 :group 'org-properties
4100 :group 'org-appearance
4101 :version "24.3"
4102 :type '(repeat (string :tag "Property Name")))
4104 (defcustom org-fontify-done-headline nil
4105 "Non-nil means change the face of a headline if it is marked DONE.
4106 Normally, only the TODO/DONE keyword indicates the state of a headline.
4107 When this is non-nil, the headline after the keyword is set to the
4108 `org-headline-done' as an additional indication."
4109 :group 'org-appearance
4110 :type 'boolean)
4112 (defcustom org-fontify-emphasized-text t
4113 "Non-nil means fontify *bold*, /italic/ and _underlined_ text.
4114 Changing this variable requires a restart of Emacs to take effect."
4115 :group 'org-appearance
4116 :type 'boolean)
4118 (defcustom org-fontify-whole-heading-line nil
4119 "Non-nil means fontify the whole line for headings.
4120 This is useful when setting a background color for the
4121 org-level-* faces."
4122 :group 'org-appearance
4123 :type 'boolean)
4125 (defcustom org-highlight-latex-and-related nil
4126 "Non-nil means highlight LaTeX related syntax in the buffer.
4127 When non nil, the value should be a list containing any of the
4128 following symbols:
4129 `latex' Highlight LaTeX snippets and environments.
4130 `script' Highlight subscript and superscript.
4131 `entities' Highlight entities."
4132 :group 'org-appearance
4133 :version "24.4"
4134 :package-version '(Org . "8.0")
4135 :type '(choice
4136 (const :tag "No highlighting" nil)
4137 (set :greedy t :tag "Highlight"
4138 (const :tag "LaTeX snippets and environments" latex)
4139 (const :tag "Subscript and superscript" script)
4140 (const :tag "Entities" entities))))
4142 (defcustom org-hide-emphasis-markers nil
4143 "Non-nil mean font-lock should hide the emphasis marker characters."
4144 :group 'org-appearance
4145 :type 'boolean)
4147 (defcustom org-pretty-entities nil
4148 "Non-nil means show entities as UTF8 characters.
4149 When nil, the \\name form remains in the buffer."
4150 :group 'org-appearance
4151 :version "24.1"
4152 :type 'boolean)
4154 (defcustom org-pretty-entities-include-sub-superscripts t
4155 "Non-nil means, pretty entity display includes formatting sub/superscripts."
4156 :group 'org-appearance
4157 :version "24.1"
4158 :type 'boolean)
4160 (defvar org-emph-re nil
4161 "Regular expression for matching emphasis.
4162 After a match, the match groups contain these elements:
4163 0 The match of the full regular expression, including the characters
4164 before and after the proper match
4165 1 The character before the proper match, or empty at beginning of line
4166 2 The proper match, including the leading and trailing markers
4167 3 The leading marker like * or /, indicating the type of highlighting
4168 4 The text between the emphasis markers, not including the markers
4169 5 The character after the match, empty at the end of a line")
4170 (defvar org-verbatim-re nil
4171 "Regular expression for matching verbatim text.")
4172 (defvar org-emphasis-regexp-components) ; defined just below
4173 (defvar org-emphasis-alist) ; defined just below
4174 (defun org-set-emph-re (var val)
4175 "Set variable and compute the emphasis regular expression."
4176 (set var val)
4177 (when (and (boundp 'org-emphasis-alist)
4178 (boundp 'org-emphasis-regexp-components)
4179 org-emphasis-alist org-emphasis-regexp-components)
4180 (let* ((e org-emphasis-regexp-components)
4181 (pre (car e))
4182 (post (nth 1 e))
4183 (border (nth 2 e))
4184 (body (nth 3 e))
4185 (nl (nth 4 e))
4186 (body1 (concat body "*?"))
4187 (markers (mapconcat 'car org-emphasis-alist ""))
4188 (vmarkers (mapconcat
4189 (lambda (x) (if (eq (nth 2 x) 'verbatim) (car x) ""))
4190 org-emphasis-alist "")))
4191 ;; make sure special characters appear at the right position in the class
4192 (if (string-match "\\^" markers)
4193 (setq markers (concat (replace-match "" t t markers) "^")))
4194 (if (string-match "-" markers)
4195 (setq markers (concat (replace-match "" t t markers) "-")))
4196 (if (string-match "\\^" vmarkers)
4197 (setq vmarkers (concat (replace-match "" t t vmarkers) "^")))
4198 (if (string-match "-" vmarkers)
4199 (setq vmarkers (concat (replace-match "" t t vmarkers) "-")))
4200 (if (> nl 0)
4201 (setq body1 (concat body1 "\\(?:\n" body "*?\\)\\{0,"
4202 (int-to-string nl) "\\}")))
4203 ;; Make the regexp
4204 (setq org-emph-re
4205 (concat "\\([" pre "]\\|^\\)"
4206 "\\("
4207 "\\([" markers "]\\)"
4208 "\\("
4209 "[^" border "]\\|"
4210 "[^" border "]"
4211 body1
4212 "[^" border "]"
4213 "\\)"
4214 "\\3\\)"
4215 "\\([" post "]\\|$\\)"))
4216 (setq org-verbatim-re
4217 (concat "\\([" pre "]\\|^\\)"
4218 "\\("
4219 "\\([" vmarkers "]\\)"
4220 "\\("
4221 "[^" border "]\\|"
4222 "[^" border "]"
4223 body1
4224 "[^" border "]"
4225 "\\)"
4226 "\\3\\)"
4227 "\\([" post "]\\|$\\)")))))
4229 ;; This used to be a defcustom (Org <8.0) but allowing the users to
4230 ;; set this option proved cumbersome. See this message/thread:
4231 ;; http://article.gmane.org/gmane.emacs.orgmode/68681
4232 (defvar org-emphasis-regexp-components
4233 '(" \t('\"{" "- \t.,:!?;'\")}\\" " \t\r\n,\"'" "." 1)
4234 "Components used to build the regular expression for emphasis.
4235 This is a list with five entries. Terminology: In an emphasis string
4236 like \" *strong word* \", we call the initial space PREMATCH, the final
4237 space POSTMATCH, the stars MARKERS, \"s\" and \"d\" are BORDER characters
4238 and \"trong wor\" is the body. The different components in this variable
4239 specify what is allowed/forbidden in each part:
4241 pre Chars allowed as prematch. Beginning of line will be allowed too.
4242 post Chars allowed as postmatch. End of line will be allowed too.
4243 border The chars *forbidden* as border characters.
4244 body-regexp A regexp like \".\" to match a body character. Don't use
4245 non-shy groups here, and don't allow newline here.
4246 newline The maximum number of newlines allowed in an emphasis exp.
4248 You need to reload Org or to restart Emacs after customizing this.")
4250 (defcustom org-emphasis-alist
4251 `(("*" bold)
4252 ("/" italic)
4253 ("_" underline)
4254 ("=" org-code verbatim)
4255 ("~" org-verbatim verbatim)
4256 ("+" ,(if (featurep 'xemacs) 'org-table '(:strike-through t))))
4257 "Alist of characters and faces to emphasize text.
4258 Text starting and ending with a special character will be emphasized,
4259 for example *bold*, _underlined_ and /italic/. This variable sets the
4260 marker characters and the face to be used by font-lock for highlighting
4261 in Org-mode Emacs buffers.
4263 You need to reload Org or to restart Emacs after customizing this."
4264 :group 'org-appearance
4265 :set 'org-set-emph-re
4266 :version "24.4"
4267 :package-version '(Org . "8.0")
4268 :type '(repeat
4269 (list
4270 (string :tag "Marker character")
4271 (choice
4272 (face :tag "Font-lock-face")
4273 (plist :tag "Face property list"))
4274 (option (const verbatim)))))
4276 (defvar org-protecting-blocks
4277 '("src" "example" "latex" "ascii" "html" "ditaa" "dot" "r" "R")
4278 "Blocks that contain text that is quoted, i.e. not processed as Org syntax.
4279 This is needed for font-lock setup.")
4281 ;;; Miscellaneous options
4283 (defgroup org-completion nil
4284 "Completion in Org-mode."
4285 :tag "Org Completion"
4286 :group 'org)
4288 (defcustom org-completion-use-ido nil
4289 "Non-nil means use ido completion wherever possible.
4290 Note that `ido-mode' must be active for this variable to be relevant.
4291 If you decide to turn this variable on, you might well want to turn off
4292 `org-outline-path-complete-in-steps'.
4293 See also `org-completion-use-iswitchb'."
4294 :group 'org-completion
4295 :type 'boolean)
4297 (defcustom org-completion-use-iswitchb nil
4298 "Non-nil means use iswitchb completion wherever possible.
4299 Note that `iswitchb-mode' must be active for this variable to be relevant.
4300 If you decide to turn this variable on, you might well want to turn off
4301 `org-outline-path-complete-in-steps'.
4302 Note that this variable has only an effect if `org-completion-use-ido' is nil."
4303 :group 'org-completion
4304 :type 'boolean)
4306 (defcustom org-completion-fallback-command 'hippie-expand
4307 "The expansion command called by \\[pcomplete] in normal context.
4308 Normal means, no org-mode-specific context."
4309 :group 'org-completion
4310 :type 'function)
4312 ;;; Functions and variables from their packages
4313 ;; Declared here to avoid compiler warnings
4315 ;; XEmacs only
4316 (defvar outline-mode-menu-heading)
4317 (defvar outline-mode-menu-show)
4318 (defvar outline-mode-menu-hide)
4319 (defvar zmacs-regions) ; XEmacs regions
4321 ;; Emacs only
4322 (defvar mark-active)
4324 ;; Various packages
4325 (declare-function calendar-absolute-from-iso "cal-iso" (date))
4326 (declare-function calendar-forward-day "cal-move" (arg))
4327 (declare-function calendar-goto-date "cal-move" (date))
4328 (declare-function calendar-goto-today "cal-move" ())
4329 (declare-function calendar-iso-from-absolute "cal-iso" (date))
4330 (defvar calc-embedded-close-formula)
4331 (defvar calc-embedded-open-formula)
4332 (declare-function cdlatex-tab "ext:cdlatex" ())
4333 (declare-function cdlatex-compute-tables "ext:cdlatex" ())
4334 (declare-function dired-get-filename "dired" (&optional localp no-error-if-not-filep))
4335 (defvar font-lock-unfontify-region-function)
4336 (declare-function iswitchb-read-buffer "iswitchb"
4337 (prompt &optional default require-match start matches-set))
4338 (defvar iswitchb-temp-buflist)
4339 (declare-function org-gnus-follow-link "org-gnus" (&optional group article))
4340 (defvar org-agenda-tags-todo-honor-ignore-options)
4341 (declare-function org-agenda-skip "org-agenda" ())
4342 (declare-function
4343 org-agenda-format-item "org-agenda"
4344 (extra txt &optional level category tags dotime noprefix remove-re habitp))
4345 (declare-function org-agenda-new-marker "org-agenda" (&optional pos))
4346 (declare-function org-agenda-change-all-lines "org-agenda"
4347 (newhead hdmarker &optional fixface just-this))
4348 (declare-function org-agenda-set-restriction-lock "org-agenda" (&optional type))
4349 (declare-function org-agenda-maybe-redo "org-agenda" ())
4350 (declare-function org-agenda-save-markers-for-cut-and-paste "org-agenda"
4351 (beg end))
4352 (declare-function org-agenda-copy-local-variable "org-agenda" (var))
4353 (declare-function org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
4354 "org-agenda" (&optional end))
4355 (declare-function org-inlinetask-remove-END-maybe "org-inlinetask" ())
4356 (declare-function org-inlinetask-in-task-p "org-inlinetask" ())
4357 (declare-function org-inlinetask-goto-beginning "org-inlinetask" ())
4358 (declare-function org-inlinetask-goto-end "org-inlinetask" ())
4359 (declare-function org-indent-mode "org-indent" (&optional arg))
4360 (declare-function parse-time-string "parse-time" (string))
4361 (declare-function org-attach-reveal "org-attach" (&optional if-exists))
4362 (declare-function orgtbl-send-table "org-table" (&optional maybe))
4363 (defvar remember-data-file)
4364 (defvar texmathp-why)
4365 (declare-function speedbar-line-directory "speedbar" (&optional depth))
4366 (declare-function table--at-cell-p "table" (position &optional object at-column))
4368 ;;;###autoload
4369 (defun turn-on-orgtbl ()
4370 "Unconditionally turn on `orgtbl-mode'."
4371 (require 'org-table)
4372 (orgtbl-mode 1))
4374 (defun org-at-table-p (&optional table-type)
4375 "Return t if the cursor is inside an org-type table.
4376 If TABLE-TYPE is non-nil, also check for table.el-type tables."
4377 (if org-enable-table-editor
4378 (save-excursion
4379 (beginning-of-line 1)
4380 (looking-at (if table-type org-table-any-line-regexp
4381 org-table-line-regexp)))
4382 nil))
4383 (defsubst org-table-p () (org-at-table-p))
4385 (defun org-at-table.el-p ()
4386 "Return t if and only if we are at a table.el table."
4387 (and (org-at-table-p 'any)
4388 (save-excursion
4389 (goto-char (org-table-begin 'any))
4390 (looking-at org-table1-hline-regexp))))
4392 (defun org-table-recognize-table.el ()
4393 "If there is a table.el table nearby, recognize it and move into it."
4394 (if org-table-tab-recognizes-table.el
4395 (if (org-at-table.el-p)
4396 (progn
4397 (beginning-of-line 1)
4398 (if (looking-at org-table-dataline-regexp)
4400 (if (looking-at org-table1-hline-regexp)
4401 (progn
4402 (beginning-of-line 2)
4403 (if (looking-at org-table-any-border-regexp)
4404 (beginning-of-line -1)))))
4405 (if (re-search-forward "|" (org-table-end t) t)
4406 (progn
4407 (require 'table)
4408 (if (table--at-cell-p (point))
4410 (message "recognizing table.el table...")
4411 (table-recognize-table)
4412 (message "recognizing table.el table...done")))
4413 (error "This should not happen"))
4415 nil)
4416 nil))
4418 (defun org-at-table-hline-p ()
4419 "Return t if the cursor is inside a hline in a table."
4420 (if org-enable-table-editor
4421 (save-excursion
4422 (beginning-of-line 1)
4423 (looking-at org-table-hline-regexp))
4424 nil))
4426 (defun org-table-map-tables (function &optional quietly)
4427 "Apply FUNCTION to the start of all tables in the buffer."
4428 (save-excursion
4429 (save-restriction
4430 (widen)
4431 (goto-char (point-min))
4432 (while (re-search-forward org-table-any-line-regexp nil t)
4433 (unless quietly
4434 (message "Mapping tables: %d%%" (/ (* 100.0 (point)) (buffer-size))))
4435 (beginning-of-line 1)
4436 (when (and (looking-at org-table-line-regexp)
4437 ;; Exclude tables in src/example/verbatim/clocktable blocks
4438 (not (org-in-block-p '("src" "example" "verbatim" "clocktable"))))
4439 (save-excursion (funcall function))
4440 (or (looking-at org-table-line-regexp)
4441 (forward-char 1)))
4442 (re-search-forward org-table-any-border-regexp nil 1))))
4443 (unless quietly (message "Mapping tables: done")))
4445 (declare-function org-clock-save-markers-for-cut-and-paste "org-clock" (beg end))
4446 (declare-function org-clock-update-mode-line "org-clock" ())
4447 (declare-function org-resolve-clocks "org-clock"
4448 (&optional also-non-dangling-p prompt last-valid))
4450 (defun org-at-TBLFM-p (&optional pos)
4451 "Return t when point (or POS) is in #+TBLFM line."
4452 (save-excursion
4453 (let ((pos pos)))
4454 (goto-char (or pos (point)))
4455 (beginning-of-line 1)
4456 (looking-at org-TBLFM-regexp)))
4458 (defvar org-clock-start-time)
4459 (defvar org-clock-marker (make-marker)
4460 "Marker recording the last clock-in.")
4461 (defvar org-clock-hd-marker (make-marker)
4462 "Marker recording the last clock-in, but the headline position.")
4463 (defvar org-clock-heading ""
4464 "The heading of the current clock entry.")
4465 (defun org-clock-is-active ()
4466 "Return the buffer where the clock is currently running.
4467 Return nil if no clock is running."
4468 (marker-buffer org-clock-marker))
4470 (defun org-check-running-clock ()
4471 "Check if the current buffer contains the running clock.
4472 If yes, offer to stop it and to save the buffer with the changes."
4473 (when (and (equal (marker-buffer org-clock-marker) (current-buffer))
4474 (y-or-n-p (format "Clock-out in buffer %s before killing it? "
4475 (buffer-name))))
4476 (org-clock-out)
4477 (when (y-or-n-p "Save changed buffer?")
4478 (save-buffer))))
4480 (defun org-clocktable-try-shift (dir n)
4481 "Check if this line starts a clock table, if yes, shift the time block."
4482 (when (org-match-line "^[ \t]*#\\+BEGIN:[ \t]+clocktable\\>")
4483 (org-clocktable-shift dir n)))
4485 ;;;###autoload
4486 (defun org-clock-persistence-insinuate ()
4487 "Set up hooks for clock persistence."
4488 (require 'org-clock)
4489 (add-hook 'org-mode-hook 'org-clock-load)
4490 (add-hook 'kill-emacs-hook 'org-clock-save))
4492 ;; Define the variable already here, to make sure we have it.
4493 (defvar org-indent-mode nil
4494 "Non-nil if Org-Indent mode is enabled.
4495 Use the command `org-indent-mode' to change this variable.")
4497 ;; Autoload archiving code
4498 ;; The stuff that is needed for cycling and tags has to be defined here.
4500 (defgroup org-archive nil
4501 "Options concerning archiving in Org-mode."
4502 :tag "Org Archive"
4503 :group 'org-structure)
4505 (defcustom org-archive-location "%s_archive::"
4506 "The location where subtrees should be archived.
4508 The value of this variable is a string, consisting of two parts,
4509 separated by a double-colon. The first part is a filename and
4510 the second part is a headline.
4512 When the filename is omitted, archiving happens in the same file.
4513 %s in the filename will be replaced by the current file
4514 name (without the directory part). Archiving to a different file
4515 is useful to keep archived entries from contributing to the
4516 Org-mode Agenda.
4518 The archived entries will be filed as subtrees of the specified
4519 headline. When the headline is omitted, the subtrees are simply
4520 filed away at the end of the file, as top-level entries. Also in
4521 the heading you can use %s to represent the file name, this can be
4522 useful when using the same archive for a number of different files.
4524 Here are a few examples:
4525 \"%s_archive::\"
4526 If the current file is Projects.org, archive in file
4527 Projects.org_archive, as top-level trees. This is the default.
4529 \"::* Archived Tasks\"
4530 Archive in the current file, under the top-level headline
4531 \"* Archived Tasks\".
4533 \"~/org/archive.org::\"
4534 Archive in file ~/org/archive.org (absolute path), as top-level trees.
4536 \"~/org/archive.org::* From %s\"
4537 Archive in file ~/org/archive.org (absolute path), under headlines
4538 \"From FILENAME\" where file name is the current file name.
4540 \"~/org/datetree.org::datetree/* Finished Tasks\"
4541 The \"datetree/\" string is special, signifying to archive
4542 items to the datetree. Items are placed in either the CLOSED
4543 date of the item, or the current date if there is no CLOSED date.
4544 The heading will be a subentry to the current date. There doesn't
4545 need to be a heading, but there always needs to be a slash after
4546 datetree. For example, to store archived items directly in the
4547 datetree, use \"~/org/datetree.org::datetree/\".
4549 \"basement::** Finished Tasks\"
4550 Archive in file ./basement (relative path), as level 3 trees
4551 below the level 2 heading \"** Finished Tasks\".
4553 You may set this option on a per-file basis by adding to the buffer a
4554 line like
4556 #+ARCHIVE: basement::** Finished Tasks
4558 You may also define it locally for a subtree by setting an ARCHIVE property
4559 in the entry. If such a property is found in an entry, or anywhere up
4560 the hierarchy, it will be used."
4561 :group 'org-archive
4562 :type 'string)
4564 (defcustom org-agenda-skip-archived-trees t
4565 "Non-nil means the agenda will skip any items located in archived trees.
4566 An archived tree is a tree marked with the tag ARCHIVE. The use of this
4567 variable is no longer recommended, you should leave it at the value t.
4568 Instead, use the key `v' to cycle the archives-mode in the agenda."
4569 :group 'org-archive
4570 :group 'org-agenda-skip
4571 :type 'boolean)
4573 (defcustom org-columns-skip-archived-trees t
4574 "Non-nil means ignore archived trees when creating column view."
4575 :group 'org-archive
4576 :group 'org-properties
4577 :type 'boolean)
4579 (defcustom org-cycle-open-archived-trees nil
4580 "Non-nil means `org-cycle' will open archived trees.
4581 An archived tree is a tree marked with the tag ARCHIVE.
4582 When nil, archived trees will stay folded. You can still open them with
4583 normal outline commands like `show-all', but not with the cycling commands."
4584 :group 'org-archive
4585 :group 'org-cycle
4586 :type 'boolean)
4588 (defcustom org-sparse-tree-open-archived-trees nil
4589 "Non-nil means sparse tree construction shows matches in archived trees.
4590 When nil, matches in these trees are highlighted, but the trees are kept in
4591 collapsed state."
4592 :group 'org-archive
4593 :group 'org-sparse-trees
4594 :type 'boolean)
4596 (defcustom org-sparse-tree-default-date-type 'scheduled-or-deadline
4597 "The default date type when building a sparse tree.
4598 When this is nil, a date is a scheduled or a deadline timestamp.
4599 Otherwise, these types are allowed:
4601 all: all timestamps
4602 active: only active timestamps (<...>)
4603 inactive: only inactive timestamps (<...)
4604 scheduled: only scheduled timestamps
4605 deadline: only deadline timestamps"
4606 :type '(choice (const :tag "Scheduled or deadline" scheduled-or-deadline)
4607 (const :tag "All timestamps" all)
4608 (const :tag "Only active timestamps" active)
4609 (const :tag "Only inactive timestamps" inactive)
4610 (const :tag "Only scheduled timestamps" scheduled)
4611 (const :tag "Only deadline timestamps" deadline)
4612 (const :tag "Only closed timestamps" closed))
4613 :version "24.3"
4614 :group 'org-sparse-trees)
4616 (defun org-cycle-hide-archived-subtrees (state)
4617 "Re-hide all archived subtrees after a visibility state change."
4618 (when (and (not org-cycle-open-archived-trees)
4619 (not (memq state '(overview folded))))
4620 (save-excursion
4621 (let* ((globalp (memq state '(contents all)))
4622 (beg (if globalp (point-min) (point)))
4623 (end (if globalp (point-max) (org-end-of-subtree t))))
4624 (org-hide-archived-subtrees beg end)
4625 (goto-char beg)
4626 (if (looking-at (concat ".*:" org-archive-tag ":"))
4627 (message "%s" (substitute-command-keys
4628 "Subtree is archived and stays closed. Use \\[org-force-cycle-archived] to cycle it anyway.")))))))
4630 (defun org-force-cycle-archived ()
4631 "Cycle subtree even if it is archived."
4632 (interactive)
4633 (setq this-command 'org-cycle)
4634 (let ((org-cycle-open-archived-trees t))
4635 (call-interactively 'org-cycle)))
4637 (defun org-hide-archived-subtrees (beg end)
4638 "Re-hide all archived subtrees after a visibility state change."
4639 (save-excursion
4640 (let* ((re (concat ":" org-archive-tag ":")))
4641 (goto-char beg)
4642 (while (re-search-forward re end t)
4643 (when (org-at-heading-p)
4644 (org-flag-subtree t)
4645 (org-end-of-subtree t))))))
4647 (declare-function outline-end-of-heading "outline" ())
4648 (declare-function outline-flag-region "outline" (from to flag))
4649 (defun org-flag-subtree (flag)
4650 (save-excursion
4651 (org-back-to-heading t)
4652 (outline-end-of-heading)
4653 (outline-flag-region (point)
4654 (progn (org-end-of-subtree t) (point))
4655 flag)))
4657 (defalias 'org-advertized-archive-subtree 'org-archive-subtree)
4659 ;; Declare Column View Code
4661 (declare-function org-columns-number-to-string "org-colview" (n fmt &optional printf))
4662 (declare-function org-columns-get-format-and-top-level "org-colview" ())
4663 (declare-function org-columns-compute "org-colview" (property))
4665 ;; Declare ID code
4667 (declare-function org-id-store-link "org-id")
4668 (declare-function org-id-locations-load "org-id")
4669 (declare-function org-id-locations-save "org-id")
4670 (defvar org-id-track-globally)
4672 ;;; Variables for pre-computed regular expressions, all buffer local
4674 (defvar org-todo-regexp nil
4675 "Matches any of the TODO state keywords.")
4676 (make-variable-buffer-local 'org-todo-regexp)
4677 (defvar org-not-done-regexp nil
4678 "Matches any of the TODO state keywords except the last one.")
4679 (make-variable-buffer-local 'org-not-done-regexp)
4680 (defvar org-not-done-heading-regexp nil
4681 "Matches a TODO headline that is not done.")
4682 (make-variable-buffer-local 'org-not-done-regexp)
4683 (defvar org-todo-line-regexp nil
4684 "Matches a headline and puts TODO state into group 2 if present.")
4685 (make-variable-buffer-local 'org-todo-line-regexp)
4686 (defvar org-complex-heading-regexp nil
4687 "Matches a headline and puts everything into groups:
4688 group 1: the stars
4689 group 2: The todo keyword, maybe
4690 group 3: Priority cookie
4691 group 4: True headline
4692 group 5: Tags")
4693 (make-variable-buffer-local 'org-complex-heading-regexp)
4694 (defvar org-complex-heading-regexp-format nil
4695 "Printf format to make regexp to match an exact headline.
4696 This regexp will match the headline of any node which has the
4697 exact headline text that is put into the format, but may have any
4698 TODO state, priority and tags.")
4699 (make-variable-buffer-local 'org-complex-heading-regexp-format)
4700 (defvar org-todo-line-tags-regexp nil
4701 "Matches a headline and puts TODO state into group 2 if present.
4702 Also put tags into group 4 if tags are present.")
4703 (make-variable-buffer-local 'org-todo-line-tags-regexp)
4704 (defvar org-ds-keyword-length 12
4705 "Maximum length of the DEADLINE and SCHEDULED keywords.")
4706 (make-variable-buffer-local 'org-ds-keyword-length)
4707 (defvar org-deadline-regexp nil
4708 "Matches the DEADLINE keyword.")
4709 (make-variable-buffer-local 'org-deadline-regexp)
4710 (defvar org-deadline-time-regexp nil
4711 "Matches the DEADLINE keyword together with a time stamp.")
4712 (make-variable-buffer-local 'org-deadline-time-regexp)
4713 (defvar org-deadline-time-hour-regexp nil
4714 "Matches the DEADLINE keyword together with a time-and-hour stamp.")
4715 (make-variable-buffer-local 'org-deadline-time-hour-regexp)
4716 (defvar org-deadline-line-regexp nil
4717 "Matches the DEADLINE keyword and the rest of the line.")
4718 (make-variable-buffer-local 'org-deadline-line-regexp)
4719 (defvar org-scheduled-regexp nil
4720 "Matches the SCHEDULED keyword.")
4721 (make-variable-buffer-local 'org-scheduled-regexp)
4722 (defvar org-scheduled-time-regexp nil
4723 "Matches the SCHEDULED keyword together with a time stamp.")
4724 (make-variable-buffer-local 'org-scheduled-time-regexp)
4725 (defvar org-scheduled-time-hour-regexp nil
4726 "Matches the SCHEDULED keyword together with a time-and-hour stamp.")
4727 (make-variable-buffer-local 'org-scheduled-time-hour-regexp)
4728 (defvar org-closed-time-regexp nil
4729 "Matches the CLOSED keyword together with a time stamp.")
4730 (make-variable-buffer-local 'org-closed-time-regexp)
4732 (defvar org-keyword-time-regexp nil
4733 "Matches any of the 4 keywords, together with the time stamp.")
4734 (make-variable-buffer-local 'org-keyword-time-regexp)
4735 (defvar org-keyword-time-not-clock-regexp nil
4736 "Matches any of the 3 keywords, together with the time stamp.")
4737 (make-variable-buffer-local 'org-keyword-time-not-clock-regexp)
4738 (defvar org-maybe-keyword-time-regexp nil
4739 "Matches a timestamp, possibly preceded by a keyword.")
4740 (make-variable-buffer-local 'org-maybe-keyword-time-regexp)
4741 (defvar org-all-time-keywords nil
4742 "List of time keywords.")
4743 (make-variable-buffer-local 'org-all-time-keywords)
4745 (defconst org-plain-time-of-day-regexp
4746 (concat
4747 "\\(\\<[012]?[0-9]"
4748 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4749 "\\(--?"
4750 "\\(\\<[012]?[0-9]"
4751 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4752 "\\)?")
4753 "Regular expression to match a plain time or time range.
4754 Examples: 11:45 or 8am-13:15 or 2:45-2:45pm. After a match, the following
4755 groups carry important information:
4756 0 the full match
4757 1 the first time, range or not
4758 8 the second time, if it is a range.")
4760 (defconst org-plain-time-extension-regexp
4761 (concat
4762 "\\(\\<[012]?[0-9]"
4763 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4764 "\\+\\([0-9]+\\)\\(:\\([0-5][0-9]\\)\\)?")
4765 "Regular expression to match a time range like 13:30+2:10 = 13:30-15:40.
4766 Examples: 11:45 or 8am-13:15 or 2:45-2:45pm. After a match, the following
4767 groups carry important information:
4768 0 the full match
4769 7 hours of duration
4770 9 minutes of duration")
4772 (defconst org-stamp-time-of-day-regexp
4773 (concat
4774 "<\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} +\\sw+ +\\)"
4775 "\\([012][0-9]:[0-5][0-9]\\(-\\([012][0-9]:[0-5][0-9]\\)\\)?[^\n\r>]*?\\)>"
4776 "\\(--?"
4777 "<\\1\\([012][0-9]:[0-5][0-9]\\)>\\)?")
4778 "Regular expression to match a timestamp time or time range.
4779 After a match, the following groups carry important information:
4780 0 the full match
4781 1 date plus weekday, for back referencing to make sure both times are on the same day
4782 2 the first time, range or not
4783 4 the second time, if it is a range.")
4785 (defconst org-startup-options
4786 '(("fold" org-startup-folded t)
4787 ("overview" org-startup-folded t)
4788 ("nofold" org-startup-folded nil)
4789 ("showall" org-startup-folded nil)
4790 ("showeverything" org-startup-folded showeverything)
4791 ("content" org-startup-folded content)
4792 ("indent" org-startup-indented t)
4793 ("noindent" org-startup-indented nil)
4794 ("hidestars" org-hide-leading-stars t)
4795 ("showstars" org-hide-leading-stars nil)
4796 ("odd" org-odd-levels-only t)
4797 ("oddeven" org-odd-levels-only nil)
4798 ("align" org-startup-align-all-tables t)
4799 ("noalign" org-startup-align-all-tables nil)
4800 ("inlineimages" org-startup-with-inline-images t)
4801 ("noinlineimages" org-startup-with-inline-images nil)
4802 ("latexpreview" org-startup-with-latex-preview t)
4803 ("nolatexpreview" org-startup-with-latex-preview nil)
4804 ("customtime" org-display-custom-times t)
4805 ("logdone" org-log-done time)
4806 ("lognotedone" org-log-done note)
4807 ("nologdone" org-log-done nil)
4808 ("lognoteclock-out" org-log-note-clock-out t)
4809 ("nolognoteclock-out" org-log-note-clock-out nil)
4810 ("logrepeat" org-log-repeat state)
4811 ("lognoterepeat" org-log-repeat note)
4812 ("logdrawer" org-log-into-drawer t)
4813 ("nologdrawer" org-log-into-drawer nil)
4814 ("logstatesreversed" org-log-states-order-reversed t)
4815 ("nologstatesreversed" org-log-states-order-reversed nil)
4816 ("nologrepeat" org-log-repeat nil)
4817 ("logreschedule" org-log-reschedule time)
4818 ("lognotereschedule" org-log-reschedule note)
4819 ("nologreschedule" org-log-reschedule nil)
4820 ("logredeadline" org-log-redeadline time)
4821 ("lognoteredeadline" org-log-redeadline note)
4822 ("nologredeadline" org-log-redeadline nil)
4823 ("logrefile" org-log-refile time)
4824 ("lognoterefile" org-log-refile note)
4825 ("nologrefile" org-log-refile nil)
4826 ("fninline" org-footnote-define-inline t)
4827 ("nofninline" org-footnote-define-inline nil)
4828 ("fnlocal" org-footnote-section nil)
4829 ("fnauto" org-footnote-auto-label t)
4830 ("fnprompt" org-footnote-auto-label nil)
4831 ("fnconfirm" org-footnote-auto-label confirm)
4832 ("fnplain" org-footnote-auto-label plain)
4833 ("fnadjust" org-footnote-auto-adjust t)
4834 ("nofnadjust" org-footnote-auto-adjust nil)
4835 ("constcgs" constants-unit-system cgs)
4836 ("constSI" constants-unit-system SI)
4837 ("noptag" org-tag-persistent-alist nil)
4838 ("hideblocks" org-hide-block-startup t)
4839 ("nohideblocks" org-hide-block-startup nil)
4840 ("beamer" org-startup-with-beamer-mode t)
4841 ("entitiespretty" org-pretty-entities t)
4842 ("entitiesplain" org-pretty-entities nil))
4843 "Variable associated with STARTUP options for org-mode.
4844 Each element is a list of three items: the startup options (as written
4845 in the #+STARTUP line), the corresponding variable, and the value to set
4846 this variable to if the option is found. An optional forth element PUSH
4847 means to push this value onto the list in the variable.")
4849 (defun org-update-property-plist (key val props)
4850 "Update PROPS with KEY and VAL."
4851 (let* ((appending (string= "+" (substring key (- (length key) 1))))
4852 (key (if appending (substring key 0 (- (length key) 1)) key))
4853 (remainder (org-remove-if (lambda (p) (string= (car p) key)) props))
4854 (previous (cdr (assoc key props))))
4855 (if appending
4856 (cons (cons key (if previous (concat previous " " val) val)) remainder)
4857 (cons (cons key val) remainder))))
4859 (defcustom org-group-tags t
4860 "When non-nil (the default), use group tags.
4861 This can be turned on/off through `org-toggle-tags-groups'."
4862 :group 'org-tags
4863 :group 'org-startup
4864 :type 'boolean)
4866 (defvar org-inhibit-startup nil) ; Dynamically-scoped param.
4868 (defun org-toggle-tags-groups ()
4869 "Toggle support for group tags.
4870 Support for group tags is controlled by the option
4871 `org-group-tags', which is non-nil by default."
4872 (interactive)
4873 (setq org-group-tags (not org-group-tags))
4874 (cond ((and (derived-mode-p 'org-agenda-mode)
4875 org-group-tags)
4876 (org-agenda-redo))
4877 ((derived-mode-p 'org-mode)
4878 (let ((org-inhibit-startup t)) (org-mode))))
4879 (message "Groups tags support has been turned %s"
4880 (if org-group-tags "on" "off")))
4882 (defun org-set-regexps-and-options-for-tags ()
4883 "Precompute variables used for tags."
4884 (when (derived-mode-p 'org-mode)
4885 (org-set-local 'org-file-tags nil)
4886 (let ((re (org-make-options-regexp '("FILETAGS" "TAGS")))
4887 (splitre "[ \t]+")
4888 (start 0)
4889 tags ftags key value)
4890 (save-excursion
4891 (save-restriction
4892 (widen)
4893 (goto-char (point-min))
4894 (while (re-search-forward re nil t)
4895 (setq key (upcase (org-match-string-no-properties 1))
4896 value (org-match-string-no-properties 2))
4897 (if (stringp value) (setq value (org-trim value)))
4898 (cond
4899 ((equal key "TAGS")
4900 (setq tags (append tags (if tags '("\\n") nil)
4901 (org-split-string value splitre))))
4902 ((equal key "FILETAGS")
4903 (when (string-match "\\S-" value)
4904 (setq ftags
4905 (append
4906 ftags
4907 (apply 'append
4908 (mapcar (lambda (x) (org-split-string x ":"))
4909 (org-split-string value)))))))))))
4910 ;; Process the file tags.
4911 (and ftags (org-set-local 'org-file-tags
4912 (mapcar 'org-add-prop-inherited ftags)))
4913 (org-set-local 'org-tag-groups-alist nil)
4914 ;; Process the tags.
4915 (when (and (not tags) org-tag-alist)
4916 (setq tags
4917 (mapcar
4918 (lambda (tg) (cond ((eq (car tg) :startgroup) "{")
4919 ((eq (car tg) :endgroup) "}")
4920 ((eq (car tg) :grouptags) ":")
4921 ((eq (car tg) :newline) "\n")
4922 (t (concat (car tg)
4923 (if (characterp (cdr tg))
4924 (format "(%s)" (char-to-string (cdr tg))) "")))))
4925 org-tag-alist)))
4926 (let (e tgs g)
4927 (while (setq e (pop tags))
4928 (cond
4929 ((equal e "{")
4930 (progn (push '(:startgroup) tgs)
4931 (when (equal (nth 1 tags) ":")
4932 (push (list (replace-regexp-in-string
4933 "(.+)$" "" (nth 0 tags)))
4934 org-tag-groups-alist)
4935 (setq g 0))))
4936 ((equal e ":") (push '(:grouptags) tgs))
4937 ((equal e "}") (push '(:endgroup) tgs) (if g (setq g nil)))
4938 ((equal e "\\n") (push '(:newline) tgs))
4939 ((string-match (org-re "^\\([[:alnum:]_@#%]+\\)(\\(.\\))$") e)
4940 (push (cons (match-string 1 e)
4941 (string-to-char (match-string 2 e))) tgs)
4942 (if (and g (> g 0))
4943 (setcar org-tag-groups-alist
4944 (append (car org-tag-groups-alist)
4945 (list (match-string 1 e)))))
4946 (if g (setq g (1+ g))))
4947 (t (push (list e) tgs)
4948 (if (and g (> g 0))
4949 (setcar org-tag-groups-alist
4950 (append (car org-tag-groups-alist) (list e))))
4951 (if g (setq g (1+ g))))))
4952 (org-set-local 'org-tag-alist nil)
4953 (while (setq e (pop tgs))
4954 (or (and (stringp (car e))
4955 (assoc (car e) org-tag-alist))
4956 (push e org-tag-alist)))
4957 ;; Return a list with tag variables
4958 (list org-file-tags org-tag-alist org-tag-groups-alist)))))
4960 (defvar org-ota nil)
4961 (defun org-set-regexps-and-options ()
4962 "Precompute regular expressions used in the current buffer."
4963 (when (derived-mode-p 'org-mode)
4964 (org-set-local 'org-todo-kwd-alist nil)
4965 (org-set-local 'org-todo-key-alist nil)
4966 (org-set-local 'org-todo-key-trigger nil)
4967 (org-set-local 'org-todo-keywords-1 nil)
4968 (org-set-local 'org-done-keywords nil)
4969 (org-set-local 'org-todo-heads nil)
4970 (org-set-local 'org-todo-sets nil)
4971 (org-set-local 'org-todo-log-states nil)
4972 (org-set-local 'org-file-properties nil)
4973 (let ((re (org-make-options-regexp
4974 '("CATEGORY" "TODO" "COLUMNS" "STARTUP" "ARCHIVE"
4975 "LINK" "PRIORITIES" "CONSTANTS" "PROPERTY" "DRAWERS"
4976 "SETUPFILE" "OPTIONS")
4977 "\\(?:[a-zA-Z][0-9a-zA-Z_]*_TODO\\)"))
4978 (splitre "[ \t]+")
4979 (scripts org-use-sub-superscripts)
4980 kwds kws0 kwsa key log value cat arch const links hw dws
4981 tail sep kws1 prio props drawers ext-setup-or-nil setup-contents
4982 (start 0))
4983 (save-excursion
4984 (save-restriction
4985 (widen)
4986 (goto-char (point-min))
4987 (while
4988 (or (and
4989 ext-setup-or-nil
4990 (not org-ota)
4991 (let (ret)
4992 (with-temp-buffer
4993 (insert ext-setup-or-nil)
4994 (let ((major-mode 'org-mode) org-ota)
4995 (setq ret (save-match-data
4996 (org-set-regexps-and-options-for-tags)))))
4997 ;; Append setupfile tags to existing tags
4998 (setq org-ota t)
4999 (setq org-file-tags
5000 (delq nil (append org-file-tags (nth 0 ret)))
5001 org-tag-alist
5002 (delq nil (append org-tag-alist (nth 1 ret)))
5003 org-tag-groups-alist
5004 (delq nil (append org-tag-groups-alist (nth 2 ret))))))
5005 (and ext-setup-or-nil
5006 (string-match re ext-setup-or-nil start)
5007 (setq start (match-end 0)))
5008 (and (setq ext-setup-or-nil nil start 0)
5009 (re-search-forward re nil t)))
5010 (setq key (upcase (match-string 1 ext-setup-or-nil))
5011 value (org-match-string-no-properties 2 ext-setup-or-nil))
5012 (if (stringp value) (setq value (org-trim value)))
5013 (cond
5014 ((equal key "CATEGORY")
5015 (setq cat value))
5016 ((member key '("SEQ_TODO" "TODO"))
5017 (push (cons 'sequence (org-split-string value splitre)) kwds))
5018 ((equal key "TYP_TODO")
5019 (push (cons 'type (org-split-string value splitre)) kwds))
5020 ((string-match "\\`\\([a-zA-Z][0-9a-zA-Z_]*\\)_TODO\\'" key)
5021 ;; general TODO-like setup
5022 (push (cons (intern (downcase (match-string 1 key)))
5023 (org-split-string value splitre)) kwds))
5024 ((equal key "COLUMNS")
5025 (org-set-local 'org-columns-default-format value))
5026 ((equal key "LINK")
5027 (when (string-match "^\\(\\S-+\\)[ \t]+\\(.+\\)" value)
5028 (push (cons (match-string 1 value)
5029 (org-trim (match-string 2 value)))
5030 links)))
5031 ((equal key "PRIORITIES")
5032 (setq prio (org-split-string value " +")))
5033 ((equal key "PROPERTY")
5034 (when (string-match "\\(\\S-+\\)\\s-+\\(.*\\)" value)
5035 (setq props (org-update-property-plist (match-string 1 value)
5036 (match-string 2 value)
5037 props))))
5038 ((equal key "CONSTANTS")
5039 (org-table-set-constants))
5040 ((equal key "STARTUP")
5041 (let ((opts (org-split-string value splitre))
5042 l var val)
5043 (while (setq l (pop opts))
5044 (when (setq l (assoc l org-startup-options))
5045 (setq var (nth 1 l) val (nth 2 l))
5046 (if (not (nth 3 l))
5047 (set (make-local-variable var) val)
5048 (if (not (listp (symbol-value var)))
5049 (set (make-local-variable var) nil))
5050 (set (make-local-variable var) (symbol-value var))
5051 (add-to-list var val))))))
5052 ((equal key "ARCHIVE")
5053 (setq arch value)
5054 (remove-text-properties 0 (length arch)
5055 '(face t fontified t) arch))
5056 ((equal key "OPTIONS")
5057 (if (string-match "\\([ \t]\\|\\`\\)\\^:\\(t\\|nil\\|{}\\)" value)
5058 (setq scripts (read (match-string 2 value)))))
5059 ((and (equal key "SETUPFILE")
5060 ;; Prevent checking in Gnus messages
5061 (not buffer-read-only))
5062 (setq setup-contents (org-file-contents
5063 (expand-file-name
5064 (org-remove-double-quotes value))
5065 'noerror))
5066 (if (not ext-setup-or-nil)
5067 (setq ext-setup-or-nil setup-contents start 0)
5068 (setq ext-setup-or-nil
5069 (concat (substring ext-setup-or-nil 0 start)
5070 "\n" setup-contents "\n"
5071 (substring ext-setup-or-nil start)))))))
5072 ;; search for property blocks
5073 (goto-char (point-min))
5074 (while (re-search-forward org-block-regexp nil t)
5075 (when (equal "PROPERTY" (upcase (match-string 1)))
5076 (setq value (replace-regexp-in-string
5077 "[\n\r]" " " (match-string 4)))
5078 (when (string-match "\\(\\S-+\\)\\s-+\\(.*\\)" value)
5079 (setq props (org-update-property-plist (match-string 1 value)
5080 (match-string 2 value)
5081 props)))))))
5082 (org-set-local 'org-use-sub-superscripts scripts)
5083 (when cat
5084 (org-set-local 'org-category (intern cat))
5085 (push (cons "CATEGORY" cat) props))
5086 (when prio
5087 (if (< (length prio) 3) (setq prio '("A" "C" "B")))
5088 (setq prio (mapcar 'string-to-char prio))
5089 (org-set-local 'org-highest-priority (nth 0 prio))
5090 (org-set-local 'org-lowest-priority (nth 1 prio))
5091 (org-set-local 'org-default-priority (nth 2 prio)))
5092 (and props (org-set-local 'org-file-properties (nreverse props)))
5093 (and arch (org-set-local 'org-archive-location arch))
5094 (and links (setq org-link-abbrev-alist-local (nreverse links)))
5095 ;; Process the TODO keywords
5096 (unless kwds
5097 ;; Use the global values as if they had been given locally.
5098 (setq kwds (default-value 'org-todo-keywords))
5099 (if (stringp (car kwds))
5100 (setq kwds (list (cons org-todo-interpretation
5101 (default-value 'org-todo-keywords)))))
5102 (setq kwds (reverse kwds)))
5103 (setq kwds (nreverse kwds))
5104 (let (inter kws kw)
5105 (while (setq kws (pop kwds))
5106 (let ((kws (or
5107 (run-hook-with-args-until-success
5108 'org-todo-setup-filter-hook kws)
5109 kws)))
5110 (setq inter (pop kws) sep (member "|" kws)
5111 kws0 (delete "|" (copy-sequence kws))
5112 kwsa nil
5113 kws1 (mapcar
5114 (lambda (x)
5115 ;; 1 2
5116 (if (string-match "^\\(.*?\\)\\(?:(\\([^!@/]\\)?.*?)\\)?$" x)
5117 (progn
5118 (setq kw (match-string 1 x)
5119 key (and (match-end 2) (match-string 2 x))
5120 log (org-extract-log-state-settings x))
5121 (push (cons kw (and key (string-to-char key))) kwsa)
5122 (and log (push log org-todo-log-states))
5124 (error "Invalid TODO keyword %s" x)))
5125 kws0)
5126 kwsa (if kwsa (append '((:startgroup))
5127 (nreverse kwsa)
5128 '((:endgroup))))
5129 hw (car kws1)
5130 dws (if sep (org-remove-keyword-keys (cdr sep)) (last kws1))
5131 tail (list inter hw (car dws) (org-last dws))))
5132 (add-to-list 'org-todo-heads hw 'append)
5133 (push kws1 org-todo-sets)
5134 (setq org-done-keywords (append org-done-keywords dws nil))
5135 (setq org-todo-key-alist (append org-todo-key-alist kwsa))
5136 (mapc (lambda (x) (push (cons x tail) org-todo-kwd-alist)) kws1)
5137 (setq org-todo-keywords-1 (append org-todo-keywords-1 kws1 nil)))
5138 (setq org-todo-sets (nreverse org-todo-sets)
5139 org-todo-kwd-alist (nreverse org-todo-kwd-alist)
5140 org-todo-key-trigger (delq nil (mapcar 'cdr org-todo-key-alist))
5141 org-todo-key-alist (org-assign-fast-keys org-todo-key-alist)))
5142 ;; Compute the regular expressions and other local variables.
5143 ;; Using `org-outline-regexp-bol' would complicate them much,
5144 ;; because of the fixed white space at the end of that string.
5145 (if (not org-done-keywords)
5146 (setq org-done-keywords (and org-todo-keywords-1
5147 (list (org-last org-todo-keywords-1)))))
5148 (setq org-ds-keyword-length (+ 2 (max (length org-deadline-string)
5149 (length org-scheduled-string)
5150 (length org-clock-string)
5151 (length org-closed-string)))
5152 org-not-done-keywords
5153 (org-delete-all org-done-keywords (copy-sequence org-todo-keywords-1))
5154 org-todo-regexp
5155 (concat "\\("
5156 (mapconcat 'regexp-quote org-todo-keywords-1 "\\|")
5157 "\\)")
5158 org-not-done-regexp
5159 (concat "\\("
5160 (mapconcat 'regexp-quote org-not-done-keywords "\\|")
5161 "\\)")
5162 org-not-done-heading-regexp
5163 (format org-heading-keyword-regexp-format org-not-done-regexp)
5164 org-todo-line-regexp
5165 (format org-heading-keyword-maybe-regexp-format org-todo-regexp)
5166 org-complex-heading-regexp
5167 (concat "^\\(\\*+\\)"
5168 "\\(?: +" org-todo-regexp "\\)?"
5169 "\\(?: +\\(\\[#.\\]\\)\\)?"
5170 "\\(?: +\\(.*?\\)\\)??"
5171 (org-re "\\(?:[ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)?")
5172 "[ \t]*$")
5173 org-complex-heading-regexp-format
5174 (concat "^\\(\\*+\\)"
5175 "\\(?: +" org-todo-regexp "\\)?"
5176 "\\(?: +\\(\\[#.\\]\\)\\)?"
5177 "\\(?: +"
5178 ;; Stats cookies can be stuck to body.
5179 "\\(?:\\[[0-9%%/]+\\] *\\)?"
5180 "\\(%s\\)"
5181 "\\(?: *\\[[0-9%%/]+\\]\\)?"
5182 "\\)"
5183 (org-re "\\(?:[ \t]+\\(:[[:alnum:]_@#%%:]+:\\)\\)?")
5184 "[ \t]*$")
5185 org-todo-line-tags-regexp
5186 (concat "^\\(\\*+\\)"
5187 "\\(?: +" org-todo-regexp "\\)?"
5188 "\\(?: +\\(.*?\\)\\)??"
5189 (org-re "\\(?:[ \t]+\\(:[[:alnum:]:_@#%]+:\\)\\)?")
5190 "[ \t]*$")
5191 org-deadline-regexp (concat "\\<" org-deadline-string)
5192 org-deadline-time-regexp
5193 (concat "\\<" org-deadline-string " *<\\([^>]+\\)>")
5194 org-deadline-time-hour-regexp
5195 (concat "\\<" org-deadline-string
5196 " *<\\([^>]+[0-9]\\{1,2\\}:[0-9]\\{2\\}[0-9-+:hdwmy \t.]*\\)>")
5197 org-deadline-line-regexp
5198 (concat "\\<\\(" org-deadline-string "\\).*")
5199 org-scheduled-regexp
5200 (concat "\\<" org-scheduled-string)
5201 org-scheduled-time-regexp
5202 (concat "\\<" org-scheduled-string " *<\\([^>]+\\)>")
5203 org-scheduled-time-hour-regexp
5204 (concat "\\<" org-scheduled-string
5205 " *<\\([^>]+[0-9]\\{1,2\\}:[0-9]\\{2\\}[0-9-+:hdwmy \t.]*\\)>")
5206 org-closed-time-regexp
5207 (concat "\\<" org-closed-string " *\\[\\([^]]+\\)\\]")
5208 org-keyword-time-regexp
5209 (concat "\\<\\(" org-scheduled-string
5210 "\\|" org-deadline-string
5211 "\\|" org-closed-string
5212 "\\|" org-clock-string "\\)"
5213 " *[[<]\\([^]>]+\\)[]>]")
5214 org-keyword-time-not-clock-regexp
5215 (concat "\\<\\(" org-scheduled-string
5216 "\\|" org-deadline-string
5217 "\\|" org-closed-string
5218 "\\)"
5219 " *[[<]\\([^]>]+\\)[]>]")
5220 org-maybe-keyword-time-regexp
5221 (concat "\\(\\<\\(" org-scheduled-string
5222 "\\|" org-deadline-string
5223 "\\|" org-closed-string
5224 "\\|" org-clock-string "\\)\\)?"
5225 " *\\([[<][0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^]\r\n>]*?[]>]\\|<%%([^\r\n>]*>\\)")
5226 org-all-time-keywords
5227 (mapcar (lambda (w) (substring w 0 -1))
5228 (list org-scheduled-string org-deadline-string
5229 org-clock-string org-closed-string)))
5230 (setq org-ota nil)
5231 (org-compute-latex-and-related-regexp))))
5233 (defun org-file-contents (file &optional noerror)
5234 "Return the contents of FILE, as a string."
5235 (if (or (not file)
5236 (not (file-readable-p file)))
5237 (if noerror
5238 (message "Cannot read file \"%s\"" file)
5239 (error "Cannot read file \"%s\"" file))
5240 (with-temp-buffer
5241 (insert-file-contents file)
5242 (buffer-string))))
5244 (defun org-extract-log-state-settings (x)
5245 "Extract the log state setting from a TODO keyword string.
5246 This will extract info from a string like \"WAIT(w@/!)\"."
5247 (let (kw key log1 log2)
5248 (when (string-match "^\\(.*?\\)\\(?:(\\([^!@/]\\)?\\([!@]\\)?\\(?:/\\([!@]\\)\\)?)\\)?$" x)
5249 (setq kw (match-string 1 x)
5250 key (and (match-end 2) (match-string 2 x))
5251 log1 (and (match-end 3) (match-string 3 x))
5252 log2 (and (match-end 4) (match-string 4 x)))
5253 (and (or log1 log2)
5254 (list kw
5255 (and log1 (if (equal log1 "!") 'time 'note))
5256 (and log2 (if (equal log2 "!") 'time 'note)))))))
5258 (defun org-remove-keyword-keys (list)
5259 "Remove a pair of parenthesis at the end of each string in LIST."
5260 (mapcar (lambda (x)
5261 (if (string-match "(.*)$" x)
5262 (substring x 0 (match-beginning 0))
5264 list))
5266 (defun org-assign-fast-keys (alist)
5267 "Assign fast keys to a keyword-key alist.
5268 Respect keys that are already there."
5269 (let (new e (alt ?0))
5270 (while (setq e (pop alist))
5271 (if (or (memq (car e) '(:newline :grouptags :endgroup :startgroup))
5272 (cdr e)) ;; Key already assigned.
5273 (push e new)
5274 (let ((clist (string-to-list (downcase (car e))))
5275 (used (append new alist)))
5276 (when (= (car clist) ?@)
5277 (pop clist))
5278 (while (and clist (rassoc (car clist) used))
5279 (pop clist))
5280 (unless clist
5281 (while (rassoc alt used)
5282 (incf alt)))
5283 (push (cons (car e) (or (car clist) alt)) new))))
5284 (nreverse new)))
5286 ;;; Some variables used in various places
5288 (defvar org-window-configuration nil
5289 "Used in various places to store a window configuration.")
5290 (defvar org-selected-window nil
5291 "Used in various places to store a window configuration.")
5292 (defvar org-finish-function nil
5293 "Function to be called when `C-c C-c' is used.
5294 This is for getting out of special buffers like capture.")
5297 ;; FIXME: Occasionally check by commenting these, to make sure
5298 ;; no other functions uses these, forgetting to let-bind them.
5299 (org-no-warnings (defvar entry)) ;; unprefixed, from calendar.el
5300 (defvar org-last-state)
5301 (org-no-warnings (defvar date)) ;; unprefixed, from calendar.el
5303 ;; Defined somewhere in this file, but used before definition.
5304 (defvar org-entities) ;; defined in org-entities.el
5305 (defvar org-struct-menu)
5306 (defvar org-org-menu)
5307 (defvar org-tbl-menu)
5309 ;;;; Define the Org-mode
5311 ;; We use a before-change function to check if a table might need
5312 ;; an update.
5313 (defvar org-table-may-need-update t
5314 "Indicates that a table might need an update.
5315 This variable is set by `org-before-change-function'.
5316 `org-table-align' sets it back to nil.")
5317 (defun org-before-change-function (beg end)
5318 "Every change indicates that a table might need an update."
5319 (setq org-table-may-need-update t))
5320 (defvar org-mode-map)
5321 (defvar org-inhibit-startup-visibility-stuff nil) ; Dynamically-scoped param.
5322 (defvar org-agenda-keep-modes nil) ; Dynamically-scoped param.
5323 (defvar org-inhibit-logging nil) ; Dynamically-scoped param.
5324 (defvar org-inhibit-blocking nil) ; Dynamically-scoped param.
5325 (defvar org-table-buffer-is-an nil)
5327 (defvar bidi-paragraph-direction)
5328 (defvar buffer-face-mode-face)
5330 (require 'outline)
5331 (if (and (not (keymapp outline-mode-map)) (featurep 'allout))
5332 (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"))
5333 (require 'noutline "noutline" 'noerror) ;; stock XEmacs does not have it
5335 ;; Other stuff we need.
5336 (require 'time-date)
5337 (unless (fboundp 'time-subtract) (defalias 'time-subtract 'subtract-time))
5338 (require 'easymenu)
5339 (require 'overlay)
5341 ;; (require 'org-macs) moved higher up in the file before it is first used
5342 (require 'org-entities)
5343 ;; (require 'org-compat) moved higher up in the file before it is first used
5344 (require 'org-faces)
5345 (require 'org-list)
5346 (require 'org-pcomplete)
5347 (require 'org-src)
5348 (require 'org-footnote)
5349 (require 'org-macro)
5351 ;; babel
5352 (require 'ob)
5354 ;;;###autoload
5355 (define-derived-mode org-mode outline-mode "Org"
5356 "Outline-based notes management and organizer, alias
5357 \"Carsten's outline-mode for keeping track of everything.\"
5359 Org-mode develops organizational tasks around a NOTES file which
5360 contains information about projects as plain text. Org-mode is
5361 implemented on top of outline-mode, which is ideal to keep the content
5362 of large files well structured. It supports ToDo items, deadlines and
5363 time stamps, which magically appear in the diary listing of the Emacs
5364 calendar. Tables are easily created with a built-in table editor.
5365 Plain text URL-like links connect to websites, emails (VM), Usenet
5366 messages (Gnus), BBDB entries, and any files related to the project.
5367 For printing and sharing of notes, an Org-mode file (or a part of it)
5368 can be exported as a structured ASCII or HTML file.
5370 The following commands are available:
5372 \\{org-mode-map}"
5374 ;; Get rid of Outline menus, they are not needed
5375 ;; Need to do this here because define-derived-mode sets up
5376 ;; the keymap so late. Still, it is a waste to call this each time
5377 ;; we switch another buffer into org-mode.
5378 (if (featurep 'xemacs)
5379 (when (boundp 'outline-mode-menu-heading)
5380 ;; Assume this is Greg's port, it uses easymenu
5381 (easy-menu-remove outline-mode-menu-heading)
5382 (easy-menu-remove outline-mode-menu-show)
5383 (easy-menu-remove outline-mode-menu-hide))
5384 (define-key org-mode-map [menu-bar headings] 'undefined)
5385 (define-key org-mode-map [menu-bar hide] 'undefined)
5386 (define-key org-mode-map [menu-bar show] 'undefined))
5388 (org-load-modules-maybe)
5389 (easy-menu-add org-org-menu)
5390 (easy-menu-add org-tbl-menu)
5391 (org-install-agenda-files-menu)
5392 (if org-descriptive-links (add-to-invisibility-spec '(org-link)))
5393 (add-to-invisibility-spec '(org-cwidth))
5394 (add-to-invisibility-spec '(org-hide-block . t))
5395 (when (featurep 'xemacs)
5396 (org-set-local 'line-move-ignore-invisible t))
5397 (org-set-local 'outline-regexp org-outline-regexp)
5398 (org-set-local 'outline-level 'org-outline-level)
5399 (setq bidi-paragraph-direction 'left-to-right)
5400 (when (and org-ellipsis
5401 (fboundp 'set-display-table-slot) (boundp 'buffer-display-table)
5402 (fboundp 'make-glyph-code))
5403 (unless org-display-table
5404 (setq org-display-table (make-display-table)))
5405 (set-display-table-slot
5406 org-display-table 4
5407 (vconcat (mapcar
5408 (lambda (c) (make-glyph-code c (and (not (stringp org-ellipsis))
5409 org-ellipsis)))
5410 (if (stringp org-ellipsis) org-ellipsis "..."))))
5411 (setq buffer-display-table org-display-table))
5412 (org-set-regexps-and-options-for-tags)
5413 (org-set-regexps-and-options)
5414 (org-set-font-lock-defaults)
5415 (when (and org-tag-faces (not org-tags-special-faces-re))
5416 ;; tag faces set outside customize.... force initialization.
5417 (org-set-tag-faces 'org-tag-faces org-tag-faces))
5418 ;; Calc embedded
5419 (org-set-local 'calc-embedded-open-mode "# ")
5420 ;; Modify a few syntax entries
5421 (modify-syntax-entry ?@ "w")
5422 (modify-syntax-entry ?\" "\"")
5423 (if org-startup-truncated (setq truncate-lines t))
5424 (when org-startup-indented (require 'org-indent) (org-indent-mode 1))
5425 (org-set-local 'font-lock-unfontify-region-function
5426 'org-unfontify-region)
5427 ;; Activate before-change-function
5428 (org-set-local 'org-table-may-need-update t)
5429 (org-add-hook 'before-change-functions 'org-before-change-function nil
5430 'local)
5431 ;; Check for running clock before killing a buffer
5432 (org-add-hook 'kill-buffer-hook 'org-check-running-clock nil 'local)
5433 ;; Initialize macros templates.
5434 (org-macro-initialize-templates)
5435 ;; Initialize radio targets.
5436 (org-update-radio-target-regexp)
5437 ;; Indentation.
5438 (org-set-local 'indent-line-function 'org-indent-line)
5439 (org-set-local 'indent-region-function 'org-indent-region)
5440 ;; Filling and auto-filling.
5441 (org-setup-filling)
5442 ;; Comments.
5443 (org-setup-comments-handling)
5444 ;; Initialize cache.
5445 (org-element-cache-reset)
5446 ;; Beginning/end of defun
5447 (org-set-local 'beginning-of-defun-function 'org-backward-element)
5448 (org-set-local 'end-of-defun-function 'org-forward-element)
5449 ;; Next error for sparse trees
5450 (org-set-local 'next-error-function 'org-occur-next-match)
5451 ;; Make sure dependence stuff works reliably, even for users who set it
5452 ;; too late :-(
5453 (if org-enforce-todo-dependencies
5454 (add-hook 'org-blocker-hook
5455 'org-block-todo-from-children-or-siblings-or-parent)
5456 (remove-hook 'org-blocker-hook
5457 'org-block-todo-from-children-or-siblings-or-parent))
5458 (if org-enforce-todo-checkbox-dependencies
5459 (add-hook 'org-blocker-hook
5460 'org-block-todo-from-checkboxes)
5461 (remove-hook 'org-blocker-hook
5462 'org-block-todo-from-checkboxes))
5464 ;; Align options lines
5465 (org-set-local
5466 'align-mode-rules-list
5467 '((org-in-buffer-settings
5468 (regexp . "^#\\+[A-Z_]+:\\(\\s-*\\)\\S-+")
5469 (modes . '(org-mode)))))
5471 ;; Imenu
5472 (org-set-local 'imenu-create-index-function
5473 'org-imenu-get-tree)
5475 ;; Make isearch reveal context
5476 (if (or (featurep 'xemacs)
5477 (not (boundp 'outline-isearch-open-invisible-function)))
5478 ;; Emacs 21 and XEmacs make use of the hook
5479 (org-add-hook 'isearch-mode-end-hook 'org-isearch-end 'append 'local)
5480 ;; Emacs 22 deals with this through a special variable
5481 (org-set-local 'outline-isearch-open-invisible-function
5482 (lambda (&rest ignore) (org-show-context 'isearch)))
5483 (org-add-hook 'isearch-mode-end-hook 'org-fix-ellipsis-at-bol 'append 'local))
5485 ;; Setup the pcomplete hooks
5486 (set (make-local-variable 'pcomplete-command-completion-function)
5487 'org-pcomplete-initial)
5488 (set (make-local-variable 'pcomplete-command-name-function)
5489 'org-command-at-point)
5490 (set (make-local-variable 'pcomplete-default-completion-function)
5491 'ignore)
5492 (set (make-local-variable 'pcomplete-parse-arguments-function)
5493 'org-parse-arguments)
5494 (set (make-local-variable 'pcomplete-termination-string) "")
5495 (when (>= emacs-major-version 23)
5496 (set (make-local-variable 'buffer-face-mode-face) 'org-default))
5498 ;; If empty file that did not turn on org-mode automatically, make it to.
5499 (if (and org-insert-mode-line-in-empty-file
5500 (org-called-interactively-p 'any)
5501 (= (point-min) (point-max)))
5502 (insert "# -*- mode: org -*-\n\n"))
5503 (unless org-inhibit-startup
5504 (org-unmodified
5505 (and org-startup-with-beamer-mode (org-beamer-mode))
5506 (when org-startup-align-all-tables
5507 (org-table-map-tables 'org-table-align 'quietly))
5508 (when org-startup-with-inline-images
5509 (org-display-inline-images))
5510 (when org-startup-with-latex-preview
5511 (org-preview-latex-fragment))
5512 (unless org-inhibit-startup-visibility-stuff
5513 (org-set-startup-visibility))))
5514 ;; Try to set org-hide correctly
5515 (set-face-foreground 'org-hide (org-find-invisible-foreground))
5516 ;; Make sure that file local variables are set.
5517 (report-errors "File local-variables error: %s"
5518 (hack-local-variables)))
5520 ;; Update `customize-package-emacs-version-alist'
5521 (add-to-list 'customize-package-emacs-version-alist
5522 '(Org ("6.21b" . "23.1") ("6.33x" . "23.2")
5523 ("7.8.11" . "24.1") ("7.9.4" . "24.3")
5524 ("8.0" . "24.4")))
5526 (defvar org-mode-transpose-word-syntax-table
5527 (let ((st (make-syntax-table)))
5528 (mapc (lambda(c) (modify-syntax-entry
5529 (string-to-char (car c)) "w p" st))
5530 org-emphasis-alist)
5531 st))
5533 (when (fboundp 'abbrev-table-put)
5534 (abbrev-table-put org-mode-abbrev-table
5535 :parents (list text-mode-abbrev-table)))
5537 (put 'org-mode 'flyspell-mode-predicate 'org-mode-flyspell-verify)
5539 (defsubst org-fix-ellipsis-at-bol ()
5540 (save-excursion (goto-char (window-start)) (recenter 0)))
5542 (defun org-find-invisible-foreground ()
5543 (let ((candidates (remove
5544 "unspecified-bg"
5545 (nconc
5546 (list (face-background 'default)
5547 (face-background 'org-default))
5548 (mapcar
5549 (lambda (alist)
5550 (when (boundp alist)
5551 (cdr (assoc 'background-color (symbol-value alist)))))
5552 '(default-frame-alist initial-frame-alist window-system-default-frame-alist))
5553 (list (face-foreground 'org-hide))))))
5554 (car (remove nil candidates))))
5556 (defun org-current-time (&optional rounding-minutes past)
5557 "Current time, possibly rounded to ROUNDING-MINUTES.
5558 When ROUNDING-MINUTES is not an integer, fall back on the car of
5559 `org-time-stamp-rounding-minutes'. When PAST is non-nil, ensure
5560 the rounding returns a past time."
5561 (let ((r (or (and (integerp rounding-minutes) rounding-minutes)
5562 (car org-time-stamp-rounding-minutes)))
5563 (time (decode-time)) res)
5564 (if (< r 1)
5565 (current-time)
5566 (setq res
5567 (apply 'encode-time
5568 (append (list 0 (* r (floor (+ .5 (/ (float (nth 1 time)) r)))))
5569 (nthcdr 2 time))))
5570 (if (and past (< (org-float-time (time-subtract (current-time) res)) 0))
5571 (seconds-to-time (- (org-float-time res) (* r 60)))
5572 res))))
5574 (defun org-today ()
5575 "Return today date, considering `org-extend-today-until'."
5576 (time-to-days
5577 (time-subtract (current-time)
5578 (list 0 (* 3600 org-extend-today-until) 0))))
5580 ;;;; Font-Lock stuff, including the activators
5582 (defvar org-mouse-map (make-sparse-keymap))
5583 (org-defkey org-mouse-map [mouse-2] 'org-open-at-mouse)
5584 (org-defkey org-mouse-map [mouse-3] 'org-find-file-at-mouse)
5585 (when org-mouse-1-follows-link
5586 (org-defkey org-mouse-map [follow-link] 'mouse-face))
5587 (when org-tab-follows-link
5588 (org-defkey org-mouse-map [(tab)] 'org-open-at-point)
5589 (org-defkey org-mouse-map "\C-i" 'org-open-at-point))
5591 (require 'font-lock)
5593 (defconst org-non-link-chars "]\t\n\r<>")
5594 (defvar org-link-types '("http" "https" "ftp" "mailto" "file" "news"
5595 "shell" "elisp" "doi" "message"))
5596 (defvar org-link-types-re nil
5597 "Matches a link that has a url-like prefix like \"http:\"")
5598 (defvar org-link-re-with-space nil
5599 "Matches a link with spaces, optional angular brackets around it.")
5600 (defvar org-link-re-with-space2 nil
5601 "Matches a link with spaces, optional angular brackets around it.")
5602 (defvar org-link-re-with-space3 nil
5603 "Matches a link with spaces, only for internal part in bracket links.")
5604 (defvar org-angle-link-re nil
5605 "Matches link with angular brackets, spaces are allowed.")
5606 (defvar org-plain-link-re nil
5607 "Matches plain link, without spaces.")
5608 (defvar org-bracket-link-regexp nil
5609 "Matches a link in double brackets.")
5610 (defvar org-bracket-link-analytic-regexp nil
5611 "Regular expression used to analyze links.
5612 Here is what the match groups contain after a match:
5613 1: http:
5614 2: http
5615 3: path
5616 4: [desc]
5617 5: desc")
5618 (defvar org-bracket-link-analytic-regexp++ nil
5619 "Like `org-bracket-link-analytic-regexp', but include coderef internal type.")
5620 (defvar org-any-link-re nil
5621 "Regular expression matching any link.")
5623 (defconst org-match-sexp-depth 3
5624 "Number of stacked braces for sub/superscript matching.")
5626 (defun org-create-multibrace-regexp (left right n)
5627 "Create a regular expression which will match a balanced sexp.
5628 Opening delimiter is LEFT, and closing delimiter is RIGHT, both given
5629 as single character strings.
5630 The regexp returned will match the entire expression including the
5631 delimiters. It will also define a single group which contains the
5632 match except for the outermost delimiters. The maximum depth of
5633 stacked delimiters is N. Escaping delimiters is not possible."
5634 (let* ((nothing (concat "[^" left right "]*?"))
5635 (or "\\|")
5636 (re nothing)
5637 (next (concat "\\(?:" nothing left nothing right "\\)+" nothing)))
5638 (while (> n 1)
5639 (setq n (1- n)
5640 re (concat re or next)
5641 next (concat "\\(?:" nothing left next right "\\)+" nothing)))
5642 (concat left "\\(" re "\\)" right)))
5644 (defvar org-match-substring-regexp
5645 (concat
5646 "\\(\\S-\\)\\([_^]\\)\\("
5647 "\\(" (org-create-multibrace-regexp "{" "}" org-match-sexp-depth) "\\)"
5648 "\\|"
5649 "\\(" (org-create-multibrace-regexp "(" ")" org-match-sexp-depth) "\\)"
5650 "\\|"
5651 "\\(\\(?:\\*\\|[-+]?[^-+*!@#$%^_ \t\r\n,:\"?<>~;./{}=()]+\\)\\)\\)")
5652 "The regular expression matching a sub- or superscript.")
5654 (defvar org-match-substring-with-braces-regexp
5655 (concat
5656 "\\(\\S-\\)\\([_^]\\)\\("
5657 "\\(" (org-create-multibrace-regexp "{" "}" org-match-sexp-depth) "\\)"
5658 "\\)")
5659 "The regular expression matching a sub- or superscript, forcing braces.")
5661 (defun org-make-link-regexps ()
5662 "Update the link regular expressions.
5663 This should be called after the variable `org-link-types' has changed."
5664 (setq org-link-types-re
5665 (concat
5666 "\\`\\(" (mapconcat 'regexp-quote org-link-types "\\|") "\\):")
5667 org-link-re-with-space
5668 (concat
5669 "<?\\(" (mapconcat 'regexp-quote org-link-types "\\|") "\\):"
5670 "\\([^" org-non-link-chars " ]"
5671 "[^" org-non-link-chars "]*"
5672 "[^" org-non-link-chars " ]\\)>?")
5673 org-link-re-with-space2
5674 (concat
5675 "<?\\(" (mapconcat 'regexp-quote org-link-types "\\|") "\\):"
5676 "\\([^" org-non-link-chars " ]"
5677 "[^\t\n\r]*"
5678 "[^" org-non-link-chars " ]\\)>?")
5679 org-link-re-with-space3
5680 (concat
5681 "<?\\(" (mapconcat 'regexp-quote org-link-types "\\|") "\\):"
5682 "\\([^" org-non-link-chars " ]"
5683 "[^\t\n\r]*\\)")
5684 org-angle-link-re
5685 (concat
5686 "<\\(" (mapconcat 'regexp-quote org-link-types "\\|") "\\):"
5687 "\\([^" org-non-link-chars " ]"
5688 "[^" org-non-link-chars "]*"
5689 "\\)>")
5690 org-plain-link-re
5691 (concat
5692 "\\<\\(" (mapconcat 'regexp-quote org-link-types "\\|") "\\):"
5693 (org-re "\\([^ \t\n()<>]+\\(?:([[:word:]0-9_]+)\\|\\([^[:punct:] \t\n]\\|/\\)\\)\\)"))
5694 ;; "\\([^]\t\n\r<>() ]+[^]\t\n\r<>,.;() ]\\)")
5695 org-bracket-link-regexp
5696 "\\[\\[\\([^][]+\\)\\]\\(\\[\\([^][]+\\)\\]\\)?\\]"
5697 org-bracket-link-analytic-regexp
5698 (concat
5699 "\\[\\["
5700 "\\(\\(" (mapconcat 'regexp-quote org-link-types "\\|") "\\):\\)?"
5701 "\\([^]]+\\)"
5702 "\\]"
5703 "\\(\\[" "\\([^]]+\\)" "\\]\\)?"
5704 "\\]")
5705 org-bracket-link-analytic-regexp++
5706 (concat
5707 "\\[\\["
5708 "\\(\\(" (mapconcat 'regexp-quote (cons "coderef" org-link-types) "\\|") "\\):\\)?"
5709 "\\([^]]+\\)"
5710 "\\]"
5711 "\\(\\[" "\\([^]]+\\)" "\\]\\)?"
5712 "\\]")
5713 org-any-link-re
5714 (concat "\\(" org-bracket-link-regexp "\\)\\|\\("
5715 org-angle-link-re "\\)\\|\\("
5716 org-plain-link-re "\\)")))
5718 (org-make-link-regexps)
5720 (defvar org-emph-face nil)
5722 (defun org-do-emphasis-faces (limit)
5723 "Run through the buffer and add overlays to emphasized strings."
5724 (let (rtn a)
5725 (while (and (not rtn) (re-search-forward org-emph-re limit t))
5726 (if (not (= (char-after (match-beginning 3))
5727 (char-after (match-beginning 4))))
5728 (progn
5729 (setq rtn t)
5730 (setq a (assoc (match-string 3) org-emphasis-alist))
5731 (font-lock-prepend-text-property (match-beginning 2) (match-end 2)
5732 'face
5733 (nth 1 a))
5734 (and (nth 2 a)
5735 (org-remove-flyspell-overlays-in
5736 (match-beginning 0) (match-end 0)))
5737 (add-text-properties (match-beginning 2) (match-end 2)
5738 '(font-lock-multiline t org-emphasis t))
5739 (when org-hide-emphasis-markers
5740 (add-text-properties (match-end 4) (match-beginning 5)
5741 '(invisible org-link))
5742 (add-text-properties (match-beginning 3) (match-end 3)
5743 '(invisible org-link)))))
5744 (backward-char 1))
5745 rtn))
5747 (defun org-emphasize (&optional char)
5748 "Insert or change an emphasis, i.e. a font like bold or italic.
5749 If there is an active region, change that region to a new emphasis.
5750 If there is no region, just insert the marker characters and position
5751 the cursor between them.
5752 CHAR should be the marker character. If it is a space, it means to
5753 remove the emphasis of the selected region.
5754 If CHAR is not given (for example in an interactive call) it will be
5755 prompted for."
5756 (interactive)
5757 (let ((erc org-emphasis-regexp-components)
5758 (prompt "")
5759 (string "") beg end move c s)
5760 (if (org-region-active-p)
5761 (setq beg (region-beginning) end (region-end)
5762 string (buffer-substring beg end))
5763 (setq move t))
5765 (unless char
5766 (message "Emphasis marker or tag: [%s]"
5767 (mapconcat (lambda(e) (car e)) org-emphasis-alist ""))
5768 (setq char (read-char-exclusive)))
5769 (if (equal char ?\ )
5770 (setq s "" move nil)
5771 (unless (assoc (char-to-string char) org-emphasis-alist)
5772 (user-error "No such emphasis marker: \"%c\"" char))
5773 (setq s (char-to-string char)))
5774 (while (and (> (length string) 1)
5775 (equal (substring string 0 1) (substring string -1))
5776 (assoc (substring string 0 1) org-emphasis-alist))
5777 (setq string (substring string 1 -1)))
5778 (setq string (concat s string s))
5779 (if beg (delete-region beg end))
5780 (unless (or (bolp)
5781 (string-match (concat "[" (nth 0 erc) "\n]")
5782 (char-to-string (char-before (point)))))
5783 (insert " "))
5784 (unless (or (eobp)
5785 (string-match (concat "[" (nth 1 erc) "\n]")
5786 (char-to-string (char-after (point)))))
5787 (insert " ") (backward-char 1))
5788 (insert string)
5789 (and move (backward-char 1))))
5791 (defconst org-nonsticky-props
5792 '(mouse-face highlight keymap invisible intangible help-echo org-linked-text htmlize-link))
5794 (defsubst org-rear-nonsticky-at (pos)
5795 (add-text-properties (1- pos) pos (list 'rear-nonsticky org-nonsticky-props)))
5797 (defun org-activate-plain-links (limit)
5798 "Run through the buffer and add overlays to links."
5799 (let (f hl)
5800 (when (and (re-search-forward (concat org-plain-link-re) limit t)
5801 (not (org-in-src-block-p)))
5802 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5803 (setq f (get-text-property (match-beginning 0) 'face))
5804 (setq hl (org-match-string-no-properties 0))
5805 (if (or (eq f 'org-tag)
5806 (and (listp f) (memq 'org-tag f)))
5808 (add-text-properties (match-beginning 0) (match-end 0)
5809 (list 'mouse-face 'highlight
5810 'face 'org-link
5811 'htmlize-link `(:uri ,hl)
5812 'keymap org-mouse-map))
5813 (org-rear-nonsticky-at (match-end 0)))
5814 t)))
5816 (defun org-activate-code (limit)
5817 (if (re-search-forward "^[ \t]*\\(:\\(?: .*\\|$\\)\n?\\)" limit t)
5818 (progn
5819 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5820 (remove-text-properties (match-beginning 0) (match-end 0)
5821 '(display t invisible t intangible t))
5822 t)))
5824 (defcustom org-src-fontify-natively nil
5825 "When non-nil, fontify code in code blocks."
5826 :type 'boolean
5827 :version "24.1"
5828 :group 'org-appearance
5829 :group 'org-babel)
5831 (defcustom org-allow-promoting-top-level-subtree nil
5832 "When non-nil, allow promoting a top level subtree.
5833 The leading star of the top level headline will be replaced
5834 by a #."
5835 :type 'boolean
5836 :version "24.1"
5837 :group 'org-appearance)
5839 (defun org-fontify-meta-lines-and-blocks (limit)
5840 (condition-case nil
5841 (org-fontify-meta-lines-and-blocks-1 limit)
5842 (error (message "org-mode fontification error"))))
5844 (defun org-fontify-meta-lines-and-blocks-1 (limit)
5845 "Fontify #+ lines and blocks."
5846 (let ((case-fold-search t))
5847 (if (re-search-forward
5848 "^\\([ \t]*#\\(\\(\\+[a-zA-Z]+:?\\| \\|$\\)\\(_\\([a-zA-Z]+\\)\\)?\\)[ \t]*\\(\\([^ \t\n]*\\)[ \t]*\\(.*\\)\\)\\)"
5849 limit t)
5850 (let ((beg (match-beginning 0))
5851 (block-start (match-end 0))
5852 (block-end nil)
5853 (lang (match-string 7))
5854 (beg1 (line-beginning-position 2))
5855 (dc1 (downcase (match-string 2)))
5856 (dc3 (downcase (match-string 3)))
5857 end end1 quoting block-type ovl)
5858 (cond
5859 ((member dc1 '("+html:" "+ascii:" "+latex:"))
5860 ;; a single line of backend-specific content
5861 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5862 (remove-text-properties (match-beginning 0) (match-end 0)
5863 '(display t invisible t intangible t))
5864 (add-text-properties (match-beginning 1) (match-end 3)
5865 '(font-lock-fontified t face org-meta-line))
5866 (add-text-properties (match-beginning 6) (+ (match-end 6) 1)
5867 '(font-lock-fontified t face org-block))
5868 ; for backend-specific code
5870 ((and (match-end 4) (equal dc3 "+begin"))
5871 ;; Truly a block
5872 (setq block-type (downcase (match-string 5))
5873 quoting (member block-type org-protecting-blocks))
5874 (when (re-search-forward
5875 (concat "^[ \t]*#\\+end" (match-string 4) "\\>.*")
5876 nil t) ;; on purpose, we look further than LIMIT
5877 (setq end (min (point-max) (match-end 0))
5878 end1 (min (point-max) (1- (match-beginning 0))))
5879 (setq block-end (match-beginning 0))
5880 (when quoting
5881 (remove-text-properties beg end
5882 '(display t invisible t intangible t)))
5883 (add-text-properties
5884 beg end
5885 '(font-lock-fontified t font-lock-multiline t))
5886 (add-text-properties beg beg1 '(face org-meta-line))
5887 (add-text-properties end1 (min (point-max) (1+ end))
5888 '(face org-meta-line)) ; for end_src
5889 (cond
5890 ((and lang (not (string= lang "")) org-src-fontify-natively)
5891 (org-src-font-lock-fontify-block lang block-start block-end)
5892 ;; remove old background overlays
5893 (mapc (lambda (ov)
5894 (if (eq (overlay-get ov 'face) 'org-block-background)
5895 (delete-overlay ov)))
5896 (overlays-at (/ (+ beg1 block-end) 2)))
5897 ;; add a background overlay
5898 (setq ovl (make-overlay beg1 block-end))
5899 (overlay-put ovl 'face 'org-block-background)
5900 (overlay-put ovl 'evaporate t)) ;; make it go away when empty
5901 (quoting
5902 (add-text-properties beg1 (min (point-max) (1+ end1))
5903 '(face org-block))) ; end of source block
5904 ((not org-fontify-quote-and-verse-blocks))
5905 ((string= block-type "quote")
5906 (add-text-properties beg1 (min (point-max) (1+ end1)) '(face org-quote)))
5907 ((string= block-type "verse")
5908 (add-text-properties beg1 (min (point-max) (1+ end1)) '(face org-verse))))
5909 (add-text-properties beg beg1 '(face org-block-begin-line))
5910 (add-text-properties (min (point-max) (1+ end)) (min (point-max) (1+ end1))
5911 '(face org-block-end-line))
5913 ((member dc1 '("+title:" "+author:" "+email:" "+date:"))
5914 (add-text-properties
5915 beg (match-end 3)
5916 (if (member (intern (substring dc1 0 -1)) org-hidden-keywords)
5917 '(font-lock-fontified t invisible t)
5918 '(font-lock-fontified t face org-document-info-keyword)))
5919 (add-text-properties
5920 (match-beginning 6) (min (point-max) (1+ (match-end 6)))
5921 (if (string-equal dc1 "+title:")
5922 '(font-lock-fontified t face org-document-title)
5923 '(font-lock-fontified t face org-document-info))))
5924 ((or (equal dc1 "+results")
5925 (member dc1 '("+begin:" "+end:" "+caption:" "+label:"
5926 "+orgtbl:" "+tblfm:" "+tblname:" "+results:"
5927 "+call:" "+header:" "+headers:" "+name:"))
5928 (and (match-end 4) (equal dc3 "+attr")))
5929 (add-text-properties
5930 beg (match-end 0)
5931 '(font-lock-fontified t face org-meta-line))
5933 ((member dc3 '(" " ""))
5934 (add-text-properties
5935 beg (match-end 0)
5936 '(font-lock-fontified t face font-lock-comment-face)))
5937 ((not (member (char-after beg) '(?\ ?\t)))
5938 ;; just any other in-buffer setting, but not indented
5939 (add-text-properties
5940 beg (match-end 0)
5941 '(font-lock-fontified t face org-meta-line))
5943 (t nil))))))
5945 (defun org-activate-angle-links (limit)
5946 "Run through the buffer and add overlays to links."
5947 (if (and (re-search-forward org-angle-link-re limit t)
5948 (not (org-in-src-block-p)))
5949 (progn
5950 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5951 (add-text-properties (match-beginning 0) (match-end 0)
5952 (list 'mouse-face 'highlight
5953 'keymap org-mouse-map))
5954 (org-rear-nonsticky-at (match-end 0))
5955 t)))
5957 (defun org-activate-footnote-links (limit)
5958 "Run through the buffer and add overlays to footnotes."
5959 (let ((fn (org-footnote-next-reference-or-definition limit)))
5960 (when fn
5961 (let ((beg (nth 1 fn)) (end (nth 2 fn)))
5962 (org-remove-flyspell-overlays-in beg end)
5963 (add-text-properties beg end
5964 (list 'mouse-face 'highlight
5965 'keymap org-mouse-map
5966 'help-echo
5967 (if (= (point-at-bol) beg)
5968 "Footnote definition"
5969 "Footnote reference")
5970 'font-lock-fontified t
5971 'font-lock-multiline t
5972 'face 'org-footnote))))))
5974 (defun org-activate-bracket-links (limit)
5975 "Run through the buffer and add overlays to bracketed links."
5976 (if (and (re-search-forward org-bracket-link-regexp limit t)
5977 (not (org-in-src-block-p)))
5978 (let* ((hl (org-match-string-no-properties 1))
5979 (help (concat "LINK: " (save-match-data (org-link-unescape hl))))
5980 (ip (org-maybe-intangible
5981 (list 'invisible 'org-link
5982 'keymap org-mouse-map 'mouse-face 'highlight
5983 'font-lock-multiline t 'help-echo help
5984 'htmlize-link `(:uri ,hl))))
5985 (vp (list 'keymap org-mouse-map 'mouse-face 'highlight
5986 'font-lock-multiline t 'help-echo help
5987 'htmlize-link `(:uri ,hl))))
5988 ;; We need to remove the invisible property here. Table narrowing
5989 ;; may have made some of this invisible.
5990 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5991 (remove-text-properties (match-beginning 0) (match-end 0)
5992 '(invisible nil))
5993 (if (match-end 3)
5994 (progn
5995 (add-text-properties (match-beginning 0) (match-beginning 3) ip)
5996 (org-rear-nonsticky-at (match-beginning 3))
5997 (add-text-properties (match-beginning 3) (match-end 3) vp)
5998 (org-rear-nonsticky-at (match-end 3))
5999 (add-text-properties (match-end 3) (match-end 0) ip)
6000 (org-rear-nonsticky-at (match-end 0)))
6001 (add-text-properties (match-beginning 0) (match-beginning 1) ip)
6002 (org-rear-nonsticky-at (match-beginning 1))
6003 (add-text-properties (match-beginning 1) (match-end 1) vp)
6004 (org-rear-nonsticky-at (match-end 1))
6005 (add-text-properties (match-end 1) (match-end 0) ip)
6006 (org-rear-nonsticky-at (match-end 0)))
6007 t)))
6009 (defun org-activate-dates (limit)
6010 "Run through the buffer and add overlays to dates."
6011 (if (and (re-search-forward org-tsr-regexp-both limit t)
6012 (not (equal (char-before (match-beginning 0)) 91)))
6013 (progn
6014 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6015 (add-text-properties (match-beginning 0) (match-end 0)
6016 (list 'mouse-face 'highlight
6017 'keymap org-mouse-map))
6018 (org-rear-nonsticky-at (match-end 0))
6019 (when org-display-custom-times
6020 (if (match-end 3)
6021 (org-display-custom-time (match-beginning 3) (match-end 3)))
6022 (org-display-custom-time (match-beginning 1) (match-end 1)))
6023 t)))
6025 (defvar org-target-link-regexp nil
6026 "Regular expression matching radio targets in plain text.")
6027 (make-variable-buffer-local 'org-target-link-regexp)
6028 (defvar org-target-regexp "<<\\([^<>\n\r]+\\)>>"
6029 "Regular expression matching a link target.")
6030 (defvar org-radio-target-regexp "<<<\\([^<>\n\r]+\\)>>>"
6031 "Regular expression matching a radio target.")
6032 (defvar org-any-target-regexp "<<<?\\([^<>\n\r]+\\)>>>?" ; FIXME, not exact, would match <<<aaa>> as a radio target.
6033 "Regular expression matching any target.")
6035 (defun org-activate-target-links (limit)
6036 "Run through the buffer and add overlays to target matches."
6037 (when org-target-link-regexp
6038 (let ((case-fold-search t))
6039 (if (re-search-forward org-target-link-regexp limit t)
6040 (progn
6041 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6042 (add-text-properties (match-beginning 0) (match-end 0)
6043 (list 'mouse-face 'highlight
6044 'keymap org-mouse-map
6045 'help-echo "Radio target link"
6046 'org-linked-text t))
6047 (org-rear-nonsticky-at (match-end 0))
6048 t)))))
6050 (defun org-update-radio-target-regexp ()
6051 "Find all radio targets in this file and update the regular expression."
6052 (interactive)
6053 (when (memq 'radio org-activate-links)
6054 (setq org-target-link-regexp
6055 (org-make-target-link-regexp (org-all-targets 'radio)))
6056 (org-restart-font-lock)))
6058 (defun org-hide-wide-columns (limit)
6059 (let (s e)
6060 (setq s (text-property-any (point) (or limit (point-max))
6061 'org-cwidth t))
6062 (when s
6063 (setq e (next-single-property-change s 'org-cwidth))
6064 (add-text-properties s e (org-maybe-intangible '(invisible org-cwidth)))
6065 (goto-char e)
6066 t)))
6068 (defvar org-latex-and-related-regexp nil
6069 "Regular expression for highlighting LaTeX, entities and sub/superscript.")
6070 (defvar org-match-substring-regexp)
6071 (defvar org-match-substring-with-braces-regexp)
6073 (defun org-compute-latex-and-related-regexp ()
6074 "Compute regular expression for LaTeX, entities and sub/superscript.
6075 Result depends on variable `org-highlight-latex-and-related'."
6076 (org-set-local
6077 'org-latex-and-related-regexp
6078 (let* ((re-sub
6079 (cond ((not (memq 'script org-highlight-latex-and-related)) nil)
6080 ((eq org-use-sub-superscripts '{})
6081 (list org-match-substring-with-braces-regexp))
6082 (org-use-sub-superscripts (list org-match-substring-regexp))))
6083 (re-latex
6084 (when (memq 'latex org-highlight-latex-and-related)
6085 (let ((matchers (plist-get org-format-latex-options :matchers)))
6086 (delq nil
6087 (mapcar (lambda (x)
6088 (and (member (car x) matchers) (nth 1 x)))
6089 org-latex-regexps)))))
6090 (re-entities
6091 (when (memq 'entities org-highlight-latex-and-related)
6092 (list "\\\\\\(there4\\|sup[123]\\|frac[13][24]\\|[a-zA-Z]+\\)\\($\\|{}\\|[^[:alpha:]]\\)"))))
6093 (mapconcat 'identity (append re-latex re-entities re-sub) "\\|"))))
6095 (defun org-do-latex-and-related (limit)
6096 "Highlight LaTeX snippets and environments, entities and sub/superscript.
6097 LIMIT bounds the search for syntax to highlight. Stop at first
6098 highlighted object, if any. Return t if some highlighting was
6099 done, nil otherwise."
6100 (when (org-string-nw-p org-latex-and-related-regexp)
6101 (catch 'found
6102 (while (re-search-forward org-latex-and-related-regexp limit t)
6103 (unless (memq (car-safe (get-text-property (1+ (match-beginning 0))
6104 'face))
6105 '(org-code org-verbatim underline))
6106 (let ((offset (if (memq (char-after (1+ (match-beginning 0)))
6107 '(?_ ?^))
6109 0)))
6110 (font-lock-prepend-text-property
6111 (+ offset (match-beginning 0)) (match-end 0)
6112 'face 'org-latex-and-related)
6113 (add-text-properties (+ offset (match-beginning 0)) (match-end 0)
6114 '(font-lock-multiline t)))
6115 (throw 'found t)))
6116 nil)))
6118 (defun org-restart-font-lock ()
6119 "Restart `font-lock-mode', to force refontification."
6120 (when (and (boundp 'font-lock-mode) font-lock-mode)
6121 (font-lock-mode -1)
6122 (font-lock-mode 1)))
6124 (defun org-all-targets (&optional radio)
6125 "Return a list of all targets in this file.
6126 When optional argument RADIO is non-nil, only find radio
6127 targets."
6128 (let ((re (if radio org-radio-target-regexp org-target-regexp)) rtn)
6129 (save-excursion
6130 (goto-char (point-min))
6131 (while (re-search-forward re nil t)
6132 ;; Make sure point is really within the object.
6133 (backward-char)
6134 (let ((obj (org-element-context)))
6135 (when (memq (org-element-type obj) '(radio-target target))
6136 (add-to-list 'rtn (downcase (org-element-property :value obj))))))
6137 rtn)))
6139 (defun org-make-target-link-regexp (targets)
6140 "Make regular expression matching all strings in TARGETS.
6141 The regular expression finds the targets also if there is a line break
6142 between words."
6143 (and targets
6144 (concat
6145 "\\<\\("
6146 (mapconcat
6147 (lambda (x)
6148 (setq x (regexp-quote x))
6149 (while (string-match " +" x)
6150 (setq x (replace-match "\\s-+" t t x)))
6152 targets
6153 "\\|")
6154 "\\)\\>")))
6156 (defun org-activate-tags (limit)
6157 (if (re-search-forward (org-re "^\\*+.*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \r\n]") limit t)
6158 (progn
6159 (org-remove-flyspell-overlays-in (match-beginning 1) (match-end 1))
6160 (add-text-properties (match-beginning 1) (match-end 1)
6161 (list 'mouse-face 'highlight
6162 'keymap org-mouse-map))
6163 (org-rear-nonsticky-at (match-end 1))
6164 t)))
6166 (defun org-outline-level ()
6167 "Compute the outline level of the heading at point.
6168 If this is called at a normal headline, the level is the number of stars.
6169 Use `org-reduced-level' to remove the effect of `org-odd-levels'."
6170 (save-excursion
6171 (if (not (condition-case nil
6172 (org-back-to-heading t)
6173 (error nil)))
6175 (looking-at org-outline-regexp)
6176 (1- (- (match-end 0) (match-beginning 0))))))
6178 (defvar org-font-lock-keywords nil)
6180 (defsubst org-re-property (property &optional literal)
6181 "Return a regexp matching a PROPERTY line.
6182 Match group 3 will be set to the value if it exists."
6183 (concat "^\\(?4:[ \t]*\\)\\(?1::\\(?2:"
6184 (if literal property (regexp-quote property))
6185 "\\):\\)[ \t]+\\(?3:[^ \t\r\n].*?\\)\\(?5:[ \t]*\\)$"))
6187 (defconst org-property-re
6188 (org-re-property ".*?" 'literal)
6189 "Regular expression matching a property line.
6190 There are four matching groups:
6191 1: :PROPKEY: including the leading and trailing colon,
6192 2: PROPKEY without the leading and trailing colon,
6193 3: PROPVAL without leading or trailing spaces,
6194 4: the indentation of the current line,
6195 5: trailing whitespace.")
6197 (defvar org-font-lock-hook nil
6198 "Functions to be called for special font lock stuff.")
6200 (defvar org-font-lock-set-keywords-hook nil
6201 "Functions that can manipulate `org-font-lock-extra-keywords'.
6202 This is called after `org-font-lock-extra-keywords' is defined, but before
6203 it is installed to be used by font lock. This can be useful if something
6204 needs to be inserted at a specific position in the font-lock sequence.")
6206 (defun org-font-lock-hook (limit)
6207 "Run `org-font-lock-hook' within LIMIT."
6208 (run-hook-with-args 'org-font-lock-hook limit))
6210 (defun org-set-font-lock-defaults ()
6211 "Set font lock defaults for the current buffer."
6212 (let* ((em org-fontify-emphasized-text)
6213 (lk org-activate-links)
6214 (org-font-lock-extra-keywords
6215 (list
6216 ;; Call the hook
6217 '(org-font-lock-hook)
6218 ;; Headlines
6219 `(,(if org-fontify-whole-heading-line
6220 "^\\(\\**\\)\\(\\* \\)\\(.*\n?\\)"
6221 "^\\(\\**\\)\\(\\* \\)\\(.*\\)")
6222 (1 (org-get-level-face 1))
6223 (2 (org-get-level-face 2))
6224 (3 (org-get-level-face 3)))
6225 ;; Table lines
6226 '("^[ \t]*\\(\\(|\\|\\+-[-+]\\).*\\S-\\)"
6227 (1 'org-table t))
6228 ;; Table internals
6229 '("^[ \t]*|\\(?:.*?|\\)? *\\(:?=[^|\n]*\\)" (1 'org-formula t))
6230 '("^[ \t]*| *\\([#*]\\) *|" (1 'org-formula t))
6231 '("^[ \t]*|\\( *\\([$!_^/]\\) *|.*\\)|" (1 'org-formula t))
6232 '("| *\\(<[lrc]?[0-9]*>\\)" (1 'org-formula t))
6233 ;; Drawers
6234 (list org-drawer-regexp '(0 'org-special-keyword t))
6235 (list "^[ \t]*:END:" '(0 'org-special-keyword t))
6236 ;; Properties
6237 (list org-property-re
6238 '(1 'org-special-keyword t)
6239 '(3 'org-property-value t))
6240 ;; Links
6241 (if (memq 'tag lk) '(org-activate-tags (1 'org-tag prepend)))
6242 (if (memq 'angle lk) '(org-activate-angle-links (0 'org-link t)))
6243 (if (memq 'plain lk) '(org-activate-plain-links (0 'org-link t)))
6244 (if (memq 'bracket lk) '(org-activate-bracket-links (0 'org-link t)))
6245 (if (memq 'radio lk) '(org-activate-target-links (0 'org-link t)))
6246 (if (memq 'date lk) '(org-activate-dates (0 'org-date t)))
6247 (if (memq 'footnote lk) '(org-activate-footnote-links))
6248 ;; Targets.
6249 (list org-any-target-regexp '(0 'org-target t))
6250 ;; Diary sexps.
6251 '("^&?%%(.*\\|<%%([^>\n]*?>" (0 'org-sexp-date t))
6252 ;; Macro
6253 '("{{{.+}}}" (0 'org-macro t))
6254 '(org-hide-wide-columns (0 nil append))
6255 ;; TODO keyword
6256 (list (format org-heading-keyword-regexp-format
6257 org-todo-regexp)
6258 '(2 (org-get-todo-face 2) t))
6259 ;; DONE
6260 (if org-fontify-done-headline
6261 (list (format org-heading-keyword-regexp-format
6262 (concat
6263 "\\(?:"
6264 (mapconcat 'regexp-quote org-done-keywords "\\|")
6265 "\\)"))
6266 '(2 'org-headline-done t))
6267 nil)
6268 ;; Priorities
6269 '(org-font-lock-add-priority-faces)
6270 ;; Tags
6271 '(org-font-lock-add-tag-faces)
6272 ;; Tags groups
6273 (if (and org-group-tags org-tag-groups-alist)
6274 (list (concat org-outline-regexp-bol ".+\\(:"
6275 (regexp-opt (mapcar 'car org-tag-groups-alist))
6276 ":\\).*$")
6277 '(1 'org-tag-group prepend)))
6278 ;; Special keywords
6279 (list (concat "\\<" org-deadline-string) '(0 'org-special-keyword t))
6280 (list (concat "\\<" org-scheduled-string) '(0 'org-special-keyword t))
6281 (list (concat "\\<" org-closed-string) '(0 'org-special-keyword t))
6282 (list (concat "\\<" org-clock-string) '(0 'org-special-keyword t))
6283 ;; Emphasis
6284 (if em
6285 (if (featurep 'xemacs)
6286 '(org-do-emphasis-faces (0 nil append))
6287 '(org-do-emphasis-faces)))
6288 ;; Checkboxes
6289 '("^[ \t]*\\(?:[-+*]\\|[0-9]+[.)]\\)[ \t]+\\(?:\\[@\\(?:start:\\)?[0-9]+\\][ \t]*\\)?\\(\\[[- X]\\]\\)"
6290 1 'org-checkbox prepend)
6291 (if (cdr (assq 'checkbox org-list-automatic-rules))
6292 '("\\[\\([0-9]*%\\)\\]\\|\\[\\([0-9]*\\)/\\([0-9]*\\)\\]"
6293 (0 (org-get-checkbox-statistics-face) t)))
6294 ;; Description list items
6295 '("^[ \t]*[-+*][ \t]+\\(.*?[ \t]+::\\)\\([ \t]+\\|$\\)"
6296 1 'org-list-dt prepend)
6297 ;; ARCHIVEd headings
6298 (list (concat
6299 org-outline-regexp-bol
6300 "\\(.*:" org-archive-tag ":.*\\)")
6301 '(1 'org-archived prepend))
6302 ;; Specials
6303 '(org-do-latex-and-related)
6304 '(org-fontify-entities)
6305 '(org-raise-scripts)
6306 ;; Code
6307 '(org-activate-code (1 'org-code t))
6308 ;; COMMENT
6309 (list (format org-heading-keyword-regexp-format
6310 (concat "\\("
6311 org-comment-string "\\|" org-quote-string
6312 "\\)"))
6313 '(2 'org-special-keyword t))
6314 ;; Blocks and meta lines
6315 '(org-fontify-meta-lines-and-blocks))))
6316 (setq org-font-lock-extra-keywords (delq nil org-font-lock-extra-keywords))
6317 (run-hooks 'org-font-lock-set-keywords-hook)
6318 ;; Now set the full font-lock-keywords
6319 (org-set-local 'org-font-lock-keywords org-font-lock-extra-keywords)
6320 (org-set-local 'font-lock-defaults
6321 '(org-font-lock-keywords t nil nil backward-paragraph))
6322 (kill-local-variable 'font-lock-keywords) nil))
6324 (defun org-toggle-pretty-entities ()
6325 "Toggle the composition display of entities as UTF8 characters."
6326 (interactive)
6327 (org-set-local 'org-pretty-entities (not org-pretty-entities))
6328 (org-restart-font-lock)
6329 (if org-pretty-entities
6330 (message "Entities are now displayed as UTF8 characters")
6331 (save-restriction
6332 (widen)
6333 (org-decompose-region (point-min) (point-max))
6334 (message "Entities are now displayed as plain text"))))
6336 (defvar org-custom-properties-overlays nil
6337 "List of overlays used for custom properties.")
6338 (make-variable-buffer-local 'org-custom-properties-overlays)
6340 (defun org-toggle-custom-properties-visibility ()
6341 "Display or hide properties in `org-custom-properties'."
6342 (interactive)
6343 (if org-custom-properties-overlays
6344 (progn (mapc 'delete-overlay org-custom-properties-overlays)
6345 (setq org-custom-properties-overlays nil))
6346 (unless (not org-custom-properties)
6347 (save-excursion
6348 (save-restriction
6349 (widen)
6350 (goto-char (point-min))
6351 (while (re-search-forward org-property-re nil t)
6352 (mapc (lambda(p)
6353 (when (equal p (substring (match-string 1) 1 -1))
6354 (let ((o (make-overlay (match-beginning 0) (1+ (match-end 0)))))
6355 (overlay-put o 'invisible t)
6356 (overlay-put o 'org-custom-property t)
6357 (push o org-custom-properties-overlays))))
6358 org-custom-properties)))))))
6360 (defun org-fontify-entities (limit)
6361 "Find an entity to fontify."
6362 (let (ee)
6363 (when org-pretty-entities
6364 (catch 'match
6365 (while (re-search-forward
6366 "\\\\\\(there4\\|sup[123]\\|frac[13][24]\\|[a-zA-Z]+\\)\\($\\|{}\\|[^[:alpha:]\n]\\)"
6367 limit t)
6368 (if (and (not (org-in-indented-comment-line))
6369 (setq ee (org-entity-get (match-string 1)))
6370 (= (length (nth 6 ee)) 1))
6371 (let*
6372 ((end (if (equal (match-string 2) "{}")
6373 (match-end 2)
6374 (match-end 1))))
6375 (add-text-properties
6376 (match-beginning 0) end
6377 (list 'font-lock-fontified t))
6378 (compose-region (match-beginning 0) end
6379 (nth 6 ee) nil)
6380 (backward-char 1)
6381 (throw 'match t))))
6382 nil))))
6384 (defun org-fontify-like-in-org-mode (s &optional odd-levels)
6385 "Fontify string S like in Org-mode."
6386 (with-temp-buffer
6387 (insert s)
6388 (let ((org-odd-levels-only odd-levels))
6389 (org-mode)
6390 (font-lock-fontify-buffer)
6391 (buffer-string))))
6393 (defvar org-m nil)
6394 (defvar org-l nil)
6395 (defvar org-f nil)
6396 (defun org-get-level-face (n)
6397 "Get the right face for match N in font-lock matching of headlines."
6398 (setq org-l (- (match-end 2) (match-beginning 1) 1))
6399 (if org-odd-levels-only (setq org-l (1+ (/ org-l 2))))
6400 (if org-cycle-level-faces
6401 (setq org-f (nth (% (1- org-l) org-n-level-faces) org-level-faces))
6402 (setq org-f (nth (1- (min org-l org-n-level-faces)) org-level-faces)))
6403 (cond
6404 ((eq n 1) (if org-hide-leading-stars 'org-hide org-f))
6405 ((eq n 2) org-f)
6406 (t (if org-level-color-stars-only nil org-f))))
6409 (defun org-get-todo-face (kwd)
6410 "Get the right face for a TODO keyword KWD.
6411 If KWD is a number, get the corresponding match group."
6412 (if (numberp kwd) (setq kwd (match-string kwd)))
6413 (or (org-face-from-face-or-color
6414 'todo 'org-todo (cdr (assoc kwd org-todo-keyword-faces)))
6415 (and (member kwd org-done-keywords) 'org-done)
6416 'org-todo))
6418 (defun org-face-from-face-or-color (context inherit face-or-color)
6419 "Create a face list that inherits INHERIT, but sets the foreground color.
6420 When FACE-OR-COLOR is not a string, just return it."
6421 (if (stringp face-or-color)
6422 (list :inherit inherit
6423 (cdr (assoc context org-faces-easy-properties))
6424 face-or-color)
6425 face-or-color))
6427 (defun org-font-lock-add-tag-faces (limit)
6428 "Add the special tag faces."
6429 (when (and org-tag-faces org-tags-special-faces-re)
6430 (while (re-search-forward org-tags-special-faces-re limit t)
6431 (add-text-properties (match-beginning 1) (match-end 1)
6432 (list 'face (org-get-tag-face 1)
6433 'font-lock-fontified t))
6434 (backward-char 1))))
6436 (defun org-font-lock-add-priority-faces (limit)
6437 "Add the special priority faces."
6438 (while (re-search-forward "\\[#\\([A-Z0-9]\\)\\]" limit t)
6439 (when (save-match-data (org-at-heading-p))
6440 (add-text-properties
6441 (match-beginning 0) (match-end 0)
6442 (list 'face (or (org-face-from-face-or-color
6443 'priority 'org-priority
6444 (cdr (assoc (char-after (match-beginning 1))
6445 org-priority-faces)))
6446 'org-priority)
6447 'font-lock-fontified t)))))
6449 (defun org-get-tag-face (kwd)
6450 "Get the right face for a TODO keyword KWD.
6451 If KWD is a number, get the corresponding match group."
6452 (if (numberp kwd) (setq kwd (match-string kwd)))
6453 (or (org-face-from-face-or-color
6454 'tag 'org-tag (cdr (assoc kwd org-tag-faces)))
6455 'org-tag))
6457 (defun org-unfontify-region (beg end &optional maybe_loudly)
6458 "Remove fontification and activation overlays from links."
6459 (font-lock-default-unfontify-region beg end)
6460 (let* ((buffer-undo-list t)
6461 (inhibit-read-only t) (inhibit-point-motion-hooks t)
6462 (inhibit-modification-hooks t)
6463 deactivate-mark buffer-file-name buffer-file-truename)
6464 (org-decompose-region beg end)
6465 (remove-text-properties beg end
6466 '(mouse-face t keymap t org-linked-text t
6467 invisible t intangible t
6468 org-no-flyspell t org-emphasis t))
6469 (org-remove-font-lock-display-properties beg end)))
6471 (defconst org-script-display '(((raise -0.3) (height 0.7))
6472 ((raise 0.3) (height 0.7))
6473 ((raise -0.5))
6474 ((raise 0.5)))
6475 "Display properties for showing superscripts and subscripts.")
6477 (defun org-remove-font-lock-display-properties (beg end)
6478 "Remove specific display properties that have been added by font lock.
6479 The will remove the raise properties that are used to show superscripts
6480 and subscripts."
6481 (let (next prop)
6482 (while (< beg end)
6483 (setq next (next-single-property-change beg 'display nil end)
6484 prop (get-text-property beg 'display))
6485 (if (member prop org-script-display)
6486 (put-text-property beg next 'display nil))
6487 (setq beg next))))
6489 (defun org-raise-scripts (limit)
6490 "Add raise properties to sub/superscripts."
6491 (when (and org-pretty-entities org-pretty-entities-include-sub-superscripts)
6492 (if (re-search-forward
6493 (if (eq org-use-sub-superscripts t)
6494 org-match-substring-regexp
6495 org-match-substring-with-braces-regexp)
6496 limit t)
6497 (let* ((pos (point)) table-p comment-p
6498 (mpos (match-beginning 3))
6499 (emph-p (get-text-property mpos 'org-emphasis))
6500 (link-p (get-text-property mpos 'mouse-face))
6501 (keyw-p (eq 'org-special-keyword (get-text-property mpos 'face))))
6502 (goto-char (point-at-bol))
6503 (setq table-p (org-looking-at-p org-table-dataline-regexp)
6504 comment-p (org-looking-at-p "^[ \t]*#[ +]"))
6505 (goto-char pos)
6506 ;; Handle a_b^c
6507 (if (member (char-after) '(?_ ?^)) (goto-char (1- pos)))
6508 (if (or comment-p emph-p link-p keyw-p)
6510 (put-text-property (match-beginning 3) (match-end 0)
6511 'display
6512 (if (equal (char-after (match-beginning 2)) ?^)
6513 (nth (if table-p 3 1) org-script-display)
6514 (nth (if table-p 2 0) org-script-display)))
6515 (add-text-properties (match-beginning 2) (match-end 2)
6516 (list 'invisible t
6517 'org-dwidth t 'org-dwidth-n 1))
6518 (if (and (eq (char-after (match-beginning 3)) ?{)
6519 (eq (char-before (match-end 3)) ?}))
6520 (progn
6521 (add-text-properties
6522 (match-beginning 3) (1+ (match-beginning 3))
6523 (list 'invisible t 'org-dwidth t 'org-dwidth-n 1))
6524 (add-text-properties
6525 (1- (match-end 3)) (match-end 3)
6526 (list 'invisible t 'org-dwidth t 'org-dwidth-n 1))))
6527 t)))))
6529 ;;;; Visibility cycling, including org-goto and indirect buffer
6531 ;;; Cycling
6533 (defvar org-cycle-global-status nil)
6534 (make-variable-buffer-local 'org-cycle-global-status)
6535 (put 'org-cycle-global-status 'org-state t)
6536 (defvar org-cycle-subtree-status nil)
6537 (make-variable-buffer-local 'org-cycle-subtree-status)
6538 (put 'org-cycle-subtree-status 'org-state t)
6540 (defvar org-inlinetask-min-level)
6542 (defun org-unlogged-message (&rest args)
6543 "Display a message, but avoid logging it in the *Messages* buffer."
6544 (let ((message-log-max nil))
6545 (apply 'message args)))
6547 ;;;###autoload
6548 (defun org-cycle (&optional arg)
6549 "TAB-action and visibility cycling for Org-mode.
6551 This is the command invoked in Org-mode by the TAB key. Its main purpose
6552 is outline visibility cycling, but it also invokes other actions
6553 in special contexts.
6555 - When this function is called with a prefix argument, rotate the entire
6556 buffer through 3 states (global cycling)
6557 1. OVERVIEW: Show only top-level headlines.
6558 2. CONTENTS: Show all headlines of all levels, but no body text.
6559 3. SHOW ALL: Show everything.
6560 When called with two `C-u C-u' prefixes, switch to the startup visibility,
6561 determined by the variable `org-startup-folded', and by any VISIBILITY
6562 properties in the buffer.
6563 When called with three `C-u C-u C-u' prefixed, show the entire buffer,
6564 including any drawers.
6566 - When inside a table, re-align the table and move to the next field.
6568 - When point is at the beginning of a headline, rotate the subtree started
6569 by this line through 3 different states (local cycling)
6570 1. FOLDED: Only the main headline is shown.
6571 2. CHILDREN: The main headline and the direct children are shown.
6572 From this state, you can move to one of the children
6573 and zoom in further.
6574 3. SUBTREE: Show the entire subtree, including body text.
6575 If there is no subtree, switch directly from CHILDREN to FOLDED.
6577 - When point is at the beginning of an empty headline and the variable
6578 `org-cycle-level-after-item/entry-creation' is set, cycle the level
6579 of the headline by demoting and promoting it to likely levels. This
6580 speeds up creation document structure by pressing TAB once or several
6581 times right after creating a new headline.
6583 - When there is a numeric prefix, go up to a heading with level ARG, do
6584 a `show-subtree' and return to the previous cursor position. If ARG
6585 is negative, go up that many levels.
6587 - When point is not at the beginning of a headline, execute the global
6588 binding for TAB, which is re-indenting the line. See the option
6589 `org-cycle-emulate-tab' for details.
6591 - Special case: if point is at the beginning of the buffer and there is
6592 no headline in line 1, this function will act as if called with prefix arg
6593 (C-u TAB, same as S-TAB) also when called without prefix arg.
6594 But only if also the variable `org-cycle-global-at-bob' is t."
6595 (interactive "P")
6596 (org-load-modules-maybe)
6597 (unless (or (run-hook-with-args-until-success 'org-tab-first-hook)
6598 (and org-cycle-level-after-item/entry-creation
6599 (or (org-cycle-level)
6600 (org-cycle-item-indentation))))
6601 (let* ((limit-level
6602 (or org-cycle-max-level
6603 (and (boundp 'org-inlinetask-min-level)
6604 org-inlinetask-min-level
6605 (1- org-inlinetask-min-level))))
6606 (nstars (and limit-level
6607 (if org-odd-levels-only
6608 (and limit-level (1- (* limit-level 2)))
6609 limit-level)))
6610 (org-outline-regexp
6611 (if (not (derived-mode-p 'org-mode))
6612 outline-regexp
6613 (concat "\\*" (if nstars (format "\\{1,%d\\} " nstars) "+ "))))
6614 (bob-special (and org-cycle-global-at-bob (not arg) (bobp)
6615 (not (looking-at org-outline-regexp))))
6616 (org-cycle-hook
6617 (if bob-special
6618 (delq 'org-optimize-window-after-visibility-change
6619 (copy-sequence org-cycle-hook))
6620 org-cycle-hook))
6621 (pos (point)))
6623 (if (or bob-special (equal arg '(4)))
6624 ;; special case: use global cycling
6625 (setq arg t))
6627 (cond
6629 ((equal arg '(16))
6630 (setq last-command 'dummy)
6631 (org-set-startup-visibility)
6632 (org-unlogged-message "Startup visibility, plus VISIBILITY properties"))
6634 ((equal arg '(64))
6635 (show-all)
6636 (org-unlogged-message "Entire buffer visible, including drawers"))
6638 ;; Table: enter it or move to the next field.
6639 ((org-at-table-p 'any)
6640 (if (org-at-table.el-p)
6641 (message "Use C-c ' to edit table.el tables")
6642 (if arg (org-table-edit-field t)
6643 (org-table-justify-field-maybe)
6644 (call-interactively 'org-table-next-field))))
6646 ((run-hook-with-args-until-success
6647 'org-tab-after-check-for-table-hook))
6649 ;; Global cycling: delegate to `org-cycle-internal-global'.
6650 ((eq arg t) (org-cycle-internal-global))
6652 ;; Drawers: delegate to `org-flag-drawer'.
6653 ((save-excursion
6654 (beginning-of-line 1)
6655 (looking-at org-drawer-regexp))
6656 (org-flag-drawer ; toggle block visibility
6657 (not (get-char-property (match-end 0) 'invisible))))
6659 ;; Show-subtree, ARG levels up from here.
6660 ((integerp arg)
6661 (save-excursion
6662 (org-back-to-heading)
6663 (outline-up-heading (if (< arg 0) (- arg)
6664 (- (funcall outline-level) arg)))
6665 (org-show-subtree)))
6667 ;; Inline task: delegate to `org-inlinetask-toggle-visibility'.
6668 ((and (featurep 'org-inlinetask)
6669 (org-inlinetask-at-task-p)
6670 (or (bolp) (not (eq org-cycle-emulate-tab 'exc-hl-bol))))
6671 (org-inlinetask-toggle-visibility))
6673 ((org-try-cdlatex-tab))
6675 ;; At an item/headline: delegate to `org-cycle-internal-local'.
6676 ((and (or (and org-cycle-include-plain-lists (org-at-item-p))
6677 (save-excursion (beginning-of-line 1)
6678 (looking-at org-outline-regexp)))
6679 (or (bolp) (not (eq org-cycle-emulate-tab 'exc-hl-bol))))
6680 (org-cycle-internal-local))
6682 ;; From there: TAB emulation and template completion.
6683 (buffer-read-only (org-back-to-heading))
6685 ((run-hook-with-args-until-success
6686 'org-tab-after-check-for-cycling-hook))
6688 ((org-try-structure-completion))
6690 ((run-hook-with-args-until-success
6691 'org-tab-before-tab-emulation-hook))
6693 ((and (eq org-cycle-emulate-tab 'exc-hl-bol)
6694 (or (not (bolp))
6695 (not (looking-at org-outline-regexp))))
6696 (call-interactively (global-key-binding "\t")))
6698 ((if (and (memq org-cycle-emulate-tab '(white whitestart))
6699 (save-excursion (beginning-of-line 1) (looking-at "[ \t]*"))
6700 (or (and (eq org-cycle-emulate-tab 'white)
6701 (= (match-end 0) (point-at-eol)))
6702 (and (eq org-cycle-emulate-tab 'whitestart)
6703 (>= (match-end 0) pos))))
6705 (eq org-cycle-emulate-tab t))
6706 (call-interactively (global-key-binding "\t")))
6708 (t (save-excursion
6709 (org-back-to-heading)
6710 (org-cycle)))))))
6712 (defun org-cycle-internal-global ()
6713 "Do the global cycling action."
6714 ;; Hack to avoid display of messages for .org attachments in Gnus
6715 (let ((ga (string-match "\\*fontification" (buffer-name))))
6716 (cond
6717 ((and (eq last-command this-command)
6718 (eq org-cycle-global-status 'overview))
6719 ;; We just created the overview - now do table of contents
6720 ;; This can be slow in very large buffers, so indicate action
6721 (run-hook-with-args 'org-pre-cycle-hook 'contents)
6722 (unless ga (org-unlogged-message "CONTENTS..."))
6723 (org-content)
6724 (unless ga (org-unlogged-message "CONTENTS...done"))
6725 (setq org-cycle-global-status 'contents)
6726 (run-hook-with-args 'org-cycle-hook 'contents))
6728 ((and (eq last-command this-command)
6729 (eq org-cycle-global-status 'contents))
6730 ;; We just showed the table of contents - now show everything
6731 (run-hook-with-args 'org-pre-cycle-hook 'all)
6732 (show-all)
6733 (unless ga (org-unlogged-message "SHOW ALL"))
6734 (setq org-cycle-global-status 'all)
6735 (run-hook-with-args 'org-cycle-hook 'all))
6738 ;; Default action: go to overview
6739 (run-hook-with-args 'org-pre-cycle-hook 'overview)
6740 (org-overview)
6741 (unless ga (org-unlogged-message "OVERVIEW"))
6742 (setq org-cycle-global-status 'overview)
6743 (run-hook-with-args 'org-cycle-hook 'overview)))))
6745 (defvar org-called-with-limited-levels);Dyn-bound in ̀org-with-limited-levels'.
6747 (defun org-cycle-internal-local ()
6748 "Do the local cycling action."
6749 (let ((goal-column 0) eoh eol eos has-children children-skipped struct)
6750 ;; First, determine end of headline (EOH), end of subtree or item
6751 ;; (EOS), and if item or heading has children (HAS-CHILDREN).
6752 (save-excursion
6753 (if (org-at-item-p)
6754 (progn
6755 (beginning-of-line)
6756 (setq struct (org-list-struct))
6757 (setq eoh (point-at-eol))
6758 (setq eos (org-list-get-item-end-before-blank (point) struct))
6759 (setq has-children (org-list-has-child-p (point) struct)))
6760 (org-back-to-heading)
6761 (setq eoh (save-excursion (outline-end-of-heading) (point)))
6762 (setq eos (save-excursion (1- (org-end-of-subtree t t))))
6763 (setq has-children
6764 (or (save-excursion
6765 (let ((level (funcall outline-level)))
6766 (outline-next-heading)
6767 (and (org-at-heading-p t)
6768 (> (funcall outline-level) level))))
6769 (save-excursion
6770 (org-list-search-forward (org-item-beginning-re) eos t)))))
6771 ;; Determine end invisible part of buffer (EOL)
6772 (beginning-of-line 2)
6773 ;; XEmacs doesn't have `next-single-char-property-change'
6774 (if (featurep 'xemacs)
6775 (while (and (not (eobp)) ;; this is like `next-line'
6776 (get-char-property (1- (point)) 'invisible))
6777 (beginning-of-line 2))
6778 (while (and (not (eobp)) ;; this is like `next-line'
6779 (get-char-property (1- (point)) 'invisible))
6780 (goto-char (next-single-char-property-change (point) 'invisible))
6781 (and (eolp) (beginning-of-line 2))))
6782 (setq eol (point)))
6783 ;; Find out what to do next and set `this-command'
6784 (cond
6785 ((= eos eoh)
6786 ;; Nothing is hidden behind this heading
6787 (unless (org-before-first-heading-p)
6788 (run-hook-with-args 'org-pre-cycle-hook 'empty))
6789 (org-unlogged-message "EMPTY ENTRY")
6790 (setq org-cycle-subtree-status nil)
6791 (save-excursion
6792 (goto-char eos)
6793 (outline-next-heading)
6794 (if (outline-invisible-p) (org-flag-heading nil))))
6795 ((and (or (>= eol eos)
6796 (not (string-match "\\S-" (buffer-substring eol eos))))
6797 (or has-children
6798 (not (setq children-skipped
6799 org-cycle-skip-children-state-if-no-children))))
6800 ;; Entire subtree is hidden in one line: children view
6801 (unless (org-before-first-heading-p)
6802 (run-hook-with-args 'org-pre-cycle-hook 'children))
6803 (if (org-at-item-p)
6804 (org-list-set-item-visibility (point-at-bol) struct 'children)
6805 (org-show-entry)
6806 (org-with-limited-levels (show-children))
6807 ;; FIXME: This slows down the func way too much.
6808 ;; How keep drawers hidden in subtree anyway?
6809 ;; (when (memq 'org-cycle-hide-drawers org-cycle-hook)
6810 ;; (org-cycle-hide-drawers 'subtree))
6812 ;; Fold every list in subtree to top-level items.
6813 (when (eq org-cycle-include-plain-lists 'integrate)
6814 (save-excursion
6815 (org-back-to-heading)
6816 (while (org-list-search-forward (org-item-beginning-re) eos t)
6817 (beginning-of-line 1)
6818 (let* ((struct (org-list-struct))
6819 (prevs (org-list-prevs-alist struct))
6820 (end (org-list-get-bottom-point struct)))
6821 (mapc (lambda (e) (org-list-set-item-visibility e struct 'folded))
6822 (org-list-get-all-items (point) struct prevs))
6823 (goto-char (if (< end eos) end eos)))))))
6824 (org-unlogged-message "CHILDREN")
6825 (save-excursion
6826 (goto-char eos)
6827 (outline-next-heading)
6828 (if (outline-invisible-p) (org-flag-heading nil)))
6829 (setq org-cycle-subtree-status 'children)
6830 (unless (org-before-first-heading-p)
6831 (run-hook-with-args 'org-cycle-hook 'children)))
6832 ((or children-skipped
6833 (and (eq last-command this-command)
6834 (eq org-cycle-subtree-status 'children)))
6835 ;; We just showed the children, or no children are there,
6836 ;; now show everything.
6837 (unless (org-before-first-heading-p)
6838 (run-hook-with-args 'org-pre-cycle-hook 'subtree))
6839 (outline-flag-region eoh eos nil)
6840 (org-unlogged-message
6841 (if children-skipped "SUBTREE (NO CHILDREN)" "SUBTREE"))
6842 (setq org-cycle-subtree-status 'subtree)
6843 (unless (org-before-first-heading-p)
6844 (run-hook-with-args 'org-cycle-hook 'subtree)))
6846 ;; Default action: hide the subtree.
6847 (run-hook-with-args 'org-pre-cycle-hook 'folded)
6848 (outline-flag-region eoh eos t)
6849 (org-unlogged-message "FOLDED")
6850 (setq org-cycle-subtree-status 'folded)
6851 (unless (org-before-first-heading-p)
6852 (run-hook-with-args 'org-cycle-hook 'folded))))))
6854 ;;;###autoload
6855 (defun org-global-cycle (&optional arg)
6856 "Cycle the global visibility. For details see `org-cycle'.
6857 With \\[universal-argument] prefix arg, switch to startup visibility.
6858 With a numeric prefix, show all headlines up to that level."
6859 (interactive "P")
6860 (let ((org-cycle-include-plain-lists
6861 (if (derived-mode-p 'org-mode) org-cycle-include-plain-lists nil)))
6862 (cond
6863 ((integerp arg)
6864 (show-all)
6865 (hide-sublevels arg)
6866 (setq org-cycle-global-status 'contents))
6867 ((equal arg '(4))
6868 (org-set-startup-visibility)
6869 (org-unlogged-message "Startup visibility, plus VISIBILITY properties."))
6871 (org-cycle '(4))))))
6873 (defun org-set-startup-visibility ()
6874 "Set the visibility required by startup options and properties."
6875 (cond
6876 ((eq org-startup-folded t)
6877 (org-cycle '(4)))
6878 ((eq org-startup-folded 'content)
6879 (let ((this-command 'org-cycle) (last-command 'org-cycle))
6880 (org-cycle '(4)) (org-cycle '(4)))))
6881 (unless (eq org-startup-folded 'showeverything)
6882 (if org-hide-block-startup (org-hide-block-all))
6883 (org-set-visibility-according-to-property 'no-cleanup)
6884 (org-cycle-hide-archived-subtrees 'all)
6885 (org-cycle-hide-drawers 'all)
6886 (org-cycle-show-empty-lines t)))
6888 (defun org-set-visibility-according-to-property (&optional no-cleanup)
6889 "Switch subtree visibilities according to :VISIBILITY: property."
6890 (interactive)
6891 (let (org-show-entry-below state)
6892 (save-excursion
6893 (goto-char (point-min))
6894 (while (re-search-forward
6895 "^[ \t]*:VISIBILITY:[ \t]+\\([a-z]+\\)"
6896 nil t)
6897 (setq state (match-string 1))
6898 (save-excursion
6899 (org-back-to-heading t)
6900 (hide-subtree)
6901 (org-reveal)
6902 (cond
6903 ((equal state '("fold" "folded"))
6904 (hide-subtree))
6905 ((equal state "children")
6906 (org-show-hidden-entry)
6907 (show-children))
6908 ((equal state "content")
6909 (save-excursion
6910 (save-restriction
6911 (org-narrow-to-subtree)
6912 (org-content))))
6913 ((member state '("all" "showall"))
6914 (show-subtree)))))
6915 (unless no-cleanup
6916 (org-cycle-hide-archived-subtrees 'all)
6917 (org-cycle-hide-drawers 'all)
6918 (org-cycle-show-empty-lines 'all)))))
6920 ;; This function uses outline-regexp instead of the more fundamental
6921 ;; org-outline-regexp so that org-cycle-global works outside of Org
6922 ;; buffers, where outline-regexp is needed.
6923 (defun org-overview ()
6924 "Switch to overview mode, showing only top-level headlines.
6925 Really, this shows all headlines with level equal or greater than the level
6926 of the first headline in the buffer. This is important, because if the
6927 first headline is not level one, then (hide-sublevels 1) gives confusing
6928 results."
6929 (interactive)
6930 (let ((pos (point))
6931 (level (save-excursion
6932 (goto-char (point-min))
6933 (if (re-search-forward (concat "^" outline-regexp) nil t)
6934 (progn
6935 (goto-char (match-beginning 0))
6936 (funcall outline-level))))))
6937 (and level (hide-sublevels level))
6938 (recenter '(4))
6939 (goto-char pos)))
6941 (defun org-content (&optional arg)
6942 "Show all headlines in the buffer, like a table of contents.
6943 With numerical argument N, show content up to level N."
6944 (interactive "P")
6945 (save-excursion
6946 ;; Visit all headings and show their offspring
6947 (and (integerp arg) (org-overview))
6948 (goto-char (point-max))
6949 (catch 'exit
6950 (while (and (progn (condition-case nil
6951 (outline-previous-visible-heading 1)
6952 (error (goto-char (point-min))))
6954 (looking-at org-outline-regexp))
6955 (if (integerp arg)
6956 (show-children (1- arg))
6957 (show-branches))
6958 (if (bobp) (throw 'exit nil))))))
6961 (defun org-optimize-window-after-visibility-change (state)
6962 "Adjust the window after a change in outline visibility.
6963 This function is the default value of the hook `org-cycle-hook'."
6964 (when (get-buffer-window (current-buffer))
6965 (cond
6966 ((eq state 'content) nil)
6967 ((eq state 'all) nil)
6968 ((eq state 'folded) nil)
6969 ((eq state 'children) (or (org-subtree-end-visible-p) (recenter 1)))
6970 ((eq state 'subtree) (or (org-subtree-end-visible-p) (recenter 1))))))
6972 (defun org-remove-empty-overlays-at (pos)
6973 "Remove outline overlays that do not contain non-white stuff."
6974 (mapc
6975 (lambda (o)
6976 (and (eq 'outline (overlay-get o 'invisible))
6977 (not (string-match "\\S-" (buffer-substring (overlay-start o)
6978 (overlay-end o))))
6979 (delete-overlay o)))
6980 (overlays-at pos)))
6982 (defun org-clean-visibility-after-subtree-move ()
6983 "Fix visibility issues after moving a subtree."
6984 ;; First, find a reasonable region to look at:
6985 ;; Start two siblings above, end three below
6986 (let* ((beg (save-excursion
6987 (and (org-get-last-sibling)
6988 (org-get-last-sibling))
6989 (point)))
6990 (end (save-excursion
6991 (and (org-get-next-sibling)
6992 (org-get-next-sibling)
6993 (org-get-next-sibling))
6994 (if (org-at-heading-p)
6995 (point-at-eol)
6996 (point))))
6997 (level (looking-at "\\*+"))
6998 (re (if level (concat "^" (regexp-quote (match-string 0)) " "))))
6999 (save-excursion
7000 (save-restriction
7001 (narrow-to-region beg end)
7002 (when re
7003 ;; Properly fold already folded siblings
7004 (goto-char (point-min))
7005 (while (re-search-forward re nil t)
7006 (if (and (not (outline-invisible-p))
7007 (save-excursion
7008 (goto-char (point-at-eol)) (outline-invisible-p)))
7009 (hide-entry))))
7010 (org-cycle-show-empty-lines 'overview)
7011 (org-cycle-hide-drawers 'overview)))))
7013 (defun org-cycle-show-empty-lines (state)
7014 "Show empty lines above all visible headlines.
7015 The region to be covered depends on STATE when called through
7016 `org-cycle-hook'. Lisp program can use t for STATE to get the
7017 entire buffer covered. Note that an empty line is only shown if there
7018 are at least `org-cycle-separator-lines' empty lines before the headline."
7019 (when (not (= org-cycle-separator-lines 0))
7020 (save-excursion
7021 (let* ((n (abs org-cycle-separator-lines))
7022 (re (cond
7023 ((= n 1) "\\(\n[ \t]*\n\\*+\\) ")
7024 ((= n 2) "^[ \t]*\\(\n[ \t]*\n\\*+\\) ")
7025 (t (let ((ns (number-to-string (- n 2))))
7026 (concat "^\\(?:[ \t]*\n\\)\\{" ns "," ns "\\}"
7027 "[ \t]*\\(\n[ \t]*\n\\*+\\) ")))))
7028 beg end b e)
7029 (cond
7030 ((memq state '(overview contents t))
7031 (setq beg (point-min) end (point-max)))
7032 ((memq state '(children folded))
7033 (setq beg (point) end (progn (org-end-of-subtree t t)
7034 (beginning-of-line 2)
7035 (point)))))
7036 (when beg
7037 (goto-char beg)
7038 (while (re-search-forward re end t)
7039 (unless (get-char-property (match-end 1) 'invisible)
7040 (setq e (match-end 1))
7041 (if (< org-cycle-separator-lines 0)
7042 (setq b (save-excursion
7043 (goto-char (match-beginning 0))
7044 (org-back-over-empty-lines)
7045 (if (save-excursion
7046 (goto-char (max (point-min) (1- (point))))
7047 (org-at-heading-p))
7048 (1- (point))
7049 (point))))
7050 (setq b (match-beginning 1)))
7051 (outline-flag-region b e nil)))))))
7052 ;; Never hide empty lines at the end of the file.
7053 (save-excursion
7054 (goto-char (point-max))
7055 (outline-previous-heading)
7056 (outline-end-of-heading)
7057 (if (and (looking-at "[ \t\n]+")
7058 (= (match-end 0) (point-max)))
7059 (outline-flag-region (point) (match-end 0) nil))))
7061 (defun org-show-empty-lines-in-parent ()
7062 "Move to the parent and re-show empty lines before visible headlines."
7063 (save-excursion
7064 (let ((context (if (org-up-heading-safe) 'children 'overview)))
7065 (org-cycle-show-empty-lines context))))
7067 (defun org-files-list ()
7068 "Return `org-agenda-files' list, plus all open org-mode files.
7069 This is useful for operations that need to scan all of a user's
7070 open and agenda-wise Org files."
7071 (let ((files (mapcar 'expand-file-name (org-agenda-files))))
7072 (dolist (buf (buffer-list))
7073 (with-current-buffer buf
7074 (if (and (derived-mode-p 'org-mode) (buffer-file-name))
7075 (let ((file (expand-file-name (buffer-file-name))))
7076 (unless (member file files)
7077 (push file files))))))
7078 files))
7080 (defsubst org-entry-beginning-position ()
7081 "Return the beginning position of the current entry."
7082 (save-excursion (outline-back-to-heading t) (point)))
7084 (defsubst org-entry-end-position ()
7085 "Return the end position of the current entry."
7086 (save-excursion (outline-next-heading) (point)))
7088 (defun org-cycle-hide-drawers (state &optional exceptions)
7089 "Re-hide all drawers after a visibility state change.
7090 When non-nil, optional argument EXCEPTIONS is a list of strings
7091 specifying which drawers should not be hidden."
7092 (when (and (derived-mode-p 'org-mode)
7093 (not (memq state '(overview folded contents))))
7094 (save-excursion
7095 (let* ((globalp (memq state '(contents all)))
7096 (beg (if globalp (point-min) (point)))
7097 (end (if globalp (point-max)
7098 (if (eq state 'children)
7099 (save-excursion (outline-next-heading) (point))
7100 (org-end-of-subtree t)))))
7101 (goto-char beg)
7102 (while (re-search-forward org-drawer-regexp end t)
7103 (unless (member-ignore-case (match-string 1) exceptions)
7104 (org-flag-drawer t)))))))
7106 (defun org-cycle-hide-inline-tasks (state)
7107 "Re-hide inline tasks when switching to 'contents or 'children
7108 visibility state."
7109 (case state
7110 (contents
7111 (when (org-bound-and-true-p org-inlinetask-min-level)
7112 (hide-sublevels (1- org-inlinetask-min-level))))
7113 (children
7114 (when (featurep 'org-inlinetask)
7115 (save-excursion
7116 (while (and (outline-next-heading)
7117 (org-inlinetask-at-task-p))
7118 (org-inlinetask-toggle-visibility)
7119 (org-inlinetask-goto-end)))))))
7121 (defun org-flag-drawer (flag &optional element)
7122 "When FLAG is non-nil, hide the drawer we are at.
7123 Otherwise make it visible. When optional argument ELEMENT is
7124 a parsed drawer, as returned by `org-element-at-point', hide or
7125 show that drawer instead."
7126 (let ((drawer (or element (org-element-at-point))))
7127 (when (memq (org-element-type drawer) '(drawer property-drawer))
7128 (save-excursion
7129 (goto-char (org-element-property :post-affiliated drawer))
7130 (outline-flag-region
7131 (line-end-position)
7132 (progn (goto-char (org-element-property :end drawer))
7133 (skip-chars-backward " \r\t\n")
7134 (line-end-position))
7135 flag)))))
7137 (defun org-subtree-end-visible-p ()
7138 "Is the end of the current subtree visible?"
7139 (pos-visible-in-window-p
7140 (save-excursion (org-end-of-subtree t) (point))))
7142 (defun org-first-headline-recenter (&optional N)
7143 "Move cursor to the first headline and recenter the headline.
7144 Optional argument N means put the headline into the Nth line of the window."
7145 (goto-char (point-min))
7146 (when (re-search-forward (concat "^\\(" org-outline-regexp "\\)") nil t)
7147 (beginning-of-line)
7148 (recenter (prefix-numeric-value N))))
7150 ;;; Saving and restoring visibility
7152 (defun org-outline-overlay-data (&optional use-markers)
7153 "Return a list of the locations of all outline overlays.
7154 These are overlays with the `invisible' property value `outline'.
7155 The return value is a list of cons cells, with start and stop
7156 positions for each overlay.
7157 If USE-MARKERS is set, return the positions as markers."
7158 (let (beg end)
7159 (save-excursion
7160 (save-restriction
7161 (widen)
7162 (delq nil
7163 (mapcar (lambda (o)
7164 (when (eq (overlay-get o 'invisible) 'outline)
7165 (setq beg (overlay-start o)
7166 end (overlay-end o))
7167 (and beg end (> end beg)
7168 (if use-markers
7169 (cons (move-marker (make-marker) beg)
7170 (move-marker (make-marker) end))
7171 (cons beg end)))))
7172 (overlays-in (point-min) (point-max))))))))
7174 (defun org-set-outline-overlay-data (data)
7175 "Create visibility overlays for all positions in DATA.
7176 DATA should have been made by `org-outline-overlay-data'."
7177 (let (o)
7178 (save-excursion
7179 (save-restriction
7180 (widen)
7181 (show-all)
7182 (mapc (lambda (c)
7183 (outline-flag-region (car c) (cdr c) t))
7184 data)))))
7186 ;;; Folding of blocks
7188 (defvar org-hide-block-overlays nil
7189 "Overlays hiding blocks.")
7190 (make-variable-buffer-local 'org-hide-block-overlays)
7192 (defun org-block-map (function &optional start end)
7193 "Call FUNCTION at the head of all source blocks in the current buffer.
7194 Optional arguments START and END can be used to limit the range."
7195 (let ((start (or start (point-min)))
7196 (end (or end (point-max))))
7197 (save-excursion
7198 (goto-char start)
7199 (while (and (< (point) end) (re-search-forward org-block-regexp end t))
7200 (save-excursion
7201 (save-match-data
7202 (goto-char (match-beginning 0))
7203 (funcall function)))))))
7205 (defun org-hide-block-toggle-all ()
7206 "Toggle the visibility of all blocks in the current buffer."
7207 (org-block-map #'org-hide-block-toggle))
7209 (defun org-hide-block-all ()
7210 "Fold all blocks in the current buffer."
7211 (interactive)
7212 (org-show-block-all)
7213 (org-block-map #'org-hide-block-toggle-maybe))
7215 (defun org-show-block-all ()
7216 "Unfold all blocks in the current buffer."
7217 (interactive)
7218 (mapc 'delete-overlay org-hide-block-overlays)
7219 (setq org-hide-block-overlays nil))
7221 (defun org-hide-block-toggle-maybe ()
7222 "Toggle visibility of block at point."
7223 (interactive)
7224 (let ((case-fold-search t))
7225 (if (save-excursion
7226 (beginning-of-line 1)
7227 (looking-at org-block-regexp))
7228 (progn (org-hide-block-toggle)
7229 t) ;; to signal that we took action
7230 nil))) ;; to signal that we did not
7232 (defun org-hide-block-toggle (&optional force)
7233 "Toggle the visibility of the current block."
7234 (interactive)
7235 (save-excursion
7236 (beginning-of-line)
7237 (if (re-search-forward org-block-regexp nil t)
7238 (let ((start (- (match-beginning 4) 1)) ;; beginning of body
7239 (end (match-end 0)) ;; end of entire body
7241 (if (memq t (mapcar (lambda (overlay)
7242 (eq (overlay-get overlay 'invisible)
7243 'org-hide-block))
7244 (overlays-at start)))
7245 (if (or (not force) (eq force 'off))
7246 (mapc (lambda (ov)
7247 (when (member ov org-hide-block-overlays)
7248 (setq org-hide-block-overlays
7249 (delq ov org-hide-block-overlays)))
7250 (when (eq (overlay-get ov 'invisible)
7251 'org-hide-block)
7252 (delete-overlay ov)))
7253 (overlays-at start)))
7254 (setq ov (make-overlay start end))
7255 (overlay-put ov 'invisible 'org-hide-block)
7256 ;; make the block accessible to isearch
7257 (overlay-put
7258 ov 'isearch-open-invisible
7259 (lambda (ov)
7260 (when (member ov org-hide-block-overlays)
7261 (setq org-hide-block-overlays
7262 (delq ov org-hide-block-overlays)))
7263 (when (eq (overlay-get ov 'invisible)
7264 'org-hide-block)
7265 (delete-overlay ov))))
7266 (push ov org-hide-block-overlays)))
7267 (user-error "Not looking at a source block"))))
7269 ;; org-tab-after-check-for-cycling-hook
7270 (add-hook 'org-tab-first-hook 'org-hide-block-toggle-maybe)
7271 ;; Remove overlays when changing major mode
7272 (add-hook 'org-mode-hook
7273 (lambda () (org-add-hook 'change-major-mode-hook
7274 'org-show-block-all 'append 'local)))
7276 ;;; Org-goto
7278 (defvar org-goto-window-configuration nil)
7279 (defvar org-goto-marker nil)
7280 (defvar org-goto-map)
7281 (defun org-goto-map ()
7282 "Set the keymap `org-goto'."
7283 (setq org-goto-map
7284 (let ((map (make-sparse-keymap)))
7285 (let ((cmds '(isearch-forward isearch-backward kill-ring-save set-mark-command
7286 mouse-drag-region universal-argument org-occur))
7287 cmd)
7288 (while (setq cmd (pop cmds))
7289 (substitute-key-definition cmd cmd map global-map)))
7290 (suppress-keymap map)
7291 (org-defkey map "\C-m" 'org-goto-ret)
7292 (org-defkey map [(return)] 'org-goto-ret)
7293 (org-defkey map [(left)] 'org-goto-left)
7294 (org-defkey map [(right)] 'org-goto-right)
7295 (org-defkey map [(control ?g)] 'org-goto-quit)
7296 (org-defkey map "\C-i" 'org-cycle)
7297 (org-defkey map [(tab)] 'org-cycle)
7298 (org-defkey map [(down)] 'outline-next-visible-heading)
7299 (org-defkey map [(up)] 'outline-previous-visible-heading)
7300 (if org-goto-auto-isearch
7301 (if (fboundp 'define-key-after)
7302 (define-key-after map [t] 'org-goto-local-auto-isearch)
7303 nil)
7304 (org-defkey map "q" 'org-goto-quit)
7305 (org-defkey map "n" 'outline-next-visible-heading)
7306 (org-defkey map "p" 'outline-previous-visible-heading)
7307 (org-defkey map "f" 'outline-forward-same-level)
7308 (org-defkey map "b" 'outline-backward-same-level)
7309 (org-defkey map "u" 'outline-up-heading))
7310 (org-defkey map "/" 'org-occur)
7311 (org-defkey map "\C-c\C-n" 'outline-next-visible-heading)
7312 (org-defkey map "\C-c\C-p" 'outline-previous-visible-heading)
7313 (org-defkey map "\C-c\C-f" 'outline-forward-same-level)
7314 (org-defkey map "\C-c\C-b" 'outline-backward-same-level)
7315 (org-defkey map "\C-c\C-u" 'outline-up-heading)
7316 map)))
7318 (defconst org-goto-help
7319 "Browse buffer copy, to find location or copy text.%s
7320 RET=jump to location C-g=quit and return to previous location
7321 \[Up]/[Down]=next/prev headline TAB=cycle visibility [/] org-occur")
7323 (defvar org-goto-start-pos) ; dynamically scoped parameter
7325 (defun org-goto (&optional alternative-interface)
7326 "Look up a different location in the current file, keeping current visibility.
7328 When you want look-up or go to a different location in a
7329 document, the fastest way is often to fold the entire buffer and
7330 then dive into the tree. This method has the disadvantage, that
7331 the previous location will be folded, which may not be what you
7332 want.
7334 This command works around this by showing a copy of the current
7335 buffer in an indirect buffer, in overview mode. You can dive
7336 into the tree in that copy, use org-occur and incremental search
7337 to find a location. When pressing RET or `Q', the command
7338 returns to the original buffer in which the visibility is still
7339 unchanged. After RET it will also jump to the location selected
7340 in the indirect buffer and expose the headline hierarchy above.
7342 With a prefix argument, use the alternative interface: e.g. if
7343 `org-goto-interface' is 'outline use 'outline-path-completion."
7344 (interactive "P")
7345 (org-goto-map)
7346 (let* ((org-refile-targets `((nil . (:maxlevel . ,org-goto-max-level))))
7347 (org-refile-use-outline-path t)
7348 (org-refile-target-verify-function nil)
7349 (interface
7350 (if (not alternative-interface)
7351 org-goto-interface
7352 (if (eq org-goto-interface 'outline)
7353 'outline-path-completion
7354 'outline)))
7355 (org-goto-start-pos (point))
7356 (selected-point
7357 (if (eq interface 'outline)
7358 (car (org-get-location (current-buffer) org-goto-help))
7359 (let ((pa (org-refile-get-location "Goto" nil nil t)))
7360 (org-refile-check-position pa)
7361 (nth 3 pa)))))
7362 (if selected-point
7363 (progn
7364 (org-mark-ring-push org-goto-start-pos)
7365 (goto-char selected-point)
7366 (if (or (outline-invisible-p) (org-invisible-p2))
7367 (org-show-context 'org-goto)))
7368 (message "Quit"))))
7370 (defvar org-goto-selected-point nil) ; dynamically scoped parameter
7371 (defvar org-goto-exit-command nil) ; dynamically scoped parameter
7372 (defvar org-goto-local-auto-isearch-map) ; defined below
7374 (defun org-get-location (buf help)
7375 "Let the user select a location in the Org-mode buffer BUF.
7376 This function uses a recursive edit. It returns the selected position
7377 or nil."
7378 (org-no-popups
7379 (let ((isearch-mode-map org-goto-local-auto-isearch-map)
7380 (isearch-hide-immediately nil)
7381 (isearch-search-fun-function
7382 (lambda () 'org-goto-local-search-headings))
7383 (org-goto-selected-point org-goto-exit-command))
7384 (save-excursion
7385 (save-window-excursion
7386 (delete-other-windows)
7387 (and (get-buffer "*org-goto*") (kill-buffer "*org-goto*"))
7388 (org-pop-to-buffer-same-window
7389 (condition-case nil
7390 (make-indirect-buffer (current-buffer) "*org-goto*")
7391 (error (make-indirect-buffer (current-buffer) "*org-goto*"))))
7392 (with-output-to-temp-buffer "*Org Help*"
7393 (princ (format help (if org-goto-auto-isearch
7394 " Just type for auto-isearch."
7395 " n/p/f/b/u to navigate, q to quit."))))
7396 (org-fit-window-to-buffer (get-buffer-window "*Org Help*"))
7397 (setq buffer-read-only nil)
7398 (let ((org-startup-truncated t)
7399 (org-startup-folded nil)
7400 (org-startup-align-all-tables nil))
7401 (org-mode)
7402 (org-overview))
7403 (setq buffer-read-only t)
7404 (if (and (boundp 'org-goto-start-pos)
7405 (integer-or-marker-p org-goto-start-pos))
7406 (let ((org-show-hierarchy-above t)
7407 (org-show-siblings t)
7408 (org-show-following-heading t))
7409 (goto-char org-goto-start-pos)
7410 (and (outline-invisible-p) (org-show-context)))
7411 (goto-char (point-min)))
7412 (let (org-special-ctrl-a/e) (org-beginning-of-line))
7413 (message "Select location and press RET")
7414 (use-local-map org-goto-map)
7415 (recursive-edit)))
7416 (kill-buffer "*org-goto*")
7417 (cons org-goto-selected-point org-goto-exit-command))))
7419 (defvar org-goto-local-auto-isearch-map (make-sparse-keymap))
7420 (set-keymap-parent org-goto-local-auto-isearch-map isearch-mode-map)
7421 (define-key org-goto-local-auto-isearch-map "\C-i" 'isearch-other-control-char)
7422 (define-key org-goto-local-auto-isearch-map "\C-m" 'isearch-other-control-char)
7424 (defun org-goto-local-search-headings (string bound noerror)
7425 "Search and make sure that any matches are in headlines."
7426 (catch 'return
7427 (while (if isearch-forward
7428 (search-forward string bound noerror)
7429 (search-backward string bound noerror))
7430 (when (let ((context (mapcar 'car (save-match-data (org-context)))))
7431 (and (member :headline context)
7432 (not (member :tags context))))
7433 (throw 'return (point))))))
7435 (defun org-goto-local-auto-isearch ()
7436 "Start isearch."
7437 (interactive)
7438 (goto-char (point-min))
7439 (let ((keys (this-command-keys)))
7440 (when (eq (lookup-key isearch-mode-map keys) 'isearch-printing-char)
7441 (isearch-mode t)
7442 (isearch-process-search-char (string-to-char keys)))))
7444 (defun org-goto-ret (&optional arg)
7445 "Finish `org-goto' by going to the new location."
7446 (interactive "P")
7447 (setq org-goto-selected-point (point)
7448 org-goto-exit-command 'return)
7449 (throw 'exit nil))
7451 (defun org-goto-left ()
7452 "Finish `org-goto' by going to the new location."
7453 (interactive)
7454 (if (org-at-heading-p)
7455 (progn
7456 (beginning-of-line 1)
7457 (setq org-goto-selected-point (point)
7458 org-goto-exit-command 'left)
7459 (throw 'exit nil))
7460 (user-error "Not on a heading")))
7462 (defun org-goto-right ()
7463 "Finish `org-goto' by going to the new location."
7464 (interactive)
7465 (if (org-at-heading-p)
7466 (progn
7467 (setq org-goto-selected-point (point)
7468 org-goto-exit-command 'right)
7469 (throw 'exit nil))
7470 (user-error "Not on a heading")))
7472 (defun org-goto-quit ()
7473 "Finish `org-goto' without cursor motion."
7474 (interactive)
7475 (setq org-goto-selected-point nil)
7476 (setq org-goto-exit-command 'quit)
7477 (throw 'exit nil))
7479 ;;; Indirect buffer display of subtrees
7481 (defvar org-indirect-dedicated-frame nil
7482 "This is the frame being used for indirect tree display.")
7483 (defvar org-last-indirect-buffer nil)
7485 (defun org-tree-to-indirect-buffer (&optional arg)
7486 "Create indirect buffer and narrow it to current subtree.
7487 With a numerical prefix ARG, go up to this level and then take that tree.
7488 If ARG is negative, go up that many levels.
7490 If `org-indirect-buffer-display' is not `new-frame', the command removes the
7491 indirect buffer previously made with this command, to avoid proliferation of
7492 indirect buffers. However, when you call the command with a \
7493 \\[universal-argument] prefix, or
7494 when `org-indirect-buffer-display' is `new-frame', the last buffer
7495 is kept so that you can work with several indirect buffers at the same time.
7496 If `org-indirect-buffer-display' is `dedicated-frame', the \
7497 \\[universal-argument] prefix also
7498 requests that a new frame be made for the new buffer, so that the dedicated
7499 frame is not changed."
7500 (interactive "P")
7501 (let ((cbuf (current-buffer))
7502 (cwin (selected-window))
7503 (pos (point))
7504 beg end level heading ibuf)
7505 (save-excursion
7506 (org-back-to-heading t)
7507 (when (numberp arg)
7508 (setq level (org-outline-level))
7509 (if (< arg 0) (setq arg (+ level arg)))
7510 (while (> (setq level (org-outline-level)) arg)
7511 (org-up-heading-safe)))
7512 (setq beg (point)
7513 heading (org-get-heading))
7514 (org-end-of-subtree t t)
7515 (if (org-at-heading-p) (backward-char 1))
7516 (setq end (point)))
7517 (if (and (buffer-live-p org-last-indirect-buffer)
7518 (not (eq org-indirect-buffer-display 'new-frame))
7519 (not arg))
7520 (kill-buffer org-last-indirect-buffer))
7521 (setq ibuf (org-get-indirect-buffer cbuf heading)
7522 org-last-indirect-buffer ibuf)
7523 (cond
7524 ((or (eq org-indirect-buffer-display 'new-frame)
7525 (and arg (eq org-indirect-buffer-display 'dedicated-frame)))
7526 (select-frame (make-frame))
7527 (delete-other-windows)
7528 (org-pop-to-buffer-same-window ibuf)
7529 (org-set-frame-title heading))
7530 ((eq org-indirect-buffer-display 'dedicated-frame)
7531 (raise-frame
7532 (select-frame (or (and org-indirect-dedicated-frame
7533 (frame-live-p org-indirect-dedicated-frame)
7534 org-indirect-dedicated-frame)
7535 (setq org-indirect-dedicated-frame (make-frame)))))
7536 (delete-other-windows)
7537 (org-pop-to-buffer-same-window ibuf)
7538 (org-set-frame-title (concat "Indirect: " heading)))
7539 ((eq org-indirect-buffer-display 'current-window)
7540 (org-pop-to-buffer-same-window ibuf))
7541 ((eq org-indirect-buffer-display 'other-window)
7542 (pop-to-buffer ibuf))
7543 (t (error "Invalid value")))
7544 (if (featurep 'xemacs)
7545 (save-excursion (org-mode) (turn-on-font-lock)))
7546 (narrow-to-region beg end)
7547 (show-all)
7548 (goto-char pos)
7549 (run-hook-with-args 'org-cycle-hook 'all)
7550 (and (window-live-p cwin) (select-window cwin))))
7552 (defun org-get-indirect-buffer (&optional buffer heading)
7553 (setq buffer (or buffer (current-buffer)))
7554 (let ((n 1) (base (buffer-name buffer)) bname)
7555 (while (buffer-live-p
7556 (get-buffer
7557 (setq bname
7558 (concat base "-"
7559 (if heading (concat heading "-" (number-to-string n))
7560 (number-to-string n))))))
7561 (setq n (1+ n)))
7562 (condition-case nil
7563 (make-indirect-buffer buffer bname 'clone)
7564 (error (make-indirect-buffer buffer bname)))))
7566 (defun org-set-frame-title (title)
7567 "Set the title of the current frame to the string TITLE."
7568 ;; FIXME: how to name a single frame in XEmacs???
7569 (unless (featurep 'xemacs)
7570 (modify-frame-parameters (selected-frame) (list (cons 'name title)))))
7572 ;;;; Structure editing
7574 ;;; Inserting headlines
7576 (defun org-previous-line-empty-p (&optional next)
7577 "Is the previous line a blank line?
7578 When NEXT is non-nil, check the next line instead."
7579 (save-excursion
7580 (and (not (bobp))
7581 (or (beginning-of-line (if next 2 0)) t)
7582 (save-match-data
7583 (looking-at "[ \t]*$")))))
7585 (defun org-insert-heading (&optional arg invisible-ok)
7586 "Insert a new heading or item with same depth at point.
7587 If point is in a plain list and ARG is nil, create a new list item.
7588 With one universal prefix argument, insert a heading even in lists.
7589 With two universal prefix arguments, insert the heading at the end
7590 of the parent subtree.
7592 If point is at the beginning of a headline, insert a sibling before
7593 the current headline. If point is not at the beginning, split the line
7594 and create a new headline with the text in the current line after point
7595 \(see `org-M-RET-may-split-line' on how to modify this behavior).
7597 If point is at the beginning of a normal line, turn this line into
7598 a heading.
7600 When INVISIBLE-OK is set, stop at invisible headlines when going back.
7601 This is important for non-interactive uses of the command."
7602 (interactive "P")
7603 (if (org-called-interactively-p 'any) (org-reveal))
7604 (let ((itemp (org-in-item-p))
7605 (may-split (org-get-alist-option org-M-RET-may-split-line 'headline))
7606 (respect-content (or org-insert-heading-respect-content
7607 (equal arg '(16))))
7608 (initial-content "")
7609 (adjust-empty-lines t))
7611 (cond
7613 ((or (= (buffer-size) 0)
7614 (and (not (save-excursion
7615 (and (ignore-errors (org-back-to-heading invisible-ok))
7616 (org-at-heading-p))))
7617 (or arg (not itemp))))
7618 ;; At beginning of buffer or so high up that only a heading
7619 ;; makes sense.
7620 (insert
7621 (if (or (bobp) (org-previous-line-empty-p)) "" "\n")
7622 (if (org-in-src-block-p) ",* " "* "))
7623 (run-hooks 'org-insert-heading-hook))
7625 ((and itemp (not (equal arg '(4))))
7626 ;; Insert an item
7627 (org-insert-item))
7630 ;; Insert a heading
7631 (save-restriction
7632 (widen)
7633 (let* ((level nil)
7634 (on-heading (org-at-heading-p))
7635 (empty-line-p (if on-heading
7636 (org-previous-line-empty-p)
7637 ;; We will decide later
7638 nil))
7639 ;; Get a level string to fall back on
7640 (fix-level
7641 (save-excursion
7642 (org-back-to-heading t)
7643 (if (org-previous-line-empty-p) (setq empty-line-p t))
7644 (looking-at org-outline-regexp)
7645 (make-string (1- (length (match-string 0))) ?*)))
7646 (stars
7647 (save-excursion
7648 (condition-case nil
7649 (progn
7650 (org-back-to-heading invisible-ok)
7651 (when (and (not on-heading)
7652 (featurep 'org-inlinetask)
7653 (integerp org-inlinetask-min-level)
7654 (>= (length (match-string 0))
7655 org-inlinetask-min-level))
7656 ;; Find a heading level before the inline task
7657 (while (and (setq level (org-up-heading-safe))
7658 (>= level org-inlinetask-min-level)))
7659 (if (org-at-heading-p)
7660 (org-back-to-heading invisible-ok)
7661 (error "This should not happen")))
7662 (unless (and (save-excursion
7663 (save-match-data
7664 (org-backward-heading-same-level
7665 1 invisible-ok))
7666 (= (point) (match-beginning 0)))
7667 (not (org-previous-line-empty-p t)))
7668 (setq empty-line-p (or empty-line-p
7669 (org-previous-line-empty-p))))
7670 (match-string 0))
7671 (error (or fix-level "* ")))))
7672 (blank-a (cdr (assq 'heading org-blank-before-new-entry)))
7673 (blank (if (eq blank-a 'auto) empty-line-p blank-a))
7674 pos hide-previous previous-pos)
7676 ;; If we insert after content, move there and clean up whitespace
7677 (when respect-content
7678 (org-end-of-subtree nil t)
7679 (skip-chars-backward " \r\n")
7680 (and (looking-at "[ \t]+") (replace-match ""))
7681 (unless (eobp) (forward-char 1))
7682 (when (looking-at "^\\*")
7683 (unless (bobp) (backward-char 1))
7684 (insert "\n")))
7686 ;; If we are splitting, grab the text that should be moved to the new headline
7687 (when may-split
7688 (if (org-on-heading-p)
7689 ;; This is a heading, we split intelligently (keeping tags)
7690 (let ((pos (point)))
7691 (goto-char (point-at-bol))
7692 (unless (looking-at org-complex-heading-regexp)
7693 (error "This should not happen"))
7694 (when (and (match-beginning 4)
7695 (> pos (match-beginning 4))
7696 (< pos (match-end 4)))
7697 (setq initial-content (buffer-substring pos (match-end 4)))
7698 (goto-char pos)
7699 (delete-region (point) (match-end 4))
7700 (if (looking-at "[ \t]*$")
7701 (replace-match "")
7702 (insert (make-string (length initial-content) ?\ )))
7703 (setq initial-content (org-trim initial-content)))
7704 (goto-char pos))
7705 ;; a normal line
7706 (unless (bolp)
7707 (setq initial-content (buffer-substring (point) (point-at-eol)))
7708 (delete-region (point) (point-at-eol))
7709 (setq initial-content (org-trim initial-content)))))
7711 ;; If we are at the beginning of the line, insert before it. Else after
7712 (cond
7713 ((and (bolp) (looking-at "[ \t]*$")))
7714 ((and (bolp) (not (looking-at "[ \t]*$")))
7715 (open-line 1))
7717 (goto-char (point-at-eol))
7718 (insert "\n")))
7720 ;; Insert the new heading
7721 (insert stars)
7722 (just-one-space)
7723 (insert initial-content)
7724 (when adjust-empty-lines
7725 (if (or (not blank)
7726 (and blank (not (org-previous-line-empty-p))))
7727 (org-N-empty-lines-before-current (if blank 1 0))))
7728 (run-hooks 'org-insert-heading-hook)))))))
7730 (defun org-N-empty-lines-before-current (N)
7731 "Make the number of empty lines before current exactly N.
7732 So this will delete or add empty lines."
7733 (save-excursion
7734 (goto-char (point-at-bol))
7735 (if (looking-back "\\s-+" nil 'greedy)
7736 (replace-match ""))
7737 (or (bobp) (insert "\n"))
7738 (while (> N 0)
7739 (insert "\n")
7740 (setq N (1- N)))))
7742 (defun org-get-heading (&optional no-tags no-todo)
7743 "Return the heading of the current entry, without the stars.
7744 When NO-TAGS is non-nil, don't include tags.
7745 When NO-TODO is non-nil, don't include TODO keywords."
7746 (save-excursion
7747 (org-back-to-heading t)
7748 (cond
7749 ((and no-tags no-todo)
7750 (looking-at org-complex-heading-regexp)
7751 (match-string 4))
7752 (no-tags
7753 (looking-at (concat org-outline-regexp
7754 "\\(.*?\\)"
7755 "\\(?:[ \t]+:[[:alnum:]:_@#%]+:\\)?[ \t]*$"))
7756 (match-string 1))
7757 (no-todo
7758 (looking-at org-todo-line-regexp)
7759 (match-string 3))
7760 (t (looking-at org-heading-regexp)
7761 (match-string 2)))))
7763 (defvar orgstruct-mode) ; defined below
7765 (defun org-heading-components ()
7766 "Return the components of the current heading.
7767 This is a list with the following elements:
7768 - the level as an integer
7769 - the reduced level, different if `org-odd-levels-only' is set.
7770 - the TODO keyword, or nil
7771 - the priority character, like ?A, or nil if no priority is given
7772 - the headline text itself, or the tags string if no headline text
7773 - the tags string, or nil."
7774 (save-excursion
7775 (org-back-to-heading t)
7776 (if (let (case-fold-search)
7777 (looking-at
7778 (if orgstruct-mode
7779 org-heading-regexp
7780 org-complex-heading-regexp)))
7781 (if orgstruct-mode
7782 (list (length (match-string 1))
7783 (org-reduced-level (length (match-string 1)))
7786 (match-string 2)
7787 nil)
7788 (list (length (match-string 1))
7789 (org-reduced-level (length (match-string 1)))
7790 (org-match-string-no-properties 2)
7791 (and (match-end 3) (aref (match-string 3) 2))
7792 (org-match-string-no-properties 4)
7793 (org-match-string-no-properties 5))))))
7795 (defun org-get-entry ()
7796 "Get the entry text, after heading, entire subtree."
7797 (save-excursion
7798 (org-back-to-heading t)
7799 (buffer-substring (point-at-bol 2) (org-end-of-subtree t))))
7801 (defun org-insert-heading-after-current ()
7802 "Insert a new heading with same level as current, after current subtree."
7803 (interactive)
7804 (org-back-to-heading)
7805 (org-insert-heading)
7806 (org-move-subtree-down)
7807 (end-of-line 1))
7809 (defun org-insert-heading-respect-content (&optional arg invisible-ok)
7810 "Insert heading with `org-insert-heading-respect-content' set to t."
7811 (interactive "P")
7812 (let ((org-insert-heading-respect-content t))
7813 (org-insert-heading '(4) invisible-ok)))
7815 (defun org-insert-todo-heading-respect-content (&optional force-state)
7816 "Insert TODO heading with `org-insert-heading-respect-content' set to t."
7817 (interactive "P")
7818 (let ((org-insert-heading-respect-content t))
7819 (org-insert-todo-heading force-state '(4))))
7821 (defun org-insert-todo-heading (arg &optional force-heading)
7822 "Insert a new heading with the same level and TODO state as current heading.
7823 If the heading has no TODO state, or if the state is DONE, use the first
7824 state (TODO by default). Also one prefix arg, force first state. With two
7825 prefix args, force inserting at the end of the parent subtree."
7826 (interactive "P")
7827 (when (or force-heading (not (org-insert-item 'checkbox)))
7828 (org-insert-heading (or (and (equal arg '(16)) '(16))
7829 force-heading))
7830 (save-excursion
7831 (org-back-to-heading)
7832 (outline-previous-heading)
7833 (looking-at org-todo-line-regexp))
7834 (let*
7835 ((new-mark-x
7836 (if (or arg
7837 (not (match-beginning 2))
7838 (member (match-string 2) org-done-keywords))
7839 (car org-todo-keywords-1)
7840 (match-string 2)))
7841 (new-mark
7843 (run-hook-with-args-until-success
7844 'org-todo-get-default-hook new-mark-x nil)
7845 new-mark-x)))
7846 (beginning-of-line 1)
7847 (and (looking-at org-outline-regexp) (goto-char (match-end 0))
7848 (if org-treat-insert-todo-heading-as-state-change
7849 (org-todo new-mark)
7850 (insert new-mark " "))))
7851 (when org-provide-todo-statistics
7852 (org-update-parent-todo-statistics))))
7854 (defun org-insert-subheading (arg)
7855 "Insert a new subheading and demote it.
7856 Works for outline headings and for plain lists alike."
7857 (interactive "P")
7858 (org-insert-heading arg)
7859 (cond
7860 ((org-at-heading-p) (org-do-demote))
7861 ((org-at-item-p) (org-indent-item))))
7863 (defun org-insert-todo-subheading (arg)
7864 "Insert a new subheading with TODO keyword or checkbox and demote it.
7865 Works for outline headings and for plain lists alike."
7866 (interactive "P")
7867 (org-insert-todo-heading arg)
7868 (cond
7869 ((org-at-heading-p) (org-do-demote))
7870 ((org-at-item-p) (org-indent-item))))
7872 ;;; Promotion and Demotion
7874 (defvar org-after-demote-entry-hook nil
7875 "Hook run after an entry has been demoted.
7876 The cursor will be at the beginning of the entry.
7877 When a subtree is being demoted, the hook will be called for each node.")
7879 (defvar org-after-promote-entry-hook nil
7880 "Hook run after an entry has been promoted.
7881 The cursor will be at the beginning of the entry.
7882 When a subtree is being promoted, the hook will be called for each node.")
7884 (defun org-promote-subtree ()
7885 "Promote the entire subtree.
7886 See also `org-promote'."
7887 (interactive)
7888 (save-excursion
7889 (org-with-limited-levels (org-map-tree 'org-promote)))
7890 (org-fix-position-after-promote))
7892 (defun org-demote-subtree ()
7893 "Demote the entire subtree. See `org-demote'.
7894 See also `org-promote'."
7895 (interactive)
7896 (save-excursion
7897 (org-with-limited-levels (org-map-tree 'org-demote)))
7898 (org-fix-position-after-promote))
7901 (defun org-do-promote ()
7902 "Promote the current heading higher up the tree.
7903 If the region is active in `transient-mark-mode', promote all headings
7904 in the region."
7905 (interactive)
7906 (save-excursion
7907 (if (org-region-active-p)
7908 (org-map-region 'org-promote (region-beginning) (region-end))
7909 (org-promote)))
7910 (org-fix-position-after-promote))
7912 (defun org-do-demote ()
7913 "Demote the current heading lower down the tree.
7914 If the region is active in `transient-mark-mode', demote all headings
7915 in the region."
7916 (interactive)
7917 (save-excursion
7918 (if (org-region-active-p)
7919 (org-map-region 'org-demote (region-beginning) (region-end))
7920 (org-demote)))
7921 (org-fix-position-after-promote))
7923 (defun org-fix-position-after-promote ()
7924 "Make sure that after pro/demotion cursor position is right."
7925 (let ((pos (point)))
7926 (when (save-excursion
7927 (beginning-of-line 1)
7928 (looking-at org-todo-line-regexp)
7929 (or (equal pos (match-end 1)) (equal pos (match-end 2))))
7930 (cond ((eobp) (insert " "))
7931 ((eolp) (insert " "))
7932 ((equal (char-after) ?\ ) (forward-char 1))))))
7934 (defun org-current-level ()
7935 "Return the level of the current entry, or nil if before the first headline.
7936 The level is the number of stars at the beginning of the headline."
7937 (save-excursion
7938 (org-with-limited-levels
7939 (if (ignore-errors (org-back-to-heading t))
7940 (funcall outline-level)))))
7942 (defun org-get-previous-line-level ()
7943 "Return the outline depth of the last headline before the current line.
7944 Returns 0 for the first headline in the buffer, and nil if before the
7945 first headline."
7946 (let ((current-level (org-current-level))
7947 (prev-level (when (> (line-number-at-pos) 1)
7948 (save-excursion
7949 (beginning-of-line 0)
7950 (org-current-level)))))
7951 (cond ((null current-level) nil) ; Before first headline
7952 ((null prev-level) 0) ; At first headline
7953 (prev-level))))
7955 (defun org-reduced-level (l)
7956 "Compute the effective level of a heading.
7957 This takes into account the setting of `org-odd-levels-only'."
7958 (cond
7959 ((zerop l) 0)
7960 (org-odd-levels-only (1+ (floor (/ l 2))))
7961 (t l)))
7963 (defun org-level-increment ()
7964 "Return the number of stars that will be added or removed at a
7965 time to headlines when structure editing, based on the value of
7966 `org-odd-levels-only'."
7967 (if org-odd-levels-only 2 1))
7969 (defun org-get-valid-level (level &optional change)
7970 "Rectify a level change under the influence of `org-odd-levels-only'
7971 LEVEL is a current level, CHANGE is by how much the level should be
7972 modified. Even if CHANGE is nil, LEVEL may be returned modified because
7973 even level numbers will become the next higher odd number."
7974 (if org-odd-levels-only
7975 (cond ((or (not change) (= 0 change)) (1+ (* 2 (/ level 2))))
7976 ((> change 0) (1+ (* 2 (/ (+ level (* 2 change)) 2))))
7977 ((< change 0) (max 1 (1+ (* 2 (/ (+ level (* 2 change)) 2))))))
7978 (max 1 (+ level (or change 0)))))
7980 (if (boundp 'define-obsolete-function-alias)
7981 (if (or (featurep 'xemacs) (< emacs-major-version 23))
7982 (define-obsolete-function-alias 'org-get-legal-level
7983 'org-get-valid-level)
7984 (define-obsolete-function-alias 'org-get-legal-level
7985 'org-get-valid-level "23.1")))
7987 (defun org-promote ()
7988 "Promote the current heading higher up the tree.
7989 If the region is active in `transient-mark-mode', promote all headings
7990 in the region."
7991 (org-back-to-heading t)
7992 (let* ((level (save-match-data (funcall outline-level)))
7993 (after-change-functions (remove 'flyspell-after-change-function
7994 after-change-functions))
7995 (up-head (concat (make-string (org-get-valid-level level -1) ?*) " "))
7996 (diff (abs (- level (length up-head) -1))))
7997 (cond ((and (= level 1) org-called-with-limited-levels
7998 org-allow-promoting-top-level-subtree)
7999 (replace-match "# " nil t))
8000 ((= level 1)
8001 (user-error "Cannot promote to level 0. UNDO to recover if necessary"))
8002 (t (replace-match up-head nil t)))
8003 ;; Fixup tag positioning
8004 (unless (= level 1)
8005 (and org-auto-align-tags (org-set-tags nil t))
8006 (if org-adapt-indentation (org-fixup-indentation (- diff))))
8007 (run-hooks 'org-after-promote-entry-hook)))
8009 (defun org-demote ()
8010 "Demote the current heading lower down the tree.
8011 If the region is active in `transient-mark-mode', demote all headings
8012 in the region."
8013 (org-back-to-heading t)
8014 (let* ((level (save-match-data (funcall outline-level)))
8015 (after-change-functions (remove 'flyspell-after-change-function
8016 after-change-functions))
8017 (down-head (concat (make-string (org-get-valid-level level 1) ?*) " "))
8018 (diff (abs (- level (length down-head) -1))))
8019 (replace-match down-head nil t)
8020 ;; Fixup tag positioning
8021 (and org-auto-align-tags (org-set-tags nil t))
8022 (if org-adapt-indentation (org-fixup-indentation diff))
8023 (run-hooks 'org-after-demote-entry-hook)))
8025 (defun org-cycle-level ()
8026 "Cycle the level of an empty headline through possible states.
8027 This goes first to child, then to parent, level, then up the hierarchy.
8028 After top level, it switches back to sibling level."
8029 (interactive)
8030 (let ((org-adapt-indentation nil))
8031 (when (org-point-at-end-of-empty-headline)
8032 (setq this-command 'org-cycle-level) ; Only needed for caching
8033 (let ((cur-level (org-current-level))
8034 (prev-level (org-get-previous-line-level)))
8035 (cond
8036 ;; If first headline in file, promote to top-level.
8037 ((= prev-level 0)
8038 (loop repeat (/ (- cur-level 1) (org-level-increment))
8039 do (org-do-promote)))
8040 ;; If same level as prev, demote one.
8041 ((= prev-level cur-level)
8042 (org-do-demote))
8043 ;; If parent is top-level, promote to top level if not already.
8044 ((= prev-level 1)
8045 (loop repeat (/ (- cur-level 1) (org-level-increment))
8046 do (org-do-promote)))
8047 ;; If top-level, return to prev-level.
8048 ((= cur-level 1)
8049 (loop repeat (/ (- prev-level 1) (org-level-increment))
8050 do (org-do-demote)))
8051 ;; If less than prev-level, promote one.
8052 ((< cur-level prev-level)
8053 (org-do-promote))
8054 ;; If deeper than prev-level, promote until higher than
8055 ;; prev-level.
8056 ((> cur-level prev-level)
8057 (loop repeat (+ 1 (/ (- cur-level prev-level) (org-level-increment)))
8058 do (org-do-promote))))
8059 t))))
8061 (defun org-map-tree (fun)
8062 "Call FUN for every heading underneath the current one."
8063 (org-back-to-heading)
8064 (let ((level (funcall outline-level)))
8065 (save-excursion
8066 (funcall fun)
8067 (while (and (progn
8068 (outline-next-heading)
8069 (> (funcall outline-level) level))
8070 (not (eobp)))
8071 (funcall fun)))))
8073 (defun org-map-region (fun beg end)
8074 "Call FUN for every heading between BEG and END."
8075 (let ((org-ignore-region t))
8076 (save-excursion
8077 (setq end (copy-marker end))
8078 (goto-char beg)
8079 (if (and (re-search-forward org-outline-regexp-bol nil t)
8080 (< (point) end))
8081 (funcall fun))
8082 (while (and (progn
8083 (outline-next-heading)
8084 (< (point) end))
8085 (not (eobp)))
8086 (funcall fun)))))
8088 (defvar org-property-end-re) ; silence byte-compiler
8089 (defun org-fixup-indentation (diff)
8090 "Change the indentation in the current entry by DIFF.
8091 However, if any line in the current entry has no indentation, or if it
8092 would end up with no indentation after the change, nothing at all is done."
8093 (save-excursion
8094 (let ((end (save-excursion (outline-next-heading)
8095 (point-marker)))
8096 (prohibit (if (> diff 0)
8097 "^\\S-"
8098 (concat "^ \\{0," (int-to-string (- diff)) "\\}\\S-")))
8099 col)
8100 (unless (save-excursion (end-of-line 1)
8101 (re-search-forward prohibit end t))
8102 (while (and (< (point) end)
8103 (re-search-forward "^[ \t]+" end t))
8104 (goto-char (match-end 0))
8105 (setq col (current-column))
8106 (if (< diff 0) (replace-match ""))
8107 (org-indent-to-column (+ diff col))))
8108 (move-marker end nil))))
8110 (defun org-convert-to-odd-levels ()
8111 "Convert an org-mode file with all levels allowed to one with odd levels.
8112 This will leave level 1 alone, convert level 2 to level 3, level 3 to
8113 level 5 etc."
8114 (interactive)
8115 (when (yes-or-no-p "Are you sure you want to globally change levels to odd? ")
8116 (let ((outline-level 'org-outline-level)
8117 (org-odd-levels-only nil) n)
8118 (save-excursion
8119 (goto-char (point-min))
8120 (while (re-search-forward "^\\*\\*+ " nil t)
8121 (setq n (- (length (match-string 0)) 2))
8122 (while (>= (setq n (1- n)) 0)
8123 (org-demote))
8124 (end-of-line 1))))))
8126 (defun org-convert-to-oddeven-levels ()
8127 "Convert an org-mode file with only odd levels to one with odd/even levels.
8128 This promotes level 3 to level 2, level 5 to level 3 etc. If the
8129 file contains a section with an even level, conversion would
8130 destroy the structure of the file. An error is signaled in this
8131 case."
8132 (interactive)
8133 (goto-char (point-min))
8134 ;; First check if there are no even levels
8135 (when (re-search-forward "^\\(\\*\\*\\)+ " nil t)
8136 (org-show-context t)
8137 (error "Not all levels are odd in this file. Conversion not possible"))
8138 (when (yes-or-no-p "Are you sure you want to globally change levels to odd-even? ")
8139 (let ((outline-regexp org-outline-regexp)
8140 (outline-level 'org-outline-level)
8141 (org-odd-levels-only nil) n)
8142 (save-excursion
8143 (goto-char (point-min))
8144 (while (re-search-forward "^\\*\\*+ " nil t)
8145 (setq n (/ (1- (length (match-string 0))) 2))
8146 (while (>= (setq n (1- n)) 0)
8147 (org-promote))
8148 (end-of-line 1))))))
8150 (defun org-tr-level (n)
8151 "Make N odd if required."
8152 (if org-odd-levels-only (1+ (/ n 2)) n))
8154 ;;; Vertical tree motion, cutting and pasting of subtrees
8156 (defun org-move-subtree-up (&optional arg)
8157 "Move the current subtree up past ARG headlines of the same level."
8158 (interactive "p")
8159 (org-move-subtree-down (- (prefix-numeric-value arg))))
8161 (defun org-move-subtree-down (&optional arg)
8162 "Move the current subtree down past ARG headlines of the same level."
8163 (interactive "p")
8164 (setq arg (prefix-numeric-value arg))
8165 (let ((movfunc (if (> arg 0) 'org-get-next-sibling
8166 'org-get-last-sibling))
8167 (ins-point (make-marker))
8168 (cnt (abs arg))
8169 (col (current-column))
8170 beg beg0 end txt folded ne-beg ne-end ne-ins ins-end)
8171 ;; Select the tree
8172 (org-back-to-heading)
8173 (setq beg0 (point))
8174 (save-excursion
8175 (setq ne-beg (org-back-over-empty-lines))
8176 (setq beg (point)))
8177 (save-match-data
8178 (save-excursion (outline-end-of-heading)
8179 (setq folded (outline-invisible-p)))
8180 (outline-end-of-subtree))
8181 (outline-next-heading)
8182 (setq ne-end (org-back-over-empty-lines))
8183 (setq end (point))
8184 (goto-char beg0)
8185 (when (and (> arg 0) (org-first-sibling-p) (< ne-end ne-beg))
8186 ;; include less whitespace
8187 (save-excursion
8188 (goto-char beg)
8189 (forward-line (- ne-beg ne-end))
8190 (setq beg (point))))
8191 ;; Find insertion point, with error handling
8192 (while (> cnt 0)
8193 (or (and (funcall movfunc) (looking-at org-outline-regexp))
8194 (progn (goto-char beg0)
8195 (user-error "Cannot move past superior level or buffer limit")))
8196 (setq cnt (1- cnt)))
8197 (if (> arg 0)
8198 ;; Moving forward - still need to move over subtree
8199 (progn (org-end-of-subtree t t)
8200 (save-excursion
8201 (org-back-over-empty-lines)
8202 (or (bolp) (newline)))))
8203 (setq ne-ins (org-back-over-empty-lines))
8204 (move-marker ins-point (point))
8205 (setq txt (buffer-substring beg end))
8206 (org-save-markers-in-region beg end)
8207 (delete-region beg end)
8208 (org-remove-empty-overlays-at beg)
8209 (or (= beg (point-min)) (outline-flag-region (1- beg) beg nil))
8210 (or (bobp) (outline-flag-region (1- (point)) (point) nil))
8211 (and (not (bolp)) (looking-at "\n") (forward-char 1))
8212 (let ((bbb (point)))
8213 (insert-before-markers txt)
8214 (org-reinstall-markers-in-region bbb)
8215 (move-marker ins-point bbb))
8216 (or (bolp) (insert "\n"))
8217 (setq ins-end (point))
8218 (goto-char ins-point)
8219 (org-skip-whitespace)
8220 (when (and (< arg 0)
8221 (org-first-sibling-p)
8222 (> ne-ins ne-beg))
8223 ;; Move whitespace back to beginning
8224 (save-excursion
8225 (goto-char ins-end)
8226 (let ((kill-whole-line t))
8227 (kill-line (- ne-ins ne-beg)) (point)))
8228 (insert (make-string (- ne-ins ne-beg) ?\n)))
8229 (move-marker ins-point nil)
8230 (if folded
8231 (hide-subtree)
8232 (org-show-entry)
8233 (show-children)
8234 (org-cycle-hide-drawers 'children))
8235 (org-clean-visibility-after-subtree-move)
8236 ;; move back to the initial column we were at
8237 (move-to-column col)))
8239 (defvar org-subtree-clip ""
8240 "Clipboard for cut and paste of subtrees.
8241 This is actually only a copy of the kill, because we use the normal kill
8242 ring. We need it to check if the kill was created by `org-copy-subtree'.")
8244 (defvar org-subtree-clip-folded nil
8245 "Was the last copied subtree folded?
8246 This is used to fold the tree back after pasting.")
8248 (defun org-cut-subtree (&optional n)
8249 "Cut the current subtree into the clipboard.
8250 With prefix arg N, cut this many sequential subtrees.
8251 This is a short-hand for marking the subtree and then cutting it."
8252 (interactive "p")
8253 (org-copy-subtree n 'cut))
8255 (defun org-copy-subtree (&optional n cut force-store-markers nosubtrees)
8256 "Copy the current subtree it in the clipboard.
8257 With prefix arg N, copy this many sequential subtrees.
8258 This is a short-hand for marking the subtree and then copying it.
8259 If CUT is non-nil, actually cut the subtree.
8260 If FORCE-STORE-MARKERS is non-nil, store the relative locations
8261 of some markers in the region, even if CUT is non-nil. This is
8262 useful if the caller implements cut-and-paste as copy-then-paste-then-cut."
8263 (interactive "p")
8264 (let (beg end folded (beg0 (point)))
8265 (if (org-called-interactively-p 'any)
8266 (org-back-to-heading nil) ; take what looks like a subtree
8267 (org-back-to-heading t)) ; take what is really there
8268 (setq beg (point))
8269 (skip-chars-forward " \t\r\n")
8270 (save-match-data
8271 (if nosubtrees
8272 (outline-next-heading)
8273 (save-excursion (outline-end-of-heading)
8274 (setq folded (outline-invisible-p)))
8275 (condition-case nil
8276 (org-forward-heading-same-level (1- n) t)
8277 (error nil))
8278 (org-end-of-subtree t t)))
8279 (setq end (point))
8280 (goto-char beg0)
8281 (when (> end beg)
8282 (setq org-subtree-clip-folded folded)
8283 (when (or cut force-store-markers)
8284 (org-save-markers-in-region beg end))
8285 (if cut (kill-region beg end) (copy-region-as-kill beg end))
8286 (setq org-subtree-clip (current-kill 0))
8287 (message "%s: Subtree(s) with %d characters"
8288 (if cut "Cut" "Copied")
8289 (length org-subtree-clip)))))
8291 (defun org-paste-subtree (&optional level tree for-yank)
8292 "Paste the clipboard as a subtree, with modification of headline level.
8293 The entire subtree is promoted or demoted in order to match a new headline
8294 level.
8296 If the cursor is at the beginning of a headline, the same level as
8297 that headline is used to paste the tree.
8299 If not, the new level is derived from the *visible* headings
8300 before and after the insertion point, and taken to be the inferior headline
8301 level of the two. So if the previous visible heading is level 3 and the
8302 next is level 4 (or vice versa), level 4 will be used for insertion.
8303 This makes sure that the subtree remains an independent subtree and does
8304 not swallow low level entries.
8306 You can also force a different level, either by using a numeric prefix
8307 argument, or by inserting the heading marker by hand. For example, if the
8308 cursor is after \"*****\", then the tree will be shifted to level 5.
8310 If optional TREE is given, use this text instead of the kill ring.
8312 When FOR-YANK is set, this is called by `org-yank'. In this case, do not
8313 move back over whitespace before inserting, and move point to the end of
8314 the inserted text when done."
8315 (interactive "P")
8316 (setq tree (or tree (and kill-ring (current-kill 0))))
8317 (unless (org-kill-is-subtree-p tree)
8318 (user-error "%s"
8319 (substitute-command-keys
8320 "The kill is not a (set of) tree(s) - please use \\[yank] to yank anyway")))
8321 (org-with-limited-levels
8322 (let* ((visp (not (outline-invisible-p)))
8323 (txt tree)
8324 (^re_ "\\(\\*+\\)[ \t]*")
8325 (old-level (if (string-match org-outline-regexp-bol txt)
8326 (- (match-end 0) (match-beginning 0) 1)
8327 -1))
8328 (force-level (cond (level (prefix-numeric-value level))
8329 ((and (looking-at "[ \t]*$")
8330 (string-match
8331 "^\\*+$" (buffer-substring
8332 (point-at-bol) (point))))
8333 (- (match-end 1) (match-beginning 1)))
8334 ((and (bolp)
8335 (looking-at org-outline-regexp))
8336 (- (match-end 0) (point) 1))))
8337 (previous-level (save-excursion
8338 (condition-case nil
8339 (progn
8340 (outline-previous-visible-heading 1)
8341 (if (looking-at ^re_)
8342 (- (match-end 0) (match-beginning 0) 1)
8344 (error 1))))
8345 (next-level (save-excursion
8346 (condition-case nil
8347 (progn
8348 (or (looking-at org-outline-regexp)
8349 (outline-next-visible-heading 1))
8350 (if (looking-at ^re_)
8351 (- (match-end 0) (match-beginning 0) 1)
8353 (error 1))))
8354 (new-level (or force-level (max previous-level next-level)))
8355 (shift (if (or (= old-level -1)
8356 (= new-level -1)
8357 (= old-level new-level))
8359 (- new-level old-level)))
8360 (delta (if (> shift 0) -1 1))
8361 (func (if (> shift 0) 'org-demote 'org-promote))
8362 (org-odd-levels-only nil)
8363 beg end newend)
8364 ;; Remove the forced level indicator
8365 (if force-level
8366 (delete-region (point-at-bol) (point)))
8367 ;; Paste
8368 (beginning-of-line (if (bolp) 1 2))
8369 (setq beg (point))
8370 (and (fboundp 'org-id-paste-tracker) (org-id-paste-tracker txt))
8371 (insert-before-markers txt)
8372 (unless (string-match "\n\\'" txt) (insert "\n"))
8373 (setq newend (point))
8374 (org-reinstall-markers-in-region beg)
8375 (setq end (point))
8376 (goto-char beg)
8377 (skip-chars-forward " \t\n\r")
8378 (setq beg (point))
8379 (if (and (outline-invisible-p) visp)
8380 (save-excursion (outline-show-heading)))
8381 ;; Shift if necessary
8382 (unless (= shift 0)
8383 (save-restriction
8384 (narrow-to-region beg end)
8385 (while (not (= shift 0))
8386 (org-map-region func (point-min) (point-max))
8387 (setq shift (+ delta shift)))
8388 (goto-char (point-min))
8389 (setq newend (point-max))))
8390 (when (or (org-called-interactively-p 'interactive) for-yank)
8391 (message "Clipboard pasted as level %d subtree" new-level))
8392 (if (and (not for-yank) ; in this case, org-yank will decide about folding
8393 kill-ring
8394 (eq org-subtree-clip (current-kill 0))
8395 org-subtree-clip-folded)
8396 ;; The tree was folded before it was killed/copied
8397 (hide-subtree))
8398 (and for-yank (goto-char newend)))))
8400 (defun org-kill-is-subtree-p (&optional txt)
8401 "Check if the current kill is an outline subtree, or a set of trees.
8402 Returns nil if kill does not start with a headline, or if the first
8403 headline level is not the largest headline level in the tree.
8404 So this will actually accept several entries of equal levels as well,
8405 which is OK for `org-paste-subtree'.
8406 If optional TXT is given, check this string instead of the current kill."
8407 (let* ((kill (or txt (and kill-ring (current-kill 0)) ""))
8408 (re (org-get-limited-outline-regexp))
8409 (^re (concat "^" re))
8410 (start-level (and kill
8411 (string-match
8412 (concat "\\`\\([ \t\n\r]*?\n\\)?\\(" re "\\)")
8413 kill)
8414 (- (match-end 2) (match-beginning 2) 1)))
8415 (start (1+ (or (match-beginning 2) -1))))
8416 (if (not start-level)
8417 (progn
8418 nil) ;; does not even start with a heading
8419 (catch 'exit
8420 (while (setq start (string-match ^re kill (1+ start)))
8421 (when (< (- (match-end 0) (match-beginning 0) 1) start-level)
8422 (throw 'exit nil)))
8423 t))))
8425 (defvar org-markers-to-move nil
8426 "Markers that should be moved with a cut-and-paste operation.
8427 Those markers are stored together with their positions relative to
8428 the start of the region.")
8430 (defun org-save-markers-in-region (beg end)
8431 "Check markers in region.
8432 If these markers are between BEG and END, record their position relative
8433 to BEG, so that after moving the block of text, we can put the markers back
8434 into place.
8435 This function gets called just before an entry or tree gets cut from the
8436 buffer. After re-insertion, `org-reinstall-markers-in-region' must be
8437 called immediately, to move the markers with the entries."
8438 (setq org-markers-to-move nil)
8439 (when (featurep 'org-clock)
8440 (org-clock-save-markers-for-cut-and-paste beg end))
8441 (when (featurep 'org-agenda)
8442 (org-agenda-save-markers-for-cut-and-paste beg end)))
8444 (defun org-check-and-save-marker (marker beg end)
8445 "Check if MARKER is between BEG and END.
8446 If yes, remember the marker and the distance to BEG."
8447 (when (and (marker-buffer marker)
8448 (equal (marker-buffer marker) (current-buffer)))
8449 (if (and (>= marker beg) (< marker end))
8450 (push (cons marker (- marker beg)) org-markers-to-move))))
8452 (defun org-reinstall-markers-in-region (beg)
8453 "Move all remembered markers to their position relative to BEG."
8454 (mapc (lambda (x)
8455 (move-marker (car x) (+ beg (cdr x))))
8456 org-markers-to-move)
8457 (setq org-markers-to-move nil))
8459 (defun org-narrow-to-subtree ()
8460 "Narrow buffer to the current subtree."
8461 (interactive)
8462 (save-excursion
8463 (save-match-data
8464 (org-with-limited-levels
8465 (narrow-to-region
8466 (progn (org-back-to-heading t) (point))
8467 (progn (org-end-of-subtree t t)
8468 (if (and (org-at-heading-p) (not (eobp))) (backward-char 1))
8469 (point)))))))
8471 (defun org-narrow-to-block ()
8472 "Narrow buffer to the current block."
8473 (interactive)
8474 (let* ((case-fold-search t)
8475 (blockp (org-between-regexps-p "^[ \t]*#\\+begin_.*"
8476 "^[ \t]*#\\+end_.*")))
8477 (if blockp
8478 (narrow-to-region (car blockp) (cdr blockp))
8479 (user-error "Not in a block"))))
8481 (eval-when-compile
8482 (defvar org-property-drawer-re))
8484 (defvar org-property-start-re) ;; defined below
8485 (defun org-clone-subtree-with-time-shift (n &optional shift)
8486 "Clone the task (subtree) at point N times.
8487 The clones will be inserted as siblings.
8489 In interactive use, the user will be prompted for the number of
8490 clones to be produced. If the entry has a timestamp, the user
8491 will also be prompted for a time shift, which may be a repeater
8492 as used in time stamps, for example `+3d'. To disable this,
8493 you can call the function with a universal prefix argument.
8495 When a valid repeater is given and the entry contains any time
8496 stamps, the clones will become a sequence in time, with time
8497 stamps in the subtree shifted for each clone produced. If SHIFT
8498 is nil or the empty string, time stamps will be left alone. The
8499 ID property of the original subtree is removed.
8501 If the original subtree did contain time stamps with a repeater,
8502 the following will happen:
8503 - the repeater will be removed in each clone
8504 - an additional clone will be produced, with the current, unshifted
8505 date(s) in the entry.
8506 - the original entry will be placed *after* all the clones, with
8507 repeater intact.
8508 - the start days in the repeater in the original entry will be shifted
8509 to past the last clone.
8510 In this way you can spell out a number of instances of a repeating task,
8511 and still retain the repeater to cover future instances of the task."
8512 (interactive "nNumber of clones to produce: ")
8513 (let ((shift
8514 (or shift
8515 (if (and (not (equal current-prefix-arg '(4)))
8516 (save-excursion
8517 (re-search-forward org-ts-regexp-both
8518 (save-excursion
8519 (org-end-of-subtree t)
8520 (point)) t)))
8521 (read-from-minibuffer
8522 "Date shift per clone (e.g. +1w, empty to copy unchanged): ")
8523 ""))) ;; No time shift
8524 (n-no-remove -1)
8525 (drawer-re org-drawer-regexp)
8526 beg end template task idprop
8527 shift-n shift-what doshift nmin nmax)
8528 (if (not (and (integerp n) (> n 0)))
8529 (error "Invalid number of replications %s" n))
8530 (if (and (setq doshift (and (stringp shift) (string-match "\\S-" shift)))
8531 (not (string-match "\\`[ \t]*\\+?\\([0-9]+\\)\\([hdwmy]\\)[ \t]*\\'"
8532 shift)))
8533 (error "Invalid shift specification %s" shift))
8534 (when doshift
8535 (setq shift-n (string-to-number (match-string 1 shift))
8536 shift-what (cdr (assoc (match-string 2 shift)
8537 '(("d" . day) ("w" . week)
8538 ("m" . month) ("y" . year))))))
8539 (if (eq shift-what 'week) (setq shift-n (* 7 shift-n) shift-what 'day))
8540 (setq nmin 1 nmax n)
8541 (org-back-to-heading t)
8542 (setq beg (point))
8543 (setq idprop (org-entry-get nil "ID"))
8544 (org-end-of-subtree t t)
8545 (or (bolp) (insert "\n"))
8546 (setq end (point))
8547 (setq template (buffer-substring beg end))
8548 (when (and doshift
8549 (string-match "<[^<>\n]+ [.+]?\\+[0-9]+[hdwmy][^<>\n]*>" template))
8550 (delete-region beg end)
8551 (setq end beg)
8552 (setq nmin 0 nmax (1+ nmax) n-no-remove nmax))
8553 (goto-char end)
8554 (loop for n from nmin to nmax do
8555 ;; prepare clone
8556 (with-temp-buffer
8557 (insert template)
8558 (org-mode)
8559 (goto-char (point-min))
8560 (org-show-subtree)
8561 (and idprop (if org-clone-delete-id
8562 (org-entry-delete nil "ID")
8563 (org-id-get-create t)))
8564 (unless (= n 0)
8565 (while (re-search-forward "^[ \t]*CLOCK:.*$" nil t)
8566 (kill-whole-line))
8567 (goto-char (point-min))
8568 (while (re-search-forward drawer-re nil t)
8569 (org-remove-empty-drawer-at (point))))
8570 (goto-char (point-min))
8571 (when doshift
8572 (while (re-search-forward org-ts-regexp-both nil t)
8573 (org-timestamp-change (* n shift-n) shift-what))
8574 (unless (= n n-no-remove)
8575 (goto-char (point-min))
8576 (while (re-search-forward org-ts-regexp nil t)
8577 (save-excursion
8578 (goto-char (match-beginning 0))
8579 (if (looking-at "<[^<>\n]+\\( +[.+]?\\+[0-9]+[hdwmy]\\)")
8580 (delete-region (match-beginning 1) (match-end 1)))))))
8581 (setq task (buffer-string)))
8582 (insert task))
8583 (goto-char beg)))
8585 ;;; Outline Sorting
8587 (defun org-sort (with-case)
8588 "Call `org-sort-entries', `org-table-sort-lines' or `org-sort-list'.
8589 Optional argument WITH-CASE means sort case-sensitively."
8590 (interactive "P")
8591 (cond
8592 ((org-at-table-p) (org-call-with-arg 'org-table-sort-lines with-case))
8593 ((org-at-item-p) (org-call-with-arg 'org-sort-list with-case))
8595 (org-call-with-arg 'org-sort-entries with-case))))
8597 (defun org-sort-remove-invisible (s)
8598 "Remove invisible links from string S."
8599 (remove-text-properties 0 (length s) org-rm-props s)
8600 (while (string-match org-bracket-link-regexp s)
8601 (setq s (replace-match (if (match-end 2)
8602 (match-string 3 s)
8603 (match-string 1 s)) t t s)))
8604 (let ((st (format " %s " s)))
8605 (while (string-match org-emph-re st)
8606 (setq st (replace-match (format " %s " (match-string 4 st)) t t st)))
8607 (setq s (substring st 1 -1)))
8610 (defvar org-priority-regexp) ; defined later in the file
8612 (defvar org-after-sorting-entries-or-items-hook nil
8613 "Hook that is run after a bunch of entries or items have been sorted.
8614 When children are sorted, the cursor is in the parent line when this
8615 hook gets called. When a region or a plain list is sorted, the cursor
8616 will be in the first entry of the sorted region/list.")
8618 (defun org-sort-entries
8619 (&optional with-case sorting-type getkey-func compare-func property)
8620 "Sort entries on a certain level of an outline tree.
8621 If there is an active region, the entries in the region are sorted.
8622 Else, if the cursor is before the first entry, sort the top-level items.
8623 Else, the children of the entry at point are sorted.
8625 Sorting can be alphabetically, numerically, by date/time as given by
8626 a time stamp, by a property, by priority order, or by a custom function.
8628 The command prompts for the sorting type unless it has been given to the
8629 function through the SORTING-TYPE argument, which needs to be a character,
8630 \(?n ?N ?a ?A ?t ?T ?s ?S ?d ?D ?p ?P ?o ?O ?r ?R ?f ?F). Here is the
8631 precise meaning of each character:
8633 n Numerically, by converting the beginning of the entry/item to a number.
8634 a Alphabetically, ignoring the TODO keyword and the priority, if any.
8635 o By order of TODO keywords.
8636 t By date/time, either the first active time stamp in the entry, or, if
8637 none exist, by the first inactive one.
8638 s By the scheduled date/time.
8639 d By deadline date/time.
8640 c By creation time, which is assumed to be the first inactive time stamp
8641 at the beginning of a line.
8642 p By priority according to the cookie.
8643 r By the value of a property.
8645 Capital letters will reverse the sort order.
8647 If the SORTING-TYPE is ?f or ?F, then GETKEY-FUNC specifies a function to be
8648 called with point at the beginning of the record. It must return either
8649 a string or a number that should serve as the sorting key for that record.
8651 Comparing entries ignores case by default. However, with an optional argument
8652 WITH-CASE, the sorting considers case as well.
8654 Sorting is done against the visible part of the headlines, it ignores hidden
8655 links.
8657 When sorting is done, call `org-after-sorting-entries-or-items-hook'."
8658 (interactive "P")
8659 (let ((case-func (if with-case 'identity 'downcase))
8660 (cmstr
8661 ;; The clock marker is lost when using `sort-subr', let's
8662 ;; store the clocking string.
8663 (when (equal (marker-buffer org-clock-marker) (current-buffer))
8664 (save-excursion
8665 (goto-char org-clock-marker)
8666 (looking-back "^.*") (match-string-no-properties 0))))
8667 start beg end stars re re2
8668 txt what tmp)
8669 ;; Find beginning and end of region to sort
8670 (cond
8671 ((org-region-active-p)
8672 ;; we will sort the region
8673 (setq end (region-end)
8674 what "region")
8675 (goto-char (region-beginning))
8676 (if (not (org-at-heading-p)) (outline-next-heading))
8677 (setq start (point)))
8678 ((or (org-at-heading-p)
8679 (condition-case nil (progn (org-back-to-heading) t) (error nil)))
8680 ;; we will sort the children of the current headline
8681 (org-back-to-heading)
8682 (setq start (point)
8683 end (progn (org-end-of-subtree t t)
8684 (or (bolp) (insert "\n"))
8685 (org-back-over-empty-lines)
8686 (point))
8687 what "children")
8688 (goto-char start)
8689 (show-subtree)
8690 (outline-next-heading))
8692 ;; we will sort the top-level entries in this file
8693 (goto-char (point-min))
8694 (or (org-at-heading-p) (outline-next-heading))
8695 (setq start (point))
8696 (goto-char (point-max))
8697 (beginning-of-line 1)
8698 (when (looking-at ".*?\\S-")
8699 ;; File ends in a non-white line
8700 (end-of-line 1)
8701 (insert "\n"))
8702 (setq end (point-max))
8703 (setq what "top-level")
8704 (goto-char start)
8705 (show-all)))
8707 (setq beg (point))
8708 (if (>= beg end) (user-error "Nothing to sort"))
8710 (looking-at "\\(\\*+\\)")
8711 (setq stars (match-string 1)
8712 re (concat "^" (regexp-quote stars) " +")
8713 re2 (concat "^" (regexp-quote (substring stars 0 -1)) "[ \t\n]")
8714 txt (buffer-substring beg end))
8715 (if (not (equal (substring txt -1) "\n")) (setq txt (concat txt "\n")))
8716 (if (and (not (equal stars "*")) (string-match re2 txt))
8717 (user-error "Region to sort contains a level above the first entry"))
8719 (unless sorting-type
8720 (message
8721 "Sort %s: [a]lpha [n]umeric [p]riority p[r]operty todo[o]rder [f]unc
8722 [t]ime [s]cheduled [d]eadline [c]reated
8723 A/N/P/R/O/F/T/S/D/C means reversed:"
8724 what)
8725 (setq sorting-type (read-char-exclusive))
8727 (unless getkey-func
8728 (and (= (downcase sorting-type) ?f)
8729 (setq getkey-func
8730 (org-icompleting-read "Sort using function: "
8731 obarray 'fboundp t nil nil))
8732 (setq getkey-func (intern getkey-func))))
8734 (and (= (downcase sorting-type) ?r)
8735 (not property)
8736 (setq property
8737 (org-icompleting-read "Property: "
8738 (mapcar 'list (org-buffer-property-keys t))
8739 nil t))))
8741 (message "Sorting entries...")
8743 (save-restriction
8744 (narrow-to-region start end)
8745 (let ((dcst (downcase sorting-type))
8746 (case-fold-search nil)
8747 (now (current-time)))
8748 (sort-subr
8749 (/= dcst sorting-type)
8750 ;; This function moves to the beginning character of the "record" to
8751 ;; be sorted.
8752 (lambda nil
8753 (if (re-search-forward re nil t)
8754 (goto-char (match-beginning 0))
8755 (goto-char (point-max))))
8756 ;; This function moves to the last character of the "record" being
8757 ;; sorted.
8758 (lambda nil
8759 (save-match-data
8760 (condition-case nil
8761 (outline-forward-same-level 1)
8762 (error
8763 (goto-char (point-max))))))
8764 ;; This function returns the value that gets sorted against.
8765 (lambda nil
8766 (cond
8767 ((= dcst ?n)
8768 (if (looking-at org-complex-heading-regexp)
8769 (string-to-number (org-sort-remove-invisible (match-string 4)))
8770 nil))
8771 ((= dcst ?a)
8772 (if (looking-at org-complex-heading-regexp)
8773 (funcall case-func (org-sort-remove-invisible (match-string 4)))
8774 nil))
8775 ((= dcst ?t)
8776 (let ((end (save-excursion (outline-next-heading) (point))))
8777 (if (or (re-search-forward org-ts-regexp end t)
8778 (re-search-forward org-ts-regexp-both end t))
8779 (org-time-string-to-seconds (match-string 0))
8780 (org-float-time now))))
8781 ((= dcst ?c)
8782 (let ((end (save-excursion (outline-next-heading) (point))))
8783 (if (re-search-forward
8784 (concat "^[ \t]*\\[" org-ts-regexp1 "\\]")
8785 end t)
8786 (org-time-string-to-seconds (match-string 0))
8787 (org-float-time now))))
8788 ((= dcst ?s)
8789 (let ((end (save-excursion (outline-next-heading) (point))))
8790 (if (re-search-forward org-scheduled-time-regexp end t)
8791 (org-time-string-to-seconds (match-string 1))
8792 (org-float-time now))))
8793 ((= dcst ?d)
8794 (let ((end (save-excursion (outline-next-heading) (point))))
8795 (if (re-search-forward org-deadline-time-regexp end t)
8796 (org-time-string-to-seconds (match-string 1))
8797 (org-float-time now))))
8798 ((= dcst ?p)
8799 (if (re-search-forward org-priority-regexp (point-at-eol) t)
8800 (string-to-char (match-string 2))
8801 org-default-priority))
8802 ((= dcst ?r)
8803 (or (org-entry-get nil property) ""))
8804 ((= dcst ?o)
8805 (if (looking-at org-complex-heading-regexp)
8806 (- 9999 (length (member (match-string 2)
8807 org-todo-keywords-1)))))
8808 ((= dcst ?f)
8809 (if getkey-func
8810 (progn
8811 (setq tmp (funcall getkey-func))
8812 (if (stringp tmp) (setq tmp (funcall case-func tmp)))
8813 tmp)
8814 (error "Invalid key function `%s'" getkey-func)))
8815 (t (error "Invalid sorting type `%c'" sorting-type))))
8817 (cond
8818 ((= dcst ?a) 'string<)
8819 ((= dcst ?f) compare-func)
8820 ((member dcst '(?p ?t ?s ?d ?c)) '<)))))
8821 (run-hooks 'org-after-sorting-entries-or-items-hook)
8822 ;; Reset the clock marker if needed
8823 (when cmstr
8824 (save-excursion
8825 (goto-char start)
8826 (search-forward cmstr nil t)
8827 (move-marker org-clock-marker (point))))
8828 (message "Sorting entries...done")))
8830 (defun org-do-sort (table what &optional with-case sorting-type)
8831 "Sort TABLE of WHAT according to SORTING-TYPE.
8832 The user will be prompted for the SORTING-TYPE if the call to this
8833 function does not specify it. WHAT is only for the prompt, to indicate
8834 what is being sorted. The sorting key will be extracted from
8835 the car of the elements of the table.
8836 If WITH-CASE is non-nil, the sorting will be case-sensitive."
8837 (unless sorting-type
8838 (message
8839 "Sort %s: [a]lphabetic, [n]umeric, [t]ime. A/N/T means reversed:"
8840 what)
8841 (setq sorting-type (read-char-exclusive)))
8842 (let ((dcst (downcase sorting-type))
8843 extractfun comparefun)
8844 ;; Define the appropriate functions
8845 (cond
8846 ((= dcst ?n)
8847 (setq extractfun 'string-to-number
8848 comparefun (if (= dcst sorting-type) '< '>)))
8849 ((= dcst ?a)
8850 (setq extractfun (if with-case (lambda(x) (org-sort-remove-invisible x))
8851 (lambda(x) (downcase (org-sort-remove-invisible x))))
8852 comparefun (if (= dcst sorting-type)
8853 'string<
8854 (lambda (a b) (and (not (string< a b))
8855 (not (string= a b)))))))
8856 ((= dcst ?t)
8857 (setq extractfun
8858 (lambda (x)
8859 (if (or (string-match org-ts-regexp x)
8860 (string-match org-ts-regexp-both x))
8861 (org-float-time
8862 (org-time-string-to-time (match-string 0 x)))
8864 comparefun (if (= dcst sorting-type) '< '>)))
8865 (t (error "Invalid sorting type `%c'" sorting-type)))
8867 (sort (mapcar (lambda (x) (cons (funcall extractfun (car x)) (cdr x)))
8868 table)
8869 (lambda (a b) (funcall comparefun (car a) (car b))))))
8872 ;;; The orgstruct minor mode
8874 ;; Define a minor mode which can be used in other modes in order to
8875 ;; integrate the org-mode structure editing commands.
8877 ;; This is really a hack, because the org-mode structure commands use
8878 ;; keys which normally belong to the major mode. Here is how it
8879 ;; works: The minor mode defines all the keys necessary to operate the
8880 ;; structure commands, but wraps the commands into a function which
8881 ;; tests if the cursor is currently at a headline or a plain list
8882 ;; item. If that is the case, the structure command is used,
8883 ;; temporarily setting many Org-mode variables like regular
8884 ;; expressions for filling etc. However, when any of those keys is
8885 ;; used at a different location, function uses `key-binding' to look
8886 ;; up if the key has an associated command in another currently active
8887 ;; keymap (minor modes, major mode, global), and executes that
8888 ;; command. There might be problems if any of the keys is otherwise
8889 ;; used as a prefix key.
8891 (defcustom orgstruct-heading-prefix-regexp ""
8892 "Regexp that matches the custom prefix of Org headlines in
8893 orgstruct(++)-mode."
8894 :group 'org
8895 :version "24.4"
8896 :package-version '(Org . "8.3")
8897 :type 'regexp)
8898 ;;;###autoload(put 'orgstruct-heading-prefix-regexp 'safe-local-variable 'stringp)
8900 (defcustom orgstruct-setup-hook nil
8901 "Hook run after orgstruct-mode-map is filled."
8902 :group 'org
8903 :version "24.4"
8904 :package-version '(Org . "8.0")
8905 :type 'hook)
8907 (defvar orgstruct-initialized nil)
8909 (defvar org-local-vars nil
8910 "List of local variables, for use by `orgstruct-mode'.")
8912 ;;;###autoload
8913 (define-minor-mode orgstruct-mode
8914 "Toggle the minor mode `orgstruct-mode'.
8915 This mode is for using Org-mode structure commands in other
8916 modes. The following keys behave as if Org-mode were active, if
8917 the cursor is on a headline, or on a plain list item (both as
8918 defined by Org-mode)."
8919 nil " OrgStruct" (make-sparse-keymap)
8920 (funcall (if orgstruct-mode
8921 'add-to-invisibility-spec
8922 'remove-from-invisibility-spec)
8923 '(outline . t))
8924 (when orgstruct-mode
8925 (org-load-modules-maybe)
8926 (unless orgstruct-initialized
8927 (orgstruct-setup)
8928 (setq orgstruct-initialized t))))
8930 ;;;###autoload
8931 (defun turn-on-orgstruct ()
8932 "Unconditionally turn on `orgstruct-mode'."
8933 (orgstruct-mode 1))
8935 (defvar org-fb-vars nil)
8936 (make-variable-buffer-local 'org-fb-vars)
8937 (defun orgstruct++-mode (&optional arg)
8938 "Toggle `orgstruct-mode', the enhanced version of it.
8939 In addition to setting orgstruct-mode, this also exports all
8940 indentation and autofilling variables from org-mode into the
8941 buffer. It will also recognize item context in multiline items."
8942 (interactive "P")
8943 (setq arg (prefix-numeric-value (or arg (if orgstruct-mode -1 1))))
8944 (if (< arg 1)
8945 (progn (orgstruct-mode -1)
8946 (mapc (lambda(v)
8947 (org-set-local (car v)
8948 (if (eq (car-safe (cadr v)) 'quote) (cadadr v) (cadr v))))
8949 org-fb-vars))
8950 (orgstruct-mode 1)
8951 (setq org-fb-vars nil)
8952 (unless org-local-vars
8953 (setq org-local-vars (org-get-local-variables)))
8954 (let (var val)
8955 (mapc
8956 (lambda (x)
8957 (when (string-match
8958 "^\\(paragraph-\\|auto-fill\\|normal-auto-fill\\|fill-paragraph\\|fill-prefix\\|indent-\\)"
8959 (symbol-name (car x)))
8960 (setq var (car x) val (nth 1 x))
8961 (push (list var `(quote ,(eval var))) org-fb-vars)
8962 (org-set-local var (if (eq (car-safe val) 'quote) (nth 1 val) val))))
8963 org-local-vars)
8964 (org-set-local 'orgstruct-is-++ t))))
8966 (defvar orgstruct-is-++ nil
8967 "Is `orgstruct-mode' in ++ version in the current-buffer?")
8968 (make-variable-buffer-local 'orgstruct-is-++)
8970 ;;;###autoload
8971 (defun turn-on-orgstruct++ ()
8972 "Unconditionally turn on `orgstruct++-mode'."
8973 (orgstruct++-mode 1))
8975 (defun orgstruct-error ()
8976 "Error when there is no default binding for a structure key."
8977 (interactive)
8978 (funcall (if (fboundp 'user-error)
8979 'user-error
8980 'error)
8981 "This key has no function outside structure elements"))
8983 (defun orgstruct-setup ()
8984 "Setup orgstruct keymap."
8985 (dolist (cell '((org-demote . t)
8986 (org-metaleft . t)
8987 (org-metaright . t)
8988 (org-promote . t)
8989 (org-shiftmetaleft . t)
8990 (org-shiftmetaright . t)
8991 org-backward-element
8992 org-backward-heading-same-level
8993 org-ctrl-c-ret
8994 org-ctrl-c-minus
8995 org-ctrl-c-star
8996 org-cycle
8997 org-forward-heading-same-level
8998 org-insert-heading
8999 org-insert-heading-respect-content
9000 org-kill-note-or-show-branches
9001 org-mark-subtree
9002 org-meta-return
9003 org-metadown
9004 org-metaup
9005 org-narrow-to-subtree
9006 org-promote-subtree
9007 org-reveal
9008 org-shiftdown
9009 org-shiftleft
9010 org-shiftmetadown
9011 org-shiftmetaup
9012 org-shiftright
9013 org-shifttab
9014 org-shifttab
9015 org-shiftup
9016 org-show-subtree
9017 org-sort
9018 org-up-element
9019 outline-demote
9020 outline-next-visible-heading
9021 outline-previous-visible-heading
9022 outline-promote
9023 outline-up-heading
9024 show-children))
9025 (let ((f (or (car-safe cell) cell))
9026 (disable-when-heading-prefix (cdr-safe cell)))
9027 (when (fboundp f)
9028 (let ((new-bindings))
9029 (dolist (binding (nconc (where-is-internal f org-mode-map)
9030 (where-is-internal f outline-mode-map)))
9031 (push binding new-bindings)
9032 ;; TODO use local-function-key-map
9033 (dolist (rep '(("<tab>" . "TAB")
9034 ("<return>" . "RET")
9035 ("<escape>" . "ESC")
9036 ("<delete>" . "DEL")))
9037 (setq binding (read-kbd-macro
9038 (let ((case-fold-search))
9039 (replace-regexp-in-string
9040 (regexp-quote (cdr rep))
9041 (car rep)
9042 (key-description binding)))))
9043 (pushnew binding new-bindings :test 'equal)))
9044 (dolist (binding new-bindings)
9045 (let ((key (lookup-key orgstruct-mode-map binding)))
9046 (when (or (not key) (numberp key))
9047 (condition-case nil
9048 (org-defkey orgstruct-mode-map
9049 binding
9050 (orgstruct-make-binding f binding disable-when-heading-prefix))
9051 (error nil)))))))))
9052 (run-hooks 'orgstruct-setup-hook))
9054 (defun orgstruct-make-binding (fun key disable-when-heading-prefix)
9055 "Create a function for binding in the structure minor mode.
9056 FUN is the command to call inside a table. KEY is the key that
9057 should be checked in for a command to execute outside of tables.
9058 Non-nil `disable-when-heading-prefix' means to disable the command
9059 if `orgstruct-heading-prefix-regexp' is not empty."
9060 (let ((name (concat "orgstruct-hijacker-" (symbol-name fun))))
9061 (let ((nname name)
9062 (i 0))
9063 (while (fboundp (intern nname))
9064 (setq nname (format "%s-%d" name (setq i (1+ i)))))
9065 (setq name (intern nname)))
9066 (eval
9067 (let ((bindings '((org-heading-regexp
9068 (concat "^"
9069 orgstruct-heading-prefix-regexp
9070 "\\(\\*+\\)\\(?: +\\(.*?\\)\\)?[ ]*$"))
9071 (org-outline-regexp
9072 (concat orgstruct-heading-prefix-regexp "\\*+ "))
9073 (org-outline-regexp-bol
9074 (concat "^" org-outline-regexp))
9075 (outline-regexp org-outline-regexp)
9076 (outline-heading-end-regexp "\n")
9077 (outline-level 'org-outline-level)
9078 (outline-heading-alist))))
9079 `(defun ,name (arg)
9080 ,(concat "In Structure, run `" (symbol-name fun) "'.\n"
9081 "Outside of structure, run the binding of `"
9082 (key-description key) "'."
9083 (when disable-when-heading-prefix
9084 (concat
9085 "\nIf `orgstruct-heading-prefix-regexp' is not empty, this command will always fall\n"
9086 "back to the default binding due to limitations of Org's implementation of\n"
9087 "`" (symbol-name fun) "'.")))
9088 (interactive "p")
9089 (let* ((disable
9090 ,(and disable-when-heading-prefix
9091 '(not (string= orgstruct-heading-prefix-regexp ""))))
9092 (fallback
9093 (or disable
9094 (not
9095 (let* ,bindings
9096 (org-context-p 'headline 'item
9097 ,(when (memq fun
9098 '(org-insert-heading
9099 org-insert-heading-respect-content
9100 org-meta-return))
9101 '(when orgstruct-is-++
9102 'item-body))))))))
9103 (if fallback
9104 (let* ((orgstruct-mode)
9105 (binding
9106 (loop with key = ,key
9107 for rep in
9108 '(nil
9109 ("<\\([^>]*\\)tab>" . "\\1TAB")
9110 ("<\\([^>]*\\)return>" . "\\1RET")
9111 ("<\\([^>]*\\)escape>" . "\\1ESC")
9112 ("<\\([^>]*\\)delete>" . "\\1DEL"))
9114 (when rep
9115 (setq key (read-kbd-macro
9116 (let ((case-fold-search))
9117 (replace-regexp-in-string
9118 (car rep)
9119 (cdr rep)
9120 (key-description key))))))
9121 thereis (key-binding key))))
9122 (if (keymapp binding)
9123 (set-temporary-overlay-map binding)
9124 (let ((func (or binding
9125 (unless disable
9126 'orgstruct-error))))
9127 (when func
9128 (call-interactively func)))))
9129 (org-run-like-in-org-mode
9130 (lambda ()
9131 (interactive)
9132 (let* ,bindings
9133 (call-interactively ',fun)))))))))
9134 name))
9136 (defun org-contextualize-keys (alist contexts)
9137 "Return valid elements in ALIST depending on CONTEXTS.
9139 `org-agenda-custom-commands' or `org-capture-templates' are the
9140 values used for ALIST, and `org-agenda-custom-commands-contexts'
9141 or `org-capture-templates-contexts' are the associated contexts
9142 definitions."
9143 (let ((contexts
9144 ;; normalize contexts
9145 (mapcar
9146 (lambda(c) (cond ((listp (cadr c))
9147 (list (car c) (car c) (cadr c)))
9148 ((string= "" (cadr c))
9149 (list (car c) (car c) (caddr c)))
9150 (t c))) contexts))
9151 (a alist) c r s)
9152 ;; loop over all commands or templates
9153 (while (setq c (pop a))
9154 (let (vrules repl)
9155 (cond
9156 ((not (assoc (car c) contexts))
9157 (push c r))
9158 ((and (assoc (car c) contexts)
9159 (setq vrules (org-contextualize-validate-key
9160 (car c) contexts)))
9161 (mapc (lambda (vr)
9162 (when (not (equal (car vr) (cadr vr)))
9163 (setq repl vr))) vrules)
9164 (if (not repl) (push c r)
9165 (push (cadr repl) s)
9166 (push
9167 (cons (car c)
9168 (cdr (or (assoc (cadr repl) alist)
9169 (error "Undefined key `%s' as contextual replacement for `%s'"
9170 (cadr repl) (car c)))))
9171 r))))))
9172 ;; Return limited ALIST, possibly with keys modified, and deduplicated
9173 (delq
9175 (delete-dups
9176 (mapcar (lambda (x)
9177 (let ((tpl (car x)))
9178 (when (not (delq
9180 (mapcar (lambda(y)
9181 (equal y tpl)) s))) x)))
9182 (reverse r))))))
9184 (defun org-contextualize-validate-key (key contexts)
9185 "Check CONTEXTS for agenda or capture KEY."
9186 (let (r rr res)
9187 (while (setq r (pop contexts))
9188 (mapc
9189 (lambda (rr)
9190 (when
9191 (and (equal key (car r))
9192 (if (functionp rr) (funcall rr)
9193 (or (and (eq (car rr) 'in-file)
9194 (buffer-file-name)
9195 (string-match (cdr rr) (buffer-file-name)))
9196 (and (eq (car rr) 'in-mode)
9197 (string-match (cdr rr) (symbol-name major-mode)))
9198 (and (eq (car rr) 'in-buffer)
9199 (string-match (cdr rr) (buffer-name)))
9200 (when (and (eq (car rr) 'not-in-file)
9201 (buffer-file-name))
9202 (not (string-match (cdr rr) (buffer-file-name))))
9203 (when (eq (car rr) 'not-in-mode)
9204 (not (string-match (cdr rr) (symbol-name major-mode))))
9205 (when (eq (car rr) 'not-in-buffer)
9206 (not (string-match (cdr rr) (buffer-name)))))))
9207 (push r res)))
9208 (car (last r))))
9209 (delete-dups (delq nil res))))
9211 (defun org-context-p (&rest contexts)
9212 "Check if local context is any of CONTEXTS.
9213 Possible values in the list of contexts are `table', `headline', and `item'."
9214 (let ((pos (point)))
9215 (goto-char (point-at-bol))
9216 (prog1 (or (and (memq 'table contexts)
9217 (looking-at "[ \t]*|"))
9218 (and (memq 'headline contexts)
9219 (looking-at org-outline-regexp))
9220 (and (memq 'item contexts)
9221 (looking-at "[ \t]*\\([-+*] \\|[0-9]+[.)] \\)"))
9222 (and (memq 'item-body contexts)
9223 (org-in-item-p)))
9224 (goto-char pos))))
9226 (defun org-get-local-variables ()
9227 "Return a list of all local variables in an Org mode buffer."
9228 (let (varlist)
9229 (with-current-buffer (get-buffer-create "*Org tmp*")
9230 (erase-buffer)
9231 (org-mode)
9232 (setq varlist (buffer-local-variables)))
9233 (kill-buffer "*Org tmp*")
9234 (delq nil
9235 (mapcar
9236 (lambda (x)
9237 (setq x
9238 (if (symbolp x)
9239 (list x)
9240 (list (car x) (cdr x))))
9241 (if (and (not (get (car x) 'org-state))
9242 (string-match
9243 "^\\(org-\\|orgtbl-\\|outline-\\|comment-\\|paragraph-\\|auto-fill\\|normal-auto-fill\\|fill-paragraph\\|indent-\\)"
9244 (symbol-name (car x))))
9245 x nil))
9246 varlist))))
9248 (defun org-clone-local-variables (from-buffer &optional regexp)
9249 "Clone local variables from FROM-BUFFER.
9250 Optional argument REGEXP selects variables to clone."
9251 (mapc
9252 (lambda (pair)
9253 (and (symbolp (car pair))
9254 (or (null regexp)
9255 (string-match regexp (symbol-name (car pair))))
9256 (set (make-local-variable (car pair))
9257 (cdr pair))))
9258 (buffer-local-variables from-buffer)))
9260 ;;;###autoload
9261 (defun org-run-like-in-org-mode (cmd)
9262 "Run a command, pretending that the current buffer is in Org-mode.
9263 This will temporarily bind local variables that are typically bound in
9264 Org-mode to the values they have in Org-mode, and then interactively
9265 call CMD."
9266 (org-load-modules-maybe)
9267 (unless org-local-vars
9268 (setq org-local-vars (org-get-local-variables)))
9269 (let (binds)
9270 (dolist (var org-local-vars)
9271 (when (or (not (boundp (car var)))
9272 (eq (symbol-value (car var))
9273 (default-value (car var))))
9274 (push (list (car var) `(quote ,(cadr var))) binds)))
9275 (eval `(let ,binds
9276 (call-interactively (quote ,cmd))))))
9278 ;;;; Archiving
9280 (defun org-get-category (&optional pos force-refresh)
9281 "Get the category applying to position POS."
9282 (save-match-data
9283 (if force-refresh (org-refresh-category-properties))
9284 (let ((pos (or pos (point))))
9285 (or (get-text-property pos 'org-category)
9286 (progn (org-refresh-category-properties)
9287 (get-text-property pos 'org-category))))))
9289 (defun org-refresh-category-properties ()
9290 "Refresh category text properties in the buffer."
9291 (let ((case-fold-search t)
9292 (inhibit-read-only t)
9293 (def-cat (cond
9294 ((null org-category)
9295 (if buffer-file-name
9296 (file-name-sans-extension
9297 (file-name-nondirectory buffer-file-name))
9298 "???"))
9299 ((symbolp org-category) (symbol-name org-category))
9300 (t org-category)))
9301 beg end cat pos optionp)
9302 (org-with-silent-modifications
9303 (save-excursion
9304 (save-restriction
9305 (widen)
9306 (goto-char (point-min))
9307 (put-text-property (point) (point-max) 'org-category def-cat)
9308 (while (re-search-forward
9309 "^\\(#\\+CATEGORY:\\|[ \t]*:CATEGORY:\\)\\(.*\\)" nil t)
9310 (setq pos (match-end 0)
9311 optionp (equal (char-after (match-beginning 0)) ?#)
9312 cat (org-trim (match-string 2)))
9313 (if optionp
9314 (setq beg (point-at-bol) end (point-max))
9315 (org-back-to-heading t)
9316 (setq beg (point) end (org-end-of-subtree t t)))
9317 (put-text-property beg end 'org-category cat)
9318 (put-text-property beg end 'org-category-position beg)
9319 (goto-char pos)))))))
9321 (defun org-refresh-properties (dprop tprop)
9322 "Refresh buffer text properties.
9323 DPROP is the drawer property and TPROP is the corresponding text
9324 property to set."
9325 (let ((case-fold-search t)
9326 (inhibit-read-only t) p)
9327 (org-with-silent-modifications
9328 (save-excursion
9329 (save-restriction
9330 (widen)
9331 (goto-char (point-min))
9332 (while (re-search-forward (concat "^[ \t]*:" dprop ": +\\(.*\\)[ \t]*$") nil t)
9333 (setq p (org-match-string-no-properties 1))
9334 (save-excursion
9335 (org-back-to-heading t)
9336 (put-text-property
9337 (point-at-bol) (org-end-of-subtree t t) tprop p))))))))
9340 ;;;; Link Stuff
9342 ;;; Link abbreviations
9344 (defun org-link-expand-abbrev (link)
9345 "Apply replacements as defined in `org-link-abbrev-alist'."
9346 (if (string-match "^\\([^:]*\\)\\(::?\\(.*\\)\\)?$" link)
9347 (let* ((key (match-string 1 link))
9348 (as (or (assoc key org-link-abbrev-alist-local)
9349 (assoc key org-link-abbrev-alist)))
9350 (tag (and (match-end 2) (match-string 3 link)))
9351 rpl)
9352 (if (not as)
9353 link
9354 (setq rpl (cdr as))
9355 (cond
9356 ((symbolp rpl) (funcall rpl tag))
9357 ((string-match "%(\\([^)]+\\))" rpl)
9358 (replace-match
9359 (save-match-data
9360 (funcall (intern-soft (match-string 1 rpl)) tag)) t t rpl))
9361 ((string-match "%s" rpl) (replace-match (or tag "") t t rpl))
9362 ((string-match "%h" rpl)
9363 (replace-match (url-hexify-string (or tag "")) t t rpl))
9364 (t (concat rpl tag)))))
9365 link))
9367 ;;; Storing and inserting links
9369 (defvar org-insert-link-history nil
9370 "Minibuffer history for links inserted with `org-insert-link'.")
9372 (defvar org-stored-links nil
9373 "Contains the links stored with `org-store-link'.")
9375 (defvar org-store-link-plist nil
9376 "Plist with info about the most recently link created with `org-store-link'.")
9378 (defvar org-link-protocols nil
9379 "Link protocols added to Org-mode using `org-add-link-type'.")
9381 (defvar org-store-link-functions nil
9382 "List of functions that are called to create and store a link.
9383 Each function will be called in turn until one returns a non-nil
9384 value. Each function should check if it is responsible for creating
9385 this link (for example by looking at the major mode).
9386 If not, it must exit and return nil.
9387 If yes, it should return a non-nil value after a calling
9388 `org-store-link-props' with a list of properties and values.
9389 Special properties are:
9391 :type The link prefix, like \"http\". This must be given.
9392 :link The link, like \"http://www.astro.uva.nl/~dominik\".
9393 This is obligatory as well.
9394 :description Optional default description for the second pair
9395 of brackets in an Org-mode link. The user can still change
9396 this when inserting this link into an Org-mode buffer.
9398 In addition to these, any additional properties can be specified
9399 and then used in capture templates.")
9401 (defun org-add-link-type (type &optional follow export)
9402 "Add TYPE to the list of `org-link-types'.
9403 Re-compute all regular expressions depending on `org-link-types'
9405 FOLLOW and EXPORT are two functions.
9407 FOLLOW should take the link path as the single argument and do whatever
9408 is necessary to follow the link, for example find a file or display
9409 a mail message.
9411 EXPORT should format the link path for export to one of the export formats.
9412 It should be a function accepting three arguments:
9414 path the path of the link, the text after the prefix (like \"http:\")
9415 desc the description of the link, if any, or a description added by
9416 org-export-normalize-links if there is none
9417 format the export format, a symbol like `html' or `latex' or `ascii'..
9419 The function may use the FORMAT information to return different values
9420 depending on the format. The return value will be put literally into
9421 the exported file. If the return value is nil, this means Org should
9422 do what it normally does with links which do not have EXPORT defined.
9424 Org-mode has a built-in default for exporting links. If you are happy with
9425 this default, there is no need to define an export function for the link
9426 type. For a simple example of an export function, see `org-bbdb.el'."
9427 (add-to-list 'org-link-types type t)
9428 (org-make-link-regexps)
9429 (if (assoc type org-link-protocols)
9430 (setcdr (assoc type org-link-protocols) (list follow export))
9431 (push (list type follow export) org-link-protocols)))
9433 (defvar org-agenda-buffer-name) ; Defined in org-agenda.el
9434 (defvar org-id-link-to-org-use-id) ; Defined in org-id.el
9436 ;;;###autoload
9437 (defun org-store-link (arg)
9438 "\\<org-mode-map>Store an org-link to the current location.
9439 This link is added to `org-stored-links' and can later be inserted
9440 into an org-buffer with \\[org-insert-link].
9442 For some link types, a prefix arg is interpreted.
9443 For links to Usenet articles, arg negates `org-gnus-prefer-web-links'.
9444 For file links, arg negates `org-context-in-file-links'.
9446 A double prefix arg force skipping storing functions that are not
9447 part of Org's core.
9449 A triple prefix arg force storing a link for each line in the
9450 active region."
9451 (interactive "P")
9452 (org-load-modules-maybe)
9453 (if (and (equal arg '(64)) (org-region-active-p))
9454 (save-excursion
9455 (let ((end (region-end)))
9456 (goto-char (region-beginning))
9457 (set-mark (point))
9458 (while (< (point-at-eol) end)
9459 (move-end-of-line 1) (activate-mark)
9460 (let (current-prefix-arg)
9461 (call-interactively 'org-store-link))
9462 (move-beginning-of-line 2)
9463 (set-mark (point)))))
9464 (org-with-limited-levels
9465 (setq org-store-link-plist nil)
9466 (let (link cpltxt desc description search
9467 txt custom-id agenda-link sfuns sfunsn)
9468 (cond
9470 ;; Store a link using an external link type
9471 ((and (not (equal arg '(16)))
9472 (setq sfuns
9473 (delq
9474 nil (mapcar (lambda (f)
9475 (let (fs) (if (funcall f) (push f fs))))
9476 org-store-link-functions))
9477 sfunsn (mapcar (lambda (fu) (symbol-name (car fu))) sfuns))
9478 (or (and (cdr sfuns)
9479 (funcall (intern
9480 (completing-read
9481 "Which function for creating the link? "
9482 sfunsn t (car sfunsn)))))
9483 (funcall (caar sfuns)))
9484 (setq link (plist-get org-store-link-plist :link)
9485 desc (or (plist-get org-store-link-plist
9486 :description) link))))
9488 ;; Store a link from a source code buffer
9489 ((org-src-edit-buffer-p)
9490 (let (label gc)
9491 (while (or (not label)
9492 (save-excursion
9493 (save-restriction
9494 (widen)
9495 (goto-char (point-min))
9496 (re-search-forward
9497 (regexp-quote (format org-coderef-label-format label))
9498 nil t))))
9499 (when label (message "Label exists already") (sit-for 2))
9500 (setq label (read-string "Code line label: " label)))
9501 (end-of-line 1)
9502 (setq link (format org-coderef-label-format label))
9503 (setq gc (- 79 (length link)))
9504 (if (< (current-column) gc) (org-move-to-column gc t) (insert " "))
9505 (insert link)
9506 (setq link (concat "(" label ")") desc nil)))
9508 ;; We are in the agenda, link to referenced location
9509 ((equal (org-bound-and-true-p org-agenda-buffer-name) (buffer-name))
9510 (let ((m (or (get-text-property (point) 'org-hd-marker)
9511 (get-text-property (point) 'org-marker))))
9512 (when m
9513 (org-with-point-at m
9514 (setq agenda-link
9515 (if (org-called-interactively-p 'any)
9516 (call-interactively 'org-store-link)
9517 (org-store-link nil)))))))
9519 ((eq major-mode 'calendar-mode)
9520 (let ((cd (calendar-cursor-to-date)))
9521 (setq link
9522 (format-time-string
9523 (car org-time-stamp-formats)
9524 (apply 'encode-time
9525 (list 0 0 0 (nth 1 cd) (nth 0 cd) (nth 2 cd)
9526 nil nil nil))))
9527 (org-store-link-props :type "calendar" :date cd)))
9529 ((eq major-mode 'help-mode)
9530 (setq link (concat "help:" (save-excursion
9531 (goto-char (point-min))
9532 (looking-at "^[^ ]+")
9533 (match-string 0))))
9534 (org-store-link-props :type "help"))
9536 ((eq major-mode 'w3-mode)
9537 (setq cpltxt (if (and (buffer-name)
9538 (not (string-match "Untitled" (buffer-name))))
9539 (buffer-name)
9540 (url-view-url t))
9541 link (url-view-url t))
9542 (org-store-link-props :type "w3" :url (url-view-url t)))
9544 ((eq major-mode 'image-mode)
9545 (setq cpltxt (concat "file:"
9546 (abbreviate-file-name buffer-file-name))
9547 link cpltxt)
9548 (org-store-link-props :type "image" :file buffer-file-name))
9550 ;; In dired, store a link to the file of the current line
9551 ((eq major-mode 'dired-mode)
9552 (let ((file (dired-get-filename nil t)))
9553 (setq file (if file
9554 (abbreviate-file-name
9555 (expand-file-name (dired-get-filename nil t)))
9556 ;; otherwise, no file so use current directory.
9557 default-directory))
9558 (setq cpltxt (concat "file:" file)
9559 link cpltxt)))
9561 ((setq search (run-hook-with-args-until-success
9562 'org-create-file-search-functions))
9563 (setq link (concat "file:" (abbreviate-file-name buffer-file-name)
9564 "::" search))
9565 (setq cpltxt (or description link)))
9567 ((and (buffer-file-name (buffer-base-buffer)) (derived-mode-p 'org-mode))
9568 (setq custom-id (org-entry-get nil "CUSTOM_ID"))
9569 (cond
9570 ;; Store a link using the target at point
9571 ((org-in-regexp "[^<]<<\\([^<>]+\\)>>[^>]" 1)
9572 (setq cpltxt
9573 (concat "file:"
9574 (abbreviate-file-name
9575 (buffer-file-name (buffer-base-buffer)))
9576 "::" (match-string 1))
9577 link cpltxt))
9578 ((and (featurep 'org-id)
9579 (or (eq org-id-link-to-org-use-id t)
9580 (and (org-called-interactively-p 'any)
9581 (or (eq org-id-link-to-org-use-id 'create-if-interactive)
9582 (and (eq org-id-link-to-org-use-id
9583 'create-if-interactive-and-no-custom-id)
9584 (not custom-id))))
9585 (and org-id-link-to-org-use-id (org-entry-get nil "ID"))))
9586 ;; Store a link using the ID at point
9587 (setq link (condition-case nil
9588 (prog1 (org-id-store-link)
9589 (setq desc (plist-get org-store-link-plist
9590 :description)))
9591 (error
9592 ;; Probably before first headline, link only to file
9593 (concat "file:"
9594 (abbreviate-file-name
9595 (buffer-file-name (buffer-base-buffer))))))))
9597 ;; Just link to current headline
9598 (setq cpltxt (concat "file:"
9599 (abbreviate-file-name
9600 (buffer-file-name (buffer-base-buffer)))))
9601 ;; Add a context search string
9602 (when (org-xor org-context-in-file-links arg)
9603 (let* ((ee (org-element-at-point))
9604 (et (org-element-type ee))
9605 (ev (plist-get (cadr ee) :value))
9606 (ek (plist-get (cadr ee) :key))
9607 (eok (and (stringp ek) (string-match "name" ek))))
9608 (setq txt (cond
9609 ((org-at-heading-p) nil)
9610 ((and (eq et 'keyword) eok) ev)
9611 ((org-region-active-p)
9612 (buffer-substring (region-beginning) (region-end)))))
9613 (when (or (null txt) (string-match "\\S-" txt))
9614 (setq cpltxt
9615 (concat cpltxt "::"
9616 (condition-case nil
9617 (org-make-org-heading-search-string txt)
9618 (error "")))
9619 desc (or (and (eq et 'keyword) eok ev)
9620 (nth 4 (ignore-errors (org-heading-components)))
9621 "NONE")))))
9622 (if (string-match "::\\'" cpltxt)
9623 (setq cpltxt (substring cpltxt 0 -2)))
9624 (setq link cpltxt))))
9626 ((buffer-file-name (buffer-base-buffer))
9627 ;; Just link to this file here.
9628 (setq cpltxt (concat "file:"
9629 (abbreviate-file-name
9630 (buffer-file-name (buffer-base-buffer)))))
9631 ;; Add a context string.
9632 (when (org-xor org-context-in-file-links arg)
9633 (setq txt (if (org-region-active-p)
9634 (buffer-substring (region-beginning) (region-end))
9635 (buffer-substring (point-at-bol) (point-at-eol))))
9636 ;; Only use search option if there is some text.
9637 (when (string-match "\\S-" txt)
9638 (setq cpltxt
9639 (concat cpltxt "::" (org-make-org-heading-search-string txt))
9640 desc "NONE")))
9641 (setq link cpltxt))
9643 ((org-called-interactively-p 'interactive)
9644 (user-error "No method for storing a link from this buffer"))
9646 (t (setq link nil)))
9648 ;; We're done setting link and desc, clean up
9649 (if (consp link) (setq cpltxt (car link) link (cdr link)))
9650 (setq link (or link cpltxt)
9651 desc (or desc cpltxt))
9652 (cond ((equal desc "NONE") (setq desc nil))
9653 ((string-match org-bracket-link-analytic-regexp desc)
9654 (let ((d0 (match-string 3 desc))
9655 (p0 (match-string 5 desc)))
9656 (setq desc
9657 (replace-regexp-in-string
9658 org-bracket-link-regexp
9659 (concat (or p0 d0)
9660 (if (equal (length (match-string 0 desc))
9661 (length desc)) "*" "")) desc)))))
9663 ;; Return the link
9664 (if (not (and (or (org-called-interactively-p 'any)
9665 executing-kbd-macro) link))
9666 (or agenda-link (and link (org-make-link-string link desc)))
9667 (push (list link desc) org-stored-links)
9668 (message "Stored: %s" (or desc link))
9669 (when custom-id
9670 (setq link (concat "file:" (abbreviate-file-name
9671 (buffer-file-name)) "::#" custom-id))
9672 (push (list link desc) org-stored-links)))))))
9674 (defun org-store-link-props (&rest plist)
9675 "Store link properties, extract names and addresses."
9676 (let (x adr)
9677 (when (setq x (plist-get plist :from))
9678 (setq adr (mail-extract-address-components x))
9679 (setq plist (plist-put plist :fromname (car adr)))
9680 (setq plist (plist-put plist :fromaddress (nth 1 adr))))
9681 (when (setq x (plist-get plist :to))
9682 (setq adr (mail-extract-address-components x))
9683 (setq plist (plist-put plist :toname (car adr)))
9684 (setq plist (plist-put plist :toaddress (nth 1 adr)))))
9685 (let ((from (plist-get plist :from))
9686 (to (plist-get plist :to)))
9687 (when (and from to org-from-is-user-regexp)
9688 (setq plist
9689 (plist-put plist :fromto
9690 (if (string-match org-from-is-user-regexp from)
9691 (concat "to %t")
9692 (concat "from %f"))))))
9693 (setq org-store-link-plist plist))
9695 (defun org-add-link-props (&rest plist)
9696 "Add these properties to the link property list."
9697 (let (key value)
9698 (while plist
9699 (setq key (pop plist) value (pop plist))
9700 (setq org-store-link-plist
9701 (plist-put org-store-link-plist key value)))))
9703 (defun org-email-link-description (&optional fmt)
9704 "Return the description part of an email link.
9705 This takes information from `org-store-link-plist' and formats it
9706 according to FMT (default from `org-email-link-description-format')."
9707 (setq fmt (or fmt org-email-link-description-format))
9708 (let* ((p org-store-link-plist)
9709 (to (plist-get p :toaddress))
9710 (from (plist-get p :fromaddress))
9711 (table
9712 (list
9713 (cons "%c" (plist-get p :fromto))
9714 (cons "%F" (plist-get p :from))
9715 (cons "%f" (or (plist-get p :fromname) (plist-get p :fromaddress) "?"))
9716 (cons "%T" (plist-get p :to))
9717 (cons "%t" (or (plist-get p :toname) (plist-get p :toaddress) "?"))
9718 (cons "%s" (plist-get p :subject))
9719 (cons "%d" (plist-get p :date))
9720 (cons "%m" (plist-get p :message-id)))))
9721 (when (string-match "%c" fmt)
9722 ;; Check if the user wrote this message
9723 (if (and org-from-is-user-regexp from to
9724 (save-match-data (string-match org-from-is-user-regexp from)))
9725 (setq fmt (replace-match "to %t" t t fmt))
9726 (setq fmt (replace-match "from %f" t t fmt))))
9727 (org-replace-escapes fmt table)))
9729 (defun org-make-org-heading-search-string (&optional string)
9730 "Make search string for the current headline or STRING."
9731 (let ((s (or string
9732 (and (derived-mode-p 'org-mode)
9733 (save-excursion
9734 (org-back-to-heading t)
9735 (org-element-property :raw-value (org-element-at-point))))))
9736 (lines org-context-in-file-links))
9737 (or string (setq s (concat "*" s))) ; Add * for headlines
9738 (setq s (replace-regexp-in-string "\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]" "" s))
9739 (when (and string (integerp lines) (> lines 0))
9740 (let ((slines (org-split-string s "\n")))
9741 (when (< lines (length slines))
9742 (setq s (mapconcat
9743 'identity
9744 (reverse (nthcdr (- (length slines) lines)
9745 (reverse slines))) "\n")))))
9746 (mapconcat 'identity (org-split-string s "[ \t]+") " ")))
9748 (defun org-make-link-string (link &optional description)
9749 "Make a link with brackets, consisting of LINK and DESCRIPTION."
9750 (unless (string-match "\\S-" link)
9751 (error "Empty link"))
9752 (when (and description
9753 (stringp description)
9754 (not (string-match "\\S-" description)))
9755 (setq description nil))
9756 (when (stringp description)
9757 ;; Remove brackets from the description, they are fatal.
9758 (while (string-match "\\[" description)
9759 (setq description (replace-match "{" t t description)))
9760 (while (string-match "\\]" description)
9761 (setq description (replace-match "}" t t description))))
9762 (when (equal link description)
9763 ;; No description needed, it is identical
9764 (setq description nil))
9765 (when (and (not description)
9766 (not (string-match (org-image-file-name-regexp) link))
9767 (not (equal link (org-link-escape link))))
9768 (setq description (org-extract-attributes link)))
9769 (setq link
9770 (cond ((string-match (org-image-file-name-regexp) link) link)
9771 ((string-match org-link-types-re link)
9772 (concat (match-string 1 link)
9773 (org-link-escape (substring link (match-end 1)))))
9774 (t (org-link-escape link))))
9775 (concat "[[" link "]"
9776 (if description (concat "[" description "]") "")
9777 "]"))
9779 (defconst org-link-escape-chars
9780 ;;%20 %2B %3B %3D %5B %5D
9781 '(?\ ?\+ ?\; ?\= ?\[ ?\])
9782 "List of characters that should be escaped in link.
9783 This is the list that is used for internal purposes.")
9785 (defconst org-link-escape-chars-browser
9786 ;;%20 %22
9787 '(?\ ?\")
9788 "List of escapes for characters that are problematic in links.
9789 This is the list that is used before handing over to the browser.")
9791 (defun org-link-escape (text &optional table merge)
9792 "Return percent escaped representation of TEXT.
9793 TEXT is a string with the text to escape.
9794 Optional argument TABLE is a list with characters that should be
9795 escaped. When nil, `org-link-escape-chars' is used.
9796 If optional argument MERGE is set, merge TABLE into
9797 `org-link-escape-chars'."
9798 (cond
9799 ((and table merge)
9800 (mapc (lambda (defchr)
9801 (unless (member defchr table)
9802 (setq table (cons defchr table)))) org-link-escape-chars))
9803 ((null table)
9804 (setq table org-link-escape-chars)))
9805 (mapconcat
9806 (lambda (char)
9807 (if (or (member char table)
9808 (and (or (< char 32) (= char ?\%) (> char 126))
9809 org-url-hexify-p))
9810 (mapconcat (lambda (sequence-element)
9811 (format "%%%.2X" sequence-element))
9812 (or (encode-coding-char char 'utf-8)
9813 (error "Unable to percent escape character: %s"
9814 (char-to-string char))) "")
9815 (char-to-string char))) text ""))
9817 (defun org-link-escape-browser (text)
9818 (if (org-string-match-p
9819 (concat "[[:nonascii:]" org-link-escape-chars-browser "]")
9820 text)
9821 (org-link-escape text org-link-escape-chars-browser)
9822 text))
9824 (defun org-link-unescape (str)
9825 "Unhex hexified Unicode strings as returned from the JavaScript function
9826 encodeURIComponent. E.g. `%C3%B6' is the german o-Umlaut."
9827 (unless (and (null str) (string= "" str))
9828 (let ((pos 0) (case-fold-search t) unhexed)
9829 (while (setq pos (string-match "\\(%[0-9a-f][0-9a-f]\\)+" str pos))
9830 (setq unhexed (org-link-unescape-compound (match-string 0 str)))
9831 (setq str (replace-match unhexed t t str))
9832 (setq pos (+ pos (length unhexed))))))
9833 str)
9835 (defun org-link-unescape-compound (hex)
9836 "Unhexify Unicode hex-chars. E.g. `%C3%B6' is the German o-Umlaut.
9837 Note: this function also decodes single byte encodings like
9838 `%E1' (a-acute) if not followed by another `%[A-F0-9]{2}' group."
9839 (save-match-data
9840 (let* ((bytes (cdr (split-string hex "%")))
9841 (ret "")
9842 (eat 0)
9843 (sum 0))
9844 (while bytes
9845 (let* ((val (string-to-number (pop bytes) 16))
9846 (shift-xor
9847 (if (= 0 eat)
9848 (cond
9849 ((>= val 252) (cons 6 252))
9850 ((>= val 248) (cons 5 248))
9851 ((>= val 240) (cons 4 240))
9852 ((>= val 224) (cons 3 224))
9853 ((>= val 192) (cons 2 192))
9854 (t (cons 0 0)))
9855 (cons 6 128))))
9856 (if (>= val 192) (setq eat (car shift-xor)))
9857 (setq val (logxor val (cdr shift-xor)))
9858 (setq sum (+ (lsh sum (car shift-xor)) val))
9859 (if (> eat 0) (setq eat (- eat 1)))
9860 (cond
9861 ((= 0 eat) ;multi byte
9862 (setq ret (concat ret (org-char-to-string sum)))
9863 (setq sum 0))
9864 ((not bytes) ; single byte(s)
9865 (setq ret (org-link-unescape-single-byte-sequence hex))))
9866 )) ;; end (while bytes
9867 ret )))
9869 (defun org-link-unescape-single-byte-sequence (hex)
9870 "Unhexify hex-encoded single byte character sequences."
9871 (mapconcat (lambda (byte)
9872 (char-to-string (string-to-number byte 16)))
9873 (cdr (split-string hex "%")) ""))
9875 (defun org-xor (a b)
9876 "Exclusive or."
9877 (if a (not b) b))
9879 (defun org-fixup-message-id-for-http (s)
9880 "Replace special characters in a message id, so it can be used in an http query."
9881 (when (string-match "%" s)
9882 (setq s (mapconcat (lambda (c)
9883 (if (eq c ?%)
9884 "%25"
9885 (char-to-string c)))
9886 s "")))
9887 (while (string-match "<" s)
9888 (setq s (replace-match "%3C" t t s)))
9889 (while (string-match ">" s)
9890 (setq s (replace-match "%3E" t t s)))
9891 (while (string-match "@" s)
9892 (setq s (replace-match "%40" t t s)))
9895 (defun org-link-prettify (link)
9896 "Return a human-readable representation of LINK.
9897 The car of LINK must be a raw link the cdr of LINK must be either
9898 a link description or nil."
9899 (let ((desc (or (cadr link) "<no description>")))
9900 (concat (format "%-45s" (substring desc 0 (min (length desc) 40)))
9901 "<" (car link) ">")))
9903 ;;;###autoload
9904 (defun org-insert-link-global ()
9905 "Insert a link like Org-mode does.
9906 This command can be called in any mode to insert a link in Org-mode syntax."
9907 (interactive)
9908 (org-load-modules-maybe)
9909 (org-run-like-in-org-mode 'org-insert-link))
9911 (defun org-insert-all-links (&optional keep)
9912 "Insert all links in `org-stored-links'."
9913 (interactive "P")
9914 (let ((links (copy-sequence org-stored-links)) l)
9915 (while (setq l (if keep (pop links) (pop org-stored-links)))
9916 (insert "- ")
9917 (org-insert-link nil (car l) (or (cadr l) "<no description>"))
9918 (insert "\n"))))
9920 (defun org-link-fontify-links-to-this-file ()
9921 "Fontify links to the current file in `org-stored-links'."
9922 (let ((f (buffer-file-name)) a b)
9923 (setq a (mapcar (lambda(l)
9924 (let ((ll (car l)))
9925 (when (and (string-match "^file:\\(.+\\)::" ll)
9926 (equal f (expand-file-name (match-string 1 ll))))
9927 ll)))
9928 org-stored-links))
9929 (when (featurep 'org-id)
9930 (setq b (mapcar (lambda(l)
9931 (let ((ll (car l)))
9932 (when (and (string-match "^id:\\(.+\\)$" ll)
9933 (equal f (expand-file-name
9934 (or (org-id-find-id-file
9935 (match-string 1 ll)) ""))))
9936 ll)))
9937 org-stored-links)))
9938 (mapcar (lambda(l)
9939 (put-text-property 0 (length l) 'face 'font-lock-comment-face l))
9940 (delq nil (append a b)))))
9942 (defvar org-link-links-in-this-file nil)
9943 (defun org-insert-link (&optional complete-file link-location default-description)
9944 "Insert a link. At the prompt, enter the link.
9946 Completion can be used to insert any of the link protocol prefixes like
9947 http or ftp in use.
9949 The history can be used to select a link previously stored with
9950 `org-store-link'. When the empty string is entered (i.e. if you just
9951 press RET at the prompt), the link defaults to the most recently
9952 stored link. As SPC triggers completion in the minibuffer, you need to
9953 use M-SPC or C-q SPC to force the insertion of a space character.
9955 You will also be prompted for a description, and if one is given, it will
9956 be displayed in the buffer instead of the link.
9958 If there is already a link at point, this command will allow you to edit link
9959 and description parts.
9961 With a \\[universal-argument] prefix, prompts for a file to link to. The file name can
9962 be selected using completion. The path to the file will be relative to the
9963 current directory if the file is in the current directory or a subdirectory.
9964 Otherwise, the link will be the absolute path as completed in the minibuffer
9965 \(i.e. normally ~/path/to/file). You can configure this behavior using the
9966 option `org-link-file-path-type'.
9968 With two \\[universal-argument] prefixes, enforce an absolute path even if the file is in
9969 the current directory or below.
9971 With three \\[universal-argument] prefixes, negate the meaning of
9972 `org-keep-stored-link-after-insertion'.
9974 If `org-make-link-description-function' is non-nil, this function will be
9975 called with the link target, and the result will be the default
9976 link description.
9978 If the LINK-LOCATION parameter is non-nil, this value will be
9979 used as the link location instead of reading one interactively.
9981 If the DEFAULT-DESCRIPTION parameter is non-nil, this value will
9982 be used as the default description."
9983 (interactive "P")
9984 (let* ((wcf (current-window-configuration))
9985 (origbuf (current-buffer))
9986 (region (if (org-region-active-p)
9987 (buffer-substring (region-beginning) (region-end))))
9988 (remove (and region (list (region-beginning) (region-end))))
9989 (desc region)
9990 tmphist ; byte-compile incorrectly complains about this
9991 (link link-location)
9992 (abbrevs org-link-abbrev-alist-local)
9993 entry file all-prefixes auto-desc)
9994 (cond
9995 (link-location) ; specified by arg, just use it.
9996 ((org-in-regexp org-bracket-link-regexp 1)
9997 ;; We do have a link at point, and we are going to edit it.
9998 (setq remove (list (match-beginning 0) (match-end 0)))
9999 (setq desc (if (match-end 3) (org-match-string-no-properties 3)))
10000 (setq link (read-string "Link: "
10001 (org-link-unescape
10002 (org-match-string-no-properties 1)))))
10003 ((or (org-in-regexp org-angle-link-re)
10004 (org-in-regexp org-plain-link-re))
10005 ;; Convert to bracket link
10006 (setq remove (list (match-beginning 0) (match-end 0))
10007 link (read-string "Link: "
10008 (org-remove-angle-brackets (match-string 0)))))
10009 ((member complete-file '((4) (16)))
10010 ;; Completing read for file names.
10011 (setq link (org-file-complete-link complete-file)))
10013 ;; Read link, with completion for stored links.
10014 (org-link-fontify-links-to-this-file)
10015 (org-switch-to-buffer-other-window "*Org Links*")
10016 (with-current-buffer "*Org Links*"
10017 (erase-buffer)
10018 (insert "Insert a link.
10019 Use TAB to complete link prefixes, then RET for type-specific completion support\n")
10020 (when org-stored-links
10021 (insert "\nStored links are available with <up>/<down> or M-p/n (most recent with RET):\n\n")
10022 (insert (mapconcat 'org-link-prettify
10023 (reverse org-stored-links) "\n")))
10024 (goto-char (point-min)))
10025 (let ((cw (selected-window)))
10026 (select-window (get-buffer-window "*Org Links*" 'visible))
10027 (with-current-buffer "*Org Links*" (setq truncate-lines t))
10028 (unless (pos-visible-in-window-p (point-max))
10029 (org-fit-window-to-buffer))
10030 (and (window-live-p cw) (select-window cw)))
10031 ;; Fake a link history, containing the stored links.
10032 (setq tmphist (append (mapcar 'car org-stored-links)
10033 org-insert-link-history))
10034 (setq all-prefixes (append (mapcar 'car abbrevs)
10035 (mapcar 'car org-link-abbrev-alist)
10036 org-link-types))
10037 (unwind-protect
10038 (progn
10039 (setq link
10040 (org-completing-read
10041 "Link: "
10042 (append
10043 (mapcar (lambda (x) (concat x ":"))
10044 all-prefixes)
10045 (mapcar 'car org-stored-links))
10046 nil nil nil
10047 'tmphist
10048 (caar org-stored-links)))
10049 (if (not (string-match "\\S-" link))
10050 (user-error "No link selected"))
10051 (mapc (lambda(l)
10052 (when (equal link (cadr l)) (setq link (car l) auto-desc t)))
10053 org-stored-links)
10054 (if (or (member link all-prefixes)
10055 (and (equal ":" (substring link -1))
10056 (member (substring link 0 -1) all-prefixes)
10057 (setq link (substring link 0 -1))))
10058 (setq link (with-current-buffer origbuf
10059 (org-link-try-special-completion link)))))
10060 (set-window-configuration wcf)
10061 (kill-buffer "*Org Links*"))
10062 (setq entry (assoc link org-stored-links))
10063 (or entry (push link org-insert-link-history))
10064 (setq desc (or desc (nth 1 entry)))))
10066 (if (funcall (if (equal complete-file '(64)) 'not 'identity)
10067 (not org-keep-stored-link-after-insertion))
10068 (setq org-stored-links (delq (assoc link org-stored-links)
10069 org-stored-links)))
10071 (if (and (string-match org-plain-link-re link)
10072 (not (string-match org-ts-regexp link)))
10073 ;; URL-like link, normalize the use of angular brackets.
10074 (setq link (org-remove-angle-brackets link)))
10076 ;; Check if we are linking to the current file with a search
10077 ;; option If yes, simplify the link by using only the search
10078 ;; option.
10079 (when (and buffer-file-name
10080 (string-match "^file:\\(.+?\\)::\\(.+\\)" link))
10081 (let* ((path (match-string 1 link))
10082 (case-fold-search nil)
10083 (search (match-string 2 link)))
10084 (save-match-data
10085 (if (equal (file-truename buffer-file-name) (file-truename path))
10086 ;; We are linking to this same file, with a search option
10087 (setq link search)))))
10089 ;; Check if we can/should use a relative path. If yes, simplify the link
10090 (when (string-match "^\\(file:\\|docview:\\)\\(.*\\)" link)
10091 (let* ((type (match-string 1 link))
10092 (path (match-string 2 link))
10093 (origpath path)
10094 (case-fold-search nil))
10095 (cond
10096 ((or (eq org-link-file-path-type 'absolute)
10097 (equal complete-file '(16)))
10098 (setq path (abbreviate-file-name (expand-file-name path))))
10099 ((eq org-link-file-path-type 'noabbrev)
10100 (setq path (expand-file-name path)))
10101 ((eq org-link-file-path-type 'relative)
10102 (setq path (file-relative-name path)))
10104 (save-match-data
10105 (if (string-match (concat "^" (regexp-quote
10106 (expand-file-name
10107 (file-name-as-directory
10108 default-directory))))
10109 (expand-file-name path))
10110 ;; We are linking a file with relative path name.
10111 (setq path (substring (expand-file-name path)
10112 (match-end 0)))
10113 (setq path (abbreviate-file-name (expand-file-name path)))))))
10114 (setq link (concat type path))
10115 (if (equal desc origpath)
10116 (setq desc path))))
10118 (if org-make-link-description-function
10119 (setq desc
10120 (or (condition-case nil
10121 (funcall org-make-link-description-function link desc)
10122 (error (progn (message "Can't get link description from `%s'"
10123 (symbol-name org-make-link-description-function))
10124 (sit-for 2) nil)))
10125 (read-string "Description: " default-description)))
10126 (if default-description (setq desc default-description)
10127 (setq desc (or (and auto-desc desc)
10128 (read-string "Description: " desc)))))
10130 (unless (string-match "\\S-" desc) (setq desc nil))
10131 (if remove (apply 'delete-region remove))
10132 (insert (org-make-link-string link desc))))
10134 (defun org-link-try-special-completion (type)
10135 "If there is completion support for link type TYPE, offer it."
10136 (let ((fun (intern (concat "org-" type "-complete-link"))))
10137 (if (functionp fun)
10138 (funcall fun)
10139 (read-string "Link (no completion support): " (concat type ":")))))
10141 (defun org-file-complete-link (&optional arg)
10142 "Create a file link using completion."
10143 (let (file link)
10144 (setq file (org-iread-file-name "File: "))
10145 (let ((pwd (file-name-as-directory (expand-file-name ".")))
10146 (pwd1 (file-name-as-directory (abbreviate-file-name
10147 (expand-file-name ".")))))
10148 (cond
10149 ((equal arg '(16))
10150 (setq link (concat
10151 "file:"
10152 (abbreviate-file-name (expand-file-name file)))))
10153 ((string-match (concat "^" (regexp-quote pwd1) "\\(.+\\)") file)
10154 (setq link (concat "file:" (match-string 1 file))))
10155 ((string-match (concat "^" (regexp-quote pwd) "\\(.+\\)")
10156 (expand-file-name file))
10157 (setq link (concat
10158 "file:" (match-string 1 (expand-file-name file)))))
10159 (t (setq link (concat "file:" file)))))
10160 link))
10162 (defun org-iread-file-name (&rest args)
10163 "Read-file-name using `ido-mode' speedup if available.
10164 ARGS are arguments that may be passed to `ido-read-file-name' or `read-file-name'.
10165 See `read-file-name' for a description of parameters."
10166 (org-without-partial-completion
10167 (if (and org-completion-use-ido
10168 (fboundp 'ido-read-file-name)
10169 (boundp 'ido-mode) ido-mode
10170 (listp (second args)))
10171 (let ((ido-enter-matching-directory nil))
10172 (apply 'ido-read-file-name args))
10173 (apply 'read-file-name args))))
10175 (defun org-completing-read (&rest args)
10176 "Completing-read with SPACE being a normal character."
10177 (let ((enable-recursive-minibuffers t)
10178 (minibuffer-local-completion-map
10179 (copy-keymap minibuffer-local-completion-map)))
10180 (org-defkey minibuffer-local-completion-map " " 'self-insert-command)
10181 (org-defkey minibuffer-local-completion-map "?" 'self-insert-command)
10182 (org-defkey minibuffer-local-completion-map (kbd "C-c !") 'org-time-stamp-inactive)
10183 (apply 'org-icompleting-read args)))
10185 (defun org-completing-read-no-i (&rest args)
10186 (let (org-completion-use-ido org-completion-use-iswitchb)
10187 (apply 'org-completing-read args)))
10189 (defun org-iswitchb-completing-read (prompt choices &rest args)
10190 "Use iswitch as a completing-read replacement to choose from choices.
10191 PROMPT is a string to prompt with. CHOICES is a list of strings to choose
10192 from."
10193 (let* ((iswitchb-use-virtual-buffers nil)
10194 (iswitchb-make-buflist-hook
10195 (lambda ()
10196 (setq iswitchb-temp-buflist choices))))
10197 (iswitchb-read-buffer prompt)))
10199 (defun org-icompleting-read (&rest args)
10200 "Completing-read using `ido-mode' or `iswitchb' speedups if available."
10201 (org-without-partial-completion
10202 (if (and org-completion-use-ido
10203 (fboundp 'ido-completing-read)
10204 (boundp 'ido-mode) ido-mode
10205 (listp (second args)))
10206 (let ((ido-enter-matching-directory nil))
10207 (apply 'ido-completing-read (concat (car args))
10208 (if (consp (car (nth 1 args)))
10209 (mapcar 'car (nth 1 args))
10210 (nth 1 args))
10211 (cddr args)))
10212 (if (and org-completion-use-iswitchb
10213 (boundp 'iswitchb-mode) iswitchb-mode
10214 (listp (second args)))
10215 (apply 'org-iswitchb-completing-read (concat (car args))
10216 (if (consp (car (nth 1 args)))
10217 (mapcar 'car (nth 1 args))
10218 (nth 1 args))
10219 (cddr args))
10220 (apply 'completing-read args)))))
10222 (defun org-extract-attributes (s)
10223 "Extract the attributes cookie from a string and set as text property."
10224 (let (a attr (start 0) key value)
10225 (save-match-data
10226 (when (string-match "{{\\([^}]+\\)}}$" s)
10227 (setq a (match-string 1 s) s (substring s 0 (match-beginning 0)))
10228 (while (string-match "\\([a-zA-Z]+\\)=\"\\([^\"]*\\)\"" a start)
10229 (setq key (match-string 1 a) value (match-string 2 a)
10230 start (match-end 0)
10231 attr (plist-put attr (intern key) value))))
10232 (org-add-props s nil 'org-attr attr))
10235 ;;; Opening/following a link
10237 (defvar org-link-search-failed nil)
10239 (defvar org-open-link-functions nil
10240 "Hook for functions finding a plain text link.
10241 These functions must take a single argument, the link content.
10242 They will be called for links that look like [[link text][description]]
10243 when LINK TEXT does not have a protocol like \"http:\" and does not look
10244 like a filename (e.g. \"./blue.png\").
10246 These functions will be called *before* Org attempts to resolve the
10247 link by doing text searches in the current buffer - so if you want a
10248 link \"[[target]]\" to still find \"<<target>>\", your function should
10249 handle this as a special case.
10251 When the function does handle the link, it must return a non-nil value.
10252 If it decides that it is not responsible for this link, it must return
10253 nil to indicate that that Org-mode can continue with other options
10254 like exact and fuzzy text search.")
10256 (defun org-next-link (&optional search-backward)
10257 "Move forward to the next link.
10258 If the link is in hidden text, expose it."
10259 (interactive "P")
10260 (when (and org-link-search-failed (eq this-command last-command))
10261 (goto-char (point-min))
10262 (message "Link search wrapped back to beginning of buffer"))
10263 (setq org-link-search-failed nil)
10264 (let* ((pos (point))
10265 (ct (org-context))
10266 (a (assoc :link ct))
10267 (srch-fun (if search-backward 're-search-backward 're-search-forward)))
10268 (cond (a (goto-char (nth (if search-backward 1 2) a)))
10269 ((looking-at org-any-link-re)
10270 ;; Don't stay stuck at link without an org-link face
10271 (forward-char (if search-backward -1 1))))
10272 (if (funcall srch-fun org-any-link-re nil t)
10273 (progn
10274 (goto-char (match-beginning 0))
10275 (if (outline-invisible-p) (org-show-context)))
10276 (goto-char pos)
10277 (setq org-link-search-failed t)
10278 (message "No further link found"))))
10280 (defun org-previous-link ()
10281 "Move backward to the previous link.
10282 If the link is in hidden text, expose it."
10283 (interactive)
10284 (funcall 'org-next-link t))
10286 (defun org-translate-link (s)
10287 "Translate a link string if a translation function has been defined."
10288 (if (and org-link-translation-function
10289 (fboundp org-link-translation-function)
10290 (string-match "\\([a-zA-Z0-9]+\\):\\(.*\\)" s))
10291 (progn
10292 (setq s (funcall org-link-translation-function
10293 (match-string 1 s) (match-string 2 s)))
10294 (concat (car s) ":" (cdr s)))
10297 (defun org-translate-link-from-planner (type path)
10298 "Translate a link from Emacs Planner syntax so that Org can follow it.
10299 This is still an experimental function, your mileage may vary."
10300 (cond
10301 ((member type '("http" "https" "news" "ftp"))
10302 ;; standard Internet links are the same.
10303 nil)
10304 ((and (equal type "irc") (string-match "^//" path))
10305 ;; Planner has two / at the beginning of an irc link, we have 1.
10306 ;; We should have zero, actually....
10307 (setq path (substring path 1)))
10308 ((and (equal type "lisp") (string-match "^/" path))
10309 ;; Planner has a slash, we do not.
10310 (setq type "elisp" path (substring path 1)))
10311 ((string-match "^//\\(.?*\\)/\\(<.*>\\)$" path)
10312 ;; A typical message link. Planner has the id after the final slash,
10313 ;; we separate it with a hash mark
10314 (setq path (concat (match-string 1 path) "#"
10315 (org-remove-angle-brackets (match-string 2 path))))))
10316 (cons type path))
10318 (defun org-find-file-at-mouse (ev)
10319 "Open file link or URL at mouse."
10320 (interactive "e")
10321 (mouse-set-point ev)
10322 (org-open-at-point 'in-emacs))
10324 (defun org-open-at-mouse (ev)
10325 "Open file link or URL at mouse.
10326 See the docstring of `org-open-file' for details."
10327 (interactive "e")
10328 (mouse-set-point ev)
10329 (if (eq major-mode 'org-agenda-mode)
10330 (org-agenda-copy-local-variable 'org-link-abbrev-alist-local))
10331 (org-open-at-point))
10333 (defvar org-window-config-before-follow-link nil
10334 "The window configuration before following a link.
10335 This is saved in case the need arises to restore it.")
10337 (defvar org-open-link-marker (make-marker)
10338 "Marker pointing to the location where `org-open-at-point; was called.")
10340 ;;;###autoload
10341 (defun org-open-at-point-global ()
10342 "Follow a link like Org-mode does.
10343 This command can be called in any mode to follow a link that has
10344 Org-mode syntax."
10345 (interactive)
10346 (org-run-like-in-org-mode 'org-open-at-point))
10348 ;;;###autoload
10349 (defun org-open-link-from-string (s &optional arg reference-buffer)
10350 "Open a link in the string S, as if it was in Org-mode."
10351 (interactive "sLink: \nP")
10352 (let ((reference-buffer (or reference-buffer (current-buffer))))
10353 (with-temp-buffer
10354 (let ((org-inhibit-startup (not reference-buffer)))
10355 (org-mode)
10356 (insert s)
10357 (goto-char (point-min))
10358 (when reference-buffer
10359 (setq org-link-abbrev-alist-local
10360 (with-current-buffer reference-buffer
10361 org-link-abbrev-alist-local)))
10362 (org-open-at-point arg reference-buffer)))))
10364 (defvar org-open-at-point-functions nil
10365 "Hook that is run when following a link at point.
10367 Functions in this hook must return t if they identify and follow
10368 a link at point. If they don't find anything interesting at point,
10369 they must return nil.")
10371 (defvar org-link-search-inhibit-query nil) ;; dynamically scoped
10372 (defvar clean-buffer-list-kill-buffer-names) ; Defined in midnight.el
10373 (defun org-open-at-point (&optional arg reference-buffer)
10374 "Open link at or after point.
10375 If there is no link at point, this function will search forward up to
10376 the end of the current line.
10377 Normally, files will be opened by an appropriate application. If the
10378 optional prefix argument ARG is non-nil, Emacs will visit the file.
10379 With a double prefix argument, try to open outside of Emacs, in the
10380 application the system uses for this file type."
10381 (interactive "P")
10382 ;; if in a code block, then open the block's results
10383 (unless (call-interactively #'org-babel-open-src-block-result)
10384 (org-load-modules-maybe)
10385 (move-marker org-open-link-marker (point))
10386 (setq org-window-config-before-follow-link (current-window-configuration))
10387 (org-remove-occur-highlights nil nil t)
10388 (cond
10389 ((and (org-at-heading-p)
10390 (not (org-at-timestamp-p t))
10391 (not (org-in-regexp
10392 (concat org-plain-link-re "\\|"
10393 org-bracket-link-regexp "\\|"
10394 org-angle-link-re "\\|"
10395 "[ \t]:[^ \t\n]+:[ \t]*$")))
10396 (not (get-text-property (point) 'org-linked-text)))
10397 (or (let* ((lkall (org-offer-links-in-entry (current-buffer) (point) arg))
10398 (lk0 (car lkall))
10399 (lk (if (stringp lk0) (list lk0) lk0))
10400 (lkend (cdr lkall)))
10401 (mapcar (lambda(l)
10402 (search-forward l nil lkend)
10403 (goto-char (match-beginning 0))
10404 (org-open-at-point))
10405 lk))
10406 (progn (require 'org-attach) (org-attach-reveal 'if-exists))))
10407 ((run-hook-with-args-until-success 'org-open-at-point-functions))
10408 ((and (org-at-timestamp-p t)
10409 (not (org-in-regexp org-bracket-link-regexp)))
10410 (org-follow-timestamp-link))
10411 ((and (or (org-footnote-at-reference-p) (org-footnote-at-definition-p))
10412 (not (org-in-regexp org-any-link-re)))
10413 (org-footnote-action))
10415 (let (type path link line search (pos (point)))
10416 (catch 'match
10417 (save-excursion
10418 (skip-chars-forward "^]\n\r")
10419 (when (org-in-regexp org-bracket-link-regexp 1)
10420 (setq link (org-extract-attributes
10421 (org-link-unescape (org-match-string-no-properties 1))))
10422 (while (string-match " *\n *" link)
10423 (setq link (replace-match " " t t link)))
10424 (setq link (org-link-expand-abbrev link))
10425 (cond
10426 ((or (file-name-absolute-p link)
10427 (string-match "^\\.\\.?/" link))
10428 (setq type "file" path link))
10429 ((string-match org-link-re-with-space3 link)
10430 (setq type (match-string 1 link) path (match-string 2 link)))
10431 ((string-match "^help:+\\(.+\\)" link)
10432 (setq type "help" path (match-string 1 link)))
10433 (t (setq type "thisfile" path link)))
10434 (throw 'match t)))
10436 (when (get-text-property (point) 'org-linked-text)
10437 (setq type "thisfile"
10438 pos (if (get-text-property (1+ (point)) 'org-linked-text)
10439 (1+ (point)) (point))
10440 path (buffer-substring
10441 (or (previous-single-property-change pos 'org-linked-text)
10442 (point-min))
10443 (or (next-single-property-change pos 'org-linked-text)
10444 (point-max)))
10445 ;; Ensure we will search for a <<<radio>>> link, not
10446 ;; a simple reference like <<ref>>
10447 path (concat "<" path))
10448 (throw 'match t))
10450 (save-excursion
10451 (when (or (org-in-regexp org-angle-link-re)
10452 (let ((match (org-in-regexp org-plain-link-re)))
10453 ;; Check a plain link is not within a bracket link
10454 (and match
10455 (save-excursion
10456 (progn
10457 (goto-char (car match))
10458 (not (org-in-regexp org-bracket-link-regexp))))))
10459 (let ((line_ending (save-excursion (end-of-line) (point))))
10460 ;; We are in a line before a plain or bracket link
10461 (or (re-search-forward org-plain-link-re line_ending t)
10462 (re-search-forward org-bracket-link-regexp line_ending t))))
10463 (setq type (match-string 1)
10464 path (org-link-unescape (match-string 2)))
10465 (throw 'match t)))
10466 (save-excursion
10467 (when (org-in-regexp (org-re "\\(:[[:alnum:]_@#%:]+\\):[ \t]*$"))
10468 (setq type "tags"
10469 path (match-string 1))
10470 (while (string-match ":" path)
10471 (setq path (replace-match "+" t t path)))
10472 (throw 'match t)))
10473 (when (org-in-regexp "<\\([^><\n]+\\)>")
10474 (setq type "tree-match"
10475 path (match-string 1))
10476 (throw 'match t)))
10477 (unless path
10478 (user-error "No link found"))
10480 ;; switch back to reference buffer
10481 ;; needed when if called in a temporary buffer through
10482 ;; org-open-link-from-string
10483 (with-current-buffer (or reference-buffer (current-buffer))
10485 ;; Remove any trailing spaces in path
10486 (if (string-match " +\\'" path)
10487 (setq path (replace-match "" t t path)))
10488 (if (and org-link-translation-function
10489 (fboundp org-link-translation-function))
10490 ;; Check if we need to translate the link
10491 (let ((tmp (funcall org-link-translation-function type path)))
10492 (setq type (car tmp) path (cdr tmp))))
10494 (cond
10496 ((assoc type org-link-protocols)
10497 (funcall (nth 1 (assoc type org-link-protocols)) path))
10499 ((equal type "help")
10500 (let ((f-or-v (intern path)))
10501 (cond ((fboundp f-or-v)
10502 (describe-function f-or-v))
10503 ((boundp f-or-v)
10504 (describe-variable f-or-v))
10505 (t (error "Not a known function or variable")))))
10507 ((equal type "mailto")
10508 (let ((cmd (car org-link-mailto-program))
10509 (args (cdr org-link-mailto-program)) args1
10510 (address path) (subject "") a)
10511 (if (string-match "\\(.*\\)::\\(.*\\)" path)
10512 (setq address (match-string 1 path)
10513 subject (org-link-escape (match-string 2 path))))
10514 (while args
10515 (cond
10516 ((not (stringp (car args))) (push (pop args) args1))
10517 (t (setq a (pop args))
10518 (if (string-match "%a" a)
10519 (setq a (replace-match address t t a)))
10520 (if (string-match "%s" a)
10521 (setq a (replace-match subject t t a)))
10522 (push a args1))))
10523 (apply cmd (nreverse args1))))
10525 ((member type '("http" "https" "ftp" "news"))
10526 ;; In the example of the http Org link
10527 ;; [[http://lists.gnu.org/archive/cgi-bin/namazu.cgi?idxname=emacs-orgmode&query=%252Bsubject:"Release+8.2"]]
10528 ;; to open a browser with +subject:"Release 8.2" in the
10529 ;; query field the variable `path' contains
10530 ;; [...]=%2Bsubject:"Release+8.2", `url-encode-url'
10531 ;; converts correct to [...]=%2Bsubject:%22Release+8.2%22
10532 ;; and `org-link-escape-browser' converts wrong to
10533 ;; [...]=%252Bsubject:%22Release+8.2%22.
10535 ;; `url-encode-url' is available since Emacs 24.3.1 and
10536 ;; `org-link-escape-browser' can be removed altogether
10537 ;; once Org drops support for Emacs 24.1 and 24.2.
10538 (browse-url (funcall (if (fboundp 'url-encode-url)
10539 #'url-encode-url
10540 #'org-link-escape-browser)
10541 (concat type ":" path))))
10543 ((string= type "doi")
10544 ;; See comments for type http above
10545 (browse-url (funcall (if (fboundp 'url-encode-url)
10546 #'url-encode-url
10547 #'org-link-escape-browser)
10548 (concat org-doi-server-url path))))
10550 ((member type '("message"))
10551 (browse-url (concat type ":" path)))
10553 ((string= type "tags")
10554 (org-tags-view arg path))
10556 ((string= type "tree-match")
10557 (org-occur (concat "\\[" (regexp-quote path) "\\]")))
10559 ((string= type "file")
10560 (if (string-match "::\\([0-9]+\\)\\'" path)
10561 (setq line (string-to-number (match-string 1 path))
10562 path (substring path 0 (match-beginning 0)))
10563 (if (string-match "::\\(.+\\)\\'" path)
10564 (setq search (match-string 1 path)
10565 path (substring path 0 (match-beginning 0)))))
10566 (if (string-match "[*?{]" (file-name-nondirectory path))
10567 (dired path)
10568 (org-open-file path arg line search)))
10570 ((string= type "shell")
10571 (let ((buf (generate-new-buffer "*Org Shell Output"))
10572 (cmd path))
10573 (if (or (and (not (string= org-confirm-shell-link-not-regexp ""))
10574 (string-match org-confirm-shell-link-not-regexp cmd))
10575 (not org-confirm-shell-link-function)
10576 (funcall org-confirm-shell-link-function
10577 (format "Execute \"%s\" in shell? "
10578 (org-add-props cmd nil
10579 'face 'org-warning))))
10580 (progn
10581 (message "Executing %s" cmd)
10582 (shell-command cmd buf)
10583 (if (featurep 'midnight)
10584 (setq clean-buffer-list-kill-buffer-names
10585 (cons buf clean-buffer-list-kill-buffer-names))))
10586 (error "Abort"))))
10588 ((string= type "elisp")
10589 (let ((cmd path))
10590 (if (or (and (not (string= org-confirm-elisp-link-not-regexp ""))
10591 (string-match org-confirm-elisp-link-not-regexp cmd))
10592 (not org-confirm-elisp-link-function)
10593 (funcall org-confirm-elisp-link-function
10594 (format "Execute \"%s\" as elisp? "
10595 (org-add-props cmd nil
10596 'face 'org-warning))))
10597 (message "%s => %s" cmd
10598 (if (equal (string-to-char cmd) ?\()
10599 (eval (read cmd))
10600 (call-interactively (read cmd))))
10601 (error "Abort"))))
10603 ((and (string= type "thisfile")
10604 (or (run-hook-with-args-until-success
10605 'org-open-link-functions path)
10606 (and link
10607 (string-match "^id:" link)
10608 (or (featurep 'org-id) (require 'org-id))
10609 (progn
10610 (funcall (nth 1 (assoc "id" org-link-protocols))
10611 (substring path 3))
10612 t)))))
10614 ((string= type "thisfile")
10615 (if arg
10616 (switch-to-buffer-other-window
10617 (org-get-buffer-for-internal-link (current-buffer)))
10618 (org-mark-ring-push))
10619 (let ((cmd `(org-link-search
10620 ,path
10621 ,(cond ((equal arg '(4)) ''occur)
10622 ((equal arg '(16)) ''org-occur))
10623 ,pos)))
10624 (condition-case nil (let ((org-link-search-inhibit-query t))
10625 (eval cmd))
10626 (error (progn (widen) (eval cmd))))))
10628 (t (browse-url-at-point)))))))
10629 (move-marker org-open-link-marker nil)
10630 (run-hook-with-args 'org-follow-link-hook)))
10632 (defun org-offer-links-in-entry (buffer marker &optional nth zero)
10633 "Offer links in the current entry and return the selected link.
10634 If there is only one link, return it.
10635 If NTH is an integer, return the NTH link found.
10636 If ZERO is a string, check also this string for a link, and if
10637 there is one, return it."
10638 (with-current-buffer buffer
10639 (save-excursion
10640 (save-restriction
10641 (widen)
10642 (goto-char marker)
10643 (let ((re (concat "\\(" org-bracket-link-regexp "\\)\\|"
10644 "\\(" org-angle-link-re "\\)\\|"
10645 "\\(" org-plain-link-re "\\)"))
10646 (cnt ?0)
10647 (in-emacs (if (integerp nth) nil nth))
10648 have-zero end links link c)
10649 (when (and (stringp zero) (string-match org-bracket-link-regexp zero))
10650 (push (match-string 0 zero) links)
10651 (setq cnt (1- cnt) have-zero t))
10652 (save-excursion
10653 (org-back-to-heading t)
10654 (setq end (save-excursion (outline-next-heading) (point)))
10655 (while (re-search-forward re end t)
10656 (push (match-string 0) links))
10657 (setq links (org-uniquify (reverse links))))
10658 (cond
10659 ((null links)
10660 (message "No links"))
10661 ((equal (length links) 1)
10662 (setq link (car links)))
10663 ((and (integerp nth) (>= (length links) (if have-zero (1+ nth) nth)))
10664 (setq link (nth (if have-zero nth (1- nth)) links)))
10665 (t ; we have to select a link
10666 (save-excursion
10667 (save-window-excursion
10668 (delete-other-windows)
10669 (with-output-to-temp-buffer "*Select Link*"
10670 (mapc (lambda (l)
10671 (if (not (string-match org-bracket-link-regexp l))
10672 (princ (format "[%c] %s\n" (incf cnt)
10673 (org-remove-angle-brackets l)))
10674 (if (match-end 3)
10675 (princ (format "[%c] %s (%s)\n" (incf cnt)
10676 (match-string 3 l) (match-string 1 l)))
10677 (princ (format "[%c] %s\n" (incf cnt)
10678 (match-string 1 l))))))
10679 links))
10680 (org-fit-window-to-buffer (get-buffer-window "*Select Link*"))
10681 (message "Select link to open, RET to open all:")
10682 (setq c (read-char-exclusive))
10683 (and (get-buffer "*Select Link*") (kill-buffer "*Select Link*"))))
10684 (when (equal c ?q) (error "Abort"))
10685 (if (equal c ?\C-m)
10686 (setq link links)
10687 (setq nth (- c ?0))
10688 (if have-zero (setq nth (1+ nth)))
10689 (unless (and (integerp nth) (>= (length links) nth))
10690 (user-error "Invalid link selection"))
10691 (setq link (nth (1- nth) links)))))
10692 (cons link end))))))
10694 ;; Add special file links that specify the way of opening
10696 (org-add-link-type "file+sys" 'org-open-file-with-system)
10697 (org-add-link-type "file+emacs" 'org-open-file-with-emacs)
10698 (defun org-open-file-with-system (path)
10699 "Open file at PATH using the system way of opening it."
10700 (org-open-file path 'system))
10701 (defun org-open-file-with-emacs (path)
10702 "Open file at PATH in Emacs."
10703 (org-open-file path 'emacs))
10706 ;;; File search
10708 (defvar org-create-file-search-functions nil
10709 "List of functions to construct the right search string for a file link.
10710 These functions are called in turn with point at the location to
10711 which the link should point.
10713 A function in the hook should first test if it would like to
10714 handle this file type, for example by checking the `major-mode'
10715 or the file extension. If it decides not to handle this file, it
10716 should just return nil to give other functions a chance. If it
10717 does handle the file, it must return the search string to be used
10718 when following the link. The search string will be part of the
10719 file link, given after a double colon, and `org-open-at-point'
10720 will automatically search for it. If special measures must be
10721 taken to make the search successful, another function should be
10722 added to the companion hook `org-execute-file-search-functions',
10723 which see.
10725 A function in this hook may also use `setq' to set the variable
10726 `description' to provide a suggestion for the descriptive text to
10727 be used for this link when it gets inserted into an Org-mode
10728 buffer with \\[org-insert-link].")
10730 (defvar org-execute-file-search-functions nil
10731 "List of functions to execute a file search triggered by a link.
10733 Functions added to this hook must accept a single argument, the
10734 search string that was part of the file link, the part after the
10735 double colon. The function must first check if it would like to
10736 handle this search, for example by checking the `major-mode' or
10737 the file extension. If it decides not to handle this search, it
10738 should just return nil to give other functions a chance. If it
10739 does handle the search, it must return a non-nil value to keep
10740 other functions from trying.
10742 Each function can access the current prefix argument through the
10743 variable `current-prefix-arg'. Note that a single prefix is used
10744 to force opening a link in Emacs, so it may be good to only use a
10745 numeric or double prefix to guide the search function.
10747 In case this is needed, a function in this hook can also restore
10748 the window configuration before `org-open-at-point' was called using:
10750 (set-window-configuration org-window-config-before-follow-link)")
10752 (defun org-link-search (s &optional type avoid-pos stealth)
10753 "Search for a link search option.
10754 If S is surrounded by forward slashes, it is interpreted as a
10755 regular expression. In org-mode files, this will create an `org-occur'
10756 sparse tree. In ordinary files, `occur' will be used to list matches.
10757 If the current buffer is in `dired-mode', grep will be used to search
10758 in all files. If AVOID-POS is given, ignore matches near that position.
10760 When optional argument STEALTH is non-nil, do not modify
10761 visibility around point, thus ignoring
10762 `org-show-hierarchy-above', `org-show-following-heading' and
10763 `org-show-siblings' variables."
10764 (let ((case-fold-search t)
10765 (s0 (mapconcat 'identity (org-split-string s "[ \t\r\n]+") " "))
10766 (markers (concat "\\(?:" (mapconcat (lambda (x) (regexp-quote (car x)))
10767 (append '(("") (" ") ("\t") ("\n"))
10768 org-emphasis-alist)
10769 "\\|") "\\)"))
10770 (pos (point))
10771 (pre nil) (post nil)
10772 words re0 re1 re2 re3 re4_ re4 re5 re2a re2a_ reall)
10773 (cond
10774 ;; First check if there are any special search functions
10775 ((run-hook-with-args-until-success 'org-execute-file-search-functions s))
10776 ;; Now try the builtin stuff
10777 ((and (equal (string-to-char s0) ?#)
10778 (> (length s0) 1)
10779 (save-excursion
10780 (goto-char (point-min))
10781 (and
10782 (re-search-forward
10783 (concat "^[ \t]*:CUSTOM_ID:[ \t]+"
10784 (regexp-quote (substring s0 1)) "[ \t]*$") nil t)
10785 (setq type 'dedicated
10786 pos (match-beginning 0))))
10787 ;; There is an exact target for this
10788 (goto-char pos)
10789 (org-back-to-heading t)))
10790 ((save-excursion
10791 (goto-char (point-min))
10792 (and
10793 (re-search-forward
10794 (concat "<<" (regexp-quote s0) ">>") nil t)
10795 (setq type 'dedicated
10796 pos (match-beginning 0))))
10797 ;; There is an exact target for this
10798 (goto-char pos))
10799 ((save-excursion
10800 (goto-char (point-min))
10801 (and
10802 (re-search-forward
10803 (format "^[ \t]*#\\+NAME: %s" (regexp-quote s0)) nil t)
10804 (setq type 'dedicated pos (match-beginning 0))))
10805 ;; Found an element with a matching #+name affiliated keyword.
10806 (goto-char pos))
10807 ((and (string-match "^(\\(.*\\))$" s0)
10808 (save-excursion
10809 (goto-char (point-min))
10810 (and
10811 (re-search-forward
10812 (concat "[^[]" (regexp-quote
10813 (format org-coderef-label-format
10814 (match-string 1 s0))))
10815 nil t)
10816 (setq type 'dedicated
10817 pos (1+ (match-beginning 0))))))
10818 ;; There is a coderef target for this
10819 (goto-char pos))
10820 ((string-match "^/\\(.*\\)/$" s)
10821 ;; A regular expression
10822 (cond
10823 ((derived-mode-p 'org-mode)
10824 (org-occur (match-string 1 s)))
10825 (t (org-do-occur (match-string 1 s)))))
10826 ((and (derived-mode-p 'org-mode) org-link-search-must-match-exact-headline)
10827 (and (equal (string-to-char s) ?*) (setq s (substring s 1)))
10828 (goto-char (point-min))
10829 (cond
10830 ((let (case-fold-search)
10831 (re-search-forward (format org-complex-heading-regexp-format
10832 (regexp-quote s))
10833 nil t))
10834 ;; OK, found a match
10835 (setq type 'dedicated)
10836 (goto-char (match-beginning 0)))
10837 ((and (not org-link-search-inhibit-query)
10838 (eq org-link-search-must-match-exact-headline 'query-to-create)
10839 (y-or-n-p "No match - create this as a new heading? "))
10840 (goto-char (point-max))
10841 (or (bolp) (newline))
10842 (insert "* " s "\n")
10843 (beginning-of-line 0))
10845 (goto-char pos)
10846 (error "No match"))))
10848 ;; A normal search string
10849 (when (equal (string-to-char s) ?*)
10850 ;; Anchor on headlines, post may include tags.
10851 (setq pre "^\\*+[ \t]+\\(?:\\sw+\\)?[ \t]*"
10852 post (org-re "[ \t]*\\(?:[ \t]+:[[:alnum:]_@#%:+]:[ \t]*\\)?$")
10853 s (substring s 1)))
10854 (remove-text-properties
10855 0 (length s)
10856 '(face nil mouse-face nil keymap nil fontified nil) s)
10857 ;; Make a series of regular expressions to find a match
10858 (setq words (org-split-string s "[ \n\r\t]+")
10860 re0 (concat "\\(<<" (regexp-quote s0) ">>\\)")
10861 re2 (concat markers "\\(" (mapconcat 'downcase words "[ \t]+")
10862 "\\)" markers)
10863 re2a_ (concat "\\(" (mapconcat 'downcase words
10864 "[ \t\r\n]+") "\\)[ \t\r\n]")
10865 re2a (concat "[ \t\r\n]" re2a_)
10866 re4_ (concat "\\(" (mapconcat 'downcase words
10867 "[^a-zA-Z_\r\n]+") "\\)[^a-zA-Z_]")
10868 re4 (concat "[^a-zA-Z_]" re4_)
10870 re1 (concat pre re2 post)
10871 re3 (concat pre (if pre re4_ re4) post)
10872 re5 (concat pre ".*" re4)
10873 re2 (concat pre re2)
10874 re2a (concat pre (if pre re2a_ re2a))
10875 re4 (concat pre (if pre re4_ re4))
10876 reall (concat "\\(" re0 "\\)\\|\\(" re1 "\\)\\|\\(" re2
10877 "\\)\\|\\(" re3 "\\)\\|\\(" re4 "\\)\\|\\("
10878 re5 "\\)"))
10879 (cond
10880 ((eq type 'org-occur) (org-occur reall))
10881 ((eq type 'occur) (org-do-occur (downcase reall) 'cleanup))
10882 (t (goto-char (point-min))
10883 (setq type 'fuzzy)
10884 (if (or (and (org-search-not-self 1 re0 nil t)
10885 (setq type 'dedicated))
10886 (org-search-not-self 1 re1 nil t)
10887 (org-search-not-self 1 re2 nil t)
10888 (org-search-not-self 1 re2a nil t)
10889 (org-search-not-self 1 re3 nil t)
10890 (org-search-not-self 1 re4 nil t)
10891 (org-search-not-self 1 re5 nil t))
10892 (goto-char (match-beginning 1))
10893 (goto-char pos)
10894 (error "No match"))))))
10895 (and (derived-mode-p 'org-mode)
10896 (not stealth)
10897 (org-show-context 'link-search))
10898 type))
10900 (defun org-search-not-self (group &rest args)
10901 "Execute `re-search-forward', but only accept matches that do not
10902 enclose the position of `org-open-link-marker'."
10903 (let ((m org-open-link-marker))
10904 (catch 'exit
10905 (while (apply 're-search-forward args)
10906 (unless (get-text-property (match-end group) 'intangible) ; Emacs 21
10907 (goto-char (match-end group))
10908 (if (and (or (not (eq (marker-buffer m) (current-buffer)))
10909 (> (match-beginning 0) (marker-position m))
10910 (< (match-end 0) (marker-position m)))
10911 (save-match-data
10912 (or (not (org-in-regexp
10913 org-bracket-link-analytic-regexp 1))
10914 (not (match-end 4)) ; no description
10915 (and (<= (match-beginning 4) (point))
10916 (>= (match-end 4) (point))))))
10917 (throw 'exit (point))))))))
10919 (defun org-get-buffer-for-internal-link (buffer)
10920 "Return a buffer to be used for displaying the link target of internal links."
10921 (cond
10922 ((not org-display-internal-link-with-indirect-buffer)
10923 buffer)
10924 ((string-match "(Clone)$" (buffer-name buffer))
10925 (message "Buffer is already a clone, not making another one")
10926 ;; we also do not modify visibility in this case
10927 buffer)
10928 (t ; make a new indirect buffer for displaying the link
10929 (let* ((bn (buffer-name buffer))
10930 (ibn (concat bn "(Clone)"))
10931 (ib (or (get-buffer ibn) (make-indirect-buffer buffer ibn 'clone))))
10932 (with-current-buffer ib (org-overview))
10933 ib))))
10935 (defun org-do-occur (regexp &optional cleanup)
10936 "Call the Emacs command `occur'.
10937 If CLEANUP is non-nil, remove the printout of the regular expression
10938 in the *Occur* buffer. This is useful if the regex is long and not useful
10939 to read."
10940 (occur regexp)
10941 (when cleanup
10942 (let ((cwin (selected-window)) win beg end)
10943 (when (setq win (get-buffer-window "*Occur*"))
10944 (select-window win))
10945 (goto-char (point-min))
10946 (when (re-search-forward "match[a-z]+" nil t)
10947 (setq beg (match-end 0))
10948 (if (re-search-forward "^[ \t]*[0-9]+" nil t)
10949 (setq end (1- (match-beginning 0)))))
10950 (and beg end (let ((inhibit-read-only t)) (delete-region beg end)))
10951 (goto-char (point-min))
10952 (select-window cwin))))
10954 ;;; The mark ring for links jumps
10956 (defvar org-mark-ring nil
10957 "Mark ring for positions before jumps in Org-mode.")
10958 (defvar org-mark-ring-last-goto nil
10959 "Last position in the mark ring used to go back.")
10960 ;; Fill and close the ring
10961 (setq org-mark-ring nil org-mark-ring-last-goto nil) ;; in case file is reloaded
10962 (loop for i from 1 to org-mark-ring-length do
10963 (push (make-marker) org-mark-ring))
10964 (setcdr (nthcdr (1- org-mark-ring-length) org-mark-ring)
10965 org-mark-ring)
10967 (defun org-mark-ring-push (&optional pos buffer)
10968 "Put the current position or POS into the mark ring and rotate it."
10969 (interactive)
10970 (setq pos (or pos (point)))
10971 (setq org-mark-ring (nthcdr (1- org-mark-ring-length) org-mark-ring))
10972 (move-marker (car org-mark-ring)
10973 (or pos (point))
10974 (or buffer (current-buffer)))
10975 (message "%s"
10976 (substitute-command-keys
10977 "Position saved to mark ring, go back with \\[org-mark-ring-goto].")))
10979 (defun org-mark-ring-goto (&optional n)
10980 "Jump to the previous position in the mark ring.
10981 With prefix arg N, jump back that many stored positions. When
10982 called several times in succession, walk through the entire ring.
10983 Org-mode commands jumping to a different position in the current file,
10984 or to another Org-mode file, automatically push the old position
10985 onto the ring."
10986 (interactive "p")
10987 (let (p m)
10988 (if (eq last-command this-command)
10989 (setq p (nthcdr n (or org-mark-ring-last-goto org-mark-ring)))
10990 (setq p org-mark-ring))
10991 (setq org-mark-ring-last-goto p)
10992 (setq m (car p))
10993 (org-pop-to-buffer-same-window (marker-buffer m))
10994 (goto-char m)
10995 (if (or (outline-invisible-p) (org-invisible-p2)) (org-show-context 'mark-goto))))
10997 (defun org-remove-angle-brackets (s)
10998 (if (equal (substring s 0 1) "<") (setq s (substring s 1)))
10999 (if (equal (substring s -1) ">") (setq s (substring s 0 -1)))
11001 (defun org-add-angle-brackets (s)
11002 (if (equal (substring s 0 1) "<") nil (setq s (concat "<" s)))
11003 (if (equal (substring s -1) ">") nil (setq s (concat s ">")))
11005 (defun org-remove-double-quotes (s)
11006 (if (equal (substring s 0 1) "\"") (setq s (substring s 1)))
11007 (if (equal (substring s -1) "\"") (setq s (substring s 0 -1)))
11010 ;;; Following specific links
11012 (defun org-follow-timestamp-link ()
11013 "Open an agenda view for the time-stamp date/range at point."
11014 (cond
11015 ((org-at-date-range-p t)
11016 (let ((org-agenda-start-on-weekday)
11017 (t1 (match-string 1))
11018 (t2 (match-string 2)) tt1 tt2)
11019 (setq tt1 (time-to-days (org-time-string-to-time t1))
11020 tt2 (time-to-days (org-time-string-to-time t2)))
11021 (let ((org-agenda-buffer-tmp-name
11022 (format "*Org Agenda(a:%s)"
11023 (concat (substring t1 0 10) "--" (substring t2 0 10)))))
11024 (org-agenda-list nil tt1 (1+ (- tt2 tt1))))))
11025 ((org-at-timestamp-p t)
11026 (let ((org-agenda-buffer-tmp-name
11027 (format "*Org Agenda(a:%s)" (substring (match-string 1) 0 10))))
11028 (org-agenda-list nil (time-to-days (org-time-string-to-time
11029 (substring (match-string 1) 0 10)))
11030 1)))
11031 (t (error "This should not happen"))))
11034 ;;; Following file links
11035 (declare-function mailcap-parse-mailcaps "mailcap" (&optional path force))
11036 (declare-function mailcap-extension-to-mime "mailcap" (extn))
11037 (declare-function mailcap-mime-info
11038 "mailcap" (string &optional request no-decode))
11039 (defvar org-wait nil)
11040 (defun org-open-file (path &optional in-emacs line search)
11041 "Open the file at PATH.
11042 First, this expands any special file name abbreviations. Then the
11043 configuration variable `org-file-apps' is checked if it contains an
11044 entry for this file type, and if yes, the corresponding command is launched.
11046 If no application is found, Emacs simply visits the file.
11048 With optional prefix argument IN-EMACS, Emacs will visit the file.
11049 With a double \\[universal-argument] \\[universal-argument] \
11050 prefix arg, Org tries to avoid opening in Emacs
11051 and to use an external application to visit the file.
11053 Optional LINE specifies a line to go to, optional SEARCH a string
11054 to search for. If LINE or SEARCH is given, the file will be
11055 opened in Emacs, unless an entry from org-file-apps that makes
11056 use of groups in a regexp matches.
11058 If you want to change the way frames are used when following a
11059 link, please customize `org-link-frame-setup'.
11061 If the file does not exist, an error is thrown."
11062 (let* ((file (if (equal path "")
11063 buffer-file-name
11064 (substitute-in-file-name (expand-file-name path))))
11065 (file-apps (append org-file-apps (org-default-apps)))
11066 (apps (org-remove-if
11067 'org-file-apps-entry-match-against-dlink-p file-apps))
11068 (apps-dlink (org-remove-if-not
11069 'org-file-apps-entry-match-against-dlink-p file-apps))
11070 (remp (and (assq 'remote apps) (org-file-remote-p file)))
11071 (dirp (if remp nil (file-directory-p file)))
11072 (file (if (and dirp org-open-directory-means-index-dot-org)
11073 (concat (file-name-as-directory file) "index.org")
11074 file))
11075 (a-m-a-p (assq 'auto-mode apps))
11076 (dfile (downcase file))
11077 ;; reconstruct the original file: link from the PATH, LINE and SEARCH args
11078 (link (cond ((and (eq line nil)
11079 (eq search nil))
11080 file)
11081 (line
11082 (concat file "::" (number-to-string line)))
11083 (search
11084 (concat file "::" search))))
11085 (dlink (downcase link))
11086 (old-buffer (current-buffer))
11087 (old-pos (point))
11088 (old-mode major-mode)
11089 ext cmd link-match-data)
11090 (if (string-match "^.*\\.\\([a-zA-Z0-9]+\\.gz\\)$" dfile)
11091 (setq ext (match-string 1 dfile))
11092 (if (string-match "^.*\\.\\([a-zA-Z0-9]+\\)$" dfile)
11093 (setq ext (match-string 1 dfile))))
11094 (cond
11095 ((member in-emacs '((16) system))
11096 (setq cmd (cdr (assoc 'system apps))))
11097 (in-emacs (setq cmd 'emacs))
11099 (setq cmd (or (and remp (cdr (assoc 'remote apps)))
11100 (and dirp (cdr (assoc 'directory apps)))
11101 ; first, try matching against apps-dlink
11102 ; if we get a match here, store the match data for later
11103 (let ((match (assoc-default dlink apps-dlink
11104 'string-match)))
11105 (if match
11106 (progn (setq link-match-data (match-data))
11107 match)
11108 (progn (setq in-emacs (or in-emacs line search))
11109 nil))) ; if we have no match in apps-dlink,
11110 ; always open the file in emacs if line or search
11111 ; is given (for backwards compatibility)
11112 (assoc-default dfile (org-apps-regexp-alist apps a-m-a-p)
11113 'string-match)
11114 (cdr (assoc ext apps))
11115 (cdr (assoc t apps))))))
11116 (when (eq cmd 'system)
11117 (setq cmd (cdr (assoc 'system apps))))
11118 (when (eq cmd 'default)
11119 (setq cmd (cdr (assoc t apps))))
11120 (when (eq cmd 'mailcap)
11121 (require 'mailcap)
11122 (mailcap-parse-mailcaps)
11123 (let* ((mime-type (mailcap-extension-to-mime (or ext "")))
11124 (command (mailcap-mime-info mime-type)))
11125 (if (stringp command)
11126 (setq cmd command)
11127 (setq cmd 'emacs))))
11128 (if (and (not (eq cmd 'emacs)) ; Emacs has no problems with non-ex files
11129 (not (file-exists-p file))
11130 (not org-open-non-existing-files))
11131 (user-error "No such file: %s" file))
11132 (cond
11133 ((and (stringp cmd) (not (string-match "^\\s-*$" cmd)))
11134 ;; Remove quotes around the file name - we'll use shell-quote-argument.
11135 (while (string-match "['\"]%s['\"]" cmd)
11136 (setq cmd (replace-match "%s" t t cmd)))
11137 (while (string-match "%s" cmd)
11138 (setq cmd (replace-match
11139 (save-match-data
11140 (shell-quote-argument
11141 (convert-standard-filename file)))
11142 t t cmd)))
11144 ;; Replace "%1", "%2" etc. in command with group matches from regex
11145 (save-match-data
11146 (let ((match-index 1)
11147 (number-of-groups (- (/ (length link-match-data) 2) 1)))
11148 (set-match-data link-match-data)
11149 (while (<= match-index number-of-groups)
11150 (let ((regex (concat "%" (number-to-string match-index)))
11151 (replace-with (match-string match-index dlink)))
11152 (while (string-match regex cmd)
11153 (setq cmd (replace-match replace-with t t cmd))))
11154 (setq match-index (+ match-index 1)))))
11156 (save-window-excursion
11157 (message "Running %s...done" cmd)
11158 (start-process-shell-command cmd nil cmd)
11159 (and (boundp 'org-wait) (numberp org-wait) (sit-for org-wait))))
11160 ((or (stringp cmd)
11161 (eq cmd 'emacs))
11162 (funcall (cdr (assq 'file org-link-frame-setup)) file)
11163 (widen)
11164 (if line (progn (org-goto-line line)
11165 (if (derived-mode-p 'org-mode)
11166 (org-reveal)))
11167 (if search (org-link-search search))))
11168 ((consp cmd)
11169 (let ((file (convert-standard-filename file)))
11170 (save-match-data
11171 (set-match-data link-match-data)
11172 (eval cmd))))
11173 (t (funcall (cdr (assq 'file org-link-frame-setup)) file)))
11174 (and (derived-mode-p 'org-mode) (eq old-mode 'org-mode)
11175 (or (not (equal old-buffer (current-buffer)))
11176 (not (equal old-pos (point))))
11177 (org-mark-ring-push old-pos old-buffer))))
11179 (defun org-file-apps-entry-match-against-dlink-p (entry)
11180 "This function returns non-nil if `entry' uses a regular
11181 expression which should be matched against the whole link by
11182 org-open-file.
11184 It assumes that is the case when the entry uses a regular
11185 expression which has at least one grouping construct and the
11186 action is either a lisp form or a command string containing
11187 '%1', i.e. using at least one subexpression match as a
11188 parameter."
11189 (let ((selector (car entry))
11190 (action (cdr entry)))
11191 (if (stringp selector)
11192 (and (> (regexp-opt-depth selector) 0)
11193 (or (and (stringp action)
11194 (string-match "%[0-9]" action))
11195 (consp action)))
11196 nil)))
11198 (defun org-default-apps ()
11199 "Return the default applications for this operating system."
11200 (cond
11201 ((eq system-type 'darwin)
11202 org-file-apps-defaults-macosx)
11203 ((eq system-type 'windows-nt)
11204 org-file-apps-defaults-windowsnt)
11205 (t org-file-apps-defaults-gnu)))
11207 (defun org-apps-regexp-alist (list &optional add-auto-mode)
11208 "Convert extensions to regular expressions in the cars of LIST.
11209 Also, weed out any non-string entries, because the return value is used
11210 only for regexp matching.
11211 When ADD-AUTO-MODE is set, make all matches in `auto-mode-alist'
11212 point to the symbol `emacs', indicating that the file should
11213 be opened in Emacs."
11214 (append
11215 (delq nil
11216 (mapcar (lambda (x)
11217 (if (not (stringp (car x)))
11219 (if (string-match "\\W" (car x))
11221 (cons (concat "\\." (car x) "\\'") (cdr x)))))
11222 list))
11223 (if add-auto-mode
11224 (mapcar (lambda (x) (cons (car x) 'emacs)) auto-mode-alist))))
11226 (defvar ange-ftp-name-format) ; to silence the XEmacs compiler.
11227 (defun org-file-remote-p (file)
11228 "Test whether FILE specifies a location on a remote system.
11229 Return non-nil if the location is indeed remote.
11231 For example, the filename \"/user@host:/foo\" specifies a location
11232 on the system \"/user@host:\"."
11233 (cond ((fboundp 'file-remote-p)
11234 (file-remote-p file))
11235 ((fboundp 'tramp-handle-file-remote-p)
11236 (tramp-handle-file-remote-p file))
11237 ((and (boundp 'ange-ftp-name-format)
11238 (string-match (car ange-ftp-name-format) file))
11239 t)))
11242 ;;;; Refiling
11244 (defun org-get-org-file ()
11245 "Read a filename, with default directory `org-directory'."
11246 (let ((default (or org-default-notes-file remember-data-file)))
11247 (read-file-name (format "File name [%s]: " default)
11248 (file-name-as-directory org-directory)
11249 default)))
11251 (defun org-notes-order-reversed-p ()
11252 "Check if the current file should receive notes in reversed order."
11253 (cond
11254 ((not org-reverse-note-order) nil)
11255 ((eq t org-reverse-note-order) t)
11256 ((not (listp org-reverse-note-order)) nil)
11257 (t (catch 'exit
11258 (let ((all org-reverse-note-order)
11259 entry)
11260 (while (setq entry (pop all))
11261 (if (string-match (car entry) buffer-file-name)
11262 (throw 'exit (cdr entry))))
11263 nil)))))
11265 (defvar org-refile-target-table nil
11266 "The list of refile targets, created by `org-refile'.")
11268 (defvar org-agenda-new-buffers nil
11269 "Buffers created to visit agenda files.")
11271 (defvar org-refile-cache nil
11272 "Cache for refile targets.")
11274 (defvar org-refile-markers nil
11275 "All the markers used for caching refile locations.")
11277 (defun org-refile-marker (pos)
11278 "Get a new refile marker, but only if caching is in use."
11279 (if (not org-refile-use-cache)
11281 (let ((m (make-marker)))
11282 (move-marker m pos)
11283 (push m org-refile-markers)
11284 m)))
11286 (defun org-refile-cache-clear ()
11287 "Clear the refile cache and disable all the markers."
11288 (mapc (lambda (m) (move-marker m nil)) org-refile-markers)
11289 (setq org-refile-markers nil)
11290 (setq org-refile-cache nil)
11291 (message "Refile cache has been cleared"))
11293 (defun org-refile-cache-check-set (set)
11294 "Check if all the markers in the cache still have live buffers."
11295 (let (marker)
11296 (catch 'exit
11297 (while (and set (setq marker (nth 3 (pop set))))
11298 ;; If `org-refile-use-outline-path' is 'file, marker may be nil
11299 (when (and marker (null (marker-buffer marker)))
11300 (message "Please regenerate the refile cache with `C-0 C-c C-w'")
11301 (sit-for 3)
11302 (throw 'exit nil)))
11303 t)))
11305 (defun org-refile-cache-put (set &rest identifiers)
11306 "Push the refile targets SET into the cache, under IDENTIFIERS."
11307 (let* ((key (sha1 (prin1-to-string identifiers)))
11308 (entry (assoc key org-refile-cache)))
11309 (if entry
11310 (setcdr entry set)
11311 (push (cons key set) org-refile-cache))))
11313 (defun org-refile-cache-get (&rest identifiers)
11314 "Retrieve the cached value for refile targets given by IDENTIFIERS."
11315 (cond
11316 ((not org-refile-cache) nil)
11317 ((not org-refile-use-cache) (org-refile-cache-clear) nil)
11319 (let ((set (cdr (assoc (sha1 (prin1-to-string identifiers))
11320 org-refile-cache))))
11321 (and set (org-refile-cache-check-set set) set)))))
11323 (defun org-refile-get-targets (&optional default-buffer excluded-entries)
11324 "Produce a table with refile targets."
11325 (let ((case-fold-search nil)
11326 ;; otherwise org confuses "TODO" as a kw and "Todo" as a word
11327 (entries (or org-refile-targets '((nil . (:level . 1)))))
11328 targets tgs txt re files f desc descre fast-path-p level pos0)
11329 (message "Getting targets...")
11330 (with-current-buffer (or default-buffer (current-buffer))
11331 (while (setq entry (pop entries))
11332 (setq files (car entry) desc (cdr entry))
11333 (setq fast-path-p nil)
11334 (cond
11335 ((null files) (setq files (list (current-buffer))))
11336 ((eq files 'org-agenda-files)
11337 (setq files (org-agenda-files 'unrestricted)))
11338 ((and (symbolp files) (fboundp files))
11339 (setq files (funcall files)))
11340 ((and (symbolp files) (boundp files))
11341 (setq files (symbol-value files))))
11342 (if (stringp files) (setq files (list files)))
11343 (cond
11344 ((eq (car desc) :tag)
11345 (setq descre (concat "^\\*+[ \t]+.*?:" (regexp-quote (cdr desc)) ":")))
11346 ((eq (car desc) :todo)
11347 (setq descre (concat "^\\*+[ \t]+" (regexp-quote (cdr desc)) "[ \t]")))
11348 ((eq (car desc) :regexp)
11349 (setq descre (cdr desc)))
11350 ((eq (car desc) :level)
11351 (setq descre (concat "^\\*\\{" (number-to-string
11352 (if org-odd-levels-only
11353 (1- (* 2 (cdr desc)))
11354 (cdr desc)))
11355 "\\}[ \t]")))
11356 ((eq (car desc) :maxlevel)
11357 (setq fast-path-p t)
11358 (setq descre (concat "^\\*\\{1," (number-to-string
11359 (if org-odd-levels-only
11360 (1- (* 2 (cdr desc)))
11361 (cdr desc)))
11362 "\\}[ \t]")))
11363 (t (error "Bad refiling target description %s" desc)))
11364 (while (setq f (pop files))
11365 (with-current-buffer
11366 (if (bufferp f) f (org-get-agenda-file-buffer f))
11368 (setq tgs (org-refile-cache-get (buffer-file-name) descre))
11369 (progn
11370 (if (bufferp f) (setq f (buffer-file-name
11371 (buffer-base-buffer f))))
11372 (setq f (and f (expand-file-name f)))
11373 (if (eq org-refile-use-outline-path 'file)
11374 (push (list (file-name-nondirectory f) f nil nil) tgs))
11375 (save-excursion
11376 (save-restriction
11377 (widen)
11378 (goto-char (point-min))
11379 (while (re-search-forward descre nil t)
11380 (goto-char (setq pos0 (point-at-bol)))
11381 (catch 'next
11382 (when org-refile-target-verify-function
11383 (save-match-data
11384 (or (funcall org-refile-target-verify-function)
11385 (throw 'next t))))
11386 (when (and (looking-at org-complex-heading-regexp)
11387 (not (member (match-string 4) excluded-entries))
11388 (match-string 4))
11389 (setq level (org-reduced-level
11390 (- (match-end 1) (match-beginning 1)))
11391 txt (org-link-display-format (match-string 4))
11392 txt (replace-regexp-in-string "\\( *\[[0-9]+/?[0-9]*%?\]\\)+$" "" txt)
11393 re (format org-complex-heading-regexp-format
11394 (regexp-quote (match-string 4))))
11395 (when org-refile-use-outline-path
11396 (setq txt (mapconcat
11397 'org-protect-slash
11398 (append
11399 (if (eq org-refile-use-outline-path
11400 'file)
11401 (list (file-name-nondirectory
11402 (buffer-file-name
11403 (buffer-base-buffer))))
11404 (if (eq org-refile-use-outline-path
11405 'full-file-path)
11406 (list (buffer-file-name
11407 (buffer-base-buffer)))))
11408 (org-get-outline-path fast-path-p
11409 level txt)
11410 (list txt))
11411 "/")))
11412 (push (list txt f re (org-refile-marker (point)))
11413 tgs)))
11414 (when (= (point) pos0)
11415 ;; verification function has not moved point
11416 (goto-char (point-at-eol))))))))
11417 (when org-refile-use-cache
11418 (org-refile-cache-put tgs (buffer-file-name) descre))
11419 (setq targets (append tgs targets))))))
11420 (message "Getting targets...done")
11421 (nreverse targets)))
11423 (defun org-protect-slash (s)
11424 (while (string-match "/" s)
11425 (setq s (replace-match "\\" t t s)))
11428 (defvar org-olpa (make-vector 20 nil))
11430 (defun org-get-outline-path (&optional fastp level heading)
11431 "Return the outline path to the current entry, as a list.
11433 The parameters FASTP, LEVEL, and HEADING are for use by a scanner
11434 routine which makes outline path derivations for an entire file,
11435 avoiding backtracing. Refile target collection makes use of that."
11436 (if fastp
11437 (progn
11438 (if (> level 19)
11439 (error "Outline path failure, more than 19 levels"))
11440 (loop for i from level upto 19 do
11441 (aset org-olpa i nil))
11442 (prog1
11443 (delq nil (append org-olpa nil))
11444 (aset org-olpa level heading)))
11445 (let (rtn case-fold-search)
11446 (save-excursion
11447 (save-restriction
11448 (widen)
11449 (while (org-up-heading-safe)
11450 (when (looking-at org-complex-heading-regexp)
11451 (push (org-trim
11452 (replace-regexp-in-string
11453 ;; Remove statistical/checkboxes cookies
11454 "\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]" ""
11455 (org-match-string-no-properties 4)))
11456 rtn)))
11457 rtn)))))
11459 (defun org-format-outline-path (path &optional width prefix separator)
11460 "Format the outline path PATH for display.
11461 WIDTH is the maximum number of characters that is available.
11462 PREFIX is a prefix to be included in the returned string,
11463 such as the file name.
11464 SEPARATOR is inserted between the different parts of the path,
11465 the default is \"/\"."
11466 (setq width (or width 79))
11467 (if prefix (setq width (- width (length prefix))))
11468 (if (not path)
11469 (or prefix "")
11470 (let* ((nsteps (length path))
11471 (total-width (+ nsteps (apply '+ (mapcar 'length path))))
11472 (maxwidth (if (<= total-width width)
11473 10000 ;; everything fits
11474 ;; we need to shorten the level headings
11475 (/ (- width nsteps) nsteps)))
11476 (org-odd-levels-only nil)
11477 (n 0)
11478 (total (1+ (length prefix))))
11479 (setq maxwidth (max maxwidth 10))
11480 (concat prefix
11481 (if prefix (or separator "/"))
11482 (mapconcat
11483 (lambda (h)
11484 (setq n (1+ n))
11485 (if (and (= n nsteps) (< maxwidth 10000))
11486 (setq maxwidth (- total-width total)))
11487 (if (< (length h) maxwidth)
11488 (progn (setq total (+ total (length h) 1)) h)
11489 (setq h (substring h 0 (- maxwidth 2))
11490 total (+ total maxwidth 1))
11491 (if (string-match "[ \t]+\\'" h)
11492 (setq h (substring h 0 (match-beginning 0))))
11493 (setq h (concat h "..")))
11494 (org-add-props h nil 'face
11495 (nth (% (1- n) org-n-level-faces)
11496 org-level-faces))
11498 path (or separator "/"))))))
11500 (defun org-display-outline-path (&optional file current separator just-return-string)
11501 "Display the current outline path in the echo area.
11503 If FILE is non-nil, prepend the output with the file name.
11504 If CURRENT is non-nil, append the current heading to the output.
11505 SEPARATOR is passed through to `org-format-outline-path'. It separates
11506 the different parts of the path and defaults to \"/\".
11507 If JUST-RETURN-STRING is non-nil, return a string, don't display a message."
11508 (interactive "P")
11509 (let* (case-fold-search
11510 (bfn (buffer-file-name (buffer-base-buffer)))
11511 (path (and (derived-mode-p 'org-mode) (org-get-outline-path)))
11512 res)
11513 (if current (setq path (append path
11514 (save-excursion
11515 (org-back-to-heading t)
11516 (if (looking-at org-complex-heading-regexp)
11517 (list (match-string 4)))))))
11518 (setq res
11519 (org-format-outline-path
11520 path
11521 (1- (frame-width))
11522 (and file bfn (concat (file-name-nondirectory bfn) separator))
11523 separator))
11524 (if just-return-string
11525 (org-no-properties res)
11526 (org-unlogged-message "%s" res))))
11528 (defvar org-refile-history nil
11529 "History for refiling operations.")
11531 (defvar org-after-refile-insert-hook nil
11532 "Hook run after `org-refile' has inserted its stuff at the new location.
11533 Note that this is still *before* the stuff will be removed from
11534 the *old* location.")
11536 (defvar org-capture-last-stored-marker)
11537 (defvar org-refile-keep nil
11538 "Non-nil means `org-refile' will copy instead of refile.")
11540 (defun org-copy ()
11541 "Like `org-refile', but copy."
11542 (interactive)
11543 (let ((org-refile-keep t))
11544 (funcall 'org-refile nil nil nil "Copy")))
11546 (defun org-refile (&optional goto default-buffer rfloc msg)
11547 "Move the entry or entries at point to another heading.
11548 The list of target headings is compiled using the information in
11549 `org-refile-targets', which see.
11551 At the target location, the entry is filed as a subitem of the target
11552 heading. Depending on `org-reverse-note-order', the new subitem will
11553 either be the first or the last subitem.
11555 If there is an active region, all entries in that region will be moved.
11556 However, the region must fulfill the requirement that the first heading
11557 is the first one sets the top-level of the moved text - at most siblings
11558 below it are allowed.
11560 With prefix arg GOTO, the command will only visit the target location
11561 and not actually move anything.
11563 With a double prefix arg \\[universal-argument] \\[universal-argument], \
11564 go to the location where the last refiling operation has put the subtree.
11566 With a numeric prefix argument of `2', refile to the running clock.
11568 With a numeric prefix argument of `3', emulate `org-refile-keep'
11569 being set to `t' and copy to the target location, don't move it.
11570 Beware that keeping refiled entries may result in duplicated ID
11571 properties.
11573 RFLOC can be a refile location obtained in a different way.
11575 MSG is a string to replace \"Refile\" in the default prompt with
11576 another verb. E.g. `org-copy' sets this parameter to \"Copy\".
11578 See also `org-refile-use-outline-path' and `org-completion-use-ido'.
11580 If you are using target caching (see `org-refile-use-cache'),
11581 you have to clear the target cache in order to find new targets.
11582 This can be done with a 0 prefix (`C-0 C-c C-w') or a triple
11583 prefix argument (`C-u C-u C-u C-c C-w')."
11585 (interactive "P")
11586 (if (member goto '(0 (64)))
11587 (org-refile-cache-clear)
11588 (let* ((actionmsg (or msg "Refile"))
11589 (cbuf (current-buffer))
11590 (regionp (org-region-active-p))
11591 (region-start (and regionp (region-beginning)))
11592 (region-end (and regionp (region-end)))
11593 (filename (buffer-file-name (buffer-base-buffer cbuf)))
11594 (org-refile-keep (if (equal goto 3) t org-refile-keep))
11595 pos it nbuf file re level reversed)
11596 (setq last-command nil)
11597 (when regionp
11598 (goto-char region-start)
11599 (or (bolp) (goto-char (point-at-bol)))
11600 (setq region-start (point))
11601 (unless (or (org-kill-is-subtree-p
11602 (buffer-substring region-start region-end))
11603 (prog1 org-refile-active-region-within-subtree
11604 (let ((s (point-at-eol)))
11605 (org-toggle-heading)
11606 (setq region-end (+ (- (point-at-eol) s) region-end)))))
11607 (user-error "The region is not a (sequence of) subtree(s)")))
11608 (if (equal goto '(16))
11609 (org-refile-goto-last-stored)
11610 (when (or
11611 (and (equal goto 2)
11612 org-clock-hd-marker (marker-buffer org-clock-hd-marker)
11613 (prog1
11614 (setq it (list (or org-clock-heading "running clock")
11615 (buffer-file-name
11616 (marker-buffer org-clock-hd-marker))
11618 (marker-position org-clock-hd-marker)))
11619 (setq goto nil)))
11620 (setq it (or rfloc
11621 (let (heading-text)
11622 (save-excursion
11623 (unless goto
11624 (org-back-to-heading t)
11625 (setq heading-text
11626 (nth 4 (org-heading-components))))
11628 (org-refile-get-location
11629 (cond (goto "Goto")
11630 (regionp (concat actionmsg " region to"))
11631 (t (concat actionmsg " subtree \""
11632 heading-text "\" to")))
11633 default-buffer
11634 (and (not (equal '(4) goto))
11635 org-refile-allow-creating-parent-nodes)
11636 goto))))))
11637 (setq file (nth 1 it)
11638 re (nth 2 it)
11639 pos (nth 3 it))
11640 (if (and (not goto)
11642 (equal (buffer-file-name) file)
11643 (if regionp
11644 (and (>= pos region-start)
11645 (<= pos region-end))
11646 (and (>= pos (point))
11647 (< pos (save-excursion
11648 (org-end-of-subtree t t))))))
11649 (error "Cannot refile to position inside the tree or region"))
11651 (setq nbuf (or (find-buffer-visiting file)
11652 (find-file-noselect file)))
11653 (if (and goto (not (equal goto 3)))
11654 (progn
11655 (org-pop-to-buffer-same-window nbuf)
11656 (goto-char pos)
11657 (org-show-context 'org-goto))
11658 (if regionp
11659 (progn
11660 (org-kill-new (buffer-substring region-start region-end))
11661 (org-save-markers-in-region region-start region-end))
11662 (org-copy-subtree 1 nil t))
11663 (with-current-buffer (setq nbuf (or (find-buffer-visiting file)
11664 (find-file-noselect file)))
11665 (setq reversed (org-notes-order-reversed-p))
11666 (save-excursion
11667 (save-restriction
11668 (widen)
11669 (if pos
11670 (progn
11671 (goto-char pos)
11672 (looking-at org-outline-regexp)
11673 (setq level (org-get-valid-level (funcall outline-level) 1))
11674 (goto-char
11675 (if reversed
11676 (or (outline-next-heading) (point-max))
11677 (or (save-excursion (org-get-next-sibling))
11678 (org-end-of-subtree t t)
11679 (point-max)))))
11680 (setq level 1)
11681 (if (not reversed)
11682 (goto-char (point-max))
11683 (goto-char (point-min))
11684 (or (outline-next-heading) (goto-char (point-max)))))
11685 (if (not (bolp)) (newline))
11686 (org-paste-subtree level)
11687 (when org-log-refile
11688 (org-add-log-setup 'refile nil nil 'findpos org-log-refile)
11689 (unless (eq org-log-refile 'note)
11690 (save-excursion (org-add-log-note))))
11691 (and org-auto-align-tags
11692 (let ((org-loop-over-headlines-in-active-region nil))
11693 (org-set-tags nil t)))
11694 (let ((bookmark-name (plist-get org-bookmark-names-plist
11695 :last-refile)))
11696 (when bookmark-name
11697 (with-demoted-errors
11698 (bookmark-set bookmark-name))))
11699 ;; If we are refiling for capture, make sure that the
11700 ;; last-capture pointers point here
11701 (when (org-bound-and-true-p org-refile-for-capture)
11702 (let ((bookmark-name (plist-get org-bookmark-names-plist
11703 :last-capture-marker)))
11704 (when bookmark-name
11705 (with-demoted-errors
11706 (bookmark-set bookmark-name))))
11707 (move-marker org-capture-last-stored-marker (point)))
11708 (if (fboundp 'deactivate-mark) (deactivate-mark))
11709 (run-hooks 'org-after-refile-insert-hook))))
11710 (unless org-refile-keep
11711 (if regionp
11712 (delete-region (point) (+ (point) (- region-end region-start)))
11713 (delete-region
11714 (and (org-back-to-heading t) (point))
11715 (min (buffer-size) (org-end-of-subtree t t) (point)))))
11716 (when (featurep 'org-inlinetask)
11717 (org-inlinetask-remove-END-maybe))
11718 (setq org-markers-to-move nil)
11719 (message (concat actionmsg " to \"%s\" in file %s: done") (car it) file)))))))
11721 (defun org-refile-goto-last-stored ()
11722 "Go to the location where the last refile was stored."
11723 (interactive)
11724 (bookmark-jump "org-refile-last-stored")
11725 (message "This is the location of the last refile"))
11727 (defun org-refile-get-location (&optional prompt default-buffer new-nodes
11728 no-exclude)
11729 "Prompt the user for a refile location, using PROMPT.
11730 PROMPT should not be suffixed with a colon and a space, because
11731 this function appends the default value from
11732 `org-refile-history' automatically, if that is not empty.
11733 When NO-EXCLUDE is set, do not exclude headlines in the current subtree,
11734 this is used for the GOTO interface."
11735 (let ((org-refile-targets org-refile-targets)
11736 (org-refile-use-outline-path org-refile-use-outline-path)
11737 excluded-entries)
11738 (when (and (derived-mode-p 'org-mode)
11739 (not org-refile-use-cache)
11740 (not no-exclude))
11741 (org-map-tree
11742 (lambda()
11743 (setq excluded-entries
11744 (append excluded-entries (list (org-get-heading t t)))))))
11745 (setq org-refile-target-table
11746 (org-refile-get-targets default-buffer excluded-entries)))
11747 (unless org-refile-target-table
11748 (user-error "No refile targets"))
11749 (let* ((cbuf (current-buffer))
11750 (partial-completion-mode nil)
11751 (cfn (buffer-file-name (buffer-base-buffer cbuf)))
11752 (cfunc (if (and org-refile-use-outline-path
11753 org-outline-path-complete-in-steps)
11754 'org-olpath-completing-read
11755 'org-icompleting-read))
11756 (extra (if org-refile-use-outline-path "/" ""))
11757 (cbnex (concat (buffer-name) extra))
11758 (filename (and cfn (expand-file-name cfn)))
11759 (tbl (mapcar
11760 (lambda (x)
11761 (if (and (not (member org-refile-use-outline-path
11762 '(file full-file-path)))
11763 (not (equal filename (nth 1 x))))
11764 (cons (concat (car x) extra " ("
11765 (file-name-nondirectory (nth 1 x)) ")")
11766 (cdr x))
11767 (cons (concat (car x) extra) (cdr x))))
11768 org-refile-target-table))
11769 (completion-ignore-case t)
11770 cdef
11771 (prompt (concat prompt
11772 (or (and (car org-refile-history)
11773 (concat " (default " (car org-refile-history) ")"))
11774 (and (assoc cbnex tbl) (setq cdef cbnex)
11775 (concat " (default " cbnex ")"))) ": "))
11776 pa answ parent-target child parent old-hist)
11777 (setq old-hist org-refile-history)
11778 (setq answ (funcall cfunc prompt tbl nil (not new-nodes)
11779 nil 'org-refile-history (or cdef (car org-refile-history))))
11780 (setq pa (or (assoc answ tbl) (assoc (concat answ "/") tbl)))
11781 (org-refile-check-position pa)
11782 (if pa
11783 (progn
11784 (when (or (not org-refile-history)
11785 (not (eq old-hist org-refile-history))
11786 (not (equal (car pa) (car org-refile-history))))
11787 (setq org-refile-history
11788 (cons (car pa) (if (assoc (car org-refile-history) tbl)
11789 org-refile-history
11790 (cdr org-refile-history))))
11791 (if (equal (car org-refile-history) (nth 1 org-refile-history))
11792 (pop org-refile-history)))
11794 (if (string-match "\\`\\(.*\\)/\\([^/]+\\)\\'" answ)
11795 (progn
11796 (setq parent (match-string 1 answ)
11797 child (match-string 2 answ))
11798 (setq parent-target (or (assoc parent tbl)
11799 (assoc (concat parent "/") tbl)))
11800 (when (and parent-target
11801 (or (eq new-nodes t)
11802 (and (eq new-nodes 'confirm)
11803 (y-or-n-p (format "Create new node \"%s\"? "
11804 child)))))
11805 (org-refile-new-child parent-target child)))
11806 (user-error "Invalid target location")))))
11808 (declare-function org-string-nw-p "org-macs" (s))
11809 (defun org-refile-check-position (refile-pointer)
11810 "Check if the refile pointer matches the headline to which it points."
11811 (let* ((file (nth 1 refile-pointer))
11812 (re (nth 2 refile-pointer))
11813 (pos (nth 3 refile-pointer))
11814 buffer)
11815 (if (and (not (markerp pos)) (not file))
11816 (if file
11817 (user-error "Please save the buffer to a file before refiling")
11818 (user-error "Please indicate a target file in the refile path"))
11819 (when (org-string-nw-p re)
11820 (setq buffer (if (markerp pos)
11821 (marker-buffer pos)
11822 (or (find-buffer-visiting file)
11823 (find-file-noselect file))))
11824 (with-current-buffer buffer
11825 (save-excursion
11826 (save-restriction
11827 (widen)
11828 (goto-char pos)
11829 (beginning-of-line 1)
11830 (unless (org-looking-at-p re)
11831 (user-error "Invalid refile position, please clear the cache with `C-0 C-c C-w' before refiling")))))))))
11833 (defun org-refile-new-child (parent-target child)
11834 "Use refile target PARENT-TARGET to add new CHILD below it."
11835 (unless parent-target
11836 (error "Cannot find parent for new node"))
11837 (let ((file (nth 1 parent-target))
11838 (pos (nth 3 parent-target))
11839 level)
11840 (with-current-buffer (or (find-buffer-visiting file)
11841 (find-file-noselect file))
11842 (save-excursion
11843 (save-restriction
11844 (widen)
11845 (if pos
11846 (goto-char pos)
11847 (goto-char (point-max))
11848 (if (not (bolp)) (newline)))
11849 (when (looking-at org-outline-regexp)
11850 (setq level (funcall outline-level))
11851 (org-end-of-subtree t t))
11852 (org-back-over-empty-lines)
11853 (insert "\n" (make-string
11854 (if pos (org-get-valid-level level 1) 1) ?*)
11855 " " child "\n")
11856 (beginning-of-line 0)
11857 (list (concat (car parent-target) "/" child) file "" (point)))))))
11859 (defun org-olpath-completing-read (prompt collection &rest args)
11860 "Read an outline path like a file name."
11861 (let ((thetable collection)
11862 (org-completion-use-ido nil) ; does not work with ido.
11863 (org-completion-use-iswitchb nil)) ; or iswitchb
11864 (apply
11865 'org-icompleting-read prompt
11866 (lambda (string predicate &optional flag)
11867 (let (rtn r f (l (length string)))
11868 (cond
11869 ((eq flag nil)
11870 ;; try completion
11871 (try-completion string thetable))
11872 ((eq flag t)
11873 ;; all-completions
11874 (setq rtn (all-completions string thetable predicate))
11875 (mapcar
11876 (lambda (x)
11877 (setq r (substring x l))
11878 (if (string-match " ([^)]*)$" x)
11879 (setq f (match-string 0 x))
11880 (setq f ""))
11881 (if (string-match "/" r)
11882 (concat string (substring r 0 (match-end 0)) f)
11884 rtn))
11885 ((eq flag 'lambda)
11886 ;; exact match?
11887 (assoc string thetable)))))
11888 args)))
11890 ;;;; Dynamic blocks
11892 (defun org-find-dblock (name)
11893 "Find the first dynamic block with name NAME in the buffer.
11894 If not found, stay at current position and return nil."
11895 (let ((case-fold-search t) pos)
11896 (save-excursion
11897 (goto-char (point-min))
11898 (setq pos (and (re-search-forward
11899 (concat "^[ \t]*#\\+\\(?:BEGIN\\|begin\\):[ \t]+" name "\\>") nil t)
11900 (match-beginning 0))))
11901 (if pos (goto-char pos))
11902 pos))
11904 (defun org-create-dblock (plist)
11905 "Create a dynamic block section, with parameters taken from PLIST.
11906 PLIST must contain a :name entry which is used as name of the block."
11907 (when (string-match "\\S-" (buffer-substring (point-at-bol) (point-at-eol)))
11908 (end-of-line 1)
11909 (newline))
11910 (let ((col (current-column))
11911 (name (plist-get plist :name)))
11912 (insert "#+BEGIN: " name)
11913 (while plist
11914 (if (eq (car plist) :name)
11915 (setq plist (cddr plist))
11916 (insert " " (prin1-to-string (pop plist)))))
11917 (insert "\n\n" (make-string col ?\ ) "#+END:\n")
11918 (beginning-of-line -2)))
11920 (defun org-prepare-dblock ()
11921 "Prepare dynamic block for refresh.
11922 This empties the block, puts the cursor at the insert position and returns
11923 the property list including an extra property :name with the block name."
11924 (unless (looking-at org-dblock-start-re)
11925 (user-error "Not at a dynamic block"))
11926 (let* ((begdel (1+ (match-end 0)))
11927 (name (org-no-properties (match-string 1)))
11928 (params (append (list :name name)
11929 (read (concat "(" (match-string 3) ")")))))
11930 (save-excursion
11931 (beginning-of-line 1)
11932 (skip-chars-forward " \t")
11933 (setq params (plist-put params :indentation-column (current-column))))
11934 (unless (re-search-forward org-dblock-end-re nil t)
11935 (error "Dynamic block not terminated"))
11936 (setq params
11937 (append params
11938 (list :content (buffer-substring
11939 begdel (match-beginning 0)))))
11940 (delete-region begdel (match-beginning 0))
11941 (goto-char begdel)
11942 (open-line 1)
11943 params))
11945 (defun org-map-dblocks (&optional command)
11946 "Apply COMMAND to all dynamic blocks in the current buffer.
11947 If COMMAND is not given, use `org-update-dblock'."
11948 (let ((cmd (or command 'org-update-dblock)))
11949 (save-excursion
11950 (goto-char (point-min))
11951 (while (re-search-forward org-dblock-start-re nil t)
11952 (goto-char (match-beginning 0))
11953 (save-excursion
11954 (condition-case nil
11955 (funcall cmd)
11956 (error (message "Error during update of dynamic block"))))
11957 (unless (re-search-forward org-dblock-end-re nil t)
11958 (error "Dynamic block not terminated"))))))
11960 (defun org-dblock-update (&optional arg)
11961 "User command for updating dynamic blocks.
11962 Update the dynamic block at point. With prefix ARG, update all dynamic
11963 blocks in the buffer."
11964 (interactive "P")
11965 (if arg
11966 (org-update-all-dblocks)
11967 (or (looking-at org-dblock-start-re)
11968 (org-beginning-of-dblock))
11969 (org-update-dblock)))
11971 (defun org-update-dblock ()
11972 "Update the dynamic block at point.
11973 This means to empty the block, parse for parameters and then call
11974 the correct writing function."
11975 (interactive)
11976 (save-window-excursion
11977 (let* ((pos (point))
11978 (line (org-current-line))
11979 (params (org-prepare-dblock))
11980 (name (plist-get params :name))
11981 (indent (plist-get params :indentation-column))
11982 (cmd (intern (concat "org-dblock-write:" name))))
11983 (message "Updating dynamic block `%s' at line %d..." name line)
11984 (funcall cmd params)
11985 (message "Updating dynamic block `%s' at line %d...done" name line)
11986 (goto-char pos)
11987 (when (and indent (> indent 0))
11988 (setq indent (make-string indent ?\ ))
11989 (save-excursion
11990 (org-beginning-of-dblock)
11991 (forward-line 1)
11992 (while (not (looking-at org-dblock-end-re))
11993 (insert indent)
11994 (beginning-of-line 2))
11995 (when (looking-at org-dblock-end-re)
11996 (and (looking-at "[ \t]+")
11997 (replace-match ""))
11998 (insert indent)))))))
12000 (defun org-beginning-of-dblock ()
12001 "Find the beginning of the dynamic block at point.
12002 Error if there is no such block at point."
12003 (let ((pos (point))
12004 beg)
12005 (end-of-line 1)
12006 (if (and (re-search-backward org-dblock-start-re nil t)
12007 (setq beg (match-beginning 0))
12008 (re-search-forward org-dblock-end-re nil t)
12009 (> (match-end 0) pos))
12010 (goto-char beg)
12011 (goto-char pos)
12012 (error "Not in a dynamic block"))))
12014 (defun org-update-all-dblocks ()
12015 "Update all dynamic blocks in the buffer.
12016 This function can be used in a hook."
12017 (interactive)
12018 (when (derived-mode-p 'org-mode)
12019 (org-map-dblocks 'org-update-dblock)))
12022 ;;;; Completion
12024 (declare-function org-export-backend-name "org-export" (cl-x))
12025 (declare-function org-export-backend-options "org-export" (cl-x))
12026 (defun org-get-export-keywords ()
12027 "Return a list of all currently understood export keywords.
12028 Export keywords include options, block names, attributes and
12029 keywords relative to each registered export back-end."
12030 (let (keywords)
12031 (dolist (backend
12032 (org-bound-and-true-p org-export--registered-backends)
12033 (delq nil keywords))
12034 ;; Back-end name (for keywords, like #+LATEX:)
12035 (push (upcase (symbol-name (org-export-backend-name backend))) keywords)
12036 (dolist (option-entry (org-export-backend-options backend))
12037 ;; Back-end options.
12038 (push (nth 1 option-entry) keywords)))))
12040 (defconst org-options-keywords
12041 '("ARCHIVE:" "AUTHOR:" "BIND:" "CATEGORY:" "COLUMNS:" "CREATOR:" "DATE:"
12042 "DESCRIPTION:" "DRAWERS:" "EMAIL:" "EXCLUDE_TAGS:" "FILETAGS:" "INCLUDE:"
12043 "INDEX:" "KEYWORDS:" "LANGUAGE:" "MACRO:" "OPTIONS:" "PROPERTY:"
12044 "PRIORITIES:" "SELECT_TAGS:" "SEQ_TODO:" "SETUPFILE:" "STARTUP:" "TAGS:"
12045 "TITLE:" "TODO:" "TYP_TODO:" "SELECT_TAGS:" "EXCLUDE_TAGS:"))
12047 (defcustom org-structure-template-alist
12048 '(("s" "#+BEGIN_SRC ?\n\n#+END_SRC" "<src lang=\"?\">\n\n</src>")
12049 ("e" "#+BEGIN_EXAMPLE\n?\n#+END_EXAMPLE" "<example>\n?\n</example>")
12050 ("q" "#+BEGIN_QUOTE\n?\n#+END_QUOTE" "<quote>\n?\n</quote>")
12051 ("v" "#+BEGIN_VERSE\n?\n#+END_VERSE" "<verse>\n?\n</verse>")
12052 ("V" "#+BEGIN_VERBATIM\n?\n#+END_VERBATIM" "<verbatim>\n?\n</verbatim>")
12053 ("c" "#+BEGIN_CENTER\n?\n#+END_CENTER" "<center>\n?\n</center>")
12054 ("l" "#+BEGIN_LaTeX\n?\n#+END_LaTeX"
12055 "<literal style=\"latex\">\n?\n</literal>")
12056 ("L" "#+LaTeX: " "<literal style=\"latex\">?</literal>")
12057 ("h" "#+BEGIN_HTML\n?\n#+END_HTML"
12058 "<literal style=\"html\">\n?\n</literal>")
12059 ("H" "#+HTML: " "<literal style=\"html\">?</literal>")
12060 ("a" "#+BEGIN_ASCII\n?\n#+END_ASCII" "")
12061 ("A" "#+ASCII: " "")
12062 ("i" "#+INDEX: ?" "#+INDEX: ?")
12063 ("I" "#+INCLUDE: %file ?"
12064 "<include file=%file markup=\"?\">"))
12065 "Structure completion elements.
12066 This is a list of abbreviation keys and values. The value gets inserted
12067 if you type `<' followed by the key and then press the completion key,
12068 usually `M-TAB'. %file will be replaced by a file name after prompting
12069 for the file using completion. The cursor will be placed at the position
12070 of the `?` in the template.
12071 There are two templates for each key, the first uses the original Org syntax,
12072 the second uses Emacs Muse-like syntax tags. These Muse-like tags become
12073 the default when the /org-mtags.el/ module has been loaded. See also the
12074 variable `org-mtags-prefer-muse-templates'."
12075 :group 'org-completion
12076 :type '(repeat
12077 (list
12078 (string :tag "Key")
12079 (string :tag "Template")
12080 (string :tag "Muse Template"))))
12082 (defun org-try-structure-completion ()
12083 "Try to complete a structure template before point.
12084 This looks for strings like \"<e\" on an otherwise empty line and
12085 expands them."
12086 (let ((l (buffer-substring (point-at-bol) (point)))
12088 (when (and (looking-at "[ \t]*$")
12089 (string-match "^[ \t]*<\\([a-zA-Z]+\\)$" l)
12090 (setq a (assoc (match-string 1 l) org-structure-template-alist)))
12091 (org-complete-expand-structure-template (+ -1 (point-at-bol)
12092 (match-beginning 1)) a)
12093 t)))
12095 (defun org-complete-expand-structure-template (start cell)
12096 "Expand a structure template."
12097 (let* ((musep (org-bound-and-true-p org-mtags-prefer-muse-templates))
12098 (rpl (nth (if musep 2 1) cell))
12099 (ind ""))
12100 (delete-region start (point))
12101 (when (string-match "\\`#\\+" rpl)
12102 (cond
12103 ((bolp))
12104 ((not (string-match "\\S-" (buffer-substring (point-at-bol) (point))))
12105 (setq ind (buffer-substring (point-at-bol) (point))))
12106 (t (newline))))
12107 (setq start (point))
12108 (if (string-match "%file" rpl)
12109 (setq rpl (replace-match
12110 (concat
12111 "\""
12112 (save-match-data
12113 (abbreviate-file-name (read-file-name "Include file: ")))
12114 "\"")
12115 t t rpl)))
12116 (setq rpl (mapconcat 'identity (split-string rpl "\n")
12117 (concat "\n" ind)))
12118 (insert rpl)
12119 (if (re-search-backward "\\?" start t) (delete-char 1))))
12121 ;;;; TODO, DEADLINE, Comments
12123 (defun org-toggle-comment ()
12124 "Change the COMMENT state of an entry."
12125 (interactive)
12126 (save-excursion
12127 (org-back-to-heading)
12128 (let (case-fold-search)
12129 (cond
12130 ((looking-at (format org-heading-keyword-regexp-format
12131 org-comment-string))
12132 (goto-char (match-end 1))
12133 (looking-at (concat " +" org-comment-string))
12134 (replace-match "" t t)
12135 (when (eolp) (insert " ")))
12136 ((looking-at org-outline-regexp)
12137 (goto-char (match-end 0))
12138 (insert org-comment-string " "))))))
12140 (defvar org-last-todo-state-is-todo nil
12141 "This is non-nil when the last TODO state change led to a TODO state.
12142 If the last change removed the TODO tag or switched to DONE, then
12143 this is nil.")
12145 (defvar org-setting-tags nil) ; dynamically skipped
12147 (defvar org-todo-setup-filter-hook nil
12148 "Hook for functions that pre-filter todo specs.
12149 Each function takes a todo spec and returns either nil or the spec
12150 transformed into canonical form." )
12152 (defvar org-todo-get-default-hook nil
12153 "Hook for functions that get a default item for todo.
12154 Each function takes arguments (NEW-MARK OLD-MARK) and returns either
12155 nil or a string to be used for the todo mark." )
12157 (defvar org-agenda-headline-snapshot-before-repeat)
12159 (defun org-current-effective-time ()
12160 "Return current time adjusted for `org-extend-today-until' variable."
12161 (let* ((ct (org-current-time))
12162 (dct (decode-time ct))
12163 (ct1
12164 (cond
12165 (org-use-last-clock-out-time-as-effective-time
12166 (or (org-clock-get-last-clock-out-time) ct))
12167 ((and org-use-effective-time (< (nth 2 dct) org-extend-today-until))
12168 (encode-time 0 59 23 (1- (nth 3 dct)) (nth 4 dct) (nth 5 dct)))
12169 (t ct))))
12170 ct1))
12172 (defun org-todo-yesterday (&optional arg)
12173 "Like `org-todo' but the time of change will be 23:59 of yesterday."
12174 (interactive "P")
12175 (if (eq major-mode 'org-agenda-mode)
12176 (apply 'org-agenda-todo-yesterday arg)
12177 (let* ((hour (third (decode-time
12178 (org-current-time))))
12179 (org-extend-today-until (1+ hour)))
12180 (org-todo arg))))
12182 (defvar org-block-entry-blocking ""
12183 "First entry preventing the TODO state change.")
12185 (defun org-cancel-repeater ()
12186 "Cancel a repeater by setting its numeric value to zero."
12187 (interactive)
12188 (save-excursion
12189 (org-back-to-heading t)
12190 (let ((bound1 (point))
12191 (bound0 (save-excursion (outline-next-heading) (point))))
12192 (when (re-search-forward
12193 (concat "\\(" org-scheduled-time-regexp "\\)\\|\\("
12194 org-deadline-time-regexp "\\)\\|\\("
12195 org-ts-regexp "\\)")
12196 bound0 t)
12197 (if (re-search-backward "[ \t]+\\(?:[.+]\\)?\\+\\([0-9]+\\)[hdwmy]" bound1 t)
12198 (replace-match "0" t nil nil 1))))))
12200 (defun org-todo (&optional arg)
12201 "Change the TODO state of an item.
12202 The state of an item is given by a keyword at the start of the heading,
12203 like
12204 *** TODO Write paper
12205 *** DONE Call mom
12207 The different keywords are specified in the variable `org-todo-keywords'.
12208 By default the available states are \"TODO\" and \"DONE\".
12209 So for this example: when the item starts with TODO, it is changed to DONE.
12210 When it starts with DONE, the DONE is removed. And when neither TODO nor
12211 DONE are present, add TODO at the beginning of the heading.
12213 With \\[universal-argument] prefix arg, use completion to determine the new \
12214 state.
12215 With numeric prefix arg, switch to that state.
12216 With a double \\[universal-argument] prefix, switch to the next set of TODO \
12217 keywords (nextset).
12218 With a triple \\[universal-argument] prefix, circumvent any state blocking.
12219 With a numeric prefix arg of 0, inhibit note taking for the change.
12220 With a numeric prefix arg of -1, cancel repeater to allow marking as DONE.
12222 When called through ELisp, arg is also interpreted in the following way:
12223 'none -> empty state
12224 \"\"(empty string) -> switch to empty state
12225 'done -> switch to DONE
12226 'nextset -> switch to the next set of keywords
12227 'previousset -> switch to the previous set of keywords
12228 \"WAITING\" -> switch to the specified keyword, but only if it
12229 really is a member of `org-todo-keywords'."
12230 (interactive "P")
12231 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
12232 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
12233 'region-start-level 'region))
12234 org-loop-over-headlines-in-active-region)
12235 (org-map-entries
12236 `(org-todo ,arg)
12237 org-loop-over-headlines-in-active-region
12238 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
12239 (if (equal arg '(16)) (setq arg 'nextset))
12240 (when (equal arg -1) (org-cancel-repeater) (setq arg nil))
12241 (let ((org-blocker-hook org-blocker-hook)
12242 commentp
12243 case-fold-search)
12244 (when (equal arg '(64))
12245 (setq arg nil org-blocker-hook nil))
12246 (when (and org-blocker-hook
12247 (or org-inhibit-blocking
12248 (org-entry-get nil "NOBLOCKING")))
12249 (setq org-blocker-hook nil))
12250 (save-excursion
12251 (catch 'exit
12252 (org-back-to-heading t)
12253 (when (looking-at (concat "^\\*+ " org-comment-string))
12254 (org-toggle-comment)
12255 (setq commentp t))
12256 (if (looking-at org-outline-regexp) (goto-char (1- (match-end 0))))
12257 (or (looking-at (concat " +" org-todo-regexp "\\( +\\|[ \t]*$\\)"))
12258 (looking-at "\\(?: *\\|[ \t]*$\\)"))
12259 (let* ((match-data (match-data))
12260 (startpos (point-at-bol))
12261 (logging (save-match-data (org-entry-get nil "LOGGING" t t)))
12262 (org-log-done org-log-done)
12263 (org-log-repeat org-log-repeat)
12264 (org-todo-log-states org-todo-log-states)
12265 (org-inhibit-logging
12266 (if (equal arg 0)
12267 (progn (setq arg nil) 'note) org-inhibit-logging))
12268 (this (match-string 1))
12269 (hl-pos (match-beginning 0))
12270 (head (org-get-todo-sequence-head this))
12271 (ass (assoc head org-todo-kwd-alist))
12272 (interpret (nth 1 ass))
12273 (done-word (nth 3 ass))
12274 (final-done-word (nth 4 ass))
12275 (org-last-state (or this ""))
12276 (completion-ignore-case t)
12277 (member (member this org-todo-keywords-1))
12278 (tail (cdr member))
12279 (org-state (cond
12280 ((and org-todo-key-trigger
12281 (or (and (equal arg '(4))
12282 (eq org-use-fast-todo-selection 'prefix))
12283 (and (not arg) org-use-fast-todo-selection
12284 (not (eq org-use-fast-todo-selection
12285 'prefix)))))
12286 ;; Use fast selection
12287 (org-fast-todo-selection))
12288 ((and (equal arg '(4))
12289 (or (not org-use-fast-todo-selection)
12290 (not org-todo-key-trigger)))
12291 ;; Read a state with completion
12292 (org-icompleting-read
12293 "State: " (mapcar 'list org-todo-keywords-1)
12294 nil t))
12295 ((eq arg 'right)
12296 (if this
12297 (if tail (car tail) nil)
12298 (car org-todo-keywords-1)))
12299 ((eq arg 'left)
12300 (if (equal member org-todo-keywords-1)
12302 (if this
12303 (nth (- (length org-todo-keywords-1)
12304 (length tail) 2)
12305 org-todo-keywords-1)
12306 (org-last org-todo-keywords-1))))
12307 ((and (eq org-use-fast-todo-selection t) (equal arg '(4))
12308 (setq arg nil))) ; hack to fall back to cycling
12309 (arg
12310 ;; user or caller requests a specific state
12311 (cond
12312 ((equal arg "") nil)
12313 ((eq arg 'none) nil)
12314 ((eq arg 'done) (or done-word (car org-done-keywords)))
12315 ((eq arg 'nextset)
12316 (or (car (cdr (member head org-todo-heads)))
12317 (car org-todo-heads)))
12318 ((eq arg 'previousset)
12319 (let ((org-todo-heads (reverse org-todo-heads)))
12320 (or (car (cdr (member head org-todo-heads)))
12321 (car org-todo-heads))))
12322 ((car (member arg org-todo-keywords-1)))
12323 ((stringp arg)
12324 (user-error "State `%s' not valid in this file" arg))
12325 ((nth (1- (prefix-numeric-value arg))
12326 org-todo-keywords-1))))
12327 ((null member) (or head (car org-todo-keywords-1)))
12328 ((equal this final-done-word) nil) ;; -> make empty
12329 ((null tail) nil) ;; -> first entry
12330 ((memq interpret '(type priority))
12331 (if (eq this-command last-command)
12332 (car tail)
12333 (if (> (length tail) 0)
12334 (or done-word (car org-done-keywords))
12335 nil)))
12337 (car tail))))
12338 (org-state (or
12339 (run-hook-with-args-until-success
12340 'org-todo-get-default-hook org-state org-last-state)
12341 org-state))
12342 (next (if org-state (concat " " org-state " ") " "))
12343 (change-plist (list :type 'todo-state-change :from this :to org-state
12344 :position startpos))
12345 dolog now-done-p)
12346 (when org-blocker-hook
12347 (setq org-last-todo-state-is-todo
12348 (not (member this org-done-keywords)))
12349 (unless (save-excursion
12350 (save-match-data
12351 (org-with-wide-buffer
12352 (run-hook-with-args-until-failure
12353 'org-blocker-hook change-plist))))
12354 (if (org-called-interactively-p 'interactive)
12355 (user-error "TODO state change from %s to %s blocked (by \"%s\")"
12356 this org-state org-block-entry-blocking)
12357 ;; fail silently
12358 (message "TODO state change from %s to %s blocked (by \"%s\")"
12359 this org-state org-block-entry-blocking)
12360 (throw 'exit nil))))
12361 (store-match-data match-data)
12362 (replace-match next t t)
12363 (unless (pos-visible-in-window-p hl-pos)
12364 (message "TODO state changed to %s" (org-trim next)))
12365 (unless head
12366 (setq head (org-get-todo-sequence-head org-state)
12367 ass (assoc head org-todo-kwd-alist)
12368 interpret (nth 1 ass)
12369 done-word (nth 3 ass)
12370 final-done-word (nth 4 ass)))
12371 (when (memq arg '(nextset previousset))
12372 (message "Keyword-Set %d/%d: %s"
12373 (- (length org-todo-sets) -1
12374 (length (memq (assoc org-state org-todo-sets) org-todo-sets)))
12375 (length org-todo-sets)
12376 (mapconcat 'identity (assoc org-state org-todo-sets) " ")))
12377 (setq org-last-todo-state-is-todo
12378 (not (member org-state org-done-keywords)))
12379 (setq now-done-p (and (member org-state org-done-keywords)
12380 (not (member this org-done-keywords))))
12381 (and logging (org-local-logging logging))
12382 (when (and (or org-todo-log-states org-log-done)
12383 (not (eq org-inhibit-logging t))
12384 (not (memq arg '(nextset previousset))))
12385 ;; we need to look at recording a time and note
12386 (setq dolog (or (nth 1 (assoc org-state org-todo-log-states))
12387 (nth 2 (assoc this org-todo-log-states))))
12388 (if (and (eq dolog 'note) (eq org-inhibit-logging 'note))
12389 (setq dolog 'time))
12390 (when (or (and (not org-state) (not org-closed-keep-when-no-todo))
12391 (and org-state
12392 (member org-state org-not-done-keywords)
12393 (not (member this org-not-done-keywords))))
12394 ;; This is now a todo state and was not one before
12395 ;; If there was a CLOSED time stamp, get rid of it.
12396 (org-add-planning-info nil nil 'closed))
12397 (when (and now-done-p org-log-done)
12398 ;; It is now done, and it was not done before
12399 (org-add-planning-info 'closed (org-current-effective-time))
12400 (if (and (not dolog) (eq 'note org-log-done))
12401 (org-add-log-setup 'done org-state this 'findpos 'note)))
12402 (when (and org-state dolog)
12403 ;; This is a non-nil state, and we need to log it
12404 (org-add-log-setup 'state org-state this 'findpos dolog)))
12405 ;; Fixup tag positioning
12406 (org-todo-trigger-tag-changes org-state)
12407 (and org-auto-align-tags (not org-setting-tags) (org-set-tags nil t))
12408 (when org-provide-todo-statistics
12409 (org-update-parent-todo-statistics))
12410 (run-hooks 'org-after-todo-state-change-hook)
12411 (if (and arg (not (member org-state org-done-keywords)))
12412 (setq head (org-get-todo-sequence-head org-state)))
12413 (put-text-property (point-at-bol) (point-at-eol) 'org-todo-head head)
12414 ;; Do we need to trigger a repeat?
12415 (when now-done-p
12416 (when (boundp 'org-agenda-headline-snapshot-before-repeat)
12417 ;; This is for the agenda, take a snapshot of the headline.
12418 (save-match-data
12419 (setq org-agenda-headline-snapshot-before-repeat
12420 (org-get-heading))))
12421 (org-auto-repeat-maybe org-state))
12422 ;; Fixup cursor location if close to the keyword
12423 (if (and (outline-on-heading-p)
12424 (not (bolp))
12425 (save-excursion (beginning-of-line 1)
12426 (looking-at org-todo-line-regexp))
12427 (< (point) (+ 2 (or (match-end 2) (match-end 1)))))
12428 (progn
12429 (goto-char (or (match-end 2) (match-end 1)))
12430 (and (looking-at " ") (just-one-space))))
12431 (when org-trigger-hook
12432 (save-excursion
12433 (run-hook-with-args 'org-trigger-hook change-plist)))
12434 (when commentp (org-toggle-comment))))))))
12436 (defun org-block-todo-from-children-or-siblings-or-parent (change-plist)
12437 "Block turning an entry into a TODO, using the hierarchy.
12438 This checks whether the current task should be blocked from state
12439 changes. Such blocking occurs when:
12441 1. The task has children which are not all in a completed state.
12443 2. A task has a parent with the property :ORDERED:, and there
12444 are siblings prior to the current task with incomplete
12445 status.
12447 3. The parent of the task is blocked because it has siblings that should
12448 be done first, or is child of a block grandparent TODO entry."
12450 (if (not org-enforce-todo-dependencies)
12451 t ; if locally turned off don't block
12452 (catch 'dont-block
12453 ;; If this is not a todo state change, or if this entry is already DONE,
12454 ;; do not block
12455 (when (or (not (eq (plist-get change-plist :type) 'todo-state-change))
12456 (member (plist-get change-plist :from)
12457 (cons 'done org-done-keywords))
12458 (member (plist-get change-plist :to)
12459 (cons 'todo org-not-done-keywords))
12460 (not (plist-get change-plist :to)))
12461 (throw 'dont-block t))
12462 ;; If this task has children, and any are undone, it's blocked
12463 (save-excursion
12464 (org-back-to-heading t)
12465 (let ((this-level (funcall outline-level)))
12466 (outline-next-heading)
12467 (let ((child-level (funcall outline-level)))
12468 (while (and (not (eobp))
12469 (> child-level this-level))
12470 ;; this todo has children, check whether they are all
12471 ;; completed
12472 (if (and (not (org-entry-is-done-p))
12473 (org-entry-is-todo-p))
12474 (progn (setq org-block-entry-blocking (org-get-heading))
12475 (throw 'dont-block nil)))
12476 (outline-next-heading)
12477 (setq child-level (funcall outline-level))))))
12478 ;; Otherwise, if the task's parent has the :ORDERED: property, and
12479 ;; any previous siblings are undone, it's blocked
12480 (save-excursion
12481 (org-back-to-heading t)
12482 (let* ((pos (point))
12483 (parent-pos (and (org-up-heading-safe) (point))))
12484 (if (not parent-pos) (throw 'dont-block t)) ; no parent
12485 (when (and (org-not-nil (org-entry-get (point) "ORDERED"))
12486 (forward-line 1)
12487 (re-search-forward org-not-done-heading-regexp pos t))
12488 (setq org-block-entry-blocking (match-string 0))
12489 (throw 'dont-block nil)) ; block, there is an older sibling not done.
12490 ;; Search further up the hierarchy, to see if an ancestor is blocked
12491 (while t
12492 (goto-char parent-pos)
12493 (if (not (looking-at org-not-done-heading-regexp))
12494 (throw 'dont-block t)) ; do not block, parent is not a TODO
12495 (setq pos (point))
12496 (setq parent-pos (and (org-up-heading-safe) (point)))
12497 (if (not parent-pos) (throw 'dont-block t)) ; no parent
12498 (when (and (org-not-nil (org-entry-get (point) "ORDERED"))
12499 (forward-line 1)
12500 (re-search-forward org-not-done-heading-regexp pos t)
12501 (setq org-block-entry-blocking (org-get-heading)))
12502 (throw 'dont-block nil)))))))) ; block, older sibling not done.
12504 (defcustom org-track-ordered-property-with-tag nil
12505 "Should the ORDERED property also be shown as a tag?
12506 The ORDERED property decides if an entry should require subtasks to be
12507 completed in sequence. Since a property is not very visible, setting
12508 this option means that toggling the ORDERED property with the command
12509 `org-toggle-ordered-property' will also toggle a tag ORDERED. That tag is
12510 not relevant for the behavior, but it makes things more visible.
12512 Note that toggling the tag with tags commands will not change the property
12513 and therefore not influence behavior!
12515 This can be t, meaning the tag ORDERED should be used, It can also be a
12516 string to select a different tag for this task."
12517 :group 'org-todo
12518 :type '(choice
12519 (const :tag "No tracking" nil)
12520 (const :tag "Track with ORDERED tag" t)
12521 (string :tag "Use other tag")))
12523 (defun org-toggle-ordered-property ()
12524 "Toggle the ORDERED property of the current entry.
12525 For better visibility, you can track the value of this property with a tag.
12526 See variable `org-track-ordered-property-with-tag'."
12527 (interactive)
12528 (let* ((t1 org-track-ordered-property-with-tag)
12529 (tag (and t1 (if (stringp t1) t1 "ORDERED"))))
12530 (save-excursion
12531 (org-back-to-heading)
12532 (if (org-entry-get nil "ORDERED")
12533 (progn
12534 (org-delete-property "ORDERED")
12535 (and tag (org-toggle-tag tag 'off))
12536 (message "Subtasks can be completed in arbitrary order"))
12537 (org-entry-put nil "ORDERED" "t")
12538 (and tag (org-toggle-tag tag 'on))
12539 (message "Subtasks must be completed in sequence")))))
12541 (defvar org-blocked-by-checkboxes) ; dynamically scoped
12542 (defun org-block-todo-from-checkboxes (change-plist)
12543 "Block turning an entry into a TODO, using checkboxes.
12544 This checks whether the current task should be blocked from state
12545 changes because there are unchecked boxes in this entry."
12546 (if (not org-enforce-todo-checkbox-dependencies)
12547 t ; if locally turned off don't block
12548 (catch 'dont-block
12549 ;; If this is not a todo state change, or if this entry is already DONE,
12550 ;; do not block
12551 (when (or (not (eq (plist-get change-plist :type) 'todo-state-change))
12552 (member (plist-get change-plist :from)
12553 (cons 'done org-done-keywords))
12554 (member (plist-get change-plist :to)
12555 (cons 'todo org-not-done-keywords))
12556 (not (plist-get change-plist :to)))
12557 (throw 'dont-block t))
12558 ;; If this task has checkboxes that are not checked, it's blocked
12559 (save-excursion
12560 (org-back-to-heading t)
12561 (let ((beg (point)) end)
12562 (outline-next-heading)
12563 (setq end (point))
12564 (goto-char beg)
12565 (if (org-list-search-forward
12566 (concat (org-item-beginning-re)
12567 "\\(?:\\[@\\(?:start:\\)?\\([0-9]+\\|[A-Za-z]\\)\\][ \t]*\\)?"
12568 "\\[[- ]\\]")
12569 end t)
12570 (progn
12571 (if (boundp 'org-blocked-by-checkboxes)
12572 (setq org-blocked-by-checkboxes t))
12573 (throw 'dont-block nil)))))
12574 t))) ; do not block
12576 (defun org-entry-blocked-p ()
12577 "Is the current entry blocked?"
12578 (org-with-silent-modifications
12579 (if (org-entry-get nil "NOBLOCKING")
12580 nil ;; Never block this entry
12581 (not (run-hook-with-args-until-failure
12582 'org-blocker-hook
12583 (list :type 'todo-state-change
12584 :position (point)
12585 :from 'todo
12586 :to 'done))))))
12588 (defun org-update-statistics-cookies (all)
12589 "Update the statistics cookie, either from TODO or from checkboxes.
12590 This should be called with the cursor in a line with a statistics cookie."
12591 (interactive "P")
12592 (if all
12593 (progn
12594 (org-update-checkbox-count 'all)
12595 (org-map-entries 'org-update-parent-todo-statistics))
12596 (if (not (org-at-heading-p))
12597 (org-update-checkbox-count)
12598 (let ((pos (point-marker))
12599 end l1 l2)
12600 (ignore-errors (org-back-to-heading t))
12601 (if (not (org-at-heading-p))
12602 (org-update-checkbox-count)
12603 (setq l1 (org-outline-level))
12604 (setq end (save-excursion
12605 (outline-next-heading)
12606 (if (org-at-heading-p) (setq l2 (org-outline-level)))
12607 (point)))
12608 (if (and (save-excursion
12609 (re-search-forward
12610 "^[ \t]*\\([-+*]\\|[0-9]+[.)]\\) \\[[- X]\\]" end t))
12611 (not (save-excursion (re-search-forward
12612 ":COOKIE_DATA:.*\\<todo\\>" end t))))
12613 (org-update-checkbox-count)
12614 (if (and l2 (> l2 l1))
12615 (progn
12616 (goto-char end)
12617 (org-update-parent-todo-statistics))
12618 (goto-char pos)
12619 (beginning-of-line 1)
12620 (while (re-search-forward
12621 "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)"
12622 (point-at-eol) t)
12623 (replace-match (if (match-end 2) "[100%]" "[0/0]") t t)))))
12624 (goto-char pos)
12625 (move-marker pos nil)))))
12627 (defvar org-entry-property-inherited-from) ;; defined below
12628 (defun org-update-parent-todo-statistics ()
12629 "Update any statistics cookie in the parent of the current headline.
12630 When `org-hierarchical-todo-statistics' is nil, statistics will cover
12631 the entire subtree and this will travel up the hierarchy and update
12632 statistics everywhere."
12633 (let* ((prop (save-excursion (org-up-heading-safe)
12634 (org-entry-get nil "COOKIE_DATA" 'inherit)))
12635 (recursive (or (not org-hierarchical-todo-statistics)
12636 (and prop (string-match "\\<recursive\\>" prop))))
12637 (lim (or (and prop (marker-position org-entry-property-inherited-from))
12639 (first t)
12640 (box-re "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)")
12641 level ltoggle l1 new ndel
12642 (cnt-all 0) (cnt-done 0) is-percent kwd
12643 checkbox-beg ov ovs ove cookie-present)
12644 (catch 'exit
12645 (save-excursion
12646 (beginning-of-line 1)
12647 (setq ltoggle (funcall outline-level))
12648 ;; Three situations are to consider:
12650 ;; 1. if `org-hierarchical-todo-statistics' is nil, repeat up
12651 ;; to the top-level ancestor on the headline;
12653 ;; 2. If parent has "recursive" property, repeat up to the
12654 ;; headline setting that property, taking inheritance into
12655 ;; account;
12657 ;; 3. Else, move up to direct parent and proceed only once.
12658 (while (and (setq level (org-up-heading-safe))
12659 (or recursive first)
12660 (>= (point) lim))
12661 (setq first nil cookie-present nil)
12662 (unless (and level
12663 (not (string-match
12664 "\\<checkbox\\>"
12665 (downcase (or (org-entry-get nil "COOKIE_DATA")
12666 "")))))
12667 (throw 'exit nil))
12668 (while (re-search-forward box-re (point-at-eol) t)
12669 (setq cnt-all 0 cnt-done 0 cookie-present t)
12670 (setq is-percent (match-end 2) checkbox-beg (match-beginning 0))
12671 (save-match-data
12672 (unless (outline-next-heading) (throw 'exit nil))
12673 (while (and (looking-at org-complex-heading-regexp)
12674 (> (setq l1 (length (match-string 1))) level))
12675 (setq kwd (and (or recursive (= l1 ltoggle))
12676 (match-string 2)))
12677 (if (or (eq org-provide-todo-statistics 'all-headlines)
12678 (and (listp org-provide-todo-statistics)
12679 (or (member kwd org-provide-todo-statistics)
12680 (member kwd org-done-keywords))))
12681 (setq cnt-all (1+ cnt-all))
12682 (if (eq org-provide-todo-statistics t)
12683 (and kwd (setq cnt-all (1+ cnt-all)))))
12684 (and (member kwd org-done-keywords)
12685 (setq cnt-done (1+ cnt-done)))
12686 (outline-next-heading)))
12687 (setq new
12688 (if is-percent
12689 (format "[%d%%]" (/ (* 100 cnt-done) (max 1 cnt-all)))
12690 (format "[%d/%d]" cnt-done cnt-all))
12691 ndel (- (match-end 0) checkbox-beg))
12692 ;; handle overlays when updating cookie from column view
12693 (when (setq ov (car (overlays-at checkbox-beg)))
12694 (setq ovs (overlay-start ov) ove (overlay-end ov))
12695 (delete-overlay ov))
12696 (goto-char checkbox-beg)
12697 (insert new)
12698 (delete-region (point) (+ (point) ndel))
12699 (when org-auto-align-tags (org-fix-tags-on-the-fly))
12700 (when ov (move-overlay ov ovs ove)))
12701 (when cookie-present
12702 (run-hook-with-args 'org-after-todo-statistics-hook
12703 cnt-done (- cnt-all cnt-done))))))
12704 (run-hooks 'org-todo-statistics-hook)))
12706 (defvar org-after-todo-statistics-hook nil
12707 "Hook that is called after a TODO statistics cookie has been updated.
12708 Each function is called with two arguments: the number of not-done entries
12709 and the number of done entries.
12711 For example, the following function, when added to this hook, will switch
12712 an entry to DONE when all children are done, and back to TODO when new
12713 entries are set to a TODO status. Note that this hook is only called
12714 when there is a statistics cookie in the headline!
12716 (defun org-summary-todo (n-done n-not-done)
12717 \"Switch entry to DONE when all subentries are done, to TODO otherwise.\"
12718 (let (org-log-done org-log-states) ; turn off logging
12719 (org-todo (if (= n-not-done 0) \"DONE\" \"TODO\"))))
12722 (defvar org-todo-statistics-hook nil
12723 "Hook that is run whenever Org thinks TODO statistics should be updated.
12724 This hook runs even if there is no statistics cookie present, in which case
12725 `org-after-todo-statistics-hook' would not run.")
12727 (defun org-todo-trigger-tag-changes (state)
12728 "Apply the changes defined in `org-todo-state-tags-triggers'."
12729 (let ((l org-todo-state-tags-triggers)
12730 changes)
12731 (when (or (not state) (equal state ""))
12732 (setq changes (append changes (cdr (assoc "" l)))))
12733 (when (and (stringp state) (> (length state) 0))
12734 (setq changes (append changes (cdr (assoc state l)))))
12735 (when (member state org-not-done-keywords)
12736 (setq changes (append changes (cdr (assoc 'todo l)))))
12737 (when (member state org-done-keywords)
12738 (setq changes (append changes (cdr (assoc 'done l)))))
12739 (dolist (c changes)
12740 (org-toggle-tag (car c) (if (cdr c) 'on 'off)))))
12742 (defun org-local-logging (value)
12743 "Get logging settings from a property VALUE."
12744 (let* (words w a)
12745 ;; directly set the variables, they are already local.
12746 (setq org-log-done nil
12747 org-log-repeat nil
12748 org-todo-log-states nil)
12749 (setq words (org-split-string value))
12750 (while (setq w (pop words))
12751 (cond
12752 ((setq a (assoc w org-startup-options))
12753 (and (member (nth 1 a) '(org-log-done org-log-repeat))
12754 (set (nth 1 a) (nth 2 a))))
12755 ((setq a (org-extract-log-state-settings w))
12756 (and (member (car a) org-todo-keywords-1)
12757 (push a org-todo-log-states)))))))
12759 (defun org-get-todo-sequence-head (kwd)
12760 "Return the head of the TODO sequence to which KWD belongs.
12761 If KWD is not set, check if there is a text property remembering the
12762 right sequence."
12763 (let (p)
12764 (cond
12765 ((not kwd)
12766 (or (get-text-property (point-at-bol) 'org-todo-head)
12767 (progn
12768 (setq p (next-single-property-change (point-at-bol) 'org-todo-head
12769 nil (point-at-eol)))
12770 (get-text-property p 'org-todo-head))))
12771 ((not (member kwd org-todo-keywords-1))
12772 (car org-todo-keywords-1))
12773 (t (nth 2 (assoc kwd org-todo-kwd-alist))))))
12775 (defun org-fast-todo-selection ()
12776 "Fast TODO keyword selection with single keys.
12777 Returns the new TODO keyword, or nil if no state change should occur."
12778 (let* ((fulltable org-todo-key-alist)
12779 (done-keywords org-done-keywords) ;; needed for the faces.
12780 (maxlen (apply 'max (mapcar
12781 (lambda (x)
12782 (if (stringp (car x)) (string-width (car x)) 0))
12783 fulltable)))
12784 (expert nil)
12785 (fwidth (+ maxlen 3 1 3))
12786 (ncol (/ (- (window-width) 4) fwidth))
12787 tg cnt e c tbl
12788 groups ingroup)
12789 (save-excursion
12790 (save-window-excursion
12791 (if expert
12792 (set-buffer (get-buffer-create " *Org todo*"))
12793 (org-switch-to-buffer-other-window (get-buffer-create " *Org todo*")))
12794 (erase-buffer)
12795 (org-set-local 'org-done-keywords done-keywords)
12796 (setq tbl fulltable cnt 0)
12797 (while (setq e (pop tbl))
12798 (cond
12799 ((equal e '(:startgroup))
12800 (push '() groups) (setq ingroup t)
12801 (when (not (= cnt 0))
12802 (setq cnt 0)
12803 (insert "\n"))
12804 (insert "{ "))
12805 ((equal e '(:endgroup))
12806 (setq ingroup nil cnt 0)
12807 (insert "}\n"))
12808 ((equal e '(:newline))
12809 (when (not (= cnt 0))
12810 (setq cnt 0)
12811 (insert "\n")
12812 (setq e (car tbl))
12813 (while (equal (car tbl) '(:newline))
12814 (insert "\n")
12815 (setq tbl (cdr tbl)))))
12817 (setq tg (car e) c (cdr e))
12818 (if ingroup (push tg (car groups)))
12819 (setq tg (org-add-props tg nil 'face
12820 (org-get-todo-face tg)))
12821 (if (and (= cnt 0) (not ingroup)) (insert " "))
12822 (insert "[" c "] " tg (make-string
12823 (- fwidth 4 (length tg)) ?\ ))
12824 (when (= (setq cnt (1+ cnt)) ncol)
12825 (insert "\n")
12826 (if ingroup (insert " "))
12827 (setq cnt 0)))))
12828 (insert "\n")
12829 (goto-char (point-min))
12830 (if (not expert) (org-fit-window-to-buffer))
12831 (message "[a-z..]:Set [SPC]:clear")
12832 (setq c (let ((inhibit-quit t)) (read-char-exclusive)))
12833 (cond
12834 ((or (= c ?\C-g)
12835 (and (= c ?q) (not (rassoc c fulltable))))
12836 (setq quit-flag t))
12837 ((= c ?\ ) nil)
12838 ((setq e (rassoc c fulltable) tg (car e))
12840 (t (setq quit-flag t)))))))
12842 (defun org-entry-is-todo-p ()
12843 (member (org-get-todo-state) org-not-done-keywords))
12845 (defun org-entry-is-done-p ()
12846 (member (org-get-todo-state) org-done-keywords))
12848 (defun org-get-todo-state ()
12849 "Return the TODO keyword of the current subtree."
12850 (save-excursion
12851 (org-back-to-heading t)
12852 (and (looking-at org-todo-line-regexp)
12853 (match-end 2)
12854 (match-string 2))))
12856 (defun org-at-date-range-p (&optional inactive-ok)
12857 "Is the cursor inside a date range?"
12858 (interactive)
12859 (save-excursion
12860 (catch 'exit
12861 (let ((pos (point)))
12862 (skip-chars-backward "^[<\r\n")
12863 (skip-chars-backward "<[")
12864 (and (looking-at (if inactive-ok org-tr-regexp-both org-tr-regexp))
12865 (>= (match-end 0) pos)
12866 (throw 'exit t))
12867 (skip-chars-backward "^<[\r\n")
12868 (skip-chars-backward "<[")
12869 (and (looking-at (if inactive-ok org-tr-regexp-both org-tr-regexp))
12870 (>= (match-end 0) pos)
12871 (throw 'exit t)))
12872 nil)))
12874 (defun org-get-repeat (&optional tagline)
12875 "Check if there is a deadline/schedule with repeater in this entry."
12876 (save-match-data
12877 (save-excursion
12878 (org-back-to-heading t)
12879 (and (re-search-forward (if tagline
12880 (concat tagline "\\s-*" org-repeat-re)
12881 org-repeat-re)
12882 (org-entry-end-position) t)
12883 (match-string-no-properties 1)))))
12885 (defvar org-last-changed-timestamp)
12886 (defvar org-last-inserted-timestamp)
12887 (defvar org-log-post-message)
12888 (defvar org-log-note-purpose)
12889 (defvar org-log-note-how)
12890 (defvar org-log-note-extra)
12891 (defun org-auto-repeat-maybe (done-word)
12892 "Check if the current headline contains a repeated deadline/schedule.
12893 If yes, set TODO state back to what it was and change the base date
12894 of repeating deadline/scheduled time stamps to new date.
12895 This function is run automatically after each state change to a DONE state."
12896 ;; last-state is dynamically scoped into this function
12897 (let* ((repeat (org-get-repeat))
12898 (aa (assoc org-last-state org-todo-kwd-alist))
12899 (interpret (nth 1 aa))
12900 (head (nth 2 aa))
12901 (whata '(("h" . hour) ("d" . day) ("m" . month) ("y" . year)))
12902 (msg "Entry repeats: ")
12903 (org-log-done nil)
12904 (org-todo-log-states nil)
12905 re type n what ts time to-state)
12906 (when (and repeat (not (zerop (string-to-number (substring repeat 1)))))
12907 (if (eq org-log-repeat t) (setq org-log-repeat 'state))
12908 (setq to-state (or (org-entry-get nil "REPEAT_TO_STATE")
12909 org-todo-repeat-to-state))
12910 (unless (and to-state (member to-state org-todo-keywords-1))
12911 (setq to-state (if (eq interpret 'type) org-last-state head)))
12912 (org-todo to-state)
12913 (when (or org-log-repeat (org-entry-get nil "CLOCK"))
12914 (org-entry-put nil "LAST_REPEAT" (format-time-string
12915 (org-time-stamp-format t t))))
12916 (when org-log-repeat
12917 (if (or (memq 'org-add-log-note (default-value 'post-command-hook))
12918 (memq 'org-add-log-note post-command-hook))
12919 ;; OK, we are already setup for some record
12920 (if (eq org-log-repeat 'note)
12921 ;; make sure we take a note, not only a time stamp
12922 (setq org-log-note-how 'note))
12923 ;; Set up for taking a record
12924 (org-add-log-setup 'state (or done-word (car org-done-keywords))
12925 org-last-state
12926 'findpos org-log-repeat)))
12927 (org-back-to-heading t)
12928 (org-add-planning-info nil nil 'closed)
12929 (setq re (concat "\\(" org-scheduled-time-regexp "\\)\\|\\("
12930 org-deadline-time-regexp "\\)\\|\\("
12931 org-ts-regexp "\\)"))
12932 (while (re-search-forward
12933 re (save-excursion (outline-next-heading) (point)) t)
12934 (setq type (if (match-end 1) org-scheduled-string
12935 (if (match-end 3) org-deadline-string "Plain:"))
12936 ts (match-string (if (match-end 2) 2 (if (match-end 4) 4 0))))
12937 (when (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([hdwmy]\\)" ts)
12938 (setq n (string-to-number (match-string 2 ts))
12939 what (match-string 3 ts))
12940 (if (equal what "w") (setq n (* n 7) what "d"))
12941 (if (and (equal what "h") (not (string-match "[0-9]\\{1,2\\}:[0-9]\\{2\\}" ts)))
12942 (user-error "Cannot repeat in Repeat in %d hour(s) because no hour has been set" n))
12943 ;; Preparation, see if we need to modify the start date for the change
12944 (when (match-end 1)
12945 (setq time (save-match-data (org-time-string-to-time ts)))
12946 (cond
12947 ((equal (match-string 1 ts) ".")
12948 ;; Shift starting date to today
12949 (org-timestamp-change
12950 (- (org-today) (time-to-days time))
12951 'day))
12952 ((equal (match-string 1 ts) "+")
12953 (let ((nshiftmax 10) (nshift 0))
12954 (while (or (= nshift 0)
12955 (<= (time-to-days time)
12956 (time-to-days (current-time))))
12957 (when (= (incf nshift) nshiftmax)
12958 (or (y-or-n-p (message "%d repeater intervals were not enough to shift date past today. Continue? " nshift))
12959 (error "Abort")))
12960 (org-timestamp-change n (cdr (assoc what whata)))
12961 (org-at-timestamp-p t)
12962 (setq ts (match-string 1))
12963 (setq time (save-match-data (org-time-string-to-time ts)))))
12964 (org-timestamp-change (- n) (cdr (assoc what whata)))
12965 ;; rematch, so that we have everything in place for the real shift
12966 (org-at-timestamp-p t)
12967 (setq ts (match-string 1))
12968 (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([hdwmy]\\)" ts))))
12969 (save-excursion (org-timestamp-change n (cdr (assoc what whata)) nil t))
12970 (setq msg (concat msg type " " org-last-changed-timestamp " "))))
12971 (setq org-log-post-message msg)
12972 (message "%s" msg))))
12974 (defun org-show-todo-tree (arg)
12975 "Make a compact tree which shows all headlines marked with TODO.
12976 The tree will show the lines where the regexp matches, and all higher
12977 headlines above the match.
12978 With a \\[universal-argument] prefix, prompt for a regexp to match.
12979 With a numeric prefix N, construct a sparse tree for the Nth element
12980 of `org-todo-keywords-1'."
12981 (interactive "P")
12982 (let ((case-fold-search nil)
12983 (kwd-re
12984 (cond ((null arg) org-not-done-regexp)
12985 ((equal arg '(4))
12986 (let ((kwd (org-icompleting-read "Keyword (or KWD1|KWD2|...): "
12987 (mapcar 'list org-todo-keywords-1))))
12988 (concat "\\("
12989 (mapconcat 'identity (org-split-string kwd "|") "\\|")
12990 "\\)\\>")))
12991 ((<= (prefix-numeric-value arg) (length org-todo-keywords-1))
12992 (regexp-quote (nth (1- (prefix-numeric-value arg))
12993 org-todo-keywords-1)))
12994 (t (user-error "Invalid prefix argument: %s" arg)))))
12995 (message "%d TODO entries found"
12996 (org-occur (concat "^" org-outline-regexp " *" kwd-re )))))
12998 (defun org-deadline (arg &optional time)
12999 "Insert the \"DEADLINE:\" string with a timestamp to make a deadline.
13000 With one universal prefix argument, remove any deadline from the item.
13001 With two universal prefix arguments, prompt for a warning delay.
13002 With argument TIME, set the deadline at the corresponding date. TIME
13003 can either be an Org date like \"2011-07-24\" or a delta like \"+2d\"."
13004 (interactive "P")
13005 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
13006 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
13007 'region-start-level 'region))
13008 org-loop-over-headlines-in-active-region)
13009 (org-map-entries
13010 `(org-deadline ',arg ,time)
13011 org-loop-over-headlines-in-active-region
13012 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
13013 (let* ((old-date (org-entry-get nil "DEADLINE"))
13014 (old-date-time (if old-date (org-time-string-to-time old-date)))
13015 (repeater (and old-date
13016 (string-match
13017 "\\([.+-]+[0-9]+[hdwmy]\\(?:[/ ][-+]?[0-9]+[hdwmy]\\)?\\) ?"
13018 old-date)
13019 (match-string 1 old-date))))
13020 (cond
13021 ((equal arg '(4))
13022 (when (and old-date org-log-redeadline)
13023 (org-add-log-setup 'deldeadline nil old-date 'findpos
13024 org-log-redeadline))
13025 (org-remove-timestamp-with-keyword org-deadline-string)
13026 (message "Item no longer has a deadline."))
13027 ((equal arg '(16))
13028 (save-excursion
13029 (org-back-to-heading t)
13030 (if (re-search-forward
13031 org-deadline-time-regexp
13032 (save-excursion (outline-next-heading) (point)) t)
13033 (let* ((rpl0 (match-string 1))
13034 (rpl (replace-regexp-in-string " -[0-9]+[hdwmy]" "" rpl0)))
13035 (replace-match
13036 (concat org-deadline-string
13037 " <" rpl
13038 (format " -%dd"
13039 (abs
13040 (- (time-to-days
13041 (save-match-data
13042 (org-read-date nil t nil "Warn starting from" old-date-time)))
13043 (time-to-days old-date-time))))
13044 ">") t t))
13045 (user-error "No deadline information to update"))))
13047 (org-add-planning-info 'deadline time 'closed)
13048 (when (and old-date org-log-redeadline
13049 (not (equal old-date
13050 (substring org-last-inserted-timestamp 1 -1))))
13051 (org-add-log-setup 'redeadline nil old-date 'findpos
13052 org-log-redeadline))
13053 (when repeater
13054 (save-excursion
13055 (org-back-to-heading t)
13056 (when (re-search-forward (concat org-deadline-string " "
13057 org-last-inserted-timestamp)
13058 (save-excursion
13059 (outline-next-heading) (point)) t)
13060 (goto-char (1- (match-end 0)))
13061 (insert " " repeater)
13062 (setq org-last-inserted-timestamp
13063 (concat (substring org-last-inserted-timestamp 0 -1)
13064 " " repeater
13065 (substring org-last-inserted-timestamp -1))))))
13066 (message "Deadline on %s" org-last-inserted-timestamp))))))
13068 (defun org-schedule (arg &optional time)
13069 "Insert the SCHEDULED: string with a timestamp to schedule a TODO item.
13070 With one universal prefix argument, remove any scheduling date from the item.
13071 With two universal prefix arguments, prompt for a delay cookie.
13072 With argument TIME, scheduled at the corresponding date. TIME can
13073 either be an Org date like \"2011-07-24\" or a delta like \"+2d\"."
13074 (interactive "P")
13075 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
13076 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
13077 'region-start-level 'region))
13078 org-loop-over-headlines-in-active-region)
13079 (org-map-entries
13080 `(org-schedule ',arg ,time)
13081 org-loop-over-headlines-in-active-region
13082 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
13083 (let* ((old-date (org-entry-get nil "SCHEDULED"))
13084 (old-date-time (if old-date (org-time-string-to-time old-date)))
13085 (repeater (and old-date
13086 (string-match
13087 "\\([.+-]+[0-9]+[hdwmy]\\(?:[/ ][-+]?[0-9]+[hdwmy]\\)?\\) ?"
13088 old-date)
13089 (match-string 1 old-date))))
13090 (cond
13091 ((equal arg '(4))
13092 (progn
13093 (when (and old-date org-log-reschedule)
13094 (org-add-log-setup 'delschedule nil old-date 'findpos
13095 org-log-reschedule))
13096 (org-remove-timestamp-with-keyword org-scheduled-string)
13097 (message "Item is no longer scheduled.")))
13098 ((equal arg '(16))
13099 (save-excursion
13100 (org-back-to-heading t)
13101 (if (re-search-forward
13102 org-scheduled-time-regexp
13103 (save-excursion (outline-next-heading) (point)) t)
13104 (let* ((rpl0 (match-string 1))
13105 (rpl (replace-regexp-in-string " -[0-9]+[hdwmy]" "" rpl0)))
13106 (replace-match
13107 (concat org-scheduled-string
13108 " <" rpl
13109 (format " -%dd"
13110 (abs
13111 (- (time-to-days
13112 (save-match-data
13113 (org-read-date nil t nil "Delay until" old-date-time)))
13114 (time-to-days old-date-time))))
13115 ">") t t))
13116 (user-error "No scheduled information to update"))))
13118 (org-add-planning-info 'scheduled time 'closed)
13119 (when (and old-date org-log-reschedule
13120 (not (equal old-date
13121 (substring org-last-inserted-timestamp 1 -1))))
13122 (org-add-log-setup 'reschedule nil old-date 'findpos
13123 org-log-reschedule))
13124 (when repeater
13125 (save-excursion
13126 (org-back-to-heading t)
13127 (when (re-search-forward (concat org-scheduled-string " "
13128 org-last-inserted-timestamp)
13129 (save-excursion
13130 (outline-next-heading) (point)) t)
13131 (goto-char (1- (match-end 0)))
13132 (insert " " repeater)
13133 (setq org-last-inserted-timestamp
13134 (concat (substring org-last-inserted-timestamp 0 -1)
13135 " " repeater
13136 (substring org-last-inserted-timestamp -1))))))
13137 (message "Scheduled to %s" org-last-inserted-timestamp))))))
13139 (defun org-get-scheduled-time (pom &optional inherit)
13140 "Get the scheduled time as a time tuple, of a format suitable
13141 for calling org-schedule with, or if there is no scheduling,
13142 returns nil."
13143 (let ((time (org-entry-get pom "SCHEDULED" inherit)))
13144 (when time
13145 (apply 'encode-time (org-parse-time-string time)))))
13147 (defun org-get-deadline-time (pom &optional inherit)
13148 "Get the deadline as a time tuple, of a format suitable for
13149 calling org-deadline with, or if there is no scheduling, returns
13150 nil."
13151 (let ((time (org-entry-get pom "DEADLINE" inherit)))
13152 (when time
13153 (apply 'encode-time (org-parse-time-string time)))))
13155 (defun org-remove-timestamp-with-keyword (keyword)
13156 "Remove all time stamps with KEYWORD in the current entry."
13157 (let ((re (concat "\\<" (regexp-quote keyword) " +<[^>\n]+>[ \t]*"))
13158 beg)
13159 (save-excursion
13160 (org-back-to-heading t)
13161 (setq beg (point))
13162 (outline-next-heading)
13163 (while (re-search-backward re beg t)
13164 (replace-match "")
13165 (if (and (string-match "\\S-" (buffer-substring (point-at-bol) (point)))
13166 (equal (char-before) ?\ ))
13167 (backward-delete-char 1)
13168 (if (string-match "^[ \t]*$" (buffer-substring
13169 (point-at-bol) (point-at-eol)))
13170 (delete-region (point-at-bol)
13171 (min (point-max) (1+ (point-at-eol))))))))))
13173 (defvar org-time-was-given) ; dynamically scoped parameter
13174 (defvar org-end-time-was-given) ; dynamically scoped parameter
13176 (defun org-add-planning-info (what &optional time &rest remove)
13177 "Insert new timestamp with keyword in the line directly after the headline.
13178 WHAT indicates what kind of time stamp to add. TIME indicates the time to use.
13179 If non is given, the user is prompted for a date.
13180 REMOVE indicates what kind of entries to remove. An old WHAT entry will also
13181 be removed."
13182 (interactive)
13183 (let (org-time-was-given org-end-time-was-given ts
13184 end default-time default-input)
13186 (catch 'exit
13187 (when (and (memq what '(scheduled deadline))
13188 (or (not time)
13189 (and (stringp time)
13190 (string-match "^[-+]+[0-9]" time))))
13191 ;; Try to get a default date/time from existing timestamp
13192 (save-excursion
13193 (org-back-to-heading t)
13194 (setq end (save-excursion (outline-next-heading) (point)))
13195 (when (re-search-forward (if (eq what 'scheduled)
13196 org-scheduled-time-regexp
13197 org-deadline-time-regexp)
13198 end t)
13199 (setq ts (match-string 1)
13200 default-time
13201 (apply 'encode-time (org-parse-time-string ts))
13202 default-input (and ts (org-get-compact-tod ts))))))
13203 (when what
13204 (setq time
13205 (if (stringp time)
13206 ;; This is a string (relative or absolute), set proper date
13207 (apply 'encode-time
13208 (org-read-date-analyze
13209 time default-time (decode-time default-time)))
13210 ;; If necessary, get the time from the user
13211 (or time (org-read-date nil 'to-time nil nil
13212 default-time default-input)))))
13214 (when (and org-insert-labeled-timestamps-at-point
13215 (member what '(scheduled deadline)))
13216 (insert
13217 (if (eq what 'scheduled) org-scheduled-string org-deadline-string) " ")
13218 (org-insert-time-stamp time org-time-was-given
13219 nil nil nil (list org-end-time-was-given))
13220 (setq what nil))
13221 (save-excursion
13222 (save-restriction
13223 (let (col list elt ts buffer-invisibility-spec)
13224 (org-back-to-heading t)
13225 (looking-at (concat org-outline-regexp "\\( *\\)[^\r\n]*"))
13226 (goto-char (match-end 1))
13227 (setq col (current-column))
13228 (goto-char (match-end 0))
13229 (if (eobp) (insert "\n") (forward-char 1))
13230 (when (and (not what)
13231 (not (looking-at
13232 (concat "[ \t]*"
13233 org-keyword-time-not-clock-regexp))))
13234 ;; Nothing to add, nothing to remove...... :-)
13235 (throw 'exit nil))
13236 (if (and (not (looking-at org-outline-regexp))
13237 (looking-at (concat "[^\r\n]*?" org-keyword-time-regexp
13238 "[^\r\n]*"))
13239 (not (equal (match-string 1) org-clock-string)))
13240 (narrow-to-region (match-beginning 0) (match-end 0))
13241 (insert-before-markers "\n")
13242 (backward-char 1)
13243 (narrow-to-region (point) (point))
13244 (and org-adapt-indentation (org-indent-to-column col)))
13245 ;; Check if we have to remove something.
13246 (setq list (cons what remove))
13247 (while list
13248 (setq elt (pop list))
13249 (when (or (and (eq elt 'scheduled)
13250 (re-search-forward org-scheduled-time-regexp nil t))
13251 (and (eq elt 'deadline)
13252 (re-search-forward org-deadline-time-regexp nil t))
13253 (and (eq elt 'closed)
13254 (re-search-forward org-closed-time-regexp nil t)))
13255 (replace-match "")
13256 (if (looking-at "--+<[^>]+>") (replace-match ""))))
13257 (and (looking-at "[ \t]+") (replace-match ""))
13258 (and org-adapt-indentation (bolp) (org-indent-to-column col))
13259 (when what
13260 (insert
13261 (if (not (or (bolp) (eq (char-before) ?\ ))) " " "")
13262 (cond ((eq what 'scheduled) org-scheduled-string)
13263 ((eq what 'deadline) org-deadline-string)
13264 ((eq what 'closed) org-closed-string))
13265 " ")
13266 (setq ts (org-insert-time-stamp
13267 time
13268 (or org-time-was-given
13269 (and (eq what 'closed) org-log-done-with-time))
13270 (eq what 'closed)
13271 nil nil (list org-end-time-was-given)))
13272 (insert
13273 (if (not (or (bolp) (eq (char-before) ?\ )
13274 (memq (char-after) '(32 10))
13275 (eobp))) " " ""))
13276 (end-of-line 1))
13277 (goto-char (point-min))
13278 (widen)
13279 (if (and (looking-at "[ \t]*\n")
13280 (equal (char-before) ?\n))
13281 (delete-region (1- (point)) (point-at-eol)))
13282 ts))))))
13284 (defvar org-log-note-marker (make-marker))
13285 (defvar org-log-note-purpose nil)
13286 (defvar org-log-note-state nil)
13287 (defvar org-log-note-previous-state nil)
13288 (defvar org-log-note-how nil)
13289 (defvar org-log-note-extra nil)
13290 (defvar org-log-note-window-configuration nil)
13291 (defvar org-log-note-return-to (make-marker))
13292 (defvar org-log-note-effective-time nil
13293 "Remembered current time so that dynamically scoped
13294 `org-extend-today-until' affects tha timestamps in state change
13295 log")
13297 (defvar org-log-post-message nil
13298 "Message to be displayed after a log note has been stored.
13299 The auto-repeater uses this.")
13301 (defun org-add-note ()
13302 "Add a note to the current entry.
13303 This is done in the same way as adding a state change note."
13304 (interactive)
13305 (org-add-log-setup 'note nil nil 'findpos nil))
13307 (defvar org-property-end-re)
13308 (defun org-add-log-setup (&optional purpose state prev-state
13309 findpos how extra)
13310 "Set up the post command hook to take a note.
13311 If this is about to TODO state change, the new state is expected in STATE.
13312 When FINDPOS is non-nil, find the correct position for the note in
13313 the current entry. If not, assume that it can be inserted at point.
13314 HOW is an indicator what kind of note should be created.
13315 EXTRA is additional text that will be inserted into the notes buffer."
13316 (let* ((org-log-into-drawer (org-log-into-drawer))
13317 (drawer (cond ((stringp org-log-into-drawer)
13318 org-log-into-drawer)
13319 (org-log-into-drawer "LOGBOOK"))))
13320 (save-restriction
13321 (save-excursion
13322 (when findpos
13323 (org-back-to-heading t)
13324 (narrow-to-region (point) (save-excursion
13325 (outline-next-heading) (point)))
13326 (looking-at (concat org-outline-regexp "\\( *\\)[^\r\n]*"
13327 "\\(\n[^\r\n]*?" org-keyword-time-not-clock-regexp
13328 "[^\r\n]*\\)?"))
13329 (goto-char (match-end 0))
13330 (cond
13331 (drawer
13332 (if (re-search-forward (concat "^[ \t]*:" drawer ":[ \t]*$")
13333 nil t)
13334 (progn
13335 (goto-char (match-end 0))
13336 (or org-log-states-order-reversed
13337 (and (re-search-forward org-property-end-re nil t)
13338 (goto-char (1- (match-beginning 0))))))
13339 (insert "\n:" drawer ":\n:END:")
13340 (beginning-of-line 0)
13341 (org-indent-line)
13342 (beginning-of-line 2)
13343 (org-indent-line)
13344 (end-of-line 0)))
13345 ((and org-log-state-notes-insert-after-drawers
13346 (save-excursion
13347 (forward-line) (looking-at org-drawer-regexp)))
13348 (forward-line)
13349 (while (looking-at org-drawer-regexp)
13350 (goto-char (match-end 0))
13351 (re-search-forward org-property-end-re (point-max) t)
13352 (forward-line))
13353 (forward-line -1)))
13354 (unless org-log-states-order-reversed
13355 (and (= (char-after) ?\n) (forward-char 1))
13356 (org-skip-over-state-notes)
13357 (skip-chars-backward " \t\n\r")))
13358 (move-marker org-log-note-marker (point))
13359 (setq org-log-note-purpose purpose
13360 org-log-note-state state
13361 org-log-note-previous-state prev-state
13362 org-log-note-how how
13363 org-log-note-extra extra
13364 org-log-note-effective-time (org-current-effective-time))
13365 (add-hook 'post-command-hook 'org-add-log-note 'append)))))
13367 (defun org-skip-over-state-notes ()
13368 "Skip past the list of State notes in an entry."
13369 (if (looking-at "\n[ \t]*- State") (forward-char 1))
13370 (when (ignore-errors (goto-char (org-in-item-p)))
13371 (let* ((struct (org-list-struct))
13372 (prevs (org-list-prevs-alist struct)))
13373 (while (looking-at "[ \t]*- State")
13374 (goto-char (or (org-list-get-next-item (point) struct prevs)
13375 (org-list-get-item-end (point) struct)))))))
13377 (defun org-add-log-note (&optional purpose)
13378 "Pop up a window for taking a note, and add this note later at point."
13379 (remove-hook 'post-command-hook 'org-add-log-note)
13380 (setq org-log-note-window-configuration (current-window-configuration))
13381 (delete-other-windows)
13382 (move-marker org-log-note-return-to (point))
13383 (org-pop-to-buffer-same-window (marker-buffer org-log-note-marker))
13384 (goto-char org-log-note-marker)
13385 (org-switch-to-buffer-other-window "*Org Note*")
13386 (erase-buffer)
13387 (if (memq org-log-note-how '(time state))
13388 (let (current-prefix-arg) (org-store-log-note))
13389 (let ((org-inhibit-startup t)) (org-mode))
13390 (insert (format "# Insert note for %s.
13391 # Finish with C-c C-c, or cancel with C-c C-k.\n\n"
13392 (cond
13393 ((eq org-log-note-purpose 'clock-out) "stopped clock")
13394 ((eq org-log-note-purpose 'done) "closed todo item")
13395 ((eq org-log-note-purpose 'state)
13396 (format "state change from \"%s\" to \"%s\""
13397 (or org-log-note-previous-state "")
13398 (or org-log-note-state "")))
13399 ((eq org-log-note-purpose 'reschedule)
13400 "rescheduling")
13401 ((eq org-log-note-purpose 'delschedule)
13402 "no longer scheduled")
13403 ((eq org-log-note-purpose 'redeadline)
13404 "changing deadline")
13405 ((eq org-log-note-purpose 'deldeadline)
13406 "removing deadline")
13407 ((eq org-log-note-purpose 'refile)
13408 "refiling")
13409 ((eq org-log-note-purpose 'note)
13410 "this entry")
13411 (t (error "This should not happen")))))
13412 (if org-log-note-extra (insert org-log-note-extra))
13413 (org-set-local 'org-finish-function 'org-store-log-note)
13414 (run-hooks 'org-log-buffer-setup-hook)))
13416 (defvar org-note-abort nil) ; dynamically scoped
13417 (defun org-store-log-note ()
13418 "Finish taking a log note, and insert it to where it belongs."
13419 (let ((txt (buffer-string)))
13420 (kill-buffer (current-buffer))
13421 (let ((note (cdr (assq org-log-note-purpose org-log-note-headings)))
13422 lines ind bul)
13423 (while (string-match "\\`# .*\n[ \t\n]*" txt)
13424 (setq txt (replace-match "" t t txt)))
13425 (if (string-match "\\s-+\\'" txt)
13426 (setq txt (replace-match "" t t txt)))
13427 (setq lines (org-split-string txt "\n"))
13428 (when (and note (string-match "\\S-" note))
13429 (setq note
13430 (org-replace-escapes
13431 note
13432 (list (cons "%u" (user-login-name))
13433 (cons "%U" user-full-name)
13434 (cons "%t" (format-time-string
13435 (org-time-stamp-format 'long 'inactive)
13436 org-log-note-effective-time))
13437 (cons "%T" (format-time-string
13438 (org-time-stamp-format 'long nil)
13439 org-log-note-effective-time))
13440 (cons "%d" (format-time-string
13441 (org-time-stamp-format nil 'inactive)
13442 org-log-note-effective-time))
13443 (cons "%D" (format-time-string
13444 (org-time-stamp-format nil nil)
13445 org-log-note-effective-time))
13446 (cons "%s" (if org-log-note-state
13447 (concat "\"" org-log-note-state "\"")
13448 ""))
13449 (cons "%S" (if org-log-note-previous-state
13450 (concat "\"" org-log-note-previous-state "\"")
13451 "\"\"")))))
13452 (if lines (setq note (concat note " \\\\")))
13453 (push note lines))
13454 (when (or current-prefix-arg org-note-abort)
13455 (when org-log-into-drawer
13456 (org-remove-empty-drawer-at org-log-note-marker))
13457 (setq lines nil))
13458 (when lines
13459 (with-current-buffer (marker-buffer org-log-note-marker)
13460 (save-excursion
13461 (goto-char org-log-note-marker)
13462 (move-marker org-log-note-marker nil)
13463 (end-of-line 1)
13464 (if (not (bolp)) (let ((inhibit-read-only t)) (insert "\n")))
13465 (setq ind (save-excursion
13466 (if (ignore-errors (goto-char (org-in-item-p)))
13467 (let ((struct (org-list-struct)))
13468 (org-list-get-ind
13469 (org-list-get-top-point struct) struct))
13470 (skip-chars-backward " \r\t\n")
13471 (cond
13472 ((and (org-at-heading-p)
13473 org-adapt-indentation)
13474 (1+ (org-current-level)))
13475 ((org-at-heading-p) 0)
13476 (t (org-get-indentation))))))
13477 (setq bul (org-list-bullet-string "-"))
13478 (org-indent-line-to ind)
13479 (insert bul (pop lines))
13480 (let ((ind-body (+ (length bul) ind)))
13481 (while lines
13482 (insert "\n")
13483 (org-indent-line-to ind-body)
13484 (insert (pop lines))))
13485 (message "Note stored")
13486 (org-back-to-heading t)
13487 (org-cycle-hide-drawers 'children))
13488 ;; Fix `buffer-undo-list' when `org-store-log-note' is called
13489 ;; from within `org-add-log-note' because `buffer-undo-list'
13490 ;; is then modified outside of `org-with-remote-undo'.
13491 (when (eq this-command 'org-agenda-todo)
13492 (setcdr buffer-undo-list (cddr buffer-undo-list)))))))
13493 ;; Don't add undo information when called from `org-agenda-todo'
13494 (let ((buffer-undo-list (eq this-command 'org-agenda-todo)))
13495 (set-window-configuration org-log-note-window-configuration)
13496 (with-current-buffer (marker-buffer org-log-note-return-to)
13497 (goto-char org-log-note-return-to))
13498 (move-marker org-log-note-return-to nil)
13499 (and org-log-post-message (message "%s" org-log-post-message))))
13501 (defun org-remove-empty-drawer-at (pos)
13502 "Remove an empty drawer at position POS.
13503 POS may also be a marker."
13504 (with-current-buffer (if (markerp pos) (marker-buffer pos) (current-buffer))
13505 (org-with-wide-buffer
13506 (goto-char pos)
13507 (let ((drawer (org-element-at-point)))
13508 (when (and (memq (org-element-type drawer) '(drawer property-drawer))
13509 (not (org-element-property :contents-begin drawer)))
13510 (delete-region (org-element-property :begin drawer)
13511 (progn (goto-char (org-element-property :end drawer))
13512 (skip-chars-backward " \r\t\n")
13513 (forward-line)
13514 (point))))))))
13516 (defvar org-ts-type nil)
13517 (defun org-sparse-tree (&optional arg type)
13518 "Create a sparse tree, prompt for the details.
13519 This command can create sparse trees. You first need to select the type
13520 of match used to create the tree:
13522 t Show all TODO entries.
13523 T Show entries with a specific TODO keyword.
13524 m Show entries selected by a tags/property match.
13525 p Enter a property name and its value (both with completion on existing
13526 names/values) and show entries with that property.
13527 r Show entries matching a regular expression (`/' can be used as well).
13528 b Show deadlines and scheduled items before a date.
13529 a Show deadlines and scheduled items after a date.
13530 d Show deadlines due within `org-deadline-warning-days'.
13531 D Show deadlines and scheduled items between a date range."
13532 (interactive "P")
13533 (let (ans kwd value ts-type)
13534 (setq type (or type org-sparse-tree-default-date-type))
13535 (setq org-ts-type type)
13536 (message "Sparse tree: [/]regexp [t]odo [T]odo-kwd [m]atch [p]roperty\n [d]eadlines [b]efore-date [a]fter-date [D]ates range\n [c]ycle through date types: %s"
13537 (cond ((eq type 'all) "all timestamps")
13538 ((eq type 'scheduled) "only scheduled")
13539 ((eq type 'deadline) "only deadline")
13540 ((eq type 'active) "only active timestamps")
13541 ((eq type 'inactive) "only inactive timestamps")
13542 ((eq type 'scheduled-or-deadline) "scheduled/deadline")
13543 ((eq type 'closed) "with a closed time-stamp")
13544 (t "scheduled/deadline")))
13545 (setq ans (read-char-exclusive))
13546 (cond
13547 ((equal ans ?c)
13548 (org-sparse-tree
13549 arg (cadr (member type '(scheduled-or-deadline
13550 all scheduled deadline active inactive closed)))))
13551 ((equal ans ?d)
13552 (call-interactively 'org-check-deadlines))
13553 ((equal ans ?b)
13554 (call-interactively 'org-check-before-date))
13555 ((equal ans ?a)
13556 (call-interactively 'org-check-after-date))
13557 ((equal ans ?D)
13558 (call-interactively 'org-check-dates-range))
13559 ((equal ans ?t)
13560 (call-interactively 'org-show-todo-tree))
13561 ((equal ans ?T)
13562 (org-show-todo-tree '(4)))
13563 ((member ans '(?T ?m))
13564 (call-interactively 'org-match-sparse-tree))
13565 ((member ans '(?p ?P))
13566 (setq kwd (org-icompleting-read "Property: "
13567 (mapcar 'list (org-buffer-property-keys))))
13568 (setq value (org-icompleting-read "Value: "
13569 (mapcar 'list (org-property-values kwd))))
13570 (unless (string-match "\\`{.*}\\'" value)
13571 (setq value (concat "\"" value "\"")))
13572 (org-match-sparse-tree arg (concat kwd "=" value)))
13573 ((member ans '(?r ?R ?/))
13574 (call-interactively 'org-occur))
13575 (t (user-error "No such sparse tree command \"%c\"" ans)))))
13577 (defvar org-occur-highlights nil
13578 "List of overlays used for occur matches.")
13579 (make-variable-buffer-local 'org-occur-highlights)
13580 (defvar org-occur-parameters nil
13581 "Parameters of the active org-occur calls.
13582 This is a list, each call to org-occur pushes as cons cell,
13583 containing the regular expression and the callback, onto the list.
13584 The list can contain several entries if `org-occur' has been called
13585 several time with the KEEP-PREVIOUS argument. Otherwise, this list
13586 will only contain one set of parameters. When the highlights are
13587 removed (for example with `C-c C-c', or with the next edit (depending
13588 on `org-remove-highlights-with-change'), this variable is emptied
13589 as well.")
13590 (make-variable-buffer-local 'org-occur-parameters)
13592 (defun org-occur (regexp &optional keep-previous callback)
13593 "Make a compact tree which shows all matches of REGEXP.
13594 The tree will show the lines where the regexp matches, and all higher
13595 headlines above the match. It will also show the heading after the match,
13596 to make sure editing the matching entry is easy.
13597 If KEEP-PREVIOUS is non-nil, highlighting and exposing done by a previous
13598 call to `org-occur' will be kept, to allow stacking of calls to this
13599 command.
13600 If CALLBACK is non-nil, it is a function which is called to confirm
13601 that the match should indeed be shown."
13602 (interactive "sRegexp: \nP")
13603 (when (equal regexp "")
13604 (user-error "Regexp cannot be empty"))
13605 (unless keep-previous
13606 (org-remove-occur-highlights nil nil t))
13607 (push (cons regexp callback) org-occur-parameters)
13608 (let ((cnt 0))
13609 (save-excursion
13610 (goto-char (point-min))
13611 (if (or (not keep-previous) ; do not want to keep
13612 (not org-occur-highlights)) ; no previous matches
13613 ;; hide everything
13614 (org-overview))
13615 (while (re-search-forward regexp nil t)
13616 (when (or (not callback)
13617 (save-match-data (funcall callback)))
13618 (setq cnt (1+ cnt))
13619 (when org-highlight-sparse-tree-matches
13620 (org-highlight-new-match (match-beginning 0) (match-end 0)))
13621 (org-show-context 'occur-tree))))
13622 (when org-remove-highlights-with-change
13623 (org-add-hook 'before-change-functions 'org-remove-occur-highlights
13624 nil 'local))
13625 (unless org-sparse-tree-open-archived-trees
13626 (org-hide-archived-subtrees (point-min) (point-max)))
13627 (run-hooks 'org-occur-hook)
13628 (if (org-called-interactively-p 'interactive)
13629 (message "%d match(es) for regexp %s" cnt regexp))
13630 cnt))
13632 (defun org-occur-next-match (&optional n reset)
13633 "Function for `next-error-function' to find sparse tree matches.
13634 N is the number of matches to move, when negative move backwards.
13635 RESET is entirely ignored - this function always goes back to the
13636 starting point when no match is found."
13637 (let* ((limit (if (< n 0) (point-min) (point-max)))
13638 (search-func (if (< n 0)
13639 'previous-single-char-property-change
13640 'next-single-char-property-change))
13641 (n (abs n))
13642 (pos (point))
13644 (catch 'exit
13645 (while (setq p1 (funcall search-func (point) 'org-type))
13646 (when (equal p1 limit)
13647 (goto-char pos)
13648 (error "No more matches"))
13649 (when (equal (get-char-property p1 'org-type) 'org-occur)
13650 (setq n (1- n))
13651 (when (= n 0)
13652 (goto-char p1)
13653 (throw 'exit (point))))
13654 (goto-char p1))
13655 (goto-char p1)
13656 (error "No more matches"))))
13658 (defun org-show-context (&optional key)
13659 "Make sure point and context are visible.
13660 How much context is shown depends upon the variables
13661 `org-show-hierarchy-above', `org-show-following-heading',
13662 `org-show-entry-below' and `org-show-siblings'."
13663 (let ((heading-p (org-at-heading-p t))
13664 (hierarchy-p (org-get-alist-option org-show-hierarchy-above key))
13665 (following-p (org-get-alist-option org-show-following-heading key))
13666 (entry-p (org-get-alist-option org-show-entry-below key))
13667 (siblings-p (org-get-alist-option org-show-siblings key)))
13668 ;; Show heading or entry text
13669 (if (and heading-p (not entry-p))
13670 (org-flag-heading nil) ; only show the heading
13671 (and (or entry-p (outline-invisible-p) (org-invisible-p2))
13672 (org-show-hidden-entry))) ; show entire entry
13673 (when following-p
13674 ;; Show next sibling, or heading below text
13675 (save-excursion
13676 (and (if heading-p (org-goto-sibling) (outline-next-heading))
13677 (org-flag-heading nil))))
13678 (when siblings-p (org-show-siblings))
13679 (when hierarchy-p
13680 ;; show all higher headings, possibly with siblings
13681 (save-excursion
13682 (while (and (condition-case nil
13683 (progn (org-up-heading-all 1) t)
13684 (error nil))
13685 (not (bobp)))
13686 (org-flag-heading nil)
13687 (when siblings-p (org-show-siblings)))))
13688 (unless (eq key 'agenda) (org-fix-ellipsis-at-bol))))
13690 (defvar org-reveal-start-hook nil
13691 "Hook run before revealing a location.")
13693 (defun org-reveal (&optional siblings)
13694 "Show current entry, hierarchy above it, and the following headline.
13695 This can be used to show a consistent set of context around locations
13696 exposed with `org-show-hierarchy-above' or `org-show-following-heading'
13697 not t for the search context.
13699 With optional argument SIBLINGS, on each level of the hierarchy all
13700 siblings are shown. This repairs the tree structure to what it would
13701 look like when opened with hierarchical calls to `org-cycle'.
13702 With double optional argument \\[universal-argument] \\[universal-argument], \
13703 go to the parent and show the
13704 entire tree."
13705 (interactive "P")
13706 (run-hooks 'org-reveal-start-hook)
13707 (let ((org-show-hierarchy-above t)
13708 (org-show-following-heading t)
13709 (org-show-siblings (if siblings t org-show-siblings)))
13710 (org-show-context nil))
13711 (when (equal siblings '(16))
13712 (save-excursion
13713 (when (org-up-heading-safe)
13714 (org-show-subtree)
13715 (run-hook-with-args 'org-cycle-hook 'subtree)))))
13717 (defun org-highlight-new-match (beg end)
13718 "Highlight from BEG to END and mark the highlight is an occur headline."
13719 (let ((ov (make-overlay beg end)))
13720 (overlay-put ov 'face 'secondary-selection)
13721 (overlay-put ov 'org-type 'org-occur)
13722 (push ov org-occur-highlights)))
13724 (defun org-remove-occur-highlights (&optional beg end noremove)
13725 "Remove the occur highlights from the buffer.
13726 BEG and END are ignored. If NOREMOVE is nil, remove this function
13727 from the `before-change-functions' in the current buffer."
13728 (interactive)
13729 (unless org-inhibit-highlight-removal
13730 (mapc 'delete-overlay org-occur-highlights)
13731 (setq org-occur-highlights nil)
13732 (setq org-occur-parameters nil)
13733 (unless noremove
13734 (remove-hook 'before-change-functions
13735 'org-remove-occur-highlights 'local))))
13737 ;;;; Priorities
13739 (defvar org-priority-regexp ".*?\\(\\[#\\([A-Z0-9]\\)\\] ?\\)"
13740 "Regular expression matching the priority indicator.")
13742 (defvar org-remove-priority-next-time nil)
13744 (defun org-priority-up ()
13745 "Increase the priority of the current item."
13746 (interactive)
13747 (org-priority 'up))
13749 (defun org-priority-down ()
13750 "Decrease the priority of the current item."
13751 (interactive)
13752 (org-priority 'down))
13754 (defun org-priority (&optional action show)
13755 "Change the priority of an item.
13756 ACTION can be `set', `up', `down', or a character."
13757 (interactive "P")
13758 (if (equal action '(4))
13759 (org-show-priority)
13760 (unless org-enable-priority-commands
13761 (user-error "Priority commands are disabled"))
13762 (setq action (or action 'set))
13763 (let (current new news have remove)
13764 (save-excursion
13765 (org-back-to-heading t)
13766 (if (looking-at org-priority-regexp)
13767 (setq current (string-to-char (match-string 2))
13768 have t))
13769 (cond
13770 ((eq action 'remove)
13771 (setq remove t new ?\ ))
13772 ((or (eq action 'set)
13773 (if (featurep 'xemacs) (characterp action) (integerp action)))
13774 (if (not (eq action 'set))
13775 (setq new action)
13776 (message "Priority %c-%c, SPC to remove: "
13777 org-highest-priority org-lowest-priority)
13778 (save-match-data
13779 (setq new (read-char-exclusive))))
13780 (if (and (= (upcase org-highest-priority) org-highest-priority)
13781 (= (upcase org-lowest-priority) org-lowest-priority))
13782 (setq new (upcase new)))
13783 (cond ((equal new ?\ ) (setq remove t))
13784 ((or (< (upcase new) org-highest-priority) (> (upcase new) org-lowest-priority))
13785 (user-error "Priority must be between `%c' and `%c'"
13786 org-highest-priority org-lowest-priority))))
13787 ((eq action 'up)
13788 (setq new (if have
13789 (1- current) ; normal cycling
13790 ;; last priority was empty
13791 (if (eq last-command this-command)
13792 org-lowest-priority ; wrap around empty to lowest
13793 ;; default
13794 (if org-priority-start-cycle-with-default
13795 org-default-priority
13796 (1- org-default-priority))))))
13797 ((eq action 'down)
13798 (setq new (if have
13799 (1+ current) ; normal cycling
13800 ;; last priority was empty
13801 (if (eq last-command this-command)
13802 org-highest-priority ; wrap around empty to highest
13803 ;; default
13804 (if org-priority-start-cycle-with-default
13805 org-default-priority
13806 (1+ org-default-priority))))))
13807 (t (user-error "Invalid action")))
13808 (if (or (< (upcase new) org-highest-priority)
13809 (> (upcase new) org-lowest-priority))
13810 (if (and (memq action '(up down))
13811 (not have) (not (eq last-command this-command)))
13812 ;; `new' is from default priority
13813 (error
13814 "The default can not be set, see `org-default-priority' why")
13815 ;; normal cycling: `new' is beyond highest/lowest priority
13816 ;; and is wrapped around to the empty priority
13817 (setq remove t)))
13818 (setq news (format "%c" new))
13819 (if have
13820 (if remove
13821 (replace-match "" t t nil 1)
13822 (replace-match news t t nil 2))
13823 (if remove
13824 (user-error "No priority cookie found in line")
13825 (let ((case-fold-search nil))
13826 (looking-at org-todo-line-regexp))
13827 (if (match-end 2)
13828 (progn
13829 (goto-char (match-end 2))
13830 (insert " [#" news "]"))
13831 (goto-char (match-beginning 3))
13832 (insert "[#" news "] "))))
13833 (org-preserve-lc (org-set-tags nil 'align)))
13834 (if remove
13835 (message "Priority removed")
13836 (message "Priority of current item set to %s" news)))))
13838 (defun org-show-priority ()
13839 "Show the priority of the current item.
13840 This priority is composed of the main priority given with the [#A] cookies,
13841 and by additional input from the age of a schedules or deadline entry."
13842 (interactive)
13843 (let ((pri (if (eq major-mode 'org-agenda-mode)
13844 (org-get-at-bol 'priority)
13845 (save-excursion
13846 (save-match-data
13847 (beginning-of-line)
13848 (and (looking-at org-heading-regexp)
13849 (org-get-priority (match-string 0))))))))
13850 (message "Priority is %d" (if pri pri -1000))))
13852 (defun org-get-priority (s)
13853 "Find priority cookie and return priority."
13854 (save-match-data
13855 (if (functionp org-get-priority-function)
13856 (funcall org-get-priority-function)
13857 (if (not (string-match org-priority-regexp s))
13858 (* 1000 (- org-lowest-priority org-default-priority))
13859 (* 1000 (- org-lowest-priority
13860 (string-to-char (match-string 2 s))))))))
13862 ;;;; Tags
13864 (defvar org-agenda-archives-mode)
13865 (defvar org-map-continue-from nil
13866 "Position from where mapping should continue.
13867 Can be set by the action argument to `org-scan-tags' and `org-map-entries'.")
13869 (defvar org-scanner-tags nil
13870 "The current tag list while the tags scanner is running.")
13871 (defvar org-trust-scanner-tags nil
13872 "Should `org-get-tags-at' use the tags for the scanner.
13873 This is for internal dynamical scoping only.
13874 When this is non-nil, the function `org-get-tags-at' will return the value
13875 of `org-scanner-tags' instead of building the list by itself. This
13876 can lead to large speed-ups when the tags scanner is used in a file with
13877 many entries, and when the list of tags is retrieved, for example to
13878 obtain a list of properties. Building the tags list for each entry in such
13879 a file becomes an N^2 operation - but with this variable set, it scales
13880 as N.")
13882 (defun org-scan-tags (action matcher todo-only &optional start-level)
13883 "Sca headline tags with inheritance and produce output ACTION.
13885 ACTION can be `sparse-tree' to produce a sparse tree in the current buffer,
13886 or `agenda' to produce an entry list for an agenda view. It can also be
13887 a Lisp form or a function that should be called at each matched headline, in
13888 this case the return value is a list of all return values from these calls.
13890 MATCHER is a Lisp form to be evaluated, testing if a given set of tags
13891 qualifies a headline for inclusion. When TODO-ONLY is non-nil,
13892 only lines with a not-done TODO keyword are included in the output.
13893 This should be the same variable that was scoped into
13894 and set by `org-make-tags-matcher' when it constructed MATCHER.
13896 START-LEVEL can be a string with asterisks, reducing the scope to
13897 headlines matching this string."
13898 (require 'org-agenda)
13899 (let* ((re (concat "^"
13900 (if start-level
13901 ;; Get the correct level to match
13902 (concat "\\*\\{" (number-to-string start-level) "\\} ")
13903 org-outline-regexp)
13904 " *\\(\\<\\("
13905 (mapconcat 'regexp-quote org-todo-keywords-1 "\\|")
13906 (org-re "\\)\\>\\)? *\\(.*?\\)\\(:[[:alnum:]_@#%:]+:\\)?[ \t]*$")))
13907 (props (list 'face 'default
13908 'done-face 'org-agenda-done
13909 'undone-face 'default
13910 'mouse-face 'highlight
13911 'org-not-done-regexp org-not-done-regexp
13912 'org-todo-regexp org-todo-regexp
13913 'org-complex-heading-regexp org-complex-heading-regexp
13914 'help-echo
13915 (format "mouse-2 or RET jump to org file %s"
13916 (abbreviate-file-name
13917 (or (buffer-file-name (buffer-base-buffer))
13918 (buffer-name (buffer-base-buffer)))))))
13919 (org-map-continue-from nil)
13920 lspos tags tags-list
13921 (tags-alist (list (cons 0 org-file-tags)))
13922 (llast 0) rtn rtn1 level category i txt
13923 todo marker entry priority)
13924 (when (not (or (member action '(agenda sparse-tree)) (functionp action)))
13925 (setq action (list 'lambda nil action)))
13926 (save-excursion
13927 (goto-char (point-min))
13928 (when (eq action 'sparse-tree)
13929 (org-overview)
13930 (org-remove-occur-highlights))
13931 (while (let (case-fold-search)
13932 (re-search-forward re nil t))
13933 (setq org-map-continue-from nil)
13934 (catch :skip
13935 (setq todo (if (match-end 1) (org-match-string-no-properties 2))
13936 tags (if (match-end 4) (org-match-string-no-properties 4)))
13937 (goto-char (setq lspos (match-beginning 0)))
13938 (setq level (org-reduced-level (org-outline-level))
13939 category (org-get-category))
13940 (setq i llast llast level)
13941 ;; remove tag lists from same and sublevels
13942 (while (>= i level)
13943 (when (setq entry (assoc i tags-alist))
13944 (setq tags-alist (delete entry tags-alist)))
13945 (setq i (1- i)))
13946 ;; add the next tags
13947 (when tags
13948 (setq tags (org-split-string tags ":")
13949 tags-alist
13950 (cons (cons level tags) tags-alist)))
13951 ;; compile tags for current headline
13952 (setq tags-list
13953 (if org-use-tag-inheritance
13954 (apply 'append (mapcar 'cdr (reverse tags-alist)))
13955 tags)
13956 org-scanner-tags tags-list)
13957 (when org-use-tag-inheritance
13958 (setcdr (car tags-alist)
13959 (mapcar (lambda (x)
13960 (setq x (copy-sequence x))
13961 (org-add-prop-inherited x))
13962 (cdar tags-alist))))
13963 (when (and tags org-use-tag-inheritance
13964 (or (not (eq t org-use-tag-inheritance))
13965 org-tags-exclude-from-inheritance))
13966 ;; selective inheritance, remove uninherited ones
13967 (setcdr (car tags-alist)
13968 (org-remove-uninherited-tags (cdar tags-alist))))
13969 (when (and
13971 ;; eval matcher only when the todo condition is OK
13972 (and (or (not todo-only) (member todo org-not-done-keywords))
13973 (let ((case-fold-search t) (org-trust-scanner-tags t))
13974 (eval matcher)))
13976 ;; Call the skipper, but return t if it does not skip,
13977 ;; so that the `and' form continues evaluating
13978 (progn
13979 (unless (eq action 'sparse-tree) (org-agenda-skip))
13982 ;; Check if timestamps are deselecting this entry
13983 (or (not todo-only)
13984 (and (member todo org-not-done-keywords)
13985 (or (not org-agenda-tags-todo-honor-ignore-options)
13986 (not (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item))))))
13988 ;; select this headline
13989 (cond
13990 ((eq action 'sparse-tree)
13991 (and org-highlight-sparse-tree-matches
13992 (org-get-heading) (match-end 0)
13993 (org-highlight-new-match
13994 (match-beginning 1) (match-end 1)))
13995 (org-show-context 'tags-tree))
13996 ((eq action 'agenda)
13997 (setq txt (org-agenda-format-item
13999 (concat
14000 (if (eq org-tags-match-list-sublevels 'indented)
14001 (make-string (1- level) ?.) "")
14002 (org-get-heading))
14003 level category
14004 tags-list)
14005 priority (org-get-priority txt))
14006 (goto-char lspos)
14007 (setq marker (org-agenda-new-marker))
14008 (org-add-props txt props
14009 'org-marker marker 'org-hd-marker marker 'org-category category
14010 'todo-state todo
14011 'priority priority 'type "tagsmatch")
14012 (push txt rtn))
14013 ((functionp action)
14014 (setq org-map-continue-from nil)
14015 (save-excursion
14016 (setq rtn1 (funcall action))
14017 (push rtn1 rtn)))
14018 (t (user-error "Invalid action")))
14020 ;; if we are to skip sublevels, jump to end of subtree
14021 (unless org-tags-match-list-sublevels
14022 (org-end-of-subtree t)
14023 (backward-char 1))))
14024 ;; Get the correct position from where to continue
14025 (if org-map-continue-from
14026 (goto-char org-map-continue-from)
14027 (and (= (point) lspos) (end-of-line 1)))))
14028 (when (and (eq action 'sparse-tree)
14029 (not org-sparse-tree-open-archived-trees))
14030 (org-hide-archived-subtrees (point-min) (point-max)))
14031 (nreverse rtn)))
14033 (defun org-remove-uninherited-tags (tags)
14034 "Remove all tags that are not inherited from the list TAGS."
14035 (cond
14036 ((eq org-use-tag-inheritance t)
14037 (if org-tags-exclude-from-inheritance
14038 (org-delete-all org-tags-exclude-from-inheritance tags)
14039 tags))
14040 ((not org-use-tag-inheritance) nil)
14041 ((stringp org-use-tag-inheritance)
14042 (delq nil (mapcar
14043 (lambda (x)
14044 (if (and (string-match org-use-tag-inheritance x)
14045 (not (member x org-tags-exclude-from-inheritance)))
14046 x nil))
14047 tags)))
14048 ((listp org-use-tag-inheritance)
14049 (delq nil (mapcar
14050 (lambda (x)
14051 (if (member x org-use-tag-inheritance) x nil))
14052 tags)))))
14054 (defun org-match-sparse-tree (&optional todo-only match)
14055 "Create a sparse tree according to tags string MATCH.
14056 MATCH can contain positive and negative selection of tags, like
14057 \"+WORK+URGENT-WITHBOSS\".
14058 If optional argument TODO-ONLY is non-nil, only select lines that are
14059 also TODO lines."
14060 (interactive "P")
14061 (org-agenda-prepare-buffers (list (current-buffer)))
14062 (org-scan-tags 'sparse-tree (cdr (org-make-tags-matcher match)) todo-only))
14064 (defalias 'org-tags-sparse-tree 'org-match-sparse-tree)
14066 (defvar org-cached-props nil)
14067 (defun org-cached-entry-get (pom property)
14068 (if (or (eq t org-use-property-inheritance)
14069 (and (stringp org-use-property-inheritance)
14070 (string-match org-use-property-inheritance property))
14071 (and (listp org-use-property-inheritance)
14072 (member property org-use-property-inheritance)))
14073 ;; Caching is not possible, check it directly
14074 (org-entry-get pom property 'inherit)
14075 ;; Get all properties, so that we can do complicated checks easily
14076 (cdr (assoc property (or org-cached-props
14077 (setq org-cached-props
14078 (org-entry-properties pom)))))))
14080 (defun org-global-tags-completion-table (&optional files)
14081 "Return the list of all tags in all agenda buffer/files.
14082 Optional FILES argument is a list of files which can be used
14083 instead of the agenda files."
14084 (save-excursion
14085 (org-uniquify
14086 (delq nil
14087 (apply 'append
14088 (mapcar
14089 (lambda (file)
14090 (set-buffer (find-file-noselect file))
14091 (append (org-get-buffer-tags)
14092 (mapcar (lambda (x) (if (stringp (car-safe x))
14093 (list (car-safe x)) nil))
14094 org-tag-alist)))
14095 (if (and files (car files))
14096 files
14097 (org-agenda-files))))))))
14099 (defun org-make-tags-matcher (match)
14100 "Create the TAGS/TODO matcher form for the selection string MATCH.
14102 The variable `todo-only' is scoped dynamically into this function.
14103 It will be set to t if the matcher restricts matching to TODO entries,
14104 otherwise will not be touched.
14106 Returns a cons of the selection string MATCH and the constructed
14107 lisp form implementing the matcher. The matcher is to be evaluated
14108 at an Org entry, with point on the headline, and returns t if the
14109 entry matches the selection string MATCH. The returned lisp form
14110 references two variables with information about the entry, which
14111 must be bound around the form's evaluation: todo, the TODO keyword
14112 at the entry (or nil of none); and tags-list, the list of all tags
14113 at the entry including inherited ones. Additionally, the category
14114 of the entry (if any) must be specified as the text property
14115 'org-category on the headline.
14117 See also `org-scan-tags'.
14119 (declare (special todo-only))
14120 (unless (boundp 'todo-only)
14121 (error "`org-make-tags-matcher' expects todo-only to be scoped in"))
14122 (unless match
14123 ;; Get a new match request, with completion against the global
14124 ;; tags table and the local tags in current buffer
14125 (let ((org-last-tags-completion-table
14126 (org-uniquify
14127 (delq nil (append (org-get-buffer-tags)
14128 (org-global-tags-completion-table))))))
14129 (setq match (org-completing-read-no-i
14130 "Match: " 'org-tags-completion-function nil nil nil
14131 'org-tags-history))))
14133 ;; Parse the string and create a lisp form
14134 (let ((match0 match)
14135 (re (org-re "^&?\\([-+:]\\)?\\({[^}]+}\\|LEVEL\\([<=>]\\{1,2\\}\\)\\([0-9]+\\)\\|\\(\\(?:[[:alnum:]_]+\\(?:\\\\-\\)*\\)+\\)\\([<>=]\\{1,2\\}\\)\\({[^}]+}\\|\"[^\"]*\"\\|-?[.0-9]+\\(?:[eE][-+]?[0-9]+\\)?\\)\\|[[:alnum:]_@#%]+\\)"))
14136 minus tag mm
14137 tagsmatch todomatch tagsmatcher todomatcher kwd matcher
14138 orterms term orlist re-p str-p level-p level-op time-p
14139 prop-p pn pv po gv rest (start 0) (ss 0))
14140 ;; Expand group tags
14141 (setq match (org-tags-expand match))
14143 ;; Check if there is a TODO part of this match, which would be the
14144 ;; part after a "/". TO make sure that this slash is not part of
14145 ;; a property value to be matched against, we also check that there
14146 ;; is no " after that slash.
14147 ;; First, find the last slash
14148 (while (string-match "/+" match ss)
14149 (setq start (match-beginning 0) ss (match-end 0)))
14150 (if (and (string-match "/+" match start)
14151 (not (save-match-data (string-match "\"" match start))))
14152 ;; match contains also a todo-matching request
14153 (progn
14154 (setq tagsmatch (substring match 0 (match-beginning 0))
14155 todomatch (substring match (match-end 0)))
14156 (if (string-match "^!" todomatch)
14157 (setq todo-only t todomatch (substring todomatch 1)))
14158 (if (string-match "^\\s-*$" todomatch)
14159 (setq todomatch nil)))
14160 ;; only matching tags
14161 (setq tagsmatch match todomatch nil))
14163 ;; Make the tags matcher
14164 (if (or (not tagsmatch) (not (string-match "\\S-" tagsmatch)))
14165 (setq tagsmatcher t)
14166 (setq orterms (org-split-string tagsmatch "|") orlist nil)
14167 (while (setq term (pop orterms))
14168 (while (and (equal (substring term -1) "\\") orterms)
14169 (setq term (concat term "|" (pop orterms)))) ; repair bad split
14170 (while (string-match re term)
14171 (setq rest (substring term (match-end 0))
14172 minus (and (match-end 1)
14173 (equal (match-string 1 term) "-"))
14174 tag (save-match-data (replace-regexp-in-string
14175 "\\\\-" "-"
14176 (match-string 2 term)))
14177 re-p (equal (string-to-char tag) ?{)
14178 level-p (match-end 4)
14179 prop-p (match-end 5)
14180 mm (cond
14181 (re-p `(org-match-any-p ,(substring tag 1 -1) tags-list))
14182 (level-p
14183 (setq level-op (org-op-to-function (match-string 3 term)))
14184 `(,level-op level ,(string-to-number
14185 (match-string 4 term))))
14186 (prop-p
14187 (setq pn (match-string 5 term)
14188 po (match-string 6 term)
14189 pv (match-string 7 term)
14190 re-p (equal (string-to-char pv) ?{)
14191 str-p (equal (string-to-char pv) ?\")
14192 time-p (save-match-data
14193 (string-match "^\"[[<].*[]>]\"$" pv))
14194 pv (if (or re-p str-p) (substring pv 1 -1) pv))
14195 (if time-p (setq pv (org-matcher-time pv)))
14196 (setq po (org-op-to-function po (if time-p 'time str-p)))
14197 (cond
14198 ((equal pn "CATEGORY")
14199 (setq gv '(get-text-property (point) 'org-category)))
14200 ((equal pn "TODO")
14201 (setq gv 'todo))
14203 (setq gv `(org-cached-entry-get nil ,pn))))
14204 (if re-p
14205 (if (eq po 'org<>)
14206 `(not (string-match ,pv (or ,gv "")))
14207 `(string-match ,pv (or ,gv "")))
14208 (if str-p
14209 `(,po (or ,gv "") ,pv)
14210 `(,po (string-to-number (or ,gv ""))
14211 ,(string-to-number pv) ))))
14212 (t `(member ,tag tags-list)))
14213 mm (if minus (list 'not mm) mm)
14214 term rest)
14215 (push mm tagsmatcher))
14216 (push (if (> (length tagsmatcher) 1)
14217 (cons 'and tagsmatcher)
14218 (car tagsmatcher))
14219 orlist)
14220 (setq tagsmatcher nil))
14221 (setq tagsmatcher (if (> (length orlist) 1) (cons 'or orlist) (car orlist)))
14222 (setq tagsmatcher
14223 (list 'progn '(setq org-cached-props nil) tagsmatcher)))
14224 ;; Make the todo matcher
14225 (if (or (not todomatch) (not (string-match "\\S-" todomatch)))
14226 (setq todomatcher t)
14227 (setq orterms (org-split-string todomatch "|") orlist nil)
14228 (while (setq term (pop orterms))
14229 (while (string-match re term)
14230 (setq minus (and (match-end 1)
14231 (equal (match-string 1 term) "-"))
14232 kwd (match-string 2 term)
14233 re-p (equal (string-to-char kwd) ?{)
14234 term (substring term (match-end 0))
14235 mm (if re-p
14236 `(string-match ,(substring kwd 1 -1) todo)
14237 (list 'equal 'todo kwd))
14238 mm (if minus (list 'not mm) mm))
14239 (push mm todomatcher))
14240 (push (if (> (length todomatcher) 1)
14241 (cons 'and todomatcher)
14242 (car todomatcher))
14243 orlist)
14244 (setq todomatcher nil))
14245 (setq todomatcher (if (> (length orlist) 1)
14246 (cons 'or orlist) (car orlist))))
14248 ;; Return the string and lisp forms of the matcher
14249 (setq matcher (if todomatcher
14250 (list 'and tagsmatcher todomatcher)
14251 tagsmatcher))
14252 (when todo-only
14253 (setq matcher (list 'and '(member todo org-not-done-keywords)
14254 matcher)))
14255 (cons match0 matcher)))
14257 (defun org-tags-expand (match &optional single-as-list downcased)
14258 "Expand group tags in MATCH.
14260 This replaces every group tag in MATCH with a regexp tag search.
14261 For example, a group tag \"Work\" defined as { Work : Lab Conf }
14262 will be replaced like this:
14264 Work => {\\(?:Work\\|Lab\\|Conf\\)}
14265 +Work => +{\\(?:Work\\|Lab\\|Conf\\)}
14266 -Work => -{\\(?:Work\\|Lab\\|Conf\\)}
14268 Replacing by a regexp preserves the structure of the match.
14269 E.g., this expansion
14271 Work|Home => {\\(?:Work\\|Lab\\|Conf\\}|Home
14273 will match anything tagged with \"Lab\" and \"Home\", or tagged
14274 with \"Conf\" and \"Home\" or tagged with \"Work\" and \"home\".
14276 When the optional argument SINGLE-AS-LIST is non-nil, MATCH is
14277 assumed to be a single group tag, and the function will return
14278 the list of tags in this group.
14280 When DOWNCASE is non-nil, expand downcased TAGS."
14281 (if org-group-tags
14282 (let* ((case-fold-search t)
14283 (stable org-mode-syntax-table)
14284 (tal (or org-tag-groups-alist-for-agenda
14285 org-tag-groups-alist))
14286 (tal (if downcased
14287 (mapcar (lambda(tg) (mapcar 'downcase tg)) tal) tal))
14288 (tml (mapcar 'car tal))
14289 (rtnmatch match) rpl)
14290 ;; @ and _ are allowed as word-components in tags
14291 (modify-syntax-entry ?@ "w" stable)
14292 (modify-syntax-entry ?_ "w" stable)
14293 (while (and tml
14294 (with-syntax-table stable
14295 (string-match
14296 (concat "\\(?1:[+-]?\\)\\(?2:\\<"
14297 (regexp-opt tml) "\\>\\)") rtnmatch)))
14298 (let* ((dir (match-string 1 rtnmatch))
14299 (tag (match-string 2 rtnmatch))
14300 (tag (if downcased (downcase tag) tag)))
14301 (setq tml (delete tag tml))
14302 (when (not (get-text-property 0 'grouptag (match-string 2 rtnmatch)))
14303 (setq rpl (append (org-uniquify rpl) (assoc tag tal)))
14304 (setq rpl (concat dir "{\\<" (regexp-opt rpl) "\\>}"))
14305 (if (stringp rpl) (org-add-props rpl '(grouptag t)))
14306 (setq rtnmatch (replace-match rpl t t rtnmatch)))))
14307 (if single-as-list
14308 (or (reverse rpl) (list rtnmatch))
14309 rtnmatch))
14310 (if single-as-list (list (if downcased (downcase match) match))
14311 match)))
14313 (defun org-op-to-function (op &optional stringp)
14314 "Turn an operator into the appropriate function."
14315 (setq op
14316 (cond
14317 ((equal op "<" ) '(< string< org-time<))
14318 ((equal op ">" ) '(> org-string> org-time>))
14319 ((member op '("<=" "=<")) '(<= org-string<= org-time<=))
14320 ((member op '(">=" "=>")) '(>= org-string>= org-time>=))
14321 ((member op '("=" "==")) '(= string= org-time=))
14322 ((member op '("<>" "!=")) '(org<> org-string<> org-time<>))))
14323 (nth (if (eq stringp 'time) 2 (if stringp 1 0)) op))
14325 (defun org<> (a b) (not (= a b)))
14326 (defun org-string<= (a b) (or (string= a b) (string< a b)))
14327 (defun org-string>= (a b) (not (string< a b)))
14328 (defun org-string> (a b) (and (not (string= a b)) (not (string< a b))))
14329 (defun org-string<> (a b) (not (string= a b)))
14330 (defun org-time= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (= a b)))
14331 (defun org-time< (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (< a b)))
14332 (defun org-time<= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (<= a b)))
14333 (defun org-time> (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (> a b)))
14334 (defun org-time>= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (>= a b)))
14335 (defun org-time<> (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (org<> a b)))
14336 (defun org-2ft (s)
14337 "Convert S to a floating point time.
14338 If S is already a number, just return it. If it is a string, parse
14339 it as a time string and apply `float-time' to it. If S is nil, just return 0."
14340 (cond
14341 ((numberp s) s)
14342 ((stringp s)
14343 (condition-case nil
14344 (float-time (apply 'encode-time (org-parse-time-string s)))
14345 (error 0.)))
14346 (t 0.)))
14348 (defun org-time-today ()
14349 "Time in seconds today at 0:00.
14350 Returns the float number of seconds since the beginning of the
14351 epoch to the beginning of today (00:00)."
14352 (float-time (apply 'encode-time
14353 (append '(0 0 0) (nthcdr 3 (decode-time))))))
14355 (defun org-matcher-time (s)
14356 "Interpret a time comparison value."
14357 (save-match-data
14358 (cond
14359 ((string= s "<now>") (float-time))
14360 ((string= s "<today>") (org-time-today))
14361 ((string= s "<tomorrow>") (+ 86400.0 (org-time-today)))
14362 ((string= s "<yesterday>") (- (org-time-today) 86400.0))
14363 ((string-match "^<\\([-+][0-9]+\\)\\([hdwmy]\\)>$" s)
14364 (+ (org-time-today)
14365 (* (string-to-number (match-string 1 s))
14366 (cdr (assoc (match-string 2 s)
14367 '(("d" . 86400.0) ("w" . 604800.0)
14368 ("m" . 2678400.0) ("y" . 31557600.0)))))))
14369 (t (org-2ft s)))))
14371 (defun org-match-any-p (re list)
14372 "Does re match any element of list?"
14373 (setq list (mapcar (lambda (x) (string-match re x)) list))
14374 (delq nil list))
14376 (defvar org-add-colon-after-tag-completion nil) ;; dynamically scoped param
14377 (defvar org-tags-overlay (make-overlay 1 1))
14378 (org-detach-overlay org-tags-overlay)
14380 (defun org-get-local-tags-at (&optional pos)
14381 "Get a list of tags defined in the current headline."
14382 (org-get-tags-at pos 'local))
14384 (defun org-get-local-tags ()
14385 "Get a list of tags defined in the current headline."
14386 (org-get-tags-at nil 'local))
14388 (defun org-get-tags-at (&optional pos local)
14389 "Get a list of all headline tags applicable at POS.
14390 POS defaults to point. If tags are inherited, the list contains
14391 the targets in the same sequence as the headlines appear, i.e.
14392 the tags of the current headline come last.
14393 When LOCAL is non-nil, only return tags from the current headline,
14394 ignore inherited ones."
14395 (interactive)
14396 (if (and org-trust-scanner-tags
14397 (or (not pos) (equal pos (point)))
14398 (not local))
14399 org-scanner-tags
14400 (let (tags ltags lastpos parent)
14401 (save-excursion
14402 (save-restriction
14403 (widen)
14404 (goto-char (or pos (point)))
14405 (save-match-data
14406 (catch 'done
14407 (condition-case nil
14408 (progn
14409 (org-back-to-heading t)
14410 (while (not (equal lastpos (point)))
14411 (setq lastpos (point))
14412 (when (looking-at
14413 (org-re "[^\r\n]+?:\\([[:alnum:]_@#%:]+\\):[ \t]*$"))
14414 (setq ltags (org-split-string
14415 (org-match-string-no-properties 1) ":"))
14416 (when parent
14417 (setq ltags (mapcar 'org-add-prop-inherited ltags)))
14418 (setq tags (append
14419 (if parent
14420 (org-remove-uninherited-tags ltags)
14421 ltags)
14422 tags)))
14423 (or org-use-tag-inheritance (throw 'done t))
14424 (if local (throw 'done t))
14425 (or (org-up-heading-safe) (error nil))
14426 (setq parent t)))
14427 (error nil)))))
14428 (if local
14429 tags
14430 (reverse (delete-dups
14431 (reverse (append
14432 (org-remove-uninherited-tags
14433 org-file-tags) tags)))))))))
14435 (defun org-add-prop-inherited (s)
14436 (add-text-properties 0 (length s) '(inherited t) s)
14439 (defun org-toggle-tag (tag &optional onoff)
14440 "Toggle the tag TAG for the current line.
14441 If ONOFF is `on' or `off', don't toggle but set to this state."
14442 (let (res current)
14443 (save-excursion
14444 (org-back-to-heading t)
14445 (if (re-search-forward (org-re "[ \t]:\\([[:alnum:]_@#%:]+\\):[ \t]*$")
14446 (point-at-eol) t)
14447 (progn
14448 (setq current (match-string 1))
14449 (replace-match ""))
14450 (setq current ""))
14451 (setq current (nreverse (org-split-string current ":")))
14452 (cond
14453 ((eq onoff 'on)
14454 (setq res t)
14455 (or (member tag current) (push tag current)))
14456 ((eq onoff 'off)
14457 (or (not (member tag current)) (setq current (delete tag current))))
14458 (t (if (member tag current)
14459 (setq current (delete tag current))
14460 (setq res t)
14461 (push tag current))))
14462 (end-of-line 1)
14463 (if current
14464 (progn
14465 (insert " :" (mapconcat 'identity (nreverse current) ":") ":")
14466 (org-set-tags nil t))
14467 (delete-horizontal-space))
14468 (run-hooks 'org-after-tags-change-hook))
14469 res))
14471 (defun org-align-tags-here (to-col)
14472 ;; Assumes that this is a headline
14473 (let ((pos (point)) (col (current-column)) ncol tags-l p)
14474 (beginning-of-line 1)
14475 (if (and (looking-at (org-re ".*?\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
14476 (< pos (match-beginning 2)))
14477 (progn
14478 (setq tags-l (- (match-end 2) (match-beginning 2)))
14479 (goto-char (match-beginning 1))
14480 (insert " ")
14481 (delete-region (point) (1+ (match-beginning 2)))
14482 (setq ncol (max (current-column)
14483 (1+ col)
14484 (if (> to-col 0)
14485 to-col
14486 (- (abs to-col) tags-l))))
14487 (setq p (point))
14488 (insert (make-string (- ncol (current-column)) ?\ ))
14489 (setq ncol (current-column))
14490 (when indent-tabs-mode (tabify p (point-at-eol)))
14491 (org-move-to-column (min ncol col) t nil t))
14492 (goto-char pos))))
14494 (defun org-set-tags-command (&optional arg just-align)
14495 "Call the set-tags command for the current entry."
14496 (interactive "P")
14497 (if (or (org-at-heading-p) (and arg (org-before-first-heading-p)))
14498 (org-set-tags arg just-align)
14499 (save-excursion
14500 (unless (and (org-region-active-p)
14501 org-loop-over-headlines-in-active-region)
14502 (org-back-to-heading t))
14503 (org-set-tags arg just-align))))
14505 (defun org-set-tags-to (data)
14506 "Set the tags of the current entry to DATA, replacing the current tags.
14507 DATA may be a tags string like :aa:bb:cc:, or a list of tags.
14508 If DATA is nil or the empty string, any tags will be removed."
14509 (interactive "sTags: ")
14510 (setq data
14511 (cond
14512 ((eq data nil) "")
14513 ((equal data "") "")
14514 ((stringp data)
14515 (concat ":" (mapconcat 'identity (org-split-string data ":+") ":")
14516 ":"))
14517 ((listp data)
14518 (concat ":" (mapconcat 'identity data ":") ":"))))
14519 (when data
14520 (save-excursion
14521 (org-back-to-heading t)
14522 (when (looking-at org-complex-heading-regexp)
14523 (if (match-end 5)
14524 (progn
14525 (goto-char (match-beginning 5))
14526 (insert data)
14527 (delete-region (point) (point-at-eol))
14528 (org-set-tags nil 'align))
14529 (goto-char (point-at-eol))
14530 (insert " " data)
14531 (org-set-tags nil 'align)))
14532 (beginning-of-line 1)
14533 (if (looking-at ".*?\\([ \t]+\\)$")
14534 (delete-region (match-beginning 1) (match-end 1))))))
14536 (defun org-align-all-tags ()
14537 "Align the tags i all headings."
14538 (interactive)
14539 (save-excursion
14540 (or (ignore-errors (org-back-to-heading t))
14541 (outline-next-heading))
14542 (if (org-at-heading-p)
14543 (org-set-tags t)
14544 (message "No headings"))))
14546 (defvar org-indent-indentation-per-level)
14547 (defun org-set-tags (&optional arg just-align)
14548 "Set the tags for the current headline.
14549 With prefix ARG, realign all tags in headings in the current buffer."
14550 (interactive "P")
14551 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
14552 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
14553 'region-start-level 'region))
14554 org-loop-over-headlines-in-active-region)
14555 (org-map-entries
14556 ;; We don't use ARG and JUST-ALIGN here these args are not
14557 ;; useful when looping over headlines
14558 `(org-set-tags)
14559 org-loop-over-headlines-in-active-region
14560 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
14561 (let* ((re org-outline-regexp-bol)
14562 (current (unless arg (org-get-tags-string)))
14563 (col (current-column))
14564 (org-setting-tags t)
14565 table current-tags inherited-tags ; computed below when needed
14566 tags p0 c0 c1 rpl di tc level)
14567 (if arg
14568 (save-excursion
14569 (goto-char (point-min))
14570 (let ((buffer-invisibility-spec (org-inhibit-invisibility)))
14571 (while (re-search-forward re nil t)
14572 (org-set-tags nil t)
14573 (end-of-line 1)))
14574 (message "All tags realigned to column %d" org-tags-column))
14575 (if just-align
14576 (setq tags current)
14577 ;; Get a new set of tags from the user
14578 (save-excursion
14579 (setq table (append org-tag-persistent-alist
14580 (or org-tag-alist (org-get-buffer-tags))
14581 (and
14582 org-complete-tags-always-offer-all-agenda-tags
14583 (org-global-tags-completion-table
14584 (org-agenda-files))))
14585 org-last-tags-completion-table table
14586 current-tags (org-split-string current ":")
14587 inherited-tags (nreverse
14588 (nthcdr (length current-tags)
14589 (nreverse (org-get-tags-at))))
14590 tags
14591 (if (or (eq t org-use-fast-tag-selection)
14592 (and org-use-fast-tag-selection
14593 (delq nil (mapcar 'cdr table))))
14594 (org-fast-tag-selection
14595 current-tags inherited-tags table
14596 (if org-fast-tag-selection-include-todo
14597 org-todo-key-alist))
14598 (let ((org-add-colon-after-tag-completion (< 1 (length table))))
14599 (org-trim
14600 (org-icompleting-read "Tags: "
14601 'org-tags-completion-function
14602 nil nil current 'org-tags-history))))))
14603 (while (string-match "[-+&]+" tags)
14604 ;; No boolean logic, just a list
14605 (setq tags (replace-match ":" t t tags))))
14607 (setq tags (replace-regexp-in-string "[,]" ":" tags))
14609 (if org-tags-sort-function
14610 (setq tags (mapconcat 'identity
14611 (sort (org-split-string
14612 tags (org-re "[^[:alnum:]_@#%]+"))
14613 org-tags-sort-function) ":")))
14615 (if (string-match "\\`[\t ]*\\'" tags)
14616 (setq tags "")
14617 (unless (string-match ":$" tags) (setq tags (concat tags ":")))
14618 (unless (string-match "^:" tags) (setq tags (concat ":" tags))))
14620 ;; Insert new tags at the correct column
14621 (beginning-of-line 1)
14622 (setq level (or (and (looking-at org-outline-regexp)
14623 (- (match-end 0) (point) 1))
14625 (cond
14626 ((and (equal current "") (equal tags "")))
14627 ((re-search-forward
14628 (concat "\\([ \t]*" (regexp-quote current) "\\)[ \t]*$")
14629 (point-at-eol) t)
14630 (if (equal tags "")
14631 (setq rpl "")
14632 (goto-char (match-beginning 0))
14633 (setq c0 (current-column)
14634 ;; compute offset for the case of org-indent-mode active
14635 di (if org-indent-mode
14636 (* (1- org-indent-indentation-per-level) (1- level))
14638 p0 (if (equal (char-before) ?*) (1+ (point)) (point))
14639 tc (+ org-tags-column (if (> org-tags-column 0) (- di) di))
14640 c1 (max (1+ c0) (if (> tc 0) tc (- (- tc) (string-width tags))))
14641 rpl (concat (make-string (max 0 (- c1 c0)) ?\ ) tags)))
14642 (replace-match rpl t t)
14643 (and (not (featurep 'xemacs)) c0 indent-tabs-mode (tabify p0 (point)))
14644 tags)
14645 (t (error "Tags alignment failed")))
14646 (org-move-to-column col)
14647 (unless just-align
14648 (run-hooks 'org-after-tags-change-hook))))))
14650 (defun org-change-tag-in-region (beg end tag off)
14651 "Add or remove TAG for each entry in the region.
14652 This works in the agenda, and also in an org-mode buffer."
14653 (interactive
14654 (list (region-beginning) (region-end)
14655 (let ((org-last-tags-completion-table
14656 (if (derived-mode-p 'org-mode)
14657 (org-uniquify
14658 (delq nil (append (org-get-buffer-tags)
14659 (org-global-tags-completion-table))))
14660 (org-global-tags-completion-table))))
14661 (org-icompleting-read
14662 "Tag: " 'org-tags-completion-function nil nil nil
14663 'org-tags-history))
14664 (progn
14665 (message "[s]et or [r]emove? ")
14666 (equal (read-char-exclusive) ?r))))
14667 (if (fboundp 'deactivate-mark) (deactivate-mark))
14668 (let ((agendap (equal major-mode 'org-agenda-mode))
14669 l1 l2 m buf pos newhead (cnt 0))
14670 (goto-char end)
14671 (setq l2 (1- (org-current-line)))
14672 (goto-char beg)
14673 (setq l1 (org-current-line))
14674 (loop for l from l1 to l2 do
14675 (org-goto-line l)
14676 (setq m (get-text-property (point) 'org-hd-marker))
14677 (when (or (and (derived-mode-p 'org-mode) (org-at-heading-p))
14678 (and agendap m))
14679 (setq buf (if agendap (marker-buffer m) (current-buffer))
14680 pos (if agendap m (point)))
14681 (with-current-buffer buf
14682 (save-excursion
14683 (save-restriction
14684 (goto-char pos)
14685 (setq cnt (1+ cnt))
14686 (org-toggle-tag tag (if off 'off 'on))
14687 (setq newhead (org-get-heading)))))
14688 (and agendap (org-agenda-change-all-lines newhead m))))
14689 (message "Tag :%s: %s in %d headings" tag (if off "removed" "set") cnt)))
14691 (defun org-tags-completion-function (string predicate &optional flag)
14692 (let (s1 s2 rtn (ctable org-last-tags-completion-table)
14693 (confirm (lambda (x) (stringp (car x)))))
14694 (if (string-match "^\\(.*[-+:&,|]\\)\\([^-+:&,|]*\\)$" string)
14695 (setq s1 (match-string 1 string)
14696 s2 (match-string 2 string))
14697 (setq s1 "" s2 string))
14698 (cond
14699 ((eq flag nil)
14700 ;; try completion
14701 (setq rtn (try-completion s2 ctable confirm))
14702 (if (stringp rtn)
14703 (setq rtn
14704 (concat s1 s2 (substring rtn (length s2))
14705 (if (and org-add-colon-after-tag-completion
14706 (assoc rtn ctable))
14707 ":" ""))))
14708 rtn)
14709 ((eq flag t)
14710 ;; all-completions
14711 (all-completions s2 ctable confirm))
14712 ((eq flag 'lambda)
14713 ;; exact match?
14714 (assoc s2 ctable)))))
14716 (defun org-fast-tag-insert (kwd tags face &optional end)
14717 "Insert KDW, and the TAGS, the latter with face FACE.
14718 Also insert END."
14719 (insert (format "%-12s" (concat kwd ":"))
14720 (org-add-props (mapconcat 'identity tags " ") nil 'face face)
14721 (or end "")))
14723 (defun org-fast-tag-show-exit (flag)
14724 (save-excursion
14725 (org-goto-line 3)
14726 (if (re-search-forward "[ \t]+Next change exits" (point-at-eol) t)
14727 (replace-match ""))
14728 (when flag
14729 (end-of-line 1)
14730 (org-move-to-column (- (window-width) 19) t)
14731 (insert (org-add-props " Next change exits" nil 'face 'org-warning)))))
14733 (defun org-set-current-tags-overlay (current prefix)
14734 "Add an overlay to CURRENT tag with PREFIX."
14735 (let ((s (concat ":" (mapconcat 'identity current ":") ":")))
14736 (if (featurep 'xemacs)
14737 (org-overlay-display org-tags-overlay (concat prefix s)
14738 'secondary-selection)
14739 (put-text-property 0 (length s) 'face '(secondary-selection org-tag) s)
14740 (org-overlay-display org-tags-overlay (concat prefix s)))))
14742 (defvar org-last-tag-selection-key nil)
14743 (defun org-fast-tag-selection (current inherited table &optional todo-table)
14744 "Fast tag selection with single keys.
14745 CURRENT is the current list of tags in the headline, INHERITED is the
14746 list of inherited tags, and TABLE is an alist of tags and corresponding keys,
14747 possibly with grouping information. TODO-TABLE is a similar table with
14748 TODO keywords, should these have keys assigned to them.
14749 If the keys are nil, a-z are automatically assigned.
14750 Returns the new tags string, or nil to not change the current settings."
14751 (let* ((fulltable (append table todo-table))
14752 (maxlen (apply 'max (mapcar
14753 (lambda (x)
14754 (if (stringp (car x)) (string-width (car x)) 0))
14755 fulltable)))
14756 (buf (current-buffer))
14757 (expert (eq org-fast-tag-selection-single-key 'expert))
14758 (buffer-tags nil)
14759 (fwidth (+ maxlen 3 1 3))
14760 (ncol (/ (- (window-width) 4) fwidth))
14761 (i-face 'org-done)
14762 (c-face 'org-todo)
14763 tg cnt e c char c1 c2 ntable tbl rtn
14764 ov-start ov-end ov-prefix
14765 (exit-after-next org-fast-tag-selection-single-key)
14766 (done-keywords org-done-keywords)
14767 groups ingroup)
14768 (save-excursion
14769 (beginning-of-line 1)
14770 (if (looking-at
14771 (org-re ".*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
14772 (setq ov-start (match-beginning 1)
14773 ov-end (match-end 1)
14774 ov-prefix "")
14775 (setq ov-start (1- (point-at-eol))
14776 ov-end (1+ ov-start))
14777 (skip-chars-forward "^\n\r")
14778 (setq ov-prefix
14779 (concat
14780 (buffer-substring (1- (point)) (point))
14781 (if (> (current-column) org-tags-column)
14783 (make-string (- org-tags-column (current-column)) ?\ ))))))
14784 (move-overlay org-tags-overlay ov-start ov-end)
14785 (save-window-excursion
14786 (if expert
14787 (set-buffer (get-buffer-create " *Org tags*"))
14788 (delete-other-windows)
14789 (split-window-vertically)
14790 (org-switch-to-buffer-other-window (get-buffer-create " *Org tags*")))
14791 (erase-buffer)
14792 (org-set-local 'org-done-keywords done-keywords)
14793 (org-fast-tag-insert "Inherited" inherited i-face "\n")
14794 (org-fast-tag-insert "Current" current c-face "\n\n")
14795 (org-fast-tag-show-exit exit-after-next)
14796 (org-set-current-tags-overlay current ov-prefix)
14797 (setq tbl fulltable char ?a cnt 0)
14798 (while (setq e (pop tbl))
14799 (cond
14800 ((equal (car e) :startgroup)
14801 (push '() groups) (setq ingroup t)
14802 (when (not (= cnt 0))
14803 (setq cnt 0)
14804 (insert "\n"))
14805 (insert (if (cdr e) (format "%s: " (cdr e)) "") "{ "))
14806 ((equal (car e) :endgroup)
14807 (setq ingroup nil cnt 0)
14808 (insert "}" (if (cdr e) (format " (%s) " (cdr e)) "") "\n"))
14809 ((equal e '(:newline))
14810 (when (not (= cnt 0))
14811 (setq cnt 0)
14812 (insert "\n")
14813 (setq e (car tbl))
14814 (while (equal (car tbl) '(:newline))
14815 (insert "\n")
14816 (setq tbl (cdr tbl)))))
14817 ((equal e '(:grouptags)) nil)
14819 (setq tg (copy-sequence (car e)) c2 nil)
14820 (if (cdr e)
14821 (setq c (cdr e))
14822 ;; automatically assign a character.
14823 (setq c1 (string-to-char
14824 (downcase (substring
14825 tg (if (= (string-to-char tg) ?@) 1 0)))))
14826 (if (or (rassoc c1 ntable) (rassoc c1 table))
14827 (while (or (rassoc char ntable) (rassoc char table))
14828 (setq char (1+ char)))
14829 (setq c2 c1))
14830 (setq c (or c2 char)))
14831 (if ingroup (push tg (car groups)))
14832 (setq tg (org-add-props tg nil 'face
14833 (cond
14834 ((not (assoc tg table))
14835 (org-get-todo-face tg))
14836 ((member tg current) c-face)
14837 ((member tg inherited) i-face))))
14838 (if (equal (caar tbl) :grouptags)
14839 (org-add-props tg nil 'face 'org-tag-group))
14840 (if (and (= cnt 0) (not ingroup)) (insert " "))
14841 (insert "[" c "] " tg (make-string
14842 (- fwidth 4 (length tg)) ?\ ))
14843 (push (cons tg c) ntable)
14844 (when (= (setq cnt (1+ cnt)) ncol)
14845 (insert "\n")
14846 (if ingroup (insert " "))
14847 (setq cnt 0)))))
14848 (setq ntable (nreverse ntable))
14849 (insert "\n")
14850 (goto-char (point-min))
14851 (if (not expert) (org-fit-window-to-buffer))
14852 (setq rtn
14853 (catch 'exit
14854 (while t
14855 (message "[a-z..]:Toggle [SPC]:clear [RET]:accept [TAB]:free [!] %sgroups%s"
14856 (if (not groups) "no " "")
14857 (if expert " [C-c]:window" (if exit-after-next " [C-c]:single" " [C-c]:multi")))
14858 (setq c (let ((inhibit-quit t)) (read-char-exclusive)))
14859 (setq org-last-tag-selection-key c)
14860 (cond
14861 ((= c ?\r) (throw 'exit t))
14862 ((= c ?!)
14863 (setq groups (not groups))
14864 (goto-char (point-min))
14865 (while (re-search-forward "[{}]" nil t) (replace-match " ")))
14866 ((= c ?\C-c)
14867 (if (not expert)
14868 (org-fast-tag-show-exit
14869 (setq exit-after-next (not exit-after-next)))
14870 (setq expert nil)
14871 (delete-other-windows)
14872 (set-window-buffer (split-window-vertically) " *Org tags*")
14873 (org-switch-to-buffer-other-window " *Org tags*")
14874 (org-fit-window-to-buffer)))
14875 ((or (= c ?\C-g)
14876 (and (= c ?q) (not (rassoc c ntable))))
14877 (org-detach-overlay org-tags-overlay)
14878 (setq quit-flag t))
14879 ((= c ?\ )
14880 (setq current nil)
14881 (if exit-after-next (setq exit-after-next 'now)))
14882 ((= c ?\t)
14883 (condition-case nil
14884 (setq tg (org-icompleting-read
14885 "Tag: "
14886 (or buffer-tags
14887 (with-current-buffer buf
14888 (org-get-buffer-tags)))))
14889 (quit (setq tg "")))
14890 (when (string-match "\\S-" tg)
14891 (add-to-list 'buffer-tags (list tg))
14892 (if (member tg current)
14893 (setq current (delete tg current))
14894 (push tg current)))
14895 (if exit-after-next (setq exit-after-next 'now)))
14896 ((setq e (rassoc c todo-table) tg (car e))
14897 (with-current-buffer buf
14898 (save-excursion (org-todo tg)))
14899 (if exit-after-next (setq exit-after-next 'now)))
14900 ((setq e (rassoc c ntable) tg (car e))
14901 (if (member tg current)
14902 (setq current (delete tg current))
14903 (loop for g in groups do
14904 (if (member tg g)
14905 (mapc (lambda (x)
14906 (setq current (delete x current)))
14907 g)))
14908 (push tg current))
14909 (if exit-after-next (setq exit-after-next 'now))))
14911 ;; Create a sorted list
14912 (setq current
14913 (sort current
14914 (lambda (a b)
14915 (assoc b (cdr (memq (assoc a ntable) ntable))))))
14916 (if (eq exit-after-next 'now) (throw 'exit t))
14917 (goto-char (point-min))
14918 (beginning-of-line 2)
14919 (delete-region (point) (point-at-eol))
14920 (org-fast-tag-insert "Current" current c-face)
14921 (org-set-current-tags-overlay current ov-prefix)
14922 (while (re-search-forward
14923 (org-re "\\[.\\] \\([[:alnum:]_@#%]+\\)") nil t)
14924 (setq tg (match-string 1))
14925 (add-text-properties
14926 (match-beginning 1) (match-end 1)
14927 (list 'face
14928 (cond
14929 ((member tg current) c-face)
14930 ((member tg inherited) i-face)
14931 (t (get-text-property (match-beginning 1) 'face))))))
14932 (goto-char (point-min)))))
14933 (org-detach-overlay org-tags-overlay)
14934 (if rtn
14935 (mapconcat 'identity current ":")
14936 nil))))
14938 (defun org-get-tags-string ()
14939 "Get the TAGS string in the current headline."
14940 (unless (org-at-heading-p t)
14941 (user-error "Not on a heading"))
14942 (save-excursion
14943 (beginning-of-line 1)
14944 (if (looking-at (org-re ".*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
14945 (org-match-string-no-properties 1)
14946 "")))
14948 (defun org-get-tags ()
14949 "Get the list of tags specified in the current headline."
14950 (org-split-string (org-get-tags-string) ":"))
14952 (defun org-get-buffer-tags ()
14953 "Get a table of all tags used in the buffer, for completion."
14954 (let (tags)
14955 (save-excursion
14956 (goto-char (point-min))
14957 (while (re-search-forward
14958 (org-re "[ \t]:\\([[:alnum:]_@#%:]+\\):[ \t\r\n]") nil t)
14959 (when (equal (char-after (point-at-bol 0)) ?*)
14960 (mapc (lambda (x) (add-to-list 'tags x))
14961 (org-split-string (org-match-string-no-properties 1) ":")))))
14962 (mapc (lambda (s) (add-to-list 'tags s)) org-file-tags)
14963 (mapcar 'list tags)))
14965 ;;;; The mapping API
14967 (defun org-map-entries (func &optional match scope &rest skip)
14968 "Call FUNC at each headline selected by MATCH in SCOPE.
14970 FUNC is a function or a lisp form. The function will be called without
14971 arguments, with the cursor positioned at the beginning of the headline.
14972 The return values of all calls to the function will be collected and
14973 returned as a list.
14975 The call to FUNC will be wrapped into a save-excursion form, so FUNC
14976 does not need to preserve point. After evaluation, the cursor will be
14977 moved to the end of the line (presumably of the headline of the
14978 processed entry) and search continues from there. Under some
14979 circumstances, this may not produce the wanted results. For example,
14980 if you have removed (e.g. archived) the current (sub)tree it could
14981 mean that the next entry will be skipped entirely. In such cases, you
14982 can specify the position from where search should continue by making
14983 FUNC set the variable `org-map-continue-from' to the desired buffer
14984 position.
14986 MATCH is a tags/property/todo match as it is used in the agenda tags view.
14987 Only headlines that are matched by this query will be considered during
14988 the iteration. When MATCH is nil or t, all headlines will be
14989 visited by the iteration.
14991 SCOPE determines the scope of this command. It can be any of:
14993 nil The current buffer, respecting the restriction if any
14994 tree The subtree started with the entry at point
14995 region The entries within the active region, if any
14996 region-start-level
14997 The entries within the active region, but only those at
14998 the same level than the first one.
14999 file The current buffer, without restriction
15000 file-with-archives
15001 The current buffer, and any archives associated with it
15002 agenda All agenda files
15003 agenda-with-archives
15004 All agenda files with any archive files associated with them
15005 \(file1 file2 ...)
15006 If this is a list, all files in the list will be scanned
15008 The remaining args are treated as settings for the skipping facilities of
15009 the scanner. The following items can be given here:
15011 archive skip trees with the archive tag
15012 comment skip trees with the COMMENT keyword
15013 function or Emacs Lisp form:
15014 will be used as value for `org-agenda-skip-function', so
15015 whenever the function returns a position, FUNC will not be
15016 called for that entry and search will continue from the
15017 position returned
15019 If your function needs to retrieve the tags including inherited tags
15020 at the *current* entry, you can use the value of the variable
15021 `org-scanner-tags' which will be much faster than getting the value
15022 with `org-get-tags-at'. If your function gets properties with
15023 `org-entry-properties' at the *current* entry, bind `org-trust-scanner-tags'
15024 to t around the call to `org-entry-properties' to get the same speedup.
15025 Note that if your function moves around to retrieve tags and properties at
15026 a *different* entry, you cannot use these techniques."
15027 (unless (and (or (eq scope 'region) (eq scope 'region-start-level))
15028 (not (org-region-active-p)))
15029 (let* ((org-agenda-archives-mode nil) ; just to make sure
15030 (org-agenda-skip-archived-trees (memq 'archive skip))
15031 (org-agenda-skip-comment-trees (memq 'comment skip))
15032 (org-agenda-skip-function
15033 (car (org-delete-all '(comment archive) skip)))
15034 (org-tags-match-list-sublevels t)
15035 (start-level (eq scope 'region-start-level))
15036 matcher file res
15037 org-todo-keywords-for-agenda
15038 org-done-keywords-for-agenda
15039 org-todo-keyword-alist-for-agenda
15040 org-tag-alist-for-agenda
15041 todo-only)
15043 (cond
15044 ((eq match t) (setq matcher t))
15045 ((eq match nil) (setq matcher t))
15046 (t (setq matcher (if match (cdr (org-make-tags-matcher match)) t))))
15048 (save-window-excursion
15049 (save-restriction
15050 (cond ((eq scope 'tree)
15051 (org-back-to-heading t)
15052 (org-narrow-to-subtree)
15053 (setq scope nil))
15054 ((and (or (eq scope 'region) (eq scope 'region-start-level))
15055 (org-region-active-p))
15056 ;; If needed, set start-level to a string like "2"
15057 (when start-level
15058 (save-excursion
15059 (goto-char (region-beginning))
15060 (unless (org-at-heading-p) (outline-next-heading))
15061 (setq start-level (org-current-level))))
15062 (narrow-to-region (region-beginning)
15063 (save-excursion
15064 (goto-char (region-end))
15065 (unless (and (bolp) (org-at-heading-p))
15066 (outline-next-heading))
15067 (point)))
15068 (setq scope nil)))
15070 (if (not scope)
15071 (progn
15072 (org-agenda-prepare-buffers
15073 (list (buffer-file-name (current-buffer))))
15074 (setq res (org-scan-tags func matcher todo-only start-level)))
15075 ;; Get the right scope
15076 (cond
15077 ((and scope (listp scope) (symbolp (car scope)))
15078 (setq scope (eval scope)))
15079 ((eq scope 'agenda)
15080 (setq scope (org-agenda-files t)))
15081 ((eq scope 'agenda-with-archives)
15082 (setq scope (org-agenda-files t))
15083 (setq scope (org-add-archive-files scope)))
15084 ((eq scope 'file)
15085 (setq scope (list (buffer-file-name))))
15086 ((eq scope 'file-with-archives)
15087 (setq scope (org-add-archive-files (list (buffer-file-name))))))
15088 (org-agenda-prepare-buffers scope)
15089 (while (setq file (pop scope))
15090 (with-current-buffer (org-find-base-buffer-visiting file)
15091 (save-excursion
15092 (save-restriction
15093 (widen)
15094 (goto-char (point-min))
15095 (setq res (append res (org-scan-tags func matcher todo-only))))))))))
15096 res)))
15098 ;;;; Properties
15100 ;;; Setting and retrieving properties
15102 (defconst org-special-properties
15103 '("TODO" "TAGS" "ALLTAGS" "DEADLINE" "SCHEDULED" "CLOCK" "CLOSED" "PRIORITY"
15104 "TIMESTAMP" "TIMESTAMP_IA" "BLOCKED" "FILE" "CLOCKSUM" "CLOCKSUM_T")
15105 "The special properties valid in Org-mode.
15107 These are properties that are not defined in the property drawer,
15108 but in some other way.")
15110 (defconst org-default-properties
15111 '("ARCHIVE" "CATEGORY" "SUMMARY" "DESCRIPTION" "CUSTOM_ID"
15112 "LOCATION" "LOGGING" "COLUMNS" "VISIBILITY"
15113 "TABLE_EXPORT_FORMAT" "TABLE_EXPORT_FILE"
15114 "EXPORT_OPTIONS" "EXPORT_TEXT" "EXPORT_FILE_NAME"
15115 "EXPORT_TITLE" "EXPORT_AUTHOR" "EXPORT_DATE"
15116 "ORDERED" "NOBLOCKING" "COOKIE_DATA" "LOG_INTO_DRAWER" "REPEAT_TO_STATE"
15117 "CLOCK_MODELINE_TOTAL" "STYLE" "HTML_CONTAINER_CLASS")
15118 "Some properties that are used by Org-mode for various purposes.
15119 Being in this list makes sure that they are offered for completion.")
15121 (defun org-property-action ()
15122 "Do an action on properties."
15123 (interactive)
15124 (let (c)
15125 (org-at-property-p)
15126 (message "Property Action: [s]et [d]elete [D]elete globally [c]ompute")
15127 (setq c (read-char-exclusive))
15128 (cond
15129 ((equal c ?s)
15130 (call-interactively 'org-set-property))
15131 ((equal c ?d)
15132 (call-interactively 'org-delete-property))
15133 ((equal c ?D)
15134 (call-interactively 'org-delete-property-globally))
15135 ((equal c ?c)
15136 (call-interactively 'org-compute-property-at-point))
15137 (t (user-error "No such property action %c" c)))))
15139 (defun org-inc-effort ()
15140 "Increment the value of the effort property in the current entry."
15141 (interactive)
15142 (org-set-effort nil t))
15144 (defvar org-clock-effort) ;; Defined in org-clock.el
15145 (defvar org-clock-current-task) ;; Defined in org-clock.el
15146 (defun org-set-effort (&optional value increment)
15147 "Set the effort property of the current entry.
15148 With numerical prefix arg, use the nth allowed value, 0 stands for the
15149 10th allowed value.
15151 When INCREMENT is non-nil, set the property to the next allowed value."
15152 (interactive "P")
15153 (if (equal value 0) (setq value 10))
15154 (let* ((completion-ignore-case t)
15155 (prop org-effort-property)
15156 (cur (org-entry-get nil prop))
15157 (allowed (org-property-get-allowed-values nil prop 'table))
15158 (existing (mapcar 'list (org-property-values prop)))
15159 (heading (nth 4 (org-heading-components)))
15161 (val (cond
15162 ((stringp value) value)
15163 ((and allowed (integerp value))
15164 (or (car (nth (1- value) allowed))
15165 (car (org-last allowed))))
15166 ((and allowed increment)
15167 (or (caadr (member (list cur) allowed))
15168 (user-error "Allowed effort values are not set")))
15169 (allowed
15170 (message "Select 1-9,0, [RET%s]: %s"
15171 (if cur (concat "=" cur) "")
15172 (mapconcat 'car allowed " "))
15173 (setq rpl (read-char-exclusive))
15174 (if (equal rpl ?\r)
15176 (setq rpl (- rpl ?0))
15177 (if (equal rpl 0) (setq rpl 10))
15178 (if (and (> rpl 0) (<= rpl (length allowed)))
15179 (car (nth (1- rpl) allowed))
15180 (org-completing-read "Effort: " allowed nil))))
15182 (let (org-completion-use-ido org-completion-use-iswitchb)
15183 (org-completing-read
15184 (concat "Effort " (if (and cur (string-match "\\S-" cur))
15185 (concat "[" cur "]") "")
15186 ": ")
15187 existing nil nil "" nil cur))))))
15188 (unless (equal (org-entry-get nil prop) val)
15189 (org-entry-put nil prop val))
15190 (save-excursion
15191 (org-back-to-heading t)
15192 (put-text-property (point-at-bol) (point-at-eol) 'org-effort val))
15193 (when (string= heading org-clock-current-task)
15194 (setq org-clock-effort (get-text-property (point-at-bol) 'org-effort))
15195 (org-clock-update-mode-line))
15196 (message "%s is now %s" prop val)))
15198 (defun org-at-property-p ()
15199 "Is cursor inside a property drawer?"
15200 (save-excursion
15201 (when (equal 'node-property (car (org-element-at-point)))
15202 (beginning-of-line 1)
15203 (looking-at org-property-re))))
15205 (defun org-get-property-block (&optional beg end force)
15206 "Return the (beg . end) range of the body of the property drawer.
15207 BEG and END are the beginning and end of the current subtree, or of
15208 the part before the first headline. If they are not given, they will
15209 be found. If the drawer does not exist and FORCE is non-nil, create
15210 the drawer."
15211 (catch 'exit
15212 (save-excursion
15213 (let* ((beg (or beg (and (org-before-first-heading-p) (point-min))
15214 (progn (org-back-to-heading t) (point))))
15215 (end (or end (and (not (outline-next-heading)) (point-max))
15216 (point))))
15217 (goto-char beg)
15218 (if (re-search-forward org-property-start-re end t)
15219 (setq beg (1+ (match-end 0)))
15220 (if force
15221 (save-excursion
15222 (org-insert-property-drawer)
15223 (setq end (progn (outline-next-heading) (point))))
15224 (throw 'exit nil))
15225 (goto-char beg)
15226 (if (re-search-forward org-property-start-re end t)
15227 (setq beg (1+ (match-end 0)))))
15228 (if (re-search-forward org-property-end-re end t)
15229 (setq end (match-beginning 0))
15230 (or force (throw 'exit nil))
15231 (goto-char beg)
15232 (setq end beg)
15233 (org-indent-line)
15234 (insert ":END:\n"))
15235 (cons beg end)))))
15237 (defun org-entry-properties (&optional pom which specific)
15238 "Get all properties of the entry at point-or-marker POM.
15239 This includes the TODO keyword, the tags, time strings for deadline,
15240 scheduled, and clocking, and any additional properties defined in the
15241 entry. The return value is an alist, keys may occur multiple times
15242 if the property key was used several times.
15243 POM may also be nil, in which case the current entry is used.
15244 If WHICH is nil or `all', get all properties. If WHICH is
15245 `special' or `standard', only get that subclass. If WHICH
15246 is a string only get exactly this property. SPECIFIC can be a string, the
15247 specific property we are interested in. Specifying it can speed
15248 things up because then unnecessary parsing is avoided."
15249 (setq which (or which 'all))
15250 (org-with-wide-buffer
15251 (org-with-point-at pom
15252 (let ((clockstr (substring org-clock-string 0 -1))
15253 (excluded '("TODO" "TAGS" "ALLTAGS" "PRIORITY" "BLOCKED"))
15254 (case-fold-search nil)
15255 beg end range props sum-props key key1 value string clocksum clocksumt)
15256 (when (and (derived-mode-p 'org-mode)
15257 (ignore-errors (org-back-to-heading t)))
15258 (setq beg (point))
15259 (setq sum-props (get-text-property (point) 'org-summaries))
15260 (setq clocksum (get-text-property (point) :org-clock-minutes)
15261 clocksumt (get-text-property (point) :org-clock-minutes-today))
15262 (outline-next-heading)
15263 (setq end (point))
15264 (when (memq which '(all special))
15265 ;; Get the special properties, like TODO and tags
15266 (goto-char beg)
15267 (when (and (or (not specific) (string= specific "TODO"))
15268 (looking-at org-todo-line-regexp) (match-end 2))
15269 (push (cons "TODO" (org-match-string-no-properties 2)) props))
15270 (when (and (or (not specific) (string= specific "PRIORITY"))
15271 (looking-at org-priority-regexp))
15272 (push (cons "PRIORITY" (org-match-string-no-properties 2)) props))
15273 (when (or (not specific) (string= specific "FILE"))
15274 (push (cons "FILE" buffer-file-name) props))
15275 (when (and (or (not specific) (string= specific "TAGS"))
15276 (setq value (org-get-tags-string))
15277 (string-match "\\S-" value))
15278 (push (cons "TAGS" value) props))
15279 (when (and (or (not specific) (string= specific "ALLTAGS"))
15280 (setq value (org-get-tags-at)))
15281 (push (cons "ALLTAGS" (concat ":" (mapconcat 'identity value ":")
15282 ":"))
15283 props))
15284 (when (or (not specific) (string= specific "BLOCKED"))
15285 (push (cons "BLOCKED" (if (org-entry-blocked-p) "t" "")) props))
15286 (when (or (not specific)
15287 (member specific
15288 '("SCHEDULED" "DEADLINE" "CLOCK" "CLOSED"
15289 "TIMESTAMP" "TIMESTAMP_IA")))
15290 (catch 'match
15291 (while (re-search-forward org-maybe-keyword-time-regexp end t)
15292 (setq key (if (match-end 1)
15293 (substring (org-match-string-no-properties 1)
15294 0 -1))
15295 string (if (equal key clockstr)
15296 (org-trim
15297 (buffer-substring-no-properties
15298 (match-beginning 3) (goto-char
15299 (point-at-eol))))
15300 (substring (org-match-string-no-properties 3)
15301 1 -1)))
15302 ;; Get the correct property name from the key. This is
15303 ;; necessary if the user has configured time keywords.
15304 (setq key1 (concat key ":"))
15305 (cond
15306 ((not key)
15307 (setq key
15308 (if (= (char-after (match-beginning 3)) ?\[)
15309 "TIMESTAMP_IA" "TIMESTAMP")))
15310 ((equal key1 org-scheduled-string) (setq key "SCHEDULED"))
15311 ((equal key1 org-deadline-string) (setq key "DEADLINE"))
15312 ((equal key1 org-closed-string) (setq key "CLOSED"))
15313 ((equal key1 org-clock-string) (setq key "CLOCK")))
15314 (if (and specific (equal key specific) (not (equal key "CLOCK")))
15315 (progn
15316 (push (cons key string) props)
15317 ;; no need to search further if match is found
15318 (throw 'match t))
15319 (when (or (equal key "CLOCK") (not (assoc key props)))
15320 (push (cons key string) props)))))))
15322 (when (memq which '(all standard))
15323 ;; Get the standard properties, like :PROP: ...
15324 (setq range (org-get-property-block beg end))
15325 (when range
15326 (goto-char (car range))
15327 (while (re-search-forward org-property-re
15328 (cdr range) t)
15329 (setq key (org-match-string-no-properties 2)
15330 value (org-trim (or (org-match-string-no-properties 3) "")))
15331 (unless (member key excluded)
15332 (push (cons key (or value "")) props)))))
15333 (if clocksum
15334 (push (cons "CLOCKSUM"
15335 (org-columns-number-to-string (/ (float clocksum) 60.)
15336 'add_times))
15337 props))
15338 (if clocksumt
15339 (push (cons "CLOCKSUM_T"
15340 (org-columns-number-to-string (/ (float clocksumt) 60.)
15341 'add_times))
15342 props))
15343 (unless (assoc "CATEGORY" props)
15344 (push (cons "CATEGORY" (org-get-category)) props))
15345 (append sum-props (nreverse props)))))))
15347 (defun org-entry-get (pom property &optional inherit literal-nil)
15348 "Get value of PROPERTY for entry or content at point-or-marker POM.
15349 If INHERIT is non-nil and the entry does not have the property,
15350 then also check higher levels of the hierarchy.
15351 If INHERIT is the symbol `selective', use inheritance only if the setting
15352 in `org-use-property-inheritance' selects PROPERTY for inheritance.
15353 If the property is present but empty, the return value is the empty string.
15354 If the property is not present at all, nil is returned.
15356 If LITERAL-NIL is set, return the string value \"nil\" as a string,
15357 do not interpret it as the list atom nil. This is used for inheritance
15358 when a \"nil\" value can supersede a non-nil value higher up the hierarchy."
15359 (org-with-point-at pom
15360 (if (and inherit (if (eq inherit 'selective)
15361 (org-property-inherit-p property)
15363 (org-entry-get-with-inheritance property literal-nil)
15364 (if (member property org-special-properties)
15365 ;; We need a special property. Use `org-entry-properties'
15366 ;; to retrieve it, but specify the wanted property
15367 (cdr (assoc property (org-entry-properties nil 'special property)))
15368 (org-with-wide-buffer
15369 (let ((range (org-get-property-block)))
15370 (when (and range (not (eq (car range) (cdr range))))
15371 (let* ((props
15372 (list (or (assoc property org-file-properties)
15373 (assoc property org-global-properties)
15374 (assoc property org-global-properties-fixed))))
15375 (ap (lambda (key)
15376 (when (re-search-forward
15377 (org-re-property key) (cdr range) t)
15378 (setq props
15379 (org-update-property-plist
15381 (if (match-end 3)
15382 (org-match-string-no-properties 3) "")
15383 props)))))
15384 val)
15385 (goto-char (car range))
15386 (funcall ap property)
15387 (goto-char (car range))
15388 (while (funcall ap (concat property "+")))
15389 (setq val (cdr (assoc property props)))
15390 (when val (if literal-nil val (org-not-nil val)))))))))))
15392 (defun org-property-or-variable-value (var &optional inherit)
15393 "Check if there is a property fixing the value of VAR.
15394 If yes, return this value. If not, return the current value of the variable."
15395 (let ((prop (org-entry-get nil (symbol-name var) inherit)))
15396 (if (and prop (stringp prop) (string-match "\\S-" prop))
15397 (read prop)
15398 (symbol-value var))))
15400 (defun org-entry-delete (pom property)
15401 "Delete the property PROPERTY from entry at point-or-marker POM."
15402 (unless (member property org-special-properties)
15403 (org-with-point-at pom
15404 (let ((range (org-get-property-block)))
15405 (if (and range
15406 (goto-char (car range))
15407 (re-search-forward
15408 (org-re-property property)
15409 (cdr range) t))
15410 (progn
15411 (delete-region (match-beginning 0) (1+ (point-at-eol)))
15412 (org-remove-empty-drawer-at (car range))
15414 nil)))))
15416 ;; Multi-values properties are properties that contain multiple values
15417 ;; These values are assumed to be single words, separated by whitespace.
15418 (defun org-entry-add-to-multivalued-property (pom property value)
15419 "Add VALUE to the words in the PROPERTY in entry at point-or-marker POM."
15420 (let* ((old (org-entry-get pom property))
15421 (values (and old (org-split-string old "[ \t]"))))
15422 (setq value (org-entry-protect-space value))
15423 (unless (member value values)
15424 (setq values (append values (list value)))
15425 (org-entry-put pom property
15426 (mapconcat 'identity values " ")))))
15428 (defun org-entry-remove-from-multivalued-property (pom property value)
15429 "Remove VALUE from words in the PROPERTY in entry at point-or-marker POM."
15430 (let* ((old (org-entry-get pom property))
15431 (values (and old (org-split-string old "[ \t]"))))
15432 (setq value (org-entry-protect-space value))
15433 (when (member value values)
15434 (setq values (delete value values))
15435 (org-entry-put pom property
15436 (mapconcat 'identity values " ")))))
15438 (defun org-entry-member-in-multivalued-property (pom property value)
15439 "Is VALUE one of the words in the PROPERTY in entry at point-or-marker POM?"
15440 (let* ((old (org-entry-get pom property))
15441 (values (and old (org-split-string old "[ \t]"))))
15442 (setq value (org-entry-protect-space value))
15443 (member value values)))
15445 (defun org-entry-get-multivalued-property (pom property)
15446 "Return a list of values in a multivalued property."
15447 (let* ((value (org-entry-get pom property))
15448 (values (and value (org-split-string value "[ \t]"))))
15449 (mapcar 'org-entry-restore-space values)))
15451 (defun org-entry-put-multivalued-property (pom property &rest values)
15452 "Set multivalued PROPERTY at point-or-marker POM to VALUES.
15453 VALUES should be a list of strings. Spaces will be protected."
15454 (org-entry-put pom property
15455 (mapconcat 'org-entry-protect-space values " "))
15456 (let* ((value (org-entry-get pom property))
15457 (values (and value (org-split-string value "[ \t]"))))
15458 (mapcar 'org-entry-restore-space values)))
15460 (defun org-entry-protect-space (s)
15461 "Protect spaces and newline in string S."
15462 (while (string-match " " s)
15463 (setq s (replace-match "%20" t t s)))
15464 (while (string-match "\n" s)
15465 (setq s (replace-match "%0A" t t s)))
15468 (defun org-entry-restore-space (s)
15469 "Restore spaces and newline in string S."
15470 (while (string-match "%20" s)
15471 (setq s (replace-match " " t t s)))
15472 (while (string-match "%0A" s)
15473 (setq s (replace-match "\n" t t s)))
15476 (defvar org-entry-property-inherited-from (make-marker)
15477 "Marker pointing to the entry from where a property was inherited.
15478 Each call to `org-entry-get-with-inheritance' will set this marker to the
15479 location of the entry where the inheritance search matched. If there was
15480 no match, the marker will point nowhere.
15481 Note that also `org-entry-get' calls this function, if the INHERIT flag
15482 is set.")
15484 (defun org-entry-get-with-inheritance (property &optional literal-nil)
15485 "Get PROPERTY of entry or content at point, search higher levels if needed.
15486 The search will stop at the first ancestor which has the property defined.
15487 If the value found is \"nil\", return nil to show that the property
15488 should be considered as undefined (this is the meaning of nil here).
15489 However, if LITERAL-NIL is set, return the string value \"nil\" instead."
15490 (move-marker org-entry-property-inherited-from nil)
15491 (let (tmp)
15492 (save-excursion
15493 (save-restriction
15494 (widen)
15495 (catch 'ex
15496 (while t
15497 (when (setq tmp (org-entry-get nil property nil 'literal-nil))
15498 (or (ignore-errors (org-back-to-heading t))
15499 (goto-char (point-min)))
15500 (move-marker org-entry-property-inherited-from (point))
15501 (throw 'ex tmp))
15502 (or (ignore-errors (org-up-heading-safe))
15503 (throw 'ex nil))))))
15504 (setq tmp (or tmp
15505 (cdr (assoc property org-file-properties))
15506 (cdr (assoc property org-global-properties))
15507 (cdr (assoc property org-global-properties-fixed))))
15508 (if literal-nil tmp (org-not-nil tmp))))
15510 (defvar org-property-changed-functions nil
15511 "Hook called when the value of a property has changed.
15512 Each hook function should accept two arguments, the name of the property
15513 and the new value.")
15515 (defun org-entry-put (pom property value)
15516 "Set PROPERTY to VALUE for entry at point-or-marker POM."
15517 (org-with-point-at pom
15518 (org-back-to-heading t)
15519 (let ((beg (point)) (end (save-excursion (outline-next-heading) (point)))
15520 range)
15521 (cond
15522 ((equal property "TODO")
15523 (when (and (stringp value) (string-match "\\S-" value)
15524 (not (member value org-todo-keywords-1)))
15525 (user-error "\"%s\" is not a valid TODO state" value))
15526 (if (or (not value)
15527 (not (string-match "\\S-" value)))
15528 (setq value 'none))
15529 (org-todo value)
15530 (org-set-tags nil 'align))
15531 ((equal property "PRIORITY")
15532 (org-priority (if (and value (stringp value) (string-match "\\S-" value))
15533 (string-to-char value) ?\ ))
15534 (org-set-tags nil 'align))
15535 ((equal property "CLOCKSUM")
15536 (if (not (re-search-forward
15537 (concat org-clock-string ".*\\]--\\(\\[[^]]+\\]\\)") nil t))
15538 (error "Cannot find a clock log")
15539 (goto-char (- (match-end 1) 2))
15540 (cond
15541 ((eq value 'earlier) (org-timestamp-down))
15542 ((eq value 'later) (org-timestamp-up)))
15543 (org-clock-sum-current-item)))
15544 ((equal property "SCHEDULED")
15545 (if (re-search-forward org-scheduled-time-regexp end t)
15546 (cond
15547 ((eq value 'earlier) (org-timestamp-change -1 'day))
15548 ((eq value 'later) (org-timestamp-change 1 'day))
15549 (t (call-interactively 'org-schedule)))
15550 (call-interactively 'org-schedule)))
15551 ((equal property "DEADLINE")
15552 (if (re-search-forward org-deadline-time-regexp end t)
15553 (cond
15554 ((eq value 'earlier) (org-timestamp-change -1 'day))
15555 ((eq value 'later) (org-timestamp-change 1 'day))
15556 (t (call-interactively 'org-deadline)))
15557 (call-interactively 'org-deadline)))
15558 ((member property org-special-properties)
15559 (error "The %s property can not yet be set with `org-entry-put'"
15560 property))
15561 (t ; a non-special property
15562 (let ((buffer-invisibility-spec (org-inhibit-invisibility))) ; Emacs 21
15563 (setq range (org-get-property-block beg end 'force))
15564 (goto-char (car range))
15565 (if (re-search-forward
15566 (org-re-property property) (cdr range) t)
15567 (progn
15568 (delete-region (match-beginning 0) (match-end 0))
15569 (goto-char (match-beginning 0)))
15570 (goto-char (cdr range))
15571 (insert "\n")
15572 (backward-char 1)
15573 (org-indent-line))
15574 (insert ":" property ":")
15575 (and value (insert " " value))
15576 (org-indent-line)))))
15577 (run-hook-with-args 'org-property-changed-functions property value)))
15579 (defun org-buffer-property-keys (&optional include-specials include-defaults include-columns)
15580 "Get all property keys in the current buffer.
15581 With INCLUDE-SPECIALS, also list the special properties that reflect things
15582 like tags and TODO state.
15583 With INCLUDE-DEFAULTS, also include properties that has special meaning
15584 internally: ARCHIVE, CATEGORY, SUMMARY, DESCRIPTION, LOCATION, and LOGGING
15585 and others.
15586 With INCLUDE-COLUMNS, also include property names given in COLUMN
15587 formats in the current buffer."
15588 (let (rtn range cfmt s p)
15589 (save-excursion
15590 (save-restriction
15591 (widen)
15592 (goto-char (point-min))
15593 (while (re-search-forward org-property-start-re nil t)
15594 (setq range (org-get-property-block))
15595 (goto-char (car range))
15596 (while (re-search-forward org-property-re
15597 (cdr range) t)
15598 (add-to-list 'rtn (org-match-string-no-properties 2)))
15599 (outline-next-heading))))
15601 (when include-specials
15602 (setq rtn (append org-special-properties rtn)))
15604 (when include-defaults
15605 (mapc (lambda (x) (add-to-list 'rtn x)) org-default-properties)
15606 (add-to-list 'rtn org-effort-property))
15608 (when include-columns
15609 (save-excursion
15610 (save-restriction
15611 (widen)
15612 (goto-char (point-min))
15613 (while (re-search-forward
15614 "^\\(#\\+COLUMNS:\\|[ \t]*:COLUMNS:\\)[ \t]*\\(.*\\)"
15615 nil t)
15616 (setq cfmt (match-string 2) s 0)
15617 (while (string-match (org-re "%[0-9]*\\([-[:alnum:]_]+\\)")
15618 cfmt s)
15619 (setq s (match-end 0)
15620 p (match-string 1 cfmt))
15621 (unless (or (equal p "ITEM")
15622 (member p org-special-properties))
15623 (add-to-list 'rtn (match-string 1 cfmt))))))))
15625 (sort rtn (lambda (a b) (string< (upcase a) (upcase b))))))
15627 (defun org-property-values (key)
15628 "Return a list of all values of property KEY in the current buffer."
15629 (save-excursion
15630 (save-restriction
15631 (widen)
15632 (goto-char (point-min))
15633 (let ((re (org-re-property key))
15634 values)
15635 (while (re-search-forward re nil t)
15636 (add-to-list 'values (org-trim (match-string 3))))
15637 (delete "" values)))))
15639 (defun org-insert-property-drawer ()
15640 "Insert a property drawer into the current entry."
15641 (org-back-to-heading t)
15642 (looking-at org-outline-regexp)
15643 (let ((indent (if org-adapt-indentation
15644 (- (match-end 0) (match-beginning 0))
15646 (beg (point))
15647 (re (concat "^[ \t]*" org-keyword-time-regexp))
15648 end hiddenp)
15649 (outline-next-heading)
15650 (setq end (point))
15651 (goto-char beg)
15652 (while (re-search-forward re end t))
15653 (setq hiddenp (outline-invisible-p))
15654 (end-of-line 1)
15655 (and (equal (char-after) ?\n) (forward-char 1))
15656 (while (looking-at "^[ \t]*\\(:CLOCK:\\|:LOGBOOK:\\|CLOCK:\\|:END:\\)")
15657 (if (member (match-string 1) '("CLOCK:" ":END:"))
15658 ;; just skip this line
15659 (beginning-of-line 2)
15660 ;; Drawer start, find the end
15661 (re-search-forward "^\\*+ \\|^[ \t]*:END:" nil t)
15662 (beginning-of-line 1)))
15663 (org-skip-over-state-notes)
15664 (skip-chars-backward " \t\n\r")
15665 (if (and (eq (char-before) ?*) (not (eq (char-after) ?\n)))
15666 (forward-char 1))
15667 (goto-char (point-at-eol))
15668 (let ((inhibit-read-only t)) (insert "\n:PROPERTIES:\n:END:"))
15669 (beginning-of-line 0)
15670 (org-indent-to-column indent)
15671 (beginning-of-line 2)
15672 (org-indent-to-column indent)
15673 (beginning-of-line 0)
15674 (if hiddenp
15675 (save-excursion
15676 (org-back-to-heading t)
15677 (hide-entry))
15678 (org-flag-drawer t))))
15680 (defun org-insert-drawer (&optional arg drawer)
15681 "Insert a drawer at point.
15683 Optional argument DRAWER, when non-nil, is a string representing
15684 drawer's name. Otherwise, the user is prompted for a name.
15686 If a region is active, insert the drawer around that region
15687 instead.
15689 Point is left between drawer's boundaries."
15690 (interactive "P")
15691 (let* ((drawer (if arg "PROPERTIES"
15692 (or drawer (read-from-minibuffer "Drawer: ")))))
15693 (cond
15694 ;; With C-u, fall back on `org-insert-property-drawer'
15695 (arg (org-insert-property-drawer))
15697 ((not (org-string-match-p org-drawer-regexp (format ":%s:" drawer)))
15698 (user-error "Invalid drawer name"))
15699 ;; With an active region, insert a drawer at point.
15700 ((not (org-region-active-p))
15701 (progn
15702 (unless (bolp) (insert "\n"))
15703 (insert (format ":%s:\n\n:END:\n" drawer))
15704 (forward-line -2)))
15705 ;; Otherwise, insert the drawer at point
15707 (let ((rbeg (region-beginning))
15708 (rend (copy-marker (region-end))))
15709 (unwind-protect
15710 (progn
15711 (goto-char rbeg)
15712 (beginning-of-line)
15713 (when (save-excursion
15714 (re-search-forward org-outline-regexp-bol rend t))
15715 (user-error "Drawers cannot contain headlines"))
15716 ;; Position point at the beginning of the first
15717 ;; non-blank line in region. Insert drawer's opening
15718 ;; there, then indent it.
15719 (org-skip-whitespace)
15720 (beginning-of-line)
15721 (insert ":" drawer ":\n")
15722 (forward-line -1)
15723 (indent-for-tab-command)
15724 ;; Move point to the beginning of the first blank line
15725 ;; after the last non-blank line in region. Insert
15726 ;; drawer's closing, then indent it.
15727 (goto-char rend)
15728 (skip-chars-backward " \r\t\n")
15729 (insert "\n:END:")
15730 (deactivate-mark t)
15731 (indent-for-tab-command)
15732 (unless (eolp) (insert "\n")))
15733 ;; Clear marker, whatever the outcome of insertion is.
15734 (set-marker rend nil)))))))
15736 (defvar org-property-set-functions-alist nil
15737 "Property set function alist.
15738 Each entry should have the following format:
15740 (PROPERTY . READ-FUNCTION)
15742 The read function will be called with the same argument as
15743 `org-completing-read'.")
15745 (defun org-set-property-function (property)
15746 "Get the function that should be used to set PROPERTY.
15747 This is computed according to `org-property-set-functions-alist'."
15748 (or (cdr (assoc property org-property-set-functions-alist))
15749 'org-completing-read))
15751 (defun org-read-property-value (property)
15752 "Read PROPERTY value from user."
15753 (let* ((completion-ignore-case t)
15754 (allowed (org-property-get-allowed-values nil property 'table))
15755 (cur (org-entry-get nil property))
15756 (prompt (concat property " value"
15757 (if (and cur (string-match "\\S-" cur))
15758 (concat " [" cur "]") "") ": "))
15759 (set-function (org-set-property-function property))
15760 (val (if allowed
15761 (funcall set-function prompt allowed nil
15762 (not (get-text-property 0 'org-unrestricted
15763 (caar allowed))))
15764 (let (org-completion-use-ido org-completion-use-iswitchb)
15765 (funcall set-function prompt
15766 (mapcar 'list (org-property-values property))
15767 nil nil "" nil cur)))))
15768 (if (equal val "")
15770 val)))
15772 (defvar org-last-set-property nil)
15773 (defvar org-last-set-property-value nil)
15774 (defun org-read-property-name ()
15775 "Read a property name."
15776 (let* ((completion-ignore-case t)
15777 (keys (org-buffer-property-keys nil t t))
15778 (default-prop (or (save-excursion
15779 (save-match-data
15780 (beginning-of-line)
15781 (and (looking-at "^\\s-*:\\([^:\n]+\\):")
15782 (null (string= (match-string 1) "END"))
15783 (match-string 1))))
15784 org-last-set-property))
15785 (property (org-icompleting-read
15786 (concat "Property"
15787 (if default-prop (concat " [" default-prop "]") "")
15788 ": ")
15789 (mapcar 'list keys)
15790 nil nil nil nil
15791 default-prop)))
15792 (if (member property keys)
15793 property
15794 (or (cdr (assoc (downcase property)
15795 (mapcar (lambda (x) (cons (downcase x) x))
15796 keys)))
15797 property))))
15799 (defun org-set-property-and-value (use-last)
15800 "Allow to set [PROPERTY]: [value] direction from prompt.
15801 When use-default, don't even ask, just use the last
15802 \"[PROPERTY]: [value]\" string from the history."
15803 (interactive "P")
15804 (let* ((completion-ignore-case t)
15805 (pv (or (and use-last org-last-set-property-value)
15806 (org-completing-read
15807 "Enter a \"[Property]: [value]\" pair: "
15808 nil nil nil nil nil
15809 org-last-set-property-value)))
15810 prop val)
15811 (when (string-match "^[ \t]*\\([^:]+\\):[ \t]*\\(.*\\)[ \t]*$" pv)
15812 (setq prop (match-string 1 pv)
15813 val (match-string 2 pv))
15814 (org-set-property prop val))))
15816 (defun org-set-property (property value)
15817 "In the current entry, set PROPERTY to VALUE.
15818 When called interactively, this will prompt for a property name, offering
15819 completion on existing and default properties. And then it will prompt
15820 for a value, offering completion either on allowed values (via an inherited
15821 xxx_ALL property) or on existing values in other instances of this property
15822 in the current file."
15823 (interactive (list nil nil))
15824 (let* ((property (or property (org-read-property-name)))
15825 (value (or value (org-read-property-value property)))
15826 (fn (cdr (assoc property org-properties-postprocess-alist))))
15827 (setq org-last-set-property property)
15828 (setq org-last-set-property-value (concat property ": " value))
15829 ;; Possibly postprocess the inserted value:
15830 (when fn (setq value (funcall fn value)))
15831 (unless (equal (org-entry-get nil property) value)
15832 (org-entry-put nil property value))))
15834 (defun org-delete-property (property)
15835 "In the current entry, delete PROPERTY."
15836 (interactive
15837 (let* ((completion-ignore-case t)
15838 (prop (org-icompleting-read "Property: "
15839 (org-entry-properties nil 'standard))))
15840 (list prop)))
15841 (message "Property %s %s" property
15842 (if (org-entry-delete nil property)
15843 "deleted"
15844 "was not present in the entry")))
15846 (defun org-delete-property-globally (property)
15847 "Remove PROPERTY globally, from all entries."
15848 (interactive
15849 (let* ((completion-ignore-case t)
15850 (prop (org-icompleting-read
15851 "Globally remove property: "
15852 (mapcar 'list (org-buffer-property-keys)))))
15853 (list prop)))
15854 (save-excursion
15855 (save-restriction
15856 (widen)
15857 (goto-char (point-min))
15858 (let ((cnt 0))
15859 (while (re-search-forward
15860 (org-re-property property)
15861 nil t)
15862 (setq cnt (1+ cnt))
15863 (delete-region (match-beginning 0) (1+ (point-at-eol))))
15864 (message "Property \"%s\" removed from %d entries" property cnt)))))
15866 (defvar org-columns-current-fmt-compiled) ; defined in org-colview.el
15868 (defun org-compute-property-at-point ()
15869 "Compute the property at point.
15870 This looks for an enclosing column format, extracts the operator and
15871 then applies it to the property in the column format's scope."
15872 (interactive)
15873 (unless (org-at-property-p)
15874 (user-error "Not at a property"))
15875 (let ((prop (org-match-string-no-properties 2)))
15876 (org-columns-get-format-and-top-level)
15877 (unless (nth 3 (assoc prop org-columns-current-fmt-compiled))
15878 (user-error "No operator defined for property %s" prop))
15879 (org-columns-compute prop)))
15881 (defvar org-property-allowed-value-functions nil
15882 "Hook for functions supplying allowed values for a specific property.
15883 The functions must take a single argument, the name of the property, and
15884 return a flat list of allowed values. If \":ETC\" is one of
15885 the values, this means that these values are intended as defaults for
15886 completion, but that other values should be allowed too.
15887 The functions must return nil if they are not responsible for this
15888 property.")
15890 (defun org-property-get-allowed-values (pom property &optional table)
15891 "Get allowed values for the property PROPERTY.
15892 When TABLE is non-nil, return an alist that can directly be used for
15893 completion."
15894 (let (vals)
15895 (cond
15896 ((equal property "TODO")
15897 (setq vals (org-with-point-at pom
15898 (append org-todo-keywords-1 '("")))))
15899 ((equal property "PRIORITY")
15900 (let ((n org-lowest-priority))
15901 (while (>= n org-highest-priority)
15902 (push (char-to-string n) vals)
15903 (setq n (1- n)))))
15904 ((member property org-special-properties))
15905 ((setq vals (run-hook-with-args-until-success
15906 'org-property-allowed-value-functions property)))
15908 (setq vals (org-entry-get pom (concat property "_ALL") 'inherit))
15909 (when (and vals (string-match "\\S-" vals))
15910 (setq vals (car (read-from-string (concat "(" vals ")"))))
15911 (setq vals (mapcar (lambda (x)
15912 (cond ((stringp x) x)
15913 ((numberp x) (number-to-string x))
15914 ((symbolp x) (symbol-name x))
15915 (t "???")))
15916 vals)))))
15917 (when (member ":ETC" vals)
15918 (setq vals (remove ":ETC" vals))
15919 (org-add-props (car vals) '(org-unrestricted t)))
15920 (if table (mapcar 'list vals) vals)))
15922 (defun org-property-previous-allowed-value (&optional previous)
15923 "Switch to the next allowed value for this property."
15924 (interactive)
15925 (org-property-next-allowed-value t))
15927 (defun org-property-next-allowed-value (&optional previous)
15928 "Switch to the next allowed value for this property."
15929 (interactive)
15930 (unless (org-at-property-p)
15931 (user-error "Not at a property"))
15932 (let* ((prop (car (save-match-data (org-split-string (match-string 1) ":"))))
15933 (key (match-string 2))
15934 (value (match-string 3))
15935 (allowed (or (org-property-get-allowed-values (point) key)
15936 (and (member value '("[ ]" "[-]" "[X]"))
15937 '("[ ]" "[X]"))))
15938 (heading (save-match-data (nth 4 (org-heading-components))))
15939 nval)
15940 (unless allowed
15941 (user-error "Allowed values for this property have not been defined"))
15942 (if previous (setq allowed (reverse allowed)))
15943 (if (member value allowed)
15944 (setq nval (car (cdr (member value allowed)))))
15945 (setq nval (or nval (car allowed)))
15946 (if (equal nval value)
15947 (user-error "Only one allowed value for this property"))
15948 (org-at-property-p)
15949 (replace-match (concat " :" key ": " nval) t t)
15950 (org-indent-line)
15951 (beginning-of-line 1)
15952 (skip-chars-forward " \t")
15953 (when (equal prop org-effort-property)
15954 (save-excursion
15955 (org-back-to-heading t)
15956 (put-text-property (point-at-bol) (point-at-eol) 'org-effort nval))
15957 (when (string= org-clock-current-task heading)
15958 (setq org-clock-effort nval)
15959 (org-clock-update-mode-line)))
15960 (run-hook-with-args 'org-property-changed-functions key nval)))
15962 (defun org-find-olp (path &optional this-buffer)
15963 "Return a marker pointing to the entry at outline path OLP.
15964 If anything goes wrong, throw an error.
15965 You can wrap this call to catch the error like this:
15967 (condition-case msg
15968 (org-mobile-locate-entry (match-string 4))
15969 (error (nth 1 msg)))
15971 The return value will then be either a string with the error message,
15972 or a marker if everything is OK.
15974 If THIS-BUFFER is set, the outline path does not contain a file,
15975 only headings."
15976 (let* ((file (if this-buffer buffer-file-name (pop path)))
15977 (buffer (if this-buffer (current-buffer) (find-file-noselect file)))
15978 (level 1)
15979 (lmin 1)
15980 (lmax 1)
15981 limit re end found pos heading cnt flevel)
15982 (unless buffer (error "File not found :%s" file))
15983 (with-current-buffer buffer
15984 (save-excursion
15985 (save-restriction
15986 (widen)
15987 (setq limit (point-max))
15988 (goto-char (point-min))
15989 (while (setq heading (pop path))
15990 (setq re (format org-complex-heading-regexp-format
15991 (regexp-quote heading)))
15992 (setq cnt 0 pos (point))
15993 (while (re-search-forward re end t)
15994 (setq level (- (match-end 1) (match-beginning 1)))
15995 (if (and (>= level lmin) (<= level lmax))
15996 (setq found (match-beginning 0) flevel level cnt (1+ cnt))))
15997 (when (= cnt 0) (error "Heading not found on level %d: %s"
15998 lmax heading))
15999 (when (> cnt 1) (error "Heading not unique on level %d: %s"
16000 lmax heading))
16001 (goto-char found)
16002 (setq lmin (1+ flevel) lmax (+ lmin (if org-odd-levels-only 1 0)))
16003 (setq end (save-excursion (org-end-of-subtree t t))))
16004 (when (org-at-heading-p)
16005 (point-marker)))))))
16007 (defun org-find-exact-headline-in-buffer (heading &optional buffer pos-only)
16008 "Find node HEADING in BUFFER.
16009 Return a marker to the heading if it was found, or nil if not.
16010 If POS-ONLY is set, return just the position instead of a marker.
16012 The heading text must match exact, but it may have a TODO keyword,
16013 a priority cookie and tags in the standard locations."
16014 (with-current-buffer (or buffer (current-buffer))
16015 (save-excursion
16016 (save-restriction
16017 (widen)
16018 (goto-char (point-min))
16019 (let (case-fold-search)
16020 (if (re-search-forward
16021 (format org-complex-heading-regexp-format
16022 (regexp-quote heading)) nil t)
16023 (if pos-only
16024 (match-beginning 0)
16025 (move-marker (make-marker) (match-beginning 0)))))))))
16027 (defun org-find-exact-heading-in-directory (heading &optional dir)
16028 "Find Org node headline HEADING in all .org files in directory DIR.
16029 When the target headline is found, return a marker to this location."
16030 (let ((files (directory-files (or dir default-directory)
16031 nil "\\`[^.#].*\\.org\\'"))
16032 file visiting m buffer)
16033 (catch 'found
16034 (while (setq file (pop files))
16035 (message "trying %s" file)
16036 (setq visiting (org-find-base-buffer-visiting file))
16037 (setq buffer (or visiting (find-file-noselect file)))
16038 (setq m (org-find-exact-headline-in-buffer
16039 heading buffer))
16040 (when (and (not m) (not visiting)) (kill-buffer buffer))
16041 (and m (throw 'found m))))))
16043 (defun org-find-entry-with-id (ident)
16044 "Locate the entry that contains the ID property with exact value IDENT.
16045 IDENT can be a string, a symbol or a number, this function will search for
16046 the string representation of it.
16047 Return the position where this entry starts, or nil if there is no such entry."
16048 (interactive "sID: ")
16049 (let ((id (cond
16050 ((stringp ident) ident)
16051 ((symbol-name ident) (symbol-name ident))
16052 ((numberp ident) (number-to-string ident))
16053 (t (error "IDENT %s must be a string, symbol or number" ident))))
16054 (case-fold-search nil))
16055 (save-excursion
16056 (save-restriction
16057 (widen)
16058 (goto-char (point-min))
16059 (when (re-search-forward
16060 (concat "^[ \t]*:ID:[ \t]+" (regexp-quote id) "[ \t]*$")
16061 nil t)
16062 (org-back-to-heading t)
16063 (point))))))
16065 ;;;; Timestamps
16067 (defvar org-last-changed-timestamp nil)
16068 (defvar org-last-inserted-timestamp nil
16069 "The last time stamp inserted with `org-insert-time-stamp'.")
16070 (defvar org-ts-what) ; dynamically scoped parameter
16072 (defun org-time-stamp (arg &optional inactive)
16073 "Prompt for a date/time and insert a time stamp.
16074 If the user specifies a time like HH:MM or if this command is
16075 called with at least one prefix argument, the time stamp contains
16076 the date and the time. Otherwise, only the date is be included.
16078 All parts of a date not specified by the user is filled in from
16079 the current date/time. So if you just press return without
16080 typing anything, the time stamp will represent the current
16081 date/time.
16083 If there is already a timestamp at the cursor, it will be
16084 modified.
16086 With two universal prefix arguments, insert an active timestamp
16087 with the current time without prompting the user.
16089 When called from lisp, the timestamp is inactive if INACTIVE is
16090 non-nil."
16091 (interactive "P")
16092 (let* ((ts nil)
16093 (default-time
16094 ;; Default time is either today, or, when entering a range,
16095 ;; the range start.
16096 (if (or (and (org-at-timestamp-p t) (setq ts (match-string 0)))
16097 (save-excursion
16098 (re-search-backward
16099 (concat org-ts-regexp "--?-?\\=") ; 1-3 minuses
16100 (- (point) 20) t)))
16101 (apply 'encode-time (org-parse-time-string (match-string 1)))
16102 (current-time)))
16103 (default-input (and ts (org-get-compact-tod ts)))
16104 (repeater (save-excursion
16105 (save-match-data
16106 (beginning-of-line)
16107 (when (re-search-forward
16108 "\\([.+-]+[0-9]+[hdwmy] ?\\)+" ;;\\(?:[/ ][-+]?[0-9]+[hdwmy]\\)?\\) ?"
16109 (save-excursion (progn (end-of-line) (point))) t)
16110 (match-string 0)))))
16111 org-time-was-given org-end-time-was-given time)
16112 (cond
16113 ((and (org-at-timestamp-p t)
16114 (memq last-command '(org-time-stamp org-time-stamp-inactive))
16115 (memq this-command '(org-time-stamp org-time-stamp-inactive)))
16116 (insert "--")
16117 (setq time (let ((this-command this-command))
16118 (org-read-date arg 'totime nil nil
16119 default-time default-input inactive)))
16120 (org-insert-time-stamp time (or org-time-was-given arg) inactive))
16121 ((org-at-timestamp-p t)
16122 (setq time (let ((this-command this-command))
16123 (org-read-date arg 'totime nil nil default-time default-input inactive)))
16124 (when (org-at-timestamp-p t) ; just to get the match data
16125 ; (setq inactive (eq (char-after (match-beginning 0)) ?\[))
16126 (replace-match "")
16127 (setq org-last-changed-timestamp
16128 (org-insert-time-stamp
16129 time (or org-time-was-given arg)
16130 inactive nil nil (list org-end-time-was-given)))
16131 (when repeater (goto-char (1- (point))) (insert " " repeater)
16132 (setq org-last-changed-timestamp
16133 (concat (substring org-last-inserted-timestamp 0 -1)
16134 " " repeater ">"))))
16135 (message "Timestamp updated"))
16136 ((equal arg '(16))
16137 (org-insert-time-stamp (current-time) t inactive))
16139 (setq time (let ((this-command this-command))
16140 (org-read-date arg 'totime nil nil default-time default-input inactive)))
16141 (org-insert-time-stamp time (or org-time-was-given arg) inactive
16142 nil nil (list org-end-time-was-given))))))
16144 ;; FIXME: can we use this for something else, like computing time differences?
16145 (defun org-get-compact-tod (s)
16146 (when (string-match "\\(\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)\\(-\\(\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)\\)?" s)
16147 (let* ((t1 (match-string 1 s))
16148 (h1 (string-to-number (match-string 2 s)))
16149 (m1 (string-to-number (match-string 3 s)))
16150 (t2 (and (match-end 4) (match-string 5 s)))
16151 (h2 (and t2 (string-to-number (match-string 6 s))))
16152 (m2 (and t2 (string-to-number (match-string 7 s))))
16153 dh dm)
16154 (if (not t2)
16156 (setq dh (- h2 h1) dm (- m2 m1))
16157 (if (< dm 0) (setq dm (+ dm 60) dh (1- dh)))
16158 (concat t1 "+" (number-to-string dh)
16159 (and (/= 0 dm) (format ":%02d" dm)))))))
16161 (defun org-time-stamp-inactive (&optional arg)
16162 "Insert an inactive time stamp.
16163 An inactive time stamp is enclosed in square brackets instead of angle
16164 brackets. It is inactive in the sense that it does not trigger agenda entries,
16165 does not link to the calendar and cannot be changed with the S-cursor keys.
16166 So these are more for recording a certain time/date."
16167 (interactive "P")
16168 (org-time-stamp arg 'inactive))
16170 (defvar org-date-ovl (make-overlay 1 1))
16171 (overlay-put org-date-ovl 'face 'org-date-selected)
16172 (org-detach-overlay org-date-ovl)
16174 (defvar org-ans1) ; dynamically scoped parameter
16175 (defvar org-ans2) ; dynamically scoped parameter
16177 (defvar org-plain-time-of-day-regexp) ; defined below
16179 (defvar org-overriding-default-time nil) ; dynamically scoped
16180 (defvar org-read-date-overlay nil)
16181 (defvar org-dcst nil) ; dynamically scoped
16182 (defvar org-read-date-history nil)
16183 (defvar org-read-date-final-answer nil)
16184 (defvar org-read-date-analyze-futurep nil)
16185 (defvar org-read-date-analyze-forced-year nil)
16186 (defvar org-read-date-inactive)
16188 (defvar org-read-date-minibuffer-local-map
16189 (let* ((org-replace-disputed-keys nil)
16190 (map (make-sparse-keymap)))
16191 (set-keymap-parent map minibuffer-local-map)
16192 (org-defkey map (kbd ".")
16193 (lambda () (interactive)
16194 ;; Are we at the beginning of the prompt?
16195 (if (looking-back "^[^:]+: ")
16196 (org-eval-in-calendar '(calendar-goto-today))
16197 (insert "."))))
16198 (org-defkey map (kbd "C-.")
16199 (lambda () (interactive)
16200 (org-eval-in-calendar '(calendar-goto-today))))
16201 (org-defkey map [(meta shift left)]
16202 (lambda () (interactive)
16203 (org-eval-in-calendar '(calendar-backward-month 1))))
16204 (org-defkey map [(meta shift right)]
16205 (lambda () (interactive)
16206 (org-eval-in-calendar '(calendar-forward-month 1))))
16207 (org-defkey map [(meta shift up)]
16208 (lambda () (interactive)
16209 (org-eval-in-calendar '(calendar-backward-year 1))))
16210 (org-defkey map [(meta shift down)]
16211 (lambda () (interactive)
16212 (org-eval-in-calendar '(calendar-forward-year 1))))
16213 (org-defkey map [?\e (shift left)]
16214 (lambda () (interactive)
16215 (org-eval-in-calendar '(calendar-backward-month 1))))
16216 (org-defkey map [?\e (shift right)]
16217 (lambda () (interactive)
16218 (org-eval-in-calendar '(calendar-forward-month 1))))
16219 (org-defkey map [?\e (shift up)]
16220 (lambda () (interactive)
16221 (org-eval-in-calendar '(calendar-backward-year 1))))
16222 (org-defkey map [?\e (shift down)]
16223 (lambda () (interactive)
16224 (org-eval-in-calendar '(calendar-forward-year 1))))
16225 (org-defkey map [(shift up)]
16226 (lambda () (interactive)
16227 (org-eval-in-calendar '(calendar-backward-week 1))))
16228 (org-defkey map [(shift down)]
16229 (lambda () (interactive)
16230 (org-eval-in-calendar '(calendar-forward-week 1))))
16231 (org-defkey map [(shift left)]
16232 (lambda () (interactive)
16233 (org-eval-in-calendar '(calendar-backward-day 1))))
16234 (org-defkey map [(shift right)]
16235 (lambda () (interactive)
16236 (org-eval-in-calendar '(calendar-forward-day 1))))
16237 (org-defkey map "!"
16238 (lambda () (interactive)
16239 (org-eval-in-calendar '(diary-view-entries))
16240 (message "")))
16241 (org-defkey map ">"
16242 (lambda () (interactive)
16243 (org-eval-in-calendar '(scroll-calendar-left 1))))
16244 (org-defkey map "<"
16245 (lambda () (interactive)
16246 (org-eval-in-calendar '(scroll-calendar-right 1))))
16247 (org-defkey map "\C-v"
16248 (lambda () (interactive)
16249 (org-eval-in-calendar
16250 '(calendar-scroll-left-three-months 1))))
16251 (org-defkey map "\M-v"
16252 (lambda () (interactive)
16253 (org-eval-in-calendar
16254 '(calendar-scroll-right-three-months 1))))
16255 map)
16256 "Keymap for minibuffer commands when using `org-read-date'.")
16258 (defvar org-def)
16259 (defvar org-defdecode)
16260 (defvar org-with-time)
16262 (defun org-read-date (&optional org-with-time to-time from-string prompt
16263 default-time default-input inactive)
16264 "Read a date, possibly a time, and make things smooth for the user.
16265 The prompt will suggest to enter an ISO date, but you can also enter anything
16266 which will at least partially be understood by `parse-time-string'.
16267 Unrecognized parts of the date will default to the current day, month, year,
16268 hour and minute. If this command is called to replace a timestamp at point,
16269 or to enter the second timestamp of a range, the default time is taken
16270 from the existing stamp. Furthermore, the command prefers the future,
16271 so if you are giving a date where the year is not given, and the day-month
16272 combination is already past in the current year, it will assume you
16273 mean next year. For details, see the manual. A few examples:
16275 3-2-5 --> 2003-02-05
16276 feb 15 --> currentyear-02-15
16277 2/15 --> currentyear-02-15
16278 sep 12 9 --> 2009-09-12
16279 12:45 --> today 12:45
16280 22 sept 0:34 --> currentyear-09-22 0:34
16281 12 --> currentyear-currentmonth-12
16282 Fri --> nearest Friday after today
16283 -Tue --> last Tuesday
16284 etc.
16286 Furthermore you can specify a relative date by giving, as the *first* thing
16287 in the input: a plus/minus sign, a number and a letter [hdwmy] to indicate
16288 change in days weeks, months, years.
16289 With a single plus or minus, the date is relative to today. With a double
16290 plus or minus, it is relative to the date in DEFAULT-TIME. E.g.
16291 +4d --> four days from today
16292 +4 --> same as above
16293 +2w --> two weeks from today
16294 ++5 --> five days from default date
16296 The function understands only English month and weekday abbreviations.
16298 While prompting, a calendar is popped up - you can also select the
16299 date with the mouse (button 1). The calendar shows a period of three
16300 months. To scroll it to other months, use the keys `>' and `<'.
16301 If you don't like the calendar, turn it off with
16302 \(setq org-read-date-popup-calendar nil)
16304 With optional argument TO-TIME, the date will immediately be converted
16305 to an internal time.
16306 With an optional argument ORG-WITH-TIME, the prompt will suggest to
16307 also insert a time. Note that when ORG-WITH-TIME is not set, you can
16308 still enter a time, and this function will inform the calling routine
16309 about this change. The calling routine may then choose to change the
16310 format used to insert the time stamp into the buffer to include the time.
16311 With optional argument FROM-STRING, read from this string instead from
16312 the user. PROMPT can overwrite the default prompt. DEFAULT-TIME is
16313 the time/date that is used for everything that is not specified by the
16314 user."
16315 (require 'parse-time)
16316 (let* ((org-time-stamp-rounding-minutes
16317 (if (equal org-with-time '(16)) '(0 0) org-time-stamp-rounding-minutes))
16318 (org-dcst org-display-custom-times)
16319 (ct (org-current-time))
16320 (org-def (or org-overriding-default-time default-time ct))
16321 (org-defdecode (decode-time org-def))
16322 (dummy (progn
16323 (when (< (nth 2 org-defdecode) org-extend-today-until)
16324 (setcar (nthcdr 2 org-defdecode) -1)
16325 (setcar (nthcdr 1 org-defdecode) 59)
16326 (setq org-def (apply 'encode-time org-defdecode)
16327 org-defdecode (decode-time org-def)))))
16328 (mouse-autoselect-window nil) ; Don't let the mouse jump
16329 (calendar-frame-setup nil)
16330 (calendar-setup nil)
16331 (calendar-move-hook nil)
16332 (calendar-view-diary-initially-flag nil)
16333 (calendar-view-holidays-initially-flag nil)
16334 (timestr (format-time-string
16335 (if org-with-time "%Y-%m-%d %H:%M" "%Y-%m-%d") org-def))
16336 (prompt (concat (if prompt (concat prompt " ") "")
16337 (format "Date+time [%s]: " timestr)))
16338 ans (org-ans0 "") org-ans1 org-ans2 final)
16340 (cond
16341 (from-string (setq ans from-string))
16342 (org-read-date-popup-calendar
16343 (save-excursion
16344 (save-window-excursion
16345 (calendar)
16346 (org-eval-in-calendar '(setq cursor-type nil) t)
16347 (unwind-protect
16348 (progn
16349 (calendar-forward-day (- (time-to-days org-def)
16350 (calendar-absolute-from-gregorian
16351 (calendar-current-date))))
16352 (org-eval-in-calendar nil t)
16353 (let* ((old-map (current-local-map))
16354 (map (copy-keymap calendar-mode-map))
16355 (minibuffer-local-map
16356 (copy-keymap org-read-date-minibuffer-local-map)))
16357 (org-defkey map (kbd "RET") 'org-calendar-select)
16358 (org-defkey map [mouse-1] 'org-calendar-select-mouse)
16359 (org-defkey map [mouse-2] 'org-calendar-select-mouse)
16360 (unwind-protect
16361 (progn
16362 (use-local-map map)
16363 (setq org-read-date-inactive inactive)
16364 (add-hook 'post-command-hook 'org-read-date-display)
16365 (setq org-ans0 (read-string prompt default-input
16366 'org-read-date-history nil))
16367 ;; org-ans0: from prompt
16368 ;; org-ans1: from mouse click
16369 ;; org-ans2: from calendar motion
16370 (setq ans (concat org-ans0 " " (or org-ans1 org-ans2))))
16371 (remove-hook 'post-command-hook 'org-read-date-display)
16372 (use-local-map old-map)
16373 (when org-read-date-overlay
16374 (delete-overlay org-read-date-overlay)
16375 (setq org-read-date-overlay nil)))))
16376 (bury-buffer "*Calendar*")))))
16378 (t ; Naked prompt only
16379 (unwind-protect
16380 (setq ans (read-string prompt default-input
16381 'org-read-date-history timestr))
16382 (when org-read-date-overlay
16383 (delete-overlay org-read-date-overlay)
16384 (setq org-read-date-overlay nil)))))
16386 (setq final (org-read-date-analyze ans org-def org-defdecode))
16388 (when org-read-date-analyze-forced-year
16389 (message "Year was forced into %s"
16390 (if org-read-date-force-compatible-dates
16391 "compatible range (1970-2037)"
16392 "range representable on this machine"))
16393 (ding))
16395 ;; One round trip to get rid of 34th of August and stuff like that....
16396 (setq final (decode-time (apply 'encode-time final)))
16398 (setq org-read-date-final-answer ans)
16400 (if to-time
16401 (apply 'encode-time final)
16402 (if (and (boundp 'org-time-was-given) org-time-was-given)
16403 (format "%04d-%02d-%02d %02d:%02d"
16404 (nth 5 final) (nth 4 final) (nth 3 final)
16405 (nth 2 final) (nth 1 final))
16406 (format "%04d-%02d-%02d" (nth 5 final) (nth 4 final) (nth 3 final))))))
16408 (defun org-read-date-display ()
16409 "Display the current date prompt interpretation in the minibuffer."
16410 (when org-read-date-display-live
16411 (when org-read-date-overlay
16412 (delete-overlay org-read-date-overlay))
16413 (when (minibufferp (current-buffer))
16414 (save-excursion
16415 (end-of-line 1)
16416 (while (not (equal (buffer-substring
16417 (max (point-min) (- (point) 4)) (point))
16418 " "))
16419 (insert " ")))
16420 (let* ((ans (concat (buffer-substring (point-at-bol) (point-max))
16421 " " (or org-ans1 org-ans2)))
16422 (org-end-time-was-given nil)
16423 (f (org-read-date-analyze ans org-def org-defdecode))
16424 (fmts (if org-dcst
16425 org-time-stamp-custom-formats
16426 org-time-stamp-formats))
16427 (fmt (if (or org-with-time
16428 (and (boundp 'org-time-was-given) org-time-was-given))
16429 (cdr fmts)
16430 (car fmts)))
16431 (txt (format-time-string fmt (apply 'encode-time f)))
16432 (txt (if org-read-date-inactive (concat "[" (substring txt 1 -1) "]") txt))
16433 (txt (concat "=> " txt)))
16434 (when (and org-end-time-was-given
16435 (string-match org-plain-time-of-day-regexp txt))
16436 (setq txt (concat (substring txt 0 (match-end 0)) "-"
16437 org-end-time-was-given
16438 (substring txt (match-end 0)))))
16439 (when org-read-date-analyze-futurep
16440 (setq txt (concat txt " (=>F)")))
16441 (setq org-read-date-overlay
16442 (make-overlay (1- (point-at-eol)) (point-at-eol)))
16443 (org-overlay-display org-read-date-overlay txt 'secondary-selection)))))
16445 (defun org-read-date-analyze (ans org-def org-defdecode)
16446 "Analyze the combined answer of the date prompt."
16447 ;; FIXME: cleanup and comment
16448 (let ((nowdecode (decode-time (current-time)))
16449 delta deltan deltaw deltadef year month day
16450 hour minute second wday pm h2 m2 tl wday1
16451 iso-year iso-weekday iso-week iso-year iso-date futurep kill-year)
16452 (setq org-read-date-analyze-futurep nil
16453 org-read-date-analyze-forced-year nil)
16454 (when (string-match "\\`[ \t]*\\.[ \t]*\\'" ans)
16455 (setq ans "+0"))
16457 (when (setq delta (org-read-date-get-relative ans (current-time) org-def))
16458 (setq ans (replace-match "" t t ans)
16459 deltan (car delta)
16460 deltaw (nth 1 delta)
16461 deltadef (nth 2 delta)))
16463 ;; Check if there is an iso week date in there. If yes, store the
16464 ;; info and postpone interpreting it until the rest of the parsing
16465 ;; is done.
16466 (when (string-match "\\<\\(?:\\([0-9]+\\)-\\)?[wW]\\([0-9]\\{1,2\\}\\)\\(?:-\\([0-6]\\)\\)?\\([ \t]\\|$\\)" ans)
16467 (setq iso-year (if (match-end 1)
16468 (org-small-year-to-year
16469 (string-to-number (match-string 1 ans))))
16470 iso-weekday (if (match-end 3)
16471 (string-to-number (match-string 3 ans)))
16472 iso-week (string-to-number (match-string 2 ans)))
16473 (setq ans (replace-match "" t t ans)))
16475 ;; Help matching ISO dates with single digit month or day, like 2006-8-11.
16476 (when (string-match
16477 "^ *\\(\\([0-9]+\\)-\\)?\\([0-1]?[0-9]\\)-\\([0-3]?[0-9]\\)\\([^-0-9]\\|$\\)" ans)
16478 (setq year (if (match-end 2)
16479 (string-to-number (match-string 2 ans))
16480 (progn (setq kill-year t)
16481 (string-to-number (format-time-string "%Y"))))
16482 month (string-to-number (match-string 3 ans))
16483 day (string-to-number (match-string 4 ans)))
16484 (if (< year 100) (setq year (+ 2000 year)))
16485 (setq ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
16486 t nil ans)))
16488 ;; Help matching dotted european dates
16489 (when (string-match
16490 "^ *\\(3[01]\\|0?[1-9]\\|[12][0-9]\\)\\. ?\\(0?[1-9]\\|1[012]\\)\\.\\( ?[1-9][0-9]\\{3\\}\\)?" ans)
16491 (setq year (if (match-end 3) (string-to-number (match-string 3 ans))
16492 (setq kill-year t)
16493 (string-to-number (format-time-string "%Y")))
16494 day (string-to-number (match-string 1 ans))
16495 month (string-to-number (match-string 2 ans))
16496 ans (replace-match (format "%04d-%02d-%02d" year month day)
16497 t nil ans)))
16499 ;; Help matching american dates, like 5/30 or 5/30/7
16500 (when (string-match
16501 "^ *\\(0?[1-9]\\|1[012]\\)/\\(0?[1-9]\\|[12][0-9]\\|3[01]\\)\\(/\\([0-9]+\\)\\)?\\([^/0-9]\\|$\\)" ans)
16502 (setq year (if (match-end 4)
16503 (string-to-number (match-string 4 ans))
16504 (progn (setq kill-year t)
16505 (string-to-number (format-time-string "%Y"))))
16506 month (string-to-number (match-string 1 ans))
16507 day (string-to-number (match-string 2 ans)))
16508 (if (< year 100) (setq year (+ 2000 year)))
16509 (setq ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
16510 t nil ans)))
16511 ;; Help matching am/pm times, because `parse-time-string' does not do that.
16512 ;; If there is a time with am/pm, and *no* time without it, we convert
16513 ;; so that matching will be successful.
16514 (loop for i from 1 to 2 do ; twice, for end time as well
16515 (when (and (not (string-match "\\(\\`\\|[^+]\\)[012]?[0-9]:[0-9][0-9]\\([ \t\n]\\|$\\)" ans))
16516 (string-match "\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\(am\\|AM\\|pm\\|PM\\)\\>" ans))
16517 (setq hour (string-to-number (match-string 1 ans))
16518 minute (if (match-end 3)
16519 (string-to-number (match-string 3 ans))
16521 pm (equal ?p
16522 (string-to-char (downcase (match-string 4 ans)))))
16523 (if (and (= hour 12) (not pm))
16524 (setq hour 0)
16525 (if (and pm (< hour 12)) (setq hour (+ 12 hour))))
16526 (setq ans (replace-match (format "%02d:%02d" hour minute)
16527 t t ans))))
16529 ;; Check if a time range is given as a duration
16530 (when (string-match "\\([012]?[0-9]\\):\\([0-6][0-9]\\)\\+\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?" ans)
16531 (setq hour (string-to-number (match-string 1 ans))
16532 h2 (+ hour (string-to-number (match-string 3 ans)))
16533 minute (string-to-number (match-string 2 ans))
16534 m2 (+ minute (if (match-end 5) (string-to-number
16535 (match-string 5 ans))0)))
16536 (if (>= m2 60) (setq h2 (1+ h2) m2 (- m2 60)))
16537 (setq ans (replace-match (format "%02d:%02d-%02d:%02d" hour minute h2 m2)
16538 t t ans)))
16540 ;; Check if there is a time range
16541 (when (boundp 'org-end-time-was-given)
16542 (setq org-time-was-given nil)
16543 (when (and (string-match org-plain-time-of-day-regexp ans)
16544 (match-end 8))
16545 (setq org-end-time-was-given (match-string 8 ans))
16546 (setq ans (concat (substring ans 0 (match-beginning 7))
16547 (substring ans (match-end 7))))))
16549 (setq tl (parse-time-string ans)
16550 day (or (nth 3 tl) (nth 3 org-defdecode))
16551 month (or (nth 4 tl)
16552 (if (and org-read-date-prefer-future
16553 (nth 3 tl) (< (nth 3 tl) (nth 3 nowdecode)))
16554 (prog1 (1+ (nth 4 nowdecode)) (setq futurep t))
16555 (nth 4 org-defdecode)))
16556 year (or (and (not kill-year) (nth 5 tl))
16557 (if (and org-read-date-prefer-future
16558 (nth 4 tl) (< (nth 4 tl) (nth 4 nowdecode)))
16559 (prog1 (1+ (nth 5 nowdecode)) (setq futurep t))
16560 (nth 5 org-defdecode)))
16561 hour (or (nth 2 tl) (nth 2 org-defdecode))
16562 minute (or (nth 1 tl) (nth 1 org-defdecode))
16563 second (or (nth 0 tl) 0)
16564 wday (nth 6 tl))
16566 (when (and (eq org-read-date-prefer-future 'time)
16567 (not (nth 3 tl)) (not (nth 4 tl)) (not (nth 5 tl))
16568 (equal day (nth 3 nowdecode))
16569 (equal month (nth 4 nowdecode))
16570 (equal year (nth 5 nowdecode))
16571 (nth 2 tl)
16572 (or (< (nth 2 tl) (nth 2 nowdecode))
16573 (and (= (nth 2 tl) (nth 2 nowdecode))
16574 (nth 1 tl)
16575 (< (nth 1 tl) (nth 1 nowdecode)))))
16576 (setq day (1+ day)
16577 futurep t))
16579 ;; Special date definitions below
16580 (cond
16581 (iso-week
16582 ;; There was an iso week
16583 (require 'cal-iso)
16584 (setq futurep nil)
16585 (setq year (or iso-year year)
16586 day (or iso-weekday wday 1)
16587 wday nil ; to make sure that the trigger below does not match
16588 iso-date (calendar-gregorian-from-absolute
16589 (calendar-absolute-from-iso
16590 (list iso-week day year))))
16591 ; FIXME: Should we also push ISO weeks into the future?
16592 ; (when (and org-read-date-prefer-future
16593 ; (not iso-year)
16594 ; (< (calendar-absolute-from-gregorian iso-date)
16595 ; (time-to-days (current-time))))
16596 ; (setq year (1+ year)
16597 ; iso-date (calendar-gregorian-from-absolute
16598 ; (calendar-absolute-from-iso
16599 ; (list iso-week day year)))))
16600 (setq month (car iso-date)
16601 year (nth 2 iso-date)
16602 day (nth 1 iso-date)))
16603 (deltan
16604 (setq futurep nil)
16605 (unless deltadef
16606 (let ((now (decode-time (current-time))))
16607 (setq day (nth 3 now) month (nth 4 now) year (nth 5 now))))
16608 (cond ((member deltaw '("d" "")) (setq day (+ day deltan)))
16609 ((equal deltaw "w") (setq day (+ day (* 7 deltan))))
16610 ((equal deltaw "m") (setq month (+ month deltan)))
16611 ((equal deltaw "y") (setq year (+ year deltan)))))
16612 ((and wday (not (nth 3 tl)))
16613 ;; Weekday was given, but no day, so pick that day in the week
16614 ;; on or after the derived date.
16615 (setq wday1 (nth 6 (decode-time (encode-time 0 0 0 day month year))))
16616 (unless (equal wday wday1)
16617 (setq day (+ day (% (- wday wday1 -7) 7))))))
16618 (if (and (boundp 'org-time-was-given)
16619 (nth 2 tl))
16620 (setq org-time-was-given t))
16621 (if (< year 100) (setq year (+ 2000 year)))
16622 ;; Check of the date is representable
16623 (if org-read-date-force-compatible-dates
16624 (progn
16625 (if (< year 1970)
16626 (setq year 1970 org-read-date-analyze-forced-year t))
16627 (if (> year 2037)
16628 (setq year 2037 org-read-date-analyze-forced-year t)))
16629 (condition-case nil
16630 (ignore (encode-time second minute hour day month year))
16631 (error
16632 (setq year (nth 5 org-defdecode))
16633 (setq org-read-date-analyze-forced-year t))))
16634 (setq org-read-date-analyze-futurep futurep)
16635 (list second minute hour day month year)))
16637 (defvar parse-time-weekdays)
16638 (defun org-read-date-get-relative (s today default)
16639 "Check string S for special relative date string.
16640 TODAY and DEFAULT are internal times, for today and for a default.
16641 Return shift list (N what def-flag)
16642 WHAT is \"d\", \"w\", \"m\", or \"y\" for day, week, month, year.
16643 N is the number of WHATs to shift.
16644 DEF-FLAG is t when a double ++ or -- indicates shift relative to
16645 the DEFAULT date rather than TODAY."
16646 (require 'parse-time)
16647 (when (and
16648 (string-match
16649 (concat
16650 "\\`[ \t]*\\([-+]\\{0,2\\}\\)"
16651 "\\([0-9]+\\)?"
16652 "\\([hdwmy]\\|\\(" (mapconcat 'car parse-time-weekdays "\\|") "\\)\\)?"
16653 "\\([ \t]\\|$\\)") s)
16654 (or (> (match-end 1) (match-beginning 1)) (match-end 4)))
16655 (let* ((dir (if (> (match-end 1) (match-beginning 1))
16656 (string-to-char (substring (match-string 1 s) -1))
16657 ?+))
16658 (rel (and (match-end 1) (= 2 (- (match-end 1) (match-beginning 1)))))
16659 (n (if (match-end 2) (string-to-number (match-string 2 s)) 1))
16660 (what (if (match-end 3) (match-string 3 s) "d"))
16661 (wday1 (cdr (assoc (downcase what) parse-time-weekdays)))
16662 (date (if rel default today))
16663 (wday (nth 6 (decode-time date)))
16664 delta)
16665 (if wday1
16666 (progn
16667 (setq delta (mod (+ 7 (- wday1 wday)) 7))
16668 (if (= delta 0) (setq delta 7))
16669 (if (= dir ?-)
16670 (progn
16671 (setq delta (- delta 7))
16672 (if (= delta 0) (setq delta -7))))
16673 (if (> n 1) (setq delta (+ delta (* (1- n) (if (= dir ?-) -7 7)))))
16674 (list delta "d" rel))
16675 (list (* n (if (= dir ?-) -1 1)) what rel)))))
16677 (defun org-order-calendar-date-args (arg1 arg2 arg3)
16678 "Turn a user-specified date into the internal representation.
16679 The internal representation needed by the calendar is (month day year).
16680 This is a wrapper to handle the brain-dead convention in calendar that
16681 user function argument order change dependent on argument order."
16682 (if (boundp 'calendar-date-style)
16683 (cond
16684 ((eq calendar-date-style 'american)
16685 (list arg1 arg2 arg3))
16686 ((eq calendar-date-style 'european)
16687 (list arg2 arg1 arg3))
16688 ((eq calendar-date-style 'iso)
16689 (list arg2 arg3 arg1)))
16690 (org-no-warnings ;; european-calendar-style is obsolete as of version 23.1
16691 (if (org-bound-and-true-p european-calendar-style)
16692 (list arg2 arg1 arg3)
16693 (list arg1 arg2 arg3)))))
16695 (defun org-eval-in-calendar (form &optional keepdate)
16696 "Eval FORM in the calendar window and return to current window.
16697 When KEEPDATE is non-nil, update `org-ans2' from the cursor date,
16698 otherwise stick to the current value of `org-ans2'."
16699 (let ((sf (selected-frame))
16700 (sw (selected-window)))
16701 (select-window (get-buffer-window "*Calendar*" t))
16702 (eval form)
16703 (when (and (not keepdate) (calendar-cursor-to-date))
16704 (let* ((date (calendar-cursor-to-date))
16705 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
16706 (setq org-ans2 (format-time-string "%Y-%m-%d" time))))
16707 (move-overlay org-date-ovl (1- (point)) (1+ (point)) (current-buffer))
16708 (select-window sw)
16709 (org-select-frame-set-input-focus sf)))
16711 (defun org-calendar-select ()
16712 "Return to `org-read-date' with the date currently selected.
16713 This is used by `org-read-date' in a temporary keymap for the calendar buffer."
16714 (interactive)
16715 (when (calendar-cursor-to-date)
16716 (let* ((date (calendar-cursor-to-date))
16717 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
16718 (setq org-ans1 (format-time-string "%Y-%m-%d" time)))
16719 (if (active-minibuffer-window) (exit-minibuffer))))
16721 (defun org-insert-time-stamp (time &optional with-hm inactive pre post extra)
16722 "Insert a date stamp for the date given by the internal TIME.
16723 WITH-HM means use the stamp format that includes the time of the day.
16724 INACTIVE means use square brackets instead of angular ones, so that the
16725 stamp will not contribute to the agenda.
16726 PRE and POST are optional strings to be inserted before and after the
16727 stamp.
16728 The command returns the inserted time stamp."
16729 (let ((fmt (funcall (if with-hm 'cdr 'car) org-time-stamp-formats))
16730 stamp)
16731 (if inactive (setq fmt (concat "[" (substring fmt 1 -1) "]")))
16732 (insert-before-markers (or pre ""))
16733 (when (listp extra)
16734 (setq extra (car extra))
16735 (if (and (stringp extra)
16736 (string-match "\\([0-9]+\\):\\([0-9]+\\)" extra))
16737 (setq extra (format "-%02d:%02d"
16738 (string-to-number (match-string 1 extra))
16739 (string-to-number (match-string 2 extra))))
16740 (setq extra nil)))
16741 (when extra
16742 (setq fmt (concat (substring fmt 0 -1) extra (substring fmt -1))))
16743 (insert-before-markers (setq stamp (format-time-string fmt time)))
16744 (insert-before-markers (or post ""))
16745 (setq org-last-inserted-timestamp stamp)))
16747 (defun org-toggle-time-stamp-overlays ()
16748 "Toggle the use of custom time stamp formats."
16749 (interactive)
16750 (setq org-display-custom-times (not org-display-custom-times))
16751 (unless org-display-custom-times
16752 (let ((p (point-min)) (bmp (buffer-modified-p)))
16753 (while (setq p (next-single-property-change p 'display))
16754 (if (and (get-text-property p 'display)
16755 (eq (get-text-property p 'face) 'org-date))
16756 (remove-text-properties
16757 p (setq p (next-single-property-change p 'display))
16758 '(display t))))
16759 (set-buffer-modified-p bmp)))
16760 (if (featurep 'xemacs)
16761 (remove-text-properties (point-min) (point-max) '(end-glyph t)))
16762 (org-restart-font-lock)
16763 (setq org-table-may-need-update t)
16764 (if org-display-custom-times
16765 (message "Time stamps are overlaid with custom format")
16766 (message "Time stamp overlays removed")))
16768 (defun org-display-custom-time (beg end)
16769 "Overlay modified time stamp format over timestamp between BEG and END."
16770 (let* ((ts (buffer-substring beg end))
16771 t1 w1 with-hm tf time str w2 (off 0))
16772 (save-match-data
16773 (setq t1 (org-parse-time-string ts t))
16774 (if (string-match "\\(-[0-9]+:[0-9]+\\)?\\( [.+]?\\+[0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)?\\'" ts)
16775 (setq off (- (match-end 0) (match-beginning 0)))))
16776 (setq end (- end off))
16777 (setq w1 (- end beg)
16778 with-hm (and (nth 1 t1) (nth 2 t1))
16779 tf (funcall (if with-hm 'cdr 'car) org-time-stamp-custom-formats)
16780 time (org-fix-decoded-time t1)
16781 str (org-add-props
16782 (format-time-string
16783 (substring tf 1 -1) (apply 'encode-time time))
16784 nil 'mouse-face 'highlight)
16785 w2 (length str))
16786 (if (not (= w2 w1))
16787 (add-text-properties (1+ beg) (+ 2 beg)
16788 (list 'org-dwidth t 'org-dwidth-n (- w1 w2))))
16789 (if (featurep 'xemacs)
16790 (progn
16791 (put-text-property beg end 'invisible t)
16792 (put-text-property beg end 'end-glyph (make-glyph str)))
16793 (put-text-property beg end 'display str))))
16795 (defun org-translate-time (string)
16796 "Translate all timestamps in STRING to custom format.
16797 But do this only if the variable `org-display-custom-times' is set."
16798 (when org-display-custom-times
16799 (save-match-data
16800 (let* ((start 0)
16801 (re org-ts-regexp-both)
16802 t1 with-hm inactive tf time str beg end)
16803 (while (setq start (string-match re string start))
16804 (setq beg (match-beginning 0)
16805 end (match-end 0)
16806 t1 (save-match-data
16807 (org-parse-time-string (substring string beg end) t))
16808 with-hm (and (nth 1 t1) (nth 2 t1))
16809 inactive (equal (substring string beg (1+ beg)) "[")
16810 tf (funcall (if with-hm 'cdr 'car)
16811 org-time-stamp-custom-formats)
16812 time (org-fix-decoded-time t1)
16813 str (format-time-string
16814 (concat
16815 (if inactive "[" "<") (substring tf 1 -1)
16816 (if inactive "]" ">"))
16817 (apply 'encode-time time))
16818 string (replace-match str t t string)
16819 start (+ start (length str)))))))
16820 string)
16822 (defun org-fix-decoded-time (time)
16823 "Set 0 instead of nil for the first 6 elements of time.
16824 Don't touch the rest."
16825 (let ((n 0))
16826 (mapcar (lambda (x) (if (< (setq n (1+ n)) 7) (or x 0) x)) time)))
16828 (define-obsolete-function-alias 'org-days-to-time 'org-time-stamp-to-now "24.4")
16830 (defun org-time-stamp-to-now (timestamp-string &optional seconds)
16831 "Difference between TIMESTAMP-STRING and now in days.
16832 If SECONDS is non-nil, return the difference in seconds."
16833 (let ((fdiff (if seconds 'org-float-time 'time-to-days)))
16834 (- (funcall fdiff (org-time-string-to-time timestamp-string))
16835 (funcall fdiff (current-time)))))
16837 (defun org-deadline-close (timestamp-string &optional ndays)
16838 "Is the time in TIMESTAMP-STRING close to the current date?"
16839 (setq ndays (or ndays (org-get-wdays timestamp-string)))
16840 (and (< (org-time-stamp-to-now timestamp-string) ndays)
16841 (not (org-entry-is-done-p))))
16843 (defun org-get-wdays (ts &optional delay zero-delay)
16844 "Get the deadline lead time appropriate for timestring TS.
16845 When DELAY is non-nil, get the delay time for scheduled items
16846 instead of the deadline lead time. When ZERO-DELAY is non-nil
16847 and `org-scheduled-delay-days' is 0, enforce 0 as the delay,
16848 don't try to find the delay cookie in the scheduled timestamp."
16849 (let ((tv (if delay org-scheduled-delay-days
16850 org-deadline-warning-days)))
16851 (cond
16852 ((or (and delay (< tv 0))
16853 (and delay zero-delay (<= tv 0))
16854 (and (not delay) (<= tv 0)))
16855 ;; Enforce this value no matter what
16856 (- tv))
16857 ((string-match "-\\([0-9]+\\)\\([hdwmy]\\)\\(\\'\\|>\\| \\)" ts)
16858 ;; lead time is specified.
16859 (floor (* (string-to-number (match-string 1 ts))
16860 (cdr (assoc (match-string 2 ts)
16861 '(("d" . 1) ("w" . 7)
16862 ("m" . 30.4) ("y" . 365.25)
16863 ("h" . 0.041667)))))))
16864 ;; go for the default.
16865 (t tv))))
16867 (defun org-calendar-select-mouse (ev)
16868 "Return to `org-read-date' with the date currently selected.
16869 This is used by `org-read-date' in a temporary keymap for the calendar buffer."
16870 (interactive "e")
16871 (mouse-set-point ev)
16872 (when (calendar-cursor-to-date)
16873 (let* ((date (calendar-cursor-to-date))
16874 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
16875 (setq org-ans1 (format-time-string "%Y-%m-%d" time)))
16876 (if (active-minibuffer-window) (exit-minibuffer))))
16878 (defun org-check-deadlines (ndays)
16879 "Check if there are any deadlines due or past due.
16880 A deadline is considered due if it happens within `org-deadline-warning-days'
16881 days from today's date. If the deadline appears in an entry marked DONE,
16882 it is not shown. The prefix arg NDAYS can be used to test that many
16883 days. If the prefix is a raw \\[universal-argument] prefix, all deadlines are shown."
16884 (interactive "P")
16885 (let* ((org-warn-days
16886 (cond
16887 ((equal ndays '(4)) 100000)
16888 (ndays (prefix-numeric-value ndays))
16889 (t (abs org-deadline-warning-days))))
16890 (case-fold-search nil)
16891 (regexp (concat "\\<" org-deadline-string " *<\\([^>]+\\)>"))
16892 (callback
16893 (lambda () (org-deadline-close (match-string 1) org-warn-days))))
16895 (message "%d deadlines past-due or due within %d days"
16896 (org-occur regexp nil callback)
16897 org-warn-days)))
16899 (defsubst org-re-timestamp (type)
16900 "Return a regexp for timestamp TYPE.
16901 Allowed values for TYPE are:
16903 all: all timestamps
16904 active: only active timestamps (<...>)
16905 inactive: only inactive timestamps ([...])
16906 scheduled: only scheduled timestamps
16907 deadline: only deadline timestamps
16908 closed: only closed time-stamps
16910 When TYPE is nil, fall back on returning a regexp that matches
16911 both scheduled and deadline timestamps."
16912 (cond ((eq type 'all) "\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\}\\(?: +[^]+0-9> \n -]+\\)?\\(?: +[0-9]\\{1,2\\}:[0-9]\\{2\\}\\)?\\)")
16913 ((eq type 'active) org-ts-regexp)
16914 ((eq type 'inactive) "\\[\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^ \n>]*?\\)\\]")
16915 ((eq type 'scheduled) (concat "\\<" org-scheduled-string " *<\\([^>]+\\)>"))
16916 ((eq type 'deadline) (concat "\\<" org-deadline-string " *<\\([^>]+\\)>"))
16917 ((eq type 'closed) (concat org-closed-string " \\[\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^ \n>]*?\\)\\]"))
16918 ((eq type 'scheduled-or-deadline)
16919 (concat "\\<\\(?:" org-deadline-string "\\|" org-scheduled-string "\\) *<\\([^>]+\\)>"))))
16921 (defun org-check-before-date (date)
16922 "Check if there are deadlines or scheduled entries before DATE."
16923 (interactive (list (org-read-date)))
16924 (let ((case-fold-search nil)
16925 (regexp (org-re-timestamp org-ts-type))
16926 (callback
16927 (lambda () (time-less-p
16928 (org-time-string-to-time (match-string 1))
16929 (org-time-string-to-time date)))))
16930 (message "%d entries before %s"
16931 (org-occur regexp nil callback) date)))
16933 (defun org-check-after-date (date)
16934 "Check if there are deadlines or scheduled entries after DATE."
16935 (interactive (list (org-read-date)))
16936 (let ((case-fold-search nil)
16937 (regexp (org-re-timestamp org-ts-type))
16938 (callback
16939 (lambda () (not
16940 (time-less-p
16941 (org-time-string-to-time (match-string 1))
16942 (org-time-string-to-time date))))))
16943 (message "%d entries after %s"
16944 (org-occur regexp nil callback) date)))
16946 (defun org-check-dates-range (start-date end-date)
16947 "Check for deadlines/scheduled entries between START-DATE and END-DATE."
16948 (interactive (list (org-read-date nil nil nil "Range starts")
16949 (org-read-date nil nil nil "Range end")))
16950 (let ((case-fold-search nil)
16951 (regexp (org-re-timestamp org-ts-type))
16952 (callback
16953 (lambda ()
16954 (let ((match (match-string 1)))
16955 (and
16956 (not (time-less-p
16957 (org-time-string-to-time match)
16958 (org-time-string-to-time start-date)))
16959 (time-less-p
16960 (org-time-string-to-time match)
16961 (org-time-string-to-time end-date)))))))
16962 (message "%d entries between %s and %s"
16963 (org-occur regexp nil callback) start-date end-date)))
16965 (defun org-evaluate-time-range (&optional to-buffer)
16966 "Evaluate a time range by computing the difference between start and end.
16967 Normally the result is just printed in the echo area, but with prefix arg
16968 TO-BUFFER, the result is inserted just after the date stamp into the buffer.
16969 If the time range is actually in a table, the result is inserted into the
16970 next column.
16971 For time difference computation, a year is assumed to be exactly 365
16972 days in order to avoid rounding problems."
16973 (interactive "P")
16975 (org-clock-update-time-maybe)
16976 (save-excursion
16977 (unless (org-at-date-range-p t)
16978 (goto-char (point-at-bol))
16979 (re-search-forward org-tr-regexp-both (point-at-eol) t))
16980 (if (not (org-at-date-range-p t))
16981 (user-error "Not at a time-stamp range, and none found in current line")))
16982 (let* ((ts1 (match-string 1))
16983 (ts2 (match-string 2))
16984 (havetime (or (> (length ts1) 15) (> (length ts2) 15)))
16985 (match-end (match-end 0))
16986 (time1 (org-time-string-to-time ts1))
16987 (time2 (org-time-string-to-time ts2))
16988 (t1 (org-float-time time1))
16989 (t2 (org-float-time time2))
16990 (diff (abs (- t2 t1)))
16991 (negative (< (- t2 t1) 0))
16992 ;; (ys (floor (* 365 24 60 60)))
16993 (ds (* 24 60 60))
16994 (hs (* 60 60))
16995 (fy "%dy %dd %02d:%02d")
16996 (fy1 "%dy %dd")
16997 (fd "%dd %02d:%02d")
16998 (fd1 "%dd")
16999 (fh "%02d:%02d")
17000 y d h m align)
17001 (if havetime
17002 (setq ; y (floor (/ diff ys)) diff (mod diff ys)
17004 d (floor (/ diff ds)) diff (mod diff ds)
17005 h (floor (/ diff hs)) diff (mod diff hs)
17006 m (floor (/ diff 60)))
17007 (setq ; y (floor (/ diff ys)) diff (mod diff ys)
17009 d (floor (+ (/ diff ds) 0.5))
17010 h 0 m 0))
17011 (if (not to-buffer)
17012 (message "%s" (org-make-tdiff-string y d h m))
17013 (if (org-at-table-p)
17014 (progn
17015 (goto-char match-end)
17016 (setq align t)
17017 (and (looking-at " *|") (goto-char (match-end 0))))
17018 (goto-char match-end))
17019 (if (looking-at
17020 "\\( *-? *[0-9]+y\\)?\\( *[0-9]+d\\)? *[0-9][0-9]:[0-9][0-9]")
17021 (replace-match ""))
17022 (if negative (insert " -"))
17023 (if (> y 0) (insert " " (format (if havetime fy fy1) y d h m))
17024 (if (> d 0) (insert " " (format (if havetime fd fd1) d h m))
17025 (insert " " (format fh h m))))
17026 (if align (org-table-align))
17027 (message "Time difference inserted")))))
17029 (defun org-make-tdiff-string (y d h m)
17030 (let ((fmt "")
17031 (l nil))
17032 (if (> y 0) (setq fmt (concat fmt "%d year" (if (> y 1) "s" "") " ")
17033 l (push y l)))
17034 (if (> d 0) (setq fmt (concat fmt "%d day" (if (> d 1) "s" "") " ")
17035 l (push d l)))
17036 (if (> h 0) (setq fmt (concat fmt "%d hour" (if (> h 1) "s" "") " ")
17037 l (push h l)))
17038 (if (> m 0) (setq fmt (concat fmt "%d minute" (if (> m 1) "s" "") " ")
17039 l (push m l)))
17040 (apply 'format fmt (nreverse l))))
17042 (defun org-time-string-to-time (s &optional buffer pos)
17043 "Convert a timestamp string into internal time."
17044 (condition-case errdata
17045 (apply 'encode-time (org-parse-time-string s))
17046 (error (error "Bad timestamp `%s'%s\nError was: %s"
17047 s (if (not (and buffer pos))
17049 (format " at %d in buffer `%s'" pos buffer))
17050 (cdr errdata)))))
17052 (defun org-time-string-to-seconds (s)
17053 "Convert a timestamp string to a number of seconds."
17054 (org-float-time (org-time-string-to-time s)))
17056 (defun org-time-string-to-absolute (s &optional daynr prefer show-all buffer pos)
17057 "Convert a time stamp to an absolute day number.
17058 If there is a specifier for a cyclic time stamp, get the closest
17059 date to DAYNR.
17060 PREFER and SHOW-ALL are passed through to `org-closest-date'.
17061 The variable `date' is bound by the calendar when this is called."
17062 (cond
17063 ((and daynr (string-match "\\`%%\\((.*)\\)" s))
17064 (if (org-diary-sexp-entry (match-string 1 s) "" date)
17065 daynr
17066 (+ daynr 1000)))
17067 ((and daynr (string-match "\\+[0-9]+[hdwmy]" s))
17068 (org-closest-date s (if (and (boundp 'daynr) (integerp daynr)) daynr
17069 (time-to-days (current-time))) (match-string 0 s)
17070 prefer show-all))
17071 (t (time-to-days
17072 (condition-case errdata
17073 (apply 'encode-time (org-parse-time-string s))
17074 (error (error "Bad timestamp `%s'%s\nError was: %s"
17075 s (if (not (and buffer pos))
17077 (format " at %d in buffer `%s'" pos buffer))
17078 (cdr errdata))))))))
17080 (defun org-days-to-iso-week (days)
17081 "Return the iso week number."
17082 (require 'cal-iso)
17083 (car (calendar-iso-from-absolute days)))
17085 (defun org-small-year-to-year (year)
17086 "Convert 2-digit years into 4-digit years.
17087 38-99 are mapped into 1938-1999. 1-37 are mapped into 2001-2037.
17088 The year 2000 cannot be abbreviated. Any year larger than 99
17089 is returned unchanged."
17090 (if (< year 38)
17091 (setq year (+ 2000 year))
17092 (if (< year 100)
17093 (setq year (+ 1900 year))))
17094 year)
17096 (defun org-time-from-absolute (d)
17097 "Return the time corresponding to date D.
17098 D may be an absolute day number, or a calendar-type list (month day year)."
17099 (if (numberp d) (setq d (calendar-gregorian-from-absolute d)))
17100 (encode-time 0 0 0 (nth 1 d) (car d) (nth 2 d)))
17102 (defun org-calendar-holiday ()
17103 "List of holidays, for Diary display in Org-mode."
17104 (require 'holidays)
17105 (let ((hl (funcall
17106 (if (fboundp 'calendar-check-holidays)
17107 'calendar-check-holidays 'check-calendar-holidays) date)))
17108 (if hl (mapconcat 'identity hl "; "))))
17110 (defun org-diary-sexp-entry (sexp entry date)
17111 "Process a SEXP diary ENTRY for DATE."
17112 (require 'diary-lib)
17113 (let ((result (if calendar-debug-sexp
17114 (let ((stack-trace-on-error t))
17115 (eval (car (read-from-string sexp))))
17116 (condition-case nil
17117 (eval (car (read-from-string sexp)))
17118 (error
17119 (beep)
17120 (message "Bad sexp at line %d in %s: %s"
17121 (org-current-line)
17122 (buffer-file-name) sexp)
17123 (sleep-for 2))))))
17124 (cond ((stringp result) (split-string result "; "))
17125 ((and (consp result)
17126 (not (consp (cdr result)))
17127 (stringp (cdr result))) (cdr result))
17128 ((and (consp result)
17129 (stringp (car result))) result)
17130 (result entry))))
17132 (defun org-diary-to-ical-string (frombuf)
17133 "Get iCalendar entries from diary entries in buffer FROMBUF.
17134 This uses the icalendar.el library."
17135 (let* ((tmpdir (if (featurep 'xemacs)
17136 (temp-directory)
17137 temporary-file-directory))
17138 (tmpfile (make-temp-name
17139 (expand-file-name "orgics" tmpdir)))
17140 buf rtn b e)
17141 (with-current-buffer frombuf
17142 (icalendar-export-region (point-min) (point-max) tmpfile)
17143 (setq buf (find-buffer-visiting tmpfile))
17144 (set-buffer buf)
17145 (goto-char (point-min))
17146 (if (re-search-forward "^BEGIN:VEVENT" nil t)
17147 (setq b (match-beginning 0)))
17148 (goto-char (point-max))
17149 (if (re-search-backward "^END:VEVENT" nil t)
17150 (setq e (match-end 0)))
17151 (setq rtn (if (and b e) (concat (buffer-substring b e) "\n") "")))
17152 (kill-buffer buf)
17153 (delete-file tmpfile)
17154 rtn))
17156 (defun org-closest-date (start current change prefer show-all)
17157 "Find the date closest to CURRENT that is consistent with START and CHANGE.
17158 When PREFER is `past', return a date that is either CURRENT or past.
17159 When PREFER is `future', return a date that is either CURRENT or future.
17160 When SHOW-ALL is nil, only return the current occurrence of a time stamp."
17161 ;; Make the proper lists from the dates
17162 (catch 'exit
17163 (let ((a1 '(("h" . hour)
17164 ("d" . day)
17165 ("w" . week)
17166 ("m" . month)
17167 ("y" . year)))
17168 (shour (nth 2 (org-parse-time-string start)))
17169 dn dw sday cday n1 n2 n0
17170 d m y y1 y2 date1 date2 nmonths nm ny m2)
17172 (setq start (org-date-to-gregorian start)
17173 current (org-date-to-gregorian
17174 (if show-all
17175 current
17176 (time-to-days (current-time))))
17177 sday (calendar-absolute-from-gregorian start)
17178 cday (calendar-absolute-from-gregorian current))
17180 (if (<= cday sday) (throw 'exit sday))
17182 (if (string-match "\\(\\+[0-9]+\\)\\([hdwmy]\\)" change)
17183 (setq dn (string-to-number (match-string 1 change))
17184 dw (cdr (assoc (match-string 2 change) a1)))
17185 (user-error "Invalid change specifier: %s" change))
17186 (if (eq dw 'week) (setq dw 'day dn (* 7 dn)))
17187 (cond
17188 ((eq dw 'hour)
17189 (let ((missing-hours
17190 (mod (+ (- (* 24 (- cday sday)) shour) org-extend-today-until)
17191 dn)))
17192 (setq n1 (if (zerop missing-hours) cday
17193 (- cday (1+ (floor (/ missing-hours 24)))))
17194 n2 (+ cday (floor (/ (- dn missing-hours) 24))))))
17195 ((eq dw 'day)
17196 (setq n1 (+ sday (* dn (floor (/ (- cday sday) dn))))
17197 n2 (+ n1 dn)))
17198 ((eq dw 'year)
17199 (setq d (nth 1 start) m (car start) y1 (nth 2 start) y2 (nth 2 current))
17200 (setq y1 (+ (* (floor (/ (- y2 y1) dn)) dn) y1))
17201 (setq date1 (list m d y1)
17202 n1 (calendar-absolute-from-gregorian date1)
17203 date2 (list m d (+ y1 (* (if (< n1 cday) 1 -1) dn)))
17204 n2 (calendar-absolute-from-gregorian date2)))
17205 ((eq dw 'month)
17206 ;; approx number of month between the two dates
17207 (setq nmonths (floor (/ (- cday sday) 30.436875)))
17208 ;; How often does dn fit in there?
17209 (setq d (nth 1 start) m (car start) y (nth 2 start)
17210 nm (* dn (max 0 (1- (floor (/ nmonths dn)))))
17211 m (+ m nm)
17212 ny (floor (/ m 12))
17213 y (+ y ny)
17214 m (- m (* ny 12)))
17215 (while (> m 12) (setq m (- m 12) y (1+ y)))
17216 (setq n1 (calendar-absolute-from-gregorian (list m d y)))
17217 (setq m2 (+ m dn) y2 y)
17218 (if (> m2 12) (setq y2 (1+ y2) m2 (- m2 12)))
17219 (setq n2 (calendar-absolute-from-gregorian (list m2 d y2)))
17220 (while (<= n2 cday)
17221 (setq n1 n2 m m2 y y2)
17222 (setq m2 (+ m dn) y2 y)
17223 (if (> m2 12) (setq y2 (1+ y2) m2 (- m2 12)))
17224 (setq n2 (calendar-absolute-from-gregorian (list m2 d y2))))))
17225 ;; Make sure n1 is the earlier date
17226 (setq n0 n1 n1 (min n1 n2) n2 (max n0 n2))
17227 (if show-all
17228 (cond
17229 ((eq prefer 'past) (if (= cday n2) n2 n1))
17230 ((eq prefer 'future) (if (= cday n1) n1 n2))
17231 (t (if (> (abs (- cday n1)) (abs (- cday n2))) n2 n1)))
17232 (cond
17233 ((eq prefer 'past) (if (= cday n2) n2 n1))
17234 ((eq prefer 'future) (if (= cday n1) n1 n2))
17235 (t (if (= cday n1) n1 n2)))))))
17237 (defun org-date-to-gregorian (date)
17238 "Turn any specification of DATE into a Gregorian date for the calendar."
17239 (cond ((integerp date) (calendar-gregorian-from-absolute date))
17240 ((and (listp date) (= (length date) 3)) date)
17241 ((stringp date)
17242 (setq date (org-parse-time-string date))
17243 (list (nth 4 date) (nth 3 date) (nth 5 date)))
17244 ((listp date)
17245 (list (nth 4 date) (nth 3 date) (nth 5 date)))))
17247 (defun org-parse-time-string (s &optional nodefault)
17248 "Parse the standard Org-mode time string.
17249 This should be a lot faster than the normal `parse-time-string'.
17250 If time is not given, defaults to 0:00. However, with optional NODEFAULT,
17251 hour and minute fields will be nil if not given."
17252 (cond ((string-match org-ts-regexp0 s)
17253 (list 0
17254 (if (or (match-beginning 8) (not nodefault))
17255 (string-to-number (or (match-string 8 s) "0")))
17256 (if (or (match-beginning 7) (not nodefault))
17257 (string-to-number (or (match-string 7 s) "0")))
17258 (string-to-number (match-string 4 s))
17259 (string-to-number (match-string 3 s))
17260 (string-to-number (match-string 2 s))
17261 nil nil nil))
17262 ((string-match "^<[^>]+>$" s)
17263 (decode-time (seconds-to-time (org-matcher-time s))))
17264 (t (error "Not a standard Org-mode time string: %s" s))))
17266 (defun org-timestamp-up (&optional arg)
17267 "Increase the date item at the cursor by one.
17268 If the cursor is on the year, change the year. If it is on the month,
17269 the day or the time, change that.
17270 With prefix ARG, change by that many units."
17271 (interactive "p")
17272 (org-timestamp-change (prefix-numeric-value arg) nil 'updown))
17274 (defun org-timestamp-down (&optional arg)
17275 "Decrease the date item at the cursor by one.
17276 If the cursor is on the year, change the year. If it is on the month,
17277 the day or the time, change that.
17278 With prefix ARG, change by that many units."
17279 (interactive "p")
17280 (org-timestamp-change (- (prefix-numeric-value arg)) nil 'updown))
17282 (defun org-timestamp-up-day (&optional arg)
17283 "Increase the date in the time stamp by one day.
17284 With prefix ARG, change that many days."
17285 (interactive "p")
17286 (if (and (not (org-at-timestamp-p t))
17287 (org-at-heading-p))
17288 (org-todo 'up)
17289 (org-timestamp-change (prefix-numeric-value arg) 'day 'updown)))
17291 (defun org-timestamp-down-day (&optional arg)
17292 "Decrease the date in the time stamp by one day.
17293 With prefix ARG, change that many days."
17294 (interactive "p")
17295 (if (and (not (org-at-timestamp-p t))
17296 (org-at-heading-p))
17297 (org-todo 'down)
17298 (org-timestamp-change (- (prefix-numeric-value arg)) 'day) 'updown))
17300 (defun org-at-timestamp-p (&optional inactive-ok)
17301 "Determine if the cursor is in or at a timestamp."
17302 (interactive)
17303 (let* ((tsr (if inactive-ok org-ts-regexp3 org-ts-regexp2))
17304 (pos (point))
17305 (ans (or (looking-at tsr)
17306 (save-excursion
17307 (skip-chars-backward "^[<\n\r\t")
17308 (if (> (point) (point-min)) (backward-char 1))
17309 (and (looking-at tsr)
17310 (> (- (match-end 0) pos) -1))))))
17311 (and ans
17312 (boundp 'org-ts-what)
17313 (setq org-ts-what
17314 (cond
17315 ((= pos (match-beginning 0)) 'bracket)
17316 ;; Point is considered to be "on the bracket" whether
17317 ;; it's really on it or right after it.
17318 ((= pos (1- (match-end 0))) 'bracket)
17319 ((= pos (match-end 0)) 'after)
17320 ((org-pos-in-match-range pos 2) 'year)
17321 ((org-pos-in-match-range pos 3) 'month)
17322 ((org-pos-in-match-range pos 7) 'hour)
17323 ((org-pos-in-match-range pos 8) 'minute)
17324 ((or (org-pos-in-match-range pos 4)
17325 (org-pos-in-match-range pos 5)) 'day)
17326 ((and (> pos (or (match-end 8) (match-end 5)))
17327 (< pos (match-end 0)))
17328 (- pos (or (match-end 8) (match-end 5))))
17329 (t 'day))))
17330 ans))
17332 (defun org-toggle-timestamp-type ()
17333 "Toggle the type (<active> or [inactive]) of a time stamp."
17334 (interactive)
17335 (when (org-at-timestamp-p t)
17336 (let ((beg (match-beginning 0)) (end (match-end 0))
17337 (map '((?\[ . "<") (?\] . ">") (?< . "[") (?> . "]"))))
17338 (save-excursion
17339 (goto-char beg)
17340 (while (re-search-forward "[][<>]" end t)
17341 (replace-match (cdr (assoc (char-after (match-beginning 0)) map))
17342 t t)))
17343 (message "Timestamp is now %sactive"
17344 (if (equal (char-after beg) ?<) "" "in")))))
17346 (defun org-at-clock-log-p nil
17347 "Is the cursor on the clock log line?"
17348 (save-excursion
17349 (move-beginning-of-line 1)
17350 (looking-at "^[ \t]*CLOCK:")))
17352 (defvar org-clock-history) ; defined in org-clock.el
17353 (defvar org-clock-adjust-closest nil) ; defined in org-clock.el
17354 (defun org-timestamp-change (n &optional what updown suppress-tmp-delay)
17355 "Change the date in the time stamp at point.
17356 The date will be changed by N times WHAT. WHAT can be `day', `month',
17357 `year', `minute', `second'. If WHAT is not given, the cursor position
17358 in the timestamp determines what will be changed.
17359 When SUPPRESS-TMP-DELAY is non-nil, suppress delays like \"--2d\"."
17360 (let ((origin (point)) origin-cat
17361 with-hm inactive
17362 (dm (max (nth 1 org-time-stamp-rounding-minutes) 1))
17363 org-ts-what
17364 extra rem
17365 ts time time0 fixnext clrgx)
17366 (if (not (org-at-timestamp-p t))
17367 (user-error "Not at a timestamp"))
17368 (if (and (not what) (eq org-ts-what 'bracket))
17369 (org-toggle-timestamp-type)
17370 ;; Point isn't on brackets. Remember the part of the time-stamp
17371 ;; the point was in. Indeed, size of time-stamps may change,
17372 ;; but point must be kept in the same category nonetheless.
17373 (setq origin-cat org-ts-what)
17374 (if (and (not what) (not (eq org-ts-what 'day))
17375 org-display-custom-times
17376 (get-text-property (point) 'display)
17377 (not (get-text-property (1- (point)) 'display)))
17378 (setq org-ts-what 'day))
17379 (setq org-ts-what (or what org-ts-what)
17380 inactive (= (char-after (match-beginning 0)) ?\[)
17381 ts (match-string 0))
17382 (replace-match "")
17383 (when (string-match
17384 "\\(\\(-[012][0-9]:[0-5][0-9]\\)?\\( +[.+]?-?[-+][0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)*\\)[]>]"
17386 (setq extra (match-string 1 ts))
17387 (if suppress-tmp-delay
17388 (setq extra (replace-regexp-in-string " --[0-9]+[hdwmy]" "" extra))))
17389 (if (string-match "^.\\{10\\}.*?[0-9]+:[0-9][0-9]" ts)
17390 (setq with-hm t))
17391 (setq time0 (org-parse-time-string ts))
17392 (when (and updown
17393 (eq org-ts-what 'minute)
17394 (not current-prefix-arg))
17395 ;; This looks like s-up and s-down. Change by one rounding step.
17396 (setq n (* dm (cond ((> n 0) 1) ((< n 0) -1) (t 0))))
17397 (when (not (= 0 (setq rem (% (nth 1 time0) dm))))
17398 (setcar (cdr time0) (+ (nth 1 time0)
17399 (if (> n 0) (- rem) (- dm rem))))))
17400 (setq time
17401 (encode-time (or (car time0) 0)
17402 (+ (if (eq org-ts-what 'minute) n 0) (nth 1 time0))
17403 (+ (if (eq org-ts-what 'hour) n 0) (nth 2 time0))
17404 (+ (if (eq org-ts-what 'day) n 0) (nth 3 time0))
17405 (+ (if (eq org-ts-what 'month) n 0) (nth 4 time0))
17406 (+ (if (eq org-ts-what 'year) n 0) (nth 5 time0))
17407 (nthcdr 6 time0)))
17408 (when (and (member org-ts-what '(hour minute))
17409 extra
17410 (string-match "-\\([012][0-9]\\):\\([0-5][0-9]\\)" extra))
17411 (setq extra (org-modify-ts-extra
17412 extra
17413 (if (eq org-ts-what 'hour) 2 5)
17414 n dm)))
17415 (when (integerp org-ts-what)
17416 (setq extra (org-modify-ts-extra extra org-ts-what n dm)))
17417 (if (eq what 'calendar)
17418 (let ((cal-date (org-get-date-from-calendar)))
17419 (setcar (nthcdr 4 time0) (nth 0 cal-date)) ; month
17420 (setcar (nthcdr 3 time0) (nth 1 cal-date)) ; day
17421 (setcar (nthcdr 5 time0) (nth 2 cal-date)) ; year
17422 (setcar time0 (or (car time0) 0))
17423 (setcar (nthcdr 1 time0) (or (nth 1 time0) 0))
17424 (setcar (nthcdr 2 time0) (or (nth 2 time0) 0))
17425 (setq time (apply 'encode-time time0))))
17426 ;; Insert the new time-stamp, and ensure point stays in the same
17427 ;; category as before (i.e. not after the last position in that
17428 ;; category).
17429 (let ((pos (point)))
17430 ;; Stay before inserted string. `save-excursion' is of no use.
17431 (setq org-last-changed-timestamp
17432 (org-insert-time-stamp time with-hm inactive nil nil extra))
17433 (goto-char pos))
17434 (save-match-data
17435 (looking-at org-ts-regexp3)
17436 (goto-char (cond
17437 ;; `day' category ends before `hour' if any, or at
17438 ;; the end of the day name.
17439 ((eq origin-cat 'day)
17440 (min (or (match-beginning 7) (1- (match-end 5))) origin))
17441 ((eq origin-cat 'hour) (min (match-end 7) origin))
17442 ((eq origin-cat 'minute) (min (1- (match-end 8)) origin))
17443 ((integerp origin-cat) (min (1- (match-end 0)) origin))
17444 ;; `year' and `month' have both fixed size: point
17445 ;; couldn't have moved into another part.
17446 (t origin))))
17447 ;; Update clock if on a CLOCK line.
17448 (org-clock-update-time-maybe)
17449 ;; Maybe adjust the closest clock in `org-clock-history'
17450 (when org-clock-adjust-closest
17451 (if (not (and (org-at-clock-log-p)
17452 (< 1 (length (delq nil (mapcar 'marker-position
17453 org-clock-history))))))
17454 (message "No clock to adjust")
17455 (cond ((save-excursion ; fix previous clock?
17456 (re-search-backward org-ts-regexp0 nil t)
17457 (org-looking-back (concat org-clock-string " \\[")))
17458 (setq fixnext 1 clrgx (concat org-ts-regexp0 "\\] =>.*$")))
17459 ((save-excursion ; fix next clock?
17460 (re-search-backward org-ts-regexp0 nil t)
17461 (looking-at (concat org-ts-regexp0 "\\] =>")))
17462 (setq fixnext -1 clrgx (concat org-clock-string " \\[" org-ts-regexp0))))
17463 (save-window-excursion
17464 ;; Find closest clock to point, adjust the previous/next one in history
17465 (let* ((p (save-excursion (org-back-to-heading t)))
17466 (cl (mapcar (lambda(c) (abs (- (marker-position c) p))) org-clock-history))
17467 (clfixnth
17468 (+ fixnext (- (length cl) (or (length (member (apply #'min cl) cl)) 100))))
17469 (clfixpos (if (> 0 clfixnth) nil (nth clfixnth org-clock-history))))
17470 (if (not clfixpos)
17471 (message "No clock to adjust")
17472 (save-excursion
17473 (org-goto-marker-or-bmk clfixpos)
17474 (org-show-subtree)
17475 (when (re-search-forward clrgx nil t)
17476 (goto-char (match-beginning 1))
17477 (let (org-clock-adjust-closest)
17478 (org-timestamp-change n org-ts-what updown))
17479 (message "Clock adjusted in %s for heading: %s"
17480 (file-name-nondirectory (buffer-file-name))
17481 (org-get-heading t t)))))))))
17482 ;; Try to recenter the calendar window, if any.
17483 (if (and org-calendar-follow-timestamp-change
17484 (get-buffer-window "*Calendar*" t)
17485 (memq org-ts-what '(day month year)))
17486 (org-recenter-calendar (time-to-days time))))))
17488 (defun org-modify-ts-extra (s pos n dm)
17489 "Change the different parts of the lead-time and repeat fields in timestamp."
17490 (let ((idx '(("d" . 0) ("w" . 1) ("m" . 2) ("y" . 3) ("d" . -1) ("y" . 4)))
17491 ng h m new rem)
17492 (when (string-match "\\(-\\([012][0-9]\\):\\([0-5][0-9]\\)\\)?\\( +\\+\\([0-9]+\\)\\([dmwy]\\)\\)?\\( +-\\([0-9]+\\)\\([dmwy]\\)\\)?" s)
17493 (cond
17494 ((or (org-pos-in-match-range pos 2)
17495 (org-pos-in-match-range pos 3))
17496 (setq m (string-to-number (match-string 3 s))
17497 h (string-to-number (match-string 2 s)))
17498 (if (org-pos-in-match-range pos 2)
17499 (setq h (+ h n))
17500 (setq n (* dm (org-no-warnings (signum n))))
17501 (when (not (= 0 (setq rem (% m dm))))
17502 (setq m (+ m (if (> n 0) (- rem) (- dm rem)))))
17503 (setq m (+ m n)))
17504 (if (< m 0) (setq m (+ m 60) h (1- h)))
17505 (if (> m 59) (setq m (- m 60) h (1+ h)))
17506 (setq h (min 24 (max 0 h)))
17507 (setq ng 1 new (format "-%02d:%02d" h m)))
17508 ((org-pos-in-match-range pos 6)
17509 (setq ng 6 new (car (rassoc (+ n (cdr (assoc (match-string 6 s) idx))) idx))))
17510 ((org-pos-in-match-range pos 5)
17511 (setq ng 5 new (format "%d" (max 1 (+ n (string-to-number (match-string 5 s)))))))
17513 ((org-pos-in-match-range pos 9)
17514 (setq ng 9 new (car (rassoc (+ n (cdr (assoc (match-string 9 s) idx))) idx))))
17515 ((org-pos-in-match-range pos 8)
17516 (setq ng 8 new (format "%d" (max 0 (+ n (string-to-number (match-string 8 s))))))))
17518 (when ng
17519 (setq s (concat
17520 (substring s 0 (match-beginning ng))
17522 (substring s (match-end ng))))))
17525 (defun org-recenter-calendar (date)
17526 "If the calendar is visible, recenter it to DATE."
17527 (let ((cwin (get-buffer-window "*Calendar*" t)))
17528 (when cwin
17529 (let ((calendar-move-hook nil))
17530 (with-selected-window cwin
17531 (calendar-goto-date (if (listp date) date
17532 (calendar-gregorian-from-absolute date))))))))
17534 (defun org-goto-calendar (&optional arg)
17535 "Go to the Emacs calendar at the current date.
17536 If there is a time stamp in the current line, go to that date.
17537 A prefix ARG can be used to force the current date."
17538 (interactive "P")
17539 (let ((tsr org-ts-regexp) diff
17540 (calendar-move-hook nil)
17541 (calendar-view-holidays-initially-flag nil)
17542 (calendar-view-diary-initially-flag nil))
17543 (if (or (org-at-timestamp-p)
17544 (save-excursion
17545 (beginning-of-line 1)
17546 (looking-at (concat ".*" tsr))))
17547 (let ((d1 (time-to-days (current-time)))
17548 (d2 (time-to-days
17549 (org-time-string-to-time (match-string 1)))))
17550 (setq diff (- d2 d1))))
17551 (calendar)
17552 (calendar-goto-today)
17553 (if (and diff (not arg)) (calendar-forward-day diff))))
17555 (defun org-get-date-from-calendar ()
17556 "Return a list (month day year) of date at point in calendar."
17557 (with-current-buffer "*Calendar*"
17558 (save-match-data
17559 (calendar-cursor-to-date))))
17561 (defun org-date-from-calendar ()
17562 "Insert time stamp corresponding to cursor date in *Calendar* buffer.
17563 If there is already a time stamp at the cursor position, update it."
17564 (interactive)
17565 (if (org-at-timestamp-p t)
17566 (org-timestamp-change 0 'calendar)
17567 (let ((cal-date (org-get-date-from-calendar)))
17568 (org-insert-time-stamp
17569 (encode-time 0 0 0 (nth 1 cal-date) (car cal-date) (nth 2 cal-date))))))
17571 (defcustom org-effort-durations
17572 `(("h" . 60)
17573 ("d" . ,(* 60 8))
17574 ("w" . ,(* 60 8 5))
17575 ("m" . ,(* 60 8 5 4))
17576 ("y" . ,(* 60 8 5 40)))
17577 "Conversion factor to minutes for an effort modifier.
17579 Each entry has the form (MODIFIER . MINUTES).
17581 In an effort string, a number followed by MODIFIER is multiplied
17582 by the specified number of MINUTES to obtain an effort in
17583 minutes.
17585 For example, if the value of this variable is ((\"hours\" . 60)), then an
17586 effort string \"2hours\" is equivalent to 120 minutes."
17587 :group 'org-agenda
17588 :version "24.1"
17589 :type '(alist :key-type (string :tag "Modifier")
17590 :value-type (number :tag "Minutes")))
17592 (defun org-minutes-to-clocksum-string (m)
17593 "Format number of minutes as a clocksum string.
17594 The format is determined by `org-time-clocksum-format',
17595 `org-time-clocksum-use-fractional' and
17596 `org-time-clocksum-fractional-format' and
17597 `org-time-clocksum-use-effort-durations'."
17598 (let ((clocksum "")
17599 (m (round m)) ; Don't allow fractions of minutes
17600 h d w mo y fmt n)
17601 (setq h (if org-time-clocksum-use-effort-durations
17602 (cdr (assoc "h" org-effort-durations)) 60)
17603 d (if org-time-clocksum-use-effort-durations
17604 (/ (cdr (assoc "d" org-effort-durations)) h) 24)
17605 w (if org-time-clocksum-use-effort-durations
17606 (/ (cdr (assoc "w" org-effort-durations)) (* d h)) 7)
17607 mo (if org-time-clocksum-use-effort-durations
17608 (/ (cdr (assoc "m" org-effort-durations)) (* d h)) 30)
17609 y (if org-time-clocksum-use-effort-durations
17610 (/ (cdr (assoc "y" org-effort-durations)) (* d h)) 365))
17611 ;; fractional format
17612 (if org-time-clocksum-use-fractional
17613 (cond
17614 ;; single format string
17615 ((stringp org-time-clocksum-fractional-format)
17616 (format org-time-clocksum-fractional-format (/ m (float h))))
17617 ;; choice of fractional formats for different time units
17618 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :years))
17619 (> (/ (truncate m) (* y d h)) 0))
17620 (format fmt (/ m (* y d (float h)))))
17621 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :months))
17622 (> (/ (truncate m) (* mo d h)) 0))
17623 (format fmt (/ m (* mo d (float h)))))
17624 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :weeks))
17625 (> (/ (truncate m) (* w d h)) 0))
17626 (format fmt (/ m (* w d (float h)))))
17627 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :days))
17628 (> (/ (truncate m) (* d h)) 0))
17629 (format fmt (/ m (* d (float h)))))
17630 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :hours))
17631 (> (/ (truncate m) h) 0))
17632 (format fmt (/ m (float h))))
17633 ((setq fmt (plist-get org-time-clocksum-fractional-format :minutes))
17634 (format fmt m))
17635 ;; fall back to smallest time unit with a format
17636 ((setq fmt (plist-get org-time-clocksum-fractional-format :hours))
17637 (format fmt (/ m (float h))))
17638 ((setq fmt (plist-get org-time-clocksum-fractional-format :days))
17639 (format fmt (/ m (* d (float h)))))
17640 ((setq fmt (plist-get org-time-clocksum-fractional-format :weeks))
17641 (format fmt (/ m (* w d (float h)))))
17642 ((setq fmt (plist-get org-time-clocksum-fractional-format :months))
17643 (format fmt (/ m (* mo d (float h)))))
17644 ((setq fmt (plist-get org-time-clocksum-fractional-format :years))
17645 (format fmt (/ m (* y d (float h))))))
17646 ;; standard (non-fractional) format, with single format string
17647 (if (stringp org-time-clocksum-format)
17648 (format org-time-clocksum-format (setq n (/ m h)) (- m (* h n)))
17649 ;; separate formats components
17650 (and (setq fmt (plist-get org-time-clocksum-format :years))
17651 (or (> (setq n (/ (truncate m) (* y d h))) 0)
17652 (plist-get org-time-clocksum-format :require-years))
17653 (setq clocksum (concat clocksum (format fmt n))
17654 m (- m (* n y d h))))
17655 (and (setq fmt (plist-get org-time-clocksum-format :months))
17656 (or (> (setq n (/ (truncate m) (* mo d h))) 0)
17657 (plist-get org-time-clocksum-format :require-months))
17658 (setq clocksum (concat clocksum (format fmt n))
17659 m (- m (* n mo d h))))
17660 (and (setq fmt (plist-get org-time-clocksum-format :weeks))
17661 (or (> (setq n (/ (truncate m) (* w d h))) 0)
17662 (plist-get org-time-clocksum-format :require-weeks))
17663 (setq clocksum (concat clocksum (format fmt n))
17664 m (- m (* n w d h))))
17665 (and (setq fmt (plist-get org-time-clocksum-format :days))
17666 (or (> (setq n (/ (truncate m) (* d h))) 0)
17667 (plist-get org-time-clocksum-format :require-days))
17668 (setq clocksum (concat clocksum (format fmt n))
17669 m (- m (* n d h))))
17670 (and (setq fmt (plist-get org-time-clocksum-format :hours))
17671 (or (> (setq n (/ (truncate m) h)) 0)
17672 (plist-get org-time-clocksum-format :require-hours))
17673 (setq clocksum (concat clocksum (format fmt n))
17674 m (- m (* n h))))
17675 (and (setq fmt (plist-get org-time-clocksum-format :minutes))
17676 (or (> m 0) (plist-get org-time-clocksum-format :require-minutes))
17677 (setq clocksum (concat clocksum (format fmt m))))
17678 ;; return formatted time duration
17679 clocksum))))
17681 (defalias 'org-minutes-to-hh:mm-string 'org-minutes-to-clocksum-string)
17682 (make-obsolete 'org-minutes-to-hh:mm-string 'org-minutes-to-clocksum-string
17683 "Org mode version 8.0")
17685 (defun org-hours-to-clocksum-string (n)
17686 (org-minutes-to-clocksum-string (* n 60)))
17688 (defun org-hh:mm-string-to-minutes (s)
17689 "Convert a string H:MM to a number of minutes.
17690 If the string is just a number, interpret it as minutes.
17691 In fact, the first hh:mm or number in the string will be taken,
17692 there can be extra stuff in the string.
17693 If no number is found, the return value is 0."
17694 (cond
17695 ((integerp s) s)
17696 ((string-match "\\([0-9]+\\):\\([0-9]+\\)" s)
17697 (+ (* (string-to-number (match-string 1 s)) 60)
17698 (string-to-number (match-string 2 s))))
17699 ((string-match "\\([0-9]+\\)" s)
17700 (string-to-number (match-string 1 s)))
17701 (t 0)))
17703 (defcustom org-image-actual-width t
17704 "Should we use the actual width of images when inlining them?
17706 When set to `t', always use the image width.
17708 When set to a number, use imagemagick (when available) to set
17709 the image's width to this value.
17711 When set to a number in a list, try to get the width from any
17712 #+ATTR.* keyword if it matches a width specification like
17714 #+ATTR_HTML: :width 300px
17716 and fall back on that number if none is found.
17718 When set to nil, try to get the width from an #+ATTR.* keyword
17719 and fall back on the original width if none is found.
17721 This requires Emacs >= 24.1, build with imagemagick support."
17722 :group 'org-appearance
17723 :version "24.4"
17724 :package-version '(Org . "8.0")
17725 :type '(choice
17726 (const :tag "Use the image width" t)
17727 (integer :tag "Use a number of pixels")
17728 (list :tag "Use #+ATTR* or a number of pixels" (integer))
17729 (const :tag "Use #+ATTR* or don't resize" nil)))
17731 (defcustom org-agenda-inhibit-startup nil
17732 "Inhibit startup when preparing agenda buffers.
17733 When this variable is `t' (the default), the initialization of
17734 the Org agenda buffers is inhibited: e.g. the visibility state
17735 is not set, the tables are not re-aligned, etc."
17736 :type 'boolean
17737 :version "24.3"
17738 :group 'org-agenda)
17740 (defcustom org-agenda-ignore-drawer-properties nil
17741 "Avoid updating text properties when building the agenda.
17742 Properties are used to prepare buffers for effort estimates, appointments,
17743 and subtree-local categories.
17744 If you don't use these in the agenda, you can add them to this list and
17745 agenda building will be a bit faster.
17746 The value is a list, with zero or more of the symbols `effort', `appt',
17747 or `category'."
17748 :type '(set :greedy t
17749 (const effort)
17750 (const appt)
17751 (const category))
17752 :version "24.3"
17753 :group 'org-agenda)
17755 (defun org-duration-string-to-minutes (s &optional output-to-string)
17756 "Convert a duration string S to minutes.
17758 A bare number is interpreted as minutes, modifiers can be set by
17759 customizing `org-effort-durations' (which see).
17761 Entries containing a colon are interpreted as H:MM by
17762 `org-hh:mm-string-to-minutes'."
17763 (let ((result 0)
17764 (re (concat "\\([0-9.]+\\) *\\("
17765 (regexp-opt (mapcar 'car org-effort-durations))
17766 "\\)")))
17767 (while (string-match re s)
17768 (incf result (* (cdr (assoc (match-string 2 s) org-effort-durations))
17769 (string-to-number (match-string 1 s))))
17770 (setq s (replace-match "" nil t s)))
17771 (setq result (floor result))
17772 (incf result (org-hh:mm-string-to-minutes s))
17773 (if output-to-string (number-to-string result) result)))
17775 ;;;; Files
17777 (defun org-save-all-org-buffers ()
17778 "Save all Org-mode buffers without user confirmation."
17779 (interactive)
17780 (message "Saving all Org-mode buffers...")
17781 (save-some-buffers t (lambda () (derived-mode-p 'org-mode)))
17782 (when (featurep 'org-id) (org-id-locations-save))
17783 (message "Saving all Org-mode buffers... done"))
17785 (defun org-revert-all-org-buffers ()
17786 "Revert all Org-mode buffers.
17787 Prompt for confirmation when there are unsaved changes.
17788 Be sure you know what you are doing before letting this function
17789 overwrite your changes.
17791 This function is useful in a setup where one tracks org files
17792 with a version control system, to revert on one machine after pulling
17793 changes from another. I believe the procedure must be like this:
17795 1. M-x org-save-all-org-buffers
17796 2. Pull changes from the other machine, resolve conflicts
17797 3. M-x org-revert-all-org-buffers"
17798 (interactive)
17799 (unless (yes-or-no-p "Revert all Org buffers from their files? ")
17800 (user-error "Abort"))
17801 (save-excursion
17802 (save-window-excursion
17803 (mapc
17804 (lambda (b)
17805 (when (and (with-current-buffer b (derived-mode-p 'org-mode))
17806 (with-current-buffer b buffer-file-name))
17807 (org-pop-to-buffer-same-window b)
17808 (revert-buffer t 'no-confirm)))
17809 (buffer-list))
17810 (when (and (featurep 'org-id) org-id-track-globally)
17811 (org-id-locations-load)))))
17813 ;;;; Agenda files
17815 ;;;###autoload
17816 (defun org-switchb (&optional arg)
17817 "Switch between Org buffers.
17818 With one prefix argument, restrict available buffers to files.
17819 With two prefix arguments, restrict available buffers to agenda files.
17821 Defaults to `iswitchb' for buffer name completion.
17822 Set `org-completion-use-ido' to make it use ido instead."
17823 (interactive "P")
17824 (let ((blist (cond ((equal arg '(4)) (org-buffer-list 'files))
17825 ((equal arg '(16)) (org-buffer-list 'agenda))
17826 (t (org-buffer-list))))
17827 (org-completion-use-iswitchb org-completion-use-iswitchb)
17828 (org-completion-use-ido org-completion-use-ido))
17829 (unless (or org-completion-use-ido org-completion-use-iswitchb)
17830 (setq org-completion-use-iswitchb t))
17831 (org-pop-to-buffer-same-window
17832 (org-icompleting-read "Org buffer: "
17833 (mapcar 'list (mapcar 'buffer-name blist))
17834 nil t))))
17836 ;;; Define some older names previously used for this functionality
17837 ;;;###autoload
17838 (defalias 'org-ido-switchb 'org-switchb)
17839 ;;;###autoload
17840 (defalias 'org-iswitchb 'org-switchb)
17842 (defun org-buffer-list (&optional predicate exclude-tmp)
17843 "Return a list of Org buffers.
17844 PREDICATE can be `export', `files' or `agenda'.
17846 export restrict the list to Export buffers.
17847 files restrict the list to buffers visiting Org files.
17848 agenda restrict the list to buffers visiting agenda files.
17850 If EXCLUDE-TMP is non-nil, ignore temporary buffers."
17851 (let* ((bfn nil)
17852 (agenda-files (and (eq predicate 'agenda)
17853 (mapcar 'file-truename (org-agenda-files t))))
17854 (filter
17855 (cond
17856 ((eq predicate 'files)
17857 (lambda (b) (with-current-buffer b (derived-mode-p 'org-mode))))
17858 ((eq predicate 'export)
17859 (lambda (b) (string-match "\*Org .*Export" (buffer-name b))))
17860 ((eq predicate 'agenda)
17861 (lambda (b)
17862 (with-current-buffer b
17863 (and (derived-mode-p 'org-mode)
17864 (setq bfn (buffer-file-name b))
17865 (member (file-truename bfn) agenda-files)))))
17866 (t (lambda (b) (with-current-buffer b
17867 (or (derived-mode-p 'org-mode)
17868 (string-match "\*Org .*Export"
17869 (buffer-name b)))))))))
17870 (delq nil
17871 (mapcar
17872 (lambda(b)
17873 (if (and (funcall filter b)
17874 (or (not exclude-tmp)
17875 (not (string-match "tmp" (buffer-name b)))))
17877 nil))
17878 (buffer-list)))))
17880 (defun org-agenda-files (&optional unrestricted archives)
17881 "Get the list of agenda files.
17882 Optional UNRESTRICTED means return the full list even if a restriction
17883 is currently in place.
17884 When ARCHIVES is t, include all archive files that are really being
17885 used by the agenda files. If ARCHIVE is `ifmode', do this only if
17886 `org-agenda-archives-mode' is t."
17887 (let ((files
17888 (cond
17889 ((and (not unrestricted) (get 'org-agenda-files 'org-restrict)))
17890 ((stringp org-agenda-files) (org-read-agenda-file-list))
17891 ((listp org-agenda-files) org-agenda-files)
17892 (t (error "Invalid value of `org-agenda-files'")))))
17893 (setq files (apply 'append
17894 (mapcar (lambda (f)
17895 (if (file-directory-p f)
17896 (directory-files
17897 f t org-agenda-file-regexp)
17898 (list f)))
17899 files)))
17900 (when org-agenda-skip-unavailable-files
17901 (setq files (delq nil
17902 (mapcar (function
17903 (lambda (file)
17904 (and (file-readable-p file) file)))
17905 files))))
17906 (when (or (eq archives t)
17907 (and (eq archives 'ifmode) (eq org-agenda-archives-mode t)))
17908 (setq files (org-add-archive-files files)))
17909 files))
17911 (defun org-agenda-file-p (&optional file)
17912 "Return non-nil, if FILE is an agenda file.
17913 If FILE is omitted, use the file associated with the current
17914 buffer."
17915 (member (or file (buffer-file-name))
17916 (org-agenda-files t)))
17918 (defun org-edit-agenda-file-list ()
17919 "Edit the list of agenda files.
17920 Depending on setup, this either uses customize to edit the variable
17921 `org-agenda-files', or it visits the file that is holding the list. In the
17922 latter case, the buffer is set up in a way that saving it automatically kills
17923 the buffer and restores the previous window configuration."
17924 (interactive)
17925 (if (stringp org-agenda-files)
17926 (let ((cw (current-window-configuration)))
17927 (find-file org-agenda-files)
17928 (org-set-local 'org-window-configuration cw)
17929 (org-add-hook 'after-save-hook
17930 (lambda ()
17931 (set-window-configuration
17932 (prog1 org-window-configuration
17933 (kill-buffer (current-buffer))))
17934 (org-install-agenda-files-menu)
17935 (message "New agenda file list installed"))
17936 nil 'local)
17937 (message "%s" (substitute-command-keys
17938 "Edit list and finish with \\[save-buffer]")))
17939 (customize-variable 'org-agenda-files)))
17941 (defun org-store-new-agenda-file-list (list)
17942 "Set new value for the agenda file list and save it correctly."
17943 (if (stringp org-agenda-files)
17944 (let ((fe (org-read-agenda-file-list t)) b u)
17945 (while (setq b (find-buffer-visiting org-agenda-files))
17946 (kill-buffer b))
17947 (with-temp-file org-agenda-files
17948 (insert
17949 (mapconcat
17950 (lambda (f) ;; Keep un-expanded entries.
17951 (if (setq u (assoc f fe))
17952 (cdr u)
17954 list "\n")
17955 "\n")))
17956 (let ((org-mode-hook nil) (org-inhibit-startup t)
17957 (org-insert-mode-line-in-empty-file nil))
17958 (setq org-agenda-files list)
17959 (customize-save-variable 'org-agenda-files org-agenda-files))))
17961 (defun org-read-agenda-file-list (&optional pair-with-expansion)
17962 "Read the list of agenda files from a file.
17963 If PAIR-WITH-EXPANSION is t return pairs with un-expanded
17964 filenames, used by `org-store-new-agenda-file-list' to write back
17965 un-expanded file names."
17966 (when (file-directory-p org-agenda-files)
17967 (error "`org-agenda-files' cannot be a single directory"))
17968 (when (stringp org-agenda-files)
17969 (with-temp-buffer
17970 (insert-file-contents org-agenda-files)
17971 (mapcar
17972 (lambda (f)
17973 (let ((e (expand-file-name (substitute-in-file-name f)
17974 org-directory)))
17975 (if pair-with-expansion
17976 (cons e f)
17977 e)))
17978 (org-split-string (buffer-string) "[ \t\r\n]*?[\r\n][ \t\r\n]*")))))
17980 ;;;###autoload
17981 (defun org-cycle-agenda-files ()
17982 "Cycle through the files in `org-agenda-files'.
17983 If the current buffer visits an agenda file, find the next one in the list.
17984 If the current buffer does not, find the first agenda file."
17985 (interactive)
17986 (let* ((fs (org-agenda-files t))
17987 (files (append fs (list (car fs))))
17988 (tcf (if buffer-file-name (file-truename buffer-file-name)))
17989 file)
17990 (unless files (user-error "No agenda files"))
17991 (catch 'exit
17992 (while (setq file (pop files))
17993 (if (equal (file-truename file) tcf)
17994 (when (car files)
17995 (find-file (car files))
17996 (throw 'exit t))))
17997 (find-file (car fs)))
17998 (if (buffer-base-buffer) (org-pop-to-buffer-same-window (buffer-base-buffer)))))
18000 (defun org-agenda-file-to-front (&optional to-end)
18001 "Move/add the current file to the top of the agenda file list.
18002 If the file is not present in the list, it is added to the front. If it is
18003 present, it is moved there. With optional argument TO-END, add/move to the
18004 end of the list."
18005 (interactive "P")
18006 (let ((org-agenda-skip-unavailable-files nil)
18007 (file-alist (mapcar (lambda (x)
18008 (cons (file-truename x) x))
18009 (org-agenda-files t)))
18010 (ctf (file-truename
18011 (or buffer-file-name
18012 (user-error "Please save the current buffer to a file"))))
18013 x had)
18014 (setq x (assoc ctf file-alist) had x)
18016 (if (not x) (setq x (cons ctf (abbreviate-file-name buffer-file-name))))
18017 (if to-end
18018 (setq file-alist (append (delq x file-alist) (list x)))
18019 (setq file-alist (cons x (delq x file-alist))))
18020 (org-store-new-agenda-file-list (mapcar 'cdr file-alist))
18021 (org-install-agenda-files-menu)
18022 (message "File %s to %s of agenda file list"
18023 (if had "moved" "added") (if to-end "end" "front"))))
18025 (defun org-remove-file (&optional file)
18026 "Remove current file from the list of files in variable `org-agenda-files'.
18027 These are the files which are being checked for agenda entries.
18028 Optional argument FILE means use this file instead of the current."
18029 (interactive)
18030 (let* ((org-agenda-skip-unavailable-files nil)
18031 (file (or file buffer-file-name
18032 (user-error "Current buffer does not visit a file")))
18033 (true-file (file-truename file))
18034 (afile (abbreviate-file-name file))
18035 (files (delq nil (mapcar
18036 (lambda (x)
18037 (if (equal true-file
18038 (file-truename x))
18039 nil x))
18040 (org-agenda-files t)))))
18041 (if (not (= (length files) (length (org-agenda-files t))))
18042 (progn
18043 (org-store-new-agenda-file-list files)
18044 (org-install-agenda-files-menu)
18045 (message "Removed file: %s" afile))
18046 (message "File was not in list: %s (not removed)" afile))))
18048 (defun org-file-menu-entry (file)
18049 (vector file (list 'find-file file) t))
18051 (defun org-check-agenda-file (file)
18052 "Make sure FILE exists. If not, ask user what to do."
18053 (when (not (file-exists-p file))
18054 (message "Non-existent agenda file %s. [R]emove from list or [A]bort?"
18055 (abbreviate-file-name file))
18056 (let ((r (downcase (read-char-exclusive))))
18057 (cond
18058 ((equal r ?r)
18059 (org-remove-file file)
18060 (throw 'nextfile t))
18061 (t (error "Abort"))))))
18063 (defun org-get-agenda-file-buffer (file)
18064 "Get a buffer visiting FILE. If the buffer needs to be created, add
18065 it to the list of buffers which might be released later."
18066 (let ((buf (org-find-base-buffer-visiting file)))
18067 (if buf
18068 buf ; just return it
18069 ;; Make a new buffer and remember it
18070 (setq buf (find-file-noselect file))
18071 (if buf (push buf org-agenda-new-buffers))
18072 buf)))
18074 (defun org-release-buffers (blist)
18075 "Release all buffers in list, asking the user for confirmation when needed.
18076 When a buffer is unmodified, it is just killed. When modified, it is saved
18077 \(if the user agrees) and then killed."
18078 (let (buf file)
18079 (while (setq buf (pop blist))
18080 (setq file (buffer-file-name buf))
18081 (when (and (buffer-modified-p buf)
18082 file
18083 (y-or-n-p (format "Save file %s? " file)))
18084 (with-current-buffer buf (save-buffer)))
18085 (kill-buffer buf))))
18087 (defun org-agenda-prepare-buffers (files)
18088 "Create buffers for all agenda files, protect archived trees and comments."
18089 (interactive)
18090 (let ((pa '(:org-archived t))
18091 (pc '(:org-comment t))
18092 (pall '(:org-archived t :org-comment t))
18093 (inhibit-read-only t)
18094 (org-inhibit-startup org-agenda-inhibit-startup)
18095 (rea (concat ":" org-archive-tag ":"))
18096 file re pos)
18097 (setq org-tag-alist-for-agenda nil
18098 org-tag-groups-alist-for-agenda nil)
18099 (save-window-excursion
18100 (save-restriction
18101 (while (setq file (pop files))
18102 (catch 'nextfile
18103 (if (bufferp file)
18104 (set-buffer file)
18105 (org-check-agenda-file file)
18106 (set-buffer (org-get-agenda-file-buffer file)))
18107 (widen)
18108 (org-set-regexps-and-options-for-tags)
18109 (setq pos (point))
18110 (goto-char (point-min))
18111 (let ((case-fold-search t))
18112 (when (search-forward "#+setupfile" nil t)
18113 ;; Don't set all regexps and options systematically as
18114 ;; this is only run for setting agenda tags from setup
18115 ;; file
18116 (org-set-regexps-and-options)))
18117 (or (memq 'category org-agenda-ignore-drawer-properties)
18118 (org-refresh-category-properties))
18119 (or (memq 'effort org-agenda-ignore-drawer-properties)
18120 (org-refresh-properties org-effort-property 'org-effort))
18121 (or (memq 'appt org-agenda-ignore-drawer-properties)
18122 (org-refresh-properties "APPT_WARNTIME" 'org-appt-warntime))
18123 (setq org-todo-keywords-for-agenda
18124 (append org-todo-keywords-for-agenda org-todo-keywords-1))
18125 (setq org-done-keywords-for-agenda
18126 (append org-done-keywords-for-agenda org-done-keywords))
18127 (setq org-todo-keyword-alist-for-agenda
18128 (append org-todo-keyword-alist-for-agenda org-todo-key-alist))
18129 (setq org-tag-alist-for-agenda
18130 (org-uniquify
18131 (append org-tag-alist-for-agenda
18132 org-tag-alist
18133 org-tag-persistent-alist)))
18134 (if org-group-tags
18135 (setq org-tag-groups-alist-for-agenda
18136 (org-uniquify-alist
18137 (append org-tag-groups-alist-for-agenda org-tag-groups-alist))))
18138 (org-with-silent-modifications
18139 (save-excursion
18140 (remove-text-properties (point-min) (point-max) pall)
18141 (when org-agenda-skip-archived-trees
18142 (goto-char (point-min))
18143 (while (re-search-forward rea nil t)
18144 (if (org-at-heading-p t)
18145 (add-text-properties (point-at-bol) (org-end-of-subtree t) pa))))
18146 (goto-char (point-min))
18147 (setq re (format org-heading-keyword-regexp-format
18148 org-comment-string))
18149 (while (re-search-forward re nil t)
18150 (add-text-properties
18151 (match-beginning 0) (org-end-of-subtree t) pc))))
18152 (goto-char pos)))))
18153 (setq org-todo-keywords-for-agenda
18154 (org-uniquify org-todo-keywords-for-agenda))
18155 (setq org-todo-keyword-alist-for-agenda
18156 (org-uniquify org-todo-keyword-alist-for-agenda))))
18159 ;;;; CDLaTeX minor mode
18161 (defvar org-cdlatex-mode-map (make-sparse-keymap)
18162 "Keymap for the minor `org-cdlatex-mode'.")
18164 (org-defkey org-cdlatex-mode-map "_" 'org-cdlatex-underscore-caret)
18165 (org-defkey org-cdlatex-mode-map "^" 'org-cdlatex-underscore-caret)
18166 (org-defkey org-cdlatex-mode-map "`" 'cdlatex-math-symbol)
18167 (org-defkey org-cdlatex-mode-map "'" 'org-cdlatex-math-modify)
18168 (org-defkey org-cdlatex-mode-map "\C-c{" 'cdlatex-environment)
18170 (defvar org-cdlatex-texmathp-advice-is-done nil
18171 "Flag remembering if we have applied the advice to texmathp already.")
18173 (define-minor-mode org-cdlatex-mode
18174 "Toggle the minor `org-cdlatex-mode'.
18175 This mode supports entering LaTeX environment and math in LaTeX fragments
18176 in Org-mode.
18177 \\{org-cdlatex-mode-map}"
18178 nil " OCDL" nil
18179 (when org-cdlatex-mode
18180 (require 'cdlatex)
18181 (run-hooks 'cdlatex-mode-hook)
18182 (cdlatex-compute-tables))
18183 (unless org-cdlatex-texmathp-advice-is-done
18184 (setq org-cdlatex-texmathp-advice-is-done t)
18185 (defadvice texmathp (around org-math-always-on activate)
18186 "Always return t in org-mode buffers.
18187 This is because we want to insert math symbols without dollars even outside
18188 the LaTeX math segments. If Orgmode thinks that point is actually inside
18189 an embedded LaTeX fragment, let texmathp do its job.
18190 \\[org-cdlatex-mode-map]"
18191 (interactive)
18192 (let (p)
18193 (cond
18194 ((not (derived-mode-p 'org-mode)) ad-do-it)
18195 ((eq this-command 'cdlatex-math-symbol)
18196 (setq ad-return-value t
18197 texmathp-why '("cdlatex-math-symbol in org-mode" . 0)))
18199 (let ((p (org-inside-LaTeX-fragment-p)))
18200 (if (and p (member (car p) (plist-get org-format-latex-options :matchers)))
18201 (setq ad-return-value t
18202 texmathp-why '("Org-mode embedded math" . 0))
18203 (if p ad-do-it)))))))))
18205 (defun turn-on-org-cdlatex ()
18206 "Unconditionally turn on `org-cdlatex-mode'."
18207 (org-cdlatex-mode 1))
18209 (defun org-try-cdlatex-tab ()
18210 "Check if it makes sense to execute `cdlatex-tab', and do it if yes.
18211 It makes sense to do so if `org-cdlatex-mode' is active and if the cursor is
18212 - inside a LaTeX fragment, or
18213 - after the first word in a line, where an abbreviation expansion could
18214 insert a LaTeX environment."
18215 (when org-cdlatex-mode
18216 (cond
18217 ;; Before any word on the line: No expansion possible.
18218 ((save-excursion (skip-chars-backward " \t") (bolp)) nil)
18219 ;; Just after first word on the line: Expand it. Make sure it
18220 ;; cannot happen on headlines, though.
18221 ((save-excursion
18222 (skip-chars-backward "a-zA-Z0-9*")
18223 (skip-chars-backward " \t")
18224 (and (bolp) (not (org-at-heading-p))))
18225 (cdlatex-tab) t)
18226 ((org-inside-LaTeX-fragment-p) (cdlatex-tab) t))))
18228 (defun org-cdlatex-underscore-caret (&optional arg)
18229 "Execute `cdlatex-sub-superscript' in LaTeX fragments.
18230 Revert to the normal definition outside of these fragments."
18231 (interactive "P")
18232 (if (org-inside-LaTeX-fragment-p)
18233 (call-interactively 'cdlatex-sub-superscript)
18234 (let (org-cdlatex-mode)
18235 (call-interactively (key-binding (vector last-input-event))))))
18237 (defun org-cdlatex-math-modify (&optional arg)
18238 "Execute `cdlatex-math-modify' in LaTeX fragments.
18239 Revert to the normal definition outside of these fragments."
18240 (interactive "P")
18241 (if (org-inside-LaTeX-fragment-p)
18242 (call-interactively 'cdlatex-math-modify)
18243 (let (org-cdlatex-mode)
18244 (call-interactively (key-binding (vector last-input-event))))))
18248 ;;;; LaTeX fragments
18250 (defun org-inside-LaTeX-fragment-p ()
18251 "Test if point is inside a LaTeX fragment.
18252 I.e. after a \\begin, \\(, \\[, $, or $$, without the corresponding closing
18253 sequence appearing also before point.
18254 Even though the matchers for math are configurable, this function assumes
18255 that \\begin, \\(, \\[, and $$ are always used. Only the single dollar
18256 delimiters are skipped when they have been removed by customization.
18257 The return value is nil, or a cons cell with the delimiter and the
18258 position of this delimiter.
18260 This function does a reasonably good job, but can locally be fooled by
18261 for example currency specifications. For example it will assume being in
18262 inline math after \"$22.34\". The LaTeX fragment formatter will only format
18263 fragments that are properly closed, but during editing, we have to live
18264 with the uncertainty caused by missing closing delimiters. This function
18265 looks only before point, not after."
18266 (catch 'exit
18267 (let ((pos (point))
18268 (dodollar (member "$" (plist-get org-format-latex-options :matchers)))
18269 (lim (progn
18270 (re-search-backward (concat "^\\(" paragraph-start "\\)") nil t)
18271 (point)))
18272 dd-on str (start 0) m re)
18273 (goto-char pos)
18274 (when dodollar
18275 (setq str (concat (buffer-substring lim (point)) "\000 X$.")
18276 re (nth 1 (assoc "$" org-latex-regexps)))
18277 (while (string-match re str start)
18278 (cond
18279 ((= (match-end 0) (length str))
18280 (throw 'exit (cons "$" (+ lim (match-beginning 0) 1))))
18281 ((= (match-end 0) (- (length str) 5))
18282 (throw 'exit nil))
18283 (t (setq start (match-end 0))))))
18284 (when (setq m (re-search-backward "\\(\\\\begin{[^}]*}\\|\\\\(\\|\\\\\\[\\)\\|\\(\\\\end{[^}]*}\\|\\\\)\\|\\\\\\]\\)\\|\\(\\$\\$\\)" lim t))
18285 (goto-char pos)
18286 (and (match-beginning 1) (throw 'exit (cons (match-string 1) m)))
18287 (and (match-beginning 2) (throw 'exit nil))
18288 ;; count $$
18289 (while (re-search-backward "\\$\\$" lim t)
18290 (setq dd-on (not dd-on)))
18291 (goto-char pos)
18292 (if dd-on (cons "$$" m))))))
18294 (defun org-inside-latex-macro-p ()
18295 "Is point inside a LaTeX macro or its arguments?"
18296 (save-match-data
18297 (org-in-regexp
18298 "\\\\[a-zA-Z]+\\*?\\(\\(\\[[^][\n{}]*\\]\\)\\|\\({[^{}\n]*}\\)\\)*")))
18300 (defvar org-latex-fragment-image-overlays nil
18301 "List of overlays carrying the images of latex fragments.")
18302 (make-variable-buffer-local 'org-latex-fragment-image-overlays)
18304 (defun org-remove-latex-fragment-image-overlays ()
18305 "Remove all overlays with LaTeX fragment images in current buffer."
18306 (mapc 'delete-overlay org-latex-fragment-image-overlays)
18307 (setq org-latex-fragment-image-overlays nil))
18309 (defun org-preview-latex-fragment (&optional subtree)
18310 "Preview the LaTeX fragment at point, or all locally or globally.
18311 If the cursor is in a LaTeX fragment, create the image and overlay
18312 it over the source code. If there is no fragment at point, display
18313 all fragments in the current text, from one headline to the next. With
18314 prefix SUBTREE, display all fragments in the current subtree. With a
18315 double prefix arg \\[universal-argument] \\[universal-argument], or when \
18316 the cursor is before the first headline,
18317 display all fragments in the buffer.
18318 The images can be removed again with \\[org-ctrl-c-ctrl-c]."
18319 (interactive "P")
18320 (unless buffer-file-name
18321 (user-error "Can't preview LaTeX fragment in a non-file buffer"))
18322 (when (display-graphic-p)
18323 (org-remove-latex-fragment-image-overlays)
18324 (save-excursion
18325 (save-restriction
18326 (let (beg end at msg)
18327 (cond
18328 ((or (equal subtree '(16))
18329 (not (save-excursion
18330 (re-search-backward org-outline-regexp-bol nil t))))
18331 (setq beg (point-min) end (point-max)
18332 msg "Creating images for buffer...%s"))
18333 ((equal subtree '(4))
18334 (org-back-to-heading)
18335 (setq beg (point) end (org-end-of-subtree t)
18336 msg "Creating images for subtree...%s"))
18338 (if (setq at (org-inside-LaTeX-fragment-p))
18339 (goto-char (max (point-min) (- (cdr at) 2)))
18340 (org-back-to-heading))
18341 (setq beg (point) end (progn (outline-next-heading) (point))
18342 msg (if at "Creating image...%s"
18343 "Creating images for entry...%s"))))
18344 (message msg "")
18345 (narrow-to-region beg end)
18346 (goto-char beg)
18347 (org-format-latex
18348 (concat org-latex-preview-ltxpng-directory (file-name-sans-extension
18349 (file-name-nondirectory
18350 buffer-file-name)))
18351 default-directory 'overlays msg at 'forbuffer
18352 org-latex-create-formula-image-program)
18353 (message msg "done. Use `C-c C-c' to remove images."))))))
18355 (defun org-format-latex (prefix &optional dir overlays msg at
18356 forbuffer processing-type)
18357 "Replace LaTeX fragments with links to an image, and produce images.
18358 Some of the options can be changed using the variable
18359 `org-format-latex-options'."
18360 (if (and overlays (fboundp 'clear-image-cache)) (clear-image-cache))
18361 (let* ((prefixnodir (file-name-nondirectory prefix))
18362 (absprefix (expand-file-name prefix dir))
18363 (todir (file-name-directory absprefix))
18364 (opt org-format-latex-options)
18365 (optnew org-format-latex-options)
18366 (matchers (plist-get opt :matchers))
18367 (re-list org-latex-regexps)
18368 (cnt 0) txt hash link beg end re e checkdir
18369 string
18370 m n block-type block linkfile movefile ov)
18371 ;; Check the different regular expressions
18372 (while (setq e (pop re-list))
18373 (setq m (car e) re (nth 1 e) n (nth 2 e) block-type (nth 3 e)
18374 block (if block-type "\n\n" ""))
18375 (when (member m matchers)
18376 (goto-char (point-min))
18377 (while (re-search-forward re nil t)
18378 (when (and (or (not at) (equal (cdr at) (match-beginning n)))
18379 (or (not overlays)
18380 (not (eq (get-char-property (match-beginning n)
18381 'org-overlay-type)
18382 'org-latex-overlay))))
18383 (cond
18384 ((eq processing-type 'verbatim))
18385 ((eq processing-type 'mathjax)
18386 ;; Prepare for MathJax processing.
18387 (setq string (match-string n))
18388 (when (member m '("$" "$1"))
18389 (save-excursion
18390 (delete-region (match-beginning n) (match-end n))
18391 (goto-char (match-beginning n))
18392 (insert (concat "\\(" (substring string 1 -1) "\\)")))))
18393 ((or (eq processing-type 'dvipng)
18394 (eq processing-type 'imagemagick))
18395 ;; Process to an image.
18396 (setq txt (match-string n)
18397 beg (match-beginning n) end (match-end n)
18398 cnt (1+ cnt))
18399 (let ((face (face-at-point))
18400 (fg (plist-get opt :foreground))
18401 (bg (plist-get opt :background))
18402 ;; Ensure full list is printed.
18403 print-length print-level)
18404 (when forbuffer
18405 ;; Get the colors from the face at point.
18406 (goto-char beg)
18407 (when (eq fg 'auto)
18408 (setq fg (face-attribute face :foreground nil 'default)))
18409 (when (eq bg 'auto)
18410 (setq bg (face-attribute face :background nil 'default)))
18411 (setq optnew (copy-sequence opt))
18412 (plist-put optnew :foreground fg)
18413 (plist-put optnew :background bg))
18414 (setq hash (sha1 (prin1-to-string
18415 (list org-format-latex-header
18416 org-latex-default-packages-alist
18417 org-latex-packages-alist
18418 org-format-latex-options
18419 forbuffer txt fg bg)))
18420 linkfile (format "%s_%s.png" prefix hash)
18421 movefile (format "%s_%s.png" absprefix hash)))
18422 (setq link (concat block "[[file:" linkfile "]]" block))
18423 (if msg (message msg cnt))
18424 (goto-char beg)
18425 (unless checkdir ; Ensure the directory exists.
18426 (setq checkdir t)
18427 (or (file-directory-p todir) (make-directory todir t)))
18428 (unless (file-exists-p movefile)
18429 (org-create-formula-image
18430 txt movefile optnew forbuffer processing-type))
18431 (if overlays
18432 (progn
18433 (mapc (lambda (o)
18434 (if (eq (overlay-get o 'org-overlay-type)
18435 'org-latex-overlay)
18436 (delete-overlay o)))
18437 (overlays-in beg end))
18438 (setq ov (make-overlay beg end))
18439 (overlay-put ov 'org-overlay-type 'org-latex-overlay)
18440 (if (featurep 'xemacs)
18441 (progn
18442 (overlay-put ov 'invisible t)
18443 (overlay-put
18444 ov 'end-glyph
18445 (make-glyph (vector 'png :file movefile))))
18446 (overlay-put
18447 ov 'display
18448 (list 'image :type 'png :file movefile :ascent 'center)))
18449 (push ov org-latex-fragment-image-overlays)
18450 (goto-char end))
18451 (delete-region beg end)
18452 (insert (org-add-props link
18453 (list 'org-latex-src
18454 (replace-regexp-in-string
18455 "\"" "" txt)
18456 'org-latex-src-embed-type
18457 (if block-type 'paragraph 'character))))))
18458 ((eq processing-type 'mathml)
18459 ;; Process to MathML
18460 (unless (save-match-data (org-format-latex-mathml-available-p))
18461 (user-error "LaTeX to MathML converter not configured"))
18462 (setq txt (match-string n)
18463 beg (match-beginning n) end (match-end n)
18464 cnt (1+ cnt))
18465 (if msg (message msg cnt))
18466 (goto-char beg)
18467 (delete-region beg end)
18468 (insert (org-format-latex-as-mathml
18469 txt block-type prefix dir)))
18471 (error "Unknown conversion type %s for LaTeX fragments"
18472 processing-type)))))))))
18474 (defun org-create-math-formula (latex-frag &optional mathml-file)
18475 "Convert LATEX-FRAG to MathML and store it in MATHML-FILE.
18476 Use `org-latex-to-mathml-convert-command'. If the conversion is
18477 sucessful, return the portion between \"<math...> </math>\"
18478 elements otherwise return nil. When MATHML-FILE is specified,
18479 write the results in to that file. When invoked as an
18480 interactive command, prompt for LATEX-FRAG, with initial value
18481 set to the current active region and echo the results for user
18482 inspection."
18483 (interactive (list (let ((frag (when (org-region-active-p)
18484 (buffer-substring-no-properties
18485 (region-beginning) (region-end)))))
18486 (read-string "LaTeX Fragment: " frag nil frag))))
18487 (unless latex-frag (error "Invalid LaTeX fragment"))
18488 (let* ((tmp-in-file (file-relative-name
18489 (make-temp-name (expand-file-name "ltxmathml-in"))))
18490 (ignore (write-region latex-frag nil tmp-in-file))
18491 (tmp-out-file (file-relative-name
18492 (make-temp-name (expand-file-name "ltxmathml-out"))))
18493 (cmd (format-spec
18494 org-latex-to-mathml-convert-command
18495 `((?j . ,(shell-quote-argument
18496 (expand-file-name org-latex-to-mathml-jar-file)))
18497 (?I . ,(shell-quote-argument tmp-in-file))
18498 (?o . ,(shell-quote-argument tmp-out-file)))))
18499 mathml shell-command-output)
18500 (when (org-called-interactively-p 'any)
18501 (unless (org-format-latex-mathml-available-p)
18502 (user-error "LaTeX to MathML converter not configured")))
18503 (message "Running %s" cmd)
18504 (setq shell-command-output (shell-command-to-string cmd))
18505 (setq mathml
18506 (when (file-readable-p tmp-out-file)
18507 (with-current-buffer (find-file-noselect tmp-out-file t)
18508 (goto-char (point-min))
18509 (when (re-search-forward
18510 (concat
18511 (regexp-quote
18512 "<math xmlns=\"http://www.w3.org/1998/Math/MathML\">")
18513 "\\(.\\|\n\\)*"
18514 (regexp-quote "</math>")) nil t)
18515 (prog1 (match-string 0) (kill-buffer))))))
18516 (cond
18517 (mathml
18518 (setq mathml
18519 (concat "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" mathml))
18520 (when mathml-file
18521 (write-region mathml nil mathml-file))
18522 (when (org-called-interactively-p 'any)
18523 (message mathml)))
18524 ((message "LaTeX to MathML conversion failed")
18525 (message shell-command-output)))
18526 (delete-file tmp-in-file)
18527 (when (file-exists-p tmp-out-file)
18528 (delete-file tmp-out-file))
18529 mathml))
18531 (defun org-format-latex-as-mathml (latex-frag latex-frag-type
18532 prefix &optional dir)
18533 "Use `org-create-math-formula' but check local cache first."
18534 (let* ((absprefix (expand-file-name prefix dir))
18535 (print-length nil) (print-level nil)
18536 (formula-id (concat
18537 "formula-"
18538 (sha1
18539 (prin1-to-string
18540 (list latex-frag
18541 org-latex-to-mathml-convert-command)))))
18542 (formula-cache (format "%s-%s.mathml" absprefix formula-id))
18543 (formula-cache-dir (file-name-directory formula-cache)))
18545 (unless (file-directory-p formula-cache-dir)
18546 (make-directory formula-cache-dir t))
18548 (unless (file-exists-p formula-cache)
18549 (org-create-math-formula latex-frag formula-cache))
18551 (if (file-exists-p formula-cache)
18552 ;; Successful conversion. Return the link to MathML file.
18553 (org-add-props
18554 (format "[[file:%s]]" (file-relative-name formula-cache dir))
18555 (list 'org-latex-src (replace-regexp-in-string "\"" "" latex-frag)
18556 'org-latex-src-embed-type (if latex-frag-type
18557 'paragraph 'character)))
18558 ;; Failed conversion. Return the LaTeX fragment verbatim
18559 latex-frag)))
18561 (defun org-create-formula-image (string tofile options buffer &optional type)
18562 "Create an image from LaTeX source using dvipng or convert.
18563 This function calls either `org-create-formula-image-with-dvipng'
18564 or `org-create-formula-image-with-imagemagick' depending on the
18565 value of `org-latex-create-formula-image-program' or on the value
18566 of the optional TYPE variable.
18568 Note: ultimately these two function should be combined as they
18569 share a good deal of logic."
18570 (org-check-external-command
18571 "latex" "needed to convert LaTeX fragments to images")
18572 (funcall
18573 (case (or type org-latex-create-formula-image-program)
18574 ('dvipng
18575 (org-check-external-command
18576 "dvipng" "needed to convert LaTeX fragments to images")
18577 #'org-create-formula-image-with-dvipng)
18578 ('imagemagick
18579 (org-check-external-command
18580 "convert" "you need to install imagemagick")
18581 #'org-create-formula-image-with-imagemagick)
18582 (t (error
18583 "Invalid value of `org-latex-create-formula-image-program'")))
18584 string tofile options buffer))
18586 (declare-function org-export-get-backend "ox" (name))
18587 (declare-function org-export--get-global-options "ox" (&optional backend))
18588 (declare-function org-export--get-inbuffer-options "ox" (&optional backend))
18589 (declare-function org-latex-guess-inputenc "ox-latex" (header))
18590 (declare-function org-latex-guess-babel-language "ox-latex" (header info))
18591 (defun org-create-formula--latex-header ()
18592 "Return LaTeX header appropriate for previewing a LaTeX snippet."
18593 (let ((info (org-combine-plists (org-export--get-global-options
18594 (org-export-get-backend 'latex))
18595 (org-export--get-inbuffer-options
18596 (org-export-get-backend 'latex)))))
18597 (org-latex-guess-babel-language
18598 (org-latex-guess-inputenc
18599 (org-splice-latex-header
18600 org-format-latex-header
18601 org-latex-default-packages-alist
18602 org-latex-packages-alist t
18603 (plist-get info :latex-header)))
18604 info)))
18606 ;; This function borrows from Ganesh Swami's latex2png.el
18607 (defun org-create-formula-image-with-dvipng (string tofile options buffer)
18608 "This calls dvipng."
18609 (require 'ox-latex)
18610 (let* ((tmpdir (if (featurep 'xemacs)
18611 (temp-directory)
18612 temporary-file-directory))
18613 (texfilebase (make-temp-name
18614 (expand-file-name "orgtex" tmpdir)))
18615 (texfile (concat texfilebase ".tex"))
18616 (dvifile (concat texfilebase ".dvi"))
18617 (pngfile (concat texfilebase ".png"))
18618 (fnh (if (featurep 'xemacs)
18619 (font-height (face-font 'default))
18620 (face-attribute 'default :height nil)))
18621 (scale (or (plist-get options (if buffer :scale :html-scale)) 1.0))
18622 (dpi (number-to-string (* scale (floor (* 0.9 (if buffer fnh 140.))))))
18623 (fg (or (plist-get options (if buffer :foreground :html-foreground))
18624 "Black"))
18625 (bg (or (plist-get options (if buffer :background :html-background))
18626 "Transparent")))
18627 (if (eq fg 'default) (setq fg (org-dvipng-color :foreground))
18628 (unless (string= fg "Transparent") (setq fg (org-dvipng-color-format fg))))
18629 (if (eq bg 'default) (setq bg (org-dvipng-color :background))
18630 (unless (string= bg "Transparent") (setq bg (org-dvipng-color-format bg))))
18631 (let ((latex-header (org-create-formula--latex-header)))
18632 (with-temp-file texfile
18633 (insert latex-header)
18634 (insert "\n\\begin{document}\n" string "\n\\end{document}\n")))
18635 (let ((dir default-directory))
18636 (condition-case nil
18637 (progn
18638 (cd tmpdir)
18639 (call-process "latex" nil nil nil texfile))
18640 (error nil))
18641 (cd dir))
18642 (if (not (file-exists-p dvifile))
18643 (progn (message "Failed to create dvi file from %s" texfile) nil)
18644 (condition-case nil
18645 (if (featurep 'xemacs)
18646 (call-process "dvipng" nil nil nil
18647 "-fg" fg "-bg" bg
18648 "-T" "tight"
18649 "-o" pngfile
18650 dvifile)
18651 (call-process "dvipng" nil nil nil
18652 "-fg" fg "-bg" bg
18653 "-D" dpi
18654 ;;"-x" scale "-y" scale
18655 "-T" "tight"
18656 "-o" pngfile
18657 dvifile))
18658 (error nil))
18659 (if (not (file-exists-p pngfile))
18660 (if org-format-latex-signal-error
18661 (error "Failed to create png file from %s" texfile)
18662 (message "Failed to create png file from %s" texfile)
18663 nil)
18664 ;; Use the requested file name and clean up
18665 (copy-file pngfile tofile 'replace)
18666 (loop for e in '(".dvi" ".tex" ".aux" ".log" ".png" ".out") do
18667 (if (file-exists-p (concat texfilebase e))
18668 (delete-file (concat texfilebase e))))
18669 pngfile))))
18671 (declare-function org-latex-compile "ox-latex" (texfile &optional snippet))
18672 (defun org-create-formula-image-with-imagemagick (string tofile options buffer)
18673 "This calls convert, which is included into imagemagick."
18674 (require 'ox-latex)
18675 (let* ((tmpdir (if (featurep 'xemacs)
18676 (temp-directory)
18677 temporary-file-directory))
18678 (texfilebase (make-temp-name
18679 (expand-file-name "orgtex" tmpdir)))
18680 (texfile (concat texfilebase ".tex"))
18681 (pdffile (concat texfilebase ".pdf"))
18682 (pngfile (concat texfilebase ".png"))
18683 (fnh (if (featurep 'xemacs)
18684 (font-height (face-font 'default))
18685 (face-attribute 'default :height nil)))
18686 (scale (or (plist-get options (if buffer :scale :html-scale)) 1.0))
18687 (dpi (number-to-string (* scale (floor (if buffer fnh 120.)))))
18688 (fg (or (plist-get options (if buffer :foreground :html-foreground))
18689 "black"))
18690 (bg (or (plist-get options (if buffer :background :html-background))
18691 "white")))
18692 (if (eq fg 'default) (setq fg (org-latex-color :foreground))
18693 (setq fg (org-latex-color-format fg)))
18694 (if (eq bg 'default) (setq bg (org-latex-color :background))
18695 (setq bg (org-latex-color-format
18696 (if (string= bg "Transparent") "white" bg))))
18697 (let ((latex-header (org-create-formula--latex-header)))
18698 (with-temp-file texfile
18699 (insert latex-header)
18700 (insert "\n\\begin{document}\n"
18701 "\\definecolor{fg}{rgb}{" fg "}\n"
18702 "\\definecolor{bg}{rgb}{" bg "}\n"
18703 "\n\\pagecolor{bg}\n"
18704 "\n{\\color{fg}\n"
18705 string
18706 "\n}\n"
18707 "\n\\end{document}\n")))
18708 (org-latex-compile texfile t)
18709 (if (not (file-exists-p pdffile))
18710 (progn (message "Failed to create pdf file from %s" texfile) nil)
18711 (condition-case nil
18712 (if (featurep 'xemacs)
18713 (call-process "convert" nil nil nil
18714 "-density" "96"
18715 "-trim"
18716 "-antialias"
18717 pdffile
18718 "-quality" "100"
18719 ;; "-sharpen" "0x1.0"
18720 pngfile)
18721 (call-process "convert" nil nil nil
18722 "-density" dpi
18723 "-trim"
18724 "-antialias"
18725 pdffile
18726 "-quality" "100"
18727 ;; "-sharpen" "0x1.0"
18728 pngfile))
18729 (error nil))
18730 (if (not (file-exists-p pngfile))
18731 (if org-format-latex-signal-error
18732 (error "Failed to create png file from %s" texfile)
18733 (message "Failed to create png file from %s" texfile)
18734 nil)
18735 ;; Use the requested file name and clean up
18736 (copy-file pngfile tofile 'replace)
18737 (loop for e in '(".pdf" ".tex" ".aux" ".log" ".png") do
18738 (if (file-exists-p (concat texfilebase e))
18739 (delete-file (concat texfilebase e))))
18740 pngfile))))
18742 (defun org-splice-latex-header (tpl def-pkg pkg snippets-p &optional extra)
18743 "Fill a LaTeX header template TPL.
18744 In the template, the following place holders will be recognized:
18746 [DEFAULT-PACKAGES] \\usepackage statements for DEF-PKG
18747 [NO-DEFAULT-PACKAGES] do not include DEF-PKG
18748 [PACKAGES] \\usepackage statements for PKG
18749 [NO-PACKAGES] do not include PKG
18750 [EXTRA] the string EXTRA
18751 [NO-EXTRA] do not include EXTRA
18753 For backward compatibility, if both the positive and the negative place
18754 holder is missing, the positive one (without the \"NO-\") will be
18755 assumed to be present at the end of the template.
18756 DEF-PKG and PKG are assumed to be alists of options/packagename lists.
18757 EXTRA is a string.
18758 SNIPPETS-P indicates if this is run to create snippet images for HTML."
18759 (let (rpl (end ""))
18760 (if (string-match "^[ \t]*\\[\\(NO-\\)?DEFAULT-PACKAGES\\][ \t]*\n?" tpl)
18761 (setq rpl (if (or (match-end 1) (not def-pkg))
18762 "" (org-latex-packages-to-string def-pkg snippets-p t))
18763 tpl (replace-match rpl t t tpl))
18764 (if def-pkg (setq end (org-latex-packages-to-string def-pkg snippets-p))))
18766 (if (string-match "\\[\\(NO-\\)?PACKAGES\\][ \t]*\n?" tpl)
18767 (setq rpl (if (or (match-end 1) (not pkg))
18768 "" (org-latex-packages-to-string pkg snippets-p t))
18769 tpl (replace-match rpl t t tpl))
18770 (if pkg (setq end
18771 (concat end "\n"
18772 (org-latex-packages-to-string pkg snippets-p)))))
18774 (if (string-match "\\[\\(NO-\\)?EXTRA\\][ \t]*\n?" tpl)
18775 (setq rpl (if (or (match-end 1) (not extra))
18776 "" (concat extra "\n"))
18777 tpl (replace-match rpl t t tpl))
18778 (if (and extra (string-match "\\S-" extra))
18779 (setq end (concat end "\n" extra))))
18781 (if (string-match "\\S-" end)
18782 (concat tpl "\n" end)
18783 tpl)))
18785 (defun org-latex-packages-to-string (pkg &optional snippets-p newline)
18786 "Turn an alist of packages into a string with the \\usepackage macros."
18787 (setq pkg (mapconcat (lambda(p)
18788 (cond
18789 ((stringp p) p)
18790 ((and snippets-p (>= (length p) 3) (not (nth 2 p)))
18791 (format "%% Package %s omitted" (cadr p)))
18792 ((equal "" (car p))
18793 (format "\\usepackage{%s}" (cadr p)))
18795 (format "\\usepackage[%s]{%s}"
18796 (car p) (cadr p)))))
18798 "\n"))
18799 (if newline (concat pkg "\n") pkg))
18801 (defun org-dvipng-color (attr)
18802 "Return a RGB color specification for dvipng."
18803 (apply 'format "rgb %s %s %s"
18804 (mapcar 'org-normalize-color
18805 (if (featurep 'xemacs)
18806 (color-rgb-components
18807 (face-property 'default
18808 (cond ((eq attr :foreground) 'foreground)
18809 ((eq attr :background) 'background))))
18810 (color-values (face-attribute 'default attr nil))))))
18812 (defun org-dvipng-color-format (color-name)
18813 "Convert COLOR-NAME to a RGB color value for dvipng."
18814 (apply 'format "rgb %s %s %s"
18815 (mapcar 'org-normalize-color
18816 (color-values color-name))))
18818 (defun org-latex-color (attr)
18819 "Return a RGB color for the LaTeX color package."
18820 (apply 'format "%s,%s,%s"
18821 (mapcar 'org-normalize-color
18822 (if (featurep 'xemacs)
18823 (color-rgb-components
18824 (face-property 'default
18825 (cond ((eq attr :foreground) 'foreground)
18826 ((eq attr :background) 'background))))
18827 (color-values (face-attribute 'default attr nil))))))
18829 (defun org-latex-color-format (color-name)
18830 "Convert COLOR-NAME to a RGB color value."
18831 (apply 'format "%s,%s,%s"
18832 (mapcar 'org-normalize-color
18833 (color-values color-name))))
18835 (defun org-normalize-color (value)
18836 "Return string to be used as color value for an RGB component."
18837 (format "%g" (/ value 65535.0)))
18841 ;; Image display
18843 (defvar org-inline-image-overlays nil)
18844 (make-variable-buffer-local 'org-inline-image-overlays)
18846 (defun org-toggle-inline-images (&optional include-linked)
18847 "Toggle the display of inline images.
18848 INCLUDE-LINKED is passed to `org-display-inline-images'."
18849 (interactive "P")
18850 (if org-inline-image-overlays
18851 (progn
18852 (org-remove-inline-images)
18853 (message "Inline image display turned off"))
18854 (org-display-inline-images include-linked)
18855 (if (and (org-called-interactively-p)
18856 org-inline-image-overlays)
18857 (message "%d images displayed inline"
18858 (length org-inline-image-overlays))
18859 (message "No images to display inline"))))
18861 (defun org-redisplay-inline-images ()
18862 "Refresh the display of inline images."
18863 (interactive)
18864 (if (not org-inline-image-overlays)
18865 (org-toggle-inline-images)
18866 (org-toggle-inline-images)
18867 (org-toggle-inline-images)))
18869 (defun org-display-inline-images (&optional include-linked refresh beg end)
18870 "Display inline images.
18872 An inline image is a link which follows either of these
18873 conventions:
18875 1. Its path is a file with an extension matching return value
18876 from `image-file-name-regexp' and it has no contents.
18878 2. Its description consists in a single link of the previous
18879 type.
18881 When optional argument INCLUDE-LINKED is non-nil, also links with
18882 a text description part will be inlined. This can be nice for
18883 a quick look at those images, but it does not reflect what
18884 exported files will look like.
18886 When optional argument REFRESH is non-nil, refresh existing
18887 images between BEG and END. This will create new image displays
18888 only if necessary. BEG and END default to the buffer
18889 boundaries."
18890 (interactive "P")
18891 (when (display-graphic-p)
18892 (unless refresh
18893 (org-remove-inline-images)
18894 (when (fboundp 'clear-image-cache) (clear-image-cache)))
18895 (org-with-wide-buffer
18896 (goto-char (or beg (point-min)))
18897 (let ((case-fold-search t)
18898 (file-extension-re (org-image-file-name-regexp)))
18899 (while (re-search-forward "[][]\\[\\(?:file\\|[./~]\\)" end t)
18900 (let ((link (save-match-data (org-element-context))))
18901 ;; Check if we're at an inline image.
18902 (when (and (equal (org-element-property :type link) "file")
18903 (or include-linked
18904 (not (org-element-property :contents-begin link)))
18905 (let ((parent (org-element-property :parent link)))
18906 (or (not (eq (org-element-type parent) 'link))
18907 (not (cdr (org-element-contents parent)))))
18908 (org-string-match-p file-extension-re
18909 (org-element-property :path link)))
18910 (let ((file (expand-file-name (org-element-property :path link))))
18911 (when (file-exists-p file)
18912 (let ((width
18913 ;; Apply `org-image-actual-width' specifications.
18914 (cond
18915 ((not (image-type-available-p 'imagemagick)) nil)
18916 ((eq org-image-actual-width t) nil)
18917 ((listp org-image-actual-width)
18919 ;; First try to find a width among
18920 ;; attributes associated to the paragraph
18921 ;; containing link.
18922 (let ((paragraph
18923 (let ((e link))
18924 (while (and (setq e (org-element-property
18925 :parent e))
18926 (not (eq (org-element-type e)
18927 'paragraph))))
18928 e)))
18929 (when paragraph
18930 (save-excursion
18931 (goto-char (org-element-property :begin paragraph))
18932 (when (save-match-data
18933 (re-search-forward
18934 "^[ \t]*#\\+attr_.*?: +.*?:width +\\(\\S-+\\)"
18935 (org-element-property
18936 :post-affiliated paragraph)
18938 (string-to-number (match-string 1))))))
18939 ;; Otherwise, fall-back to provided number.
18940 (car org-image-actual-width)))
18941 ((numberp org-image-actual-width)
18942 org-image-actual-width)))
18943 (old (get-char-property-and-overlay
18944 (org-element-property :begin link)
18945 'org-image-overlay)))
18946 (if (and (car-safe old) refresh)
18947 (image-refresh (overlay-get (cdr old) 'display))
18948 (let ((image (save-match-data
18949 (create-image file
18950 (and width 'imagemagick)
18952 :width width))))
18953 (when image
18954 (let* ((link
18955 ;; If inline image is the description
18956 ;; of another link, be sure to
18957 ;; consider the latter as the one to
18958 ;; apply the overlay on.
18959 (let ((parent
18960 (org-element-property :parent link)))
18961 (if (eq (org-element-type parent) 'link)
18962 parent
18963 link)))
18964 (ov (make-overlay
18965 (org-element-property :begin link)
18966 (progn
18967 (goto-char
18968 (org-element-property :end link))
18969 (skip-chars-backward " \t")
18970 (point)))))
18971 (overlay-put ov 'display image)
18972 (overlay-put ov 'face 'default)
18973 (overlay-put ov 'org-image-overlay t)
18974 (overlay-put
18975 ov 'modification-hooks
18976 (list 'org-display-inline-remove-overlay))
18977 (push ov org-inline-image-overlays)))))))))))))))
18979 (define-obsolete-function-alias
18980 'org-display-inline-modification-hook 'org-display-inline-remove-overlay "24.3")
18982 (defun org-display-inline-remove-overlay (ov after beg end &optional len)
18983 "Remove inline-display overlay if a corresponding region is modified."
18984 (let ((inhibit-modification-hooks t))
18985 (when (and ov after)
18986 (delete ov org-inline-image-overlays)
18987 (delete-overlay ov))))
18989 (defun org-remove-inline-images ()
18990 "Remove inline display of images."
18991 (interactive)
18992 (mapc 'delete-overlay org-inline-image-overlays)
18993 (setq org-inline-image-overlays nil))
18995 ;;;; Key bindings
18997 ;; Outline functions from `outline-mode-prefix-map'
18998 ;; that can be remapped in Org:
18999 (define-key org-mode-map [remap outline-mark-subtree] 'org-mark-subtree)
19000 (define-key org-mode-map [remap show-subtree] 'org-show-subtree)
19001 (define-key org-mode-map [remap outline-forward-same-level]
19002 'org-forward-heading-same-level)
19003 (define-key org-mode-map [remap outline-backward-same-level]
19004 'org-backward-heading-same-level)
19005 (define-key org-mode-map [remap show-branches]
19006 'org-kill-note-or-show-branches)
19007 (define-key org-mode-map [remap outline-promote] 'org-promote-subtree)
19008 (define-key org-mode-map [remap outline-demote] 'org-demote-subtree)
19009 (define-key org-mode-map [remap outline-insert-heading] 'org-ctrl-c-ret)
19011 ;; Outline functions from `outline-mode-prefix-map' that can not
19012 ;; be remapped in Org:
19014 ;; - the column "key binding" shows whether the Outline function is still
19015 ;; available in Org mode on the same key that it has been bound to in
19016 ;; Outline mode:
19017 ;; - "overridden": key used for a different functionality in Org mode
19018 ;; - else: key still bound to the same Outline function in Org mode
19020 ;; | Outline function | key binding | Org replacement |
19021 ;; |------------------------------------+-------------+-----------------------|
19022 ;; | `outline-next-visible-heading' | `C-c C-n' | still same function |
19023 ;; | `outline-previous-visible-heading' | `C-c C-p' | still same function |
19024 ;; | `outline-up-heading' | `C-c C-u' | still same function |
19025 ;; | `outline-move-subtree-up' | overridden | better: org-shiftup |
19026 ;; | `outline-move-subtree-down' | overridden | better: org-shiftdown |
19027 ;; | `show-entry' | overridden | no replacement |
19028 ;; | `show-children' | `C-c C-i' | visibility cycling |
19029 ;; | `show-branches' | `C-c C-k' | still same function |
19030 ;; | `show-subtree' | overridden | visibility cycling |
19031 ;; | `show-all' | overridden | no replacement |
19032 ;; | `hide-subtree' | overridden | visibility cycling |
19033 ;; | `hide-body' | overridden | no replacement |
19034 ;; | `hide-entry' | overridden | visibility cycling |
19035 ;; | `hide-leaves' | overridden | no replacement |
19036 ;; | `hide-sublevels' | overridden | no replacement |
19037 ;; | `hide-other' | overridden | no replacement |
19039 ;; Make `C-c C-x' a prefix key
19040 (org-defkey org-mode-map "\C-c\C-x" (make-sparse-keymap))
19042 ;; TAB key with modifiers
19043 (org-defkey org-mode-map "\C-i" 'org-cycle)
19044 (org-defkey org-mode-map [(tab)] 'org-cycle)
19045 (org-defkey org-mode-map [(control tab)] 'org-force-cycle-archived)
19046 (org-defkey org-mode-map "\M-\t" 'pcomplete)
19047 ;; The following line is necessary under Suse GNU/Linux
19048 (unless (featurep 'xemacs)
19049 (org-defkey org-mode-map [S-iso-lefttab] 'org-shifttab))
19050 (org-defkey org-mode-map [(shift tab)] 'org-shifttab)
19051 (define-key org-mode-map [backtab] 'org-shifttab)
19053 (org-defkey org-mode-map [(shift return)] 'org-table-copy-down)
19054 (org-defkey org-mode-map [(meta shift return)] 'org-insert-todo-heading)
19055 (org-defkey org-mode-map [(meta return)] 'org-meta-return)
19057 ;; Cursor keys with modifiers
19058 (org-defkey org-mode-map [(meta left)] 'org-metaleft)
19059 (org-defkey org-mode-map [(meta right)] 'org-metaright)
19060 (org-defkey org-mode-map [(meta up)] 'org-metaup)
19061 (org-defkey org-mode-map [(meta down)] 'org-metadown)
19063 (org-defkey org-mode-map [(meta shift left)] 'org-shiftmetaleft)
19064 (org-defkey org-mode-map [(meta shift right)] 'org-shiftmetaright)
19065 (org-defkey org-mode-map [(meta shift up)] 'org-shiftmetaup)
19066 (org-defkey org-mode-map [(meta shift down)] 'org-shiftmetadown)
19068 (org-defkey org-mode-map [(shift up)] 'org-shiftup)
19069 (org-defkey org-mode-map [(shift down)] 'org-shiftdown)
19070 (org-defkey org-mode-map [(shift left)] 'org-shiftleft)
19071 (org-defkey org-mode-map [(shift right)] 'org-shiftright)
19073 (org-defkey org-mode-map [(control shift right)] 'org-shiftcontrolright)
19074 (org-defkey org-mode-map [(control shift left)] 'org-shiftcontrolleft)
19075 (org-defkey org-mode-map [(control shift up)] 'org-shiftcontrolup)
19076 (org-defkey org-mode-map [(control shift down)] 'org-shiftcontroldown)
19078 ;; Babel keys
19079 (define-key org-mode-map org-babel-key-prefix org-babel-map)
19080 (mapc (lambda (pair)
19081 (define-key org-babel-map (car pair) (cdr pair)))
19082 org-babel-key-bindings)
19084 ;;; Extra keys for tty access.
19085 ;; We only set them when really needed because otherwise the
19086 ;; menus don't show the simple keys
19088 (when (or org-use-extra-keys
19089 (featurep 'xemacs) ;; because XEmacs supports multi-device stuff
19090 (not window-system))
19091 (org-defkey org-mode-map "\C-c\C-xc" 'org-table-copy-down)
19092 (org-defkey org-mode-map "\C-c\C-xM" 'org-insert-todo-heading)
19093 (org-defkey org-mode-map "\C-c\C-xm" 'org-meta-return)
19094 (org-defkey org-mode-map [?\e (return)] 'org-meta-return)
19095 (org-defkey org-mode-map [?\e (left)] 'org-metaleft)
19096 (org-defkey org-mode-map "\C-c\C-xl" 'org-metaleft)
19097 (org-defkey org-mode-map [?\e (right)] 'org-metaright)
19098 (org-defkey org-mode-map "\C-c\C-xr" 'org-metaright)
19099 (org-defkey org-mode-map [?\e (up)] 'org-metaup)
19100 (org-defkey org-mode-map "\C-c\C-xu" 'org-metaup)
19101 (org-defkey org-mode-map [?\e (down)] 'org-metadown)
19102 (org-defkey org-mode-map "\C-c\C-xd" 'org-metadown)
19103 (org-defkey org-mode-map "\C-c\C-xL" 'org-shiftmetaleft)
19104 (org-defkey org-mode-map "\C-c\C-xR" 'org-shiftmetaright)
19105 (org-defkey org-mode-map "\C-c\C-xU" 'org-shiftmetaup)
19106 (org-defkey org-mode-map "\C-c\C-xD" 'org-shiftmetadown)
19107 (org-defkey org-mode-map [?\C-c (up)] 'org-shiftup)
19108 (org-defkey org-mode-map [?\C-c (down)] 'org-shiftdown)
19109 (org-defkey org-mode-map [?\C-c (left)] 'org-shiftleft)
19110 (org-defkey org-mode-map [?\C-c (right)] 'org-shiftright)
19111 (org-defkey org-mode-map [?\C-c ?\C-x (right)] 'org-shiftcontrolright)
19112 (org-defkey org-mode-map [?\C-c ?\C-x (left)] 'org-shiftcontrolleft)
19113 (org-defkey org-mode-map [?\e (tab)] 'pcomplete)
19114 (org-defkey org-mode-map [?\e (shift return)] 'org-insert-todo-heading)
19115 (org-defkey org-mode-map [?\e (shift left)] 'org-shiftmetaleft)
19116 (org-defkey org-mode-map [?\e (shift right)] 'org-shiftmetaright)
19117 (org-defkey org-mode-map [?\e (shift up)] 'org-shiftmetaup)
19118 (org-defkey org-mode-map [?\e (shift down)] 'org-shiftmetadown))
19120 ;; All the other keys
19122 (org-defkey org-mode-map "\C-c\C-a" 'show-all) ; in case allout messed up.
19123 (org-defkey org-mode-map "\C-c\C-r" 'org-reveal)
19124 (if (boundp 'narrow-map)
19125 (org-defkey narrow-map "s" 'org-narrow-to-subtree)
19126 (org-defkey org-mode-map "\C-xns" 'org-narrow-to-subtree))
19127 (if (boundp 'narrow-map)
19128 (org-defkey narrow-map "b" 'org-narrow-to-block)
19129 (org-defkey org-mode-map "\C-xnb" 'org-narrow-to-block))
19130 (if (boundp 'narrow-map)
19131 (org-defkey narrow-map "e" 'org-narrow-to-element)
19132 (org-defkey org-mode-map "\C-xne" 'org-narrow-to-element))
19133 (org-defkey org-mode-map "\C-\M-t" 'org-transpose-element)
19134 (org-defkey org-mode-map "\M-}" 'org-forward-element)
19135 (org-defkey org-mode-map "\M-{" 'org-backward-element)
19136 (org-defkey org-mode-map "\C-c\C-^" 'org-up-element)
19137 (org-defkey org-mode-map "\C-c\C-_" 'org-down-element)
19138 (org-defkey org-mode-map "\C-c\C-f" 'org-forward-heading-same-level)
19139 (org-defkey org-mode-map "\C-c\C-b" 'org-backward-heading-same-level)
19140 (org-defkey org-mode-map "\C-c\M-f" 'org-next-block)
19141 (org-defkey org-mode-map "\C-c\M-b" 'org-previous-block)
19142 (org-defkey org-mode-map "\C-c$" 'org-archive-subtree)
19143 (org-defkey org-mode-map "\C-c\C-x\C-s" 'org-advertized-archive-subtree)
19144 (org-defkey org-mode-map "\C-c\C-x\C-a" 'org-archive-subtree-default)
19145 (org-defkey org-mode-map "\C-c\C-xd" 'org-insert-drawer)
19146 (org-defkey org-mode-map "\C-c\C-xa" 'org-toggle-archive-tag)
19147 (org-defkey org-mode-map "\C-c\C-xA" 'org-archive-to-archive-sibling)
19148 (org-defkey org-mode-map "\C-c\C-xb" 'org-tree-to-indirect-buffer)
19149 (org-defkey org-mode-map "\C-c\C-xq" 'org-toggle-tags-groups)
19150 (org-defkey org-mode-map "\C-c\C-j" 'org-goto)
19151 (org-defkey org-mode-map "\C-c\C-t" 'org-todo)
19152 (org-defkey org-mode-map "\C-c\C-q" 'org-set-tags-command)
19153 (org-defkey org-mode-map "\C-c\C-s" 'org-schedule)
19154 (org-defkey org-mode-map "\C-c\C-d" 'org-deadline)
19155 (org-defkey org-mode-map "\C-c;" 'org-toggle-comment)
19156 (org-defkey org-mode-map "\C-c\C-w" 'org-refile)
19157 (org-defkey org-mode-map "\C-c\M-w" 'org-copy)
19158 (org-defkey org-mode-map "\C-c/" 'org-sparse-tree) ; Minor-mode reserved
19159 (org-defkey org-mode-map "\C-c\\" 'org-match-sparse-tree) ; Minor-mode res.
19160 (org-defkey org-mode-map "\C-c\C-m" 'org-ctrl-c-ret)
19161 (org-defkey org-mode-map "\M-\C-m" 'org-insert-heading)
19162 (org-defkey org-mode-map "\C-c\C-xc" 'org-clone-subtree-with-time-shift)
19163 (org-defkey org-mode-map "\C-c\C-xv" 'org-copy-visible)
19164 (org-defkey org-mode-map [(control return)] 'org-insert-heading-respect-content)
19165 (org-defkey org-mode-map [(shift control return)] 'org-insert-todo-heading-respect-content)
19166 (org-defkey org-mode-map "\C-c\C-x\C-n" 'org-next-link)
19167 (org-defkey org-mode-map "\C-c\C-x\C-p" 'org-previous-link)
19168 (org-defkey org-mode-map "\C-c\C-l" 'org-insert-link)
19169 (org-defkey org-mode-map "\C-c\C-\M-l" 'org-insert-all-links)
19170 (org-defkey org-mode-map "\C-c\C-o" 'org-open-at-point)
19171 (org-defkey org-mode-map "\C-c%" 'org-mark-ring-push)
19172 (org-defkey org-mode-map "\C-c&" 'org-mark-ring-goto)
19173 (org-defkey org-mode-map "\C-c\C-z" 'org-add-note) ; Alternative binding
19174 (org-defkey org-mode-map "\C-c." 'org-time-stamp) ; Minor-mode reserved
19175 (org-defkey org-mode-map "\C-c!" 'org-time-stamp-inactive) ; Minor-mode r.
19176 (org-defkey org-mode-map "\C-c," 'org-priority) ; Minor-mode reserved
19177 (org-defkey org-mode-map "\C-c\C-y" 'org-evaluate-time-range)
19178 (org-defkey org-mode-map "\C-c>" 'org-goto-calendar)
19179 (org-defkey org-mode-map "\C-c<" 'org-date-from-calendar)
19180 (org-defkey org-mode-map [(control ?,)] 'org-cycle-agenda-files)
19181 (org-defkey org-mode-map [(control ?\')] 'org-cycle-agenda-files)
19182 (org-defkey org-mode-map "\C-c[" 'org-agenda-file-to-front)
19183 (org-defkey org-mode-map "\C-c]" 'org-remove-file)
19184 (org-defkey org-mode-map "\C-c\C-x<" 'org-agenda-set-restriction-lock)
19185 (org-defkey org-mode-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
19186 (org-defkey org-mode-map "\C-c-" 'org-ctrl-c-minus)
19187 (org-defkey org-mode-map "\C-c*" 'org-ctrl-c-star)
19188 (org-defkey org-mode-map "\C-c^" 'org-sort)
19189 (org-defkey org-mode-map "\C-c\C-c" 'org-ctrl-c-ctrl-c)
19190 (org-defkey org-mode-map "\C-c\C-k" 'org-kill-note-or-show-branches)
19191 (org-defkey org-mode-map "\C-c#" 'org-update-statistics-cookies)
19192 (org-defkey org-mode-map [remap open-line] 'org-open-line)
19193 (org-defkey org-mode-map [remap forward-paragraph] 'org-forward-paragraph)
19194 (org-defkey org-mode-map [remap backward-paragraph] 'org-backward-paragraph)
19195 (org-defkey org-mode-map "\C-m" 'org-return)
19196 (org-defkey org-mode-map "\C-j" 'org-return-indent)
19197 (org-defkey org-mode-map "\C-c?" 'org-table-field-info)
19198 (org-defkey org-mode-map "\C-c " 'org-table-blank-field)
19199 (org-defkey org-mode-map "\C-c+" 'org-table-sum)
19200 (org-defkey org-mode-map "\C-c=" 'org-table-eval-formula)
19201 (org-defkey org-mode-map "\C-c'" 'org-edit-special)
19202 (org-defkey org-mode-map "\C-c`" 'org-table-edit-field)
19203 (org-defkey org-mode-map "\C-c|" 'org-table-create-or-convert-from-region)
19204 (org-defkey org-mode-map [(control ?#)] 'org-table-rotate-recalc-marks)
19205 (org-defkey org-mode-map "\C-c~" 'org-table-create-with-table.el)
19206 (org-defkey org-mode-map "\C-c\C-a" 'org-attach)
19207 (org-defkey org-mode-map "\C-c}" 'org-table-toggle-coordinate-overlays)
19208 (org-defkey org-mode-map "\C-c{" 'org-table-toggle-formula-debugger)
19209 (org-defkey org-mode-map "\C-c\C-e" 'org-export-dispatch)
19210 (org-defkey org-mode-map "\C-c:" 'org-toggle-fixed-width-section)
19211 (org-defkey org-mode-map "\C-c\C-x\C-f" 'org-emphasize)
19212 (org-defkey org-mode-map "\C-c\C-xf" 'org-footnote-action)
19213 (org-defkey org-mode-map "\C-c\C-x\C-mg" 'org-mobile-pull)
19214 (org-defkey org-mode-map "\C-c\C-x\C-mp" 'org-mobile-push)
19215 (org-defkey org-mode-map "\C-c@" 'org-mark-subtree)
19216 (org-defkey org-mode-map "\M-h" 'org-mark-element)
19217 (org-defkey org-mode-map [?\C-c (control ?*)] 'org-list-make-subtree)
19218 ;;(org-defkey org-mode-map [?\C-c (control ?-)] 'org-list-make-list-from-subtree)
19220 (org-defkey org-mode-map "\C-c\C-x\C-w" 'org-cut-special)
19221 (org-defkey org-mode-map "\C-c\C-x\M-w" 'org-copy-special)
19222 (org-defkey org-mode-map "\C-c\C-x\C-y" 'org-paste-special)
19224 (org-defkey org-mode-map "\C-c\C-x\C-t" 'org-toggle-time-stamp-overlays)
19225 (org-defkey org-mode-map "\C-c\C-x\C-i" 'org-clock-in)
19226 (org-defkey org-mode-map "\C-c\C-x\C-x" 'org-clock-in-last)
19227 (org-defkey org-mode-map "\C-c\C-x\C-z" 'org-resolve-clocks)
19228 (org-defkey org-mode-map "\C-c\C-x\C-o" 'org-clock-out)
19229 (org-defkey org-mode-map "\C-c\C-x\C-j" 'org-clock-goto)
19230 (org-defkey org-mode-map "\C-c\C-x\C-q" 'org-clock-cancel)
19231 (org-defkey org-mode-map "\C-c\C-x\C-d" 'org-clock-display)
19232 (org-defkey org-mode-map "\C-c\C-x\C-r" 'org-clock-report)
19233 (org-defkey org-mode-map "\C-c\C-x\C-u" 'org-dblock-update)
19234 (org-defkey org-mode-map "\C-c\C-x\C-l" 'org-preview-latex-fragment)
19235 (org-defkey org-mode-map "\C-c\C-x\C-v" 'org-toggle-inline-images)
19236 (org-defkey org-mode-map "\C-c\C-x\C-\M-v" 'org-redisplay-inline-images)
19237 (org-defkey org-mode-map "\C-c\C-x\\" 'org-toggle-pretty-entities)
19238 (org-defkey org-mode-map "\C-c\C-x\C-b" 'org-toggle-checkbox)
19239 (org-defkey org-mode-map "\C-c\C-xp" 'org-set-property)
19240 (org-defkey org-mode-map "\C-c\C-xP" 'org-set-property-and-value)
19241 (org-defkey org-mode-map "\C-c\C-xe" 'org-set-effort)
19242 (org-defkey org-mode-map "\C-c\C-xE" 'org-inc-effort)
19243 (org-defkey org-mode-map "\C-c\C-xo" 'org-toggle-ordered-property)
19244 (org-defkey org-mode-map "\C-c\C-xi" 'org-insert-columns-dblock)
19245 (org-defkey org-mode-map [(control ?c) (control ?x) ?\;] 'org-timer-set-timer)
19246 (org-defkey org-mode-map [(control ?c) (control ?x) ?\:] 'org-timer-cancel-timer)
19248 (org-defkey org-mode-map "\C-c\C-x." 'org-timer)
19249 (org-defkey org-mode-map "\C-c\C-x-" 'org-timer-item)
19250 (org-defkey org-mode-map "\C-c\C-x0" 'org-timer-start)
19251 (org-defkey org-mode-map "\C-c\C-x_" 'org-timer-stop)
19252 (org-defkey org-mode-map "\C-c\C-x," 'org-timer-pause-or-continue)
19254 (define-key org-mode-map "\C-c\C-x\C-c" 'org-columns)
19256 (define-key org-mode-map "\C-c\C-x!" 'org-reload)
19258 (define-key org-mode-map "\C-c\C-xg" 'org-feed-update-all)
19259 (define-key org-mode-map "\C-c\C-xG" 'org-feed-goto-inbox)
19261 (define-key org-mode-map "\C-c\C-x[" 'org-reftex-citation)
19264 (when (featurep 'xemacs)
19265 (org-defkey org-mode-map 'button3 'popup-mode-menu))
19268 (defconst org-speed-commands-default
19270 ("Outline Navigation")
19271 ("n" . (org-speed-move-safe 'outline-next-visible-heading))
19272 ("p" . (org-speed-move-safe 'outline-previous-visible-heading))
19273 ("f" . (org-speed-move-safe 'org-forward-heading-same-level))
19274 ("b" . (org-speed-move-safe 'org-backward-heading-same-level))
19275 ("F" . org-next-block)
19276 ("B" . org-previous-block)
19277 ("u" . (org-speed-move-safe 'outline-up-heading))
19278 ("j" . org-goto)
19279 ("g" . (org-refile t))
19280 ("Outline Visibility")
19281 ("c" . org-cycle)
19282 ("C" . org-shifttab)
19283 (" " . org-display-outline-path)
19284 ("s" . org-narrow-to-subtree)
19285 ("=" . org-columns)
19286 ("Outline Structure Editing")
19287 ("U" . org-shiftmetaup)
19288 ("D" . org-shiftmetadown)
19289 ("r" . org-metaright)
19290 ("l" . org-metaleft)
19291 ("R" . org-shiftmetaright)
19292 ("L" . org-shiftmetaleft)
19293 ("i" . (progn (forward-char 1) (call-interactively
19294 'org-insert-heading-respect-content)))
19295 ("^" . org-sort)
19296 ("w" . org-refile)
19297 ("a" . org-archive-subtree-default-with-confirmation)
19298 ("@" . org-mark-subtree)
19299 ("#" . org-toggle-comment)
19300 ("Clock Commands")
19301 ("I" . org-clock-in)
19302 ("O" . org-clock-out)
19303 ("Meta Data Editing")
19304 ("t" . org-todo)
19305 ("," . (org-priority))
19306 ("0" . (org-priority ?\ ))
19307 ("1" . (org-priority ?A))
19308 ("2" . (org-priority ?B))
19309 ("3" . (org-priority ?C))
19310 (":" . org-set-tags-command)
19311 ("e" . org-set-effort)
19312 ("E" . org-inc-effort)
19313 ("W" . (lambda(m) (interactive "sMinutes before warning: ")
19314 (org-entry-put (point) "APPT_WARNTIME" m)))
19315 ("Agenda Views etc")
19316 ("v" . org-agenda)
19317 ("/" . org-sparse-tree)
19318 ("Misc")
19319 ("o" . org-open-at-point)
19320 ("?" . org-speed-command-help)
19321 ("<" . (org-agenda-set-restriction-lock 'subtree))
19322 (">" . (org-agenda-remove-restriction-lock))
19324 "The default speed commands.")
19326 (defun org-print-speed-command (e)
19327 (if (> (length (car e)) 1)
19328 (progn
19329 (princ "\n")
19330 (princ (car e))
19331 (princ "\n")
19332 (princ (make-string (length (car e)) ?-))
19333 (princ "\n"))
19334 (princ (car e))
19335 (princ " ")
19336 (if (symbolp (cdr e))
19337 (princ (symbol-name (cdr e)))
19338 (prin1 (cdr e)))
19339 (princ "\n")))
19341 (defun org-speed-command-help ()
19342 "Show the available speed commands."
19343 (interactive)
19344 (if (not org-use-speed-commands)
19345 (user-error "Speed commands are not activated, customize `org-use-speed-commands'")
19346 (with-output-to-temp-buffer "*Help*"
19347 (princ "User-defined Speed commands\n===========================\n")
19348 (mapc 'org-print-speed-command org-speed-commands-user)
19349 (princ "\n")
19350 (princ "Built-in Speed commands\n=======================\n")
19351 (mapc 'org-print-speed-command org-speed-commands-default))
19352 (with-current-buffer "*Help*"
19353 (setq truncate-lines t))))
19355 (defun org-speed-move-safe (cmd)
19356 "Execute CMD, but make sure that the cursor always ends up in a headline.
19357 If not, return to the original position and throw an error."
19358 (interactive)
19359 (let ((pos (point)))
19360 (call-interactively cmd)
19361 (unless (and (bolp) (org-at-heading-p))
19362 (goto-char pos)
19363 (error "Boundary reached while executing %s" cmd))))
19365 (defvar org-self-insert-command-undo-counter 0)
19367 (defvar org-table-auto-blank-field) ; defined in org-table.el
19368 (defvar org-speed-command nil)
19370 (define-obsolete-function-alias
19371 'org-speed-command-default-hook 'org-speed-command-activate "24.3")
19373 (defun org-speed-command-activate (keys)
19374 "Hook for activating single-letter speed commands.
19375 `org-speed-commands-default' specifies a minimal command set.
19376 Use `org-speed-commands-user' for further customization."
19377 (when (or (and (bolp) (looking-at org-outline-regexp))
19378 (and (functionp org-use-speed-commands)
19379 (funcall org-use-speed-commands)))
19380 (cdr (assoc keys (append org-speed-commands-user
19381 org-speed-commands-default)))))
19383 (define-obsolete-function-alias
19384 'org-babel-speed-command-hook 'org-babel-speed-command-activate "24.3")
19386 (defun org-babel-speed-command-activate (keys)
19387 "Hook for activating single-letter code block commands."
19388 (when (and (bolp) (looking-at org-babel-src-block-regexp))
19389 (cdr (assoc keys org-babel-key-bindings))))
19391 (defcustom org-speed-command-hook
19392 '(org-speed-command-default-hook org-babel-speed-command-hook)
19393 "Hook for activating speed commands at strategic locations.
19394 Hook functions are called in sequence until a valid handler is
19395 found.
19397 Each hook takes a single argument, a user-pressed command key
19398 which is also a `self-insert-command' from the global map.
19400 Within the hook, examine the cursor position and the command key
19401 and return nil or a valid handler as appropriate. Handler could
19402 be one of an interactive command, a function, or a form.
19404 Set `org-use-speed-commands' to non-nil value to enable this
19405 hook. The default setting is `org-speed-command-activate'."
19406 :group 'org-structure
19407 :version "24.1"
19408 :type 'hook)
19410 (defun org-self-insert-command (N)
19411 "Like `self-insert-command', use overwrite-mode for whitespace in tables.
19412 If the cursor is in a table looking at whitespace, the whitespace is
19413 overwritten, and the table is not marked as requiring realignment."
19414 (interactive "p")
19415 (org-check-before-invisible-edit 'insert)
19416 (cond
19417 ((and org-use-speed-commands
19418 (setq org-speed-command
19419 (run-hook-with-args-until-success
19420 'org-speed-command-hook (this-command-keys))))
19421 (cond
19422 ((commandp org-speed-command)
19423 (setq this-command org-speed-command)
19424 (call-interactively org-speed-command))
19425 ((functionp org-speed-command)
19426 (funcall org-speed-command))
19427 ((and org-speed-command (listp org-speed-command))
19428 (eval org-speed-command))
19429 (t (let (org-use-speed-commands)
19430 (call-interactively 'org-self-insert-command)))))
19431 ((and
19432 (org-table-p)
19433 (progn
19434 ;; check if we blank the field, and if that triggers align
19435 (and (featurep 'org-table) org-table-auto-blank-field
19436 (member last-command
19437 '(org-cycle org-return org-shifttab org-ctrl-c-ctrl-c yas/expand))
19438 (if (or (equal (char-after) ?\ ) (looking-at "[^|\n]* |"))
19439 ;; got extra space, this field does not determine column width
19440 (let (org-table-may-need-update) (org-table-blank-field))
19441 ;; no extra space, this field may determine column width
19442 (org-table-blank-field)))
19444 (eq N 1)
19445 (looking-at "[^|\n]* |"))
19446 (let (org-table-may-need-update)
19447 (goto-char (1- (match-end 0)))
19448 (backward-delete-char 1)
19449 (goto-char (match-beginning 0))
19450 (self-insert-command N)))
19452 (setq org-table-may-need-update t)
19453 (self-insert-command N)
19454 (org-fix-tags-on-the-fly)
19455 (if org-self-insert-cluster-for-undo
19456 (if (not (eq last-command 'org-self-insert-command))
19457 (setq org-self-insert-command-undo-counter 1)
19458 (if (>= org-self-insert-command-undo-counter 20)
19459 (setq org-self-insert-command-undo-counter 1)
19460 (and (> org-self-insert-command-undo-counter 0)
19461 buffer-undo-list (listp buffer-undo-list)
19462 (not (cadr buffer-undo-list)) ; remove nil entry
19463 (setcdr buffer-undo-list (cddr buffer-undo-list)))
19464 (setq org-self-insert-command-undo-counter
19465 (1+ org-self-insert-command-undo-counter))))))))
19467 (defun org-check-before-invisible-edit (kind)
19468 "Check is editing if kind KIND would be dangerous with invisible text around.
19469 The detailed reaction depends on the user option `org-catch-invisible-edits'."
19470 ;; First, try to get out of here as quickly as possible, to reduce overhead
19471 (if (and org-catch-invisible-edits
19472 (or (not (boundp 'visible-mode)) (not visible-mode))
19473 (or (get-char-property (point) 'invisible)
19474 (get-char-property (max (point-min) (1- (point))) 'invisible)))
19475 ;; OK, we need to take a closer look
19476 (let* ((invisible-at-point (get-char-property (point) 'invisible))
19477 (invisible-before-point (if (bobp) nil (get-char-property
19478 (1- (point)) 'invisible)))
19479 (border-and-ok-direction
19481 ;; Check if we are acting predictably before invisible text
19482 (and invisible-at-point (not invisible-before-point)
19483 (memq kind '(insert delete-backward)))
19484 ;; Check if we are acting predictably after invisible text
19485 ;; This works not well, and I have turned it off. It seems
19486 ;; better to always show and stop after invisible text.
19487 ;; (and (not invisible-at-point) invisible-before-point
19488 ;; (memq kind '(insert delete)))
19490 (when (or (memq invisible-at-point '(outline org-hide-block t))
19491 (memq invisible-before-point '(outline org-hide-block t)))
19492 (if (eq org-catch-invisible-edits 'error)
19493 (user-error "Editing in invisible areas is prohibited, make them visible first"))
19494 (if (and org-custom-properties-overlays
19495 (y-or-n-p "Display invisible properties in this buffer? "))
19496 (org-toggle-custom-properties-visibility)
19497 ;; Make the area visible
19498 (save-excursion
19499 (if invisible-before-point
19500 (goto-char (previous-single-char-property-change
19501 (point) 'invisible)))
19502 (org-cycle))
19503 (cond
19504 ((eq org-catch-invisible-edits 'show)
19505 ;; That's it, we do the edit after showing
19506 (message
19507 "Unfolding invisible region around point before editing")
19508 (sit-for 1))
19509 ((and (eq org-catch-invisible-edits 'smart)
19510 border-and-ok-direction)
19511 (message "Unfolding invisible region around point before editing"))
19513 ;; Don't do the edit, make the user repeat it in full visibility
19514 (user-error "Edit in invisible region aborted, repeat to confirm with text visible"))))))))
19516 (defun org-fix-tags-on-the-fly ()
19517 (when (and (equal (char-after (point-at-bol)) ?*)
19518 (org-at-heading-p))
19519 (org-align-tags-here org-tags-column)))
19521 (defun org-delete-backward-char (N)
19522 "Like `delete-backward-char', insert whitespace at field end in tables.
19523 When deleting backwards, in tables this function will insert whitespace in
19524 front of the next \"|\" separator, to keep the table aligned. The table will
19525 still be marked for re-alignment if the field did fill the entire column,
19526 because, in this case the deletion might narrow the column."
19527 (interactive "p")
19528 (save-match-data
19529 (org-check-before-invisible-edit 'delete-backward)
19530 (if (and (org-table-p)
19531 (eq N 1)
19532 (string-match "|" (buffer-substring (point-at-bol) (point)))
19533 (looking-at ".*?|"))
19534 (let ((pos (point))
19535 (noalign (looking-at "[^|\n\r]* |"))
19536 (c org-table-may-need-update))
19537 (backward-delete-char N)
19538 (if (not overwrite-mode)
19539 (progn
19540 (skip-chars-forward "^|")
19541 (insert " ")
19542 (goto-char (1- pos))))
19543 ;; noalign: if there were two spaces at the end, this field
19544 ;; does not determine the width of the column.
19545 (if noalign (setq org-table-may-need-update c)))
19546 (backward-delete-char N)
19547 (org-fix-tags-on-the-fly))))
19549 (defun org-delete-char (N)
19550 "Like `delete-char', but insert whitespace at field end in tables.
19551 When deleting characters, in tables this function will insert whitespace in
19552 front of the next \"|\" separator, to keep the table aligned. The table will
19553 still be marked for re-alignment if the field did fill the entire column,
19554 because, in this case the deletion might narrow the column."
19555 (interactive "p")
19556 (save-match-data
19557 (org-check-before-invisible-edit 'delete)
19558 (if (and (org-table-p)
19559 (not (bolp))
19560 (not (= (char-after) ?|))
19561 (eq N 1))
19562 (if (looking-at ".*?|")
19563 (let ((pos (point))
19564 (noalign (looking-at "[^|\n\r]* |"))
19565 (c org-table-may-need-update))
19566 (replace-match
19567 (concat (substring (match-string 0) 1 -1) " |") nil t)
19568 (goto-char pos)
19569 ;; noalign: if there were two spaces at the end, this field
19570 ;; does not determine the width of the column.
19571 (if noalign (setq org-table-may-need-update c)))
19572 (delete-char N))
19573 (delete-char N)
19574 (org-fix-tags-on-the-fly))))
19576 ;; Make `delete-selection-mode' work with org-mode and orgtbl-mode
19577 (put 'org-self-insert-command 'delete-selection t)
19578 (put 'orgtbl-self-insert-command 'delete-selection t)
19579 (put 'org-delete-char 'delete-selection 'supersede)
19580 (put 'org-delete-backward-char 'delete-selection 'supersede)
19581 (put 'org-yank 'delete-selection 'yank)
19583 ;; Make `flyspell-mode' delay after some commands
19584 (put 'org-self-insert-command 'flyspell-delayed t)
19585 (put 'orgtbl-self-insert-command 'flyspell-delayed t)
19586 (put 'org-delete-char 'flyspell-delayed t)
19587 (put 'org-delete-backward-char 'flyspell-delayed t)
19589 ;; Make pabbrev-mode expand after org-mode commands
19590 (put 'org-self-insert-command 'pabbrev-expand-after-command t)
19591 (put 'orgtbl-self-insert-command 'pabbrev-expand-after-command t)
19593 (defun org-remap (map &rest commands)
19594 "In MAP, remap the functions given in COMMANDS.
19595 COMMANDS is a list of alternating OLDDEF NEWDEF command names."
19596 (let (new old)
19597 (while commands
19598 (setq old (pop commands) new (pop commands))
19599 (if (fboundp 'command-remapping)
19600 (org-defkey map (vector 'remap old) new)
19601 (substitute-key-definition old new map global-map)))))
19603 (defun org-transpose-words ()
19604 "Transpose words for Org.
19605 This uses the `org-mode-transpose-word-syntax-table' syntax
19606 table, which interprets characters in `org-emphasis-alist' as
19607 word constituents."
19608 (interactive)
19609 (with-syntax-table org-mode-transpose-word-syntax-table
19610 (call-interactively 'transpose-words)))
19611 (org-remap org-mode-map 'transpose-words 'org-transpose-words)
19613 (when (eq org-enable-table-editor 'optimized)
19614 ;; If the user wants maximum table support, we need to hijack
19615 ;; some standard editing functions
19616 (org-remap org-mode-map
19617 'self-insert-command 'org-self-insert-command
19618 'delete-char 'org-delete-char
19619 'delete-backward-char 'org-delete-backward-char)
19620 (org-defkey org-mode-map "|" 'org-force-self-insert))
19622 (defvar org-ctrl-c-ctrl-c-hook nil
19623 "Hook for functions attaching themselves to `C-c C-c'.
19625 This can be used to add additional functionality to the C-c C-c
19626 key which executes context-dependent commands. This hook is run
19627 before any other test, while `org-ctrl-c-ctrl-c-final-hook' is
19628 run after the last test.
19630 Each function will be called with no arguments. The function
19631 must check if the context is appropriate for it to act. If yes,
19632 it should do its thing and then return a non-nil value. If the
19633 context is wrong, just do nothing and return nil.")
19635 (defvar org-ctrl-c-ctrl-c-final-hook nil
19636 "Hook for functions attaching themselves to `C-c C-c'.
19638 This can be used to add additional functionality to the C-c C-c
19639 key which executes context-dependent commands. This hook is run
19640 after any other test, while `org-ctrl-c-ctrl-c-hook' is run
19641 before the first test.
19643 Each function will be called with no arguments. The function
19644 must check if the context is appropriate for it to act. If yes,
19645 it should do its thing and then return a non-nil value. If the
19646 context is wrong, just do nothing and return nil.")
19648 (defvar org-tab-first-hook nil
19649 "Hook for functions to attach themselves to TAB.
19650 See `org-ctrl-c-ctrl-c-hook' for more information.
19651 This hook runs as the first action when TAB is pressed, even before
19652 `org-cycle' messes around with the `outline-regexp' to cater for
19653 inline tasks and plain list item folding.
19654 If any function in this hook returns t, any other actions that
19655 would have been caused by TAB (such as table field motion or visibility
19656 cycling) will not occur.")
19658 (defvar org-tab-after-check-for-table-hook nil
19659 "Hook for functions to attach themselves to TAB.
19660 See `org-ctrl-c-ctrl-c-hook' for more information.
19661 This hook runs after it has been established that the cursor is not in a
19662 table, but before checking if the cursor is in a headline or if global cycling
19663 should be done.
19664 If any function in this hook returns t, not other actions like visibility
19665 cycling will be done.")
19667 (defvar org-tab-after-check-for-cycling-hook nil
19668 "Hook for functions to attach themselves to TAB.
19669 See `org-ctrl-c-ctrl-c-hook' for more information.
19670 This hook runs after it has been established that not table field motion and
19671 not visibility should be done because of current context. This is probably
19672 the place where a package like yasnippets can hook in.")
19674 (defvar org-tab-before-tab-emulation-hook nil
19675 "Hook for functions to attach themselves to TAB.
19676 See `org-ctrl-c-ctrl-c-hook' for more information.
19677 This hook runs after every other options for TAB have been exhausted, but
19678 before indentation and \t insertion takes place.")
19680 (defvar org-metaleft-hook nil
19681 "Hook for functions attaching themselves to `M-left'.
19682 See `org-ctrl-c-ctrl-c-hook' for more information.")
19683 (defvar org-metaright-hook nil
19684 "Hook for functions attaching themselves to `M-right'.
19685 See `org-ctrl-c-ctrl-c-hook' for more information.")
19686 (defvar org-metaup-hook nil
19687 "Hook for functions attaching themselves to `M-up'.
19688 See `org-ctrl-c-ctrl-c-hook' for more information.")
19689 (defvar org-metadown-hook nil
19690 "Hook for functions attaching themselves to `M-down'.
19691 See `org-ctrl-c-ctrl-c-hook' for more information.")
19692 (defvar org-shiftmetaleft-hook nil
19693 "Hook for functions attaching themselves to `M-S-left'.
19694 See `org-ctrl-c-ctrl-c-hook' for more information.")
19695 (defvar org-shiftmetaright-hook nil
19696 "Hook for functions attaching themselves to `M-S-right'.
19697 See `org-ctrl-c-ctrl-c-hook' for more information.")
19698 (defvar org-shiftmetaup-hook nil
19699 "Hook for functions attaching themselves to `M-S-up'.
19700 See `org-ctrl-c-ctrl-c-hook' for more information.")
19701 (defvar org-shiftmetadown-hook nil
19702 "Hook for functions attaching themselves to `M-S-down'.
19703 See `org-ctrl-c-ctrl-c-hook' for more information.")
19704 (defvar org-metareturn-hook nil
19705 "Hook for functions attaching themselves to `M-RET'.
19706 See `org-ctrl-c-ctrl-c-hook' for more information.")
19707 (defvar org-shiftup-hook nil
19708 "Hook for functions attaching themselves to `S-up'.
19709 See `org-ctrl-c-ctrl-c-hook' for more information.")
19710 (defvar org-shiftup-final-hook nil
19711 "Hook for functions attaching themselves to `S-up'.
19712 This one runs after all other options except shift-select have been excluded.
19713 See `org-ctrl-c-ctrl-c-hook' for more information.")
19714 (defvar org-shiftdown-hook nil
19715 "Hook for functions attaching themselves to `S-down'.
19716 See `org-ctrl-c-ctrl-c-hook' for more information.")
19717 (defvar org-shiftdown-final-hook nil
19718 "Hook for functions attaching themselves to `S-down'.
19719 This one runs after all other options except shift-select have been excluded.
19720 See `org-ctrl-c-ctrl-c-hook' for more information.")
19721 (defvar org-shiftleft-hook nil
19722 "Hook for functions attaching themselves to `S-left'.
19723 See `org-ctrl-c-ctrl-c-hook' for more information.")
19724 (defvar org-shiftleft-final-hook nil
19725 "Hook for functions attaching themselves to `S-left'.
19726 This one runs after all other options except shift-select have been excluded.
19727 See `org-ctrl-c-ctrl-c-hook' for more information.")
19728 (defvar org-shiftright-hook nil
19729 "Hook for functions attaching themselves to `S-right'.
19730 See `org-ctrl-c-ctrl-c-hook' for more information.")
19731 (defvar org-shiftright-final-hook nil
19732 "Hook for functions attaching themselves to `S-right'.
19733 This one runs after all other options except shift-select have been excluded.
19734 See `org-ctrl-c-ctrl-c-hook' for more information.")
19736 (defun org-modifier-cursor-error ()
19737 "Throw an error, a modified cursor command was applied in wrong context."
19738 (user-error "This command is active in special context like tables, headlines or items"))
19740 (defun org-shiftselect-error ()
19741 "Throw an error because Shift-Cursor command was applied in wrong context."
19742 (if (and (boundp 'shift-select-mode) shift-select-mode)
19743 (user-error "To use shift-selection with Org-mode, customize `org-support-shift-select'")
19744 (user-error "This command works only in special context like headlines or timestamps")))
19746 (defun org-call-for-shift-select (cmd)
19747 (let ((this-command-keys-shift-translated t))
19748 (call-interactively cmd)))
19750 (defun org-shifttab (&optional arg)
19751 "Global visibility cycling or move to previous table field.
19752 Call `org-table-previous-field' within a table.
19753 When ARG is nil, cycle globally through visibility states.
19754 When ARG is a numeric prefix, show contents of this level."
19755 (interactive "P")
19756 (cond
19757 ((org-at-table-p) (call-interactively 'org-table-previous-field))
19758 ((integerp arg)
19759 (let ((arg2 (if org-odd-levels-only (1- (* 2 arg)) arg)))
19760 (message "Content view to level: %d" arg)
19761 (org-content (prefix-numeric-value arg2))
19762 (org-cycle-show-empty-lines t)
19763 (setq org-cycle-global-status 'overview)))
19764 (t (call-interactively 'org-global-cycle))))
19766 (defun org-shiftmetaleft ()
19767 "Promote subtree or delete table column.
19768 Calls `org-promote-subtree', `org-outdent-item-tree', or
19769 `org-table-delete-column', depending on context. See the
19770 individual commands for more information."
19771 (interactive)
19772 (cond
19773 ((run-hook-with-args-until-success 'org-shiftmetaleft-hook))
19774 ((org-at-table-p) (call-interactively 'org-table-delete-column))
19775 ((org-at-heading-p) (call-interactively 'org-promote-subtree))
19776 ((if (not (org-region-active-p)) (org-at-item-p)
19777 (save-excursion (goto-char (region-beginning))
19778 (org-at-item-p)))
19779 (call-interactively 'org-outdent-item-tree))
19780 (t (org-modifier-cursor-error))))
19782 (defun org-shiftmetaright ()
19783 "Demote subtree or insert table column.
19784 Calls `org-demote-subtree', `org-indent-item-tree', or
19785 `org-table-insert-column', depending on context. See the
19786 individual commands for more information."
19787 (interactive)
19788 (cond
19789 ((run-hook-with-args-until-success 'org-shiftmetaright-hook))
19790 ((org-at-table-p) (call-interactively 'org-table-insert-column))
19791 ((org-at-heading-p) (call-interactively 'org-demote-subtree))
19792 ((if (not (org-region-active-p)) (org-at-item-p)
19793 (save-excursion (goto-char (region-beginning))
19794 (org-at-item-p)))
19795 (call-interactively 'org-indent-item-tree))
19796 (t (org-modifier-cursor-error))))
19798 (defun org-shiftmetaup (&optional arg)
19799 "Move subtree up or kill table row.
19800 Calls `org-move-subtree-up' or `org-table-kill-row' or
19801 `org-move-item-up' or `org-timestamp-up', depending on context.
19802 See the individual commands for more information."
19803 (interactive "P")
19804 (cond
19805 ((run-hook-with-args-until-success 'org-shiftmetaup-hook))
19806 ((org-at-table-p) (call-interactively 'org-table-kill-row))
19807 ((org-at-heading-p) (call-interactively 'org-move-subtree-up))
19808 ((org-at-item-p) (call-interactively 'org-move-item-up))
19809 ((org-at-clock-log-p) (let ((org-clock-adjust-closest t))
19810 (call-interactively 'org-timestamp-up)))
19811 (t (call-interactively 'org-drag-line-backward))))
19813 (defun org-shiftmetadown (&optional arg)
19814 "Move subtree down or insert table row.
19815 Calls `org-move-subtree-down' or `org-table-insert-row' or
19816 `org-move-item-down' or `org-timestamp-up', depending on context.
19817 See the individual commands for more information."
19818 (interactive "P")
19819 (cond
19820 ((run-hook-with-args-until-success 'org-shiftmetadown-hook))
19821 ((org-at-table-p) (call-interactively 'org-table-insert-row))
19822 ((org-at-heading-p) (call-interactively 'org-move-subtree-down))
19823 ((org-at-item-p) (call-interactively 'org-move-item-down))
19824 ((org-at-clock-log-p) (let ((org-clock-adjust-closest t))
19825 (call-interactively 'org-timestamp-down)))
19826 (t (call-interactively 'org-drag-line-forward))))
19828 (defsubst org-hidden-tree-error ()
19829 (user-error
19830 "Hidden subtree, open with TAB or use subtree command M-S-<left>/<right>"))
19832 (defun org-metaleft (&optional arg)
19833 "Promote heading or move table column to left.
19834 Calls `org-do-promote' or `org-table-move-column', depending on context.
19835 With no specific context, calls the Emacs default `backward-word'.
19836 See the individual commands for more information."
19837 (interactive "P")
19838 (cond
19839 ((run-hook-with-args-until-success 'org-metaleft-hook))
19840 ((org-at-table-p) (org-call-with-arg 'org-table-move-column 'left))
19841 ((org-with-limited-levels
19842 (or (org-at-heading-p)
19843 (and (org-region-active-p)
19844 (save-excursion
19845 (goto-char (region-beginning))
19846 (org-at-heading-p)))))
19847 (when (org-check-for-hidden 'headlines) (org-hidden-tree-error))
19848 (call-interactively 'org-do-promote))
19849 ;; At an inline task.
19850 ((org-at-heading-p)
19851 (call-interactively 'org-inlinetask-promote))
19852 ((or (org-at-item-p)
19853 (and (org-region-active-p)
19854 (save-excursion
19855 (goto-char (region-beginning))
19856 (org-at-item-p))))
19857 (when (org-check-for-hidden 'items) (org-hidden-tree-error))
19858 (call-interactively 'org-outdent-item))
19859 (t (call-interactively 'backward-word))))
19861 (defun org-metaright (&optional arg)
19862 "Demote a subtree, a list item or move table column to right.
19863 In front of a drawer or a block keyword, indent it correctly.
19864 With no specific context, calls the Emacs default `forward-word'.
19865 See the individual commands for more information."
19866 (interactive "P")
19867 (cond
19868 ((run-hook-with-args-until-success 'org-metaright-hook))
19869 ((org-at-table-p) (call-interactively 'org-table-move-column))
19870 ((org-at-drawer-p) (call-interactively 'org-indent-drawer))
19871 ((org-at-block-p) (call-interactively 'org-indent-block))
19872 ((org-with-limited-levels
19873 (or (org-at-heading-p)
19874 (and (org-region-active-p)
19875 (save-excursion
19876 (goto-char (region-beginning))
19877 (org-at-heading-p)))))
19878 (when (org-check-for-hidden 'headlines) (org-hidden-tree-error))
19879 (call-interactively 'org-do-demote))
19880 ;; At an inline task.
19881 ((org-at-heading-p)
19882 (call-interactively 'org-inlinetask-demote))
19883 ((or (org-at-item-p)
19884 (and (org-region-active-p)
19885 (save-excursion
19886 (goto-char (region-beginning))
19887 (org-at-item-p))))
19888 (when (org-check-for-hidden 'items) (org-hidden-tree-error))
19889 (call-interactively 'org-indent-item))
19890 (t (call-interactively 'forward-word))))
19892 (defun org-check-for-hidden (what)
19893 "Check if there are hidden headlines/items in the current visual line.
19894 WHAT can be either `headlines' or `items'. If the current line is
19895 an outline or item heading and it has a folded subtree below it,
19896 this function returns t, nil otherwise."
19897 (let ((re (cond
19898 ((eq what 'headlines) org-outline-regexp-bol)
19899 ((eq what 'items) (org-item-beginning-re))
19900 (t (error "This should not happen"))))
19901 beg end)
19902 (save-excursion
19903 (catch 'exit
19904 (unless (org-region-active-p)
19905 (setq beg (point-at-bol))
19906 (beginning-of-line 2)
19907 (while (and (not (eobp)) ;; this is like `next-line'
19908 (get-char-property (1- (point)) 'invisible))
19909 (beginning-of-line 2))
19910 (setq end (point))
19911 (goto-char beg)
19912 (goto-char (point-at-eol))
19913 (setq end (max end (point)))
19914 (while (re-search-forward re end t)
19915 (if (get-char-property (match-beginning 0) 'invisible)
19916 (throw 'exit t))))
19917 nil))))
19919 (defun org-metaup (&optional arg)
19920 "Move subtree up or move table row up.
19921 Calls `org-move-subtree-up' or `org-table-move-row' or
19922 `org-move-item-up', depending on context. See the individual commands
19923 for more information."
19924 (interactive "P")
19925 (cond
19926 ((run-hook-with-args-until-success 'org-metaup-hook))
19927 ((org-region-active-p)
19928 (let* ((a (min (region-beginning) (region-end)))
19929 (b (1- (max (region-beginning) (region-end))))
19930 (c (save-excursion (goto-char a)
19931 (move-beginning-of-line 0)))
19932 (d (save-excursion (goto-char a)
19933 (move-end-of-line 0) (point))))
19934 (transpose-regions a b c d)
19935 (goto-char c)))
19936 ((org-at-table-p) (org-call-with-arg 'org-table-move-row 'up))
19937 ((org-at-heading-p) (call-interactively 'org-move-subtree-up))
19938 ((org-at-item-p) (call-interactively 'org-move-item-up))
19939 (t (org-drag-element-backward))))
19941 (defun org-metadown (&optional arg)
19942 "Move subtree down or move table row down.
19943 Calls `org-move-subtree-down' or `org-table-move-row' or
19944 `org-move-item-down', depending on context. See the individual
19945 commands for more information."
19946 (interactive "P")
19947 (cond
19948 ((run-hook-with-args-until-success 'org-metadown-hook))
19949 ((org-region-active-p)
19950 (let* ((a (min (region-beginning) (region-end)))
19951 (b (max (region-beginning) (region-end)))
19952 (c (save-excursion (goto-char b)
19953 (move-beginning-of-line 1)))
19954 (d (save-excursion (goto-char b)
19955 (move-end-of-line 1) (1+ (point)))))
19956 (transpose-regions a b c d)
19957 (goto-char d)))
19958 ((org-at-table-p) (call-interactively 'org-table-move-row))
19959 ((org-at-heading-p) (call-interactively 'org-move-subtree-down))
19960 ((org-at-item-p) (call-interactively 'org-move-item-down))
19961 (t (org-drag-element-forward))))
19963 (defun org-shiftup (&optional arg)
19964 "Increase item in timestamp or increase priority of current headline.
19965 Calls `org-timestamp-up' or `org-priority-up', or `org-previous-item',
19966 depending on context. See the individual commands for more information."
19967 (interactive "P")
19968 (cond
19969 ((run-hook-with-args-until-success 'org-shiftup-hook))
19970 ((and org-support-shift-select (org-region-active-p))
19971 (org-call-for-shift-select 'previous-line))
19972 ((org-at-timestamp-p t)
19973 (call-interactively (if org-edit-timestamp-down-means-later
19974 'org-timestamp-down 'org-timestamp-up)))
19975 ((and (not (eq org-support-shift-select 'always))
19976 org-enable-priority-commands
19977 (org-at-heading-p))
19978 (call-interactively 'org-priority-up))
19979 ((and (not org-support-shift-select) (org-at-item-p))
19980 (call-interactively 'org-previous-item))
19981 ((org-clocktable-try-shift 'up arg))
19982 ((run-hook-with-args-until-success 'org-shiftup-final-hook))
19983 (org-support-shift-select
19984 (org-call-for-shift-select 'previous-line))
19985 (t (org-shiftselect-error))))
19987 (defun org-shiftdown (&optional arg)
19988 "Decrease item in timestamp or decrease priority of current headline.
19989 Calls `org-timestamp-down' or `org-priority-down', or `org-next-item'
19990 depending on context. See the individual commands for more information."
19991 (interactive "P")
19992 (cond
19993 ((run-hook-with-args-until-success 'org-shiftdown-hook))
19994 ((and org-support-shift-select (org-region-active-p))
19995 (org-call-for-shift-select 'next-line))
19996 ((org-at-timestamp-p t)
19997 (call-interactively (if org-edit-timestamp-down-means-later
19998 'org-timestamp-up 'org-timestamp-down)))
19999 ((and (not (eq org-support-shift-select 'always))
20000 org-enable-priority-commands
20001 (org-at-heading-p))
20002 (call-interactively 'org-priority-down))
20003 ((and (not org-support-shift-select) (org-at-item-p))
20004 (call-interactively 'org-next-item))
20005 ((org-clocktable-try-shift 'down arg))
20006 ((run-hook-with-args-until-success 'org-shiftdown-final-hook))
20007 (org-support-shift-select
20008 (org-call-for-shift-select 'next-line))
20009 (t (org-shiftselect-error))))
20011 (defun org-shiftright (&optional arg)
20012 "Cycle the thing at point or in the current line, depending on context.
20013 Depending on context, this does one of the following:
20015 - switch a timestamp at point one day into the future
20016 - on a headline, switch to the next TODO keyword.
20017 - on an item, switch entire list to the next bullet type
20018 - on a property line, switch to the next allowed value
20019 - on a clocktable definition line, move time block into the future"
20020 (interactive "P")
20021 (cond
20022 ((run-hook-with-args-until-success 'org-shiftright-hook))
20023 ((and org-support-shift-select (org-region-active-p))
20024 (org-call-for-shift-select 'forward-char))
20025 ((org-at-timestamp-p t) (call-interactively 'org-timestamp-up-day))
20026 ((and (not (eq org-support-shift-select 'always))
20027 (org-at-heading-p))
20028 (let ((org-inhibit-logging
20029 (not org-treat-S-cursor-todo-selection-as-state-change))
20030 (org-inhibit-blocking
20031 (not org-treat-S-cursor-todo-selection-as-state-change)))
20032 (org-call-with-arg 'org-todo 'right)))
20033 ((or (and org-support-shift-select
20034 (not (eq org-support-shift-select 'always))
20035 (org-at-item-bullet-p))
20036 (and (not org-support-shift-select) (org-at-item-p)))
20037 (org-call-with-arg 'org-cycle-list-bullet nil))
20038 ((and (not (eq org-support-shift-select 'always))
20039 (org-at-property-p))
20040 (call-interactively 'org-property-next-allowed-value))
20041 ((org-clocktable-try-shift 'right arg))
20042 ((run-hook-with-args-until-success 'org-shiftright-final-hook))
20043 (org-support-shift-select
20044 (org-call-for-shift-select 'forward-char))
20045 (t (org-shiftselect-error))))
20047 (defun org-shiftleft (&optional arg)
20048 "Cycle the thing at point or in the current line, depending on context.
20049 Depending on context, this does one of the following:
20051 - switch a timestamp at point one day into the past
20052 - on a headline, switch to the previous TODO keyword.
20053 - on an item, switch entire list to the previous bullet type
20054 - on a property line, switch to the previous allowed value
20055 - on a clocktable definition line, move time block into the past"
20056 (interactive "P")
20057 (cond
20058 ((run-hook-with-args-until-success 'org-shiftleft-hook))
20059 ((and org-support-shift-select (org-region-active-p))
20060 (org-call-for-shift-select 'backward-char))
20061 ((org-at-timestamp-p t) (call-interactively 'org-timestamp-down-day))
20062 ((and (not (eq org-support-shift-select 'always))
20063 (org-at-heading-p))
20064 (let ((org-inhibit-logging
20065 (not org-treat-S-cursor-todo-selection-as-state-change))
20066 (org-inhibit-blocking
20067 (not org-treat-S-cursor-todo-selection-as-state-change)))
20068 (org-call-with-arg 'org-todo 'left)))
20069 ((or (and org-support-shift-select
20070 (not (eq org-support-shift-select 'always))
20071 (org-at-item-bullet-p))
20072 (and (not org-support-shift-select) (org-at-item-p)))
20073 (org-call-with-arg 'org-cycle-list-bullet 'previous))
20074 ((and (not (eq org-support-shift-select 'always))
20075 (org-at-property-p))
20076 (call-interactively 'org-property-previous-allowed-value))
20077 ((org-clocktable-try-shift 'left arg))
20078 ((run-hook-with-args-until-success 'org-shiftleft-final-hook))
20079 (org-support-shift-select
20080 (org-call-for-shift-select 'backward-char))
20081 (t (org-shiftselect-error))))
20083 (defun org-shiftcontrolright ()
20084 "Switch to next TODO set."
20085 (interactive)
20086 (cond
20087 ((and org-support-shift-select (org-region-active-p))
20088 (org-call-for-shift-select 'forward-word))
20089 ((and (not (eq org-support-shift-select 'always))
20090 (org-at-heading-p))
20091 (org-call-with-arg 'org-todo 'nextset))
20092 (org-support-shift-select
20093 (org-call-for-shift-select 'forward-word))
20094 (t (org-shiftselect-error))))
20096 (defun org-shiftcontrolleft ()
20097 "Switch to previous TODO set."
20098 (interactive)
20099 (cond
20100 ((and org-support-shift-select (org-region-active-p))
20101 (org-call-for-shift-select 'backward-word))
20102 ((and (not (eq org-support-shift-select 'always))
20103 (org-at-heading-p))
20104 (org-call-with-arg 'org-todo 'previousset))
20105 (org-support-shift-select
20106 (org-call-for-shift-select 'backward-word))
20107 (t (org-shiftselect-error))))
20109 (defun org-shiftcontrolup (&optional n)
20110 "Change timestamps synchronously up in CLOCK log lines.
20111 Optional argument N tells to change by that many units."
20112 (interactive "P")
20113 (cond ((and (not org-support-shift-select)
20114 (org-at-clock-log-p)
20115 (org-at-timestamp-p t))
20116 (org-clock-timestamps-up n))
20117 (t (org-shiftselect-error))))
20119 (defun org-shiftcontroldown (&optional n)
20120 "Change timestamps synchronously down in CLOCK log lines.
20121 Optional argument N tells to change by that many units."
20122 (interactive "P")
20123 (cond ((and (not org-support-shift-select)
20124 (org-at-clock-log-p)
20125 (org-at-timestamp-p t))
20126 (org-clock-timestamps-down n))
20127 (t (org-shiftselect-error))))
20129 (defun org-ctrl-c-ret ()
20130 "Call `org-table-hline-and-move' or `org-insert-heading' dep. on context."
20131 (interactive)
20132 (cond
20133 ((org-at-table-p) (call-interactively 'org-table-hline-and-move))
20134 (t (call-interactively 'org-insert-heading))))
20136 (defun org-find-visible ()
20137 (let ((s (point)))
20138 (while (and (not (= (point-max) (setq s (next-overlay-change s))))
20139 (get-char-property s 'invisible)))
20141 (defun org-find-invisible ()
20142 (let ((s (point)))
20143 (while (and (not (= (point-max) (setq s (next-overlay-change s))))
20144 (not (get-char-property s 'invisible))))
20147 (defun org-copy-visible (beg end)
20148 "Copy the visible parts of the region."
20149 (interactive "r")
20150 (let (snippets s)
20151 (save-excursion
20152 (save-restriction
20153 (narrow-to-region beg end)
20154 (setq s (goto-char (point-min)))
20155 (while (not (= (point) (point-max)))
20156 (goto-char (org-find-invisible))
20157 (push (buffer-substring s (point)) snippets)
20158 (setq s (goto-char (org-find-visible))))))
20159 (kill-new (apply 'concat (nreverse snippets)))))
20161 (defun org-copy-special ()
20162 "Copy region in table or copy current subtree.
20163 Calls `org-table-copy' or `org-copy-subtree', depending on context.
20164 See the individual commands for more information."
20165 (interactive)
20166 (call-interactively
20167 (if (org-at-table-p) 'org-table-copy-region 'org-copy-subtree)))
20169 (defun org-cut-special ()
20170 "Cut region in table or cut current subtree.
20171 Calls `org-table-copy' or `org-cut-subtree', depending on context.
20172 See the individual commands for more information."
20173 (interactive)
20174 (call-interactively
20175 (if (org-at-table-p) 'org-table-cut-region 'org-cut-subtree)))
20177 (defun org-paste-special (arg)
20178 "Paste rectangular region into table, or past subtree relative to level.
20179 Calls `org-table-paste-rectangle' or `org-paste-subtree', depending on context.
20180 See the individual commands for more information."
20181 (interactive "P")
20182 (if (org-at-table-p)
20183 (org-table-paste-rectangle)
20184 (org-paste-subtree arg)))
20186 (defsubst org-in-fixed-width-region-p ()
20187 "Is point in a fixed-width region?"
20188 (save-match-data
20189 (eq 'fixed-width (org-element-type (org-element-at-point)))))
20191 (defun org-edit-special (&optional arg)
20192 "Call a special editor for the element at point.
20193 When at a table, call the formula editor with `org-table-edit-formulas'.
20194 When in a source code block, call `org-edit-src-code'.
20195 When in a fixed-width region, call `org-edit-fixed-width-region'.
20196 When at an #+INCLUDE keyword, visit the included file.
20197 On a link, call `ffap' to visit the link at point.
20198 Otherwise, return a user error."
20199 (interactive "P")
20200 (let ((element (org-element-at-point)))
20201 (assert (not buffer-read-only) nil
20202 "Buffer is read-only: %s" (buffer-name))
20203 (case (org-element-type element)
20204 (src-block
20205 (if (not arg) (org-edit-src-code)
20206 (let* ((info (org-babel-get-src-block-info))
20207 (lang (nth 0 info))
20208 (params (nth 2 info))
20209 (session (cdr (assq :session params))))
20210 (if (not session) (org-edit-src-code)
20211 ;; At a src-block with a session and function called with
20212 ;; an ARG: switch to the buffer related to the inferior
20213 ;; process.
20214 (switch-to-buffer
20215 (funcall (intern (concat "org-babel-prep-session:" lang))
20216 session params))))))
20217 (keyword
20218 (if (member (org-element-property :key element) '("INCLUDE" "SETUPFILE"))
20219 (find-file
20220 (org-remove-double-quotes
20221 (car (org-split-string (org-element-property :value element)))))
20222 (user-error "No special environment to edit here")))
20223 (table
20224 (if (eq (org-element-property :type element) 'table.el)
20225 (org-edit-src-code)
20226 (call-interactively 'org-table-edit-formulas)))
20227 ;; Only Org tables contain `table-row' type elements.
20228 (table-row (call-interactively 'org-table-edit-formulas))
20229 ((example-block export-block) (org-edit-src-code))
20230 (fixed-width (org-edit-fixed-width-region))
20231 (otherwise
20232 ;; No notable element at point. Though, we may be at a link,
20233 ;; which is an object. Thus, scan deeper.
20234 (if (eq (org-element-type (org-element-context element)) 'link)
20235 (call-interactively 'ffap)
20236 (user-error "No special environment to edit here"))))))
20238 (defvar org-table-coordinate-overlays) ; defined in org-table.el
20239 (defun org-ctrl-c-ctrl-c (&optional arg)
20240 "Set tags in headline, or update according to changed information at point.
20242 This command does many different things, depending on context:
20244 - If a function in `org-ctrl-c-ctrl-c-hook' recognizes this location,
20245 this is what we do.
20247 - If the cursor is on a statistics cookie, update it.
20249 - If the cursor is in a headline, prompt for tags and insert them
20250 into the current line, aligned to `org-tags-column'. When called
20251 with prefix arg, realign all tags in the current buffer.
20253 - If the cursor is in one of the special #+KEYWORD lines, this
20254 triggers scanning the buffer for these lines and updating the
20255 information.
20257 - If the cursor is inside a table, realign the table. This command
20258 works even if the automatic table editor has been turned off.
20260 - If the cursor is on a #+TBLFM line, re-apply the formulas to
20261 the entire table.
20263 - If the cursor is at a footnote reference or definition, jump to
20264 the corresponding definition or references, respectively.
20266 - If the cursor is a the beginning of a dynamic block, update it.
20268 - If the current buffer is a capture buffer, close note and file it.
20270 - If the cursor is on a <<<target>>>, update radio targets and
20271 corresponding links in this buffer.
20273 - If the cursor is on a numbered item in a plain list, renumber the
20274 ordered list.
20276 - If the cursor is on a checkbox, toggle it.
20278 - If the cursor is on a code block, evaluate it. The variable
20279 `org-confirm-babel-evaluate' can be used to control prompting
20280 before code block evaluation, by default every code block
20281 evaluation requires confirmation. Code block evaluation can be
20282 inhibited by setting `org-babel-no-eval-on-ctrl-c-ctrl-c'."
20283 (interactive "P")
20284 (cond
20285 ((or (and (boundp 'org-clock-overlays) org-clock-overlays)
20286 org-occur-highlights
20287 org-latex-fragment-image-overlays)
20288 (and (boundp 'org-clock-overlays) (org-clock-remove-overlays))
20289 (org-remove-occur-highlights)
20290 (org-remove-latex-fragment-image-overlays)
20291 (message "Temporary highlights/overlays removed from current buffer"))
20292 ((and (local-variable-p 'org-finish-function (current-buffer))
20293 (fboundp org-finish-function))
20294 (funcall org-finish-function))
20295 ((run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-hook))
20297 (let* ((context (org-element-context)) (type (org-element-type context)))
20298 ;; Test if point is within a blank line.
20299 (if (save-excursion (beginning-of-line) (looking-at "[ \t]*$"))
20300 (or (run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-final-hook)
20301 (user-error "C-c C-c can do nothing useful at this location"))
20302 ;; When at a link, act according to the parent instead.
20303 (when (eq type 'link)
20304 (setq context (org-element-property :parent context))
20305 (setq type (org-element-type context)))
20306 ;; For convenience: at the first line of a paragraph on the
20307 ;; same line as an item, apply function on that item instead.
20308 (when (eq type 'paragraph)
20309 (let ((parent (org-element-property :parent context)))
20310 (when (and (eq (org-element-type parent) 'item)
20311 (= (point-at-bol) (org-element-property :begin parent)))
20312 (setq context parent type 'item))))
20313 ;; Act according to type of element or object at point.
20314 (case type
20315 (clock (org-clock-update-time-maybe))
20316 (dynamic-block
20317 (save-excursion
20318 (goto-char (org-element-property :post-affiliated context))
20319 (org-update-dblock)))
20320 (footnote-definition
20321 (goto-char (org-element-property :post-affiliated context))
20322 (call-interactively 'org-footnote-action))
20323 (footnote-reference (call-interactively 'org-footnote-action))
20324 ((headline inlinetask)
20325 (save-excursion (goto-char (org-element-property :begin context))
20326 (call-interactively 'org-set-tags)))
20327 (item
20328 ;; At an item: a double C-u set checkbox to "[-]"
20329 ;; unconditionally, whereas a single one will toggle its
20330 ;; presence. Without an universal argument, if the item
20331 ;; has a checkbox, toggle it. Otherwise repair the list.
20332 (let* ((box (org-element-property :checkbox context))
20333 (struct (org-element-property :structure context))
20334 (old-struct (copy-tree struct))
20335 (parents (org-list-parents-alist struct))
20336 (prevs (org-list-prevs-alist struct))
20337 (orderedp (org-not-nil (org-entry-get nil "ORDERED"))))
20338 (org-list-set-checkbox
20339 (org-element-property :begin context) struct
20340 (cond ((equal arg '(16)) "[-]")
20341 ((and (not box) (equal arg '(4))) "[ ]")
20342 ((or (not box) (equal arg '(4))) nil)
20343 ((eq box 'on) "[ ]")
20344 (t "[X]")))
20345 ;; Mimic `org-list-write-struct' but with grabbing
20346 ;; a return value from `org-list-struct-fix-box'.
20347 (org-list-struct-fix-ind struct parents 2)
20348 (org-list-struct-fix-item-end struct)
20349 (org-list-struct-fix-bul struct prevs)
20350 (org-list-struct-fix-ind struct parents)
20351 (let ((block-item
20352 (org-list-struct-fix-box struct parents prevs orderedp)))
20353 (if (and box (equal struct old-struct))
20354 (if (equal arg '(16))
20355 (message "Checkboxes already reset")
20356 (user-error "Cannot toggle this checkbox: %s"
20357 (if (eq box 'on)
20358 "all subitems checked"
20359 "unchecked subitems")))
20360 (org-list-struct-apply-struct struct old-struct)
20361 (org-update-checkbox-count-maybe))
20362 (when block-item
20363 (message "Checkboxes were removed due to empty box at line %d"
20364 (org-current-line block-item))))))
20365 (keyword
20366 (let ((org-inhibit-startup-visibility-stuff t)
20367 (org-startup-align-all-tables nil))
20368 (when (boundp 'org-table-coordinate-overlays)
20369 (mapc 'delete-overlay org-table-coordinate-overlays)
20370 (setq org-table-coordinate-overlays nil))
20371 (org-save-outline-visibility 'use-markers (org-mode-restart)))
20372 (message "Local setup has been refreshed"))
20373 (plain-list
20374 ;; At a plain list, with a double C-u argument, set
20375 ;; checkboxes of each item to "[-]", whereas a single one
20376 ;; will toggle their presence according to the state of the
20377 ;; first item in the list. Without an argument, repair the
20378 ;; list.
20379 (let* ((begin (org-element-property :contents-begin context))
20380 (beginm (move-marker (make-marker) begin))
20381 (struct (org-element-property :structure context))
20382 (old-struct (copy-tree struct))
20383 (first-box (save-excursion
20384 (goto-char begin)
20385 (looking-at org-list-full-item-re)
20386 (match-string-no-properties 3)))
20387 (new-box (cond ((equal arg '(16)) "[-]")
20388 ((equal arg '(4)) (unless first-box "[ ]"))
20389 ((equal first-box "[X]") "[ ]")
20390 (t "[X]"))))
20391 (cond
20392 (arg
20393 (mapc (lambda (pos) (org-list-set-checkbox pos struct new-box))
20394 (org-list-get-all-items
20395 begin struct (org-list-prevs-alist struct))))
20396 ((and first-box (eq (point) begin))
20397 ;; For convenience, when point is at bol on the first
20398 ;; item of the list and no argument is provided, simply
20399 ;; toggle checkbox of that item, if any.
20400 (org-list-set-checkbox begin struct new-box)))
20401 (org-list-write-struct
20402 struct (org-list-parents-alist struct) old-struct)
20403 (org-update-checkbox-count-maybe)
20404 (save-excursion (goto-char beginm) (org-list-send-list 'maybe))))
20405 ((property-drawer node-property)
20406 (call-interactively 'org-property-action))
20407 ((radio-target target)
20408 (call-interactively 'org-update-radio-target-regexp))
20409 (statistics-cookie
20410 (call-interactively 'org-update-statistics-cookies))
20411 ((table table-cell table-row)
20412 ;; At a table, recalculate every field and align it. Also
20413 ;; send the table if necessary. If the table has
20414 ;; a `table.el' type, just give up. At a table row or
20415 ;; cell, maybe recalculate line but always align table.
20416 (if (eq (org-element-property :type context) 'table.el)
20417 (message "Use C-c ' to edit table.el tables")
20418 (let ((org-enable-table-editor t))
20419 (if (or (eq type 'table)
20420 ;; Check if point is at a TBLFM line.
20421 (and (eq type 'table-row)
20422 (= (point) (org-element-property :end context))))
20423 (save-excursion
20424 (if (org-at-TBLFM-p)
20425 (progn (require 'org-table)
20426 (org-table-calc-current-TBLFM))
20427 (goto-char (org-element-property :contents-begin context))
20428 (org-call-with-arg 'org-table-recalculate (or arg t))
20429 (orgtbl-send-table 'maybe)))
20430 (org-table-maybe-eval-formula)
20431 (cond (arg (call-interactively 'org-table-recalculate))
20432 ((org-table-maybe-recalculate-line))
20433 (t (org-table-align)))))))
20434 (timestamp (org-timestamp-change 0 'day))
20435 (otherwise
20436 (or (run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-final-hook)
20437 (user-error
20438 "C-c C-c can do nothing useful at this location")))))))))
20440 (defun org-mode-restart ()
20441 "Restart Org-mode, to scan again for special lines.
20442 Also updates the keyword regular expressions."
20443 (interactive)
20444 (org-mode)
20445 (message "Org-mode restarted"))
20447 (defun org-kill-note-or-show-branches ()
20448 "If this is a Note buffer, abort storing the note. Else call `show-branches'."
20449 (interactive)
20450 (if (not org-finish-function)
20451 (progn
20452 (hide-subtree)
20453 (call-interactively 'show-branches))
20454 (let ((org-note-abort t))
20455 (funcall org-finish-function))))
20457 (defun org-open-line (n)
20458 "Insert a new row in tables, call `open-line' elsewhere.
20459 If `org-special-ctrl-o' is nil, just call `open-line' everywhere."
20460 (interactive "*p")
20461 (cond
20462 ((not org-special-ctrl-o)
20463 (open-line n))
20464 ((org-at-table-p)
20465 (org-table-insert-row))
20467 (open-line n))))
20469 (defun org-return (&optional indent)
20470 "Goto next table row or insert a newline.
20471 Calls `org-table-next-row' or `newline', depending on context.
20472 See the individual commands for more information."
20473 (interactive)
20474 (let (org-ts-what)
20475 (cond
20476 ((or (bobp) (org-in-src-block-p))
20477 (if indent (newline-and-indent) (newline)))
20478 ((org-at-table-p)
20479 (org-table-justify-field-maybe)
20480 (call-interactively 'org-table-next-row))
20481 ;; when `newline-and-indent' is called within a list, make sure
20482 ;; text moved stays inside the item.
20483 ((and (org-in-item-p) indent)
20484 (if (and (org-at-item-p) (>= (point) (match-end 0)))
20485 (progn
20486 (save-match-data (newline))
20487 (org-indent-line-to (length (match-string 0))))
20488 (let ((ind (org-get-indentation)))
20489 (newline)
20490 (if (org-looking-back org-list-end-re)
20491 (org-indent-line)
20492 (org-indent-line-to ind)))))
20493 ((and org-return-follows-link
20494 (org-at-timestamp-p t)
20495 (not (eq org-ts-what 'after)))
20496 (org-follow-timestamp-link))
20497 ((and org-return-follows-link
20498 (let ((tprop (get-text-property (point) 'face)))
20499 (or (eq tprop 'org-link)
20500 (and (listp tprop) (memq 'org-link tprop)))))
20501 (call-interactively 'org-open-at-point))
20502 ((and (org-at-heading-p)
20503 (looking-at
20504 (org-re "\\([ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)[ \t]*$")))
20505 (org-show-entry)
20506 (end-of-line 1)
20507 (newline))
20508 (t (if indent (newline-and-indent) (newline))))))
20510 (defun org-return-indent ()
20511 "Goto next table row or insert a newline and indent.
20512 Calls `org-table-next-row' or `newline-and-indent', depending on
20513 context. See the individual commands for more information."
20514 (interactive)
20515 (org-return t))
20517 (defun org-ctrl-c-star ()
20518 "Compute table, or change heading status of lines.
20519 Calls `org-table-recalculate' or `org-toggle-heading',
20520 depending on context."
20521 (interactive)
20522 (cond
20523 ((org-at-table-p)
20524 (call-interactively 'org-table-recalculate))
20526 ;; Convert all lines in region to list items
20527 (call-interactively 'org-toggle-heading))))
20529 (defun org-ctrl-c-minus ()
20530 "Insert separator line in table or modify bullet status of line.
20531 Also turns a plain line or a region of lines into list items.
20532 Calls `org-table-insert-hline', `org-toggle-item', or
20533 `org-cycle-list-bullet', depending on context."
20534 (interactive)
20535 (cond
20536 ((org-at-table-p)
20537 (call-interactively 'org-table-insert-hline))
20538 ((org-region-active-p)
20539 (call-interactively 'org-toggle-item))
20540 ((org-in-item-p)
20541 (call-interactively 'org-cycle-list-bullet))
20543 (call-interactively 'org-toggle-item))))
20545 (defun org-toggle-item (arg)
20546 "Convert headings or normal lines to items, items to normal lines.
20547 If there is no active region, only the current line is considered.
20549 If the first non blank line in the region is a headline, convert
20550 all headlines to items, shifting text accordingly.
20552 If it is an item, convert all items to normal lines.
20554 If it is normal text, change region into a list of items.
20555 With a prefix argument ARG, change the region in a single item."
20556 (interactive "P")
20557 (let ((shift-text
20558 (function
20559 ;; Shift text in current section to IND, from point to END.
20560 ;; The function leaves point to END line.
20561 (lambda (ind end)
20562 (let ((min-i 1000) (end (copy-marker end)))
20563 ;; First determine the minimum indentation (MIN-I) of
20564 ;; the text.
20565 (save-excursion
20566 (catch 'exit
20567 (while (< (point) end)
20568 (let ((i (org-get-indentation)))
20569 (cond
20570 ;; Skip blank lines and inline tasks.
20571 ((looking-at "^[ \t]*$"))
20572 ((looking-at org-outline-regexp-bol))
20573 ;; We can't find less than 0 indentation.
20574 ((zerop i) (throw 'exit (setq min-i 0)))
20575 ((< i min-i) (setq min-i i))))
20576 (forward-line))))
20577 ;; Then indent each line so that a line indented to
20578 ;; MIN-I becomes indented to IND. Ignore blank lines
20579 ;; and inline tasks in the process.
20580 (let ((delta (- ind min-i)))
20581 (while (< (point) end)
20582 (unless (or (looking-at "^[ \t]*$")
20583 (looking-at org-outline-regexp-bol))
20584 (org-indent-line-to (+ (org-get-indentation) delta)))
20585 (forward-line)))))))
20586 (skip-blanks
20587 (function
20588 ;; Return beginning of first non-blank line, starting from
20589 ;; line at POS.
20590 (lambda (pos)
20591 (save-excursion
20592 (goto-char pos)
20593 (skip-chars-forward " \r\t\n")
20594 (point-at-bol)))))
20595 beg end)
20596 ;; Determine boundaries of changes.
20597 (if (org-region-active-p)
20598 (setq beg (funcall skip-blanks (region-beginning))
20599 end (copy-marker (region-end)))
20600 (setq beg (funcall skip-blanks (point-at-bol))
20601 end (copy-marker (point-at-eol))))
20602 ;; Depending on the starting line, choose an action on the text
20603 ;; between BEG and END.
20604 (org-with-limited-levels
20605 (save-excursion
20606 (goto-char beg)
20607 (cond
20608 ;; Case 1. Start at an item: de-itemize. Note that it only
20609 ;; happens when a region is active: `org-ctrl-c-minus'
20610 ;; would call `org-cycle-list-bullet' otherwise.
20611 ((org-at-item-p)
20612 (while (< (point) end)
20613 (when (org-at-item-p)
20614 (skip-chars-forward " \t")
20615 (delete-region (point) (match-end 0)))
20616 (forward-line)))
20617 ;; Case 2. Start at an heading: convert to items.
20618 ((org-at-heading-p)
20619 (let* ((bul (org-list-bullet-string "-"))
20620 (bul-len (length bul))
20621 ;; Indentation of the first heading. It should be
20622 ;; relative to the indentation of its parent, if any.
20623 (start-ind (save-excursion
20624 (cond
20625 ((not org-adapt-indentation) 0)
20626 ((not (outline-previous-heading)) 0)
20627 (t (length (match-string 0))))))
20628 ;; Level of first heading. Further headings will be
20629 ;; compared to it to determine hierarchy in the list.
20630 (ref-level (org-reduced-level (org-outline-level))))
20631 (while (< (point) end)
20632 (let* ((level (org-reduced-level (org-outline-level)))
20633 (delta (max 0 (- level ref-level))))
20634 ;; If current headline is less indented than the first
20635 ;; one, set it as reference, in order to preserve
20636 ;; subtrees.
20637 (when (< level ref-level) (setq ref-level level))
20638 (replace-match bul t t)
20639 (org-indent-line-to (+ start-ind (* delta bul-len)))
20640 ;; Ensure all text down to END (or SECTION-END) belongs
20641 ;; to the newly created item.
20642 (let ((section-end (save-excursion
20643 (or (outline-next-heading) (point)))))
20644 (forward-line)
20645 (funcall shift-text
20646 (+ start-ind (* (1+ delta) bul-len))
20647 (min end section-end)))))))
20648 ;; Case 3. Normal line with ARG: make the first line of region
20649 ;; an item, and shift indentation of others lines to
20650 ;; set them as item's body.
20651 (arg (let* ((bul (org-list-bullet-string "-"))
20652 (bul-len (length bul))
20653 (ref-ind (org-get-indentation)))
20654 (skip-chars-forward " \t")
20655 (insert bul)
20656 (forward-line)
20657 (while (< (point) end)
20658 ;; Ensure that lines less indented than first one
20659 ;; still get included in item body.
20660 (funcall shift-text
20661 (+ ref-ind bul-len)
20662 (min end (save-excursion (or (outline-next-heading)
20663 (point)))))
20664 (forward-line))))
20665 ;; Case 4. Normal line without ARG: turn each non-item line
20666 ;; into an item.
20668 (while (< (point) end)
20669 (unless (or (org-at-heading-p) (org-at-item-p))
20670 (if (looking-at "\\([ \t]*\\)\\(\\S-\\)")
20671 (replace-match
20672 (concat "\\1" (org-list-bullet-string "-") "\\2"))))
20673 (forward-line))))))))
20675 (defun org-toggle-heading (&optional nstars)
20676 "Convert headings to normal text, or items or text to headings.
20677 If there is no active region, only convert the current line.
20679 With a \\[universal-argument] prefix, convert the whole list at
20680 point into heading.
20682 In a region:
20684 - If the first non blank line is a headline, remove the stars
20685 from all headlines in the region.
20687 - If it is a normal line, turn each and every normal line (i.e.,
20688 not an heading or an item) in the region into headings. If you
20689 want to convert only the first line of this region, use one
20690 universal prefix argument.
20692 - If it is a plain list item, turn all plain list items into headings.
20694 When converting a line into a heading, the number of stars is chosen
20695 such that the lines become children of the current entry. However,
20696 when a numeric prefix argument is given, its value determines the
20697 number of stars to add."
20698 (interactive "P")
20699 (let ((skip-blanks
20700 (function
20701 ;; Return beginning of first non-blank line, starting from
20702 ;; line at POS.
20703 (lambda (pos)
20704 (save-excursion
20705 (goto-char pos)
20706 (while (org-at-comment-p) (forward-line))
20707 (skip-chars-forward " \r\t\n")
20708 (point-at-bol)))))
20709 beg end toggled)
20710 ;; Determine boundaries of changes. If a universal prefix has
20711 ;; been given, put the list in a region. If region ends at a bol,
20712 ;; do not consider the last line to be in the region.
20714 (when (and current-prefix-arg (org-at-item-p))
20715 (if (listp current-prefix-arg) (setq current-prefix-arg 1))
20716 (org-mark-element))
20718 (if (org-region-active-p)
20719 (setq beg (funcall skip-blanks (region-beginning))
20720 end (copy-marker (save-excursion
20721 (goto-char (region-end))
20722 (if (bolp) (point) (point-at-eol)))))
20723 (setq beg (funcall skip-blanks (point-at-bol))
20724 end (copy-marker (point-at-eol))))
20725 ;; Ensure inline tasks don't count as headings.
20726 (org-with-limited-levels
20727 (save-excursion
20728 (goto-char beg)
20729 (cond
20730 ;; Case 1. Started at an heading: de-star headings.
20731 ((org-at-heading-p)
20732 (while (< (point) end)
20733 (when (org-at-heading-p t)
20734 (looking-at org-outline-regexp) (replace-match "")
20735 (setq toggled t))
20736 (forward-line)))
20737 ;; Case 2. Started at an item: change items into headlines.
20738 ;; One star will be added by `org-list-to-subtree'.
20739 ((org-at-item-p)
20740 (let* ((stars (make-string
20741 ;; subtract the star that will be added again by
20742 ;; `org-list-to-subtree'
20743 (if (numberp nstars) (1- nstars)
20744 (or (org-current-level) 0))
20745 ?*))
20746 (add-stars
20747 (cond (nstars "") ; stars from prefix only
20748 ((equal stars "") "") ; before first heading
20749 (org-odd-levels-only "*") ; inside heading, odd
20750 (t "")))) ; inside heading, oddeven
20751 (while (< (point) end)
20752 (when (org-at-item-p)
20753 ;; Pay attention to cases when region ends before list.
20754 (let* ((struct (org-list-struct))
20755 (list-end (min (org-list-get-bottom-point struct) (1+ end))))
20756 (save-restriction
20757 (narrow-to-region (point) list-end)
20758 (insert
20759 (org-list-to-subtree
20760 (org-list-parse-list t)
20761 '(:istart (concat stars add-stars (funcall get-stars depth))
20762 :icount (concat stars add-stars (funcall get-stars depth)))))))
20763 (setq toggled t))
20764 (forward-line))))
20765 ;; Case 3. Started at normal text: make every line an heading,
20766 ;; skipping headlines and items.
20767 (t (let* ((stars
20768 (make-string
20769 (if (numberp nstars) nstars (or (org-current-level) 0)) ?*))
20770 (add-stars
20771 (cond (nstars "") ; stars from prefix only
20772 ((equal stars "") "*") ; before first heading
20773 (org-odd-levels-only "**") ; inside heading, odd
20774 (t "*"))) ; inside heading, oddeven
20775 (rpl (concat stars add-stars " "))
20776 (lend (if (listp nstars) (save-excursion (end-of-line) (point)))))
20777 (while (< (point) (if (equal nstars '(4)) lend end))
20778 (when (and (not (or (org-at-heading-p) (org-at-item-p) (org-at-comment-p)))
20779 (looking-at "\\([ \t]*\\)\\(\\S-\\)"))
20780 (replace-match (concat rpl (match-string 2))) (setq toggled t))
20781 (forward-line)))))))
20782 (unless toggled (message "Cannot toggle heading from here"))))
20784 (defun org-meta-return (&optional arg)
20785 "Insert a new heading or wrap a region in a table.
20786 Calls `org-insert-heading' or `org-table-wrap-region', depending
20787 on context. See the individual commands for more information."
20788 (interactive "P")
20789 (org-check-before-invisible-edit 'insert)
20790 (or (run-hook-with-args-until-success 'org-metareturn-hook)
20791 (let* ((element (org-element-at-point))
20792 (type (org-element-type element)))
20793 (when (eq type 'table-row)
20794 (setq element (org-element-property :parent element))
20795 (setq type 'table))
20796 (if (and (eq type 'table)
20797 (eq (org-element-property :type element) 'org)
20798 (>= (point) (org-element-property :contents-begin element))
20799 (< (point) (org-element-property :contents-end element)))
20800 (call-interactively 'org-table-wrap-region)
20801 (call-interactively 'org-insert-heading)))))
20803 ;;; Menu entries
20805 (defsubst org-in-subtree-not-table-p ()
20806 "Are we in a subtree and not in a table?"
20807 (and (not (org-before-first-heading-p))
20808 (not (org-at-table-p))))
20810 ;; Define the Org-mode menus
20811 (easy-menu-define org-tbl-menu org-mode-map "Tbl menu"
20812 '("Tbl"
20813 ["Align" org-ctrl-c-ctrl-c :active (org-at-table-p)]
20814 ["Next Field" org-cycle (org-at-table-p)]
20815 ["Previous Field" org-shifttab (org-at-table-p)]
20816 ["Next Row" org-return (org-at-table-p)]
20817 "--"
20818 ["Blank Field" org-table-blank-field (org-at-table-p)]
20819 ["Edit Field" org-table-edit-field (org-at-table-p)]
20820 ["Copy Field from Above" org-table-copy-down (org-at-table-p)]
20821 "--"
20822 ("Column"
20823 ["Move Column Left" org-metaleft (org-at-table-p)]
20824 ["Move Column Right" org-metaright (org-at-table-p)]
20825 ["Delete Column" org-shiftmetaleft (org-at-table-p)]
20826 ["Insert Column" org-shiftmetaright (org-at-table-p)])
20827 ("Row"
20828 ["Move Row Up" org-metaup (org-at-table-p)]
20829 ["Move Row Down" org-metadown (org-at-table-p)]
20830 ["Delete Row" org-shiftmetaup (org-at-table-p)]
20831 ["Insert Row" org-shiftmetadown (org-at-table-p)]
20832 ["Sort lines in region" org-table-sort-lines (org-at-table-p)]
20833 "--"
20834 ["Insert Hline" org-ctrl-c-minus (org-at-table-p)])
20835 ("Rectangle"
20836 ["Copy Rectangle" org-copy-special (org-at-table-p)]
20837 ["Cut Rectangle" org-cut-special (org-at-table-p)]
20838 ["Paste Rectangle" org-paste-special (org-at-table-p)]
20839 ["Fill Rectangle" org-table-wrap-region (org-at-table-p)])
20840 "--"
20841 ("Calculate"
20842 ["Set Column Formula" org-table-eval-formula (org-at-table-p)]
20843 ["Set Field Formula" (org-table-eval-formula '(4)) :active (org-at-table-p) :keys "C-u C-c ="]
20844 ["Edit Formulas" org-edit-special (org-at-table-p)]
20845 "--"
20846 ["Recalculate line" org-table-recalculate (org-at-table-p)]
20847 ["Recalculate all" (lambda () (interactive) (org-table-recalculate '(4))) :active (org-at-table-p) :keys "C-u C-c *"]
20848 ["Iterate all" (lambda () (interactive) (org-table-recalculate '(16))) :active (org-at-table-p) :keys "C-u C-u C-c *"]
20849 "--"
20850 ["Toggle Recalculate Mark" org-table-rotate-recalc-marks (org-at-table-p)]
20851 "--"
20852 ["Sum Column/Rectangle" org-table-sum
20853 (or (org-at-table-p) (org-region-active-p))]
20854 ["Which Column?" org-table-current-column (org-at-table-p)])
20855 ["Debug Formulas"
20856 org-table-toggle-formula-debugger
20857 :style toggle :selected (org-bound-and-true-p org-table-formula-debug)]
20858 ["Show Col/Row Numbers"
20859 org-table-toggle-coordinate-overlays
20860 :style toggle
20861 :selected (org-bound-and-true-p org-table-overlay-coordinates)]
20862 "--"
20863 ["Create" org-table-create (and (not (org-at-table-p))
20864 org-enable-table-editor)]
20865 ["Convert Region" org-table-convert-region (not (org-at-table-p 'any))]
20866 ["Import from File" org-table-import (not (org-at-table-p))]
20867 ["Export to File" org-table-export (org-at-table-p)]
20868 "--"
20869 ["Create/Convert from/to table.el" org-table-create-with-table.el t]))
20871 (easy-menu-define org-org-menu org-mode-map "Org menu"
20872 '("Org"
20873 ("Show/Hide"
20874 ["Cycle Visibility" org-cycle :active (or (bobp) (outline-on-heading-p))]
20875 ["Cycle Global Visibility" org-shifttab :active (not (org-at-table-p))]
20876 ["Sparse Tree..." org-sparse-tree t]
20877 ["Reveal Context" org-reveal t]
20878 ["Show All" show-all t]
20879 "--"
20880 ["Subtree to indirect buffer" org-tree-to-indirect-buffer t])
20881 "--"
20882 ["New Heading" org-insert-heading t]
20883 ("Navigate Headings"
20884 ["Up" outline-up-heading t]
20885 ["Next" outline-next-visible-heading t]
20886 ["Previous" outline-previous-visible-heading t]
20887 ["Next Same Level" outline-forward-same-level t]
20888 ["Previous Same Level" outline-backward-same-level t]
20889 "--"
20890 ["Jump" org-goto t])
20891 ("Edit Structure"
20892 ["Refile Subtree" org-refile (org-in-subtree-not-table-p)]
20893 "--"
20894 ["Move Subtree Up" org-shiftmetaup (org-in-subtree-not-table-p)]
20895 ["Move Subtree Down" org-shiftmetadown (org-in-subtree-not-table-p)]
20896 "--"
20897 ["Copy Subtree" org-copy-special (org-in-subtree-not-table-p)]
20898 ["Cut Subtree" org-cut-special (org-in-subtree-not-table-p)]
20899 ["Paste Subtree" org-paste-special (not (org-at-table-p))]
20900 "--"
20901 ["Clone subtree, shift time" org-clone-subtree-with-time-shift t]
20902 "--"
20903 ["Copy visible text" org-copy-visible t]
20904 "--"
20905 ["Promote Heading" org-metaleft (org-in-subtree-not-table-p)]
20906 ["Promote Subtree" org-shiftmetaleft (org-in-subtree-not-table-p)]
20907 ["Demote Heading" org-metaright (org-in-subtree-not-table-p)]
20908 ["Demote Subtree" org-shiftmetaright (org-in-subtree-not-table-p)]
20909 "--"
20910 ["Sort Region/Children" org-sort t]
20911 "--"
20912 ["Convert to odd levels" org-convert-to-odd-levels t]
20913 ["Convert to odd/even levels" org-convert-to-oddeven-levels t])
20914 ("Editing"
20915 ["Emphasis..." org-emphasize t]
20916 ["Edit Source Example" org-edit-special t]
20917 "--"
20918 ["Footnote new/jump" org-footnote-action t]
20919 ["Footnote extra" (org-footnote-action t) :active t :keys "C-u C-c C-x f"])
20920 ("Archive"
20921 ["Archive (default method)" org-archive-subtree-default (org-in-subtree-not-table-p)]
20922 "--"
20923 ["Move Subtree to Archive file" org-advertized-archive-subtree (org-in-subtree-not-table-p)]
20924 ["Toggle ARCHIVE tag" org-toggle-archive-tag (org-in-subtree-not-table-p)]
20925 ["Move subtree to Archive sibling" org-archive-to-archive-sibling (org-in-subtree-not-table-p)]
20927 "--"
20928 ("Hyperlinks"
20929 ["Store Link (Global)" org-store-link t]
20930 ["Find existing link to here" org-occur-link-in-agenda-files t]
20931 ["Insert Link" org-insert-link t]
20932 ["Follow Link" org-open-at-point t]
20933 "--"
20934 ["Next link" org-next-link t]
20935 ["Previous link" org-previous-link t]
20936 "--"
20937 ["Descriptive Links"
20938 org-toggle-link-display
20939 :style radio
20940 :selected org-descriptive-links
20942 ["Literal Links"
20943 org-toggle-link-display
20944 :style radio
20945 :selected (not org-descriptive-links)])
20946 "--"
20947 ("TODO Lists"
20948 ["TODO/DONE/-" org-todo t]
20949 ("Select keyword"
20950 ["Next keyword" org-shiftright (org-at-heading-p)]
20951 ["Previous keyword" org-shiftleft (org-at-heading-p)]
20952 ["Complete Keyword" pcomplete (assq :todo-keyword (org-context))]
20953 ["Next keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-at-heading-p))]
20954 ["Previous keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-at-heading-p))])
20955 ["Show TODO Tree" org-show-todo-tree :active t :keys "C-c / t"]
20956 ["Global TODO list" org-todo-list :active t :keys "C-c a t"]
20957 "--"
20958 ["Enforce dependencies" (customize-variable 'org-enforce-todo-dependencies)
20959 :selected org-enforce-todo-dependencies :style toggle :active t]
20960 "Settings for tree at point"
20961 ["Do Children sequentially" org-toggle-ordered-property :style radio
20962 :selected (org-entry-get nil "ORDERED")
20963 :active org-enforce-todo-dependencies :keys "C-c C-x o"]
20964 ["Do Children parallel" org-toggle-ordered-property :style radio
20965 :selected (not (org-entry-get nil "ORDERED"))
20966 :active org-enforce-todo-dependencies :keys "C-c C-x o"]
20967 "--"
20968 ["Set Priority" org-priority t]
20969 ["Priority Up" org-shiftup t]
20970 ["Priority Down" org-shiftdown t]
20971 "--"
20972 ["Get news from all feeds" org-feed-update-all t]
20973 ["Go to the inbox of a feed..." org-feed-goto-inbox t]
20974 ["Customize feeds" (customize-variable 'org-feed-alist) t])
20975 ("TAGS and Properties"
20976 ["Set Tags" org-set-tags-command (not (org-before-first-heading-p))]
20977 ["Change tag in region" org-change-tag-in-region (org-region-active-p)]
20978 "--"
20979 ["Set property" org-set-property (not (org-before-first-heading-p))]
20980 ["Column view of properties" org-columns t]
20981 ["Insert Column View DBlock" org-insert-columns-dblock t])
20982 ("Dates and Scheduling"
20983 ["Timestamp" org-time-stamp (not (org-before-first-heading-p))]
20984 ["Timestamp (inactive)" org-time-stamp-inactive (not (org-before-first-heading-p))]
20985 ("Change Date"
20986 ["1 Day Later" org-shiftright (org-at-timestamp-p)]
20987 ["1 Day Earlier" org-shiftleft (org-at-timestamp-p)]
20988 ["1 ... Later" org-shiftup (org-at-timestamp-p)]
20989 ["1 ... Earlier" org-shiftdown (org-at-timestamp-p)])
20990 ["Compute Time Range" org-evaluate-time-range t]
20991 ["Schedule Item" org-schedule (not (org-before-first-heading-p))]
20992 ["Deadline" org-deadline (not (org-before-first-heading-p))]
20993 "--"
20994 ["Custom time format" org-toggle-time-stamp-overlays
20995 :style radio :selected org-display-custom-times]
20996 "--"
20997 ["Goto Calendar" org-goto-calendar t]
20998 ["Date from Calendar" org-date-from-calendar t]
20999 "--"
21000 ["Start/Restart Timer" org-timer-start t]
21001 ["Pause/Continue Timer" org-timer-pause-or-continue t]
21002 ["Stop Timer" org-timer-pause-or-continue :active t :keys "C-u C-c C-x ,"]
21003 ["Insert Timer String" org-timer t]
21004 ["Insert Timer Item" org-timer-item t])
21005 ("Logging work"
21006 ["Clock in" org-clock-in :active t :keys "C-c C-x C-i"]
21007 ["Switch task" (lambda () (interactive) (org-clock-in '(4))) :active t :keys "C-u C-c C-x C-i"]
21008 ["Clock out" org-clock-out t]
21009 ["Clock cancel" org-clock-cancel t]
21010 "--"
21011 ["Mark as default task" org-clock-mark-default-task t]
21012 ["Clock in, mark as default" (lambda () (interactive) (org-clock-in '(16))) :active t :keys "C-u C-u C-c C-x C-i"]
21013 ["Goto running clock" org-clock-goto t]
21014 "--"
21015 ["Display times" org-clock-display t]
21016 ["Create clock table" org-clock-report t]
21017 "--"
21018 ["Record DONE time"
21019 (progn (setq org-log-done (not org-log-done))
21020 (message "Switching to %s will %s record a timestamp"
21021 (car org-done-keywords)
21022 (if org-log-done "automatically" "not")))
21023 :style toggle :selected org-log-done])
21024 "--"
21025 ["Agenda Command..." org-agenda t]
21026 ["Set Restriction Lock" org-agenda-set-restriction-lock t]
21027 ("File List for Agenda")
21028 ("Special views current file"
21029 ["TODO Tree" org-show-todo-tree t]
21030 ["Check Deadlines" org-check-deadlines t]
21031 ["Timeline" org-timeline t]
21032 ["Tags/Property tree" org-match-sparse-tree t])
21033 "--"
21034 ["Export/Publish..." org-export-dispatch t]
21035 ("LaTeX"
21036 ["Org CDLaTeX mode" org-cdlatex-mode :style toggle
21037 :selected org-cdlatex-mode]
21038 ["Insert Environment" cdlatex-environment (fboundp 'cdlatex-environment)]
21039 ["Insert math symbol" cdlatex-math-symbol (fboundp 'cdlatex-math-symbol)]
21040 ["Modify math symbol" org-cdlatex-math-modify
21041 (org-inside-LaTeX-fragment-p)]
21042 ["Insert citation" org-reftex-citation t]
21043 "--"
21044 ["Template for BEAMER" (org-beamer-insert-options-template) t])
21045 "--"
21046 ("MobileOrg"
21047 ["Push Files and Views" org-mobile-push t]
21048 ["Get Captured and Flagged" org-mobile-pull t]
21049 ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "C-c a ?"]
21050 "--"
21051 ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
21052 "--"
21053 ("Documentation"
21054 ["Show Version" org-version t]
21055 ["Info Documentation" org-info t])
21056 ("Customize"
21057 ["Browse Org Group" org-customize t]
21058 "--"
21059 ["Expand This Menu" org-create-customize-menu
21060 (fboundp 'customize-menu-create)])
21061 ["Send bug report" org-submit-bug-report t]
21062 "--"
21063 ("Refresh/Reload"
21064 ["Refresh setup current buffer" org-mode-restart t]
21065 ["Reload Org (after update)" org-reload t]
21066 ["Reload Org uncompiled" (org-reload t) :active t :keys "C-u C-c C-x !"])
21069 (defun org-info (&optional node)
21070 "Read documentation for Org-mode in the info system.
21071 With optional NODE, go directly to that node."
21072 (interactive)
21073 (info (format "(org)%s" (or node ""))))
21075 ;;;###autoload
21076 (defun org-submit-bug-report ()
21077 "Submit a bug report on Org-mode via mail.
21079 Don't hesitate to report any problems or inaccurate documentation.
21081 If you don't have setup sending mail from (X)Emacs, please copy the
21082 output buffer into your mail program, as it gives us important
21083 information about your Org-mode version and configuration."
21084 (interactive)
21085 (require 'reporter)
21086 (org-load-modules-maybe)
21087 (org-require-autoloaded-modules)
21088 (let ((reporter-prompt-for-summary-p "Bug report subject: "))
21089 (reporter-submit-bug-report
21090 "emacs-orgmode@gnu.org"
21091 (org-version nil 'full)
21092 (let (list)
21093 (save-window-excursion
21094 (org-pop-to-buffer-same-window (get-buffer-create "*Warn about privacy*"))
21095 (delete-other-windows)
21096 (erase-buffer)
21097 (insert "You are about to submit a bug report to the Org-mode mailing list.
21099 We would like to add your full Org-mode and Outline configuration to the
21100 bug report. This greatly simplifies the work of the maintainer and
21101 other experts on the mailing list.
21103 HOWEVER, some variables you have customized may contain private
21104 information. The names of customers, colleagues, or friends, might
21105 appear in the form of file names, tags, todo states, or search strings.
21106 If you answer yes to the prompt, you might want to check and remove
21107 such private information before sending the email.")
21108 (add-text-properties (point-min) (point-max) '(face org-warning))
21109 (when (yes-or-no-p "Include your Org-mode configuration ")
21110 (mapatoms
21111 (lambda (v)
21112 (and (boundp v)
21113 (string-match "\\`\\(org-\\|outline-\\)" (symbol-name v))
21114 (or (and (symbol-value v)
21115 (string-match "\\(-hook\\|-function\\)\\'" (symbol-name v)))
21116 (and
21117 (get v 'custom-type) (get v 'standard-value)
21118 (not (equal (symbol-value v) (eval (car (get v 'standard-value)))))))
21119 (push v list)))))
21120 (kill-buffer (get-buffer "*Warn about privacy*"))
21121 list))
21122 nil nil
21123 "Remember to cover the basics, that is, what you expected to happen and
21124 what in fact did happen. You don't know how to make a good report? See
21126 http://orgmode.org/manual/Feedback.html#Feedback
21128 Your bug report will be posted to the Org-mode mailing list.
21129 ------------------------------------------------------------------------")
21130 (save-excursion
21131 (if (re-search-backward "^\\(Subject: \\)Org-mode version \\(.*?\\);[ \t]*\\(.*\\)" nil t)
21132 (replace-match "\\1Bug: \\3 [\\2]")))))
21135 (defun org-install-agenda-files-menu ()
21136 (let ((bl (buffer-list)))
21137 (save-excursion
21138 (while bl
21139 (set-buffer (pop bl))
21140 (if (derived-mode-p 'org-mode) (setq bl nil)))
21141 (when (derived-mode-p 'org-mode)
21142 (easy-menu-change
21143 '("Org") "File List for Agenda"
21144 (append
21145 (list
21146 ["Edit File List" (org-edit-agenda-file-list) t]
21147 ["Add/Move Current File to Front of List" org-agenda-file-to-front t]
21148 ["Remove Current File from List" org-remove-file t]
21149 ["Cycle through agenda files" org-cycle-agenda-files t]
21150 ["Occur in all agenda files" org-occur-in-agenda-files t]
21151 "--")
21152 (mapcar 'org-file-menu-entry (org-agenda-files t))))))))
21154 ;;;; Documentation
21156 (defun org-require-autoloaded-modules ()
21157 (interactive)
21158 (mapc 'require
21159 '(org-agenda org-archive org-attach org-clock org-colview org-id
21160 org-table org-timer)))
21162 ;;;###autoload
21163 (defun org-reload (&optional uncompiled)
21164 "Reload all org lisp files.
21165 With prefix arg UNCOMPILED, load the uncompiled versions."
21166 (interactive "P")
21167 (require 'loadhist)
21168 (let* ((org-dir (org-find-library-dir "org"))
21169 (contrib-dir (or (org-find-library-dir "org-contribdir") org-dir))
21170 (feature-re "^\\(org\\|ob\\|ox\\)\\(-.*\\)?")
21171 (remove-re (mapconcat 'identity
21172 (mapcar (lambda (f) (concat "^" f "$"))
21173 (list (if (featurep 'xemacs)
21174 "org-colview"
21175 "org-colview-xemacs")
21176 "org" "org-loaddefs" "org-version"))
21177 "\\|"))
21178 (feats (delete-dups
21179 (mapcar 'file-name-sans-extension
21180 (mapcar 'file-name-nondirectory
21181 (delq nil
21182 (mapcar 'feature-file
21183 features))))))
21184 (lfeat (append
21185 (sort
21186 (setq feats
21187 (delq nil (mapcar
21188 (lambda (f)
21189 (if (and (string-match feature-re f)
21190 (not (string-match remove-re f)))
21191 f nil))
21192 feats)))
21193 'string-lessp)
21194 (list "org-version" "org")))
21195 (load-suffixes (when (boundp 'load-suffixes) load-suffixes))
21196 (load-suffixes (if uncompiled (reverse load-suffixes) load-suffixes))
21197 load-uncore load-misses)
21198 (setq load-misses
21199 (delq 't
21200 (mapcar (lambda (f)
21201 (or (org-load-noerror-mustsuffix (concat org-dir f))
21202 (and (string= org-dir contrib-dir)
21203 (org-load-noerror-mustsuffix (concat contrib-dir f)))
21204 (and (org-load-noerror-mustsuffix (concat (org-find-library-dir f) f))
21205 (add-to-list 'load-uncore f 'append)
21208 lfeat)))
21209 (if load-uncore
21210 (message "The following feature%s found in load-path, please check if that's correct:\n%s"
21211 (if (> (length load-uncore) 1) "s were" " was") load-uncore))
21212 (if load-misses
21213 (message "Some error occurred while reloading Org feature%s\n%s\nPlease check *Messages*!\n%s"
21214 (if (> (length load-misses) 1) "s" "") load-misses (org-version nil 'full))
21215 (message "Successfully reloaded Org\n%s" (org-version nil 'full)))))
21217 ;;;###autoload
21218 (defun org-customize ()
21219 "Call the customize function with org as argument."
21220 (interactive)
21221 (org-load-modules-maybe)
21222 (org-require-autoloaded-modules)
21223 (customize-browse 'org))
21225 (defun org-create-customize-menu ()
21226 "Create a full customization menu for Org-mode, insert it into the menu."
21227 (interactive)
21228 (org-load-modules-maybe)
21229 (org-require-autoloaded-modules)
21230 (if (fboundp 'customize-menu-create)
21231 (progn
21232 (easy-menu-change
21233 '("Org") "Customize"
21234 `(["Browse Org group" org-customize t]
21235 "--"
21236 ,(customize-menu-create 'org)
21237 ["Set" Custom-set t]
21238 ["Save" Custom-save t]
21239 ["Reset to Current" Custom-reset-current t]
21240 ["Reset to Saved" Custom-reset-saved t]
21241 ["Reset to Standard Settings" Custom-reset-standard t]))
21242 (message "\"Org\"-menu now contains full customization menu"))
21243 (error "Cannot expand menu (outdated version of cus-edit.el)")))
21245 ;;;; Miscellaneous stuff
21247 ;;; Generally useful functions
21249 (defun org-get-at-bol (property)
21250 "Get text property PROPERTY at beginning of line."
21251 (get-text-property (point-at-bol) property))
21253 (defun org-find-text-property-in-string (prop s)
21254 "Return the first non-nil value of property PROP in string S."
21255 (or (get-text-property 0 prop s)
21256 (get-text-property (or (next-single-property-change 0 prop s) 0)
21257 prop s)))
21259 (defun org-display-warning (message) ;; Copied from Emacs-Muse
21260 "Display the given MESSAGE as a warning."
21261 (if (fboundp 'display-warning)
21262 (display-warning 'org message
21263 (if (featurep 'xemacs) 'warning :warning))
21264 (let ((buf (get-buffer-create "*Org warnings*")))
21265 (with-current-buffer buf
21266 (goto-char (point-max))
21267 (insert "Warning (Org): " message)
21268 (unless (bolp)
21269 (newline)))
21270 (display-buffer buf)
21271 (sit-for 0))))
21273 (defun org-eval (form)
21274 "Eval FORM and return result."
21275 (condition-case error
21276 (eval form)
21277 (error (format "%%![Error: %s]" error))))
21279 (defun org-in-clocktable-p ()
21280 "Check if the cursor is in a clocktable."
21281 (let ((pos (point)) start)
21282 (save-excursion
21283 (end-of-line 1)
21284 (and (re-search-backward "^[ \t]*#\\+BEGIN:[ \t]+clocktable" nil t)
21285 (setq start (match-beginning 0))
21286 (re-search-forward "^[ \t]*#\\+END:.*" nil t)
21287 (>= (match-end 0) pos)
21288 start))))
21290 (defun org-in-commented-line ()
21291 "Is point in a line starting with `#'?"
21292 (equal (char-after (point-at-bol)) ?#))
21294 (defun org-in-indented-comment-line ()
21295 "Is point in a line starting with `#' after some white space?"
21296 (save-excursion
21297 (save-match-data
21298 (goto-char (point-at-bol))
21299 (looking-at "[ \t]*#"))))
21301 (defun org-in-verbatim-emphasis ()
21302 (save-match-data
21303 (and (org-in-regexp org-emph-re 2)
21304 (>= (point) (match-beginning 3))
21305 (<= (point) (match-end 4))
21306 (member (match-string 3) '("=" "~")))))
21308 (defun org-goto-marker-or-bmk (marker &optional bookmark)
21309 "Go to MARKER, widen if necessary. When marker is not live, try BOOKMARK."
21310 (if (and marker (marker-buffer marker)
21311 (buffer-live-p (marker-buffer marker)))
21312 (progn
21313 (org-pop-to-buffer-same-window (marker-buffer marker))
21314 (if (or (> marker (point-max)) (< marker (point-min)))
21315 (widen))
21316 (goto-char marker)
21317 (org-show-context 'org-goto))
21318 (if bookmark
21319 (bookmark-jump bookmark)
21320 (error "Cannot find location"))))
21322 (defun org-quote-csv-field (s)
21323 "Quote field for inclusion in CSV material."
21324 (if (string-match "[\",]" s)
21325 (concat "\"" (mapconcat 'identity (split-string s "\"") "\"\"") "\"")
21328 (defun org-force-self-insert (N)
21329 "Needed to enforce self-insert under remapping."
21330 (interactive "p")
21331 (self-insert-command N))
21333 (defun org-string-width (s)
21334 "Compute width of string, ignoring invisible characters.
21335 This ignores character with invisibility property `org-link', and also
21336 characters with property `org-cwidth', because these will become invisible
21337 upon the next fontification round."
21338 (let (b l)
21339 (when (or (eq t buffer-invisibility-spec)
21340 (assq 'org-link buffer-invisibility-spec))
21341 (while (setq b (text-property-any 0 (length s)
21342 'invisible 'org-link s))
21343 (setq s (concat (substring s 0 b)
21344 (substring s (or (next-single-property-change
21345 b 'invisible s) (length s)))))))
21346 (while (setq b (text-property-any 0 (length s) 'org-cwidth t s))
21347 (setq s (concat (substring s 0 b)
21348 (substring s (or (next-single-property-change
21349 b 'org-cwidth s) (length s))))))
21350 (setq l (string-width s) b -1)
21351 (while (setq b (text-property-any (1+ b) (length s) 'org-dwidth t s))
21352 (setq l (- l (get-text-property b 'org-dwidth-n s))))
21355 (defun org-shorten-string (s maxlength)
21356 "Shorten string S so tht it is no longer than MAXLENGTH characters.
21357 If the string is shorter or has length MAXLENGTH, just return the
21358 original string. If it is longer, the functions finds a space in the
21359 string, breaks this string off at that locations and adds three dots
21360 as ellipsis. Including the ellipsis, the string will not be longer
21361 than MAXLENGTH. If finding a good breaking point in the string does
21362 not work, the string is just chopped off in the middle of a word
21363 if necessary."
21364 (if (<= (length s) maxlength)
21366 (let* ((n (max (- maxlength 4) 1))
21367 (re (concat "\\`\\(.\\{1," (int-to-string n) "\\}[^ ]\\)\\([ ]\\|\\'\\)")))
21368 (if (string-match re s)
21369 (concat (match-string 1 s) "...")
21370 (concat (substring s 0 (max (- maxlength 3) 0)) "...")))))
21372 (defun org-get-indentation (&optional line)
21373 "Get the indentation of the current line, interpreting tabs.
21374 When LINE is given, assume it represents a line and compute its indentation."
21375 (if line
21376 (if (string-match "^ *" (org-remove-tabs line))
21377 (match-end 0))
21378 (save-excursion
21379 (beginning-of-line 1)
21380 (skip-chars-forward " \t")
21381 (current-column))))
21383 (defun org-get-string-indentation (s)
21384 "What indentation has S due to SPACE and TAB at the beginning of the string?"
21385 (let ((n -1) (i 0) (w tab-width) c)
21386 (catch 'exit
21387 (while (< (setq n (1+ n)) (length s))
21388 (setq c (aref s n))
21389 (cond ((= c ?\ ) (setq i (1+ i)))
21390 ((= c ?\t) (setq i (* (/ (+ w i) w) w)))
21391 (t (throw 'exit t)))))
21394 (defun org-remove-tabs (s &optional width)
21395 "Replace tabulators in S with spaces.
21396 Assumes that s is a single line, starting in column 0."
21397 (setq width (or width tab-width))
21398 (while (string-match "\t" s)
21399 (setq s (replace-match
21400 (make-string
21401 (- (* width (/ (+ (match-beginning 0) width) width))
21402 (match-beginning 0)) ?\ )
21403 t t s)))
21406 (defun org-fix-indentation (line ind)
21407 "Fix indentation in LINE.
21408 IND is a cons cell with target and minimum indentation.
21409 If the current indentation in LINE is smaller than the minimum,
21410 leave it alone. If it is larger than ind, set it to the target."
21411 (let* ((l (org-remove-tabs line))
21412 (i (org-get-indentation l))
21413 (i1 (car ind)) (i2 (cdr ind)))
21414 (if (>= i i2) (setq l (substring line i2)))
21415 (if (> i1 0)
21416 (concat (make-string i1 ?\ ) l)
21417 l)))
21419 (defun org-remove-indentation (code &optional n)
21420 "Remove the maximum common indentation from the lines in CODE.
21421 N may optionally be the number of spaces to remove."
21422 (with-temp-buffer
21423 (insert code)
21424 (org-do-remove-indentation n)
21425 (buffer-string)))
21427 (defun org-do-remove-indentation (&optional n)
21428 "Remove the maximum common indentation from the buffer."
21429 (untabify (point-min) (point-max))
21430 (let ((min 10000) re)
21431 (if n
21432 (setq min n)
21433 (goto-char (point-min))
21434 (while (re-search-forward "^ *[^ \n]" nil t)
21435 (setq min (min min (1- (- (match-end 0) (match-beginning 0)))))))
21436 (unless (or (= min 0) (= min 10000))
21437 (setq re (format "^ \\{%d\\}" min))
21438 (goto-char (point-min))
21439 (while (re-search-forward re nil t)
21440 (replace-match "")
21441 (end-of-line 1))
21442 min)))
21444 (defun org-fill-template (template alist)
21445 "Find each %key of ALIST in TEMPLATE and replace it."
21446 (let ((case-fold-search nil)
21447 entry key value)
21448 (setq alist (sort (copy-sequence alist)
21449 (lambda (a b) (< (length (car a)) (length (car b))))))
21450 (while (setq entry (pop alist))
21451 (setq template
21452 (replace-regexp-in-string
21453 (concat "%" (regexp-quote (car entry)))
21454 (or (cdr entry) "") template t t)))
21455 template))
21457 (defun org-base-buffer (buffer)
21458 "Return the base buffer of BUFFER, if it has one. Else return the buffer."
21459 (if (not buffer)
21460 buffer
21461 (or (buffer-base-buffer buffer)
21462 buffer)))
21464 (defun org-trim (s)
21465 "Remove whitespace at beginning and end of string."
21466 (if (string-match "\\`[ \t\n\r]+" s) (setq s (replace-match "" t t s)))
21467 (if (string-match "[ \t\n\r]+\\'" s) (setq s (replace-match "" t t s)))
21470 (defun org-wrap (string &optional width lines)
21471 "Wrap string to either a number of lines, or a width in characters.
21472 If WIDTH is non-nil, the string is wrapped to that width, however many lines
21473 that costs. If there is a word longer than WIDTH, the text is actually
21474 wrapped to the length of that word.
21475 IF WIDTH is nil and LINES is non-nil, the string is forced into at most that
21476 many lines, whatever width that takes.
21477 The return value is a list of lines, without newlines at the end."
21478 (let* ((words (org-split-string string "[ \t\n]+"))
21479 (maxword (apply 'max (mapcar 'org-string-width words)))
21480 w ll)
21481 (cond (width
21482 (org-do-wrap words (max maxword width)))
21483 (lines
21484 (setq w maxword)
21485 (setq ll (org-do-wrap words maxword))
21486 (if (<= (length ll) lines)
21488 (setq ll words)
21489 (while (> (length ll) lines)
21490 (setq w (1+ w))
21491 (setq ll (org-do-wrap words w)))
21492 ll))
21493 (t (error "Cannot wrap this")))))
21495 (defun org-do-wrap (words width)
21496 "Create lines of maximum width WIDTH (in characters) from word list WORDS."
21497 (let (lines line)
21498 (while words
21499 (setq line (pop words))
21500 (while (and words (< (+ (length line) (length (car words))) width))
21501 (setq line (concat line " " (pop words))))
21502 (setq lines (push line lines)))
21503 (nreverse lines)))
21505 (defun org-split-string (string &optional separators)
21506 "Splits STRING into substrings at SEPARATORS.
21507 No empty strings are returned if there are matches at the beginning
21508 and end of string."
21509 (let ((rexp (or separators "[ \f\t\n\r\v]+"))
21510 (start 0)
21511 notfirst
21512 (list nil))
21513 (while (and (string-match rexp string
21514 (if (and notfirst
21515 (= start (match-beginning 0))
21516 (< start (length string)))
21517 (1+ start) start))
21518 (< (match-beginning 0) (length string)))
21519 (setq notfirst t)
21520 (or (eq (match-beginning 0) 0)
21521 (and (eq (match-beginning 0) (match-end 0))
21522 (eq (match-beginning 0) start))
21523 (setq list
21524 (cons (substring string start (match-beginning 0))
21525 list)))
21526 (setq start (match-end 0)))
21527 (or (eq start (length string))
21528 (setq list
21529 (cons (substring string start)
21530 list)))
21531 (nreverse list)))
21533 (defun org-quote-vert (s)
21534 "Replace \"|\" with \"\\vert\"."
21535 (while (string-match "|" s)
21536 (setq s (replace-match "\\vert" t t s)))
21539 (defun org-uuidgen-p (s)
21540 "Is S an ID created by UUIDGEN?"
21541 (string-match "\\`[0-9a-f]\\{8\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{12\\}\\'" (downcase s)))
21543 (defun org-in-src-block-p (&optional inside)
21544 "Whether point is in a code source block.
21545 When INSIDE is non-nil, don't consider we are within a src block
21546 when point is at #+BEGIN_SRC or #+END_SRC."
21547 (let ((case-fold-search t) ov)
21548 (or (and (setq ov (overlays-at (point)))
21549 (memq 'org-block-background
21550 (overlay-properties (car ov))))
21551 (and (not inside)
21552 (save-match-data
21553 (save-excursion
21554 (beginning-of-line)
21555 (looking-at ".*#\\+\\(begin\\|end\\)_src")))))))
21557 (defun org-context ()
21558 "Return a list of contexts of the current cursor position.
21559 If several contexts apply, all are returned.
21560 Each context entry is a list with a symbol naming the context, and
21561 two positions indicating start and end of the context. Possible
21562 contexts are:
21564 :headline anywhere in a headline
21565 :headline-stars on the leading stars in a headline
21566 :todo-keyword on a TODO keyword (including DONE) in a headline
21567 :tags on the TAGS in a headline
21568 :priority on the priority cookie in a headline
21569 :item on the first line of a plain list item
21570 :item-bullet on the bullet/number of a plain list item
21571 :checkbox on the checkbox in a plain list item
21572 :table in an org-mode table
21573 :table-special on a special filed in a table
21574 :table-table in a table.el table
21575 :clocktable in a clocktable
21576 :src-block in a source block
21577 :link on a hyperlink
21578 :keyword on a keyword: SCHEDULED, DEADLINE, CLOSE, COMMENT, QUOTE.
21579 :target on a <<target>>
21580 :radio-target on a <<<radio-target>>>
21581 :latex-fragment on a LaTeX fragment
21582 :latex-preview on a LaTeX fragment with overlaid preview image
21584 This function expects the position to be visible because it uses font-lock
21585 faces as a help to recognize the following contexts: :table-special, :link,
21586 and :keyword."
21587 (let* ((f (get-text-property (point) 'face))
21588 (faces (if (listp f) f (list f)))
21589 (case-fold-search t)
21590 (p (point)) clist o)
21591 ;; First the large context
21592 (cond
21593 ((org-at-heading-p t)
21594 (push (list :headline (point-at-bol) (point-at-eol)) clist)
21595 (when (progn
21596 (beginning-of-line 1)
21597 (looking-at org-todo-line-tags-regexp))
21598 (push (org-point-in-group p 1 :headline-stars) clist)
21599 (push (org-point-in-group p 2 :todo-keyword) clist)
21600 (push (org-point-in-group p 4 :tags) clist))
21601 (goto-char p)
21602 (skip-chars-backward "^[\n\r \t") (or (bobp) (backward-char 1))
21603 (if (looking-at "\\[#[A-Z0-9]\\]")
21604 (push (org-point-in-group p 0 :priority) clist)))
21606 ((org-at-item-p)
21607 (push (org-point-in-group p 2 :item-bullet) clist)
21608 (push (list :item (point-at-bol)
21609 (save-excursion (org-end-of-item) (point)))
21610 clist)
21611 (and (org-at-item-checkbox-p)
21612 (push (org-point-in-group p 0 :checkbox) clist)))
21614 ((org-at-table-p)
21615 (push (list :table (org-table-begin) (org-table-end)) clist)
21616 (if (memq 'org-formula faces)
21617 (push (list :table-special
21618 (previous-single-property-change p 'face)
21619 (next-single-property-change p 'face)) clist)))
21620 ((org-at-table-p 'any)
21621 (push (list :table-table) clist)))
21622 (goto-char p)
21624 (let ((case-fold-search t))
21625 ;; New the "medium" contexts: clocktables, source blocks
21626 (cond ((org-in-clocktable-p)
21627 (push (list :clocktable
21628 (and (or (looking-at "#\\+BEGIN: clocktable")
21629 (search-backward "#+BEGIN: clocktable" nil t))
21630 (match-beginning 0))
21631 (and (re-search-forward "#\\+END:?" nil t)
21632 (match-end 0))) clist))
21633 ((org-in-src-block-p)
21634 (push (list :src-block
21635 (and (or (looking-at "#\\+BEGIN_SRC")
21636 (search-backward "#+BEGIN_SRC" nil t))
21637 (match-beginning 0))
21638 (and (search-forward "#+END_SRC" nil t)
21639 (match-beginning 0))) clist))))
21640 (goto-char p)
21642 ;; Now the small context
21643 (cond
21644 ((org-at-timestamp-p)
21645 (push (org-point-in-group p 0 :timestamp) clist))
21646 ((memq 'org-link faces)
21647 (push (list :link
21648 (previous-single-property-change p 'face)
21649 (next-single-property-change p 'face)) clist))
21650 ((memq 'org-special-keyword faces)
21651 (push (list :keyword
21652 (previous-single-property-change p 'face)
21653 (next-single-property-change p 'face)) clist))
21654 ((org-at-target-p)
21655 (push (org-point-in-group p 0 :target) clist)
21656 (goto-char (1- (match-beginning 0)))
21657 (if (looking-at org-radio-target-regexp)
21658 (push (org-point-in-group p 0 :radio-target) clist))
21659 (goto-char p))
21660 ((setq o (car (delq nil
21661 (mapcar
21662 (lambda (x)
21663 (if (memq x org-latex-fragment-image-overlays) x))
21664 (overlays-at (point))))))
21665 (push (list :latex-fragment
21666 (overlay-start o) (overlay-end o)) clist)
21667 (push (list :latex-preview
21668 (overlay-start o) (overlay-end o)) clist))
21669 ((org-inside-LaTeX-fragment-p)
21670 ;; FIXME: positions wrong.
21671 (push (list :latex-fragment (point) (point)) clist)))
21673 (setq clist (nreverse (delq nil clist)))
21674 clist))
21676 ;; FIXME: Compare with at-regexp-p Do we need both?
21677 (defun org-in-regexp (re &optional nlines visually)
21678 "Check if point is inside a match of regexp.
21679 Normally only the current line is checked, but you can include NLINES extra
21680 lines both before and after point into the search.
21681 If VISUALLY is set, require that the cursor is not after the match but
21682 really on, so that the block visually is on the match."
21683 (catch 'exit
21684 (let ((pos (point))
21685 (eol (point-at-eol (+ 1 (or nlines 0))))
21686 (inc (if visually 1 0)))
21687 (save-excursion
21688 (beginning-of-line (- 1 (or nlines 0)))
21689 (while (re-search-forward re eol t)
21690 (if (and (<= (match-beginning 0) pos)
21691 (>= (+ inc (match-end 0)) pos))
21692 (throw 'exit (cons (match-beginning 0) (match-end 0)))))))))
21694 (defun org-at-regexp-p (regexp)
21695 "Is point inside a match of REGEXP in the current line?"
21696 (catch 'exit
21697 (save-excursion
21698 (let ((pos (point)) (end (point-at-eol)))
21699 (beginning-of-line 1)
21700 (while (re-search-forward regexp end t)
21701 (if (and (<= (match-beginning 0) pos)
21702 (>= (match-end 0) pos))
21703 (throw 'exit t)))
21704 nil))))
21706 (defun org-between-regexps-p (start-re end-re &optional lim-up lim-down)
21707 "Non-nil when point is between matches of START-RE and END-RE.
21709 Also return a non-nil value when point is on one of the matches.
21711 Optional arguments LIM-UP and LIM-DOWN bound the search; they are
21712 buffer positions. Default values are the positions of headlines
21713 surrounding the point.
21715 The functions returns a cons cell whose car (resp. cdr) is the
21716 position before START-RE (resp. after END-RE)."
21717 (save-match-data
21718 (let ((pos (point))
21719 (limit-up (or lim-up (save-excursion (outline-previous-heading))))
21720 (limit-down (or lim-down (save-excursion (outline-next-heading))))
21721 beg end)
21722 (save-excursion
21723 ;; Point is on a block when on START-RE or if START-RE can be
21724 ;; found before it...
21725 (and (or (org-at-regexp-p start-re)
21726 (re-search-backward start-re limit-up t))
21727 (setq beg (match-beginning 0))
21728 ;; ... and END-RE after it...
21729 (goto-char (match-end 0))
21730 (re-search-forward end-re limit-down t)
21731 (> (setq end (match-end 0)) pos)
21732 ;; ... without another START-RE in-between.
21733 (goto-char (match-beginning 0))
21734 (not (re-search-backward start-re (1+ beg) t))
21735 ;; Return value.
21736 (cons beg end))))))
21738 (defun org-in-block-p (names)
21739 "Non-nil when point belongs to a block whose name belongs to NAMES.
21741 NAMES is a list of strings containing names of blocks.
21743 Return first block name matched, or nil. Beware that in case of
21744 nested blocks, the returned name may not belong to the closest
21745 block from point."
21746 (save-match-data
21747 (catch 'exit
21748 (let ((case-fold-search t)
21749 (lim-up (save-excursion (outline-previous-heading)))
21750 (lim-down (save-excursion (outline-next-heading))))
21751 (mapc (lambda (name)
21752 (let ((n (regexp-quote name)))
21753 (when (org-between-regexps-p
21754 (concat "^[ \t]*#\\+begin_" n)
21755 (concat "^[ \t]*#\\+end_" n)
21756 lim-up lim-down)
21757 (throw 'exit n))))
21758 names))
21759 nil)))
21761 (defun org-in-drawer-p ()
21762 "Non-nil if point is within a drawer.
21763 If point is within a drawer, return it, as parsed data."
21764 (let ((element (save-match-data (org-element-at-point))))
21765 (while (and element (not (memq (org-element-type element)
21766 '(drawer property-drawer))))
21767 (setq element (org-element-property :parent element)))
21768 element))
21770 (defun org-occur-in-agenda-files (regexp &optional nlines)
21771 "Call `multi-occur' with buffers for all agenda files."
21772 (interactive "sOrg-files matching: \np")
21773 (let* ((files (org-agenda-files))
21774 (tnames (mapcar 'file-truename files))
21775 (extra org-agenda-text-search-extra-files)
21777 (when (eq (car extra) 'agenda-archives)
21778 (setq extra (cdr extra))
21779 (setq files (org-add-archive-files files)))
21780 (while (setq f (pop extra))
21781 (unless (member (file-truename f) tnames)
21782 (add-to-list 'files f 'append)
21783 (add-to-list 'tnames (file-truename f) 'append)))
21784 (multi-occur
21785 (mapcar (lambda (x)
21786 (with-current-buffer
21787 (or (get-file-buffer x) (find-file-noselect x))
21788 (widen)
21789 (current-buffer)))
21790 files)
21791 regexp)))
21793 (if (boundp 'occur-mode-find-occurrence-hook)
21794 ;; Emacs 23
21795 (add-hook 'occur-mode-find-occurrence-hook
21796 (lambda ()
21797 (when (derived-mode-p 'org-mode)
21798 (org-reveal))))
21799 ;; Emacs 22
21800 (defadvice occur-mode-goto-occurrence
21801 (after org-occur-reveal activate)
21802 (and (derived-mode-p 'org-mode) (org-reveal)))
21803 (defadvice occur-mode-goto-occurrence-other-window
21804 (after org-occur-reveal activate)
21805 (and (derived-mode-p 'org-mode) (org-reveal)))
21806 (defadvice occur-mode-display-occurrence
21807 (after org-occur-reveal activate)
21808 (when (derived-mode-p 'org-mode)
21809 (let ((pos (occur-mode-find-occurrence)))
21810 (with-current-buffer (marker-buffer pos)
21811 (save-excursion
21812 (goto-char pos)
21813 (org-reveal)))))))
21815 (defun org-occur-link-in-agenda-files ()
21816 "Create a link and search for it in the agendas.
21817 The link is not stored in `org-stored-links', it is just created
21818 for the search purpose."
21819 (interactive)
21820 (let ((link (condition-case nil
21821 (org-store-link nil)
21822 (error "Unable to create a link to here"))))
21823 (org-occur-in-agenda-files (regexp-quote link))))
21825 (defun org-reverse-string (string)
21826 "Return the reverse of STRING."
21827 (apply 'string (reverse (string-to-list string))))
21829 (defun org-uniquify-alist (alist)
21830 "Merge elements of ALIST with the same key.
21832 For example, in this alist:
21834 \(org-uniquify-alist '((a 1) (b 2) (a 3)))
21835 => '((a 1 3) (b 2))
21837 merge (a 1) and (a 3) into (a 1 3).
21839 The function returns the new ALIST."
21840 (let (rtn)
21841 (mapc
21842 (lambda (e)
21843 (let (n)
21844 (if (not (assoc (car e) rtn))
21845 (push e rtn)
21846 (setq n (cons (car e) (append (cdr (assoc (car e) rtn)) (cdr e))))
21847 (setq rtn (assq-delete-all (car e) rtn))
21848 (push n rtn))))
21849 alist)
21850 rtn))
21852 (defun org-delete-all (elts list)
21853 "Remove all elements in ELTS from LIST."
21854 (while elts
21855 (setq list (delete (pop elts) list)))
21856 list)
21858 (defun org-count (cl-item cl-seq)
21859 "Count the number of occurrences of ITEM in SEQ.
21860 Taken from `count' in cl-seq.el with all keyword arguments removed."
21861 (let ((cl-end (length cl-seq)) (cl-start 0) (cl-count 0) cl-x)
21862 (when (consp cl-seq) (setq cl-seq (nthcdr cl-start cl-seq)))
21863 (while (< cl-start cl-end)
21864 (setq cl-x (if (consp cl-seq) (pop cl-seq) (aref cl-seq cl-start)))
21865 (if (equal cl-item cl-x) (setq cl-count (1+ cl-count)))
21866 (setq cl-start (1+ cl-start)))
21867 cl-count))
21869 (defun org-remove-if (predicate seq)
21870 "Remove everything from SEQ that fulfills PREDICATE."
21871 (let (res e)
21872 (while seq
21873 (setq e (pop seq))
21874 (if (not (funcall predicate e)) (push e res)))
21875 (nreverse res)))
21877 (defun org-remove-if-not (predicate seq)
21878 "Remove everything from SEQ that does not fulfill PREDICATE."
21879 (let (res e)
21880 (while seq
21881 (setq e (pop seq))
21882 (if (funcall predicate e) (push e res)))
21883 (nreverse res)))
21885 (defun org-reduce (cl-func cl-seq &rest cl-keys)
21886 "Reduce two-argument FUNCTION across SEQ.
21887 Taken from `reduce' in cl-seq.el with all keyword arguments but
21888 \":initial-value\" removed."
21889 (let ((cl-accum (cond ((memq :initial-value cl-keys)
21890 (cadr (memq :initial-value cl-keys)))
21891 (cl-seq (pop cl-seq))
21892 (t (funcall cl-func)))))
21893 (while cl-seq
21894 (setq cl-accum (funcall cl-func cl-accum (pop cl-seq))))
21895 cl-accum))
21897 (defun org-every (pred seq)
21898 "Return true if PREDICATE is true of every element of SEQ.
21899 Adapted from `every' in cl.el."
21900 (catch 'org-every
21901 (mapc (lambda (e) (unless (funcall pred e) (throw 'org-every nil))) seq)
21904 (defun org-some (pred seq)
21905 "Return true if PREDICATE is true of any element of SEQ.
21906 Adapted from `some' in cl.el."
21907 (catch 'org-some
21908 (mapc (lambda (e) (when (funcall pred e) (throw 'org-some t))) seq)
21909 nil))
21911 (defun org-back-over-empty-lines ()
21912 "Move backwards over whitespace, to the beginning of the first empty line.
21913 Returns the number of empty lines passed."
21914 (let ((pos (point)))
21915 (if (cdr (assoc 'heading org-blank-before-new-entry))
21916 (skip-chars-backward " \t\n\r")
21917 (unless (eobp)
21918 (forward-line -1)))
21919 (beginning-of-line 2)
21920 (goto-char (min (point) pos))
21921 (count-lines (point) pos)))
21923 (defun org-skip-whitespace ()
21924 (skip-chars-forward " \t\n\r"))
21926 (defun org-point-in-group (point group &optional context)
21927 "Check if POINT is in match-group GROUP.
21928 If CONTEXT is non-nil, return a list with CONTEXT and the boundaries of the
21929 match. If the match group does not exist or point is not inside it,
21930 return nil."
21931 (and (match-beginning group)
21932 (>= point (match-beginning group))
21933 (<= point (match-end group))
21934 (if context
21935 (list context (match-beginning group) (match-end group))
21936 t)))
21938 (defun org-switch-to-buffer-other-window (&rest args)
21939 "Switch to buffer in a second window on the current frame.
21940 In particular, do not allow pop-up frames.
21941 Returns the newly created buffer."
21942 (org-no-popups
21943 (apply 'switch-to-buffer-other-window args)))
21945 (defun org-combine-plists (&rest plists)
21946 "Create a single property list from all plists in PLISTS.
21947 The process starts by copying the first list, and then setting properties
21948 from the other lists. Settings in the last list are the most significant
21949 ones and overrule settings in the other lists."
21950 (let ((rtn (copy-sequence (pop plists)))
21951 p v ls)
21952 (while plists
21953 (setq ls (pop plists))
21954 (while ls
21955 (setq p (pop ls) v (pop ls))
21956 (setq rtn (plist-put rtn p v))))
21957 rtn))
21959 (defun org-replace-escapes (string table)
21960 "Replace %-escapes in STRING with values in TABLE.
21961 TABLE is an association list with keys like \"%a\" and string values.
21962 The sequences in STRING may contain normal field width and padding information,
21963 for example \"%-5s\". Replacements happen in the sequence given by TABLE,
21964 so values can contain further %-escapes if they are define later in TABLE."
21965 (let ((tbl (copy-alist table))
21966 (case-fold-search nil)
21967 (pchg 0)
21968 e re rpl)
21969 (while (setq e (pop tbl))
21970 (setq re (concat "%-?[0-9.]*" (substring (car e) 1)))
21971 (when (and (cdr e) (string-match re (cdr e)))
21972 (let ((sref (substring (cdr e) (match-beginning 0) (match-end 0)))
21973 (safe "SREF"))
21974 (add-text-properties 0 3 (list 'sref sref) safe)
21975 (setcdr e (replace-match safe t t (cdr e)))))
21976 (while (string-match re string)
21977 (setq rpl (format (concat (substring (match-string 0 string) 0 -1) "s")
21978 (cdr e)))
21979 (setq string (replace-match rpl t t string))))
21980 (while (setq pchg (next-property-change pchg string))
21981 (let ((sref (get-text-property pchg 'sref string)))
21982 (when (and sref (string-match "SREF" string pchg))
21983 (setq string (replace-match sref t t string)))))
21984 string))
21986 (defun org-sublist (list start end)
21987 "Return a section of LIST, from START to END.
21988 Counting starts at 1."
21989 (let (rtn (c start))
21990 (setq list (nthcdr (1- start) list))
21991 (while (and list (<= c end))
21992 (push (pop list) rtn)
21993 (setq c (1+ c)))
21994 (nreverse rtn)))
21996 (defun org-find-base-buffer-visiting (file)
21997 "Like `find-buffer-visiting' but always return the base buffer and
21998 not an indirect buffer."
21999 (let ((buf (or (get-file-buffer file)
22000 (find-buffer-visiting file))))
22001 (if buf
22002 (or (buffer-base-buffer buf) buf)
22003 nil)))
22005 (defun org-image-file-name-regexp (&optional extensions)
22006 "Return regexp matching the file names of images.
22007 If EXTENSIONS is given, only match these."
22008 (if (and (not extensions) (fboundp 'image-file-name-regexp))
22009 (image-file-name-regexp)
22010 (let ((image-file-name-extensions
22011 (or extensions
22012 '("png" "jpeg" "jpg" "gif" "tiff" "tif"
22013 "xbm" "xpm" "pbm" "pgm" "ppm"))))
22014 (concat "\\."
22015 (regexp-opt (nconc (mapcar 'upcase
22016 image-file-name-extensions)
22017 image-file-name-extensions)
22019 "\\'"))))
22021 (defun org-file-image-p (file &optional extensions)
22022 "Return non-nil if FILE is an image."
22023 (save-match-data
22024 (string-match (org-image-file-name-regexp extensions) file)))
22026 (defun org-get-cursor-date (&optional with-time)
22027 "Return the date at cursor in as a time.
22028 This works in the calendar and in the agenda, anywhere else it just
22029 returns the current time.
22030 If WITH-TIME is non-nil, returns the time of the event at point (in
22031 the agenda) or the current time of the day."
22032 (let (date day defd tp tm hod mod)
22033 (when with-time
22034 (setq tp (get-text-property (point) 'time))
22035 (when (and tp (string-match "\\([0-9][0-9]\\):\\([0-9][0-9]\\)" tp))
22036 (setq hod (string-to-number (match-string 1 tp))
22037 mod (string-to-number (match-string 2 tp))))
22038 (or tp (setq hod (nth 2 (decode-time (current-time)))
22039 mod (nth 1 (decode-time (current-time))))))
22040 (cond
22041 ((eq major-mode 'calendar-mode)
22042 (setq date (calendar-cursor-to-date)
22043 defd (encode-time 0 (or mod 0) (or hod 0)
22044 (nth 1 date) (nth 0 date) (nth 2 date))))
22045 ((eq major-mode 'org-agenda-mode)
22046 (setq day (get-text-property (point) 'day))
22047 (if day
22048 (setq date (calendar-gregorian-from-absolute day)
22049 defd (encode-time 0 (or mod 0) (or hod 0)
22050 (nth 1 date) (nth 0 date) (nth 2 date))))))
22051 (or defd (current-time))))
22053 (defun org-mark-subtree (&optional up)
22054 "Mark the current subtree.
22055 This puts point at the start of the current subtree, and mark at
22056 the end. If a numeric prefix UP is given, move up into the
22057 hierarchy of headlines by UP levels before marking the subtree."
22058 (interactive "P")
22059 (org-with-limited-levels
22060 (cond ((org-at-heading-p) (beginning-of-line))
22061 ((org-before-first-heading-p) (user-error "Not in a subtree"))
22062 (t (outline-previous-visible-heading 1))))
22063 (when up (while (and (> up 0) (org-up-heading-safe)) (decf up)))
22064 (if (org-called-interactively-p 'any)
22065 (call-interactively 'org-mark-element)
22066 (org-mark-element)))
22069 ;;; Indentation
22071 (defun org-indent-line ()
22072 "Indent line depending on context."
22073 (interactive)
22074 (let* ((pos (point))
22075 (itemp (org-at-item-p))
22076 (case-fold-search t)
22077 (org-drawer-regexp (or org-drawer-regexp "\000"))
22078 (inline-task-p (and (featurep 'org-inlinetask)
22079 (org-inlinetask-in-task-p)))
22080 (inline-re (and inline-task-p
22081 (org-inlinetask-outline-regexp)))
22082 column)
22083 (if (and orgstruct-is-++ (eq pos (point)))
22084 (let ((indent-line-function (cadadr (assoc 'indent-line-function org-fb-vars))))
22085 (indent-according-to-mode))
22086 (beginning-of-line 1)
22087 (cond
22088 ;; Headings
22089 ((looking-at org-outline-regexp) (setq column 0))
22090 ;; Footnote definition
22091 ((looking-at org-footnote-definition-re) (setq column 0))
22092 ;; Literal examples
22093 ((looking-at "[ \t]*:\\( \\|$\\)")
22094 (setq column (org-get-indentation))) ; do nothing
22095 ;; Lists
22096 ((ignore-errors (goto-char (org-in-item-p)))
22097 (setq column (if itemp
22098 (org-get-indentation)
22099 (org-list-item-body-column (point))))
22100 (goto-char pos))
22101 ;; Drawers
22102 ((and (looking-at "[ \t]*:END:")
22103 (save-excursion (re-search-backward org-drawer-regexp nil t)))
22104 (save-excursion
22105 (goto-char (1- (match-beginning 1)))
22106 (setq column (current-column))))
22107 ;; Special blocks
22108 ((and (looking-at "[ \t]*#\\+end_\\([a-z]+\\)")
22109 (save-excursion
22110 (re-search-backward
22111 (concat "^[ \t]*#\\+begin_" (downcase (match-string 1))) nil t)))
22112 (setq column (org-get-indentation (match-string 0))))
22113 ((and (not (looking-at "[ \t]*#\\+begin_"))
22114 (org-between-regexps-p "^[ \t]*#\\+begin_" "[ \t]*#\\+end_"))
22115 (save-excursion
22116 (re-search-backward "^[ \t]*#\\+begin_\\([a-z]+\\)" nil t))
22117 (setq column
22118 (cond ((equal (downcase (match-string 1)) "src")
22119 ;; src blocks: let `org-edit-src-exit' handle them
22120 (org-get-indentation))
22121 ((equal (downcase (match-string 1)) "example")
22122 (max (org-get-indentation)
22123 (org-get-indentation (match-string 0))))
22125 (org-get-indentation (match-string 0))))))
22126 ;; This line has nothing special, look at the previous relevant
22127 ;; line to compute indentation
22129 (beginning-of-line 0)
22130 (while (and (not (bobp))
22131 (not (looking-at org-table-line-regexp))
22132 (not (looking-at org-drawer-regexp))
22133 ;; When point started in an inline task, do not move
22134 ;; above task starting line.
22135 (not (and inline-task-p (looking-at inline-re)))
22136 ;; Skip drawers, blocks, empty lines, verbatim,
22137 ;; comments, tables, footnotes definitions, lists,
22138 ;; inline tasks.
22139 (or (and (looking-at "[ \t]*:END:")
22140 (re-search-backward org-drawer-regexp nil t))
22141 (and (looking-at "[ \t]*#\\+end_")
22142 (re-search-backward "[ \t]*#\\+begin_"nil t))
22143 (looking-at "[ \t]*[\n:#|]")
22144 (looking-at org-footnote-definition-re)
22145 (and (not inline-task-p)
22146 (featurep 'org-inlinetask)
22147 (org-inlinetask-in-task-p)
22148 (or (org-inlinetask-goto-beginning) t))))
22149 (beginning-of-line 0))
22150 (cond
22151 ;; There was a list item above.
22152 ((ignore-errors (goto-char (org-in-item-p)))
22153 (goto-char (org-list-get-top-point (org-list-struct)))
22154 (setq column (org-get-indentation)))
22155 ;; There was an heading above.
22156 ((looking-at "\\*+[ \t]+")
22157 (if (not org-adapt-indentation)
22158 (setq column 0)
22159 (goto-char (match-end 0))
22160 (setq column (current-column))))
22161 ;; A drawer had started and is unfinished
22162 ((looking-at org-drawer-regexp)
22163 (goto-char (1- (match-beginning 1)))
22164 (setq column (current-column)))
22165 ;; Else, nothing noticeable found: get indentation and go on.
22166 (t (setq column (org-get-indentation))))))
22167 ;; Now apply indentation and move cursor accordingly
22168 (goto-char pos)
22169 (if (<= (current-column) (current-indentation))
22170 (org-indent-line-to column)
22171 (save-excursion (org-indent-line-to column)))
22172 ;; Special polishing for properties, see `org-property-format'
22173 (setq column (current-column))
22174 (beginning-of-line 1)
22175 (if (looking-at org-property-re)
22176 (replace-match (concat (match-string 4)
22177 (format org-property-format
22178 (match-string 1) (match-string 3)))
22179 t t))
22180 (org-move-to-column column))))
22182 (defun org-indent-drawer ()
22183 "Indent the drawer at point."
22184 (interactive)
22185 (let ((p (point))
22186 (e (and (save-excursion (re-search-forward ":END:" nil t))
22187 (match-end 0)))
22188 (folded
22189 (save-excursion
22190 (end-of-line)
22191 (when (overlays-at (point))
22192 (member 'invisible (overlay-properties
22193 (car (overlays-at (point)))))))))
22194 (when folded (org-cycle))
22195 (indent-for-tab-command)
22196 (while (and (move-beginning-of-line 2) (< (point) e))
22197 (indent-for-tab-command))
22198 (goto-char p)
22199 (when folded (org-cycle)))
22200 (message "Drawer at point indented"))
22202 (defun org-indent-block ()
22203 "Indent the block at point."
22204 (interactive)
22205 (let ((p (point))
22206 (case-fold-search t)
22207 (e (and (save-excursion (re-search-forward "#\\+end_?\\(?:[a-z]+\\)?" nil t))
22208 (match-end 0)))
22209 (folded
22210 (save-excursion
22211 (end-of-line)
22212 (when (overlays-at (point))
22213 (member 'invisible (overlay-properties
22214 (car (overlays-at (point)))))))))
22215 (when folded (org-cycle))
22216 (indent-for-tab-command)
22217 (while (and (move-beginning-of-line 2) (< (point) e))
22218 (indent-for-tab-command))
22219 (goto-char p)
22220 (when folded (org-cycle)))
22221 (message "Block at point indented"))
22223 (defun org-indent-region (start end)
22224 "Indent region."
22225 (interactive "r")
22226 (save-excursion
22227 (let ((line-end (org-current-line end)))
22228 (goto-char start)
22229 (while (< (org-current-line) line-end)
22230 (cond ((org-in-src-block-p t) (org-src-native-tab-command-maybe))
22231 (t (call-interactively 'org-indent-line)))
22232 (move-beginning-of-line 2)))))
22235 ;;; Filling
22237 ;; We use our own fill-paragraph and auto-fill functions.
22239 ;; `org-fill-paragraph' relies on adaptive filling and context
22240 ;; checking. Appropriate `fill-prefix' is computed with
22241 ;; `org-adaptive-fill-function'.
22243 ;; `org-auto-fill-function' takes care of auto-filling. It calls
22244 ;; `do-auto-fill' only on valid areas with `fill-prefix' shadowed with
22245 ;; `org-adaptive-fill-function' value. Internally,
22246 ;; `org-comment-line-break-function' breaks the line.
22248 ;; `org-setup-filling' installs filling and auto-filling related
22249 ;; variables during `org-mode' initialization.
22251 (defvar org-element-paragraph-separate) ; org-element.el
22252 (defun org-setup-filling ()
22253 (require 'org-element)
22254 ;; Prevent auto-fill from inserting unwanted new items.
22255 (when (boundp 'fill-nobreak-predicate)
22256 (org-set-local
22257 'fill-nobreak-predicate
22258 (org-uniquify
22259 (append fill-nobreak-predicate
22260 '(org-fill-line-break-nobreak-p
22261 org-fill-paragraph-with-timestamp-nobreak-p)))))
22262 (let ((paragraph-ending (substring org-element-paragraph-separate 1)))
22263 (org-set-local 'paragraph-start paragraph-ending)
22264 (org-set-local 'paragraph-separate paragraph-ending))
22265 (org-set-local 'fill-paragraph-function 'org-fill-paragraph)
22266 (org-set-local 'auto-fill-inhibit-regexp nil)
22267 (org-set-local 'adaptive-fill-function 'org-adaptive-fill-function)
22268 (org-set-local 'normal-auto-fill-function 'org-auto-fill-function)
22269 (org-set-local 'comment-line-break-function 'org-comment-line-break-function))
22271 (defun org-fill-line-break-nobreak-p ()
22272 "Non-nil when a new line at point would create an Org line break."
22273 (save-excursion
22274 (skip-chars-backward "[ \t]")
22275 (skip-chars-backward "\\\\")
22276 (looking-at "\\\\\\\\\\($\\|[^\\\\]\\)")))
22278 (defun org-fill-paragraph-with-timestamp-nobreak-p ()
22279 "Non-nil when a new line at point would split a timestamp."
22280 (and (org-at-timestamp-p t)
22281 (not (looking-at org-ts-regexp-both))))
22283 (declare-function message-in-body-p "message" ())
22284 (defvar orgtbl-line-start-regexp) ; From org-table.el
22285 (defun org-adaptive-fill-function ()
22286 "Compute a fill prefix for the current line.
22287 Return fill prefix, as a string, or nil if current line isn't
22288 meant to be filled. For convenience, if `adaptive-fill-regexp'
22289 matches in paragraphs or comments, use it."
22290 (catch 'exit
22291 (when (derived-mode-p 'message-mode)
22292 (save-excursion
22293 (beginning-of-line)
22294 (cond ((or (not (message-in-body-p))
22295 (looking-at orgtbl-line-start-regexp))
22296 (throw 'exit nil))
22297 ((looking-at message-cite-prefix-regexp)
22298 (throw 'exit (match-string-no-properties 0)))
22299 ((looking-at org-outline-regexp)
22300 (throw 'exit (make-string (length (match-string 0)) ? ))))))
22301 (org-with-wide-buffer
22302 (let* ((p (line-beginning-position))
22303 (element (save-excursion
22304 (beginning-of-line)
22305 (or (ignore-errors (org-element-at-point))
22306 (user-error "An element cannot be parsed line %d"
22307 (line-number-at-pos (point))))))
22308 (type (org-element-type element))
22309 (post-affiliated (org-element-property :post-affiliated element)))
22310 (unless (and post-affiliated (< p post-affiliated))
22311 (case type
22312 (comment
22313 (save-excursion
22314 (beginning-of-line)
22315 (looking-at "[ \t]*")
22316 (concat (match-string 0) "# ")))
22317 (footnote-definition "")
22318 ((item plain-list)
22319 (make-string (org-list-item-body-column
22320 (or post-affiliated
22321 (org-element-property :begin element)))
22322 ? ))
22323 (paragraph
22324 ;; Fill prefix is usually the same as the current line,
22325 ;; unless the paragraph is at the beginning of an item.
22326 (let ((parent (org-element-property :parent element)))
22327 (save-excursion
22328 (beginning-of-line)
22329 (cond ((eq (org-element-type parent) 'item)
22330 (make-string (org-list-item-body-column
22331 (org-element-property :begin parent))
22332 ? ))
22333 ((and adaptive-fill-regexp
22334 ;; Locally disable
22335 ;; `adaptive-fill-function' to let
22336 ;; `fill-context-prefix' handle
22337 ;; `adaptive-fill-regexp' variable.
22338 (let (adaptive-fill-function)
22339 (fill-context-prefix
22340 post-affiliated
22341 (org-element-property :end element)))))
22342 ((looking-at "[ \t]+") (match-string 0))
22343 (t "")))))
22344 (comment-block
22345 ;; Only fill contents if P is within block boundaries.
22346 (let* ((cbeg (save-excursion (goto-char post-affiliated)
22347 (forward-line)
22348 (point)))
22349 (cend (save-excursion
22350 (goto-char (org-element-property :end element))
22351 (skip-chars-backward " \r\t\n")
22352 (line-beginning-position))))
22353 (when (and (>= p cbeg) (< p cend))
22354 (if (save-excursion (beginning-of-line) (looking-at "[ \t]+"))
22355 (match-string 0)
22356 ""))))))))))
22358 (declare-function message-goto-body "message" ())
22359 (defvar message-cite-prefix-regexp) ; From message.el
22360 (defun org-fill-paragraph (&optional justify)
22361 "Fill element at point, when applicable.
22363 This function only applies to comment blocks, comments, example
22364 blocks and paragraphs. Also, as a special case, re-align table
22365 when point is at one.
22367 If JUSTIFY is non-nil (interactively, with prefix argument),
22368 justify as well. If `sentence-end-double-space' is non-nil, then
22369 period followed by one space does not end a sentence, so don't
22370 break a line there. The variable `fill-column' controls the
22371 width for filling.
22373 For convenience, when point is at a plain list, an item or
22374 a footnote definition, try to fill the first paragraph within."
22375 (interactive)
22376 (if (and (derived-mode-p 'message-mode)
22377 (or (not (message-in-body-p))
22378 (save-excursion (move-beginning-of-line 1)
22379 (looking-at message-cite-prefix-regexp))))
22380 ;; First ensure filling is correct in message-mode.
22381 (let ((fill-paragraph-function
22382 (cadadr (assoc 'fill-paragraph-function org-fb-vars)))
22383 (fill-prefix (cadadr (assoc 'fill-prefix org-fb-vars)))
22384 (paragraph-start (cadadr (assoc 'paragraph-start org-fb-vars)))
22385 (paragraph-separate
22386 (cadadr (assoc 'paragraph-separate org-fb-vars))))
22387 (fill-paragraph nil))
22388 (with-syntax-table org-mode-transpose-word-syntax-table
22389 ;; Move to end of line in order to get the first paragraph
22390 ;; within a plain list or a footnote definition.
22391 (let ((element (save-excursion
22392 (end-of-line)
22393 (or (ignore-errors (org-element-at-point))
22394 (user-error "An element cannot be parsed line %d"
22395 (line-number-at-pos (point)))))))
22396 ;; First check if point is in a blank line at the beginning of
22397 ;; the buffer. In that case, ignore filling.
22398 (case (org-element-type element)
22399 ;; Use major mode filling function is src blocks.
22400 (src-block (org-babel-do-key-sequence-in-edit-buffer (kbd "M-q")))
22401 ;; Align Org tables, leave table.el tables as-is.
22402 (table-row (org-table-align) t)
22403 (table
22404 (when (eq (org-element-property :type element) 'org)
22405 (save-excursion
22406 (goto-char (org-element-property :post-affiliated element))
22407 (org-table-align)))
22409 (paragraph
22410 ;; Paragraphs may contain `line-break' type objects.
22411 (let ((beg (max (point-min)
22412 (org-element-property :contents-begin element)))
22413 (end (min (point-max)
22414 (org-element-property :contents-end element))))
22415 ;; Do nothing if point is at an affiliated keyword.
22416 (if (< (line-end-position) beg) t
22417 (when (derived-mode-p 'message-mode)
22418 ;; In `message-mode', do not fill following citation
22419 ;; in current paragraph nor text before message body.
22420 (let ((body-start (save-excursion (message-goto-body))))
22421 (when body-start (setq beg (max body-start beg))))
22422 (when (save-excursion
22423 (re-search-forward
22424 (concat "^" message-cite-prefix-regexp) end t))
22425 (setq end (match-beginning 0))))
22426 ;; Fill paragraph, taking line breaks into account.
22427 ;; For that, slice the paragraph using line breaks as
22428 ;; separators, and fill the parts in reverse order to
22429 ;; avoid messing with markers.
22430 (save-excursion
22431 (goto-char end)
22432 (mapc
22433 (lambda (pos)
22434 (fill-region-as-paragraph pos (point) justify)
22435 (goto-char pos))
22436 ;; Find the list of ending positions for line breaks
22437 ;; in the current paragraph. Add paragraph
22438 ;; beginning to include first slice.
22439 (nreverse
22440 (cons beg
22441 (org-element-map
22442 (org-element--parse-objects
22443 beg end nil (org-element-restriction 'paragraph))
22444 'line-break
22445 (lambda (lb) (org-element-property :end lb)))))))
22446 t)))
22447 ;; Contents of `comment-block' type elements should be
22448 ;; filled as plain text, but only if point is within block
22449 ;; markers.
22450 (comment-block
22451 (let* ((case-fold-search t)
22452 (beg (save-excursion
22453 (goto-char (org-element-property :begin element))
22454 (re-search-forward "^[ \t]*#\\+begin_comment" nil t)
22455 (forward-line)
22456 (point)))
22457 (end (save-excursion
22458 (goto-char (org-element-property :end element))
22459 (re-search-backward "^[ \t]*#\\+end_comment" nil t)
22460 (line-beginning-position))))
22461 (if (or (< (point) beg) (> (point) end)) t
22462 (fill-region-as-paragraph
22463 (save-excursion (end-of-line)
22464 (re-search-backward "^[ \t]*$" beg 'move)
22465 (line-beginning-position))
22466 (save-excursion (beginning-of-line)
22467 (re-search-forward "^[ \t]*$" end 'move)
22468 (line-beginning-position))
22469 justify))))
22470 ;; Fill comments.
22471 (comment
22472 (let ((begin (org-element-property :post-affiliated element))
22473 (end (org-element-property :end element)))
22474 (when (and (>= (point) begin) (<= (point) end))
22475 (let ((begin (save-excursion
22476 (end-of-line)
22477 (if (re-search-backward "^[ \t]*#[ \t]*$" begin t)
22478 (progn (forward-line) (point))
22479 begin)))
22480 (end (save-excursion
22481 (end-of-line)
22482 (if (re-search-forward "^[ \t]*#[ \t]*$" end 'move)
22483 (1- (line-beginning-position))
22484 (skip-chars-backward " \r\t\n")
22485 (line-end-position)))))
22486 ;; Do not fill comments when at a blank line.
22487 (when (> end begin)
22488 (let ((fill-prefix
22489 (save-excursion
22490 (beginning-of-line)
22491 (looking-at "[ \t]*#")
22492 (let ((comment-prefix (match-string 0)))
22493 (goto-char (match-end 0))
22494 (if (looking-at adaptive-fill-regexp)
22495 (concat comment-prefix (match-string 0))
22496 (concat comment-prefix " "))))))
22497 (save-excursion
22498 (fill-region-as-paragraph begin end justify))))))
22500 ;; Ignore every other element.
22501 (otherwise t))))))
22503 (defun org-auto-fill-function ()
22504 "Auto-fill function."
22505 ;; Check if auto-filling is meaningful.
22506 (let ((fc (current-fill-column)))
22507 (when (and fc (> (current-column) fc))
22508 (let* ((fill-prefix (org-adaptive-fill-function))
22509 ;; Enforce empty fill prefix, if required. Otherwise, it
22510 ;; will be computed again.
22511 (adaptive-fill-mode (not (equal fill-prefix ""))))
22512 (when fill-prefix (do-auto-fill))))))
22514 (defun org-comment-line-break-function (&optional soft)
22515 "Break line at point and indent, continuing comment if within one.
22516 The inserted newline is marked hard if variable
22517 `use-hard-newlines' is true, unless optional argument SOFT is
22518 non-nil."
22519 (if soft (insert-and-inherit ?\n) (newline 1))
22520 (save-excursion (forward-char -1) (delete-horizontal-space))
22521 (delete-horizontal-space)
22522 (indent-to-left-margin)
22523 (insert-before-markers-and-inherit fill-prefix))
22526 ;;; Comments
22528 ;; Org comments syntax is quite complex. It requires the entire line
22529 ;; to be just a comment. Also, even with the right syntax at the
22530 ;; beginning of line, some some elements (i.e. verse-block or
22531 ;; example-block) don't accept comments. Usual Emacs comment commands
22532 ;; cannot cope with those requirements. Therefore, Org replaces them.
22534 ;; Org still relies on `comment-dwim', but cannot trust
22535 ;; `comment-only-p'. So, `comment-region-function' and
22536 ;; `uncomment-region-function' both point
22537 ;; to`org-comment-or-uncomment-region'. Eventually,
22538 ;; `org-insert-comment' takes care of insertion of comments at the
22539 ;; beginning of line.
22541 ;; `org-setup-comments-handling' install comments related variables
22542 ;; during `org-mode' initialization.
22544 (defun org-setup-comments-handling ()
22545 (interactive)
22546 (org-set-local 'comment-use-syntax nil)
22547 (org-set-local 'comment-start "# ")
22548 (org-set-local 'comment-start-skip "^\\s-*#\\(?: \\|$\\)")
22549 (org-set-local 'comment-insert-comment-function 'org-insert-comment)
22550 (org-set-local 'comment-region-function 'org-comment-or-uncomment-region)
22551 (org-set-local 'uncomment-region-function 'org-comment-or-uncomment-region))
22553 (defun org-insert-comment ()
22554 "Insert an empty comment above current line.
22555 If the line is empty, insert comment at its beginning. When
22556 point is within a source block, comment according to the related
22557 major mode."
22558 (if (let ((element (org-element-at-point)))
22559 (and (eq (org-element-type element) 'src-block)
22560 (< (save-excursion
22561 (goto-char (org-element-property :post-affiliated element))
22562 (line-end-position))
22563 (point))
22564 (> (save-excursion
22565 (goto-char (org-element-property :end element))
22566 (skip-chars-backward " \r\t\n")
22567 (line-beginning-position))
22568 (point))))
22569 (progn
22570 (require 'ob-core)
22571 (org-babel-do-in-edit-buffer (call-interactively #'comment-dwim)))
22572 (beginning-of-line)
22573 (if (looking-at "\\s-*$") (delete-region (point) (point-at-eol))
22574 (open-line 1))
22575 (org-indent-line)
22576 (insert "# ")))
22578 (defvar comment-empty-lines) ; From newcomment.el.
22579 (defun org-comment-or-uncomment-region (beg end &rest ignore)
22580 "Comment or uncomment each non-blank line in the region.
22581 Uncomment each non-blank line between BEG and END if it only
22582 contains commented lines. Otherwise, comment them. If region is
22583 strictly within a source block, use appropriate comment syntax."
22584 (if (let ((element (org-element-at-point)))
22585 (and (eq (org-element-type element) 'src-block)
22586 (< (save-excursion
22587 (goto-char (org-element-property :post-affiliated element))
22588 (line-end-position))
22589 beg)
22590 (>= (save-excursion
22591 (goto-char (org-element-property :end element))
22592 (skip-chars-backward " \r\t\n")
22593 (line-beginning-position))
22594 end)))
22595 (progn
22596 (require 'ob-core)
22597 (org-babel-do-in-edit-buffer (call-interactively #'comment-dwim)))
22598 (save-restriction
22599 ;; Restrict region
22600 (narrow-to-region (save-excursion (goto-char beg)
22601 (skip-chars-forward " \r\t\n" end)
22602 (line-beginning-position))
22603 (save-excursion (goto-char end)
22604 (skip-chars-backward " \r\t\n" beg)
22605 (line-end-position)))
22606 (let ((uncommentp
22607 ;; UNCOMMENTP is non-nil when every non blank line between
22608 ;; BEG and END is a comment.
22609 (save-excursion
22610 (goto-char (point-min))
22611 (while (and (not (eobp))
22612 (let ((element (org-element-at-point)))
22613 (and (eq (org-element-type element) 'comment)
22614 (goto-char (min (point-max)
22615 (org-element-property
22616 :end element)))))))
22617 (eobp))))
22618 (if uncommentp
22619 ;; Only blank lines and comments in region: uncomment it.
22620 (save-excursion
22621 (goto-char (point-min))
22622 (while (not (eobp))
22623 (when (looking-at "[ \t]*\\(#\\(?: \\|$\\)\\)")
22624 (replace-match "" nil nil nil 1))
22625 (forward-line)))
22626 ;; Comment each line in region.
22627 (let ((min-indent (point-max)))
22628 ;; First find the minimum indentation across all lines.
22629 (save-excursion
22630 (goto-char (point-min))
22631 (while (and (not (eobp)) (not (zerop min-indent)))
22632 (unless (looking-at "[ \t]*$")
22633 (setq min-indent (min min-indent (current-indentation))))
22634 (forward-line)))
22635 ;; Then loop over all lines.
22636 (save-excursion
22637 (goto-char (point-min))
22638 (while (not (eobp))
22639 (unless (and (not comment-empty-lines) (looking-at "[ \t]*$"))
22640 ;; Don't get fooled by invisible text (e.g. link path)
22641 ;; when moving to column MIN-INDENT.
22642 (let ((buffer-invisibility-spec nil))
22643 (org-move-to-column min-indent t))
22644 (insert comment-start))
22645 (forward-line)))))))))
22648 ;;; Planning
22650 ;; This section contains tools to operate on timestamp objects, as
22651 ;; returned by, e.g. `org-element-context'.
22653 (defun org-timestamp-has-time-p (timestamp)
22654 "Non-nil when TIMESTAMP has a time specified."
22655 (org-element-property :hour-start timestamp))
22657 (defun org-timestamp-format (timestamp format &optional end utc)
22658 "Format a TIMESTAMP element into a string.
22660 FORMAT is a format specifier to be passed to
22661 `format-time-string'.
22663 When optional argument END is non-nil, use end of date-range or
22664 time-range, if possible.
22666 When optional argument UTC is non-nil, time will be expressed as
22667 Universal Time."
22668 (format-time-string
22669 format
22670 (apply 'encode-time
22671 (cons 0
22672 (mapcar
22673 (lambda (prop) (or (org-element-property prop timestamp) 0))
22674 (if end '(:minute-end :hour-end :day-end :month-end :year-end)
22675 '(:minute-start :hour-start :day-start :month-start
22676 :year-start)))))
22677 utc))
22679 (defun org-timestamp-split-range (timestamp &optional end)
22680 "Extract a timestamp object from a date or time range.
22682 TIMESTAMP is a timestamp object. END, when non-nil, means extract
22683 the end of the range. Otherwise, extract its start.
22685 Return a new timestamp object sharing the same parent as
22686 TIMESTAMP."
22687 (let ((type (org-element-property :type timestamp)))
22688 (if (memq type '(active inactive diary)) timestamp
22689 (let ((split-ts (list 'timestamp (copy-sequence (nth 1 timestamp)))))
22690 ;; Set new type.
22691 (org-element-put-property
22692 split-ts :type (if (eq type 'active-range) 'active 'inactive))
22693 ;; Copy start properties over end properties if END is
22694 ;; non-nil. Otherwise, copy end properties over `start' ones.
22695 (let ((p-alist '((:minute-start . :minute-end)
22696 (:hour-start . :hour-end)
22697 (:day-start . :day-end)
22698 (:month-start . :month-end)
22699 (:year-start . :year-end))))
22700 (dolist (p-cell p-alist)
22701 (org-element-put-property
22702 split-ts
22703 (funcall (if end 'car 'cdr) p-cell)
22704 (org-element-property
22705 (funcall (if end 'cdr 'car) p-cell) split-ts)))
22706 ;; Eventually refresh `:raw-value'.
22707 (org-element-put-property split-ts :raw-value nil)
22708 (org-element-put-property
22709 split-ts :raw-value (org-element-interpret-data split-ts)))))))
22711 (defun org-timestamp-translate (timestamp &optional boundary)
22712 "Apply `org-translate-time' on a TIMESTAMP object.
22713 When optional argument BOUNDARY is non-nil, it is either the
22714 symbol `start' or `end'. In this case, only translate the
22715 starting or ending part of TIMESTAMP if it is a date or time
22716 range. Otherwise, translate both parts."
22717 (if (and (not boundary)
22718 (memq (org-element-property :type timestamp)
22719 '(active-range inactive-range)))
22720 (concat
22721 (org-translate-time
22722 (org-element-property :raw-value
22723 (org-timestamp-split-range timestamp)))
22724 "--"
22725 (org-translate-time
22726 (org-element-property :raw-value
22727 (org-timestamp-split-range timestamp t))))
22728 (org-translate-time
22729 (org-element-property
22730 :raw-value
22731 (if (not boundary) timestamp
22732 (org-timestamp-split-range timestamp (eq boundary 'end)))))))
22736 ;;; Other stuff.
22738 (defun org-toggle-fixed-width-section (arg)
22739 "Toggle the fixed-width export.
22740 If there is no active region, the QUOTE keyword at the current headline is
22741 inserted or removed. When present, it causes the text between this headline
22742 and the next to be exported as fixed-width text, and unmodified.
22743 If there is an active region, this command adds or removes a colon as the
22744 first character of this line. If the first character of a line is a colon,
22745 this line is also exported in fixed-width font."
22746 (interactive "P")
22747 (let* ((cc 0)
22748 (regionp (org-region-active-p))
22749 (beg (if regionp (region-beginning) (point)))
22750 (end (if regionp (region-end)))
22751 (nlines (or arg (if (and beg end) (count-lines beg end) 1)))
22752 (case-fold-search nil)
22753 (re "[ \t]*\\(:\\(?: \\|$\\)\\)")
22754 off)
22755 (if regionp
22756 (save-excursion
22757 (goto-char beg)
22758 (setq cc (current-column))
22759 (beginning-of-line 1)
22760 (setq off (looking-at re))
22761 (while (> nlines 0)
22762 (setq nlines (1- nlines))
22763 (beginning-of-line 1)
22764 (cond
22765 (arg
22766 (org-move-to-column cc t)
22767 (insert ": \n")
22768 (forward-line -1))
22769 ((and off (looking-at re))
22770 (replace-match "" t t nil 1))
22771 ((not off) (org-move-to-column cc t) (insert ": ")))
22772 (forward-line 1)))
22773 (save-excursion
22774 (org-back-to-heading)
22775 (cond
22776 ((looking-at (format org-heading-keyword-regexp-format
22777 org-quote-string))
22778 (goto-char (match-end 1))
22779 (looking-at (concat " +" org-quote-string))
22780 (replace-match "" t t)
22781 (when (eolp) (insert " ")))
22782 ((looking-at org-outline-regexp)
22783 (goto-char (match-end 0))
22784 (insert org-quote-string " ")))))))
22786 (defun org-reftex-citation ()
22787 "Use reftex-citation to insert a citation into the buffer.
22788 This looks for a line like
22790 #+BIBLIOGRAPHY: foo plain option:-d
22792 and derives from it that foo.bib is the bibliography file relevant
22793 for this document. It then installs the necessary environment for RefTeX
22794 to work in this buffer and calls `reftex-citation' to insert a citation
22795 into the buffer.
22797 Export of such citations to both LaTeX and HTML is handled by the contributed
22798 package ox-bibtex by Taru Karttunen."
22799 (interactive)
22800 (let ((reftex-docstruct-symbol 'rds)
22801 (reftex-cite-format "\\cite{%l}")
22802 rds bib)
22803 (save-excursion
22804 (save-restriction
22805 (widen)
22806 (let ((case-fold-search t)
22807 (re "^#\\+bibliography:[ \t]+\\([^ \t\n]+\\)"))
22808 (if (not (save-excursion
22809 (or (re-search-forward re nil t)
22810 (re-search-backward re nil t))))
22811 (error "No bibliography defined in file")
22812 (setq bib (concat (match-string 1) ".bib")
22813 rds (list (list 'bib bib)))))))
22814 (call-interactively 'reftex-citation)))
22816 ;;;; Functions extending outline functionality
22818 (defun org-beginning-of-line (&optional arg)
22819 "Go to the beginning of the current line. If that is invisible, continue
22820 to a visible line beginning. This makes the function of C-a more intuitive.
22821 If this is a headline, and `org-special-ctrl-a/e' is set, ignore tags on the
22822 first attempt, and only move to after the tags when the cursor is already
22823 beyond the end of the headline."
22824 (interactive "P")
22825 (let ((pos (point))
22826 (special (if (consp org-special-ctrl-a/e)
22827 (car org-special-ctrl-a/e)
22828 org-special-ctrl-a/e))
22829 deactivate-mark refpos)
22830 (if (org-bound-and-true-p visual-line-mode)
22831 (beginning-of-visual-line 1)
22832 (beginning-of-line 1))
22833 (if (and arg (fboundp 'move-beginning-of-line))
22834 (call-interactively 'move-beginning-of-line)
22835 (if (bobp)
22837 (backward-char 1)
22838 (if (org-truely-invisible-p)
22839 (while (and (not (bobp)) (org-truely-invisible-p))
22840 (backward-char 1)
22841 (beginning-of-line 1))
22842 (forward-char 1))))
22843 (when special
22844 (cond
22845 ((and (looking-at org-complex-heading-regexp)
22846 (= (char-after (match-end 1)) ?\ ))
22847 (setq refpos (min (1+ (or (match-end 3) (match-end 2) (match-end 1)))
22848 (point-at-eol)))
22849 (goto-char
22850 (if (eq special t)
22851 (cond ((> pos refpos) refpos)
22852 ((= pos (point)) refpos)
22853 (t (point)))
22854 (cond ((> pos (point)) (point))
22855 ((not (eq last-command this-command)) (point))
22856 (t refpos)))))
22857 ((org-at-item-p)
22858 ;; Being at an item and not looking at an the item means point
22859 ;; was previously moved to beginning of a visual line, which
22860 ;; doesn't contain the item. Therefore, do nothing special,
22861 ;; just stay here.
22862 (when (looking-at org-list-full-item-re)
22863 ;; Set special position at first white space character after
22864 ;; bullet, and check-box, if any.
22865 (let ((after-bullet
22866 (let ((box (match-end 3)))
22867 (if (not box) (match-end 1)
22868 (let ((after (char-after box)))
22869 (if (and after (= after ? )) (1+ box) box))))))
22870 ;; Special case: Move point to special position when
22871 ;; currently after it or at beginning of line.
22872 (if (eq special t)
22873 (when (or (> pos after-bullet) (= (point) pos))
22874 (goto-char after-bullet))
22875 ;; Reversed case: Move point to special position when
22876 ;; point was already at beginning of line and command is
22877 ;; repeated.
22878 (when (and (= (point) pos) (eq last-command this-command))
22879 (goto-char after-bullet))))))))
22880 (org-no-warnings
22881 (and (featurep 'xemacs) (setq zmacs-region-stays t))))
22882 (setq disable-point-adjustment
22883 (or (not (invisible-p (point)))
22884 (not (invisible-p (max (point-min) (1- (point))))))))
22886 (defun org-end-of-line (&optional arg)
22887 "Go to the end of the line.
22888 If this is a headline, and `org-special-ctrl-a/e' is set, ignore
22889 tags on the first attempt, and only move to after the tags when
22890 the cursor is already beyond the end of the headline."
22891 (interactive "P")
22892 (let ((special (if (consp org-special-ctrl-a/e) (cdr org-special-ctrl-a/e)
22893 org-special-ctrl-a/e))
22894 (move-fun (cond ((org-bound-and-true-p visual-line-mode)
22895 'end-of-visual-line)
22896 ((fboundp 'move-end-of-line) 'move-end-of-line)
22897 (t 'end-of-line)))
22898 deactivate-mark)
22899 (if (or (not special) arg) (call-interactively move-fun)
22900 (let* ((element (save-excursion (beginning-of-line)
22901 (org-element-at-point)))
22902 (type (org-element-type element)))
22903 (cond
22904 ((memq type '(headline inlinetask))
22905 (let ((pos (point)))
22906 (beginning-of-line 1)
22907 (if (looking-at (org-re ".*?\\(?:\\([ \t]*\\)\\(:[[:alnum:]_@#%:]+:\\)?[ \t]*\\)?$"))
22908 (if (eq special t)
22909 (if (or (< pos (match-beginning 1)) (= pos (match-end 0)))
22910 (goto-char (match-beginning 1))
22911 (goto-char (match-end 0)))
22912 (if (or (< pos (match-end 0))
22913 (not (eq this-command last-command)))
22914 (goto-char (match-end 0))
22915 (goto-char (match-beginning 1))))
22916 (call-interactively move-fun))))
22917 ((outline-invisible-p (line-end-position))
22918 ;; If element is hidden, `move-end-of-line' would put point
22919 ;; after it. Use `end-of-line' to stay on current line.
22920 (call-interactively 'end-of-line))
22921 (t (call-interactively move-fun)))))
22922 (org-no-warnings (and (featurep 'xemacs) (setq zmacs-region-stays t))))
22923 (setq disable-point-adjustment
22924 (or (not (invisible-p (point)))
22925 (not (invisible-p (max (point-min) (1- (point))))))))
22927 (define-key org-mode-map "\C-a" 'org-beginning-of-line)
22928 (define-key org-mode-map "\C-e" 'org-end-of-line)
22930 (defun org-backward-sentence (&optional arg)
22931 "Go to beginning of sentence, or beginning of table field.
22932 This will call `backward-sentence' or `org-table-beginning-of-field',
22933 depending on context."
22934 (interactive "P")
22935 (cond
22936 ((org-at-table-p) (call-interactively 'org-table-beginning-of-field))
22937 (t (call-interactively 'backward-sentence))))
22939 (defun org-forward-sentence (&optional arg)
22940 "Go to end of sentence, or end of table field.
22941 This will call `forward-sentence' or `org-table-end-of-field',
22942 depending on context."
22943 (interactive "P")
22944 (cond
22945 ((org-at-table-p) (call-interactively 'org-table-end-of-field))
22946 (t (call-interactively 'forward-sentence))))
22948 (define-key org-mode-map "\M-a" 'org-backward-sentence)
22949 (define-key org-mode-map "\M-e" 'org-forward-sentence)
22951 (defun org-kill-line (&optional arg)
22952 "Kill line, to tags or end of line."
22953 (interactive "P")
22954 (cond
22955 ((or (not org-special-ctrl-k)
22956 (bolp)
22957 (not (org-at-heading-p)))
22958 (if (and (get-char-property (min (point-max) (point-at-eol)) 'invisible)
22959 org-ctrl-k-protect-subtree)
22960 (if (or (eq org-ctrl-k-protect-subtree 'error)
22961 (not (y-or-n-p "Kill hidden subtree along with headline? ")))
22962 (user-error "C-k aborted as it would kill a hidden subtree")))
22963 (call-interactively
22964 (if (org-bound-and-true-p visual-line-mode) 'kill-visual-line 'kill-line)))
22965 ((looking-at (org-re ".*?\\S-\\([ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)[ \t]*$"))
22966 (kill-region (point) (match-beginning 1))
22967 (org-set-tags nil t))
22968 (t (kill-region (point) (point-at-eol)))))
22970 (define-key org-mode-map "\C-k" 'org-kill-line)
22972 (defun org-yank (&optional arg)
22973 "Yank. If the kill is a subtree, treat it specially.
22974 This command will look at the current kill and check if is a single
22975 subtree, or a series of subtrees[1]. If it passes the test, and if the
22976 cursor is at the beginning of a line or after the stars of a currently
22977 empty headline, then the yank is handled specially. How exactly depends
22978 on the value of the following variables, both set by default.
22980 org-yank-folded-subtrees
22981 When set, the subtree(s) will be folded after insertion, but only
22982 if doing so would now swallow text after the yanked text.
22984 org-yank-adjusted-subtrees
22985 When set, the subtree will be promoted or demoted in order to
22986 fit into the local outline tree structure, which means that the level
22987 will be adjusted so that it becomes the smaller one of the two
22988 *visible* surrounding headings.
22990 Any prefix to this command will cause `yank' to be called directly with
22991 no special treatment. In particular, a simple \\[universal-argument] prefix \
22992 will just
22993 plainly yank the text as it is.
22995 \[1] The test checks if the first non-white line is a heading
22996 and if there are no other headings with fewer stars."
22997 (interactive "P")
22998 (org-yank-generic 'yank arg))
23000 (defun org-yank-generic (command arg)
23001 "Perform some yank-like command.
23003 This function implements the behavior described in the `org-yank'
23004 documentation. However, it has been generalized to work for any
23005 interactive command with similar behavior."
23007 ;; pretend to be command COMMAND
23008 (setq this-command command)
23010 (if arg
23011 (call-interactively command)
23013 (let ((subtreep ; is kill a subtree, and the yank position appropriate?
23014 (and (org-kill-is-subtree-p)
23015 (or (bolp)
23016 (and (looking-at "[ \t]*$")
23017 (string-match
23018 "\\`\\*+\\'"
23019 (buffer-substring (point-at-bol) (point)))))))
23020 swallowp)
23021 (cond
23022 ((and subtreep org-yank-folded-subtrees)
23023 (let ((beg (point))
23024 end)
23025 (if (and subtreep org-yank-adjusted-subtrees)
23026 (org-paste-subtree nil nil 'for-yank)
23027 (call-interactively command))
23029 (setq end (point))
23030 (goto-char beg)
23031 (when (and (bolp) subtreep
23032 (not (setq swallowp
23033 (org-yank-folding-would-swallow-text beg end))))
23034 (org-with-limited-levels
23035 (or (looking-at org-outline-regexp)
23036 (re-search-forward org-outline-regexp-bol end t))
23037 (while (and (< (point) end) (looking-at org-outline-regexp))
23038 (hide-subtree)
23039 (org-cycle-show-empty-lines 'folded)
23040 (condition-case nil
23041 (outline-forward-same-level 1)
23042 (error (goto-char end))))))
23043 (when swallowp
23044 (message
23045 "Inserted text not folded because that would swallow text"))
23047 (goto-char end)
23048 (skip-chars-forward " \t\n\r")
23049 (beginning-of-line 1)
23050 (push-mark beg 'nomsg)))
23051 ((and subtreep org-yank-adjusted-subtrees)
23052 (let ((beg (point-at-bol)))
23053 (org-paste-subtree nil nil 'for-yank)
23054 (push-mark beg 'nomsg)))
23056 (call-interactively command))))))
23058 (defun org-yank-folding-would-swallow-text (beg end)
23059 "Would hide-subtree at BEG swallow any text after END?"
23060 (let (level)
23061 (org-with-limited-levels
23062 (save-excursion
23063 (goto-char beg)
23064 (when (or (looking-at org-outline-regexp)
23065 (re-search-forward org-outline-regexp-bol end t))
23066 (setq level (org-outline-level)))
23067 (goto-char end)
23068 (skip-chars-forward " \t\r\n\v\f")
23069 (if (or (eobp)
23070 (and (bolp) (looking-at org-outline-regexp)
23071 (<= (org-outline-level) level)))
23072 nil ; Nothing would be swallowed
23073 t))))) ; something would swallow
23075 (define-key org-mode-map "\C-y" 'org-yank)
23077 (defun org-truely-invisible-p ()
23078 "Check if point is at a character currently not visible.
23079 This version does not only check the character property, but also
23080 `visible-mode'."
23081 ;; Early versions of noutline don't have `outline-invisible-p'.
23082 (if (org-bound-and-true-p visible-mode)
23084 (outline-invisible-p)))
23086 (defun org-invisible-p2 ()
23087 "Check if point is at a character currently not visible."
23088 (save-excursion
23089 (if (and (eolp) (not (bobp))) (backward-char 1))
23090 ;; Early versions of noutline don't have `outline-invisible-p'.
23091 (outline-invisible-p)))
23093 (defun org-back-to-heading (&optional invisible-ok)
23094 "Call `outline-back-to-heading', but provide a better error message."
23095 (condition-case nil
23096 (outline-back-to-heading invisible-ok)
23097 (error (error "Before first headline at position %d in buffer %s"
23098 (point) (current-buffer)))))
23100 (defun org-before-first-heading-p ()
23101 "Before first heading?"
23102 (save-excursion
23103 (end-of-line)
23104 (null (re-search-backward org-outline-regexp-bol nil t))))
23106 (defun org-at-heading-p (&optional ignored)
23107 (outline-on-heading-p t))
23108 ;; Compatibility alias with Org versions < 7.8.03
23109 (defalias 'org-on-heading-p 'org-at-heading-p)
23111 (defun org-at-comment-p nil
23112 "Is cursor in a line starting with a # character?"
23113 (save-excursion
23114 (beginning-of-line)
23115 (looking-at "^#")))
23117 (defun org-at-drawer-p nil
23118 "Is cursor at a drawer keyword?"
23119 (save-excursion
23120 (move-beginning-of-line 1)
23121 (looking-at org-drawer-regexp)))
23123 (defun org-at-block-p nil
23124 "Is cursor at a block keyword?"
23125 (save-excursion
23126 (move-beginning-of-line 1)
23127 (looking-at org-block-regexp)))
23129 (defun org-point-at-end-of-empty-headline ()
23130 "If point is at the end of an empty headline, return t, else nil.
23131 If the heading only contains a TODO keyword, it is still still considered
23132 empty."
23133 (and (looking-at "[ \t]*$")
23134 (when org-todo-line-regexp
23135 (save-excursion
23136 (beginning-of-line 1)
23137 (let ((case-fold-search nil))
23138 (looking-at org-todo-line-regexp)
23139 (string= (match-string 3) ""))))))
23141 (defun org-at-heading-or-item-p ()
23142 (or (org-at-heading-p) (org-at-item-p)))
23144 (defun org-at-target-p ()
23145 (or (org-in-regexp org-radio-target-regexp)
23146 (org-in-regexp org-target-regexp)))
23147 ;; Compatibility alias with Org versions < 7.8.03
23148 (defalias 'org-on-target-p 'org-at-target-p)
23150 (defun org-up-heading-all (arg)
23151 "Move to the heading line of which the present line is a subheading.
23152 This function considers both visible and invisible heading lines.
23153 With argument, move up ARG levels."
23154 (if (fboundp 'outline-up-heading-all)
23155 (outline-up-heading-all arg) ; emacs 21 version of outline.el
23156 (outline-up-heading arg t))) ; emacs 22 version of outline.el
23158 (defun org-up-heading-safe ()
23159 "Move to the heading line of which the present line is a subheading.
23160 This version will not throw an error. It will return the level of the
23161 headline found, or nil if no higher level is found.
23163 Also, this function will be a lot faster than `outline-up-heading',
23164 because it relies on stars being the outline starters. This can really
23165 make a significant difference in outlines with very many siblings."
23166 (let (start-level re)
23167 (org-back-to-heading t)
23168 (setq start-level (funcall outline-level))
23169 (if (equal start-level 1)
23171 (setq re (concat "^\\*\\{1," (number-to-string (1- start-level)) "\\} "))
23172 (if (re-search-backward re nil t)
23173 (funcall outline-level)))))
23175 (defun org-first-sibling-p ()
23176 "Is this heading the first child of its parents?"
23177 (interactive)
23178 (let ((re org-outline-regexp-bol)
23179 level l)
23180 (unless (org-at-heading-p t)
23181 (user-error "Not at a heading"))
23182 (setq level (funcall outline-level))
23183 (save-excursion
23184 (if (not (re-search-backward re nil t))
23186 (setq l (funcall outline-level))
23187 (< l level)))))
23189 (defun org-goto-sibling (&optional previous)
23190 "Goto the next sibling, even if it is invisible.
23191 When PREVIOUS is set, go to the previous sibling instead. Returns t
23192 when a sibling was found. When none is found, return nil and don't
23193 move point."
23194 (let ((fun (if previous 're-search-backward 're-search-forward))
23195 (pos (point))
23196 (re org-outline-regexp-bol)
23197 level l)
23198 (when (condition-case nil (org-back-to-heading t) (error nil))
23199 (setq level (funcall outline-level))
23200 (catch 'exit
23201 (or previous (forward-char 1))
23202 (while (funcall fun re nil t)
23203 (setq l (funcall outline-level))
23204 (when (< l level) (goto-char pos) (throw 'exit nil))
23205 (when (= l level) (goto-char (match-beginning 0)) (throw 'exit t)))
23206 (goto-char pos)
23207 nil))))
23209 (defun org-show-siblings ()
23210 "Show all siblings of the current headline."
23211 (save-excursion
23212 (while (org-goto-sibling) (org-flag-heading nil)))
23213 (save-excursion
23214 (while (org-goto-sibling 'previous)
23215 (org-flag-heading nil))))
23217 (defun org-goto-first-child ()
23218 "Goto the first child, even if it is invisible.
23219 Return t when a child was found. Otherwise don't move point and
23220 return nil."
23221 (let (level (pos (point)) (re org-outline-regexp-bol))
23222 (when (condition-case nil (org-back-to-heading t) (error nil))
23223 (setq level (outline-level))
23224 (forward-char 1)
23225 (if (and (re-search-forward re nil t) (> (outline-level) level))
23226 (progn (goto-char (match-beginning 0)) t)
23227 (goto-char pos) nil))))
23229 (defun org-show-hidden-entry ()
23230 "Show an entry where even the heading is hidden."
23231 (save-excursion
23232 (org-show-entry)))
23234 (defun org-flag-heading (flag &optional entry)
23235 "Flag the current heading. FLAG non-nil means make invisible.
23236 When ENTRY is non-nil, show the entire entry."
23237 (save-excursion
23238 (org-back-to-heading t)
23239 ;; Check if we should show the entire entry
23240 (if entry
23241 (progn
23242 (org-show-entry)
23243 (save-excursion
23244 (and (outline-next-heading)
23245 (org-flag-heading nil))))
23246 (outline-flag-region (max (point-min) (1- (point)))
23247 (save-excursion (outline-end-of-heading) (point))
23248 flag))))
23250 (defun org-get-next-sibling ()
23251 "Move to next heading of the same level, and return point.
23252 If there is no such heading, return nil.
23253 This is like outline-next-sibling, but invisible headings are ok."
23254 (let ((level (funcall outline-level)))
23255 (outline-next-heading)
23256 (while (and (not (eobp)) (> (funcall outline-level) level))
23257 (outline-next-heading))
23258 (if (or (eobp) (< (funcall outline-level) level))
23260 (point))))
23262 (defun org-get-last-sibling ()
23263 "Move to previous heading of the same level, and return point.
23264 If there is no such heading, return nil."
23265 (let ((opoint (point))
23266 (level (funcall outline-level)))
23267 (outline-previous-heading)
23268 (when (and (/= (point) opoint) (outline-on-heading-p t))
23269 (while (and (> (funcall outline-level) level)
23270 (not (bobp)))
23271 (outline-previous-heading))
23272 (if (< (funcall outline-level) level)
23274 (point)))))
23276 (defun org-end-of-subtree (&optional invisible-ok to-heading)
23277 "Goto to the end of a subtree."
23278 ;; This contains an exact copy of the original function, but it uses
23279 ;; `org-back-to-heading', to make it work also in invisible
23280 ;; trees. And is uses an invisible-ok argument.
23281 ;; Under Emacs this is not needed, but the old outline.el needs this fix.
23282 ;; Furthermore, when used inside Org, finding the end of a large subtree
23283 ;; with many children and grandchildren etc, this can be much faster
23284 ;; than the outline version.
23285 (org-back-to-heading invisible-ok)
23286 (let ((first t)
23287 (level (funcall outline-level)))
23288 (if (and (derived-mode-p 'org-mode) (< level 1000))
23289 ;; A true heading (not a plain list item), in Org-mode
23290 ;; This means we can easily find the end by looking
23291 ;; only for the right number of stars. Using a regexp to do
23292 ;; this is so much faster than using a Lisp loop.
23293 (let ((re (concat "^\\*\\{1," (int-to-string level) "\\} ")))
23294 (forward-char 1)
23295 (and (re-search-forward re nil 'move) (beginning-of-line 1)))
23296 ;; something else, do it the slow way
23297 (while (and (not (eobp))
23298 (or first (> (funcall outline-level) level)))
23299 (setq first nil)
23300 (outline-next-heading)))
23301 (unless to-heading
23302 (if (memq (preceding-char) '(?\n ?\^M))
23303 (progn
23304 ;; Go to end of line before heading
23305 (forward-char -1)
23306 (if (memq (preceding-char) '(?\n ?\^M))
23307 ;; leave blank line before heading
23308 (forward-char -1))))))
23309 (point))
23311 (defadvice outline-end-of-subtree (around prefer-org-version activate compile)
23312 "Use Org version in org-mode, for dramatic speed-up."
23313 (if (derived-mode-p 'org-mode)
23314 (progn
23315 (org-end-of-subtree nil t)
23316 (unless (eobp) (backward-char 1)))
23317 ad-do-it))
23319 (defun org-end-of-meta-data-and-drawers ()
23320 "Jump to the first text after meta data and drawers in the current entry.
23321 This will move over empty lines, lines with planning time stamps,
23322 clocking lines, and drawers."
23323 (org-back-to-heading t)
23324 (let ((end (save-excursion (outline-next-heading) (point)))
23325 (re (concat "\\(" org-drawer-regexp "\\)"
23326 "\\|" "[ \t]*" org-keyword-time-regexp)))
23327 (forward-line 1)
23328 (while (re-search-forward re end t)
23329 (if (not (match-end 1))
23330 ;; empty or planning line
23331 (forward-line 1)
23332 ;; a drawer, find the end
23333 (re-search-forward "^[ \t]*:END:" end 'move)
23334 (forward-line 1)))
23335 (and (re-search-forward "[^\n]" nil t) (backward-char 1))
23336 (point)))
23338 (defun org-forward-heading-same-level (arg &optional invisible-ok)
23339 "Move forward to the ARG'th subheading at same level as this one.
23340 Stop at the first and last subheadings of a superior heading.
23341 Normally this only looks at visible headings, but when INVISIBLE-OK is
23342 non-nil it will also look at invisible ones."
23343 (interactive "p")
23344 (if (not (ignore-errors (org-back-to-heading invisible-ok)))
23345 (if (and arg (< arg 0))
23346 (goto-char (point-min))
23347 (outline-next-heading))
23348 (org-at-heading-p)
23349 (let ((level (- (match-end 0) (match-beginning 0) 1))
23350 (f (if (and arg (< arg 0))
23351 're-search-backward
23352 're-search-forward))
23353 (count (if arg (abs arg) 1))
23354 (result (point)))
23355 (while (and (prog1 (> count 0)
23356 (forward-char (if (and arg (< arg 0)) -1 1)))
23357 (funcall f org-outline-regexp-bol nil 'move))
23358 (let ((l (- (match-end 0) (match-beginning 0) 1)))
23359 (cond ((< l level) (setq count 0))
23360 ((and (= l level)
23361 (or invisible-ok
23362 (progn
23363 (goto-char (line-beginning-position))
23364 (not (outline-invisible-p)))))
23365 (setq count (1- count))
23366 (when (eq l level)
23367 (setq result (point)))))))
23368 (goto-char result))
23369 (beginning-of-line 1)))
23371 (defun org-backward-heading-same-level (arg &optional invisible-ok)
23372 "Move backward to the ARG'th subheading at same level as this one.
23373 Stop at the first and last subheadings of a superior heading."
23374 (interactive "p")
23375 (org-forward-heading-same-level (if arg (- arg) -1) invisible-ok))
23377 (defun org-next-block (arg &optional backward block-regexp)
23378 "Jump to the next block.
23379 With a prefix argument ARG, jump forward ARG many source blocks.
23380 When BACKWARD is non-nil, jump to the previous block.
23381 When BLOCK-REGEXP is non-nil, use this regexp to find blocks."
23382 (interactive "p")
23383 (let ((re (or block-regexp org-block-regexp))
23384 (re-search-fn (or (and backward 're-search-backward)
23385 're-search-forward)))
23386 (if (looking-at re) (forward-char 1))
23387 (condition-case nil
23388 (funcall re-search-fn re nil nil arg)
23389 (error (error "No %s code blocks" (if backward "previous" "further" ))))
23390 (goto-char (match-beginning 0)) (org-show-context)))
23392 (defun org-previous-block (arg &optional block-regexp)
23393 "Jump to the previous block.
23394 With a prefix argument ARG, jump backward ARG many source blocks.
23395 When BLOCK-REGEXP is non-nil, use this regexp to find blocks."
23396 (interactive "p")
23397 (org-next-block arg t block-regexp))
23399 (defun org-forward-paragraph ()
23400 "Move forward to beginning of next paragraph or equivalent.
23402 The function moves point to the beginning of the next visible
23403 structural element, which can be a paragraph, a table, a list
23404 item, etc. It also provides some special moves for convenience:
23406 - On an affiliated keyword, jump to the beginning of the
23407 relative element.
23408 - On an item or a footnote definition, move to the second
23409 element inside, if any.
23410 - On a table or a property drawer, jump after it.
23411 - On a verse or source block, stop after blank lines."
23412 (interactive)
23413 (when (eobp) (user-error "Cannot move further down"))
23414 (let* ((deactivate-mark nil)
23415 (element (org-element-at-point))
23416 (type (org-element-type element))
23417 (post-affiliated (org-element-property :post-affiliated element))
23418 (contents-begin (org-element-property :contents-begin element))
23419 (contents-end (org-element-property :contents-end element))
23420 (end (let ((end (org-element-property :end element)) (parent element))
23421 (while (and (setq parent (org-element-property :parent parent))
23422 (= (org-element-property :contents-end parent) end))
23423 (setq end (org-element-property :end parent)))
23424 end)))
23425 (cond ((not element)
23426 (skip-chars-forward " \r\t\n")
23427 (or (eobp) (beginning-of-line)))
23428 ;; On affiliated keywords, move to element's beginning.
23429 ((and post-affiliated (< (point) post-affiliated))
23430 (goto-char post-affiliated))
23431 ;; At a table row, move to the end of the table. Similarly,
23432 ;; at a node property, move to the end of the property
23433 ;; drawer.
23434 ((memq type '(node-property table-row))
23435 (goto-char (org-element-property
23436 :end (org-element-property :parent element))))
23437 ((memq type '(property-drawer table)) (goto-char end))
23438 ;; Consider blank lines as separators in verse and source
23439 ;; blocks to ease editing.
23440 ((memq type '(src-block verse-block))
23441 (when (eq type 'src-block)
23442 (setq contents-end
23443 (save-excursion (goto-char end)
23444 (skip-chars-backward " \r\t\n")
23445 (line-beginning-position))))
23446 (beginning-of-line)
23447 (when (looking-at "[ \t]*$") (skip-chars-forward " \r\t\n"))
23448 (if (not (re-search-forward "^[ \t]*$" contents-end t))
23449 (goto-char end)
23450 (skip-chars-forward " \r\t\n")
23451 (if (= (point) contents-end) (goto-char end)
23452 (beginning-of-line))))
23453 ;; With no contents, just skip element.
23454 ((not contents-begin) (goto-char end))
23455 ;; If contents are invisible, skip the element altogether.
23456 ((outline-invisible-p (line-end-position))
23457 (case type
23458 (headline
23459 (org-with-limited-levels (outline-next-visible-heading 1)))
23460 ;; At a plain list, make sure we move to the next item
23461 ;; instead of skipping the whole list.
23462 (plain-list (forward-char)
23463 (org-forward-paragraph))
23464 (otherwise (goto-char end))))
23465 ((>= (point) contents-end) (goto-char end))
23466 ((>= (point) contents-begin)
23467 ;; This can only happen on paragraphs and plain lists.
23468 (case type
23469 (paragraph (goto-char end))
23470 ;; At a plain list, try to move to second element in
23471 ;; first item, if possible.
23472 (plain-list (end-of-line)
23473 (org-forward-paragraph))))
23474 ;; When contents start on the middle of a line (e.g. in
23475 ;; items and footnote definitions), try to reach first
23476 ;; element starting after current line.
23477 ((> (line-end-position) contents-begin)
23478 (end-of-line)
23479 (org-forward-paragraph))
23480 (t (goto-char contents-begin)))))
23482 (defun org-backward-paragraph ()
23483 "Move backward to start of previous paragraph or equivalent.
23485 The function moves point to the beginning of the current
23486 structural element, which can be a paragraph, a table, a list
23487 item, etc., or to the beginning of the previous visible one if
23488 point is already there. It also provides some special moves for
23489 convenience:
23491 - On an affiliated keyword, jump to the first one.
23492 - On a table or a property drawer, move to its beginning.
23493 - On a verse or source block, stop before blank lines."
23494 (interactive)
23495 (when (bobp) (user-error "Cannot move further up"))
23496 (let* ((deactivate-mark nil)
23497 (element (org-element-at-point))
23498 (type (org-element-type element))
23499 (contents-begin (org-element-property :contents-begin element))
23500 (contents-end (org-element-property :contents-end element))
23501 (post-affiliated (org-element-property :post-affiliated element))
23502 (begin (org-element-property :begin element)))
23503 (cond
23504 ((not element) (goto-char (point-min)))
23505 ((= (point) begin)
23506 (backward-char)
23507 (org-backward-paragraph))
23508 ((and post-affiliated (<= (point) post-affiliated)) (goto-char begin))
23509 ((memq type '(node-property table-row))
23510 (goto-char (org-element-property
23511 :post-affiliated (org-element-property :parent element))))
23512 ((memq type '(property-drawer table)) (goto-char begin))
23513 ((memq type '(src-block verse-block))
23514 (when (eq type 'src-block)
23515 (setq contents-begin
23516 (save-excursion (goto-char begin) (forward-line) (point))))
23517 (if (= (point) contents-begin) (goto-char post-affiliated)
23518 ;; Inside a verse block, see blank lines as paragraph
23519 ;; separators.
23520 (let ((origin (point)))
23521 (skip-chars-backward " \r\t\n" contents-begin)
23522 (when (re-search-backward "^[ \t]*$" contents-begin 'move)
23523 (skip-chars-forward " \r\t\n" origin)
23524 (if (= (point) origin) (goto-char contents-begin)
23525 (beginning-of-line))))))
23526 ((not contents-begin) (goto-char (or post-affiliated begin)))
23527 ((eq type 'paragraph)
23528 (goto-char contents-begin)
23529 ;; When at first paragraph in an item or a footnote definition,
23530 ;; move directly to beginning of line.
23531 (let ((parent-contents
23532 (org-element-property
23533 :contents-begin (org-element-property :parent element))))
23534 (when (and parent-contents (= parent-contents contents-begin))
23535 (beginning-of-line))))
23536 ;; At the end of a greater element, move to the beginning of the
23537 ;; last element within.
23538 ((>= (point) contents-end)
23539 (goto-char (1- contents-end))
23540 (org-backward-paragraph))
23541 (t (goto-char (or post-affiliated begin))))
23542 ;; Ensure we never leave point invisible.
23543 (when (outline-invisible-p (point)) (beginning-of-visual-line))))
23545 (defun org-forward-element ()
23546 "Move forward by one element.
23547 Move to the next element at the same level, when possible."
23548 (interactive)
23549 (cond ((eobp) (user-error "Cannot move further down"))
23550 ((org-with-limited-levels (org-at-heading-p))
23551 (let ((origin (point)))
23552 (goto-char (org-end-of-subtree nil t))
23553 (unless (org-with-limited-levels (org-at-heading-p))
23554 (goto-char origin)
23555 (user-error "Cannot move further down"))))
23557 (let* ((elem (org-element-at-point))
23558 (end (org-element-property :end elem))
23559 (parent (org-element-property :parent elem)))
23560 (cond ((and parent (= (org-element-property :contents-end parent) end))
23561 (goto-char (org-element-property :end parent)))
23562 ((integer-or-marker-p end) (goto-char end))
23563 (t (message "No element at point")))))))
23565 (defun org-backward-element ()
23566 "Move backward by one element.
23567 Move to the previous element at the same level, when possible."
23568 (interactive)
23569 (cond ((bobp) (user-error "Cannot move further up"))
23570 ((org-with-limited-levels (org-at-heading-p))
23571 ;; At a headline, move to the previous one, if any, or stay
23572 ;; here.
23573 (let ((origin (point)))
23574 (org-with-limited-levels (org-backward-heading-same-level 1))
23575 ;; When current headline has no sibling above, move to its
23576 ;; parent.
23577 (when (= (point) origin)
23578 (or (org-with-limited-levels (org-up-heading-safe))
23579 (progn (goto-char origin)
23580 (user-error "Cannot move further up"))))))
23582 (let* ((trail (org-element-at-point 'keep-trail))
23583 (elem (car trail))
23584 (prev-elem (nth 1 trail))
23585 (beg (org-element-property :begin elem)))
23586 (cond
23587 ;; Move to beginning of current element if point isn't
23588 ;; there already.
23589 ((null beg) (message "No element at point"))
23590 ((/= (point) beg) (goto-char beg))
23591 (prev-elem (goto-char (org-element-property :begin prev-elem)))
23592 ((org-before-first-heading-p) (goto-char (point-min)))
23593 (t (org-back-to-heading)))))))
23595 (defun org-up-element ()
23596 "Move to upper element."
23597 (interactive)
23598 (if (org-with-limited-levels (org-at-heading-p))
23599 (unless (org-up-heading-safe) (user-error "No surrounding element"))
23600 (let* ((elem (org-element-at-point))
23601 (parent (org-element-property :parent elem)))
23602 (if parent (goto-char (org-element-property :begin parent))
23603 (if (org-with-limited-levels (org-before-first-heading-p))
23604 (user-error "No surrounding element")
23605 (org-with-limited-levels (org-back-to-heading)))))))
23607 (defvar org-element-greater-elements)
23608 (defun org-down-element ()
23609 "Move to inner element."
23610 (interactive)
23611 (let ((element (org-element-at-point)))
23612 (cond
23613 ((memq (org-element-type element) '(plain-list table))
23614 (goto-char (org-element-property :contents-begin element))
23615 (forward-char))
23616 ((memq (org-element-type element) org-element-greater-elements)
23617 ;; If contents are hidden, first disclose them.
23618 (when (outline-invisible-p (line-end-position)) (org-cycle))
23619 (goto-char (or (org-element-property :contents-begin element)
23620 (user-error "No content for this element"))))
23621 (t (user-error "No inner element")))))
23623 (defun org-drag-element-backward ()
23624 "Move backward element at point."
23625 (interactive)
23626 (if (org-with-limited-levels (org-at-heading-p)) (org-move-subtree-up)
23627 (let* ((trail (org-element-at-point 'keep-trail))
23628 (elem (car trail))
23629 (prev-elem (nth 1 trail)))
23630 ;; Error out if no previous element or previous element is
23631 ;; a parent of the current one.
23632 (if (or (not prev-elem) (org-element-nested-p elem prev-elem))
23633 (user-error "Cannot drag element backward")
23634 (let ((pos (point)))
23635 (org-element-swap-A-B prev-elem elem)
23636 (goto-char (+ (org-element-property :begin prev-elem)
23637 (- pos (org-element-property :begin elem)))))))))
23639 (defun org-drag-element-forward ()
23640 "Move forward element at point."
23641 (interactive)
23642 (let* ((pos (point))
23643 (elem (org-element-at-point)))
23644 (when (= (point-max) (org-element-property :end elem))
23645 (user-error "Cannot drag element forward"))
23646 (goto-char (org-element-property :end elem))
23647 (let ((next-elem (org-element-at-point)))
23648 (when (or (org-element-nested-p elem next-elem)
23649 (and (eq (org-element-type next-elem) 'headline)
23650 (not (eq (org-element-type elem) 'headline))))
23651 (goto-char pos)
23652 (user-error "Cannot drag element forward"))
23653 ;; Compute new position of point: it's shifted by NEXT-ELEM
23654 ;; body's length (without final blanks) and by the length of
23655 ;; blanks between ELEM and NEXT-ELEM.
23656 (let ((size-next (- (save-excursion
23657 (goto-char (org-element-property :end next-elem))
23658 (skip-chars-backward " \r\t\n")
23659 (forward-line)
23660 ;; Small correction if buffer doesn't end
23661 ;; with a newline character.
23662 (if (and (eolp) (not (bolp))) (1+ (point)) (point)))
23663 (org-element-property :begin next-elem)))
23664 (size-blank (- (org-element-property :end elem)
23665 (save-excursion
23666 (goto-char (org-element-property :end elem))
23667 (skip-chars-backward " \r\t\n")
23668 (forward-line)
23669 (point)))))
23670 (org-element-swap-A-B elem next-elem)
23671 (goto-char (+ pos size-next size-blank))))))
23673 (defun org-drag-line-forward (arg)
23674 "Drag the line at point ARG lines forward."
23675 (interactive "p")
23676 (dotimes (n (abs arg))
23677 (let ((c (current-column)))
23678 (if (< 0 arg)
23679 (progn
23680 (beginning-of-line 2)
23681 (transpose-lines 1)
23682 (beginning-of-line 0))
23683 (transpose-lines 1)
23684 (beginning-of-line -1))
23685 (org-move-to-column c))))
23687 (defun org-drag-line-backward (arg)
23688 "Drag the line at point ARG lines backward."
23689 (interactive "p")
23690 (org-drag-line-forward (- arg)))
23692 (defun org-mark-element ()
23693 "Put point at beginning of this element, mark at end.
23695 Interactively, if this command is repeated or (in Transient Mark
23696 mode) if the mark is active, it marks the next element after the
23697 ones already marked."
23698 (interactive)
23699 (let (deactivate-mark)
23700 (if (and (org-called-interactively-p 'any)
23701 (or (and (eq last-command this-command) (mark t))
23702 (and transient-mark-mode mark-active)))
23703 (set-mark
23704 (save-excursion
23705 (goto-char (mark))
23706 (goto-char (org-element-property :end (org-element-at-point)))))
23707 (let ((element (org-element-at-point)))
23708 (end-of-line)
23709 (push-mark (org-element-property :end element) t t)
23710 (goto-char (org-element-property :begin element))))))
23712 (defun org-narrow-to-element ()
23713 "Narrow buffer to current element."
23714 (interactive)
23715 (let ((elem (org-element-at-point)))
23716 (cond
23717 ((eq (car elem) 'headline)
23718 (narrow-to-region
23719 (org-element-property :begin elem)
23720 (org-element-property :end elem)))
23721 ((memq (car elem) org-element-greater-elements)
23722 (narrow-to-region
23723 (org-element-property :contents-begin elem)
23724 (org-element-property :contents-end elem)))
23726 (narrow-to-region
23727 (org-element-property :begin elem)
23728 (org-element-property :end elem))))))
23730 (defun org-transpose-element ()
23731 "Transpose current and previous elements, keeping blank lines between.
23732 Point is moved after both elements."
23733 (interactive)
23734 (org-skip-whitespace)
23735 (let ((end (org-element-property :end (org-element-at-point))))
23736 (org-drag-element-backward)
23737 (goto-char end)))
23739 (defun org-unindent-buffer ()
23740 "Un-indent the visible part of the buffer.
23741 Relative indentation (between items, inside blocks, etc.) isn't
23742 modified."
23743 (interactive)
23744 (unless (eq major-mode 'org-mode)
23745 (user-error "Cannot un-indent a buffer not in Org mode"))
23746 (let* ((parse-tree (org-element-parse-buffer 'greater-element))
23747 unindent-tree ; For byte-compiler.
23748 (unindent-tree
23749 (function
23750 (lambda (contents)
23751 (mapc
23752 (lambda (element)
23753 (if (memq (org-element-type element) '(headline section))
23754 (funcall unindent-tree (org-element-contents element))
23755 (save-excursion
23756 (save-restriction
23757 (narrow-to-region
23758 (org-element-property :begin element)
23759 (org-element-property :end element))
23760 (org-do-remove-indentation)))))
23761 (reverse contents))))))
23762 (funcall unindent-tree (org-element-contents parse-tree))))
23764 (defun org-show-subtree ()
23765 "Show everything after this heading at deeper levels."
23766 (interactive)
23767 (outline-flag-region
23768 (point)
23769 (save-excursion
23770 (org-end-of-subtree t t))
23771 nil))
23773 (defun org-show-entry ()
23774 "Show the body directly following this heading.
23775 Show the heading too, if it is currently invisible."
23776 (interactive)
23777 (save-excursion
23778 (condition-case nil
23779 (progn
23780 (org-back-to-heading t)
23781 (outline-flag-region
23782 (max (point-min) (1- (point)))
23783 (save-excursion
23784 (if (re-search-forward
23785 (concat "[\r\n]\\(" org-outline-regexp "\\)") nil t)
23786 (match-beginning 1)
23787 (point-max)))
23788 nil)
23789 (org-cycle-hide-drawers 'children))
23790 (error nil))))
23792 (defun org-make-options-regexp (kwds &optional extra)
23793 "Make a regular expression for keyword lines."
23794 (concat
23795 "^#\\+\\("
23796 (mapconcat 'regexp-quote kwds "\\|")
23797 (if extra (concat "\\|" extra))
23798 "\\):[ \t]*\\(.*\\)"))
23800 ;; Make isearch reveal the necessary context
23801 (defun org-isearch-end ()
23802 "Reveal context after isearch exits."
23803 (when isearch-success ; only if search was successful
23804 (if (featurep 'xemacs)
23805 ;; Under XEmacs, the hook is run in the correct place,
23806 ;; we directly show the context.
23807 (org-show-context 'isearch)
23808 ;; In Emacs the hook runs *before* restoring the overlays.
23809 ;; So we have to use a one-time post-command-hook to do this.
23810 ;; (Emacs 22 has a special variable, see function `org-mode')
23811 (unless (and (boundp 'isearch-mode-end-hook-quit)
23812 isearch-mode-end-hook-quit)
23813 ;; Only when the isearch was not quitted.
23814 (org-add-hook 'post-command-hook 'org-isearch-post-command
23815 'append 'local)))
23816 (org-fix-ellipsis-at-bol)))
23818 (defun org-isearch-post-command ()
23819 "Remove self from hook, and show context."
23820 (remove-hook 'post-command-hook 'org-isearch-post-command 'local)
23821 (org-show-context 'isearch))
23824 ;;;; Integration with and fixes for other packages
23826 ;;; Imenu support
23828 (defvar org-imenu-markers nil
23829 "All markers currently used by Imenu.")
23830 (make-variable-buffer-local 'org-imenu-markers)
23832 (defun org-imenu-new-marker (&optional pos)
23833 "Return a new marker for use by Imenu, and remember the marker."
23834 (let ((m (make-marker)))
23835 (move-marker m (or pos (point)))
23836 (push m org-imenu-markers)
23839 (defun org-imenu-get-tree ()
23840 "Produce the index for Imenu."
23841 (mapc (lambda (x) (move-marker x nil)) org-imenu-markers)
23842 (setq org-imenu-markers nil)
23843 (let* ((n org-imenu-depth)
23844 (re (concat "^" (org-get-limited-outline-regexp)))
23845 (subs (make-vector (1+ n) nil))
23846 (last-level 0)
23847 m level head0 head)
23848 (save-excursion
23849 (save-restriction
23850 (widen)
23851 (goto-char (point-max))
23852 (while (re-search-backward re nil t)
23853 (setq level (org-reduced-level (funcall outline-level)))
23854 (when (and (<= level n)
23855 (looking-at org-complex-heading-regexp)
23856 (setq head0 (org-match-string-no-properties 4)))
23857 (setq head (org-link-display-format head0)
23858 m (org-imenu-new-marker))
23859 (org-add-props head nil 'org-imenu-marker m 'org-imenu t)
23860 (if (>= level last-level)
23861 (push (cons head m) (aref subs level))
23862 (push (cons head (aref subs (1+ level))) (aref subs level))
23863 (loop for i from (1+ level) to n do (aset subs i nil)))
23864 (setq last-level level)))))
23865 (aref subs 1)))
23867 (eval-after-load "imenu"
23868 '(progn
23869 (add-hook 'imenu-after-jump-hook
23870 (lambda ()
23871 (if (derived-mode-p 'org-mode)
23872 (org-show-context 'org-goto))))))
23874 (defun org-link-display-format (link)
23875 "Replace a link with its the description.
23876 If there is no description, use the link target."
23877 (save-match-data
23878 (if (string-match org-bracket-link-analytic-regexp link)
23879 (replace-match (if (match-end 5)
23880 (match-string 5 link)
23881 (concat (match-string 1 link)
23882 (match-string 3 link)))
23883 nil t link)
23884 link)))
23886 (defun org-toggle-link-display ()
23887 "Toggle the literal or descriptive display of links."
23888 (interactive)
23889 (if org-descriptive-links
23890 (progn (org-remove-from-invisibility-spec '(org-link))
23891 (org-restart-font-lock)
23892 (setq org-descriptive-links nil))
23893 (progn (add-to-invisibility-spec '(org-link))
23894 (org-restart-font-lock)
23895 (setq org-descriptive-links t))))
23897 ;; Speedbar support
23899 (defvar org-speedbar-restriction-lock-overlay (make-overlay 1 1)
23900 "Overlay marking the agenda restriction line in speedbar.")
23901 (overlay-put org-speedbar-restriction-lock-overlay
23902 'face 'org-agenda-restriction-lock)
23903 (overlay-put org-speedbar-restriction-lock-overlay
23904 'help-echo "Agendas are currently limited to this item.")
23905 (org-detach-overlay org-speedbar-restriction-lock-overlay)
23907 (defun org-speedbar-set-agenda-restriction ()
23908 "Restrict future agenda commands to the location at point in speedbar.
23909 To get rid of the restriction, use \\[org-agenda-remove-restriction-lock]."
23910 (interactive)
23911 (require 'org-agenda)
23912 (let (p m tp np dir txt)
23913 (cond
23914 ((setq p (text-property-any (point-at-bol) (point-at-eol)
23915 'org-imenu t))
23916 (setq m (get-text-property p 'org-imenu-marker))
23917 (with-current-buffer (marker-buffer m)
23918 (goto-char m)
23919 (org-agenda-set-restriction-lock 'subtree)))
23920 ((setq p (text-property-any (point-at-bol) (point-at-eol)
23921 'speedbar-function 'speedbar-find-file))
23922 (setq tp (previous-single-property-change
23923 (1+ p) 'speedbar-function)
23924 np (next-single-property-change
23925 tp 'speedbar-function)
23926 dir (speedbar-line-directory)
23927 txt (buffer-substring-no-properties (or tp (point-min))
23928 (or np (point-max))))
23929 (with-current-buffer (find-file-noselect
23930 (let ((default-directory dir))
23931 (expand-file-name txt)))
23932 (unless (derived-mode-p 'org-mode)
23933 (user-error "Cannot restrict to non-Org-mode file"))
23934 (org-agenda-set-restriction-lock 'file)))
23935 (t (user-error "Don't know how to restrict Org-mode's agenda")))
23936 (move-overlay org-speedbar-restriction-lock-overlay
23937 (point-at-bol) (point-at-eol))
23938 (setq current-prefix-arg nil)
23939 (org-agenda-maybe-redo)))
23941 (defvar speedbar-file-key-map)
23942 (declare-function speedbar-add-supported-extension "speedbar" (extension))
23943 (eval-after-load "speedbar"
23944 '(progn
23945 (speedbar-add-supported-extension ".org")
23946 (define-key speedbar-file-key-map "<" 'org-speedbar-set-agenda-restriction)
23947 (define-key speedbar-file-key-map "\C-c\C-x<" 'org-speedbar-set-agenda-restriction)
23948 (define-key speedbar-file-key-map ">" 'org-agenda-remove-restriction-lock)
23949 (define-key speedbar-file-key-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
23950 (add-hook 'speedbar-visiting-tag-hook
23951 (lambda () (and (derived-mode-p 'org-mode) (org-show-context 'org-goto))))))
23953 ;;; Fixes and Hacks for problems with other packages
23955 ;; Make flyspell not check words in links, to not mess up our keymap
23956 (defvar org-element-affiliated-keywords) ; From org-element.el
23957 (defvar org-element-block-name-alist) ; From org-element.el
23958 (defun org-mode-flyspell-verify ()
23959 "Don't let flyspell put overlays at active buttons, or on
23960 {todo,all-time,additional-option-like}-keywords."
23961 (require 'org-element) ; For `org-element-affiliated-keywords'
23962 (let ((pos (max (1- (point)) (point-min)))
23963 (word (thing-at-point 'word)))
23964 (and (not (get-text-property pos 'keymap))
23965 (not (get-text-property pos 'org-no-flyspell))
23966 (not (member word org-todo-keywords-1))
23967 (not (member word org-all-time-keywords))
23968 (not (member word org-options-keywords))
23969 (not (member word (mapcar 'car org-startup-options)))
23970 (not (member-ignore-case word org-element-affiliated-keywords))
23971 (not (member-ignore-case word (org-get-export-keywords)))
23972 (not (member-ignore-case
23973 word (mapcar 'car org-element-block-name-alist)))
23974 (not (member-ignore-case word '("BEGIN" "END" "ATTR")))
23975 (not (org-in-src-block-p)))))
23977 (defun org-remove-flyspell-overlays-in (beg end)
23978 "Remove flyspell overlays in region."
23979 (and (org-bound-and-true-p flyspell-mode)
23980 (fboundp 'flyspell-delete-region-overlays)
23981 (flyspell-delete-region-overlays beg end))
23982 (add-text-properties beg end '(org-no-flyspell t)))
23984 ;; Make `bookmark-jump' shows the jump location if it was hidden.
23985 (eval-after-load "bookmark"
23986 '(if (boundp 'bookmark-after-jump-hook)
23987 ;; We can use the hook
23988 (add-hook 'bookmark-after-jump-hook 'org-bookmark-jump-unhide)
23989 ;; Hook not available, use advice
23990 (defadvice bookmark-jump (after org-make-visible activate)
23991 "Make the position visible."
23992 (org-bookmark-jump-unhide))))
23994 ;; Make sure saveplace shows the location if it was hidden
23995 (eval-after-load "saveplace"
23996 '(defadvice save-place-find-file-hook (after org-make-visible activate)
23997 "Make the position visible."
23998 (org-bookmark-jump-unhide)))
24000 ;; Make sure ecb shows the location if it was hidden
24001 (eval-after-load "ecb"
24002 '(defadvice ecb-method-clicked (after esf/org-show-context activate)
24003 "Make hierarchy visible when jumping into location from ECB tree buffer."
24004 (if (derived-mode-p 'org-mode)
24005 (org-show-context))))
24007 (defun org-bookmark-jump-unhide ()
24008 "Unhide the current position, to show the bookmark location."
24009 (and (derived-mode-p 'org-mode)
24010 (or (outline-invisible-p)
24011 (save-excursion (goto-char (max (point-min) (1- (point))))
24012 (outline-invisible-p)))
24013 (org-show-context 'bookmark-jump)))
24015 ;; Make session.el ignore our circular variable
24016 (defvar session-globals-exclude)
24017 (eval-after-load "session"
24018 '(add-to-list 'session-globals-exclude 'org-mark-ring))
24020 ;;;; Finish up
24022 (provide 'org)
24024 (run-hooks 'org-load-hook)
24026 ;;; org.el ends here