1 ;;; org.el --- Outline-based notes management and organizer
3 ;; Carstens outline-mode for keeping track of everything.
4 ;; Copyright (C) 2004-2014 Free Software Foundation, Inc.
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/>.
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
46 ;; Installation and Activation
47 ;; ---------------------------
48 ;; See the corresponding sections in the manual at
50 ;; http://orgmode.org/org.html#Installation
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
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
78 (require 'format-spec
)
80 (or (equal this-command
'eval-buffer
)
82 (load (concat (file-name-directory load-file-name
)
86 (message "WARNING: No org-loaddefs.el file could be found from where org.el is loaded.")
88 (message "You need to run \"make\" or \"make autoloads\" from Org lisp directory")
94 ;; `org-outline-regexp' ought to be a defconst but is let-bound in
95 ;; some places -- e.g. see the macro `org-with-limited-levels'.
97 ;; In Org buffers, the value of `outline-regexp' is that of
98 ;; `org-outline-regexp'. The only function still directly relying on
99 ;; `outline-regexp' is `org-overview' so that `org-cycle' can do its
100 ;; job when `orgstruct-mode' is active.
101 (defvar org-outline-regexp
"\\*+ "
102 "Regexp to match Org headlines.")
104 (defvar org-outline-regexp-bol
"^\\*+ "
105 "Regexp to match Org headlines.
106 This is similar to `org-outline-regexp' but additionally makes
107 sure that we are at the beginning of the line.")
109 (defvar org-heading-regexp
"^\\(\\*+\\)\\(?: +\\(.*?\\)\\)?[ \t]*$"
110 "Matches a headline, putting stars and text into groups.
111 Stars are put in group 1 and the trimmed body in group 2.")
113 ;; Emacs 22 calendar compatibility: Make sure the new variables are available
114 (unless (boundp 'calendar-view-holidays-initially-flag
)
115 (org-defvaralias 'calendar-view-holidays-initially-flag
116 'view-calendar-holidays-initially
))
117 (unless (boundp 'calendar-view-diary-initially-flag
)
118 (org-defvaralias 'calendar-view-diary-initially-flag
119 'view-diary-entries-initially
))
120 (unless (boundp 'diary-fancy-buffer
)
121 (org-defvaralias 'diary-fancy-buffer
'fancy-diary-buffer
))
123 (declare-function org-add-archive-files
"org-archive" (files))
125 (declare-function org-inlinetask-at-task-p
"org-inlinetask" ())
126 (declare-function org-inlinetask-outline-regexp
"org-inlinetask" ())
127 (declare-function org-inlinetask-toggle-visibility
"org-inlinetask" ())
128 (declare-function org-pop-to-buffer-same-window
"org-compat" (&optional buffer-or-name norecord label
))
129 (declare-function org-clock-get-last-clock-out-time
"org-clock" ())
130 (declare-function org-clock-timestamps-up
"org-clock" (&optional n
))
131 (declare-function org-clock-timestamps-down
"org-clock" (&optional n
))
132 (declare-function org-clock-remove-overlays
"org-clock" (&optional beg end noremove
))
133 (declare-function org-clock-sum
"org-clock" (&optional tstart tend headline-filter propname
))
134 (declare-function org-clock-sum-current-item
"org-clock" (&optional tstart
))
135 (declare-function org-clock-update-time-maybe
"org-clock" ())
136 (declare-function org-clocktable-shift
"org-clock" (dir n
))
138 (declare-function org-babel-tangle-file
"ob-tangle" (file &optional target-file lang
))
139 (declare-function org-babel-do-in-edit-buffer
"ob-core" (&rest body
))
140 (declare-function orgtbl-mode
"org-table" (&optional arg
))
141 (declare-function org-clock-out
"org-clock" (&optional switch-to-state fail-quietly at-time
))
142 (declare-function org-beamer-mode
"ox-beamer" ())
143 (declare-function org-table-blank-field
"org-table" ())
144 (declare-function org-table-edit-field
"org-table" (arg))
145 (declare-function org-table-insert-row
"org-table" (&optional arg
))
146 (declare-function org-table-justify-field-maybe
"org-table" (&optional new
))
147 (declare-function org-table-set-constants
"org-table" ())
148 (declare-function org-table-calc-current-TBLFM
"org-table" (&optional arg
))
149 (declare-function org-id-get-create
"org-id" (&optional force
))
150 (declare-function org-add-archive-files
"org-archive" (files))
151 (declare-function org-id-find-id-file
"org-id" (id))
152 (declare-function org-tags-view
"org-agenda" (&optional todo-only match
))
153 (declare-function org-agenda-list
"org-agenda" (&optional arg start-day span
))
154 (declare-function org-agenda-redo
"org-agenda" (&optional all
))
155 (declare-function org-table-align
"org-table" ())
156 (declare-function org-table-begin
"org-table" (&optional table-type
))
157 (declare-function org-table-blank-field
"org-table" ())
158 (declare-function org-table-end
"org-table" (&optional table-type
))
159 (declare-function org-table-end-of-field
"org-table" (&optional n
))
160 (declare-function org-table-insert-row
"org-table" (&optional arg
))
161 (declare-function org-table-paste-rectangle
"org-table" ())
162 (declare-function org-table-maybe-eval-formula
"org-table" ())
163 (declare-function org-table-maybe-recalculate-line
"org-table" ())
165 (declare-function org-element--parse-objects
"org-element"
166 (beg end acc restriction
))
167 (declare-function org-element-at-point
"org-element" ())
168 (declare-function org-element-cache-reset
"org-element" (&optional all
))
169 (declare-function org-element-cache-refresh
"org-element" (pos))
170 (declare-function org-element-contents
"org-element" (element))
171 (declare-function org-element-context
"org-element" (&optional element
))
172 (declare-function org-element-interpret-data
"org-element"
173 (data &optional parent
))
174 (declare-function org-element-map
"org-element"
175 (data types fun
&optional info first-match no-recursion
))
176 (declare-function org-element-nested-p
"org-element" (elem-a elem-b
))
177 (declare-function org-element-parse-buffer
"org-element"
178 (&optional granularity visible-only
))
179 (declare-function org-element-property
"org-element" (property element
))
180 (declare-function org-element-put-property
"org-element"
181 (element property value
))
182 (declare-function org-element-swap-A-B
"org-element" (elem-a elem-b
))
183 (declare-function org-element--parse-objects
"org-element"
184 (beg end acc restriction
))
185 (declare-function org-element-parse-buffer
"org-element"
186 (&optional granularity visible-only
))
187 (declare-function org-element-restriction
"org-element" (element))
188 (declare-function org-element-type
"org-element" (element))
190 (defsubst org-uniquify
(list)
191 "Non-destructively remove duplicate elements from LIST."
192 (let ((res (copy-sequence list
))) (delete-dups res
)))
194 (defsubst org-get-at-bol
(property)
195 "Get text property PROPERTY at the beginning of line."
196 (get-text-property (point-at-bol) property
))
198 (defsubst org-trim
(s)
199 "Remove whitespace at the beginning and the end of string S."
200 (replace-regexp-in-string
202 (replace-regexp-in-string "[ \t\n\r]+\\'" "" s
)))
204 ;; load languages based on value of `org-babel-load-languages'
205 (defvar org-babel-load-languages
)
208 (defun org-babel-do-load-languages (sym value
)
209 "Load the languages defined in `org-babel-load-languages'."
210 (set-default sym value
)
212 (let ((active (cdr pair
)) (lang (symbol-name (car pair
))))
215 (require (intern (concat "ob-" lang
))))
217 (funcall 'fmakunbound
218 (intern (concat "org-babel-execute:" lang
)))
219 (funcall 'fmakunbound
220 (intern (concat "org-babel-expand-body:" lang
)))))))
221 org-babel-load-languages
))
223 (declare-function org-babel-tangle-file
"ob-tangle" (file &optional target-file lang
))
225 (defun org-babel-load-file (file &optional compile
)
226 "Load Emacs Lisp source code blocks in the Org-mode FILE.
227 This function exports the source code using `org-babel-tangle'
228 and then loads the resulting file using `load-file'. With prefix
229 arg (noninteractively: 2nd arg) COMPILE the tangled Emacs Lisp
230 file to byte-code before it is loaded."
231 (interactive "fFile to load: \nP")
232 (let* ((age (lambda (file)
234 (time-subtract (current-time)
235 (nth 5 (or (file-attributes (file-truename file
))
236 (file-attributes file
)))))))
237 (base-name (file-name-sans-extension file
))
238 (exported-file (concat base-name
".el")))
239 ;; tangle if the org-mode file is newer than the elisp file
240 (unless (and (file-exists-p exported-file
)
241 (> (funcall age file
) (funcall age exported-file
)))
243 (car (org-babel-tangle-file file exported-file
"emacs-lisp"))))
246 (progn (byte-compile-file exported-file
'load
)
247 "Compiled and loaded")
248 (progn (load-file exported-file
) "Loaded"))
251 (defcustom org-babel-load-languages
'((emacs-lisp . t
))
252 "Languages which can be evaluated in Org-mode buffers.
253 This list can be used to load support for any of the languages
254 below, note that each language will depend on a different set of
255 system executables and/or Emacs modes. When a language is
256 \"loaded\", then code blocks in that language can be evaluated
257 with `org-babel-execute-src-block' bound by default to C-c
258 C-c (note the `org-babel-no-eval-on-ctrl-c-ctrl-c' variable can
259 be set to remove code block evaluation from the C-c C-c
260 keybinding. By default only Emacs Lisp (which has no
261 requirements) is loaded."
263 :set
'org-babel-do-load-languages
265 :type
'(alist :tag
"Babel Languages"
268 (const :tag
"Awk" awk
)
271 (const :tag
"Asymptote" asymptote
)
272 (const :tag
"Calc" calc
)
273 (const :tag
"Clojure" clojure
)
274 (const :tag
"CSS" css
)
275 (const :tag
"Ditaa" ditaa
)
276 (const :tag
"Dot" dot
)
277 (const :tag
"Emacs Lisp" emacs-lisp
)
278 (const :tag
"Fortran" fortran
)
279 (const :tag
"Gnuplot" gnuplot
)
280 (const :tag
"Haskell" haskell
)
283 (const :tag
"Java" java
)
284 (const :tag
"Javascript" js
)
285 (const :tag
"LaTeX" latex
)
286 (const :tag
"Ledger" ledger
)
287 (const :tag
"Lilypond" lilypond
)
288 (const :tag
"Lisp" lisp
)
289 (const :tag
"Makefile" makefile
)
290 (const :tag
"Maxima" maxima
)
291 (const :tag
"Matlab" matlab
)
292 (const :tag
"Mscgen" mscgen
)
293 (const :tag
"Ocaml" ocaml
)
294 (const :tag
"Octave" octave
)
295 (const :tag
"Org" org
)
296 (const :tag
"Perl" perl
)
297 (const :tag
"Pico Lisp" picolisp
)
298 (const :tag
"PlantUML" plantuml
)
299 (const :tag
"Python" python
)
300 (const :tag
"Ruby" ruby
)
301 (const :tag
"Sass" sass
)
302 (const :tag
"Scala" scala
)
303 (const :tag
"Scheme" scheme
)
304 (const :tag
"Screen" screen
)
305 (const :tag
"Shell Script" shell
)
306 (const :tag
"Shen" shen
)
307 (const :tag
"Sql" sql
)
308 (const :tag
"Sqlite" sqlite
)
309 (const :tag
"ebnf2ps" ebnf2ps
))
310 :value-type
(boolean :tag
"Activate" :value t
)))
312 ;;;; Customization variables
313 (defcustom org-clone-delete-id nil
314 "Remove ID property of clones of a subtree.
315 When non-nil, clones of a subtree don't inherit the ID property.
316 Otherwise they inherit the ID property with a new unique
326 (defun org-version (&optional here full message
)
327 "Show the org-mode version.
328 Interactively, or when MESSAGE is non-nil, show it in echo area.
329 With prefix argument, or when HERE is non-nil, insert it at point.
330 In non-interactive uses, a reduced version string is output unless
332 (interactive (list current-prefix-arg t
(not current-prefix-arg
)))
333 (let* ((org-dir (ignore-errors (org-find-library-dir "org")))
334 (save-load-suffixes (when (boundp 'load-suffixes
) load-suffixes
))
335 (load-suffixes (list ".el"))
336 (org-install-dir (ignore-errors (org-find-library-dir "org-loaddefs")))
338 (and (fboundp 'org-release
) (fboundp 'org-git-version
))
339 (org-load-noerror-mustsuffix (concat org-dir
"org-version"))))
340 (load-suffixes save-load-suffixes
)
341 (org-version (org-release))
342 (git-version (org-git-version))
343 (version (format "Org-mode version %s (%s @ %s)"
347 (if (string= org-dir org-install-dir
)
349 (concat "mixed installation! " org-install-dir
" and " org-dir
))
350 "org-loaddefs.el can not be found!")))
351 (version1 (if full version org-version
)))
352 (when here
(insert version1
))
353 (when message
(message "%s" version1
))
356 (defconst org-version
(org-version))
363 (defconst org-block-regexp
364 "^[ \t]*#\\+begin_?\\([^ \n]+\\)\\(\\([^\n]+\\)\\)?\n\\([^\000]+?\\)#\\+end_?\\1[ \t]*$"
365 "Regular expression for hiding blocks.")
367 (defconst org-dblock-start-re
368 "^[ \t]*#\\+\\(?:BEGIN\\|begin\\):[ \t]+\\(\\S-+\\)\\([ \t]+\\(.*\\)\\)?"
369 "Matches the start line of a dynamic block, with parameters.")
371 (defconst org-dblock-end-re
"^[ \t]*#\\+\\(?:END\\|end\\)\\([: \t\r\n]\\|$\\)"
372 "Matches the end of a dynamic block.")
374 ;;;; Clock and Planning
376 (defconst org-clock-string
"CLOCK:"
377 "String used as prefix for timestamps clocking work hours on an item.")
379 (defconst org-closed-string
"CLOSED:"
380 "String used as the prefix for timestamps logging closing a TODO entry.")
382 (defconst org-deadline-string
"DEADLINE:"
383 "String to mark deadline entries.
384 A deadline is this string, followed by a time stamp. Should be a word,
385 terminated by a colon. You can insert a schedule keyword and
386 a timestamp with \\[org-deadline].")
388 (defconst org-scheduled-string
"SCHEDULED:"
389 "String to mark scheduled TODO entries.
390 A schedule is this string, followed by a time stamp. Should be a word,
391 terminated by a colon. You can insert a schedule keyword and
392 a timestamp with \\[org-schedule].")
394 (defconst org-planning-or-clock-line-re
397 (list org-clock-string org-closed-string org-deadline-string
398 org-scheduled-string
)
400 "Matches a line with planning or clock info.
401 Matched keyword is in group 1.")
405 (defconst org-drawer-regexp
"^[ \t]*:\\(\\(?:\\w\\|[-_]\\)+\\):[ \t]*$"
406 "Matches first or last line of a hidden block.
407 Group 1 contains drawer's name or \"END\".")
409 (defconst org-property-start-re
"^[ \t]*:PROPERTIES:[ \t]*$"
410 "Regular expression matching the first line of a property drawer.")
412 (defconst org-property-end-re
"^[ \t]*:END:[ \t]*$"
413 "Regular expression matching the last line of a property drawer.")
415 (defconst org-clock-drawer-start-re
"^[ \t]*:CLOCK:[ \t]*$"
416 "Regular expression matching the first line of a clock drawer.")
418 (defconst org-clock-drawer-end-re
"^[ \t]*:END:[ \t]*$"
419 "Regular expression matching the last line of a clock drawer.")
421 (defconst org-property-drawer-re
422 (concat "\\(" org-property-start-re
"\\)[^\000]*?\\("
423 org-property-end-re
"\\)\n?")
424 "Matches an entire property drawer.")
426 (defconst org-clock-drawer-re
427 (concat "\\(" org-clock-drawer-start-re
"\\)[^\000]*?\\("
428 org-clock-drawer-end-re
"\\)\n?")
429 "Matches an entire clock drawer.")
433 (defconst org-heading-keyword-regexp-format
434 "^\\(\\*+\\)\\(?: +%s\\)\\(?: +\\(.*?\\)\\)?[ \t]*$"
435 "Printf format for a regexp matching a headline with some keyword.
436 This regexp will match the headline of any node which has the
437 exact keyword that is put into the format. The keyword isn't in
438 any group by default, but the stars and the body are.")
440 (defconst org-heading-keyword-maybe-regexp-format
441 "^\\(\\*+\\)\\(?: +%s\\)?\\(?: +\\(.*?\\)\\)?[ \t]*$"
442 "Printf format for a regexp matching a headline, possibly with some keyword.
443 This regexp can match any headline with the specified keyword, or
444 without a keyword. The keyword isn't in any group by default,
445 but the stars and the body are.")
447 (defconst org-archive-tag
"ARCHIVE"
448 "The tag that marks a subtree as archived.
449 An archived subtree does not open during visibility cycling, and does
450 not contribute to the agenda listings.")
452 (defconst org-comment-string
"COMMENT"
453 "Entries starting with this keyword will never be exported.
454 An entry can be toggled between COMMENT and normal with
455 \\[org-toggle-comment].")
458 ;;;; LaTeX Environments and Fragments
460 (defconst org-latex-regexps
461 '(("begin" "^[ \t]*\\(\\\\begin{\\([a-zA-Z0-9\\*]+\\)[^\000]+?\\\\end{\\2}\\)" 1 t
)
462 ;; ("$" "\\([ (]\\|^\\)\\(\\(\\([$]\\)\\([^ \r\n,.$].*?\\(\n.*?\\)\\{0,5\\}[^ \r\n,.$]\\)\\4\\)\\)\\([ .,?;:'\")]\\|$\\)" 2 nil)
463 ;; \000 in the following regex is needed for org-inside-LaTeX-fragment-p
464 ("$1" "\\([^$]\\|^\\)\\(\\$[^ \r\n,;.$]\\$\\)\\([- .,?;:'\")\000]\\|$\\)" 2 nil
)
465 ("$" "\\([^$]\\|^\\)\\(\\(\\$\\([^ \r\n,;.$][^$\n\r]*?\\(\n[^$\n\r]*?\\)\\{0,2\\}[^ \r\n,.$]\\)\\$\\)\\)\\([- .,?;:'\")\000]\\|$\\)" 2 nil
)
466 ("\\(" "\\\\([^\000]*?\\\\)" 0 nil
)
467 ("\\[" "\\\\\\[[^\000]*?\\\\\\]" 0 nil
)
468 ("$$" "\\$\\$[^\000]*?\\$\\$" 0 nil
))
469 "Regular expressions for matching embedded LaTeX.")
473 (defconst org-effort-property
"Effort"
474 "The property that is being used to keep track of effort estimates.
475 Effort estimates given in this property need to have the format H:MM.")
479 (defconst org-table-any-line-regexp
"^[ \t]*\\(|\\|\\+-[-+]\\)"
480 "Detect an org-type or table-type table.")
482 (defconst org-table-line-regexp
"^[ \t]*|"
483 "Detect an org-type table line.")
485 (defconst org-table-dataline-regexp
"^[ \t]*|[^-]"
486 "Detect an org-type table line.")
488 (defconst org-table-hline-regexp
"^[ \t]*|-"
489 "Detect an org-type table hline.")
491 (defconst org-table1-hline-regexp
"^[ \t]*\\+-[-+]"
492 "Detect a table-type table hline.")
494 (defconst org-table-any-border-regexp
"^[ \t]*[^|+ \t]"
495 "Detect the first line outside a table when searching from within it.
496 This works for both table types.")
498 (defconst org-TBLFM-regexp
"^[ \t]*#\\+TBLFM: "
499 "Detect a #+TBLFM line.")
503 (defconst org-ts-regexp
"<\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^\r\n>]*?\\)>"
504 "Regular expression for fast time stamp matching.")
506 (defconst org-ts-regexp-both
"[[<]\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^]\r\n>]*?\\)[]>]"
507 "Regular expression for fast time stamp matching.")
509 (defconst org-ts-regexp0
510 "\\(\\([0-9]\\{4\\}\\)-\\([0-9]\\{2\\}\\)-\\([0-9]\\{2\\}\\)\\( +[^]+0-9>\r\n -]+\\)?\\( +\\([0-9]\\{1,2\\}\\):\\([0-9]\\{2\\}\\)\\)?\\)"
511 "Regular expression matching time strings for analysis.
512 This one does not require the space after the date, so it can be used
513 on a string that terminates immediately after the date.")
515 (defconst org-ts-regexp1
"\\(\\([0-9]\\{4\\}\\)-\\([0-9]\\{2\\}\\)-\\([0-9]\\{2\\}\\) *\\([^]+0-9>\r\n -]*\\)\\( \\([0-9]\\{1,2\\}\\):\\([0-9]\\{2\\}\\)\\)?\\)"
516 "Regular expression matching time strings for analysis.")
518 (defconst org-ts-regexp2
(concat "<" org-ts-regexp1
"[^>\n]\\{0,16\\}>")
519 "Regular expression matching time stamps, with groups.")
521 (defconst org-ts-regexp3
(concat "[[<]" org-ts-regexp1
"[^]>\n]\\{0,16\\}[]>]")
522 "Regular expression matching time stamps (also [..]), with groups.")
524 (defconst org-tr-regexp
(concat org-ts-regexp
"--?-?" org-ts-regexp
)
525 "Regular expression matching a time stamp range.")
527 (defconst org-tr-regexp-both
528 (concat org-ts-regexp-both
"--?-?" org-ts-regexp-both
)
529 "Regular expression matching a time stamp range.")
531 (defconst org-tsr-regexp
(concat org-ts-regexp
"\\(--?-?"
532 org-ts-regexp
"\\)?")
533 "Regular expression matching a time stamp or time stamp range.")
535 (defconst org-tsr-regexp-both
536 (concat org-ts-regexp-both
"\\(--?-?"
537 org-ts-regexp-both
"\\)?")
538 "Regular expression matching a time stamp or time stamp range.
539 The time stamps may be either active or inactive.")
541 (defconst org-repeat-re
542 "<[0-9]\\{4\\}-[0-9][0-9]-[0-9][0-9] [^>\n]*?\\([.+]?\\+[0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)"
543 "Regular expression for specifying repeated events.
544 After a match, group 1 contains the repeat expression.")
546 (defconst org-time-stamp-formats
'("<%Y-%m-%d %a>" .
"<%Y-%m-%d %a %H:%M>")
547 "Formats for `format-time-string' which are used for time stamps.")
550 ;;; The custom variables
553 "Outline-based notes management and organizer."
558 (defcustom org-mode-hook nil
559 "Mode hook for Org-mode, run after the mode was turned on."
563 (defcustom org-load-hook nil
564 "Hook that is run after org.el has been loaded."
568 (defcustom org-log-buffer-setup-hook nil
569 "Hook that is run after an Org log buffer is created."
574 (defvar org-modules
) ; defined below
575 (defvar org-modules-loaded nil
576 "Have the modules been loaded already?")
578 (defun org-load-modules-maybe (&optional force
)
579 "Load all extensions listed in `org-modules'."
580 (when (or force
(not org-modules-loaded
))
582 (condition-case nil
(require ext
)
583 (error (message "Problems while trying to load feature `%s'" ext
))))
585 (setq org-modules-loaded t
)))
587 (defun org-set-modules (var value
)
588 "Set VAR to VALUE and call `org-load-modules-maybe' with the force flag."
590 (when (featurep 'org
)
591 (org-load-modules-maybe 'force
)
592 (org-element-cache-reset 'all
)))
594 (defcustom org-modules
'(org-w3m org-bbdb org-bibtex org-docview org-gnus org-info org-irc org-mhe org-rmail
)
595 "Modules that should always be loaded together with org.el.
597 If a description starts with <C>, the file is not part of Emacs
598 and loading it will require that you have downloaded and properly
599 installed the Org mode distribution.
601 You can also use this system to load external packages (i.e. neither Org
602 core modules, nor modules from the CONTRIB directory). Just add symbols
603 to the end of the list. If the package is called org-xyz.el, then you need
604 to add the symbol `xyz', and the package must have a call to:
608 For export specific modules, see also `org-export-backends'."
610 :set
'org-set-modules
612 :package-version
'(Org .
"8.0")
615 (const :tag
" bbdb: Links to BBDB entries" org-bbdb
)
616 (const :tag
" bibtex: Links to BibTeX entries" org-bibtex
)
617 (const :tag
" crypt: Encryption of subtrees" org-crypt
)
618 (const :tag
" ctags: Access to Emacs tags with links" org-ctags
)
619 (const :tag
" docview: Links to doc-view buffers" org-docview
)
620 (const :tag
" gnus: Links to GNUS folders/messages" org-gnus
)
621 (const :tag
" habit: Track your consistency with habits" org-habit
)
622 (const :tag
" id: Global IDs for identifying entries" org-id
)
623 (const :tag
" info: Links to Info nodes" org-info
)
624 (const :tag
" inlinetask: Tasks independent of outline hierarchy" org-inlinetask
)
625 (const :tag
" irc: Links to IRC/ERC chat sessions" org-irc
)
626 (const :tag
" mhe: Links to MHE folders/messages" org-mhe
)
627 (const :tag
" mouse: Additional mouse support" org-mouse
)
628 (const :tag
" protocol: Intercept calls from emacsclient" org-protocol
)
629 (const :tag
" rmail: Links to RMAIL folders/messages" org-rmail
)
630 (const :tag
" w3m: Special cut/paste from w3m to Org-mode." org-w3m
)
632 (const :tag
"C annotate-file: Annotate a file with org syntax" org-annotate-file
)
633 (const :tag
"C bookmark: Org-mode links to bookmarks" org-bookmark
)
634 (const :tag
"C bullets: Add overlays to headlines stars" org-bullets
)
635 (const :tag
"C checklist: Extra functions for checklists in repeated tasks" org-checklist
)
636 (const :tag
"C choose: Use TODO keywords to mark decisions states" org-choose
)
637 (const :tag
"C collector: Collect properties into tables" org-collector
)
638 (const :tag
"C depend: TODO dependencies for Org-mode\n\t\t\t(PARTIALLY OBSOLETE, see built-in dependency support))" org-depend
)
639 (const :tag
"C drill: Flashcards and spaced repetition for Org-mode" org-drill
)
640 (const :tag
"C elisp-symbol: Org-mode links to emacs-lisp symbols" org-elisp-symbol
)
641 (const :tag
"C eshell Support for links to working directories in eshell" org-eshell
)
642 (const :tag
"C eval-light: Evaluate inbuffer-code on demand" org-eval-light
)
643 (const :tag
"C eval: Include command output as text" org-eval
)
644 (const :tag
"C expiry: Expiry mechanism for Org-mode entries" org-expiry
)
645 (const :tag
"C favtable: Lookup table of favorite references and links" org-favtable
)
646 (const :tag
"C git-link: Provide org links to specific file version" org-git-link
)
647 (const :tag
"C interactive-query: Interactive modification of tags query\n\t\t\t(PARTIALLY OBSOLETE, see secondary filtering)" org-interactive-query
)
648 (const :tag
"C invoice: Help manage client invoices in Org-mode" org-invoice
)
649 (const :tag
"C jira: Add a jira:ticket protocol to Org-mode" org-jira
)
650 (const :tag
"C learn: SuperMemo's incremental learning algorithm" org-learn
)
651 (const :tag
"C mac-iCal Imports events from iCal.app to the Emacs diary" org-mac-iCal
)
652 (const :tag
"C mac-link: Grab links and url from various mac Applications" org-mac-link
)
653 (const :tag
"C mairix: Hook mairix search into Org-mode for different MUAs" org-mairix
)
654 (const :tag
"C man: Support for links to manpages in Org-mode" org-man
)
655 (const :tag
"C mew: Links to Mew folders/messages" org-mew
)
656 (const :tag
"C mtags: Support for muse-like tags" org-mtags
)
657 (const :tag
"C notmuch: Provide org links to notmuch searches or messages" org-notmuch
)
658 (const :tag
"C panel: Simple routines for us with bad memory" org-panel
)
659 (const :tag
"C registry: A registry for Org-mode links" org-registry
)
660 (const :tag
"C screen: Visit screen sessions through Org-mode links" org-screen
)
661 (const :tag
"C secretary: Team management with org-mode" org-secretary
)
662 (const :tag
"C sqlinsert: Convert Org-mode tables to SQL insertions" orgtbl-sqlinsert
)
663 (const :tag
"C toc: Table of contents for Org-mode buffer" org-toc
)
664 (const :tag
"C track: Keep up with Org-mode development" org-track
)
665 (const :tag
"C velocity Something like Notational Velocity for Org" org-velocity
)
666 (const :tag
"C vm: Links to VM folders/messages" org-vm
)
667 (const :tag
"C wikinodes: CamelCase wiki-like links" org-wikinodes
)
668 (const :tag
"C wl: Links to Wanderlust folders/messages" org-wl
)
669 (repeat :tag
"External packages" :inline t
(symbol :tag
"Package"))))
671 (defvar org-export--registered-backends
) ; From ox.el.
672 (declare-function org-export-derived-backend-p
"ox" (backend &rest backends
))
673 (declare-function org-export-backend-name
"ox" (backend))
674 (defcustom org-export-backends
'(ascii html icalendar latex
)
675 "List of export back-ends that should be always available.
677 If a description starts with <C>, the file is not part of Emacs
678 and loading it will require that you have downloaded and properly
679 installed the Org mode distribution.
681 Unlike to `org-modules', libraries in this list will not be
682 loaded along with Org, but only once the export framework is
685 This variable needs to be set before org.el is loaded. If you
686 need to make a change while Emacs is running, use the customize
687 interface or run the following code, where VAL stands for the new
688 value of the variable, after updating it:
691 \(setq org-export--registered-backends
694 \(let ((name (org-export-backend-name backend)))
698 \(and (org-export-derived-backend-p b name)
699 \(throw 'parentp t)))))))
700 org-export--registered-backends))
701 \(let ((new-list (mapcar 'org-export-backend-name
702 org-export--registered-backends)))
703 \(dolist (backend val)
705 \((not (load (format \"ox-%s\" backend) t t))
706 \(message \"Problems while trying to load export back-end `%s'\"
708 \((not (memq backend new-list)) (push backend new-list))))
709 \(set-default 'org-export-backends new-list)))
711 Adding a back-end to this list will also pull the back-end it
716 :package-version
'(Org .
"8.0")
717 :initialize
'custom-initialize-set
718 :set
(lambda (var val
)
719 (if (not (featurep 'ox
)) (set-default var val
)
720 ;; Any back-end not required anymore (not present in VAL and not
721 ;; a parent of any back-end in the new value) is removed from the
722 ;; list of registered back-ends.
723 (setq org-export--registered-backends
726 (let ((name (org-export-backend-name backend
)))
730 (and (org-export-derived-backend-p b name
)
731 (throw 'parentp t
)))))))
732 org-export--registered-backends
))
733 ;; Now build NEW-LIST of both new back-ends and required
735 (let ((new-list (mapcar 'org-export-backend-name
736 org-export--registered-backends
)))
737 (dolist (backend val
)
739 ((not (load (format "ox-%s" backend
) t t
))
740 (message "Problems while trying to load export back-end `%s'"
742 ((not (memq backend new-list
)) (push backend new-list
))))
743 ;; Set VAR to that list with fixed dependencies.
744 (set-default var new-list
))))
745 :type
'(set :greedy t
746 (const :tag
" ascii Export buffer to ASCII format" ascii
)
747 (const :tag
" beamer Export buffer to Beamer presentation" beamer
)
748 (const :tag
" html Export buffer to HTML format" html
)
749 (const :tag
" icalendar Export buffer to iCalendar format" icalendar
)
750 (const :tag
" latex Export buffer to LaTeX format" latex
)
751 (const :tag
" man Export buffer to MAN format" man
)
752 (const :tag
" md Export buffer to Markdown format" md
)
753 (const :tag
" odt Export buffer to ODT format" odt
)
754 (const :tag
" org Export buffer to Org format" org
)
755 (const :tag
" texinfo Export buffer to Texinfo format" texinfo
)
756 (const :tag
"C confluence Export buffer to Confluence Wiki format" confluence
)
757 (const :tag
"C deck Export buffer to deck.js presentations" deck
)
758 (const :tag
"C freemind Export buffer to Freemind mindmap format" freemind
)
759 (const :tag
"C groff Export buffer to Groff format" groff
)
760 (const :tag
"C koma-letter Export buffer to KOMA Scrlttrl2 format" koma-letter
)
761 (const :tag
"C RSS 2.0 Export buffer to RSS 2.0 format" rss
)
762 (const :tag
"C s5 Export buffer to s5 presentations" s5
)
763 (const :tag
"C taskjuggler Export buffer to TaskJuggler format" taskjuggler
)))
768 (condition-case nil
(require (intern (format "ox-%s" backend
)))
769 (error (message "Problems while trying to load export back-end `%s'"
771 org-export-backends
))
773 (defcustom org-support-shift-select nil
774 "Non-nil means make shift-cursor commands select text when possible.
776 In Emacs 23, when `shift-select-mode' is on, shifted cursor keys
777 start selecting a region, or enlarge regions started in this way.
778 In Org-mode, in special contexts, these same keys are used for
779 other purposes, important enough to compete with shift selection.
780 Org tries to balance these needs by supporting `shift-select-mode'
781 outside these special contexts, under control of this variable.
783 The default of this variable is nil, to avoid confusing behavior. Shifted
784 cursor keys will then execute Org commands in the following contexts:
785 - on a headline, changing TODO state (left/right) and priority (up/down)
786 - on a time stamp, changing the time
787 - in a plain list item, changing the bullet type
788 - in a property definition line, switching between allowed values
789 - in the BEGIN line of a clock table (changing the time block).
790 Outside these contexts, the commands will throw an error.
792 When this variable is t and the cursor is not in a special
793 context, Org-mode will support shift-selection for making and
794 enlarging regions. To make this more effective, the bullet
795 cycling will no longer happen anywhere in an item line, but only
796 if the cursor is exactly on the bullet.
798 If you set this variable to the symbol `always', then the keys
799 will not be special in headlines, property lines, and item lines,
800 to make shift selection work there as well. If this is what you
801 want, you can use the following alternative commands: `C-c C-t'
802 and `C-c ,' to change TODO state and priority, `C-u C-u C-c C-t'
803 can be used to switch TODO sets, `C-c -' to cycle item bullet
804 types, and properties can be edited by hand or in column view.
806 However, when the cursor is on a timestamp, shift-cursor commands
807 will still edit the time stamp - this is just too good to give up.
809 XEmacs user should have this variable set to nil, because
810 `shift-select-mode' is in Emacs 23 or later only."
813 (const :tag
"Never" nil
)
814 (const :tag
"When outside special context" t
)
815 (const :tag
"Everywhere except timestamps" always
)))
817 (defcustom org-loop-over-headlines-in-active-region nil
818 "Shall some commands act upon headlines in the active region?
820 When set to `t', some commands will be performed in all headlines
821 within the active region.
823 When set to `start-level', some commands will be performed in all
824 headlines within the active region, provided that these headlines
825 are of the same level than the first one.
827 When set to a string, those commands will be performed on the
828 matching headlines within the active region. Such string must be
829 a tags/property/todo match as it is used in the agenda tags view.
831 The list of commands is: `org-schedule', `org-deadline',
832 `org-todo', `org-archive-subtree', `org-archive-set-tag' and
833 `org-archive-to-archive-sibling'. The archiving commands skip
834 already archived entries."
835 :type
'(choice (const :tag
"Don't loop" nil
)
836 (const :tag
"All headlines in active region" t
)
837 (const :tag
"In active region, headlines at the same level than the first one" start-level
)
838 (string :tag
"Tags/Property/Todo matcher"))
843 (defgroup org-startup nil
844 "Options concerning startup of Org-mode."
848 (defcustom org-startup-folded t
849 "Non-nil means entering Org-mode will switch to OVERVIEW.
850 This can also be configured on a per-file basis by adding one of
851 the following lines anywhere in the buffer:
853 #+STARTUP: fold (or `overview', this is equivalent)
854 #+STARTUP: nofold (or `showall', this is equivalent)
856 #+STARTUP: showeverything
858 By default, this option is ignored when Org opens agenda files
859 for the first time. If you want the agenda to honor the startup
860 option, set `org-agenda-inhibit-startup' to nil."
863 (const :tag
"nofold: show all" nil
)
864 (const :tag
"fold: overview" t
)
865 (const :tag
"content: all headlines" content
)
866 (const :tag
"show everything, even drawers" showeverything
)))
868 (defcustom org-startup-truncated t
869 "Non-nil means entering Org-mode will set `truncate-lines'.
870 This is useful since some lines containing links can be very long and
871 uninteresting. Also tables look terrible when wrapped."
875 (defcustom org-startup-indented nil
876 "Non-nil means turn on `org-indent-mode' on startup.
877 This can also be configured on a per-file basis by adding one of
878 the following lines anywhere in the buffer:
882 :group
'org-structure
884 (const :tag
"Not" nil
)
885 (const :tag
"Globally (slow on startup in large files)" t
)))
887 (defcustom org-use-sub-superscripts t
888 "Non-nil means interpret \"_\" and \"^\" for display.
890 If you want to control how Org exports those characters, see
891 `org-export-with-sub-superscripts'. `org-use-sub-superscripts'
892 used to be an alias for `org-export-with-sub-superscripts' in
893 Org <8.0, it is not anymore.
895 When this option is turned on, you can use TeX-like syntax for
896 sub- and superscripts within the buffer. Several characters after
897 \"_\" or \"^\" will be considered as a single item - so grouping
898 with {} is normally not needed. For example, the following things
899 will be parsed as single sub- or superscripts:
901 10^24 or 10^tau several digits will be considered 1 item.
902 10^-12 or 10^-tau a leading sign with digits or a word
903 x^2-y^3 will be read as x^2 - y^3, because items are
904 terminated by almost any nonword/nondigit char.
905 x_{i^2} or x^(2-i) braces or parenthesis do grouping.
907 Still, ambiguity is possible. So when in doubt, use {} to enclose
908 the sub/superscript. If you set this variable to the symbol `{}',
909 the braces are *required* in order to trigger interpretations as
910 sub/superscript. This can be helpful in documents that need \"_\"
911 frequently in plain text."
914 :package-version
'(Org .
"8.0")
916 (const :tag
"Always interpret" t
)
917 (const :tag
"Only with braces" {})
918 (const :tag
"Never interpret" nil
)))
920 (defcustom org-startup-with-beamer-mode nil
921 "Non-nil means turn on `org-beamer-mode' on startup.
922 This can also be configured on a per-file basis by adding one of
923 the following lines anywhere in the buffer:
930 (defcustom org-startup-align-all-tables nil
931 "Non-nil means align all tables when visiting a file.
932 This is useful when the column width in tables is forced with <N> cookies
933 in table fields. Such tables will look correct only after the first re-align.
934 This can also be configured on a per-file basis by adding one of
935 the following lines anywhere in the buffer:
941 (defcustom org-startup-with-inline-images nil
942 "Non-nil means show inline images when loading a new Org file.
943 This can also be configured on a per-file basis by adding one of
944 the following lines anywhere in the buffer:
945 #+STARTUP: inlineimages
946 #+STARTUP: noinlineimages"
951 (defcustom org-startup-with-latex-preview nil
952 "Non-nil means preview LaTeX fragments when loading a new Org file.
954 This can also be configured on a per-file basis by adding one of
955 the following lines anywhere in the buffer:
956 #+STARTUP: latexpreview
957 #+STARTUP: nolatexpreview"
960 :package-version
'(Org .
"8.0")
963 (defcustom org-insert-mode-line-in-empty-file nil
964 "Non-nil means insert the first line setting Org-mode in empty files.
965 When the function `org-mode' is called interactively in an empty file, this
966 normally means that the file name does not automatically trigger Org-mode.
967 To ensure that the file will always be in Org-mode in the future, a
968 line enforcing Org-mode will be inserted into the buffer, if this option
973 (defcustom org-replace-disputed-keys nil
974 "Non-nil means use alternative key bindings for some keys.
975 Org-mode uses S-<cursor> keys for changing timestamps and priorities.
976 These keys are also used by other packages like shift-selection-mode'
977 \(built into Emacs 23), `CUA-mode' or `windmove.el'.
978 If you want to use Org-mode together with one of these other modes,
979 or more generally if you would like to move some Org-mode commands to
980 other keys, set this variable and configure the keys with the variable
983 This option is only relevant at load-time of Org-mode, and must be set
984 *before* org.el is loaded. Changing it requires a restart of Emacs to
989 (defcustom org-use-extra-keys nil
990 "Non-nil means use extra key sequence definitions for certain commands.
991 This happens automatically if you run XEmacs or if `window-system'
992 is nil. This variable lets you do the same manually. You must
993 set it before loading org.
995 Example: on Carbon Emacs 22 running graphically, with an external
996 keyboard on a Powerbook, the default way of setting M-left might
997 not work for either Alt or ESC. Setting this variable will make
1002 (org-defvaralias 'org-CUA-compatible
'org-replace-disputed-keys
)
1004 (defcustom org-disputed-keys
1005 '(([(shift up
)] .
[(meta p
)])
1006 ([(shift down
)] .
[(meta n
)])
1007 ([(shift left
)] .
[(meta -
)])
1008 ([(shift right
)] .
[(meta +)])
1009 ([(control shift right
)] .
[(meta shift
+)])
1010 ([(control shift left
)] .
[(meta shift -
)]))
1011 "Keys for which Org-mode and other modes compete.
1012 This is an alist, cars are the default keys, second element specifies
1013 the alternative to use when `org-replace-disputed-keys' is t.
1015 Keys can be specified in any syntax supported by `define-key'.
1016 The value of this option takes effect only at Org-mode's startup,
1017 therefore you'll have to restart Emacs to apply it after changing."
1021 (defun org-key (key)
1022 "Select key according to `org-replace-disputed-keys' and `org-disputed-keys'.
1023 Or return the original if not disputed.
1024 Also apply the translations defined in `org-xemacs-key-equivalents'."
1025 (when org-replace-disputed-keys
1026 (let* ((nkey (key-description key
))
1027 (x (org-find-if (lambda (x)
1028 (equal (key-description (car x
)) nkey
))
1029 org-disputed-keys
)))
1030 (setq key
(if x
(cdr x
) key
))))
1031 (when (featurep 'xemacs
)
1032 (setq key
(or (cdr (assoc key org-xemacs-key-equivalents
)) key
)))
1035 (defun org-find-if (predicate seq
)
1038 (if (funcall predicate
(car seq
))
1039 (throw 'exit
(car seq
))
1042 (defun org-defkey (keymap key def
)
1043 "Define a key, possibly translated, as returned by `org-key'."
1044 (define-key keymap
(org-key key
) def
))
1046 (defcustom org-ellipsis nil
1047 "The ellipsis to use in the Org-mode outline.
1048 When nil, just use the standard three dots.
1049 When a string, use that string instead.
1050 When a face, use the standard 3 dots, but with the specified face.
1051 The change affects only Org-mode (which will then use its own display table).
1052 Changing this requires executing `M-x org-mode RET' in a buffer to become
1055 :type
'(choice (const :tag
"Default" nil
)
1056 (face :tag
"Face" :value org-warning
)
1057 (string :tag
"String" :value
"...#")))
1059 (defvar org-display-table nil
1060 "The display table for org-mode, in case `org-ellipsis' is non-nil.")
1062 (defgroup org-keywords nil
1063 "Keywords in Org-mode."
1067 (defcustom org-closed-keep-when-no-todo nil
1068 "Remove CLOSED: time-stamp when switching back to a non-todo state?"
1070 :group
'org-keywords
1072 :package-version
'(Org .
"8.0")
1075 (defgroup org-structure nil
1076 "Options concerning the general structure of Org-mode files."
1077 :tag
"Org Structure"
1080 (defgroup org-reveal-location nil
1081 "Options about how to make context of a location visible."
1082 :tag
"Org Reveal Location"
1083 :group
'org-structure
)
1085 (defconst org-context-choice
1087 (const :tag
"Always" t
)
1088 (const :tag
"Never" nil
)
1089 (repeat :greedy t
:tag
"Individual contexts"
1091 (choice :tag
"Context"
1098 (const bookmark-jump
)
1102 "Contexts for the reveal options.")
1104 (defcustom org-show-hierarchy-above
'((default . t
))
1105 "Non-nil means show full hierarchy when revealing a location.
1106 Org-mode often shows locations in an org-mode file which might have
1107 been invisible before. When this is set, the hierarchy of headings
1108 above the exposed location is shown.
1109 Turning this off for example for sparse trees makes them very compact.
1110 Instead of t, this can also be an alist specifying this option for different
1111 contexts. Valid contexts are
1112 agenda when exposing an entry from the agenda
1113 org-goto when using the command `org-goto' on key C-c C-j
1114 occur-tree when using the command `org-occur' on key C-c /
1115 tags-tree when constructing a sparse tree based on tags matches
1116 link-search when exposing search matches associated with a link
1117 mark-goto when exposing the jump goal of a mark
1118 bookmark-jump when exposing a bookmark location
1119 isearch when exiting from an incremental search
1120 default default for all contexts not set explicitly"
1121 :group
'org-reveal-location
1122 :type org-context-choice
)
1124 (defcustom org-show-following-heading
'((default . nil
))
1125 "Non-nil means show following heading when revealing a location.
1126 Org-mode often shows locations in an org-mode file which might have
1127 been invisible before. When this is set, the heading following the
1129 Turning this off for example for sparse trees makes them very compact,
1130 but makes it harder to edit the location of the match. In such a case,
1131 use the command \\[org-reveal] to show more context.
1132 Instead of t, this can also be an alist specifying this option for different
1133 contexts. See `org-show-hierarchy-above' for valid contexts."
1134 :group
'org-reveal-location
1135 :type org-context-choice
)
1137 (defcustom org-show-siblings
'((default . nil
) (isearch t
) (bookmark-jump t
))
1138 "Non-nil means show all sibling heading when revealing a location.
1139 Org-mode often shows locations in an org-mode file which might have
1140 been invisible before. When this is set, the sibling of the current entry
1141 heading are all made visible. If `org-show-hierarchy-above' is t,
1142 the same happens on each level of the hierarchy above the current entry.
1144 By default this is on for the isearch context, off for all other contexts.
1145 Turning this off for example for sparse trees makes them very compact,
1146 but makes it harder to edit the location of the match. In such a case,
1147 use the command \\[org-reveal] to show more context.
1148 Instead of t, this can also be an alist specifying this option for different
1149 contexts. See `org-show-hierarchy-above' for valid contexts."
1150 :group
'org-reveal-location
1151 :type org-context-choice
1153 :package-version
'(Org .
"8.0"))
1155 (defcustom org-show-entry-below
'((default . nil
))
1156 "Non-nil means show the entry below a headline when revealing a location.
1157 Org-mode often shows locations in an org-mode file which might have
1158 been invisible before. When this is set, the text below the headline that is
1159 exposed is also shown.
1161 By default this is off for all contexts.
1162 Instead of t, this can also be an alist specifying this option for different
1163 contexts. See `org-show-hierarchy-above' for valid contexts."
1164 :group
'org-reveal-location
1165 :type org-context-choice
)
1167 (defcustom org-indirect-buffer-display
'other-window
1168 "How should indirect tree buffers be displayed?
1169 This applies to indirect buffers created with the commands
1170 \\[org-tree-to-indirect-buffer] and \\[org-agenda-tree-to-indirect-buffer].
1172 current-window Display in the current window
1173 other-window Just display in another window.
1174 dedicated-frame Create one new frame, and re-use it each time.
1175 new-frame Make a new frame each time. Note that in this case
1176 previously-made indirect buffers are kept, and you need to
1177 kill these buffers yourself."
1178 :group
'org-structure
1179 :group
'org-agenda-windows
1181 (const :tag
"In current window" current-window
)
1182 (const :tag
"In current frame, other window" other-window
)
1183 (const :tag
"Each time a new frame" new-frame
)
1184 (const :tag
"One dedicated frame" dedicated-frame
)))
1186 (defcustom org-use-speed-commands nil
1187 "Non-nil means activate single letter commands at beginning of a headline.
1188 This may also be a function to test for appropriate locations where speed
1189 commands should be active.
1191 For example, to activate speed commands when the point is on any
1192 star at the beginning of the headline, you can do this:
1194 (setq org-use-speed-commands
1195 (lambda () (and (looking-at org-outline-regexp) (looking-back \"^\\**\"))))"
1196 :group
'org-structure
1198 (const :tag
"Never" nil
)
1199 (const :tag
"At beginning of headline stars" t
)
1202 (defcustom org-speed-commands-user nil
1203 "Alist of additional speed commands.
1204 This list will be checked before `org-speed-commands-default'
1205 when the variable `org-use-speed-commands' is non-nil
1206 and when the cursor is at the beginning of a headline.
1207 The car if each entry is a string with a single letter, which must
1208 be assigned to `self-insert-command' in the global map.
1209 The cdr is either a command to be called interactively, a function
1210 to be called, or a form to be evaluated.
1211 An entry that is just a list with a single string will be interpreted
1212 as a descriptive headline that will be added when listing the speed
1213 commands in the Help buffer using the `?' speed command."
1214 :group
'org-structure
1215 :type
'(repeat :value
("k" . ignore
)
1216 (choice :value
("k" . ignore
)
1217 (list :tag
"Descriptive Headline" (string :tag
"Headline"))
1218 (cons :tag
"Letter and Command"
1219 (string :tag
"Command letter")
1224 (defcustom org-bookmark-names-plist
1225 '(:last-capture
"org-capture-last-stored"
1226 :last-refile
"org-refile-last-stored"
1227 :last-capture-marker
"org-capture-last-stored-marker")
1228 "Names for bookmarks automatically set by some Org commands.
1229 This can provide strings as names for a number of bookmarks Org sets
1230 automatically. The following keys are currently implemented:
1232 :last-capture-marker
1234 When a key does not show up in the property list, the corresponding bookmark
1236 :group
'org-structure
1239 (defgroup org-cycle nil
1240 "Options concerning visibility cycling in Org-mode."
1242 :group
'org-structure
)
1244 (defcustom org-cycle-skip-children-state-if-no-children t
1245 "Non-nil means skip CHILDREN state in entries that don't have any."
1249 (defcustom org-cycle-max-level nil
1250 "Maximum level which should still be subject to visibility cycling.
1251 Levels higher than this will, for cycling, be treated as text, not a headline.
1252 When `org-odd-levels-only' is set, a value of N in this variable actually
1253 means 2N-1 stars as the limiting headline.
1254 When nil, cycle all levels.
1255 Note that the limiting level of cycling is also influenced by
1256 `org-inlinetask-min-level'. When `org-cycle-max-level' is not set but
1257 `org-inlinetask-min-level' is, cycling will be limited to levels one less
1261 (const :tag
"No limit" nil
)
1262 (integer :tag
"Maximum level")))
1264 (defcustom org-hide-block-startup nil
1265 "Non-nil means entering Org-mode will fold all blocks.
1266 This can also be set in on a per-file basis with
1268 #+STARTUP: hideblocks
1269 #+STARTUP: showblocks"
1274 (defcustom org-cycle-global-at-bob nil
1275 "Cycle globally if cursor is at beginning of buffer and not at a headline.
1276 This makes it possible to do global cycling without having to use S-TAB or
1277 \\[universal-argument] TAB. For this special case to work, the first line
1278 of the buffer must not be a headline -- it may be empty or some other text.
1279 When used in this way, `org-cycle-hook' is disabled temporarily to make
1280 sure the cursor stays at the beginning of the buffer. When this option is
1281 nil, don't do anything special at the beginning of the buffer."
1285 (defcustom org-cycle-level-after-item
/entry-creation t
1286 "Non-nil means cycle entry level or item indentation in new empty entries.
1288 When the cursor is at the end of an empty headline, i.e., with only stars
1289 and maybe a TODO keyword, TAB will then switch the entry to become a child,
1290 and then all possible ancestor states, before returning to the original state.
1291 This makes data entry extremely fast: M-RET to create a new headline,
1292 on TAB to make it a child, two or more tabs to make it a (grand-)uncle.
1294 When the cursor is at the end of an empty plain list item, one TAB will
1295 make it a subitem, two or more tabs will back up to make this an item
1296 higher up in the item hierarchy."
1300 (defcustom org-cycle-emulate-tab t
1301 "Where should `org-cycle' emulate TAB.
1303 white Only in completely white lines
1304 whitestart Only at the beginning of lines, before the first non-white char
1305 t Everywhere except in headlines
1306 exc-hl-bol Everywhere except at the start of a headline
1307 If TAB is used in a place where it does not emulate TAB, the current subtree
1308 visibility is cycled."
1310 :type
'(choice (const :tag
"Never" nil
)
1311 (const :tag
"Only in completely white lines" white
)
1312 (const :tag
"Before first char in a line" whitestart
)
1313 (const :tag
"Everywhere except in headlines" t
)
1314 (const :tag
"Everywhere except at bol in headlines" exc-hl-bol
)))
1316 (defcustom org-cycle-separator-lines
2
1317 "Number of empty lines needed to keep an empty line between collapsed trees.
1318 If you leave an empty line between the end of a subtree and the following
1319 headline, this empty line is hidden when the subtree is folded.
1320 Org-mode will leave (exactly) one empty line visible if the number of
1321 empty lines is equal or larger to the number given in this variable.
1322 So the default 2 means at least 2 empty lines after the end of a subtree
1323 are needed to produce free space between a collapsed subtree and the
1326 If the number is negative, and the number of empty lines is at least -N,
1327 all empty lines are shown.
1329 Special case: when 0, never leave empty lines in collapsed view."
1332 (put 'org-cycle-separator-lines
'safe-local-variable
'integerp
)
1334 (defcustom org-pre-cycle-hook nil
1335 "Hook that is run before visibility cycling is happening.
1336 The function(s) in this hook must accept a single argument which indicates
1337 the new state that will be set right after running this hook. The
1338 argument is a symbol. Before a global state change, it can have the values
1339 `overview', `content', or `all'. Before a local state change, it can have
1340 the values `folded', `children', or `subtree'."
1344 (defcustom org-cycle-hook
'(org-cycle-hide-archived-subtrees
1345 org-cycle-hide-drawers
1346 org-cycle-hide-inline-tasks
1347 org-cycle-show-empty-lines
1348 org-optimize-window-after-visibility-change
)
1349 "Hook that is run after `org-cycle' has changed the buffer visibility.
1350 The function(s) in this hook must accept a single argument which indicates
1351 the new state that was set by the most recent `org-cycle' command. The
1352 argument is a symbol. After a global state change, it can have the values
1353 `overview', `contents', or `all'. After a local state change, it can have
1354 the values `folded', `children', or `subtree'."
1358 (defgroup org-edit-structure nil
1359 "Options concerning structure editing in Org-mode."
1360 :tag
"Org Edit Structure"
1361 :group
'org-structure
)
1363 (defcustom org-odd-levels-only nil
1364 "Non-nil means skip even levels and only use odd levels for the outline.
1365 This has the effect that two stars are being added/taken away in
1366 promotion/demotion commands. It also influences how levels are
1367 handled by the exporters.
1368 Changing it requires restart of `font-lock-mode' to become effective
1369 for fontification also in regions already fontified.
1370 You may also set this on a per-file basis by adding one of the following
1371 lines to the buffer:
1375 :group
'org-edit-structure
1376 :group
'org-appearance
1379 (defcustom org-adapt-indentation t
1380 "Non-nil means adapt indentation to outline node level.
1382 When this variable is set, Org assumes that you write outlines by
1383 indenting text in each node to align with the headline (after the stars).
1384 The following issues are influenced by this variable:
1386 - When this is set and the *entire* text in an entry is indented, the
1387 indentation is increased by one space in a demotion command, and
1388 decreased by one in a promotion command. If any line in the entry
1389 body starts with text at column 0, indentation is not changed at all.
1391 - Property drawers and planning information is inserted indented when
1392 this variable s set. When nil, they will not be indented.
1394 - TAB indents a line relative to context. The lines below a headline
1395 will be indented when this variable is set.
1397 Note that this is all about true indentation, by adding and removing
1398 space characters. See also `org-indent.el' which does level-dependent
1399 indentation in a virtual way, i.e. at display time in Emacs."
1400 :group
'org-edit-structure
1403 (defcustom org-special-ctrl-a
/e nil
1404 "Non-nil means `C-a' and `C-e' behave specially in headlines and items.
1406 When t, `C-a' will bring back the cursor to the beginning of the
1407 headline text, i.e. after the stars and after a possible TODO
1408 keyword. In an item, this will be the position after bullet and
1409 check-box, if any. When the cursor is already at that position,
1410 another `C-a' will bring it to the beginning of the line.
1412 `C-e' will jump to the end of the headline, ignoring the presence
1413 of tags in the headline. A second `C-e' will then jump to the
1414 true end of the line, after any tags. This also means that, when
1415 this variable is non-nil, `C-e' also will never jump beyond the
1416 end of the heading of a folded section, i.e. not after the
1419 When set to the symbol `reversed', the first `C-a' or `C-e' works
1420 normally, going to the true line boundary first. Only a directly
1421 following, identical keypress will bring the cursor to the
1424 This may also be a cons cell where the behavior for `C-a' and
1425 `C-e' is set separately."
1426 :group
'org-edit-structure
1428 (const :tag
"off" nil
)
1429 (const :tag
"on: after stars/bullet and before tags first" t
)
1430 (const :tag
"reversed: true line boundary first" reversed
)
1431 (cons :tag
"Set C-a and C-e separately"
1432 (choice :tag
"Special C-a"
1433 (const :tag
"off" nil
)
1434 (const :tag
"on: after stars/bullet first" t
)
1435 (const :tag
"reversed: before stars/bullet first" reversed
))
1436 (choice :tag
"Special C-e"
1437 (const :tag
"off" nil
)
1438 (const :tag
"on: before tags first" t
)
1439 (const :tag
"reversed: after tags first" reversed
)))))
1440 (org-defvaralias 'org-special-ctrl-a
'org-special-ctrl-a
/e
)
1442 (defcustom org-special-ctrl-k nil
1443 "Non-nil means `C-k' will behave specially in headlines.
1444 When nil, `C-k' will call the default `kill-line' command.
1445 When t, the following will happen while the cursor is in the headline:
1447 - When the cursor is at the beginning of a headline, kill the entire
1448 line and possible the folded subtree below the line.
1449 - When in the middle of the headline text, kill the headline up to the tags.
1450 - When after the headline text, kill the tags."
1451 :group
'org-edit-structure
1454 (defcustom org-ctrl-k-protect-subtree nil
1455 "Non-nil means, do not delete a hidden subtree with C-k.
1456 When set to the symbol `error', simply throw an error when C-k is
1457 used to kill (part-of) a headline that has hidden text behind it.
1458 Any other non-nil value will result in a query to the user, if it is
1459 OK to kill that hidden subtree. When nil, kill without remorse."
1460 :group
'org-edit-structure
1463 (const :tag
"Do not protect hidden subtrees" nil
)
1464 (const :tag
"Protect hidden subtrees with a security query" t
)
1465 (const :tag
"Never kill a hidden subtree with C-k" error
)))
1467 (defcustom org-special-ctrl-o t
1468 "Non-nil means, make `C-o' insert a row in tables."
1469 :group
'org-edit-structure
1472 (defcustom org-catch-invisible-edits nil
1473 "Check if in invisible region before inserting or deleting a character.
1476 nil Do not check, so just do invisible edits.
1477 error Throw an error and do nothing.
1478 show Make point visible, and do the requested edit.
1479 show-and-error Make point visible, then throw an error and abort the edit.
1480 smart Make point visible, and do insertion/deletion if it is
1481 adjacent to visible text and the change feels predictable.
1482 Never delete a previously invisible character or add in the
1483 middle or right after an invisible region. Basically, this
1484 allows insertion and backward-delete right before ellipses.
1485 FIXME: maybe in this case we should not even show?"
1486 :group
'org-edit-structure
1489 (const :tag
"Do not check" nil
)
1490 (const :tag
"Throw error when trying to edit" error
)
1491 (const :tag
"Unhide, but do not do the edit" show-and-error
)
1492 (const :tag
"Show invisible part and do the edit" show
)
1493 (const :tag
"Be smart and do the right thing" smart
)))
1495 (defcustom org-yank-folded-subtrees t
1496 "Non-nil means when yanking subtrees, fold them.
1497 If the kill is a single subtree, or a sequence of subtrees, i.e. if
1498 it starts with a heading and all other headings in it are either children
1499 or siblings, then fold all the subtrees. However, do this only if no
1500 text after the yank would be swallowed into a folded tree by this action."
1501 :group
'org-edit-structure
1504 (defcustom org-yank-adjusted-subtrees nil
1505 "Non-nil means when yanking subtrees, adjust the level.
1506 With this setting, `org-paste-subtree' is used to insert the subtree, see
1507 this function for details."
1508 :group
'org-edit-structure
1511 (defcustom org-M-RET-may-split-line
'((default . t
))
1512 "Non-nil means M-RET will split the line at the cursor position.
1513 When nil, it will go to the end of the line before making a
1515 You may also set this option in a different way for different
1516 contexts. Valid contexts are:
1518 headline when creating a new headline
1519 item when creating a new item
1520 table in a table field
1521 default the value to be used for all contexts not explicitly
1523 :group
'org-structure
1526 (const :tag
"Always" t
)
1527 (const :tag
"Never" nil
)
1528 (repeat :greedy t
:tag
"Individual contexts"
1530 (choice :tag
"Context"
1538 (defcustom org-insert-heading-respect-content nil
1539 "Non-nil means insert new headings after the current subtree.
1540 When nil, the new heading is created directly after the current line.
1541 The commands \\[org-insert-heading-respect-content] and \\[org-insert-todo-heading-respect-content] turn
1542 this variable on for the duration of the command."
1543 :group
'org-structure
1546 (defcustom org-blank-before-new-entry
'((heading . auto
)
1547 (plain-list-item . auto
))
1548 "Should `org-insert-heading' leave a blank line before new heading/item?
1549 The value is an alist, with `heading' and `plain-list-item' as CAR,
1550 and a boolean flag as CDR. The cdr may also be the symbol `auto', in
1551 which case Org will look at the surrounding headings/items and try to
1552 make an intelligent decision whether to insert a blank line or not.
1554 For plain lists, if `org-list-empty-line-terminates-plain-lists' is set,
1555 the setting here is ignored and no empty line is inserted to avoid breaking
1556 the list structure."
1557 :group
'org-edit-structure
1559 (cons (const heading
)
1560 (choice (const :tag
"Never" nil
)
1561 (const :tag
"Always" t
)
1562 (const :tag
"Auto" auto
)))
1563 (cons (const plain-list-item
)
1564 (choice (const :tag
"Never" nil
)
1565 (const :tag
"Always" t
)
1566 (const :tag
"Auto" auto
)))))
1568 (defcustom org-insert-heading-hook nil
1569 "Hook being run after inserting a new heading."
1570 :group
'org-edit-structure
1573 (defcustom org-enable-fixed-width-editor t
1574 "Non-nil means lines starting with \":\" are treated as fixed-width.
1575 This currently only means they are never auto-wrapped.
1576 When nil, such lines will be treated like ordinary lines."
1577 :group
'org-edit-structure
1580 (defcustom org-goto-auto-isearch t
1581 "Non-nil means typing characters in `org-goto' starts incremental search.
1582 When nil, you can use these keybindings to navigate the buffer:
1584 q Quit the org-goto interface
1585 n Go to the next visible heading
1586 p Go to the previous visible heading
1587 f Go one heading forward on same level
1588 b Go one heading backward on same level
1589 u Go one heading up"
1590 :group
'org-edit-structure
1593 (defgroup org-sparse-trees nil
1594 "Options concerning sparse trees in Org-mode."
1595 :tag
"Org Sparse Trees"
1596 :group
'org-structure
)
1598 (defcustom org-highlight-sparse-tree-matches t
1599 "Non-nil means highlight all matches that define a sparse tree.
1600 The highlights will automatically disappear the next time the buffer is
1601 changed by an edit command."
1602 :group
'org-sparse-trees
1605 (defcustom org-remove-highlights-with-change t
1606 "Non-nil means any change to the buffer will remove temporary highlights.
1607 Such highlights are created by `org-occur' and `org-clock-display'.
1608 When nil, `C-c C-c needs to be used to get rid of the highlights.
1609 The highlights created by `org-preview-latex-fragment' always need
1610 `C-c C-c' to be removed."
1611 :group
'org-sparse-trees
1616 (defcustom org-occur-hook
'(org-first-headline-recenter)
1617 "Hook that is run after `org-occur' has constructed a sparse tree.
1618 This can be used to recenter the window to show as much of the structure
1620 :group
'org-sparse-trees
1623 (defgroup org-imenu-and-speedbar nil
1624 "Options concerning imenu and speedbar in Org-mode."
1625 :tag
"Org Imenu and Speedbar"
1626 :group
'org-structure
)
1628 (defcustom org-imenu-depth
2
1629 "The maximum level for Imenu access to Org-mode headlines.
1630 This also applied for speedbar access."
1631 :group
'org-imenu-and-speedbar
1634 (defgroup org-table nil
1635 "Options concerning tables in Org-mode."
1639 (defcustom org-enable-table-editor
'optimized
1640 "Non-nil means lines starting with \"|\" are handled by the table editor.
1641 When nil, such lines will be treated like ordinary lines.
1643 When equal to the symbol `optimized', the table editor will be optimized to
1645 - Automatic overwrite mode in front of whitespace in table fields.
1646 This makes the structure of the table stay in tact as long as the edited
1647 field does not exceed the column width.
1648 - Minimize the number of realigns. Normally, the table is aligned each time
1649 TAB or RET are pressed to move to another field. With optimization this
1650 happens only if changes to a field might have changed the column width.
1651 Optimization requires replacing the functions `self-insert-command',
1652 `delete-char', and `backward-delete-char' in Org-mode buffers, with a
1653 slight (in fact: unnoticeable) speed impact for normal typing. Org-mode is
1654 very good at guessing when a re-align will be necessary, but you can always
1655 force one with \\[org-ctrl-c-ctrl-c].
1657 If you would like to use the optimized version in Org-mode, but the
1658 un-optimized version in OrgTbl-mode, see the variable `orgtbl-optimized'.
1660 This variable can be used to turn on and off the table editor during a session,
1661 but in order to toggle optimization, a restart is required.
1663 See also the variable `org-table-auto-blank-field'."
1666 (const :tag
"off" nil
)
1668 (const :tag
"on, optimized" optimized
)))
1670 (defcustom org-self-insert-cluster-for-undo
(or (featurep 'xemacs
)
1671 (version<= emacs-version
"24.1"))
1672 "Non-nil means cluster self-insert commands for undo when possible.
1673 If this is set, then, like in the Emacs command loop, 20 consecutive
1674 characters will be undone together.
1675 This is configurable, because there is some impact on typing performance."
1679 (defcustom org-table-tab-recognizes-table.el t
1680 "Non-nil means TAB will automatically notice a table.el table.
1681 When it sees such a table, it moves point into it and - if necessary -
1682 calls `table-recognize-table'."
1683 :group
'org-table-editing
1686 (defgroup org-link nil
1687 "Options concerning links in Org-mode."
1691 (defvar org-link-abbrev-alist-local nil
1692 "Buffer-local version of `org-link-abbrev-alist', which see.
1693 The value of this is taken from the #+LINK lines.")
1694 (make-variable-buffer-local 'org-link-abbrev-alist-local
)
1696 (defcustom org-link-abbrev-alist nil
1697 "Alist of link abbreviations.
1698 The car of each element is a string, to be replaced at the start of a link.
1699 The cdrs are replacement values, like (\"linkkey\" . REPLACE). Abbreviated
1700 links in Org-mode buffers can have an optional tag after a double colon, e.g.
1702 [[linkkey:tag][description]]
1704 The 'linkkey' must be a word word, starting with a letter, followed
1705 by letters, numbers, '-' or '_'.
1707 If REPLACE is a string, the tag will simply be appended to create the link.
1708 If the string contains \"%s\", the tag will be inserted there. If the string
1709 contains \"%h\", it will cause a url-encoded version of the tag to be inserted
1710 at that point (see the function `url-hexify-string'). If the string contains
1711 the specifier \"%(my-function)\", then the custom function `my-function' will
1712 be invoked: this function takes the tag as its only argument and must return
1715 REPLACE may also be a function that will be called with the tag as the
1716 only argument to create the link, which should be returned as a string.
1718 See the manual for examples."
1722 (string :tag
"Protocol")
1724 (string :tag
"Format")
1727 (defcustom org-descriptive-links t
1728 "Non-nil means Org will display descriptive links.
1729 E.g. [[http://orgmode.org][Org website]] will be displayed as
1730 \"Org Website\", hiding the link itself and just displaying its
1731 description. When set to `nil', Org will display the full links
1734 You can interactively set the value of this variable by calling
1735 `org-toggle-link-display' or from the menu Org>Hyperlinks menu."
1739 (defcustom org-link-file-path-type
'adaptive
1740 "How the path name in file links should be stored.
1743 relative Relative to the current directory, i.e. the directory of the file
1744 into which the link is being inserted.
1745 absolute Absolute path, if possible with ~ for home directory.
1746 noabbrev Absolute path, no abbreviation of home directory.
1747 adaptive Use relative path for files in the current directory and sub-
1748 directories of it. For other files, use an absolute path."
1756 (defvaralias 'org-activate-links
'org-highlight-links
)
1757 (defcustom org-highlight-links
'(bracket angle plain radio tag date footnote
)
1758 "Types of links that should be highlighted in Org-mode files.
1760 This is a list of symbols, each one of them leading to the
1761 highlighting of a certain link type.
1763 You can still open links that are not highlighted.
1765 In principle, it does not hurt to turn on highlighting for all
1766 link types. There may be a small gain when turning off unused
1767 link types. The types are:
1769 bracket The recommended [[link][description]] or [[link]] links with hiding.
1770 angle Links in angular brackets that may contain whitespace like
1771 <bbdb:Carsten Dominik>.
1772 plain Plain links in normal text, no whitespace, like http://google.com.
1773 radio Text that is matched by a radio target, see manual for details.
1774 tag Tag settings in a headline (link to tag search).
1775 date Time stamps (link to calendar).
1776 footnote Footnote labels.
1778 If you set this variable during an Emacs session, use `org-mode-restart'
1779 in the Org buffer so that the change takes effect."
1781 :group
'org-appearance
1782 :type
'(set :greedy t
1783 (const :tag
"Double bracket links" bracket
)
1784 (const :tag
"Angular bracket links" angle
)
1785 (const :tag
"Plain text links" plain
)
1786 (const :tag
"Radio target matches" radio
)
1787 (const :tag
"Tags" tag
)
1788 (const :tag
"Timestamps" date
)
1789 (const :tag
"Footnotes" footnote
)))
1791 (defcustom org-make-link-description-function nil
1792 "Function to use for generating link descriptions from links.
1793 When nil, the link location will be used. This function must take
1794 two parameters: the first one is the link, the second one is the
1795 description generated by `org-insert-link'. The function should
1796 return the description to use."
1798 :type
'(choice (const nil
) (function)))
1800 (defgroup org-link-store nil
1801 "Options concerning storing links in Org-mode."
1802 :tag
"Org Store Link"
1805 (defcustom org-url-hexify-p t
1806 "When non-nil, hexify URL when creating a link."
1809 :group
'org-link-store
)
1811 (defcustom org-email-link-description-format
"Email %c: %.30s"
1812 "Format of the description part of a link to an email or usenet message.
1813 The following %-escapes will be replaced by corresponding information:
1815 %F full \"From\" field
1816 %f name, taken from \"From\" field, address if no name
1817 %T full \"To\" field
1818 %t first name in \"To\" field, address if no name
1819 %c correspondent. Usually \"from NAME\", but if you sent it yourself, it
1820 will be \"to NAME\". See also the variable `org-from-is-user-regexp'.
1825 You may use normal field width specification between the % and the letter.
1826 This is for example useful to limit the length of the subject.
1828 Examples: \"%f on: %.30s\", \"Email from %f\", \"Email %c\""
1829 :group
'org-link-store
1832 (defcustom org-from-is-user-regexp
1834 (when (and user-mail-address
(not (string= user-mail-address
"")))
1835 (setq r1
(concat "\\<" (regexp-quote user-mail-address
) "\\>")))
1836 (when (and user-full-name
(not (string= user-full-name
"")))
1837 (setq r2
(concat "\\<" (regexp-quote user-full-name
) "\\>")))
1838 (if (and r1 r2
) (concat r1
"\\|" r2
) (or r1 r2
)))
1839 "Regexp matched against the \"From:\" header of an email or usenet message.
1840 It should match if the message is from the user him/herself."
1841 :group
'org-link-store
1844 (defcustom org-context-in-file-links t
1845 "Non-nil means file links from `org-store-link' contain context.
1846 A search string will be added to the file name with :: as separator and
1847 used to find the context when the link is activated by the command
1848 `org-open-at-point'. When this option is t, the entire active region
1849 will be placed in the search string of the file link. If set to a
1850 positive integer, only the first n lines of context will be stored.
1852 Using a prefix arg to the command \\[org-store-link] (`org-store-link')
1853 negates this setting for the duration of the command."
1854 :group
'org-link-store
1855 :type
'(choice boolean integer
))
1857 (defcustom org-keep-stored-link-after-insertion nil
1858 "Non-nil means keep link in list for entire session.
1860 The command `org-store-link' adds a link pointing to the current
1861 location to an internal list. These links accumulate during a session.
1862 The command `org-insert-link' can be used to insert links into any
1863 Org-mode file (offering completion for all stored links). When this
1864 option is nil, every link which has been inserted once using \\[org-insert-link]
1865 will be removed from the list, to make completing the unused links
1867 :group
'org-link-store
1870 (defgroup org-link-follow nil
1871 "Options concerning following links in Org-mode."
1872 :tag
"Org Follow Link"
1875 (defcustom org-link-translation-function nil
1876 "Function to translate links with different syntax to Org syntax.
1877 This can be used to translate links created for example by the Planner
1878 or emacs-wiki packages to Org syntax.
1879 The function must accept two parameters, a TYPE containing the link
1880 protocol name like \"rmail\" or \"gnus\" as a string, and the linked path,
1881 which is everything after the link protocol. It should return a cons
1882 with possibly modified values of type and path.
1883 Org contains a function for this, so if you set this variable to
1884 `org-translate-link-from-planner', you should be able follow many
1885 links created by planner."
1886 :group
'org-link-follow
1887 :type
'(choice (const nil
) (function)))
1889 (defcustom org-follow-link-hook nil
1890 "Hook that is run after a link has been followed."
1891 :group
'org-link-follow
1894 (defcustom org-tab-follows-link nil
1895 "Non-nil means on links TAB will follow the link.
1896 Needs to be set before org.el is loaded.
1897 This really should not be used, it does not make sense, and the
1898 implementation is bad."
1899 :group
'org-link-follow
1902 (defcustom org-return-follows-link nil
1903 "Non-nil means on links RET will follow the link.
1904 In tables, the special behavior of RET has precedence."
1905 :group
'org-link-follow
1908 (defcustom org-mouse-1-follows-link
1909 (if (boundp 'mouse-1-click-follows-link
) mouse-1-click-follows-link t
)
1910 "Non-nil means mouse-1 on a link will follow the link.
1911 A longer mouse click will still set point. Does not work on XEmacs.
1912 Needs to be set before org.el is loaded."
1913 :group
'org-link-follow
1915 :package-version
'(Org .
"8.3")
1917 (const :tag
"A double click follows the link" double
)
1918 (const :tag
"Unconditionally follow the link with mouse-1" t
)
1919 (integer :tag
"mouse-1 click does not follow the link if longer than N ms" 450)))
1921 (defcustom org-mark-ring-length
4
1922 "Number of different positions to be recorded in the ring.
1923 Changing this requires a restart of Emacs to work correctly."
1924 :group
'org-link-follow
1927 (defcustom org-link-search-must-match-exact-headline
'query-to-create
1928 "Non-nil means internal links in Org files must exactly match a headline.
1929 When nil, the link search tries to match a phrase with all words
1930 in the search text."
1931 :group
'org-link-follow
1934 (const :tag
"Use fuzzy text search" nil
)
1935 (const :tag
"Match only exact headline" t
)
1936 (const :tag
"Match exact headline or query to create it"
1939 (defcustom org-link-frame-setup
1940 '((vm . vm-visit-folder-other-frame
)
1941 (vm-imap . vm-visit-imap-folder-other-frame
)
1942 (gnus . org-gnus-no-new-news
)
1943 (file . find-file-other-window
)
1944 (wl . wl-other-frame
))
1945 "Setup the frame configuration for following links.
1946 When following a link with Emacs, it may often be useful to display
1947 this link in another window or frame. This variable can be used to
1948 set this up for the different types of links.
1951 `vm-visit-folder-other-window'
1952 `vm-visit-folder-other-frame'
1953 For Gnus, use any of
1956 `org-gnus-no-new-news'
1957 For FILE, use any of
1959 `find-file-other-window'
1960 `find-file-other-frame'
1961 For Wanderlust use any of
1964 For the calendar, use the variable `calendar-setup'.
1965 For BBDB, it is currently only possible to display the matches in
1967 :group
'org-link-follow
1971 (const vm-visit-folder
)
1972 (const vm-visit-folder-other-window
)
1973 (const vm-visit-folder-other-frame
)))
1974 (cons (const vm-imap
)
1976 (const vm-visit-imap-folder
)
1977 (const vm-visit-imap-folder-other-window
)
1978 (const vm-visit-imap-folder-other-frame
)))
1982 (const gnus-other-frame
)
1983 (const org-gnus-no-new-news
)))
1987 (const find-file-other-window
)
1988 (const find-file-other-frame
)))
1992 (const wl-other-frame
)))))
1994 (defcustom org-display-internal-link-with-indirect-buffer nil
1995 "Non-nil means use indirect buffer to display infile links.
1996 Activating internal links (from one location in a file to another location
1997 in the same file) normally just jumps to the location. When the link is
1998 activated with a \\[universal-argument] prefix (or with mouse-3), the link \
2000 another window. When this option is set, the other window actually displays
2001 an indirect buffer clone of the current buffer, to avoid any visibility
2002 changes to the current buffer."
2003 :group
'org-link-follow
2006 (defcustom org-open-non-existing-files nil
2007 "Non-nil means `org-open-file' will open non-existing files.
2008 When nil, an error will be generated.
2009 This variable applies only to external applications because they
2010 might choke on non-existing files. If the link is to a file that
2011 will be opened in Emacs, the variable is ignored."
2012 :group
'org-link-follow
2015 (defcustom org-open-directory-means-index-dot-org nil
2016 "Non-nil means a link to a directory really means to index.org.
2017 When nil, following a directory link will run dired or open a finder/explorer
2018 window on that directory."
2019 :group
'org-link-follow
2022 (defcustom org-confirm-shell-link-function
'yes-or-no-p
2023 "Non-nil means ask for confirmation before executing shell links.
2024 Shell links can be dangerous: just think about a link
2026 [[shell:rm -rf ~/*][Google Search]]
2028 This link would show up in your Org-mode document as \"Google Search\",
2029 but really it would remove your entire home directory.
2030 Therefore we advise against setting this variable to nil.
2031 Just change it to `y-or-n-p' if you want to confirm with a
2032 single keystroke rather than having to type \"yes\"."
2033 :group
'org-link-follow
2035 (const :tag
"with yes-or-no (safer)" yes-or-no-p
)
2036 (const :tag
"with y-or-n (faster)" y-or-n-p
)
2037 (const :tag
"no confirmation (dangerous)" nil
)))
2038 (put 'org-confirm-shell-link-function
2039 'safe-local-variable
2040 (lambda (x) (member x
'(yes-or-no-p y-or-n-p
))))
2042 (defcustom org-confirm-shell-link-not-regexp
""
2043 "A regexp to skip confirmation for shell links."
2044 :group
'org-link-follow
2048 (defcustom org-confirm-elisp-link-function
'yes-or-no-p
2049 "Non-nil means ask for confirmation before executing Emacs Lisp links.
2050 Elisp links can be dangerous: just think about a link
2052 [[elisp:(shell-command \"rm -rf ~/*\")][Google Search]]
2054 This link would show up in your Org-mode document as \"Google Search\",
2055 but really it would remove your entire home directory.
2056 Therefore we advise against setting this variable to nil.
2057 Just change it to `y-or-n-p' if you want to confirm with a
2058 single keystroke rather than having to type \"yes\"."
2059 :group
'org-link-follow
2061 (const :tag
"with yes-or-no (safer)" yes-or-no-p
)
2062 (const :tag
"with y-or-n (faster)" y-or-n-p
)
2063 (const :tag
"no confirmation (dangerous)" nil
)))
2064 (put 'org-confirm-shell-link-function
2065 'safe-local-variable
2066 (lambda (x) (member x
'(yes-or-no-p y-or-n-p
))))
2068 (defcustom org-confirm-elisp-link-not-regexp
""
2069 "A regexp to skip confirmation for Elisp links."
2070 :group
'org-link-follow
2074 (defconst org-file-apps-defaults-gnu
2078 "Default file applications on a UNIX or GNU/Linux system.
2079 See `org-file-apps'.")
2081 (defconst org-file-apps-defaults-macosx
2084 (system .
"open %s")
2086 ("eps.gz" .
"gv %s")
2088 ("fig" .
"xfig %s"))
2089 "Default file applications on a MacOS X system.
2090 The system \"open\" is known as a default, but we use X11 applications
2091 for some files for which the OS does not have a good default.
2092 See `org-file-apps'.")
2094 (defconst org-file-apps-defaults-windowsnt
2098 (list (if (featurep 'xemacs
)
2099 'mswindows-shell-execute
2103 (list (if (featurep 'xemacs
)
2104 'mswindows-shell-execute
2107 "Default file applications on a Windows NT system.
2108 The system \"open\" is used for most files.
2109 See `org-file-apps'.")
2111 (defcustom org-file-apps
2112 '((auto-mode . emacs
)
2113 ("\\.mm\\'" . default
)
2114 ("\\.x?html?\\'" . default
)
2115 ("\\.pdf\\'" . default
))
2116 "External applications for opening `file:path' items in a document.
2117 Org-mode uses system defaults for different file types, but
2118 you can use this variable to set the application for a given file
2119 extension. The entries in this list are cons cells where the car identifies
2120 files and the cdr the corresponding command. Possible values for the
2122 \"string\" A string as a file identifier can be interpreted in different
2123 ways, depending on its contents:
2125 - Alphanumeric characters only:
2126 Match links with this file extension.
2127 Example: (\"pdf\" . \"evince %s\")
2128 to open PDFs with evince.
2130 - Regular expression: Match links where the
2131 filename matches the regexp. If you want to
2132 use groups here, use shy groups.
2134 Example: (\"\\.x?html\\'\" . \"firefox %s\")
2135 (\"\\(?:xhtml\\|html\\)\" . \"firefox %s\")
2136 to open *.html and *.xhtml with firefox.
2138 - Regular expression which contains (non-shy) groups:
2139 Match links where the whole link, including \"::\", and
2140 anything after that, matches the regexp.
2141 In a custom command string, %1, %2, etc. are replaced with
2142 the parts of the link that were matched by the groups.
2143 For backwards compatibility, if a command string is given
2144 that does not use any of the group matches, this case is
2145 handled identically to the second one (i.e. match against
2147 In a custom lisp form, you can access the group matches with
2148 (match-string n link).
2150 Example: (\"\\.pdf::\\(\\d+\\)\\'\" . \"evince -p %1 %s\")
2151 to open [[file:document.pdf::5]] with evince at page 5.
2153 `directory' Matches a directory
2154 `remote' Matches a remote file, accessible through tramp or efs.
2155 Remote files most likely should be visited through Emacs
2156 because external applications cannot handle such paths.
2157 `auto-mode' Matches files that are matched by any entry in `auto-mode-alist',
2158 so all files Emacs knows how to handle. Using this with
2159 command `emacs' will open most files in Emacs. Beware that this
2160 will also open html files inside Emacs, unless you add
2161 (\"html\" . default) to the list as well.
2162 t Default for files not matched by any of the other options.
2163 `system' The system command to open files, like `open' on Windows
2164 and Mac OS X, and mailcap under GNU/Linux. This is the command
2165 that will be selected if you call `C-c C-o' with a double
2166 \\[universal-argument] \\[universal-argument] prefix.
2168 Possible values for the command are:
2169 `emacs' The file will be visited by the current Emacs process.
2170 `default' Use the default application for this file type, which is the
2171 association for t in the list, most likely in the system-specific
2173 This can be used to overrule an unwanted setting in the
2174 system-specific variable.
2175 `system' Use the system command for opening files, like \"open\".
2176 This command is specified by the entry whose car is `system'.
2177 Most likely, the system-specific version of this variable
2178 does define this command, but you can overrule/replace it
2180 string A command to be executed by a shell; %s will be replaced
2181 by the path to the file.
2182 sexp A Lisp form which will be evaluated. The file path will
2183 be available in the Lisp variable `file'.
2184 For more examples, see the system specific constants
2185 `org-file-apps-defaults-macosx'
2186 `org-file-apps-defaults-windowsnt'
2187 `org-file-apps-defaults-gnu'."
2188 :group
'org-link-follow
2190 (cons (choice :value
""
2191 (string :tag
"Extension")
2192 (const :tag
"System command to open files" system
)
2193 (const :tag
"Default for unrecognized files" t
)
2194 (const :tag
"Remote file" remote
)
2195 (const :tag
"Links to a directory" directory
)
2196 (const :tag
"Any files that have Emacs modes"
2199 (const :tag
"Visit with Emacs" emacs
)
2200 (const :tag
"Use default" default
)
2201 (const :tag
"Use the system command" system
)
2202 (string :tag
"Command")
2203 (sexp :tag
"Lisp form")))))
2205 (defcustom org-doi-server-url
"http://dx.doi.org/"
2206 "The URL of the DOI server."
2209 :group
'org-link-follow
)
2211 (defgroup org-refile nil
2212 "Options concerning refiling entries in Org-mode."
2216 (defcustom org-directory
"~/org"
2217 "Directory with org files.
2218 This is just a default location to look for Org files. There is no need
2219 at all to put your files into this directory. It is only used in the
2220 following situations:
2222 1. When a capture template specifies a target file that is not an
2223 absolute path. The path will then be interpreted relative to
2225 2. When a capture note is filed away in an interactive way (when exiting the
2226 note buffer with `C-1 C-c C-c'. The user is prompted for an org file,
2227 with `org-directory' as the default path."
2232 (defcustom org-default-notes-file
(convert-standard-filename "~/.notes")
2233 "Default target for storing notes.
2234 Used as a fall back file for org-capture.el, for templates that
2235 do not specify a target file."
2239 (const :tag
"Default from remember-data-file" nil
)
2242 (defcustom org-goto-interface
'outline
2243 "The default interface to be used for `org-goto'.
2245 outline The interface shows an outline of the relevant file
2246 and the correct heading is found by moving through
2247 the outline or by searching with incremental search.
2248 outline-path-completion Headlines in the current buffer are offered via
2249 completion. This is the interface also used by
2250 the refile command."
2253 (const :tag
"Outline" outline
)
2254 (const :tag
"Outline-path-completion" outline-path-completion
)))
2256 (defcustom org-goto-max-level
5
2257 "Maximum target level when running `org-goto' with refile interface."
2261 (defcustom org-reverse-note-order nil
2262 "Non-nil means store new notes at the beginning of a file or entry.
2263 When nil, new notes will be filed to the end of a file or entry.
2264 This can also be a list with cons cells of regular expressions that
2265 are matched against file names, and values."
2269 (const :tag
"Reverse always" t
)
2270 (const :tag
"Reverse never" nil
)
2271 (repeat :tag
"By file name regexp"
2272 (cons regexp boolean
))))
2274 (defcustom org-log-refile nil
2275 "Information to record when a task is refiled.
2277 Possible values are:
2279 nil Don't add anything
2280 time Add a time stamp to the task
2281 note Prompt for a note and add it with template `org-log-note-headings'
2283 This option can also be set with on a per-file-basis with
2285 #+STARTUP: nologrefile
2286 #+STARTUP: logrefile
2287 #+STARTUP: lognoterefile
2289 You can have local logging settings for a subtree by setting the LOGGING
2290 property to one or more of these keywords.
2292 When bulk-refiling from the agenda, the value `note' is forbidden and
2293 will temporarily be changed to `time'."
2295 :group
'org-progress
2298 (const :tag
"No logging" nil
)
2299 (const :tag
"Record timestamp" time
)
2300 (const :tag
"Record timestamp with note." note
)))
2302 (defcustom org-refile-targets nil
2303 "Targets for refiling entries with \\[org-refile].
2304 This is a list of cons cells. Each cell contains:
2305 - a specification of the files to be considered, either a list of files,
2306 or a symbol whose function or variable value will be used to retrieve
2307 a file name or a list of file names. If you use `org-agenda-files' for
2308 that, all agenda files will be scanned for targets. Nil means consider
2309 headings in the current buffer.
2310 - A specification of how to find candidate refile targets. This may be
2312 - a cons cell (:tag . \"TAG\") to identify refile targets by a tag.
2313 This tag has to be present in all target headlines, inheritance will
2315 - a cons cell (:todo . \"KEYWORD\") to identify refile targets by
2317 - a cons cell (:regexp . \"REGEXP\") with a regular expression matching
2318 headlines that are refiling targets.
2319 - a cons cell (:level . N). Any headline of level N is considered a target.
2320 Note that, when `org-odd-levels-only' is set, level corresponds to
2321 order in hierarchy, not to the number of stars.
2322 - a cons cell (:maxlevel . N). Any headline with level <= N is a target.
2323 Note that, when `org-odd-levels-only' is set, level corresponds to
2324 order in hierarchy, not to the number of stars.
2326 Each element of this list generates a set of possible targets.
2327 The union of these sets is presented (with completion) to
2328 the user by `org-refile'.
2330 You can set the variable `org-refile-target-verify-function' to a function
2331 to verify each headline found by the simple criteria above.
2333 When this variable is nil, all top-level headlines in the current buffer
2334 are used, equivalent to the value `((nil . (:level . 1))'."
2338 (choice :value org-agenda-files
2339 (const :tag
"All agenda files" org-agenda-files
)
2340 (const :tag
"Current buffer" nil
)
2341 (function) (variable) (file))
2342 (choice :tag
"Identify target headline by"
2343 (cons :tag
"Specific tag" (const :value
:tag
) (string))
2344 (cons :tag
"TODO keyword" (const :value
:todo
) (string))
2345 (cons :tag
"Regular expression" (const :value
:regexp
) (regexp))
2346 (cons :tag
"Level number" (const :value
:level
) (integer))
2347 (cons :tag
"Max Level number" (const :value
:maxlevel
) (integer))))))
2349 (defcustom org-refile-target-verify-function nil
2350 "Function to verify if the headline at point should be a refile target.
2351 The function will be called without arguments, with point at the
2352 beginning of the headline. It should return t and leave point
2353 where it is if the headline is a valid target for refiling.
2355 If the target should not be selected, the function must return nil.
2356 In addition to this, it may move point to a place from where the search
2357 should be continued. For example, the function may decide that the entire
2358 subtree of the current entry should be excluded and move point to the end
2365 (defcustom org-refile-use-cache nil
2366 "Non-nil means cache refile targets to speed up the process.
2367 The cache for a particular file will be updated automatically when
2368 the buffer has been killed, or when any of the marker used for flagging
2369 refile targets no longer points at a live buffer.
2370 If you have added new entries to a buffer that might themselves be targets,
2371 you need to clear the cache manually by pressing `C-0 C-c C-w' or, if you
2372 find that easier, `C-u C-u C-u C-c C-w'."
2377 (defcustom org-refile-use-outline-path nil
2378 "Non-nil means provide refile targets as paths.
2379 So a level 3 headline will be available as level1/level2/level3.
2381 When the value is `file', also include the file name (without directory)
2382 into the path. In this case, you can also stop the completion after
2383 the file name, to get entries inserted as top level in the file.
2385 When `full-file-path', include the full file path."
2388 (const :tag
"Not" nil
)
2389 (const :tag
"Yes" t
)
2390 (const :tag
"Start with file name" file
)
2391 (const :tag
"Start with full file path" full-file-path
)))
2393 (defcustom org-outline-path-complete-in-steps t
2394 "Non-nil means complete the outline path in hierarchical steps.
2395 When Org-mode uses the refile interface to select an outline path
2396 \(see variable `org-refile-use-outline-path'), the completion of
2397 the path can be done is a single go, or if can be done in steps down
2398 the headline hierarchy. Going in steps is probably the best if you
2399 do not use a special completion package like `ido' or `icicles'.
2400 However, when using these packages, going in one step can be very
2401 fast, while still showing the whole path to the entry."
2405 (defcustom org-refile-allow-creating-parent-nodes nil
2406 "Non-nil means allow to create new nodes as refile targets.
2407 New nodes are then created by adding \"/new node name\" to the completion
2408 of an existing node. When the value of this variable is `confirm',
2409 new node creation must be confirmed by the user (recommended).
2410 When nil, the completion must match an existing entry.
2412 Note that, if the new heading is not seen by the criteria
2413 listed in `org-refile-targets', multiple instances of the same
2414 heading would be created by trying again to file under the new
2418 (const :tag
"Never" nil
)
2419 (const :tag
"Always" t
)
2420 (const :tag
"Prompt for confirmation" confirm
)))
2422 (defcustom org-refile-active-region-within-subtree nil
2423 "Non-nil means also refile active region within a subtree.
2425 By default `org-refile' doesn't allow refiling regions if they
2426 don't contain a set of subtrees, but it might be convenient to
2427 do so sometimes: in that case, the first line of the region is
2428 converted to a headline before refiling."
2433 (defgroup org-todo nil
2434 "Options concerning TODO items in Org-mode."
2438 (defgroup org-progress nil
2439 "Options concerning Progress logging in Org-mode."
2443 (defvar org-todo-interpretation-widgets
2444 '((:tag
"Sequence (cycling hits every state)" sequence
)
2445 (:tag
"Type (cycling directly to DONE)" type
))
2446 "The available interpretation symbols for customizing `org-todo-keywords'.
2447 Interested libraries should add to this list.")
2449 (defcustom org-todo-keywords
'((sequence "TODO" "DONE"))
2450 "List of TODO entry keyword sequences and their interpretation.
2451 \\<org-mode-map>This is a list of sequences.
2453 Each sequence starts with a symbol, either `sequence' or `type',
2454 indicating if the keywords should be interpreted as a sequence of
2455 action steps, or as different types of TODO items. The first
2456 keywords are states requiring action - these states will select a headline
2457 for inclusion into the global TODO list Org-mode produces. If one of
2458 the \"keywords\" is the vertical bar, \"|\", the remaining keywords
2459 signify that no further action is necessary. If \"|\" is not found,
2460 the last keyword is treated as the only DONE state of the sequence.
2462 The command \\[org-todo] cycles an entry through these states, and one
2463 additional state where no keyword is present. For details about this
2464 cycling, see the manual.
2466 TODO keywords and interpretation can also be set on a per-file basis with
2467 the special #+SEQ_TODO and #+TYP_TODO lines.
2469 Each keyword can optionally specify a character for fast state selection
2470 \(in combination with the variable `org-use-fast-todo-selection')
2471 and specifiers for state change logging, using the same syntax that
2472 is used in the \"#+TODO:\" lines. For example, \"WAIT(w)\" says that
2473 the WAIT state can be selected with the \"w\" key. \"WAIT(w!)\"
2474 indicates to record a time stamp each time this state is selected.
2476 Each keyword may also specify if a timestamp or a note should be
2477 recorded when entering or leaving the state, by adding additional
2478 characters in the parenthesis after the keyword. This looks like this:
2479 \"WAIT(w@/!)\". \"@\" means to add a note (with time), \"!\" means to
2480 record only the time of the state change. With X and Y being either
2481 \"@\" or \"!\", \"X/Y\" means use X when entering the state, and use
2482 Y when leaving the state if and only if the *target* state does not
2483 define X. You may omit any of the fast-selection key or X or /Y,
2484 so WAIT(w@), WAIT(w/@) and WAIT(@/@) are all valid.
2486 For backward compatibility, this variable may also be just a list
2487 of keywords. In this case the interpretation (sequence or type) will be
2488 taken from the (otherwise obsolete) variable `org-todo-interpretation'."
2490 :group
'org-keywords
2492 (repeat :tag
"Old syntax, just keywords"
2493 (string :tag
"Keyword"))
2494 (repeat :tag
"New syntax"
2497 :tag
"Interpretation"
2498 ;;Quick and dirty way to see
2499 ;;`org-todo-interpretations'. This takes the
2500 ;;place of item arguments
2508 org-todo-interpretation-widgets
))
2511 (string :tag
"Keyword"))))))
2513 (defvar org-todo-keywords-1 nil
2514 "All TODO and DONE keywords active in a buffer.")
2515 (make-variable-buffer-local 'org-todo-keywords-1
)
2516 (defvar org-todo-keywords-for-agenda nil
)
2517 (defvar org-done-keywords-for-agenda nil
)
2518 (defvar org-todo-keyword-alist-for-agenda nil
)
2519 (defvar org-tag-alist-for-agenda nil
2520 "Alist of all tags from all agenda files.")
2521 (defvar org-tag-groups-alist-for-agenda nil
2522 "Alist of all groups tags from all current agenda files.")
2523 (defvar org-tag-groups-alist nil
)
2524 (make-variable-buffer-local 'org-tag-groups-alist
)
2525 (defvar org-agenda-contributing-files nil
)
2526 (defvar org-not-done-keywords nil
)
2527 (make-variable-buffer-local 'org-not-done-keywords
)
2528 (defvar org-done-keywords nil
)
2529 (make-variable-buffer-local 'org-done-keywords
)
2530 (defvar org-todo-heads nil
)
2531 (make-variable-buffer-local 'org-todo-heads
)
2532 (defvar org-todo-sets nil
)
2533 (make-variable-buffer-local 'org-todo-sets
)
2534 (defvar org-todo-log-states nil
)
2535 (make-variable-buffer-local 'org-todo-log-states
)
2536 (defvar org-todo-kwd-alist nil
)
2537 (make-variable-buffer-local 'org-todo-kwd-alist
)
2538 (defvar org-todo-key-alist nil
)
2539 (make-variable-buffer-local 'org-todo-key-alist
)
2540 (defvar org-todo-key-trigger nil
)
2541 (make-variable-buffer-local 'org-todo-key-trigger
)
2543 (defcustom org-todo-interpretation
'sequence
2544 "Controls how TODO keywords are interpreted.
2545 This variable is in principle obsolete and is only used for
2546 backward compatibility, if the interpretation of todo keywords is
2547 not given already in `org-todo-keywords'. See that variable for
2550 :group
'org-keywords
2551 :type
'(choice (const sequence
)
2554 (defcustom org-use-fast-todo-selection t
2555 "Non-nil means use the fast todo selection scheme with C-c C-t.
2556 This variable describes if and under what circumstances the cycling
2557 mechanism for TODO keywords will be replaced by a single-key, direct
2560 When nil, fast selection is never used.
2562 When the symbol `prefix', it will be used when `org-todo' is called
2563 with a prefix argument, i.e. `C-u C-c C-t' in an Org-mode buffer, and
2564 `C-u t' in an agenda buffer.
2566 When t, fast selection is used by default. In this case, the prefix
2567 argument forces cycling instead.
2569 In all cases, the special interface is only used if access keys have
2570 actually been assigned by the user, i.e. if keywords in the configuration
2571 are followed by a letter in parenthesis, like TODO(t)."
2574 (const :tag
"Never" nil
)
2575 (const :tag
"By default" t
)
2576 (const :tag
"Only with C-u C-c C-t" prefix
)))
2578 (defcustom org-provide-todo-statistics t
2579 "Non-nil means update todo statistics after insert and toggle.
2580 ALL-HEADLINES means update todo statistics by including headlines
2581 with no TODO keyword as well, counting them as not done.
2582 A list of TODO keywords means the same, but skip keywords that are
2584 When set to a list of two lists, the first list contains keywords
2585 to consider as TODO keywords, the second list contains keywords
2586 to consider as DONE keywords.
2588 When this is set, todo statistics is updated in the parent of the
2589 current entry each time a todo state is changed."
2592 (const :tag
"Yes, only for TODO entries" t
)
2593 (const :tag
"Yes, including all entries" all-headlines
)
2594 (repeat :tag
"Yes, for TODOs in this list"
2595 (string :tag
"TODO keyword"))
2596 (list :tag
"Yes, for TODOs and DONEs in these lists"
2597 (repeat (string :tag
"TODO keyword"))
2598 (repeat (string :tag
"DONE keyword")))
2599 (other :tag
"No TODO statistics" nil
)))
2601 (defcustom org-hierarchical-todo-statistics t
2602 "Non-nil means TODO statistics covers just direct children.
2603 When nil, all entries in the subtree are considered.
2604 This has only an effect if `org-provide-todo-statistics' is set.
2605 To set this to nil for only a single subtree, use a COOKIE_DATA
2606 property and include the word \"recursive\" into the value."
2610 (defcustom org-after-todo-state-change-hook nil
2611 "Hook which is run after the state of a TODO item was changed.
2612 The new state (a string with a TODO keyword, or nil) is available in the
2613 Lisp variable `org-state'."
2617 (defvar org-blocker-hook nil
2618 "Hook for functions that are allowed to block a state change.
2620 Functions in this hook should not modify the buffer.
2621 Each function gets as its single argument a property list,
2622 see `org-trigger-hook' for more information about this list.
2624 If any of the functions in this hook returns nil, the state change
2627 (defvar org-trigger-hook nil
2628 "Hook for functions that are triggered by a state change.
2630 Each function gets as its single argument a property list with at
2631 least the following elements:
2633 (:type type-of-change :position pos-at-entry-start
2634 :from old-state :to new-state)
2636 Depending on the type, more properties may be present.
2638 This mechanism is currently implemented for:
2642 :type todo-state-change
2643 :from previous state (keyword as a string), or nil, or a symbol
2644 'todo' or 'done', to indicate the general type of state.
2645 :to new state, like in :from")
2647 (defcustom org-enforce-todo-dependencies nil
2648 "Non-nil means undone TODO entries will block switching the parent to DONE.
2649 Also, if a parent has an :ORDERED: property, switching an entry to DONE will
2650 be blocked if any prior sibling is not yet done.
2651 Finally, if the parent is blocked because of ordered siblings of its own,
2652 the child will also be blocked."
2653 :set
(lambda (var val
)
2656 (add-hook 'org-blocker-hook
2657 'org-block-todo-from-children-or-siblings-or-parent
)
2658 (remove-hook 'org-blocker-hook
2659 'org-block-todo-from-children-or-siblings-or-parent
)))
2663 (defcustom org-enforce-todo-checkbox-dependencies nil
2664 "Non-nil means unchecked boxes will block switching the parent to DONE.
2665 When this is nil, checkboxes have no influence on switching TODO states.
2666 When non-nil, you first need to check off all check boxes before the TODO
2667 entry can be switched to DONE.
2668 This variable needs to be set before org.el is loaded, and you need to
2669 restart Emacs after a change to make the change effective. The only way
2670 to change is while Emacs is running is through the customize interface."
2671 :set
(lambda (var val
)
2674 (add-hook 'org-blocker-hook
2675 'org-block-todo-from-checkboxes
)
2676 (remove-hook 'org-blocker-hook
2677 'org-block-todo-from-checkboxes
)))
2681 (defcustom org-treat-insert-todo-heading-as-state-change nil
2682 "Non-nil means inserting a TODO heading is treated as state change.
2683 So when the command \\[org-insert-todo-heading] is used, state change
2684 logging will apply if appropriate. When nil, the new TODO item will
2685 be inserted directly, and no logging will take place."
2689 (defcustom org-treat-S-cursor-todo-selection-as-state-change t
2690 "Non-nil means switching TODO states with S-cursor counts as state change.
2691 This is the default behavior. However, setting this to nil allows a
2692 convenient way to select a TODO state and bypass any logging associated
2697 (defcustom org-todo-state-tags-triggers nil
2698 "Tag changes that should be triggered by TODO state changes.
2699 This is a list. Each entry is
2701 (state-change (tag . flag) .......)
2703 State-change can be a string with a state, and empty string to indicate the
2704 state that has no TODO keyword, or it can be one of the symbols `todo'
2705 or `done', meaning any not-done or done state, respectively."
2709 (cons (choice :tag
"When changing to"
2710 (const :tag
"Not-done state" todo
)
2711 (const :tag
"Done state" done
)
2712 (string :tag
"State"))
2714 (cons :tag
"Tag action"
2716 (choice (const :tag
"Add" t
) (const :tag
"Remove" nil
)))))))
2718 (defcustom org-log-done nil
2719 "Information to record when a task moves to the DONE state.
2721 Possible values are:
2723 nil Don't add anything, just change the keyword
2724 time Add a time stamp to the task
2725 note Prompt for a note and add it with template `org-log-note-headings'
2727 This option can also be set with on a per-file-basis with
2729 #+STARTUP: nologdone
2731 #+STARTUP: lognotedone
2733 You can have local logging settings for a subtree by setting the LOGGING
2734 property to one or more of these keywords."
2736 :group
'org-progress
2738 (const :tag
"No logging" nil
)
2739 (const :tag
"Record CLOSED timestamp" time
)
2740 (const :tag
"Record CLOSED timestamp with note." note
)))
2742 ;; Normalize old uses of org-log-done.
2744 ((eq org-log-done t
) (setq org-log-done
'time
))
2745 ((and (listp org-log-done
) (memq 'done org-log-done
))
2746 (setq org-log-done
'note
)))
2748 (defcustom org-log-reschedule nil
2749 "Information to record when the scheduling date of a tasks is modified.
2751 Possible values are:
2753 nil Don't add anything, just change the date
2754 time Add a time stamp to the task
2755 note Prompt for a note and add it with template `org-log-note-headings'
2757 This option can also be set with on a per-file-basis with
2759 #+STARTUP: nologreschedule
2760 #+STARTUP: logreschedule
2761 #+STARTUP: lognotereschedule"
2763 :group
'org-progress
2765 (const :tag
"No logging" nil
)
2766 (const :tag
"Record timestamp" time
)
2767 (const :tag
"Record timestamp with note." note
)))
2769 (defcustom org-log-redeadline nil
2770 "Information to record when the deadline date of a tasks is modified.
2772 Possible values are:
2774 nil Don't add anything, just change the date
2775 time Add a time stamp to the task
2776 note Prompt for a note and add it with template `org-log-note-headings'
2778 This option can also be set with on a per-file-basis with
2780 #+STARTUP: nologredeadline
2781 #+STARTUP: logredeadline
2782 #+STARTUP: lognoteredeadline
2784 You can have local logging settings for a subtree by setting the LOGGING
2785 property to one or more of these keywords."
2787 :group
'org-progress
2789 (const :tag
"No logging" nil
)
2790 (const :tag
"Record timestamp" time
)
2791 (const :tag
"Record timestamp with note." note
)))
2793 (defcustom org-log-note-clock-out nil
2794 "Non-nil means record a note when clocking out of an item.
2795 This can also be configured on a per-file basis by adding one of
2796 the following lines anywhere in the buffer:
2798 #+STARTUP: lognoteclock-out
2799 #+STARTUP: nolognoteclock-out"
2801 :group
'org-progress
2804 (defcustom org-log-done-with-time t
2805 "Non-nil means the CLOSED time stamp will contain date and time.
2806 When nil, only the date will be recorded."
2807 :group
'org-progress
2810 (defcustom org-log-note-headings
2811 '((done .
"CLOSING NOTE %t")
2812 (state .
"State %-12s from %-12S %t")
2813 (note .
"Note taken on %t")
2814 (reschedule .
"Rescheduled from %S on %t")
2815 (delschedule .
"Not scheduled, was %S on %t")
2816 (redeadline .
"New deadline from %S on %t")
2817 (deldeadline .
"Removed deadline, was %S on %t")
2818 (refile .
"Refiled on %t")
2820 "Headings for notes added to entries.
2821 The value is an alist, with the car being a symbol indicating the note
2822 context, and the cdr is the heading to be used. The heading may also be the
2824 %t in the heading will be replaced by a time stamp.
2825 %T will be an active time stamp instead the default inactive one
2826 %d will be replaced by a short-format time stamp.
2827 %D will be replaced by an active short-format time stamp.
2828 %s will be replaced by the new TODO state, in double quotes.
2829 %S will be replaced by the old TODO state, in double quotes.
2830 %u will be replaced by the user name.
2831 %U will be replaced by the full user name.
2833 In fact, it is not a good idea to change the `state' entry, because
2834 agenda log mode depends on the format of these entries."
2836 :group
'org-progress
2837 :type
'(list :greedy t
2838 (cons (const :tag
"Heading when closing an item" done
) string
)
2840 "Heading when changing todo state (todo sequence only)"
2842 (cons (const :tag
"Heading when just taking a note" note
) string
)
2843 (cons (const :tag
"Heading when rescheduling" reschedule
) string
)
2844 (cons (const :tag
"Heading when an item is no longer scheduled" delschedule
) string
)
2845 (cons (const :tag
"Heading when changing deadline" redeadline
) string
)
2846 (cons (const :tag
"Heading when deleting a deadline" deldeadline
) string
)
2847 (cons (const :tag
"Heading when refiling" refile
) string
)
2848 (cons (const :tag
"Heading when clocking out" clock-out
) string
)))
2850 (unless (assq 'note org-log-note-headings
)
2851 (push '(note .
"%t") org-log-note-headings
))
2853 (defcustom org-log-into-drawer nil
2854 "Non-nil means insert state change notes and time stamps into a drawer.
2855 When nil, state changes notes will be inserted after the headline and
2856 any scheduling and clock lines, but not inside a drawer.
2858 The value of this variable should be the name of the drawer to use.
2859 LOGBOOK is proposed as the default drawer for this purpose, you can
2860 also set this to a string to define the drawer of your choice.
2862 A value of t is also allowed, representing \"LOGBOOK\".
2864 A value of t or nil can also be set with on a per-file-basis with
2866 #+STARTUP: logdrawer
2867 #+STARTUP: nologdrawer
2869 If this variable is set, `org-log-state-notes-insert-after-drawers'
2872 You can set the property LOG_INTO_DRAWER to overrule this setting for
2875 :group
'org-progress
2877 (const :tag
"Not into a drawer" nil
)
2878 (const :tag
"LOGBOOK" t
)
2879 (string :tag
"Other")))
2881 (org-defvaralias 'org-log-state-notes-into-drawer
'org-log-into-drawer
)
2883 (defun org-log-into-drawer ()
2884 "Return the value of `org-log-into-drawer', but let properties overrule.
2885 If the current entry has or inherits a LOG_INTO_DRAWER property, it will be
2886 used instead of the default value."
2887 (let ((p (org-entry-get nil
"LOG_INTO_DRAWER" 'inherit t
)))
2889 ((not p
) org-log-into-drawer
)
2890 ((equal p
"nil") nil
)
2891 ((equal p
"t") "LOGBOOK")
2894 (defcustom org-log-state-notes-insert-after-drawers nil
2895 "Non-nil means insert state change notes after any drawers in entry.
2896 Only the drawers that *immediately* follow the headline and the
2897 deadline/scheduled line are skipped.
2898 When nil, insert notes right after the heading and perhaps the line
2899 with deadline/scheduling if present.
2901 This variable will have no effect if `org-log-into-drawer' is
2904 :group
'org-progress
2907 (defcustom org-log-states-order-reversed t
2908 "Non-nil means the latest state note will be directly after heading.
2909 When nil, the state change notes will be ordered according to time.
2911 This option can also be set with on a per-file-basis with
2913 #+STARTUP: logstatesreversed
2914 #+STARTUP: nologstatesreversed"
2916 :group
'org-progress
2919 (defcustom org-todo-repeat-to-state nil
2920 "The TODO state to which a repeater should return the repeating task.
2921 By default this is the first task in a TODO sequence, or the previous state
2922 in a TODO_TYP set. But you can specify another task here.
2923 alternatively, set the :REPEAT_TO_STATE: property of the entry."
2926 :type
'(choice (const :tag
"Head of sequence" nil
)
2927 (string :tag
"Specific state")))
2929 (defcustom org-log-repeat
'time
2930 "Non-nil means record moving through the DONE state when triggering repeat.
2931 An auto-repeating task is immediately switched back to TODO when
2932 marked DONE. If you are not logging state changes (by adding \"@\"
2933 or \"!\" to the TODO keyword definition), or set `org-log-done' to
2934 record a closing note, there will be no record of the task moving
2935 through DONE. This variable forces taking a note anyway.
2937 nil Don't force a record
2938 time Record a time stamp
2939 note Prompt for a note and add it with template `org-log-note-headings'
2941 This option can also be set with on a per-file-basis with
2943 #+STARTUP: nologrepeat
2944 #+STARTUP: logrepeat
2945 #+STARTUP: lognoterepeat
2947 You can have local logging settings for a subtree by setting the LOGGING
2948 property to one or more of these keywords."
2950 :group
'org-progress
2952 (const :tag
"Don't force a record" nil
)
2953 (const :tag
"Force recording the DONE state" time
)
2954 (const :tag
"Force recording a note with the DONE state" note
)))
2957 (defgroup org-priorities nil
2958 "Priorities in Org-mode."
2959 :tag
"Org Priorities"
2962 (defcustom org-enable-priority-commands t
2963 "Non-nil means priority commands are active.
2964 When nil, these commands will be disabled, so that you never accidentally
2966 :group
'org-priorities
2969 (defcustom org-highest-priority ?A
2970 "The highest priority of TODO items. A character like ?A, ?B etc.
2971 Must have a smaller ASCII number than `org-lowest-priority'."
2972 :group
'org-priorities
2975 (defcustom org-lowest-priority ?C
2976 "The lowest priority of TODO items. A character like ?A, ?B etc.
2977 Must have a larger ASCII number than `org-highest-priority'."
2978 :group
'org-priorities
2981 (defcustom org-default-priority ?B
2982 "The default priority of TODO items.
2983 This is the priority an item gets if no explicit priority is given.
2984 When starting to cycle on an empty priority the first step in the cycle
2985 depends on `org-priority-start-cycle-with-default'. The resulting first
2986 step priority must not exceed the range from `org-highest-priority' to
2987 `org-lowest-priority' which means that `org-default-priority' has to be
2988 in this range exclusive or inclusive the range boundaries. Else the
2989 first step refuses to set the default and the second will fall back
2990 to (depending on the command used) the highest or lowest priority."
2991 :group
'org-priorities
2994 (defcustom org-priority-start-cycle-with-default t
2995 "Non-nil means start with default priority when starting to cycle.
2996 When this is nil, the first step in the cycle will be (depending on the
2997 command used) one higher or lower than the default priority.
2998 See also `org-default-priority'."
2999 :group
'org-priorities
3002 (defcustom org-get-priority-function nil
3003 "Function to extract the priority from a string.
3004 The string is normally the headline. If this is nil Org computes the
3005 priority from the priority cookie like [#A] in the headline. It returns
3006 an integer, increasing by 1000 for each priority level.
3007 The user can set a different function here, which should take a string
3008 as an argument and return the numeric priority."
3009 :group
'org-priorities
3015 (defgroup org-time nil
3016 "Options concerning time stamps and deadlines in Org-mode."
3020 (defcustom org-insert-labeled-timestamps-at-point nil
3021 "Non-nil means SCHEDULED and DEADLINE timestamps are inserted at point.
3022 When nil, these labeled time stamps are forces into the second line of an
3023 entry, just after the headline. When scheduling from the global TODO list,
3024 the time stamp will always be forced into the second line."
3028 (defcustom org-time-stamp-rounding-minutes
'(0 5)
3029 "Number of minutes to round time stamps to.
3030 These are two values, the first applies when first creating a time stamp.
3031 The second applies when changing it with the commands `S-up' and `S-down'.
3032 When changing the time stamp, this means that it will change in steps
3033 of N minutes, as given by the second value.
3035 When a setting is 0 or 1, insert the time unmodified. Useful rounding
3036 numbers should be factors of 60, so for example 5, 10, 15.
3038 When this is larger than 1, you can still force an exact time stamp by using
3039 a double prefix argument to a time stamp command like `C-c .' or `C-c !',
3040 and by using a prefix arg to `S-up/down' to specify the exact number
3041 of minutes to shift."
3043 :get
(lambda (var) ; Make sure both elements are there
3044 (if (integerp (default-value var
))
3045 (list (default-value var
) 5)
3046 (default-value var
)))
3048 (integer :tag
"when inserting times")
3049 (integer :tag
"when modifying times")))
3051 ;; Normalize old customizations of this variable.
3052 (when (integerp org-time-stamp-rounding-minutes
)
3053 (setq org-time-stamp-rounding-minutes
3054 (list org-time-stamp-rounding-minutes
3055 org-time-stamp-rounding-minutes
)))
3057 (defcustom org-display-custom-times nil
3058 "Non-nil means overlay custom formats over all time stamps.
3059 The formats are defined through the variable `org-time-stamp-custom-formats'.
3060 To turn this on on a per-file basis, insert anywhere in the file:
3061 #+STARTUP: customtime"
3065 (make-variable-buffer-local 'org-display-custom-times
)
3067 (defcustom org-time-stamp-custom-formats
3068 '("<%m/%d/%y %a>" .
"<%m/%d/%y %a %H:%M>") ; american
3069 "Custom formats for time stamps. See `format-time-string' for the syntax.
3070 These are overlaid over the default ISO format if the variable
3071 `org-display-custom-times' is set. Time like %H:%M should be at the
3072 end of the second format. The custom formats are also honored by export
3073 commands, if custom time display is turned on at the time of export."
3077 (defun org-time-stamp-format (&optional long inactive
)
3078 "Get the right format for a time string."
3079 (let ((f (if long
(cdr org-time-stamp-formats
)
3080 (car org-time-stamp-formats
))))
3082 (concat "[" (substring f
1 -
1) "]")
3085 (defcustom org-time-clocksum-format
3086 '(:days
"%dd " :hours
"%d" :require-hours t
:minutes
":%02d" :require-minutes t
)
3087 "The format string used when creating CLOCKSUM lines.
3088 This is also used when Org mode generates a time duration.
3090 The value can be a single format string containing two
3091 %-sequences, which will be filled with the number of hours and
3092 minutes in that order.
3094 Alternatively, the value can be a plist associating any of the
3095 keys :years, :months, :weeks, :days, :hours or :minutes with
3096 format strings. The time duration is formatted using only the
3097 time components that are needed and concatenating the results.
3098 If a time unit in absent, it falls back to the next smallest
3101 The keys :require-years, :require-months, :require-days,
3102 :require-weeks, :require-hours, :require-minutes are also
3103 meaningful. A non-nil value for these keys indicates that the
3104 corresponding time component should always be included, even if
3110 \(:days \"%dd\" :hours \"%d\" :require-hours t :minutes \":%02d\"
3113 means durations longer than a day will be expressed in days,
3114 hours and minutes, and durations less than a day will always be
3115 expressed in hours and minutes (even for durations less than an
3120 \(:days \"%dd\" :minutes \"%dm\")
3122 means durations longer than a day will be expressed in days and
3123 minutes, and durations less than a day will be expressed entirely
3124 in minutes (even for durations longer than an hour)."
3128 :package-version
'(Org .
"8.0")
3129 :type
'(choice (string :tag
"Format string")
3131 (group :inline t
(const :tag
"Years" :years
)
3132 (string :tag
"Format string"))
3134 (const :tag
"Always show years" :require-years
)
3136 (group :inline t
(const :tag
"Months" :months
)
3137 (string :tag
"Format string"))
3139 (const :tag
"Always show months" :require-months
)
3141 (group :inline t
(const :tag
"Weeks" :weeks
)
3142 (string :tag
"Format string"))
3144 (const :tag
"Always show weeks" :require-weeks
)
3146 (group :inline t
(const :tag
"Days" :days
)
3147 (string :tag
"Format string"))
3149 (const :tag
"Always show days" :require-days
)
3151 (group :inline t
(const :tag
"Hours" :hours
)
3152 (string :tag
"Format string"))
3154 (const :tag
"Always show hours" :require-hours
)
3156 (group :inline t
(const :tag
"Minutes" :minutes
)
3157 (string :tag
"Format string"))
3159 (const :tag
"Always show minutes" :require-minutes
)
3162 (defcustom org-time-clocksum-use-fractional nil
3163 "When non-nil, \\[org-clock-display] uses fractional times.
3164 See `org-time-clocksum-format' for more on time clock formats."
3170 (defcustom org-time-clocksum-use-effort-durations nil
3171 "When non-nil, \\[org-clock-display] uses effort durations.
3172 E.g. by default, one day is considered to be a 8 hours effort,
3173 so a task that has been clocked for 16 hours will be displayed
3174 as during 2 days in the clock display or in the clocktable.
3176 See `org-effort-durations' on how to set effort durations
3177 and `org-time-clocksum-format' for more on time clock formats."
3181 :package-version
'(Org .
"8.0")
3184 (defcustom org-time-clocksum-fractional-format
"%.2f"
3185 "The format string used when creating CLOCKSUM lines,
3186 or when Org mode generates a time duration, if
3187 `org-time-clocksum-use-fractional' is enabled.
3189 The value can be a single format string containing one
3190 %-sequence, which will be filled with the number of hours as
3193 Alternatively, the value can be a plist associating any of the
3194 keys :years, :months, :weeks, :days, :hours or :minutes with
3195 a format string. The time duration is formatted using the
3196 largest time unit which gives a non-zero integer part. If all
3197 specified formats have zero integer part, the smallest time unit
3200 :type
'(choice (string :tag
"Format string")
3201 (set (group :inline t
(const :tag
"Years" :years
)
3202 (string :tag
"Format string"))
3203 (group :inline t
(const :tag
"Months" :months
)
3204 (string :tag
"Format string"))
3205 (group :inline t
(const :tag
"Weeks" :weeks
)
3206 (string :tag
"Format string"))
3207 (group :inline t
(const :tag
"Days" :days
)
3208 (string :tag
"Format string"))
3209 (group :inline t
(const :tag
"Hours" :hours
)
3210 (string :tag
"Format string"))
3211 (group :inline t
(const :tag
"Minutes" :minutes
)
3212 (string :tag
"Format string")))))
3214 (defcustom org-deadline-warning-days
14
3215 "Number of days before expiration during which a deadline becomes active.
3216 This variable governs the display in sparse trees and in the agenda.
3217 When 0 or negative, it means use this number (the absolute value of it)
3218 even if a deadline has a different individual lead time specified.
3220 Custom commands can set this variable in the options section."
3222 :group
'org-agenda-daily
/weekly
3225 (defcustom org-scheduled-delay-days
0
3226 "Number of days before a scheduled item becomes active.
3227 This variable governs the display in sparse trees and in the agenda.
3228 The default value (i.e. 0) means: don't delay scheduled item.
3229 When negative, it means use this number (the absolute value of it)
3230 even if a scheduled item has a different individual delay time
3233 Custom commands can set this variable in the options section."
3235 :group
'org-agenda-daily
/weekly
3237 :package-version
'(Org .
"8.0")
3240 (defcustom org-read-date-prefer-future t
3241 "Non-nil means assume future for incomplete date input from user.
3242 This affects the following situations:
3243 1. The user gives a month but not a year.
3244 For example, if it is April and you enter \"feb 2\", this will be read
3245 as Feb 2, *next* year. \"May 5\", however, will be this year.
3246 2. The user gives a day, but no month.
3247 For example, if today is the 15th, and you enter \"3\", Org-mode will
3248 read this as the third of *next* month. However, if you enter \"17\",
3249 it will be considered as *this* month.
3251 If you set this variable to the symbol `time', then also the following
3254 3. If the user gives a time.
3255 If the time is before now, it will be interpreted as tomorrow.
3257 Currently none of this works for ISO week specifications.
3259 When this option is nil, the current day, month and year will always be
3262 See also `org-agenda-jump-prefer-future'."
3265 (const :tag
"Never" nil
)
3266 (const :tag
"Check month and day" t
)
3267 (const :tag
"Check month, day, and time" time
)))
3269 (defcustom org-agenda-jump-prefer-future
'org-read-date-prefer-future
3270 "Should the agenda jump command prefer the future for incomplete dates?
3271 The default is to do the same as configured in `org-read-date-prefer-future'.
3272 But you can also set a deviating value here.
3273 This may t or nil, or the symbol `org-read-date-prefer-future'."
3278 (const :tag
"Use org-read-date-prefer-future"
3279 org-read-date-prefer-future
)
3280 (const :tag
"Never" nil
)
3281 (const :tag
"Always" t
)))
3283 (defcustom org-read-date-force-compatible-dates t
3284 "Should date/time prompt force dates that are guaranteed to work in Emacs?
3286 Depending on the system Emacs is running on, certain dates cannot
3287 be represented with the type used internally to represent time.
3288 Dates between 1970-1-1 and 2038-1-1 can always be represented
3289 correctly. Some systems allow for earlier dates, some for later,
3290 some for both. One way to find out it to insert any date into an
3291 Org buffer, putting the cursor on the year and hitting S-up and
3292 S-down to test the range.
3294 When this variable is set to t, the date/time prompt will not let
3295 you specify dates outside the 1970-2037 range, so it is certain that
3296 these dates will work in whatever version of Emacs you are
3297 running, and also that you can move a file from one Emacs implementation
3298 to another. WHenever Org is forcing the year for you, it will display
3301 When this variable is nil, Org will check if the date is
3302 representable in the specific Emacs implementation you are using.
3303 If not, it will force a year, usually the current year, and beep
3304 to remind you. Currently this setting is not recommended because
3305 the likelihood that you will open your Org files in an Emacs that
3306 has limited date range is not negligible.
3308 A workaround for this problem is to use diary sexp dates for time
3309 stamps outside of this range."
3314 (defcustom org-read-date-display-live t
3315 "Non-nil means display current interpretation of date prompt live.
3316 This display will be in an overlay, in the minibuffer."
3320 (defcustom org-read-date-popup-calendar t
3321 "Non-nil means pop up a calendar when prompting for a date.
3322 In the calendar, the date can be selected with mouse-1. However, the
3323 minibuffer will also be active, and you can simply enter the date as well.
3324 When nil, only the minibuffer will be available."
3327 (org-defvaralias 'org-popup-calendar-for-date-prompt
3328 'org-read-date-popup-calendar
)
3330 (make-obsolete-variable
3331 'org-read-date-minibuffer-setup-hook
3332 "Set `org-read-date-minibuffer-local-map' instead." "24.4")
3333 (defcustom org-read-date-minibuffer-setup-hook nil
3334 "Hook to be used to set up keys for the date/time interface.
3335 Add key definitions to `minibuffer-local-map', which will be a
3338 WARNING: This option is obsolete, you should use
3339 `org-read-date-minibuffer-local-map' to set up keys."
3343 (defcustom org-extend-today-until
0
3344 "The hour when your day really ends. Must be an integer.
3345 This has influence for the following applications:
3346 - When switching the agenda to \"today\". It it is still earlier than
3347 the time given here, the day recognized as TODAY is actually yesterday.
3348 - When a date is read from the user and it is still before the time given
3349 here, the current date and time will be assumed to be yesterday, 23:59.
3350 Also, timestamps inserted in capture templates follow this rule.
3352 IMPORTANT: This is a feature whose implementation is and likely will
3353 remain incomplete. Really, it is only here because past midnight seems to
3354 be the favorite working time of John Wiegley :-)"
3358 (defcustom org-use-effective-time nil
3359 "If non-nil, consider `org-extend-today-until' when creating timestamps.
3360 For example, if `org-extend-today-until' is 8, and it's 4am, then the
3361 \"effective time\" of any timestamps between midnight and 8am will be
3362 23:59 of the previous day."
3367 (defcustom org-use-last-clock-out-time-as-effective-time nil
3368 "When non-nil, use the last clock out time for `org-todo'.
3369 Note that this option has precedence over the combined use of
3370 `org-use-effective-time' and `org-extend-today-until'."
3373 :package-version
'(Org .
"8.0")
3376 (defcustom org-edit-timestamp-down-means-later nil
3377 "Non-nil means S-down will increase the time in a time stamp.
3378 When nil, S-up will increase."
3382 (defcustom org-calendar-follow-timestamp-change t
3383 "Non-nil means make the calendar window follow timestamp changes.
3384 When a timestamp is modified and the calendar window is visible, it will be
3385 moved to the new date."
3389 (defgroup org-tags nil
3390 "Options concerning tags in Org-mode."
3394 (defcustom org-tag-alist nil
3395 "List of tags allowed in Org-mode files.
3396 When this list is nil, Org-mode will base TAG input on what is already in the
3398 The value of this variable is an alist, the car of each entry must be a
3399 keyword as a string, the cdr may be a character that is used to select
3400 that tag through the fast-tag-selection interface.
3401 See the manual for details."
3405 (cons (string :tag
"Tag name")
3406 (character :tag
"Access char"))
3407 (list :tag
"Start radio group"
3409 (option (string :tag
"Group description")))
3410 (list :tag
"Group tags delimiter"
3412 (list :tag
"End radio group"
3414 (option (string :tag
"Group description")))
3415 (const :tag
"New line" (:newline
)))))
3417 (defcustom org-tag-persistent-alist nil
3418 "List of tags that will always appear in all Org-mode files.
3419 This is in addition to any in buffer settings or customizations
3421 When this list is nil, Org-mode will base TAG input on `org-tag-alist'.
3422 The value of this variable is an alist, the car of each entry must be a
3423 keyword as a string, the cdr may be a character that is used to select
3424 that tag through the fast-tag-selection interface.
3425 See the manual for details.
3426 To disable these tags on a per-file basis, insert anywhere in the file:
3431 (cons (string :tag
"Tag name")
3432 (character :tag
"Access char"))
3433 (const :tag
"Start radio group" (:startgroup
))
3434 (const :tag
"Group tags delimiter" (:grouptags
))
3435 (const :tag
"End radio group" (:endgroup
))
3436 (const :tag
"New line" (:newline
)))))
3438 (defcustom org-complete-tags-always-offer-all-agenda-tags nil
3439 "If non-nil, always offer completion for all tags of all agenda files.
3440 Instead of customizing this variable directly, you might want to
3441 set it locally for capture buffers, because there no list of
3442 tags in that file can be created dynamically (there are none).
3444 (add-hook 'org-capture-mode-hook
3446 (set (make-local-variable
3447 'org-complete-tags-always-offer-all-agenda-tags)
3453 (defvar org-file-tags nil
3454 "List of tags that can be inherited by all entries in the file.
3455 The tags will be inherited if the variable `org-use-tag-inheritance'
3456 says they should be.
3457 This variable is populated from #+FILETAGS lines.")
3459 (defcustom org-use-fast-tag-selection
'auto
3460 "Non-nil means use fast tag selection scheme.
3461 This is a special interface to select and deselect tags with single keys.
3462 When nil, fast selection is never used.
3463 When the symbol `auto', fast selection is used if and only if selection
3464 characters for tags have been configured, either through the variable
3465 `org-tag-alist' or through a #+TAGS line in the buffer.
3466 When t, fast selection is always used and selection keys are assigned
3467 automatically if necessary."
3470 (const :tag
"Always" t
)
3471 (const :tag
"Never" nil
)
3472 (const :tag
"When selection characters are configured" auto
)))
3474 (defcustom org-fast-tag-selection-single-key nil
3475 "Non-nil means fast tag selection exits after first change.
3476 When nil, you have to press RET to exit it.
3477 During fast tag selection, you can toggle this flag with `C-c'.
3478 This variable can also have the value `expert'. In this case, the window
3479 displaying the tags menu is not even shown, until you press C-c again."
3482 (const :tag
"No" nil
)
3483 (const :tag
"Yes" t
)
3484 (const :tag
"Expert" expert
)))
3486 (defvar org-fast-tag-selection-include-todo nil
3487 "Non-nil means fast tags selection interface will also offer TODO states.
3488 This is an undocumented feature, you should not rely on it.")
3490 (defcustom org-tags-column
(if (featurep 'xemacs
) -
76 -
77)
3491 "The column to which tags should be indented in a headline.
3492 If this number is positive, it specifies the column. If it is negative,
3493 it means that the tags should be flushright to that column. For example,
3494 -80 works well for a normal 80 character screen.
3495 When 0, place tags directly after headline text, with only one space in
3500 (defcustom org-auto-align-tags t
3501 "Non-nil keeps tags aligned when modifying headlines.
3502 Some operations (i.e. demoting) change the length of a headline and
3503 therefore shift the tags around. With this option turned on, after
3504 each such operation the tags are again aligned to `org-tags-column'."
3508 (defcustom org-use-tag-inheritance t
3509 "Non-nil means tags in levels apply also for sublevels.
3510 When nil, only the tags directly given in a specific line apply there.
3511 This may also be a list of tags that should be inherited, or a regexp that
3512 matches tags that should be inherited. Additional control is possible
3513 with the variable `org-tags-exclude-from-inheritance' which gives an
3514 explicit list of tags to be excluded from inheritance, even if the value of
3515 `org-use-tag-inheritance' would select it for inheritance.
3517 If this option is t, a match early-on in a tree can lead to a large
3518 number of matches in the subtree when constructing the agenda or creating
3519 a sparse tree. If you only want to see the first match in a tree during
3520 a search, check out the variable `org-tags-match-list-sublevels'."
3523 (const :tag
"Not" nil
)
3524 (const :tag
"Always" t
)
3525 (repeat :tag
"Specific tags" (string :tag
"Tag"))
3526 (regexp :tag
"Tags matched by regexp")))
3528 (defcustom org-tags-exclude-from-inheritance nil
3529 "List of tags that should never be inherited.
3530 This is a way to exclude a few tags from inheritance. For way to do
3531 the opposite, to actively allow inheritance for selected tags,
3532 see the variable `org-use-tag-inheritance'."
3534 :type
'(repeat (string :tag
"Tag")))
3536 (defun org-tag-inherit-p (tag)
3537 "Check if TAG is one that should be inherited."
3539 ((member tag org-tags-exclude-from-inheritance
) nil
)
3540 ((eq org-use-tag-inheritance t
) t
)
3541 ((not org-use-tag-inheritance
) nil
)
3542 ((stringp org-use-tag-inheritance
)
3543 (string-match org-use-tag-inheritance tag
))
3544 ((listp org-use-tag-inheritance
)
3545 (member tag org-use-tag-inheritance
))
3546 (t (error "Invalid setting of `org-use-tag-inheritance'"))))
3548 (defcustom org-tags-match-list-sublevels t
3549 "Non-nil means list also sublevels of headlines matching a search.
3550 This variable applies to tags/property searches, and also to stuck
3551 projects because this search is based on a tags match as well.
3553 When set to the symbol `indented', sublevels are indented with
3556 Because of tag inheritance (see variable `org-use-tag-inheritance'),
3557 the sublevels of a headline matching a tag search often also match
3558 the same search. Listing all of them can create very long lists.
3559 Setting this variable to nil causes subtrees of a match to be skipped.
3561 This variable is semi-obsolete and probably should always be true. It
3562 is better to limit inheritance to certain tags using the variables
3563 `org-use-tag-inheritance' and `org-tags-exclude-from-inheritance'."
3566 (const :tag
"No, don't list them" nil
)
3567 (const :tag
"Yes, do list them" t
)
3568 (const :tag
"List them, indented with leading dots" indented
)))
3570 (defcustom org-tags-sort-function nil
3571 "When set, tags are sorted using this function as a comparator."
3574 (const :tag
"No sorting" nil
)
3575 (const :tag
"Alphabetical" string
<)
3576 (const :tag
"Reverse alphabetical" string
>)
3577 (function :tag
"Custom function" nil
)))
3579 (defvar org-tags-history nil
3580 "History of minibuffer reads for tags.")
3581 (defvar org-last-tags-completion-table nil
3582 "The last used completion table for tags.")
3583 (defvar org-after-tags-change-hook nil
3584 "Hook that is run after the tags in a line have changed.")
3586 (defgroup org-properties nil
3587 "Options concerning properties in Org-mode."
3588 :tag
"Org Properties"
3591 (defcustom org-property-format
"%-10s %s"
3592 "How property key/value pairs should be formatted by `indent-line'.
3593 When `indent-line' hits a property definition, it will format the line
3594 according to this format, mainly to make sure that the values are
3595 lined-up with respect to each other."
3596 :group
'org-properties
3599 (defcustom org-properties-postprocess-alist nil
3600 "Alist of properties and functions to adjust inserted values.
3601 Elements of this alist must be of the form
3603 ([string] [function])
3605 where [string] must be a property name and [function] must be a
3606 lambda expression: this lambda expression must take one argument,
3607 the value to adjust, and return the new value as a string.
3609 For example, this element will allow the property \"Remaining\"
3610 to be updated wrt the relation between the \"Effort\" property
3611 and the clock summary:
3613 ((\"Remaining\" (lambda(value)
3614 (let ((clocksum (org-clock-sum-current-item))
3615 (effort (org-duration-string-to-minutes
3616 (org-entry-get (point) \"Effort\"))))
3617 (org-minutes-to-clocksum-string (- effort clocksum))))))"
3618 :group
'org-properties
3620 :type
'(alist :key-type
(string :tag
"Property")
3621 :value-type
(function :tag
"Function")))
3623 (defcustom org-use-property-inheritance nil
3624 "Non-nil means properties apply also for sublevels.
3626 This setting is chiefly used during property searches. Turning it on can
3627 cause significant overhead when doing a search, which is why it is not
3630 When nil, only the properties directly given in the current entry count.
3631 When t, every property is inherited. The value may also be a list of
3632 properties that should have inheritance, or a regular expression matching
3633 properties that should be inherited.
3635 However, note that some special properties use inheritance under special
3636 circumstances (not in searches). Examples are CATEGORY, ARCHIVE, COLUMNS,
3637 and the properties ending in \"_ALL\" when they are used as descriptor
3638 for valid values of a property.
3640 Note for programmers:
3641 When querying an entry with `org-entry-get', you can control if inheritance
3642 should be used. By default, `org-entry-get' looks only at the local
3643 properties. You can request inheritance by setting the inherit argument
3644 to t (to force inheritance) or to `selective' (to respect the setting
3646 :group
'org-properties
3648 (const :tag
"Not" nil
)
3649 (const :tag
"Always" t
)
3650 (repeat :tag
"Specific properties" (string :tag
"Property"))
3651 (regexp :tag
"Properties matched by regexp")))
3653 (defun org-property-inherit-p (property)
3654 "Check if PROPERTY is one that should be inherited."
3656 ((eq org-use-property-inheritance t
) t
)
3657 ((not org-use-property-inheritance
) nil
)
3658 ((stringp org-use-property-inheritance
)
3659 (string-match org-use-property-inheritance property
))
3660 ((listp org-use-property-inheritance
)
3661 (member property org-use-property-inheritance
))
3662 (t (error "Invalid setting of `org-use-property-inheritance'"))))
3664 (defcustom org-columns-default-format
"%25ITEM %TODO %3PRIORITY %TAGS"
3665 "The default column format, if no other format has been defined.
3666 This variable can be set on the per-file basis by inserting a line
3668 #+COLUMNS: %25ITEM ....."
3669 :group
'org-properties
3672 (defcustom org-columns-ellipses
".."
3673 "The ellipses to be used when a field in column view is truncated.
3674 When this is the empty string, as many characters as possible are shown,
3675 but then there will be no visual indication that the field has been truncated.
3676 When this is a string of length N, the last N characters of a truncated
3677 field are replaced by this string. If the column is narrower than the
3678 ellipses string, only part of the ellipses string will be shown."
3679 :group
'org-properties
3682 (defcustom org-columns-modify-value-for-display-function nil
3683 "Function that modifies values for display in column view.
3684 For example, it can be used to cut out a certain part from a time stamp.
3685 The function must take 2 arguments:
3687 column-title The title of the column (*not* the property name)
3688 value The value that should be modified.
3690 The function should return the value that should be displayed,
3691 or nil if the normal value should be used."
3692 :group
'org-properties
3693 :type
'(choice (const nil
) (function)))
3695 (defconst org-global-properties-fixed
3696 '(("VISIBILITY_ALL" .
"folded children content all")
3697 ("CLOCK_MODELINE_TOTAL_ALL" .
"current today repeat all auto"))
3698 "List of property/value pairs that can be inherited by any entry.
3700 These are fixed values, for the preset properties. The user variable
3701 that can be used to add to this list is `org-global-properties'.
3703 The entries in this list are cons cells where the car is a property
3704 name and cdr is a string with the value. If the value represents
3705 multiple items like an \"_ALL\" property, separate the items by
3708 (defcustom org-global-properties nil
3709 "List of property/value pairs that can be inherited by any entry.
3711 This list will be combined with the constant `org-global-properties-fixed'.
3713 The entries in this list are cons cells where the car is a property
3714 name and cdr is a string with the value.
3716 You can set buffer-local values for the same purpose in the variable
3717 `org-file-properties' this by adding lines like
3719 #+PROPERTY: NAME VALUE"
3720 :group
'org-properties
3722 (cons (string :tag
"Property")
3723 (string :tag
"Value"))))
3725 (defvar org-file-properties nil
3726 "List of property/value pairs that can be inherited by any entry.
3727 Valid for the current buffer.
3728 This variable is populated from #+PROPERTY lines.")
3729 (make-variable-buffer-local 'org-file-properties
)
3731 (defgroup org-agenda nil
3732 "Options concerning agenda views in Org-mode."
3736 (defvar org-category nil
3737 "Variable used by org files to set a category for agenda display.
3738 Such files should use a file variable to set it, for example
3740 # -*- mode: org; org-category: \"ELisp\"
3742 or contain a special line
3746 If the file does not specify a category, then file's base name
3748 (make-variable-buffer-local 'org-category
)
3749 (put 'org-category
'safe-local-variable
(lambda (x) (or (symbolp x
) (stringp x
))))
3751 (defcustom org-agenda-files nil
3752 "The files to be used for agenda display.
3753 Entries may be added to this list with \\[org-agenda-file-to-front] and removed with
3754 \\[org-remove-file]. You can also use customize to edit the list.
3756 If an entry is a directory, all files in that directory that are matched by
3757 `org-agenda-file-regexp' will be part of the file list.
3759 If the value of the variable is not a list but a single file name, then
3760 the list of agenda files is actually stored and maintained in that file, one
3761 agenda file per line. In this file paths can be given relative to
3762 `org-directory'. Tilde expansion and environment variable substitution
3766 (repeat :tag
"List of files and directories" file
)
3767 (file :tag
"Store list in a file\n" :value
"~/.agenda_files")))
3769 (defcustom org-agenda-file-regexp
"\\`[^.].*\\.org\\'"
3770 "Regular expression to match files for `org-agenda-files'.
3771 If any element in the list in that variable contains a directory instead
3772 of a normal file, all files in that directory that are matched by this
3773 regular expression will be included."
3777 (defcustom org-agenda-text-search-extra-files nil
3778 "List of extra files to be searched by text search commands.
3779 These files will be searched in addition to the agenda files by the
3780 commands `org-search-view' (`C-c a s') and `org-occur-in-agenda-files'.
3781 Note that these files will only be searched for text search commands,
3782 not for the other agenda views like todo lists, tag searches or the weekly
3783 agenda. This variable is intended to list notes and possibly archive files
3784 that should also be searched by these two commands.
3785 In fact, if the first element in the list is the symbol `agenda-archives',
3786 then all archive files of all agenda files will be added to the search
3789 :type
'(set :greedy t
3790 (const :tag
"Agenda Archives" agenda-archives
)
3791 (repeat :inline t
(file))))
3793 (org-defvaralias 'org-agenda-multi-occur-extra-files
3794 'org-agenda-text-search-extra-files
)
3796 (defcustom org-agenda-skip-unavailable-files nil
3797 "Non-nil means to just skip non-reachable files in `org-agenda-files'.
3798 A nil value means to remove them, after a query, from the list."
3802 (defcustom org-calendar-to-agenda-key
[?c
]
3803 "The key to be installed in `calendar-mode-map' for switching to the agenda.
3804 The command `org-calendar-goto-agenda' will be bound to this key. The
3805 default is the character `c' because then `c' can be used to switch back and
3806 forth between agenda and calendar."
3810 (defcustom org-calendar-insert-diary-entry-key
[?i
]
3811 "The key to be installed in `calendar-mode-map' for adding diary entries.
3812 This option is irrelevant until `org-agenda-diary-file' has been configured
3813 to point to an Org-mode file. When that is the case, the command
3814 `org-agenda-diary-entry' will be bound to the key given here, by default
3815 `i'. In the calendar, `i' normally adds entries to `diary-file'. So
3816 if you want to continue doing this, you need to change this to a different
3821 (defcustom org-agenda-diary-file
'diary-file
3822 "File to which to add new entries with the `i' key in agenda and calendar.
3823 When this is the symbol `diary-file', the functionality in the Emacs
3824 calendar will be used to add entries to the `diary-file'. But when this
3825 points to a file, `org-agenda-diary-entry' will be used instead."
3828 (const :tag
"The standard Emacs diary file" diary-file
)
3829 (file :tag
"Special Org file diary entries")))
3831 (eval-after-load "calendar"
3833 (org-defkey calendar-mode-map org-calendar-to-agenda-key
3834 'org-calendar-goto-agenda
)
3835 (add-hook 'calendar-mode-hook
3837 (unless (eq org-agenda-diary-file
'diary-file
)
3838 (define-key calendar-mode-map
3839 org-calendar-insert-diary-entry-key
3840 'org-agenda-diary-entry
))))))
3842 (defgroup org-latex nil
3843 "Options for embedding LaTeX code into Org-mode."
3847 (defcustom org-format-latex-options
3848 '(:foreground default
:background default
:scale
1.0
3849 :html-foreground
"Black" :html-background
"Transparent"
3850 :html-scale
1.0 :matchers
("begin" "$1" "$" "$$" "\\(" "\\["))
3851 "Options for creating images from LaTeX fragments.
3852 This is a property list with the following properties:
3853 :foreground the foreground color for images embedded in Emacs, e.g. \"Black\".
3854 `default' means use the foreground of the default face.
3855 `auto' means use the foreground from the text face.
3856 :background the background color, or \"Transparent\".
3857 `default' means use the background of the default face.
3858 `auto' means use the background from the text face.
3859 :scale a scaling factor for the size of the images, to get more pixels
3860 :html-foreground, :html-background, :html-scale
3861 the same numbers for HTML export.
3862 :matchers a list indicating which matchers should be used to
3863 find LaTeX fragments. Valid members of this list are:
3864 \"begin\" find environments
3865 \"$1\" find single characters surrounded by $.$
3866 \"$\" find math expressions surrounded by $...$
3867 \"$$\" find math expressions surrounded by $$....$$
3868 \"\\(\" find math expressions surrounded by \\(...\\)
3869 \"\\=\\[\" find math expressions surrounded by \\=\\[...\\]"
3873 (defcustom org-format-latex-signal-error t
3874 "Non-nil means signal an error when image creation of LaTeX snippets fails.
3875 When nil, just push out a message."
3880 (defcustom org-latex-to-mathml-jar-file nil
3881 "Value of\"%j\" in `org-latex-to-mathml-convert-command'.
3882 Use this to specify additional executable file say a jar file.
3884 When using MathToWeb as the converter, specify the full-path to
3885 your mathtoweb.jar file."
3889 (const :tag
"None" nil
)
3890 (file :tag
"JAR file" :must-match t
)))
3892 (defcustom org-latex-to-mathml-convert-command nil
3893 "Command to convert LaTeX fragments to MathML.
3894 Replace format-specifiers in the command as noted below and use
3895 `shell-command' to convert LaTeX to MathML.
3896 %j: Executable file in fully expanded form as specified by
3897 `org-latex-to-mathml-jar-file'.
3898 %I: Input LaTeX file in fully expanded form
3899 %o: Output MathML file
3900 This command is used by `org-create-math-formula'.
3902 When using MathToWeb as the converter, set this to
3903 \"java -jar %j -unicode -force -df %o %I\"."
3907 (const :tag
"None" nil
)
3908 (string :tag
"\nShell command")))
3910 (defcustom org-latex-create-formula-image-program
'dvipng
3911 "Program to convert LaTeX fragments with.
3913 dvipng Process the LaTeX fragments to dvi file, then convert
3914 dvi files to png files using dvipng.
3915 This will also include processing of non-math environments.
3916 imagemagick Convert the LaTeX fragments to pdf files and use imagemagick
3917 to convert pdf files to png files"
3921 (const :tag
"dvipng" dvipng
)
3922 (const :tag
"imagemagick" imagemagick
)))
3924 (defcustom org-latex-preview-ltxpng-directory
"ltxpng/"
3925 "Path to store latex preview images.
3926 A relative path here creates many directories relative to the
3927 processed org files paths. An absolute path puts all preview
3928 images at the same place."
3933 (defun org-format-latex-mathml-available-p ()
3934 "Return t if `org-latex-to-mathml-convert-command' is usable."
3936 (when (and (boundp 'org-latex-to-mathml-convert-command
)
3937 org-latex-to-mathml-convert-command
)
3938 (let ((executable (car (split-string
3939 org-latex-to-mathml-convert-command
))))
3940 (when (executable-find executable
)
3942 "%j" org-latex-to-mathml-convert-command
)
3943 (file-readable-p org-latex-to-mathml-jar-file
)
3946 (defcustom org-format-latex-header
"\\documentclass{article}
3947 \\usepackage[usenames]{color}
3950 \\pagestyle{empty} % do not remove
3951 % The settings below are copied from fullpage.sty
3952 \\setlength{\\textwidth}{\\paperwidth}
3953 \\addtolength{\\textwidth}{-3cm}
3954 \\setlength{\\oddsidemargin}{1.5cm}
3955 \\addtolength{\\oddsidemargin}{-2.54cm}
3956 \\setlength{\\evensidemargin}{\\oddsidemargin}
3957 \\setlength{\\textheight}{\\paperheight}
3958 \\addtolength{\\textheight}{-\\headheight}
3959 \\addtolength{\\textheight}{-\\headsep}
3960 \\addtolength{\\textheight}{-\\footskip}
3961 \\addtolength{\\textheight}{-3cm}
3962 \\setlength{\\topmargin}{1.5cm}
3963 \\addtolength{\\topmargin}{-2.54cm}"
3964 "The document header used for processing LaTeX fragments.
3965 It is imperative that this header make sure that no page number
3966 appears on the page. The package defined in the variables
3967 `org-latex-default-packages-alist' and `org-latex-packages-alist'
3968 will either replace the placeholder \"[PACKAGES]\" in this
3969 header, or they will be appended."
3973 (defun org-set-packages-alist (var val
)
3974 "Set the packages alist and make sure it has 3 elements per entry."
3975 (set var
(mapcar (lambda (x)
3976 (if (and (consp x
) (= (length x
) 2))
3977 (list (car x
) (nth 1 x
) t
)
3981 (defun org-get-packages-alist (var)
3982 "Get the packages alist and make sure it has 3 elements per entry."
3984 (if (and (consp x
) (= (length x
) 2))
3985 (list (car x
) (nth 1 x
) t
)
3987 (default-value var
)))
3989 (defcustom org-latex-default-packages-alist
3990 '(("AUTO" "inputenc" t
)
3994 ("" "longtable" nil
)
3998 ("normalem" "ulem" t
)
4006 "Alist of default packages to be inserted in the header.
4008 Change this only if one of the packages here causes an
4009 incompatibility with another package you are using.
4011 The packages in this list are needed by one part or another of
4012 Org mode to function properly:
4014 - inputenc, fontenc: for basic font and character selection
4015 - fixltx2e: Important patches of LaTeX itself
4016 - graphicx: for including images
4017 - longtable: For multipage tables
4018 - float, wrapfig: for figure placement
4019 - rotating: for sideways figures and tables
4020 - ulem: for underline and strike-through
4021 - amsmath: for subscript and superscript and math environments
4022 - textcomp, marvosymb, wasysym, amssymb: for various symbols used
4023 for interpreting the entities in `org-entities'. You can skip
4024 some of these packages if you don't use any of their symbols.
4025 - hyperref: for cross references
4027 Therefore you should not modify this variable unless you know
4028 what you are doing. The one reason to change it anyway is that
4029 you might be loading some other package that conflicts with one
4030 of the default packages. Each element is either a cell or
4033 A cell is of the format:
4035 \( \"options\" \"package\" SNIPPET-FLAG).
4037 If SNIPPET-FLAG is non-nil, the package also needs to be included
4038 when compiling LaTeX snippets into images for inclusion into
4041 A string will be inserted as-is in the header of the document."
4043 :group
'org-export-latex
4044 :set
'org-set-packages-alist
4045 :get
'org-get-packages-alist
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 (defcustom org-latex-packages-alist nil
4056 "Alist of packages to be inserted in every LaTeX header.
4058 These will be inserted after `org-latex-default-packages-alist'.
4059 Each element is either a cell or a string.
4061 A cell is of the format:
4063 \(\"options\" \"package\" SNIPPET-FLAG)
4065 SNIPPET-FLAG, when non-nil, indicates that this package is also
4066 needed when turning LaTeX snippets into images for inclusion into
4069 A string will be inserted as-is in the header of the document.
4071 Make sure that you only list packages here which:
4073 - you want in every file;
4074 - do not conflict with the setup in `org-format-latex-header';
4075 - do not conflict with the default packages in
4076 `org-latex-default-packages-alist'."
4078 :group
'org-export-latex
4079 :set
'org-set-packages-alist
4080 :get
'org-get-packages-alist
4083 (list :tag
"options/package pair"
4084 (string :tag
"options")
4085 (string :tag
"package")
4086 (boolean :tag
"Snippet"))
4087 (string :tag
"A line of LaTeX"))))
4089 (defgroup org-appearance nil
4090 "Settings for Org-mode appearance."
4091 :tag
"Org Appearance"
4094 (defcustom org-level-color-stars-only nil
4095 "Non-nil means fontify only the stars in each headline.
4096 When nil, the entire headline is fontified.
4097 Changing it requires restart of `font-lock-mode' to become effective
4098 also in regions already fontified."
4099 :group
'org-appearance
4102 (defcustom org-hide-leading-stars nil
4103 "Non-nil means hide the first N-1 stars in a headline.
4104 This works by using the face `org-hide' for these stars. This
4105 face is white for a light background, and black for a dark
4106 background. You may have to customize the face `org-hide' to
4108 Changing it requires restart of `font-lock-mode' to become effective
4109 also in regions already fontified.
4110 You may also set this on a per-file basis by adding one of the following
4111 lines to the buffer:
4113 #+STARTUP: hidestars
4114 #+STARTUP: showstars"
4115 :group
'org-appearance
4118 (defcustom org-hidden-keywords nil
4119 "List of symbols corresponding to keywords to be hidden the org buffer.
4120 For example, a value '(title) for this list will make the document's title
4121 appear in the buffer without the initial #+TITLE: keyword."
4122 :group
'org-appearance
4124 :type
'(set (const :tag
"#+AUTHOR" author
)
4125 (const :tag
"#+DATE" date
)
4126 (const :tag
"#+EMAIL" email
)
4127 (const :tag
"#+TITLE" title
)))
4129 (defcustom org-custom-properties nil
4130 "List of properties (as strings) with a special meaning.
4131 The default use of these custom properties is to let the user
4132 hide them with `org-toggle-custom-properties-visibility'."
4133 :group
'org-properties
4134 :group
'org-appearance
4136 :type
'(repeat (string :tag
"Property Name")))
4138 (defcustom org-fontify-done-headline nil
4139 "Non-nil means change the face of a headline if it is marked DONE.
4140 Normally, only the TODO/DONE keyword indicates the state of a headline.
4141 When this is non-nil, the headline after the keyword is set to the
4142 `org-headline-done' as an additional indication."
4143 :group
'org-appearance
4146 (defcustom org-fontify-emphasized-text t
4147 "Non-nil means fontify *bold*, /italic/ and _underlined_ text.
4148 Changing this variable requires a restart of Emacs to take effect."
4149 :group
'org-appearance
4152 (defcustom org-fontify-whole-heading-line nil
4153 "Non-nil means fontify the whole line for headings.
4154 This is useful when setting a background color for the
4156 :group
'org-appearance
4159 (defcustom org-highlight-latex-and-related nil
4160 "Non-nil means highlight LaTeX related syntax in the buffer.
4161 When non nil, the value should be a list containing any of the
4163 `latex' Highlight LaTeX snippets and environments.
4164 `script' Highlight subscript and superscript.
4165 `entities' Highlight entities."
4166 :group
'org-appearance
4168 :package-version
'(Org .
"8.0")
4170 (const :tag
"No highlighting" nil
)
4171 (set :greedy t
:tag
"Highlight"
4172 (const :tag
"LaTeX snippets and environments" latex
)
4173 (const :tag
"Subscript and superscript" script
)
4174 (const :tag
"Entities" entities
))))
4176 (defcustom org-hide-emphasis-markers nil
4177 "Non-nil mean font-lock should hide the emphasis marker characters."
4178 :group
'org-appearance
4181 (defcustom org-hide-macro-markers nil
4182 "Non-nil mean font-lock should hide the brackets marking macro calls."
4183 :group
'org-appearance
4186 (defcustom org-pretty-entities nil
4187 "Non-nil means show entities as UTF8 characters.
4188 When nil, the \\name form remains in the buffer."
4189 :group
'org-appearance
4193 (defcustom org-pretty-entities-include-sub-superscripts t
4194 "Non-nil means, pretty entity display includes formatting sub/superscripts."
4195 :group
'org-appearance
4199 (defvar org-emph-re nil
4200 "Regular expression for matching emphasis.
4201 After a match, the match groups contain these elements:
4202 0 The match of the full regular expression, including the characters
4203 before and after the proper match
4204 1 The character before the proper match, or empty at beginning of line
4205 2 The proper match, including the leading and trailing markers
4206 3 The leading marker like * or /, indicating the type of highlighting
4207 4 The text between the emphasis markers, not including the markers
4208 5 The character after the match, empty at the end of a line")
4209 (defvar org-verbatim-re nil
4210 "Regular expression for matching verbatim text.")
4211 (defvar org-emphasis-regexp-components
) ; defined just below
4212 (defvar org-emphasis-alist
) ; defined just below
4213 (defun org-set-emph-re (var val
)
4214 "Set variable and compute the emphasis regular expression."
4216 (when (and (boundp 'org-emphasis-alist
)
4217 (boundp 'org-emphasis-regexp-components
)
4218 org-emphasis-alist org-emphasis-regexp-components
)
4219 (let* ((e org-emphasis-regexp-components
)
4225 (body1 (concat body
"*?"))
4226 (markers (mapconcat 'car org-emphasis-alist
""))
4227 (vmarkers (mapconcat
4228 (lambda (x) (if (eq (nth 2 x
) 'verbatim
) (car x
) ""))
4229 org-emphasis-alist
"")))
4230 ;; make sure special characters appear at the right position in the class
4231 (if (string-match "\\^" markers
)
4232 (setq markers
(concat (replace-match "" t t markers
) "^")))
4233 (if (string-match "-" markers
)
4234 (setq markers
(concat (replace-match "" t t markers
) "-")))
4235 (if (string-match "\\^" vmarkers
)
4236 (setq vmarkers
(concat (replace-match "" t t vmarkers
) "^")))
4237 (if (string-match "-" vmarkers
)
4238 (setq vmarkers
(concat (replace-match "" t t vmarkers
) "-")))
4240 (setq body1
(concat body1
"\\(?:\n" body
"*?\\)\\{0,"
4241 (int-to-string nl
) "\\}")))
4244 (concat "\\([" pre
"]\\|^\\)"
4246 "\\([" markers
"]\\)"
4254 "\\([" post
"]\\|$\\)"))
4255 (setq org-verbatim-re
4256 (concat "\\([" pre
"]\\|^\\)"
4258 "\\([" vmarkers
"]\\)"
4266 "\\([" post
"]\\|$\\)")))))
4268 ;; This used to be a defcustom (Org <8.0) but allowing the users to
4269 ;; set this option proved cumbersome. See this message/thread:
4270 ;; http://article.gmane.org/gmane.emacs.orgmode/68681
4271 (defvar org-emphasis-regexp-components
4272 '(" \t('\"{" "- \t.,:!?;'\")}\\" " \t\r\n,\"'" "." 1)
4273 "Components used to build the regular expression for emphasis.
4274 This is a list with five entries. Terminology: In an emphasis string
4275 like \" *strong word* \", we call the initial space PREMATCH, the final
4276 space POSTMATCH, the stars MARKERS, \"s\" and \"d\" are BORDER characters
4277 and \"trong wor\" is the body. The different components in this variable
4278 specify what is allowed/forbidden in each part:
4280 pre Chars allowed as prematch. Beginning of line will be allowed too.
4281 post Chars allowed as postmatch. End of line will be allowed too.
4282 border The chars *forbidden* as border characters.
4283 body-regexp A regexp like \".\" to match a body character. Don't use
4284 non-shy groups here, and don't allow newline here.
4285 newline The maximum number of newlines allowed in an emphasis exp.
4287 You need to reload Org or to restart Emacs after customizing this.")
4289 (defcustom org-emphasis-alist
4293 ("=" org-verbatim verbatim
)
4294 ("~" org-code verbatim
)
4295 ("+" ,(if (featurep 'xemacs
) 'org-table
'(:strike-through t
))))
4296 "Alist of characters and faces to emphasize text.
4297 Text starting and ending with a special character will be emphasized,
4298 for example *bold*, _underlined_ and /italic/. This variable sets the
4299 marker characters and the face to be used by font-lock for highlighting
4300 in Org-mode Emacs buffers.
4302 You need to reload Org or to restart Emacs after customizing this."
4303 :group
'org-appearance
4304 :set
'org-set-emph-re
4306 :package-version
'(Org .
"8.0")
4309 (string :tag
"Marker character")
4311 (face :tag
"Font-lock-face")
4312 (plist :tag
"Face property list"))
4313 (option (const verbatim
)))))
4315 (defvar org-protecting-blocks
4316 '("src" "example" "latex" "ascii" "html" "ditaa" "dot" "r" "R")
4317 "Blocks that contain text that is quoted, i.e. not processed as Org syntax.
4318 This is needed for font-lock setup.")
4320 ;;; Miscellaneous options
4322 (defgroup org-completion nil
4323 "Completion in Org-mode."
4324 :tag
"Org Completion"
4327 (defcustom org-completion-use-ido nil
4328 "Non-nil means use ido completion wherever possible.
4329 Note that `ido-mode' must be active for this variable to be relevant.
4330 If you decide to turn this variable on, you might well want to turn off
4331 `org-outline-path-complete-in-steps'.
4332 See also `org-completion-use-iswitchb'."
4333 :group
'org-completion
4336 (defcustom org-completion-use-iswitchb nil
4337 "Non-nil means use iswitchb completion wherever possible.
4338 Note that `iswitchb-mode' must be active for this variable to be relevant.
4339 If you decide to turn this variable on, you might well want to turn off
4340 `org-outline-path-complete-in-steps'.
4341 Note that this variable has only an effect if `org-completion-use-ido' is nil."
4342 :group
'org-completion
4345 (defcustom org-completion-fallback-command
'hippie-expand
4346 "The expansion command called by \\[pcomplete] in normal context.
4347 Normal means, no org-mode-specific context."
4348 :group
'org-completion
4351 ;;; Functions and variables from their packages
4352 ;; Declared here to avoid compiler warnings
4355 (defvar outline-mode-menu-heading
)
4356 (defvar outline-mode-menu-show
)
4357 (defvar outline-mode-menu-hide
)
4358 (defvar zmacs-regions
) ; XEmacs regions
4361 (defvar mark-active
)
4364 (declare-function calendar-absolute-from-iso
"cal-iso" (date))
4365 (declare-function calendar-forward-day
"cal-move" (arg))
4366 (declare-function calendar-goto-date
"cal-move" (date))
4367 (declare-function calendar-goto-today
"cal-move" ())
4368 (declare-function calendar-iso-from-absolute
"cal-iso" (date))
4369 (defvar calc-embedded-close-formula
)
4370 (defvar calc-embedded-open-formula
)
4371 (declare-function cdlatex-tab
"ext:cdlatex" ())
4372 (declare-function cdlatex-compute-tables
"ext:cdlatex" ())
4373 (declare-function dired-get-filename
"dired" (&optional localp no-error-if-not-filep
))
4374 (defvar font-lock-unfontify-region-function
)
4375 (declare-function iswitchb-read-buffer
"iswitchb"
4376 (prompt &optional default require-match start matches-set
))
4377 (defvar iswitchb-temp-buflist
)
4378 (declare-function org-gnus-follow-link
"org-gnus" (&optional group article
))
4379 (defvar org-agenda-tags-todo-honor-ignore-options
)
4380 (declare-function org-agenda-skip
"org-agenda" ())
4382 org-agenda-format-item
"org-agenda"
4383 (extra txt
&optional level category tags dotime noprefix remove-re habitp
))
4384 (declare-function org-agenda-new-marker
"org-agenda" (&optional pos
))
4385 (declare-function org-agenda-change-all-lines
"org-agenda"
4386 (newhead hdmarker
&optional fixface just-this
))
4387 (declare-function org-agenda-set-restriction-lock
"org-agenda" (&optional type
))
4388 (declare-function org-agenda-maybe-redo
"org-agenda" ())
4389 (declare-function org-agenda-save-markers-for-cut-and-paste
"org-agenda"
4391 (declare-function org-agenda-copy-local-variable
"org-agenda" (var))
4392 (declare-function org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
4393 "org-agenda" (&optional end
))
4394 (declare-function org-inlinetask-remove-END-maybe
"org-inlinetask" ())
4395 (declare-function org-inlinetask-in-task-p
"org-inlinetask" ())
4396 (declare-function org-inlinetask-goto-beginning
"org-inlinetask" ())
4397 (declare-function org-inlinetask-goto-end
"org-inlinetask" ())
4398 (declare-function org-indent-mode
"org-indent" (&optional arg
))
4399 (declare-function parse-time-string
"parse-time" (string))
4400 (declare-function org-attach-reveal
"org-attach" (&optional if-exists
))
4401 (declare-function orgtbl-send-table
"org-table" (&optional maybe
))
4402 (defvar remember-data-file
)
4403 (defvar texmathp-why
)
4404 (declare-function speedbar-line-directory
"speedbar" (&optional depth
))
4405 (declare-function table--at-cell-p
"table" (position &optional object at-column
))
4406 (declare-function calc-eval
"calc" (str &optional separator
&rest args
))
4409 (defun turn-on-orgtbl ()
4410 "Unconditionally turn on `orgtbl-mode'."
4411 (require 'org-table
)
4414 (defun org-at-table-p (&optional table-type
)
4415 "Return t if the cursor is inside an org-type table.
4416 If TABLE-TYPE is non-nil, also check for table.el-type tables."
4417 (if org-enable-table-editor
4419 (beginning-of-line 1)
4420 (looking-at (if table-type org-table-any-line-regexp
4421 org-table-line-regexp
)))
4423 (defsubst org-table-p
() (org-at-table-p))
4425 (defun org-at-table.el-p
()
4426 "Return t if and only if we are at a table.el table."
4427 (and (org-at-table-p 'any
)
4429 (goto-char (org-table-begin 'any
))
4430 (looking-at org-table1-hline-regexp
))))
4432 (defun org-table-recognize-table.el
()
4433 "If there is a table.el table nearby, recognize it and move into it."
4434 (if org-table-tab-recognizes-table.el
4435 (if (org-at-table.el-p
)
4437 (beginning-of-line 1)
4438 (if (looking-at org-table-dataline-regexp
)
4440 (if (looking-at org-table1-hline-regexp
)
4442 (beginning-of-line 2)
4443 (if (looking-at org-table-any-border-regexp
)
4444 (beginning-of-line -
1)))))
4445 (if (re-search-forward "|" (org-table-end t
) t
)
4448 (if (table--at-cell-p (point))
4450 (message "recognizing table.el table...")
4451 (table-recognize-table)
4452 (message "recognizing table.el table...done")))
4453 (error "This should not happen"))
4458 (defun org-at-table-hline-p ()
4459 "Return t if the cursor is inside a hline in a table."
4460 (if org-enable-table-editor
4462 (beginning-of-line 1)
4463 (looking-at org-table-hline-regexp
))
4466 (defun org-table-map-tables (function &optional quietly
)
4467 "Apply FUNCTION to the start of all tables in the buffer."
4471 (goto-char (point-min))
4472 (while (re-search-forward org-table-any-line-regexp nil t
)
4474 (message "Mapping tables: %d%%" (/ (* 100.0 (point)) (buffer-size))))
4475 (beginning-of-line 1)
4476 (when (and (looking-at org-table-line-regexp
)
4477 ;; Exclude tables in src/example/verbatim/clocktable blocks
4478 (not (org-in-block-p '("src" "example" "verbatim" "clocktable"))))
4479 (save-excursion (funcall function
))
4480 (or (looking-at org-table-line-regexp
)
4482 (re-search-forward org-table-any-border-regexp nil
1))))
4483 (unless quietly
(message "Mapping tables: done")))
4485 (declare-function org-clock-save-markers-for-cut-and-paste
"org-clock" (beg end
))
4486 (declare-function org-clock-update-mode-line
"org-clock" ())
4487 (declare-function org-resolve-clocks
"org-clock"
4488 (&optional also-non-dangling-p prompt last-valid
))
4490 (defun org-at-TBLFM-p (&optional pos
)
4491 "Return t when point (or POS) is in #+TBLFM line."
4494 (goto-char (or pos
(point)))
4495 (beginning-of-line 1)
4496 (looking-at org-TBLFM-regexp
)))
4498 (defvar org-clock-start-time
)
4499 (defvar org-clock-marker
(make-marker)
4500 "Marker recording the last clock-in.")
4501 (defvar org-clock-hd-marker
(make-marker)
4502 "Marker recording the last clock-in, but the headline position.")
4503 (defvar org-clock-heading
""
4504 "The heading of the current clock entry.")
4505 (defun org-clock-is-active ()
4506 "Return the buffer where the clock is currently running.
4507 Return nil if no clock is running."
4508 (marker-buffer org-clock-marker
))
4510 (defun org-check-running-clock ()
4511 "Check if the current buffer contains the running clock.
4512 If yes, offer to stop it and to save the buffer with the changes."
4513 (when (and (equal (marker-buffer org-clock-marker
) (current-buffer))
4514 (y-or-n-p (format "Clock-out in buffer %s before killing it? "
4517 (when (y-or-n-p "Save changed buffer?")
4520 (defun org-clocktable-try-shift (dir n
)
4521 "Check if this line starts a clock table, if yes, shift the time block."
4522 (when (org-match-line "^[ \t]*#\\+BEGIN:[ \t]+clocktable\\>")
4523 (org-clocktable-shift dir n
)))
4526 (defun org-clock-persistence-insinuate ()
4527 "Set up hooks for clock persistence."
4528 (require 'org-clock
)
4529 (add-hook 'org-mode-hook
'org-clock-load
)
4530 (add-hook 'kill-emacs-hook
'org-clock-save
))
4532 (defgroup org-archive nil
4533 "Options concerning archiving in Org-mode."
4535 :group
'org-structure
)
4537 (defcustom org-archive-location
"%s_archive::"
4538 "The location where subtrees should be archived.
4540 The value of this variable is a string, consisting of two parts,
4541 separated by a double-colon. The first part is a filename and
4542 the second part is a headline.
4544 When the filename is omitted, archiving happens in the same file.
4545 %s in the filename will be replaced by the current file
4546 name (without the directory part). Archiving to a different file
4547 is useful to keep archived entries from contributing to the
4550 The archived entries will be filed as subtrees of the specified
4551 headline. When the headline is omitted, the subtrees are simply
4552 filed away at the end of the file, as top-level entries. Also in
4553 the heading you can use %s to represent the file name, this can be
4554 useful when using the same archive for a number of different files.
4556 Here are a few examples:
4558 If the current file is Projects.org, archive in file
4559 Projects.org_archive, as top-level trees. This is the default.
4561 \"::* Archived Tasks\"
4562 Archive in the current file, under the top-level headline
4563 \"* Archived Tasks\".
4565 \"~/org/archive.org::\"
4566 Archive in file ~/org/archive.org (absolute path), as top-level trees.
4568 \"~/org/archive.org::* From %s\"
4569 Archive in file ~/org/archive.org (absolute path), under headlines
4570 \"From FILENAME\" where file name is the current file name.
4572 \"~/org/datetree.org::datetree/* Finished Tasks\"
4573 The \"datetree/\" string is special, signifying to archive
4574 items to the datetree. Items are placed in either the CLOSED
4575 date of the item, or the current date if there is no CLOSED date.
4576 The heading will be a subentry to the current date. There doesn't
4577 need to be a heading, but there always needs to be a slash after
4578 datetree. For example, to store archived items directly in the
4579 datetree, use \"~/org/datetree.org::datetree/\".
4581 \"basement::** Finished Tasks\"
4582 Archive in file ./basement (relative path), as level 3 trees
4583 below the level 2 heading \"** Finished Tasks\".
4585 You may set this option on a per-file basis by adding to the buffer a
4588 #+ARCHIVE: basement::** Finished Tasks
4590 You may also define it locally for a subtree by setting an ARCHIVE property
4591 in the entry. If such a property is found in an entry, or anywhere up
4592 the hierarchy, it will be used."
4596 (defcustom org-agenda-skip-archived-trees t
4597 "Non-nil means the agenda will skip any items located in archived trees.
4598 An archived tree is a tree marked with the tag ARCHIVE. The use of this
4599 variable is no longer recommended, you should leave it at the value t.
4600 Instead, use the key `v' to cycle the archives-mode in the agenda."
4602 :group
'org-agenda-skip
4605 (defcustom org-columns-skip-archived-trees t
4606 "Non-nil means ignore archived trees when creating column view."
4608 :group
'org-properties
4611 (defcustom org-cycle-open-archived-trees nil
4612 "Non-nil means `org-cycle' will open archived trees.
4613 An archived tree is a tree marked with the tag ARCHIVE.
4614 When nil, archived trees will stay folded. You can still open them with
4615 normal outline commands like `show-all', but not with the cycling commands."
4620 (defcustom org-sparse-tree-open-archived-trees nil
4621 "Non-nil means sparse tree construction shows matches in archived trees.
4622 When nil, matches in these trees are highlighted, but the trees are kept in
4625 :group
'org-sparse-trees
4628 (defcustom org-sparse-tree-default-date-type
'scheduled-or-deadline
4629 "The default date type when building a sparse tree.
4630 When this is nil, a date is a scheduled or a deadline timestamp.
4631 Otherwise, these types are allowed:
4634 active: only active timestamps (<...>)
4635 inactive: only inactive timestamps (<...)
4636 scheduled: only scheduled timestamps
4637 deadline: only deadline timestamps"
4638 :type
'(choice (const :tag
"Scheduled or deadline" scheduled-or-deadline
)
4639 (const :tag
"All timestamps" all
)
4640 (const :tag
"Only active timestamps" active
)
4641 (const :tag
"Only inactive timestamps" inactive
)
4642 (const :tag
"Only scheduled timestamps" scheduled
)
4643 (const :tag
"Only deadline timestamps" deadline
)
4644 (const :tag
"Only closed timestamps" closed
))
4646 :group
'org-sparse-trees
)
4648 (defun org-cycle-hide-archived-subtrees (state)
4649 "Re-hide all archived subtrees after a visibility state change."
4650 (when (and (not org-cycle-open-archived-trees
)
4651 (not (memq state
'(overview folded
))))
4653 (let* ((globalp (memq state
'(contents all
)))
4654 (beg (if globalp
(point-min) (point)))
4655 (end (if globalp
(point-max) (org-end-of-subtree t
))))
4656 (org-hide-archived-subtrees beg end
)
4658 (if (looking-at (concat ".*:" org-archive-tag
":"))
4659 (message "%s" (substitute-command-keys
4660 "Subtree is archived and stays closed. Use \\[org-force-cycle-archived] to cycle it anyway.")))))))
4662 (defun org-force-cycle-archived ()
4663 "Cycle subtree even if it is archived."
4665 (setq this-command
'org-cycle
)
4666 (let ((org-cycle-open-archived-trees t
))
4667 (call-interactively 'org-cycle
)))
4669 (defun org-hide-archived-subtrees (beg end
)
4670 "Re-hide all archived subtrees after a visibility state change."
4672 (let* ((re (concat ":" org-archive-tag
":")))
4674 (while (re-search-forward re end t
)
4675 (when (org-at-heading-p)
4676 (org-flag-subtree t
)
4677 (org-end-of-subtree t
))))))
4679 (declare-function outline-end-of-heading
"outline" ())
4680 (declare-function outline-flag-region
"outline" (from to flag
))
4681 (defun org-flag-subtree (flag)
4683 (org-back-to-heading t
)
4684 (outline-end-of-heading)
4685 (outline-flag-region (point)
4686 (progn (org-end-of-subtree t
) (point))
4689 (defalias 'org-advertized-archive-subtree
'org-archive-subtree
)
4691 ;; Declare Column View Code
4693 (declare-function org-columns-number-to-string
"org-colview" (n fmt
&optional printf
))
4694 (declare-function org-columns-get-format-and-top-level
"org-colview" ())
4695 (declare-function org-columns-compute
"org-colview" (property))
4699 (declare-function org-id-store-link
"org-id")
4700 (declare-function org-id-locations-load
"org-id")
4701 (declare-function org-id-locations-save
"org-id")
4702 (defvar org-id-track-globally
)
4704 ;;; Variables for pre-computed regular expressions, all buffer local
4706 (defvar org-todo-regexp nil
4707 "Matches any of the TODO state keywords.")
4708 (make-variable-buffer-local 'org-todo-regexp
)
4709 (defvar org-not-done-regexp nil
4710 "Matches any of the TODO state keywords except the last one.")
4711 (make-variable-buffer-local 'org-not-done-regexp
)
4712 (defvar org-not-done-heading-regexp nil
4713 "Matches a TODO headline that is not done.")
4714 (make-variable-buffer-local 'org-not-done-regexp
)
4715 (defvar org-todo-line-regexp nil
4716 "Matches a headline and puts TODO state into group 2 if present.")
4717 (make-variable-buffer-local 'org-todo-line-regexp
)
4718 (defvar org-complex-heading-regexp nil
4719 "Matches a headline and puts everything into groups:
4721 group 2: The todo keyword, maybe
4722 group 3: Priority cookie
4723 group 4: True headline
4725 (make-variable-buffer-local 'org-complex-heading-regexp
)
4726 (defvar org-complex-heading-regexp-format nil
4727 "Printf format to make regexp to match an exact headline.
4728 This regexp will match the headline of any node which has the
4729 exact headline text that is put into the format, but may have any
4730 TODO state, priority and tags.")
4731 (make-variable-buffer-local 'org-complex-heading-regexp-format
)
4732 (defvar org-todo-line-tags-regexp nil
4733 "Matches a headline and puts TODO state into group 2 if present.
4734 Also put tags into group 4 if tags are present.")
4735 (make-variable-buffer-local 'org-todo-line-tags-regexp
)
4736 (defvar org-ds-keyword-length
12
4737 "Maximum length of the DEADLINE and SCHEDULED keywords.")
4738 (make-variable-buffer-local 'org-ds-keyword-length
)
4739 (defvar org-deadline-regexp nil
4740 "Matches the DEADLINE keyword.")
4741 (make-variable-buffer-local 'org-deadline-regexp
)
4742 (defvar org-deadline-time-regexp nil
4743 "Matches the DEADLINE keyword together with a time stamp.")
4744 (make-variable-buffer-local 'org-deadline-time-regexp
)
4745 (defvar org-deadline-time-hour-regexp nil
4746 "Matches the DEADLINE keyword together with a time-and-hour stamp.")
4747 (make-variable-buffer-local 'org-deadline-time-hour-regexp
)
4748 (defvar org-deadline-line-regexp nil
4749 "Matches the DEADLINE keyword and the rest of the line.")
4750 (make-variable-buffer-local 'org-deadline-line-regexp
)
4751 (defvar org-scheduled-regexp nil
4752 "Matches the SCHEDULED keyword.")
4753 (make-variable-buffer-local 'org-scheduled-regexp
)
4754 (defvar org-scheduled-time-regexp nil
4755 "Matches the SCHEDULED keyword together with a time stamp.")
4756 (make-variable-buffer-local 'org-scheduled-time-regexp
)
4757 (defvar org-scheduled-time-hour-regexp nil
4758 "Matches the SCHEDULED keyword together with a time-and-hour stamp.")
4759 (make-variable-buffer-local 'org-scheduled-time-hour-regexp
)
4760 (defvar org-closed-time-regexp nil
4761 "Matches the CLOSED keyword together with a time stamp.")
4762 (make-variable-buffer-local 'org-closed-time-regexp
)
4764 (defvar org-keyword-time-regexp nil
4765 "Matches any of the 4 keywords, together with the time stamp.")
4766 (make-variable-buffer-local 'org-keyword-time-regexp
)
4767 (defvar org-keyword-time-not-clock-regexp nil
4768 "Matches any of the 3 keywords, together with the time stamp.")
4769 (make-variable-buffer-local 'org-keyword-time-not-clock-regexp
)
4770 (defvar org-maybe-keyword-time-regexp nil
4771 "Matches a timestamp, possibly preceded by a keyword.")
4772 (make-variable-buffer-local 'org-maybe-keyword-time-regexp
)
4773 (defvar org-all-time-keywords nil
4774 "List of time keywords.")
4775 (make-variable-buffer-local 'org-all-time-keywords
)
4777 (defconst org-plain-time-of-day-regexp
4780 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4783 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4785 "Regular expression to match a plain time or time range.
4786 Examples: 11:45 or 8am-13:15 or 2:45-2:45pm. After a match, the following
4787 groups carry important information:
4789 1 the first time, range or not
4790 8 the second time, if it is a range.")
4792 (defconst org-plain-time-extension-regexp
4795 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4796 "\\+\\([0-9]+\\)\\(:\\([0-5][0-9]\\)\\)?")
4797 "Regular expression to match a time range like 13:30+2:10 = 13:30-15:40.
4798 Examples: 11:45 or 8am-13:15 or 2:45-2:45pm. After a match, the following
4799 groups carry important information:
4802 9 minutes of duration")
4804 (defconst org-stamp-time-of-day-regexp
4806 "<\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} +\\sw+ +\\)"
4807 "\\([012][0-9]:[0-5][0-9]\\(-\\([012][0-9]:[0-5][0-9]\\)\\)?[^\n\r>]*?\\)>"
4809 "<\\1\\([012][0-9]:[0-5][0-9]\\)>\\)?")
4810 "Regular expression to match a timestamp time or time range.
4811 After a match, the following groups carry important information:
4813 1 date plus weekday, for back referencing to make sure both times are on the same day
4814 2 the first time, range or not
4815 4 the second time, if it is a range.")
4817 (defconst org-startup-options
4818 '(("fold" org-startup-folded t
)
4819 ("overview" org-startup-folded t
)
4820 ("nofold" org-startup-folded nil
)
4821 ("showall" org-startup-folded nil
)
4822 ("showeverything" org-startup-folded showeverything
)
4823 ("content" org-startup-folded content
)
4824 ("indent" org-startup-indented t
)
4825 ("noindent" org-startup-indented nil
)
4826 ("hidestars" org-hide-leading-stars t
)
4827 ("showstars" org-hide-leading-stars nil
)
4828 ("odd" org-odd-levels-only t
)
4829 ("oddeven" org-odd-levels-only nil
)
4830 ("align" org-startup-align-all-tables t
)
4831 ("noalign" org-startup-align-all-tables nil
)
4832 ("inlineimages" org-startup-with-inline-images t
)
4833 ("noinlineimages" org-startup-with-inline-images nil
)
4834 ("latexpreview" org-startup-with-latex-preview t
)
4835 ("nolatexpreview" org-startup-with-latex-preview nil
)
4836 ("customtime" org-display-custom-times t
)
4837 ("logdone" org-log-done time
)
4838 ("lognotedone" org-log-done note
)
4839 ("nologdone" org-log-done nil
)
4840 ("lognoteclock-out" org-log-note-clock-out t
)
4841 ("nolognoteclock-out" org-log-note-clock-out nil
)
4842 ("logrepeat" org-log-repeat state
)
4843 ("lognoterepeat" org-log-repeat note
)
4844 ("logdrawer" org-log-into-drawer t
)
4845 ("nologdrawer" org-log-into-drawer nil
)
4846 ("logstatesreversed" org-log-states-order-reversed t
)
4847 ("nologstatesreversed" org-log-states-order-reversed nil
)
4848 ("nologrepeat" org-log-repeat nil
)
4849 ("logreschedule" org-log-reschedule time
)
4850 ("lognotereschedule" org-log-reschedule note
)
4851 ("nologreschedule" org-log-reschedule nil
)
4852 ("logredeadline" org-log-redeadline time
)
4853 ("lognoteredeadline" org-log-redeadline note
)
4854 ("nologredeadline" org-log-redeadline nil
)
4855 ("logrefile" org-log-refile time
)
4856 ("lognoterefile" org-log-refile note
)
4857 ("nologrefile" org-log-refile nil
)
4858 ("fninline" org-footnote-define-inline t
)
4859 ("nofninline" org-footnote-define-inline nil
)
4860 ("fnlocal" org-footnote-section nil
)
4861 ("fnauto" org-footnote-auto-label t
)
4862 ("fnprompt" org-footnote-auto-label nil
)
4863 ("fnconfirm" org-footnote-auto-label confirm
)
4864 ("fnplain" org-footnote-auto-label plain
)
4865 ("fnadjust" org-footnote-auto-adjust t
)
4866 ("nofnadjust" org-footnote-auto-adjust nil
)
4867 ("constcgs" constants-unit-system cgs
)
4868 ("constSI" constants-unit-system SI
)
4869 ("noptag" org-tag-persistent-alist nil
)
4870 ("hideblocks" org-hide-block-startup t
)
4871 ("nohideblocks" org-hide-block-startup nil
)
4872 ("beamer" org-startup-with-beamer-mode t
)
4873 ("entitiespretty" org-pretty-entities t
)
4874 ("entitiesplain" org-pretty-entities nil
))
4875 "Variable associated with STARTUP options for org-mode.
4876 Each element is a list of three items: the startup options (as written
4877 in the #+STARTUP line), the corresponding variable, and the value to set
4878 this variable to if the option is found. An optional forth element PUSH
4879 means to push this value onto the list in the variable.")
4881 (defun org-update-property-plist (key val props
)
4882 "Update PROPS with KEY and VAL."
4883 (let* ((appending (string= "+" (substring key
(- (length key
) 1))))
4884 (key (if appending
(substring key
0 (- (length key
) 1)) key
))
4885 (remainder (org-remove-if (lambda (p) (string= (car p
) key
)) props
))
4886 (previous (cdr (assoc key props
))))
4888 (cons (cons key
(if previous
(concat previous
" " val
) val
)) remainder
)
4889 (cons (cons key val
) remainder
))))
4891 (defcustom org-group-tags t
4892 "When non-nil (the default), use group tags.
4893 This can be turned on/off through `org-toggle-tags-groups'."
4898 (defvar org-inhibit-startup nil
) ; Dynamically-scoped param.
4900 (defun org-toggle-tags-groups ()
4901 "Toggle support for group tags.
4902 Support for group tags is controlled by the option
4903 `org-group-tags', which is non-nil by default."
4905 (setq org-group-tags
(not org-group-tags
))
4906 (cond ((and (derived-mode-p 'org-agenda-mode
)
4909 ((derived-mode-p 'org-mode
)
4910 (let ((org-inhibit-startup t
)) (org-mode))))
4911 (message "Groups tags support has been turned %s"
4912 (if org-group-tags
"on" "off")))
4914 (defun org-set-regexps-and-options-for-tags ()
4915 "Precompute variables used for tags."
4916 (when (derived-mode-p 'org-mode
)
4917 (org-set-local 'org-file-tags nil
)
4918 (let ((re (org-make-options-regexp '("FILETAGS" "TAGS")))
4921 tags ftags key value
)
4925 (goto-char (point-min))
4926 (while (re-search-forward re nil t
)
4927 (setq key
(upcase (org-match-string-no-properties 1))
4928 value
(org-match-string-no-properties 2))
4929 (if (stringp value
) (setq value
(org-trim value
)))
4932 (setq tags
(append tags
(if tags
'("\\n") nil
)
4933 (org-split-string value splitre
))))
4934 ((equal key
"FILETAGS")
4935 (when (string-match "\\S-" value
)
4940 (mapcar (lambda (x) (org-split-string x
":"))
4941 (org-split-string value
)))))))))))
4942 ;; Process the file tags.
4943 (and ftags
(org-set-local 'org-file-tags
4944 (mapcar 'org-add-prop-inherited ftags
)))
4945 (org-set-local 'org-tag-groups-alist nil
)
4946 ;; Process the tags.
4947 (when (and (not tags
) org-tag-alist
)
4950 (lambda (tg) (cond ((eq (car tg
) :startgroup
) "{")
4951 ((eq (car tg
) :endgroup
) "}")
4952 ((eq (car tg
) :grouptags
) ":")
4953 ((eq (car tg
) :newline
) "\n")
4955 (if (characterp (cdr tg
))
4956 (format "(%s)" (char-to-string (cdr tg
))) "")))))
4959 (while (setq e
(pop tags
))
4962 (progn (push '(:startgroup
) tgs
)
4963 (when (equal (nth 1 tags
) ":")
4964 (push (list (replace-regexp-in-string
4965 "(.+)$" "" (nth 0 tags
)))
4966 org-tag-groups-alist
)
4968 ((equal e
":") (push '(:grouptags
) tgs
))
4969 ((equal e
"}") (push '(:endgroup
) tgs
) (if g
(setq g nil
)))
4970 ((equal e
"\\n") (push '(:newline
) tgs
))
4971 ((string-match (org-re "^\\([[:alnum:]_@#%]+\\)(\\(.\\))$") e
)
4972 (push (cons (match-string 1 e
)
4973 (string-to-char (match-string 2 e
))) tgs
)
4975 (setcar org-tag-groups-alist
4976 (append (car org-tag-groups-alist
)
4977 (list (match-string 1 e
)))))
4978 (if g
(setq g
(1+ g
))))
4979 (t (push (list e
) tgs
)
4981 (setcar org-tag-groups-alist
4982 (append (car org-tag-groups-alist
) (list e
))))
4983 (if g
(setq g
(1+ g
))))))
4984 (org-set-local 'org-tag-alist nil
)
4985 (while (setq e
(pop tgs
))
4986 (or (and (stringp (car e
))
4987 (assoc (car e
) org-tag-alist
))
4988 (push e org-tag-alist
)))
4989 ;; Return a list with tag variables
4990 (list org-file-tags org-tag-alist org-tag-groups-alist
)))))
4992 (defvar org-ota nil
)
4993 (defun org-set-regexps-and-options ()
4994 "Precompute regular expressions used in the current buffer."
4995 (when (derived-mode-p 'org-mode
)
4996 (org-set-local 'org-todo-kwd-alist nil
)
4997 (org-set-local 'org-todo-key-alist nil
)
4998 (org-set-local 'org-todo-key-trigger nil
)
4999 (org-set-local 'org-todo-keywords-1 nil
)
5000 (org-set-local 'org-done-keywords nil
)
5001 (org-set-local 'org-todo-heads nil
)
5002 (org-set-local 'org-todo-sets nil
)
5003 (org-set-local 'org-todo-log-states nil
)
5004 (org-set-local 'org-file-properties nil
)
5005 (let ((re (org-make-options-regexp
5006 '("CATEGORY" "TODO" "COLUMNS" "STARTUP" "ARCHIVE"
5007 "LINK" "PRIORITIES" "CONSTANTS" "PROPERTY" "DRAWERS"
5008 "SETUPFILE" "OPTIONS")
5009 "\\(?:[a-zA-Z][0-9a-zA-Z_]*_TODO\\)"))
5011 (scripts org-use-sub-superscripts
)
5012 kwds kws0 kwsa key log value cat arch const links hw dws
5013 tail sep kws1 prio props drawers ext-setup-or-nil setup-contents
5018 (goto-char (point-min))
5025 (insert ext-setup-or-nil
)
5026 (let ((major-mode 'org-mode
) org-ota
)
5027 (setq ret
(save-match-data
5028 (org-set-regexps-and-options-for-tags)))))
5029 ;; Append setupfile tags to existing tags
5032 (delq nil
(append org-file-tags
(nth 0 ret
)))
5034 (delq nil
(append org-tag-alist
(nth 1 ret
)))
5035 org-tag-groups-alist
5036 (delq nil
(append org-tag-groups-alist
(nth 2 ret
))))))
5037 (and ext-setup-or-nil
5038 (string-match re ext-setup-or-nil start
)
5039 (setq start
(match-end 0)))
5040 (and (setq ext-setup-or-nil nil start
0)
5041 (re-search-forward re nil t
)))
5042 (setq key
(upcase (match-string 1 ext-setup-or-nil
))
5043 value
(org-match-string-no-properties 2 ext-setup-or-nil
))
5044 (if (stringp value
) (setq value
(org-trim value
)))
5046 ((equal key
"CATEGORY")
5048 ((member key
'("SEQ_TODO" "TODO"))
5049 (push (cons 'sequence
(org-split-string value splitre
)) kwds
))
5050 ((equal key
"TYP_TODO")
5051 (push (cons 'type
(org-split-string value splitre
)) kwds
))
5052 ((string-match "\\`\\([a-zA-Z][0-9a-zA-Z_]*\\)_TODO\\'" key
)
5053 ;; general TODO-like setup
5054 (push (cons (intern (downcase (match-string 1 key
)))
5055 (org-split-string value splitre
)) kwds
))
5056 ((equal key
"COLUMNS")
5057 (org-set-local 'org-columns-default-format value
))
5059 (when (string-match "^\\(\\S-+\\)[ \t]+\\(.+\\)" value
)
5060 (push (cons (match-string 1 value
)
5061 (org-trim (match-string 2 value
)))
5063 ((equal key
"PRIORITIES")
5064 (setq prio
(org-split-string value
" +")))
5065 ((equal key
"PROPERTY")
5066 (when (string-match "\\(\\S-+\\)\\s-+\\(.*\\)" value
)
5067 (setq props
(org-update-property-plist (match-string 1 value
)
5068 (match-string 2 value
)
5070 ((equal key
"CONSTANTS")
5071 (org-table-set-constants))
5072 ((equal key
"STARTUP")
5073 (let ((opts (org-split-string value splitre
))
5075 (while (setq l
(pop opts
))
5076 (when (setq l
(assoc l org-startup-options
))
5077 (setq var
(nth 1 l
) val
(nth 2 l
))
5079 (set (make-local-variable var
) val
)
5080 (if (not (listp (symbol-value var
)))
5081 (set (make-local-variable var
) nil
))
5082 (set (make-local-variable var
) (symbol-value var
))
5083 (add-to-list var val
))))))
5084 ((equal key
"ARCHIVE")
5086 (remove-text-properties 0 (length arch
)
5087 '(face t fontified t
) arch
))
5088 ((equal key
"OPTIONS")
5089 (if (string-match "\\([ \t]\\|\\`\\)\\^:\\(t\\|nil\\|{}\\)" value
)
5090 (setq scripts
(read (match-string 2 value
)))))
5091 ((and (equal key
"SETUPFILE")
5092 ;; Prevent checking in Gnus messages
5093 (not buffer-read-only
))
5094 (setq setup-contents
(org-file-contents
5096 (org-remove-double-quotes value
))
5098 (if (not ext-setup-or-nil
)
5099 (setq ext-setup-or-nil setup-contents start
0)
5100 (setq ext-setup-or-nil
5101 (concat (substring ext-setup-or-nil
0 start
)
5102 "\n" setup-contents
"\n"
5103 (substring ext-setup-or-nil start
)))))))
5104 ;; search for property blocks
5105 (goto-char (point-min))
5106 (while (re-search-forward org-block-regexp nil t
)
5107 (when (equal "PROPERTY" (upcase (match-string 1)))
5108 (setq value
(replace-regexp-in-string
5109 "[\n\r]" " " (match-string 4)))
5110 (when (string-match "\\(\\S-+\\)\\s-+\\(.*\\)" value
)
5111 (setq props
(org-update-property-plist (match-string 1 value
)
5112 (match-string 2 value
)
5114 (org-set-local 'org-use-sub-superscripts scripts
)
5116 (org-set-local 'org-category
(intern cat
))
5117 (push (cons "CATEGORY" cat
) props
))
5119 (if (< (length prio
) 3) (setq prio
'("A" "C" "B")))
5120 (setq prio
(mapcar 'string-to-char prio
))
5121 (org-set-local 'org-highest-priority
(nth 0 prio
))
5122 (org-set-local 'org-lowest-priority
(nth 1 prio
))
5123 (org-set-local 'org-default-priority
(nth 2 prio
)))
5124 (and props
(org-set-local 'org-file-properties
(nreverse props
)))
5125 (and arch
(org-set-local 'org-archive-location arch
))
5126 (and links
(setq org-link-abbrev-alist-local
(nreverse links
)))
5127 ;; Process the TODO keywords
5129 ;; Use the global values as if they had been given locally.
5130 (setq kwds
(default-value 'org-todo-keywords
))
5131 (if (stringp (car kwds
))
5132 (setq kwds
(list (cons org-todo-interpretation
5133 (default-value 'org-todo-keywords
)))))
5134 (setq kwds
(reverse kwds
)))
5135 (setq kwds
(nreverse kwds
))
5137 (while (setq kws
(pop kwds
))
5139 (run-hook-with-args-until-success
5140 'org-todo-setup-filter-hook kws
)
5142 (setq inter
(pop kws
) sep
(member "|" kws
)
5143 kws0
(delete "|" (copy-sequence kws
))
5148 (if (string-match "^\\(.*?\\)\\(?:(\\([^!@/]\\)?.*?)\\)?$" x
)
5150 (setq kw
(match-string 1 x
)
5151 key
(and (match-end 2) (match-string 2 x
))
5152 log
(org-extract-log-state-settings x
))
5153 (push (cons kw
(and key
(string-to-char key
))) kwsa
)
5154 (and log
(push log org-todo-log-states
))
5156 (error "Invalid TODO keyword %s" x
)))
5158 kwsa
(if kwsa
(append '((:startgroup
))
5162 dws
(if sep
(org-remove-keyword-keys (cdr sep
)) (last kws1
))
5163 tail
(list inter hw
(car dws
) (org-last dws
))))
5164 (add-to-list 'org-todo-heads hw
'append
)
5165 (push kws1 org-todo-sets
)
5166 (setq org-done-keywords
(append org-done-keywords dws nil
))
5167 (setq org-todo-key-alist
(append org-todo-key-alist kwsa
))
5168 (mapc (lambda (x) (push (cons x tail
) org-todo-kwd-alist
)) kws1
)
5169 (setq org-todo-keywords-1
(append org-todo-keywords-1 kws1 nil
)))
5170 (setq org-todo-sets
(nreverse org-todo-sets
)
5171 org-todo-kwd-alist
(nreverse org-todo-kwd-alist
)
5172 org-todo-key-trigger
(delq nil
(mapcar 'cdr org-todo-key-alist
))
5173 org-todo-key-alist
(org-assign-fast-keys org-todo-key-alist
)))
5174 ;; Compute the regular expressions and other local variables.
5175 ;; Using `org-outline-regexp-bol' would complicate them much,
5176 ;; because of the fixed white space at the end of that string.
5177 (if (not org-done-keywords
)
5178 (setq org-done-keywords
(and org-todo-keywords-1
5179 (list (org-last org-todo-keywords-1
)))))
5180 (setq org-ds-keyword-length
(+ 2 (max (length org-deadline-string
)
5181 (length org-scheduled-string
)
5182 (length org-clock-string
)
5183 (length org-closed-string
)))
5184 org-not-done-keywords
5185 (org-delete-all org-done-keywords
(copy-sequence org-todo-keywords-1
))
5188 (mapconcat 'regexp-quote org-todo-keywords-1
"\\|")
5192 (mapconcat 'regexp-quote org-not-done-keywords
"\\|")
5194 org-not-done-heading-regexp
5195 (format org-heading-keyword-regexp-format org-not-done-regexp
)
5196 org-todo-line-regexp
5197 (format org-heading-keyword-maybe-regexp-format org-todo-regexp
)
5198 org-complex-heading-regexp
5199 (concat "^\\(\\*+\\)"
5200 "\\(?: +" org-todo-regexp
"\\)?"
5201 "\\(?: +\\(\\[#.\\]\\)\\)?"
5202 "\\(?: +\\(.*?\\)\\)??"
5203 (org-re "\\(?:[ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)?")
5205 org-complex-heading-regexp-format
5206 (concat "^\\(\\*+\\)"
5207 "\\(?: +" org-todo-regexp
"\\)?"
5208 "\\(?: +\\(\\[#.\\]\\)\\)?"
5210 ;; Stats cookies can be stuck to body.
5211 "\\(?:\\[[0-9%%/]+\\] *\\)*"
5213 "\\(?: *\\[[0-9%%/]+\\]\\)*"
5215 (org-re "\\(?:[ \t]+\\(:[[:alnum:]_@#%%:]+:\\)\\)?")
5217 org-todo-line-tags-regexp
5218 (concat "^\\(\\*+\\)"
5219 "\\(?: +" org-todo-regexp
"\\)?"
5220 "\\(?: +\\(.*?\\)\\)??"
5221 (org-re "\\(?:[ \t]+\\(:[[:alnum:]:_@#%]+:\\)\\)?")
5223 org-deadline-regexp
(concat "\\<" org-deadline-string
)
5224 org-deadline-time-regexp
5225 (concat "\\<" org-deadline-string
" *<\\([^>]+\\)>")
5226 org-deadline-time-hour-regexp
5227 (concat "\\<" org-deadline-string
5228 " *<\\([^>]+[0-9]\\{1,2\\}:[0-9]\\{2\\}[0-9-+:hdwmy \t.]*\\)>")
5229 org-deadline-line-regexp
5230 (concat "\\<\\(" org-deadline-string
"\\).*")
5231 org-scheduled-regexp
5232 (concat "\\<" org-scheduled-string
)
5233 org-scheduled-time-regexp
5234 (concat "\\<" org-scheduled-string
" *<\\([^>]+\\)>")
5235 org-scheduled-time-hour-regexp
5236 (concat "\\<" org-scheduled-string
5237 " *<\\([^>]+[0-9]\\{1,2\\}:[0-9]\\{2\\}[0-9-+:hdwmy \t.]*\\)>")
5238 org-closed-time-regexp
5239 (concat "\\<" org-closed-string
" *\\[\\([^]]+\\)\\]")
5240 org-keyword-time-regexp
5241 (concat "\\<\\(" org-scheduled-string
5242 "\\|" org-deadline-string
5243 "\\|" org-closed-string
5244 "\\|" org-clock-string
"\\)"
5245 " *[[<]\\([^]>]+\\)[]>]")
5246 org-keyword-time-not-clock-regexp
5247 (concat "\\<\\(" org-scheduled-string
5248 "\\|" org-deadline-string
5249 "\\|" org-closed-string
5251 " *[[<]\\([^]>]+\\)[]>]")
5252 org-maybe-keyword-time-regexp
5253 (concat "\\(\\<\\(" org-scheduled-string
5254 "\\|" org-deadline-string
5255 "\\|" org-closed-string
5256 "\\|" org-clock-string
"\\)\\)?"
5257 " *\\([[<][0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^]\r\n>]*?[]>]\\|<%%([^\r\n>]*>\\)")
5258 org-all-time-keywords
5259 (mapcar (lambda (w) (substring w
0 -
1))
5260 (list org-scheduled-string org-deadline-string
5261 org-clock-string org-closed-string
)))
5263 (org-compute-latex-and-related-regexp))))
5265 (defun org-file-contents (file &optional noerror
)
5266 "Return the contents of FILE, as a string."
5267 (if (and file
(file-readable-p file
))
5269 (insert-file-contents file
)
5271 (funcall (if noerror
'message
'error
)
5272 "Cannot read file \"%s\"%s"
5274 (let ((from (buffer-file-name (buffer-base-buffer))))
5275 (if from
(concat " (referenced in file \"" from
"\")") "")))))
5277 (defun org-extract-log-state-settings (x)
5278 "Extract the log state setting from a TODO keyword string.
5279 This will extract info from a string like \"WAIT(w@/!)\"."
5280 (let (kw key log1 log2
)
5281 (when (string-match "^\\(.*?\\)\\(?:(\\([^!@/]\\)?\\([!@]\\)?\\(?:/\\([!@]\\)\\)?)\\)?$" x
)
5282 (setq kw
(match-string 1 x
)
5283 key
(and (match-end 2) (match-string 2 x
))
5284 log1
(and (match-end 3) (match-string 3 x
))
5285 log2
(and (match-end 4) (match-string 4 x
)))
5288 (and log1
(if (equal log1
"!") 'time
'note
))
5289 (and log2
(if (equal log2
"!") 'time
'note
)))))))
5291 (defun org-remove-keyword-keys (list)
5292 "Remove a pair of parenthesis at the end of each string in LIST."
5294 (if (string-match "(.*)$" x
)
5295 (substring x
0 (match-beginning 0))
5299 (defun org-assign-fast-keys (alist)
5300 "Assign fast keys to a keyword-key alist.
5301 Respect keys that are already there."
5302 (let (new e
(alt ?
0))
5303 (while (setq e
(pop alist
))
5304 (if (or (memq (car e
) '(:newline
:grouptags
:endgroup
:startgroup
))
5305 (cdr e
)) ;; Key already assigned.
5307 (let ((clist (string-to-list (downcase (car e
))))
5308 (used (append new alist
)))
5309 (when (= (car clist
) ?
@)
5311 (while (and clist
(rassoc (car clist
) used
))
5314 (while (rassoc alt used
)
5316 (push (cons (car e
) (or (car clist
) alt
)) new
))))
5319 ;;; Some variables used in various places
5321 (defvar org-window-configuration nil
5322 "Used in various places to store a window configuration.")
5323 (defvar org-selected-window nil
5324 "Used in various places to store a window configuration.")
5325 (defvar org-finish-function nil
5326 "Function to be called when `C-c C-c' is used.
5327 This is for getting out of special buffers like capture.")
5330 ;; FIXME: Occasionally check by commenting these, to make sure
5331 ;; no other functions uses these, forgetting to let-bind them.
5332 (org-no-warnings (defvar entry
)) ;; unprefixed, from calendar.el
5333 (defvar org-last-state
)
5334 (org-no-warnings (defvar date
)) ;; unprefixed, from calendar.el
5336 ;; Defined somewhere in this file, but used before definition.
5337 (defvar org-entities
) ;; defined in org-entities.el
5338 (defvar org-struct-menu
)
5339 (defvar org-org-menu
)
5340 (defvar org-tbl-menu
)
5342 ;;;; Define the Org-mode
5344 ;; We use a before-change function to check if a table might need
5346 (defvar org-table-may-need-update t
5347 "Indicates that a table might need an update.
5348 This variable is set by `org-before-change-function'.
5349 `org-table-align' sets it back to nil.")
5350 (defun org-before-change-function (beg end
)
5351 "Every change indicates that a table might need an update."
5352 (setq org-table-may-need-update t
))
5353 (defvar org-mode-map
)
5354 (defvar org-inhibit-startup-visibility-stuff nil
) ; Dynamically-scoped param.
5355 (defvar org-agenda-keep-modes nil
) ; Dynamically-scoped param.
5356 (defvar org-inhibit-logging nil
) ; Dynamically-scoped param.
5357 (defvar org-inhibit-blocking nil
) ; Dynamically-scoped param.
5358 (defvar org-table-buffer-is-an nil
)
5360 (defvar bidi-paragraph-direction
)
5361 (defvar buffer-face-mode-face
)
5364 (if (and (not (keymapp outline-mode-map
)) (featurep 'allout
))
5365 (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"))
5366 (require 'noutline
"noutline" 'noerror
) ;; stock XEmacs does not have it
5368 ;; Other stuff we need.
5369 (require 'time-date
)
5370 (unless (fboundp 'time-subtract
) (defalias 'time-subtract
'subtract-time
))
5374 ;; (require 'org-macs) moved higher up in the file before it is first used
5375 (require 'org-entities
)
5376 ;; (require 'org-compat) moved higher up in the file before it is first used
5377 (require 'org-faces
)
5379 (require 'org-pcomplete
)
5381 (require 'org-footnote
)
5382 (require 'org-macro
)
5388 (define-derived-mode org-mode outline-mode
"Org"
5389 "Outline-based notes management and organizer, alias
5390 \"Carsten's outline-mode for keeping track of everything.\"
5392 Org-mode develops organizational tasks around a NOTES file which
5393 contains information about projects as plain text. Org-mode is
5394 implemented on top of outline-mode, which is ideal to keep the content
5395 of large files well structured. It supports ToDo items, deadlines and
5396 time stamps, which magically appear in the diary listing of the Emacs
5397 calendar. Tables are easily created with a built-in table editor.
5398 Plain text URL-like links connect to websites, emails (VM), Usenet
5399 messages (Gnus), BBDB entries, and any files related to the project.
5400 For printing and sharing of notes, an Org-mode file (or a part of it)
5401 can be exported as a structured ASCII or HTML file.
5403 The following commands are available:
5407 ;; Get rid of Outline menus, they are not needed
5408 ;; Need to do this here because define-derived-mode sets up
5409 ;; the keymap so late. Still, it is a waste to call this each time
5410 ;; we switch another buffer into org-mode.
5411 (if (featurep 'xemacs
)
5412 (when (boundp 'outline-mode-menu-heading
)
5413 ;; Assume this is Greg's port, it uses easymenu
5414 (easy-menu-remove outline-mode-menu-heading
)
5415 (easy-menu-remove outline-mode-menu-show
)
5416 (easy-menu-remove outline-mode-menu-hide
))
5417 (define-key org-mode-map
[menu-bar headings
] 'undefined
)
5418 (define-key org-mode-map
[menu-bar hide
] 'undefined
)
5419 (define-key org-mode-map
[menu-bar show
] 'undefined
))
5421 (org-load-modules-maybe)
5422 (easy-menu-add org-org-menu
)
5423 (easy-menu-add org-tbl-menu
)
5424 (org-install-agenda-files-menu)
5425 (if org-descriptive-links
(add-to-invisibility-spec '(org-link)))
5426 (add-to-invisibility-spec '(org-cwidth))
5427 (add-to-invisibility-spec '(org-hide-block . t
))
5428 (when (featurep 'xemacs
)
5429 (org-set-local 'line-move-ignore-invisible t
))
5430 (org-set-local 'outline-regexp org-outline-regexp
)
5431 (org-set-local 'outline-level
'org-outline-level
)
5432 (setq bidi-paragraph-direction
'left-to-right
)
5433 (when (and org-ellipsis
5434 (fboundp 'set-display-table-slot
) (boundp 'buffer-display-table
)
5435 (fboundp 'make-glyph-code
))
5436 (unless org-display-table
5437 (setq org-display-table
(make-display-table)))
5438 (set-display-table-slot
5441 (lambda (c) (make-glyph-code c
(and (not (stringp org-ellipsis
))
5443 (if (stringp org-ellipsis
) org-ellipsis
"..."))))
5444 (setq buffer-display-table org-display-table
))
5445 (org-set-regexps-and-options-for-tags)
5446 (org-set-regexps-and-options)
5447 (org-set-font-lock-defaults)
5448 (when (and org-tag-faces
(not org-tags-special-faces-re
))
5449 ;; tag faces set outside customize.... force initialization.
5450 (org-set-tag-faces 'org-tag-faces org-tag-faces
))
5452 (org-set-local 'calc-embedded-open-mode
"# ")
5453 ;; Modify a few syntax entries
5454 (modify-syntax-entry ?
@ "w")
5455 (modify-syntax-entry ?
\" "\"")
5456 (modify-syntax-entry ?
\\ "_")
5457 (modify-syntax-entry ?~
"_")
5458 (if org-startup-truncated
(setq truncate-lines t
))
5459 (when org-startup-indented
(require 'org-indent
) (org-indent-mode 1))
5460 (org-set-local 'font-lock-unfontify-region-function
5461 'org-unfontify-region
)
5462 ;; Activate before-change-function
5463 (org-set-local 'org-table-may-need-update t
)
5464 (org-add-hook 'before-change-functions
'org-before-change-function nil
5466 ;; Check for running clock before killing a buffer
5467 (org-add-hook 'kill-buffer-hook
'org-check-running-clock nil
'local
)
5468 ;; Initialize macros templates.
5469 (org-macro-initialize-templates)
5470 ;; Initialize radio targets.
5471 (org-update-radio-target-regexp)
5473 (org-set-local 'indent-line-function
'org-indent-line
)
5474 (org-set-local 'indent-region-function
'org-indent-region
)
5475 ;; Filling and auto-filling.
5478 (org-setup-comments-handling)
5479 ;; Initialize cache.
5480 (org-element-cache-reset)
5481 ;; Beginning/end of defun
5482 (org-set-local 'beginning-of-defun-function
'org-backward-element
)
5483 (org-set-local 'end-of-defun-function
5485 (if (not (org-at-heading-p))
5486 (org-forward-element)
5487 (org-forward-element)
5488 (forward-char -
1))))
5489 ;; Next error for sparse trees
5490 (org-set-local 'next-error-function
'org-occur-next-match
)
5491 ;; Make sure dependence stuff works reliably, even for users who set it
5493 (if org-enforce-todo-dependencies
5494 (add-hook 'org-blocker-hook
5495 'org-block-todo-from-children-or-siblings-or-parent
)
5496 (remove-hook 'org-blocker-hook
5497 'org-block-todo-from-children-or-siblings-or-parent
))
5498 (if org-enforce-todo-checkbox-dependencies
5499 (add-hook 'org-blocker-hook
5500 'org-block-todo-from-checkboxes
)
5501 (remove-hook 'org-blocker-hook
5502 'org-block-todo-from-checkboxes
))
5504 ;; Align options lines
5506 'align-mode-rules-list
5507 '((org-in-buffer-settings
5508 (regexp .
"^[ \t]*#\\+[A-Z_]+:\\(\\s-*\\)\\S-+")
5509 (modes .
'(org-mode)))))
5512 (org-set-local 'imenu-create-index-function
5513 'org-imenu-get-tree
)
5515 ;; Make isearch reveal context
5516 (if (or (featurep 'xemacs
)
5517 (not (boundp 'outline-isearch-open-invisible-function
)))
5518 ;; Emacs 21 and XEmacs make use of the hook
5519 (org-add-hook 'isearch-mode-end-hook
'org-isearch-end
'append
'local
)
5520 ;; Emacs 22 deals with this through a special variable
5521 (org-set-local 'outline-isearch-open-invisible-function
5522 (lambda (&rest ignore
) (org-show-context 'isearch
)))
5523 (org-add-hook 'isearch-mode-end-hook
'org-fix-ellipsis-at-bol
'append
'local
))
5525 ;; Setup the pcomplete hooks
5526 (set (make-local-variable 'pcomplete-command-completion-function
)
5527 'org-pcomplete-initial
)
5528 (set (make-local-variable 'pcomplete-command-name-function
)
5529 'org-command-at-point
)
5530 (set (make-local-variable 'pcomplete-default-completion-function
)
5532 (set (make-local-variable 'pcomplete-parse-arguments-function
)
5533 'org-parse-arguments
)
5534 (set (make-local-variable 'pcomplete-termination-string
) "")
5535 (when (>= emacs-major-version
23)
5536 (set (make-local-variable 'buffer-face-mode-face
) 'org-default
))
5538 ;; If empty file that did not turn on org-mode automatically, make it to.
5539 (if (and org-insert-mode-line-in-empty-file
5540 (org-called-interactively-p 'any
)
5541 (= (point-min) (point-max)))
5542 (insert "# -*- mode: org -*-\n\n"))
5543 (unless org-inhibit-startup
5545 (and org-startup-with-beamer-mode
(org-beamer-mode))
5546 (when org-startup-align-all-tables
5547 (org-table-map-tables 'org-table-align
'quietly
))
5548 (when org-startup-with-inline-images
5549 (org-display-inline-images))
5550 (when org-startup-with-latex-preview
5551 (org-preview-latex-fragment))
5552 (unless org-inhibit-startup-visibility-stuff
5553 (org-set-startup-visibility))
5554 (org-refresh-effort-properties)))
5555 ;; Try to set org-hide correctly
5556 (let ((foreground (org-find-invisible-foreground)))
5558 (set-face-foreground 'org-hide foreground
))))
5560 ;; Update `customize-package-emacs-version-alist'
5561 (add-to-list 'customize-package-emacs-version-alist
5562 '(Org ("6.21b" .
"23.1") ("6.33x" .
"23.2")
5563 ("7.8.11" .
"24.1") ("7.9.4" .
"24.3")
5564 ("8.2.6" .
"24.4")))
5566 (defvar org-mode-transpose-word-syntax-table
5567 (let ((st (make-syntax-table)))
5568 (mapc (lambda(c) (modify-syntax-entry
5569 (string-to-char (car c
)) "w p" st
))
5573 (when (fboundp 'abbrev-table-put
)
5574 (abbrev-table-put org-mode-abbrev-table
5575 :parents
(list text-mode-abbrev-table
)))
5577 (defsubst org-fix-ellipsis-at-bol
()
5578 (save-excursion (goto-char (window-start)) (recenter 0)))
5580 (defun org-find-invisible-foreground ()
5581 (let ((candidates (remove
5584 (list (face-background 'default
)
5585 (face-background 'org-default
))
5588 (when (boundp alist
)
5589 (cdr (assoc 'background-color
(symbol-value alist
)))))
5590 '(default-frame-alist initial-frame-alist window-system-default-frame-alist
))
5591 (list (face-foreground 'org-hide
))))))
5592 (car (remove nil candidates
))))
5594 (defun org-current-time (&optional rounding-minutes past
)
5595 "Current time, possibly rounded to ROUNDING-MINUTES.
5596 When ROUNDING-MINUTES is not an integer, fall back on the car of
5597 `org-time-stamp-rounding-minutes'. When PAST is non-nil, ensure
5598 the rounding returns a past time."
5599 (let ((r (or (and (integerp rounding-minutes
) rounding-minutes
)
5600 (car org-time-stamp-rounding-minutes
)))
5601 (time (decode-time)) res
)
5606 (append (list 0 (* r
(floor (+ .5 (/ (float (nth 1 time
)) r
)))))
5608 (if (and past
(< (org-float-time (time-subtract (current-time) res
)) 0))
5609 (seconds-to-time (- (org-float-time res
) (* r
60)))
5613 "Return today date, considering `org-extend-today-until'."
5615 (time-subtract (current-time)
5616 (list 0 (* 3600 org-extend-today-until
) 0))))
5618 ;;;; Font-Lock stuff, including the activators
5620 (defvar org-mouse-map
(make-sparse-keymap))
5621 (org-defkey org-mouse-map
[mouse-2
] 'org-open-at-mouse
)
5622 (org-defkey org-mouse-map
[mouse-3
] 'org-find-file-at-mouse
)
5623 (when org-mouse-1-follows-link
5624 (org-defkey org-mouse-map
[follow-link
] 'mouse-face
))
5625 (when org-tab-follows-link
5626 (org-defkey org-mouse-map
[(tab)] 'org-open-at-point
)
5627 (org-defkey org-mouse-map
"\C-i" 'org-open-at-point
))
5629 (require 'font-lock
)
5631 (defconst org-non-link-chars
"]\t\n\r<>")
5632 (defvar org-link-types
'("http" "https" "ftp" "mailto" "file" "file+emacs"
5633 "file+sys" "news" "shell" "elisp" "doi" "message"
5635 (defvar org-link-types-re nil
5636 "Matches a link that has a url-like prefix like \"http:\"")
5637 (defvar org-link-re-with-space nil
5638 "Matches a link with spaces, optional angular brackets around it.")
5639 (defvar org-link-re-with-space2 nil
5640 "Matches a link with spaces, optional angular brackets around it.")
5641 (defvar org-link-re-with-space3 nil
5642 "Matches a link with spaces, only for internal part in bracket links.")
5643 (defvar org-angle-link-re nil
5644 "Matches link with angular brackets, spaces are allowed.")
5645 (defvar org-plain-link-re nil
5646 "Matches plain link, without spaces.")
5647 (defvar org-bracket-link-regexp nil
5648 "Matches a link in double brackets.")
5649 (defvar org-bracket-link-analytic-regexp nil
5650 "Regular expression used to analyze links.
5651 Here is what the match groups contain after a match:
5657 (defvar org-bracket-link-analytic-regexp
++ nil
5658 "Like `org-bracket-link-analytic-regexp', but include coderef internal type.")
5659 (defvar org-any-link-re nil
5660 "Regular expression matching any link.")
5662 (defconst org-match-sexp-depth
3
5663 "Number of stacked braces for sub/superscript matching.")
5665 (defun org-create-multibrace-regexp (left right n
)
5666 "Create a regular expression which will match a balanced sexp.
5667 Opening delimiter is LEFT, and closing delimiter is RIGHT, both given
5668 as single character strings.
5669 The regexp returned will match the entire expression including the
5670 delimiters. It will also define a single group which contains the
5671 match except for the outermost delimiters. The maximum depth of
5672 stacked delimiters is N. Escaping delimiters is not possible."
5673 (let* ((nothing (concat "[^" left right
"]*?"))
5676 (next (concat "\\(?:" nothing left nothing right
"\\)+" nothing
)))
5679 re
(concat re or next
)
5680 next
(concat "\\(?:" nothing left next right
"\\)+" nothing
)))
5681 (concat left
"\\(" re
"\\)" right
)))
5683 (defconst org-match-substring-regexp
5685 "\\(\\S-\\)\\([_^]\\)\\("
5686 "\\(?:" (org-create-multibrace-regexp "{" "}" org-match-sexp-depth
) "\\)"
5688 "\\(?:" (org-create-multibrace-regexp "(" ")" org-match-sexp-depth
) "\\)"
5690 "\\(?:\\*\\|[+-]?[[:alnum:].,\\]*[[:alnum:]]\\)\\)")
5691 "The regular expression matching a sub- or superscript.")
5693 (defconst org-match-substring-with-braces-regexp
5695 "\\(\\S-\\)\\([_^]\\)"
5696 "\\(" (org-create-multibrace-regexp "{" "}" org-match-sexp-depth
) "\\)")
5697 "The regular expression matching a sub- or superscript, forcing braces.")
5699 (defun org-make-link-regexps ()
5700 "Update the link regular expressions.
5701 This should be called after the variable `org-link-types' has changed."
5702 (let ((types-re (regexp-opt org-link-types t
)))
5703 (setq org-link-types-re
5704 (concat "\\`" types-re
":")
5705 org-link-re-with-space
5706 (concat "<?" types-re
":"
5707 "\\([^" org-non-link-chars
" ]"
5708 "[^" org-non-link-chars
"]*"
5709 "[^" org-non-link-chars
" ]\\)>?")
5710 org-link-re-with-space2
5711 (concat "<?" types-re
":"
5712 "\\([^" org-non-link-chars
" ]"
5714 "[^" org-non-link-chars
" ]\\)>?")
5715 org-link-re-with-space3
5716 (concat "<?" types-re
":"
5717 "\\([^" org-non-link-chars
" ]"
5720 (concat "<" types-re
":"
5721 "\\([^" org-non-link-chars
" ]"
5722 "[^" org-non-link-chars
"]*"
5727 (org-re "\\([^ \t\n()<>]+\\(?:([[:word:]0-9_]+)\\|\\([^[:punct:] \t\n]\\|/\\)\\)\\)"))
5728 ;; "\\([^]\t\n\r<>() ]+[^]\t\n\r<>,.;() ]\\)")
5729 org-bracket-link-regexp
5730 "\\[\\[\\([^][]+\\)\\]\\(\\[\\([^][]+\\)\\]\\)?\\]"
5731 org-bracket-link-analytic-regexp
5734 "\\(" types-re
":\\)?"
5737 "\\(\\[" "\\([^]]+\\)" "\\]\\)?"
5739 org-bracket-link-analytic-regexp
++
5742 "\\(" (regexp-opt (cons "coderef" org-link-types
) t
) ":\\)?"
5745 "\\(\\[" "\\([^]]+\\)" "\\]\\)?"
5748 (concat "\\(" org-bracket-link-regexp
"\\)\\|\\("
5749 org-angle-link-re
"\\)\\|\\("
5750 org-plain-link-re
"\\)"))))
5752 (org-make-link-regexps)
5754 (defvar org-emph-face nil
)
5756 (defun org-do-emphasis-faces (limit)
5757 "Run through the buffer and emphasize strings."
5759 (while (and (not rtn
) (re-search-forward org-emph-re limit t
))
5760 (let* ((border (char-after (match-beginning 3)))
5761 (bre (regexp-quote (char-to-string border
))))
5762 (if (and (not (= border
(char-after (match-beginning 4))))
5763 (not (save-match-data
5764 (string-match (concat bre
".*" bre
)
5765 (replace-regexp-in-string
5767 (substring (match-string 2) 1 -
1))))))
5770 (setq a
(assoc (match-string 3) org-emphasis-alist
))
5771 (font-lock-prepend-text-property (match-beginning 2) (match-end 2)
5775 (org-remove-flyspell-overlays-in
5776 (match-beginning 0) (match-end 0)))
5777 (add-text-properties (match-beginning 2) (match-end 2)
5778 '(font-lock-multiline t org-emphasis t
))
5779 (when org-hide-emphasis-markers
5780 (add-text-properties (match-end 4) (match-beginning 5)
5781 '(invisible org-link
))
5782 (add-text-properties (match-beginning 3) (match-end 3)
5783 '(invisible org-link
))))))
5784 (goto-char (1+ (match-beginning 0))))
5787 (defun org-emphasize (&optional char
)
5788 "Insert or change an emphasis, i.e. a font like bold or italic.
5789 If there is an active region, change that region to a new emphasis.
5790 If there is no region, just insert the marker characters and position
5791 the cursor between them.
5792 CHAR should be the marker character. If it is a space, it means to
5793 remove the emphasis of the selected region.
5794 If CHAR is not given (for example in an interactive call) it will be
5797 (let ((erc org-emphasis-regexp-components
)
5799 (string "") beg end move c s
)
5800 (if (org-region-active-p)
5801 (setq beg
(region-beginning) end
(region-end)
5802 string
(buffer-substring beg end
))
5806 (message "Emphasis marker or tag: [%s]"
5807 (mapconcat (lambda(e) (car e
)) org-emphasis-alist
""))
5808 (setq char
(read-char-exclusive)))
5809 (if (equal char ?\
)
5810 (setq s
"" move nil
)
5811 (unless (assoc (char-to-string char
) org-emphasis-alist
)
5812 (user-error "No such emphasis marker: \"%c\"" char
))
5813 (setq s
(char-to-string char
)))
5814 (while (and (> (length string
) 1)
5815 (equal (substring string
0 1) (substring string -
1))
5816 (assoc (substring string
0 1) org-emphasis-alist
))
5817 (setq string
(substring string
1 -
1)))
5818 (setq string
(concat s string s
))
5819 (if beg
(delete-region beg end
))
5821 (string-match (concat "[" (nth 0 erc
) "\n]")
5822 (char-to-string (char-before (point)))))
5825 (string-match (concat "[" (nth 1 erc
) "\n]")
5826 (char-to-string (char-after (point)))))
5827 (insert " ") (backward-char 1))
5829 (and move
(backward-char 1))))
5831 (defconst org-nonsticky-props
5832 '(mouse-face highlight keymap invisible intangible help-echo org-linked-text htmlize-link
))
5834 (defsubst org-rear-nonsticky-at
(pos)
5835 (add-text-properties (1- pos
) pos
(list 'rear-nonsticky org-nonsticky-props
)))
5837 (defun org-activate-plain-links (limit)
5838 "Run through the buffer and add overlays to links."
5840 (when (and (re-search-forward (concat org-plain-link-re
) limit t
)
5841 (not (org-in-src-block-p)))
5842 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5843 (setq f
(get-text-property (match-beginning 0) 'face
))
5844 (setq hl
(org-match-string-no-properties 0))
5845 (if (or (eq f
'org-tag
)
5846 (and (listp f
) (memq 'org-tag f
)))
5848 (add-text-properties (match-beginning 0) (match-end 0)
5849 (list 'mouse-face
'highlight
5851 'htmlize-link
`(:uri
,hl
)
5852 'keymap org-mouse-map
))
5853 (org-rear-nonsticky-at (match-end 0)))
5856 (defun org-activate-code (limit)
5857 (if (re-search-forward "^[ \t]*\\(:\\(?: .*\\|$\\)\n?\\)" limit t
)
5859 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5860 (remove-text-properties (match-beginning 0) (match-end 0)
5861 '(display t invisible t intangible t
))
5864 (defcustom org-src-fontify-natively t
5865 "When non-nil, fontify code in code blocks."
5868 :package-version
'(Org .
"8.3")
5869 :group
'org-appearance
5872 (defcustom org-allow-promoting-top-level-subtree nil
5873 "When non-nil, allow promoting a top level subtree.
5874 The leading star of the top level headline will be replaced
5878 :group
'org-appearance
)
5880 (defun org-fontify-meta-lines-and-blocks (limit)
5882 (org-fontify-meta-lines-and-blocks-1 limit
)
5883 (error (message "org-mode fontification error"))))
5885 (defun org-fontify-meta-lines-and-blocks-1 (limit)
5886 "Fontify #+ lines and blocks."
5887 (let ((case-fold-search t
))
5888 (if (re-search-forward
5889 "^\\([ \t]*#\\(\\(\\+[a-zA-Z]+:?\\| \\|$\\)\\(_\\([a-zA-Z]+\\)\\)?\\)[ \t]*\\(\\([^ \t\n]*\\)[ \t]*\\(.*\\)\\)\\)"
5891 (let ((beg (match-beginning 0))
5892 (block-start (match-end 0))
5894 (lang (match-string 7))
5895 (beg1 (line-beginning-position 2))
5896 (dc1 (downcase (match-string 2)))
5897 (dc3 (downcase (match-string 3)))
5898 end end1 quoting block-type ovl
)
5900 ((member dc1
'("+html:" "+ascii:" "+latex:"))
5901 ;; a single line of backend-specific content
5902 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5903 (remove-text-properties (match-beginning 0) (match-end 0)
5904 '(display t invisible t intangible t
))
5905 (add-text-properties (match-beginning 1) (match-end 3)
5906 '(font-lock-fontified t face org-meta-line
))
5907 (add-text-properties (match-beginning 6) (+ (match-end 6) 1)
5908 '(font-lock-fontified t face org-block
))
5909 ; for backend-specific code
5911 ((and (match-end 4) (equal dc3
"+begin"))
5913 (setq block-type
(downcase (match-string 5))
5914 quoting
(member block-type org-protecting-blocks
))
5915 (when (re-search-forward
5916 (concat "^[ \t]*#\\+end" (match-string 4) "\\>.*")
5917 nil t
) ;; on purpose, we look further than LIMIT
5918 (setq end
(min (point-max) (match-end 0))
5919 end1
(min (point-max) (1- (match-beginning 0))))
5920 (setq block-end
(match-beginning 0))
5922 (org-remove-flyspell-overlays-in beg1 end1
)
5923 (remove-text-properties beg end
5924 '(display t invisible t intangible t
)))
5925 (add-text-properties
5926 beg end
'(font-lock-fontified t font-lock-multiline t
))
5927 (add-text-properties beg beg1
'(face org-meta-line
))
5928 (org-remove-flyspell-overlays-in beg beg1
)
5929 (add-text-properties ; For end_src
5930 end1
(min (point-max) (1+ end
)) '(face org-meta-line
))
5931 (org-remove-flyspell-overlays-in end1 end
)
5933 ((and lang
(not (string= lang
"")) org-src-fontify-natively
)
5934 (org-src-font-lock-fontify-block lang block-start block-end
)
5935 ;; remove old background overlays
5937 (if (eq (overlay-get ov
'face
) 'org-block-background
)
5938 (delete-overlay ov
)))
5939 (overlays-at (/ (+ beg1 block-end
) 2)))
5940 ;; add a background overlay
5941 (setq ovl
(make-overlay beg1 block-end
))
5942 (overlay-put ovl
'face
'org-block-background
)
5943 (overlay-put ovl
'evaporate t
)) ; make it go away when empty
5945 (add-text-properties beg1
(min (point-max) (1+ end1
))
5946 '(face org-block
))) ; end of source block
5947 ((not org-fontify-quote-and-verse-blocks
))
5948 ((string= block-type
"quote")
5949 (add-text-properties beg1
(min (point-max) (1+ end1
)) '(face org-quote
)))
5950 ((string= block-type
"verse")
5951 (add-text-properties beg1
(min (point-max) (1+ end1
)) '(face org-verse
))))
5952 (add-text-properties beg beg1
'(face org-block-begin-line
))
5953 (add-text-properties (min (point-max) (1+ end
)) (min (point-max) (1+ end1
))
5954 '(face org-block-end-line
))
5956 ((member dc1
'("+title:" "+author:" "+email:" "+date:"))
5957 (org-remove-flyspell-overlays-in
5959 (if (equal "+title:" dc1
) (match-end 2) (match-end 0)))
5960 (add-text-properties
5962 (if (member (intern (substring dc1
0 -
1)) org-hidden-keywords
)
5963 '(font-lock-fontified t invisible t
)
5964 '(font-lock-fontified t face org-document-info-keyword
)))
5965 (add-text-properties
5966 (match-beginning 6) (min (point-max) (1+ (match-end 6)))
5967 (if (string-equal dc1
"+title:")
5968 '(font-lock-fontified t face org-document-title
)
5969 '(font-lock-fontified t face org-document-info
))))
5970 ((or (equal dc1
"+results")
5971 (member dc1
'("+begin:" "+end:" "+caption:" "+label:"
5972 "+orgtbl:" "+tblfm:" "+tblname:" "+results:"
5973 "+call:" "+header:" "+headers:" "+name:"))
5974 (and (match-end 4) (equal dc3
"+attr")))
5975 (org-remove-flyspell-overlays-in
5977 (if (equal "+caption:" dc1
) (match-end 2) (match-end 0)))
5978 (add-text-properties
5980 '(font-lock-fontified t face org-meta-line
))
5982 ((member dc3
'(" " ""))
5983 (org-remove-flyspell-overlays-in beg
(match-end 0))
5984 (add-text-properties
5986 '(font-lock-fontified t face font-lock-comment-face
)))
5987 (t ;; just any other in-buffer setting, but not indented
5988 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5989 (add-text-properties
5991 '(font-lock-fontified t face org-meta-line
))
5994 (defun org-fontify-drawers (limit)
5996 (when (re-search-forward org-drawer-regexp limit t
)
5997 (add-text-properties
5998 (match-beginning 0) (match-end 0)
5999 '(font-lock-fontified t face org-special-keyword
))
6000 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6003 (defun org-fontify-macros (limit)
6005 (when (re-search-forward "\\({{{\\).+?\\(}}}\\)" limit t
)
6006 (add-text-properties
6007 (match-beginning 0) (match-end 0)
6008 '(font-lock-fontified t face org-macro
))
6009 (when org-hide-macro-markers
6010 (add-text-properties (match-end 2) (match-beginning 2)
6012 (add-text-properties (match-beginning 1) (match-end 1)
6014 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6017 (defun org-activate-angle-links (limit)
6018 "Run through the buffer and add overlays to links."
6019 (if (and (re-search-forward org-angle-link-re limit t
)
6020 (not (org-in-src-block-p)))
6022 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6023 (add-text-properties (match-beginning 0) (match-end 0)
6024 (list 'mouse-face
'highlight
6025 'keymap org-mouse-map
))
6026 (org-rear-nonsticky-at (match-end 0))
6029 (defun org-activate-footnote-links (limit)
6030 "Run through the buffer and add overlays to footnotes."
6031 (let ((fn (org-footnote-next-reference-or-definition limit
)))
6033 (let* ((beg (nth 1 fn
))
6036 (referencep (/= (line-beginning-position) beg
)))
6037 (when (and referencep
(nth 3 fn
))
6040 (search-forward (or label
"fn:"))
6041 (org-remove-flyspell-overlays-in beg
(match-end 0))))
6042 (add-text-properties beg end
6043 (list 'mouse-face
'highlight
6044 'keymap org-mouse-map
6046 (if referencep
"Footnote reference"
6047 "Footnote definition")
6048 'font-lock-fontified t
6049 'font-lock-multiline t
6050 'face
'org-footnote
))))))
6052 (defun org-activate-bracket-links (limit)
6053 "Run through the buffer and add overlays to bracketed links."
6054 (if (and (re-search-forward org-bracket-link-regexp limit t
)
6055 (not (org-in-src-block-p)))
6056 (let* ((hl (org-match-string-no-properties 1))
6057 (help (concat "LINK: " (save-match-data (org-link-unescape hl
))))
6058 (ip (org-maybe-intangible
6059 (list 'invisible
'org-link
6060 'keymap org-mouse-map
'mouse-face
'highlight
6061 'font-lock-multiline t
'help-echo help
6062 'htmlize-link
`(:uri
,hl
))))
6063 (vp (list 'keymap org-mouse-map
'mouse-face
'highlight
6064 'font-lock-multiline t
'help-echo help
6065 'htmlize-link
`(:uri
,hl
))))
6066 ;; We need to remove the invisible property here. Table narrowing
6067 ;; may have made some of this invisible.
6068 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6069 (remove-text-properties (match-beginning 0) (match-end 0)
6073 (add-text-properties (match-beginning 0) (match-beginning 3) ip
)
6074 (org-rear-nonsticky-at (match-beginning 3))
6075 (add-text-properties (match-beginning 3) (match-end 3) vp
)
6076 (org-rear-nonsticky-at (match-end 3))
6077 (add-text-properties (match-end 3) (match-end 0) ip
)
6078 (org-rear-nonsticky-at (match-end 0)))
6079 (add-text-properties (match-beginning 0) (match-beginning 1) ip
)
6080 (org-rear-nonsticky-at (match-beginning 1))
6081 (add-text-properties (match-beginning 1) (match-end 1) vp
)
6082 (org-rear-nonsticky-at (match-end 1))
6083 (add-text-properties (match-end 1) (match-end 0) ip
)
6084 (org-rear-nonsticky-at (match-end 0)))
6087 (defun org-activate-dates (limit)
6088 "Run through the buffer and add overlays to dates."
6089 (if (and (re-search-forward org-tsr-regexp-both limit t
)
6090 (not (equal (char-before (match-beginning 0)) 91)))
6092 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6093 (add-text-properties (match-beginning 0) (match-end 0)
6094 (list 'mouse-face
'highlight
6095 'keymap org-mouse-map
))
6096 (org-rear-nonsticky-at (match-end 0))
6097 (when org-display-custom-times
6099 (org-display-custom-time (match-beginning 3) (match-end 3)))
6100 (org-display-custom-time (match-beginning 1) (match-end 1)))
6103 (defvar org-target-link-regexp nil
6104 "Regular expression matching radio targets in plain text.")
6105 (make-variable-buffer-local 'org-target-link-regexp
)
6107 (defconst org-target-regexp
(let ((border "[^<>\n\r \t]"))
6108 (format "<<\\(%s\\|%s[^<>\n\r]*%s\\)>>"
6109 border border border
))
6110 "Regular expression matching a link target.")
6112 (defconst org-radio-target-regexp
(format "<%s>" org-target-regexp
)
6113 "Regular expression matching a radio target.")
6115 (defconst org-any-target-regexp
6116 (format "%s\\|%s" org-radio-target-regexp org-target-regexp
)
6117 "Regular expression matching any target.")
6119 (defun org-activate-target-links (limit)
6120 "Run through the buffer and add overlays to target matches."
6121 (when org-target-link-regexp
6122 (let ((case-fold-search t
))
6123 (if (re-search-forward org-target-link-regexp limit t
)
6125 (org-remove-flyspell-overlays-in (match-beginning 1) (match-end 1))
6126 (add-text-properties (match-beginning 1) (match-end 1)
6127 (list 'mouse-face
'highlight
6128 'keymap org-mouse-map
6129 'help-echo
"Radio target link"
6130 'org-linked-text t
))
6131 (org-rear-nonsticky-at (match-end 1))
6134 (defun org-update-radio-target-regexp ()
6135 "Find all radio targets in this file and update the regular expression.
6136 Also refresh fontification if needed."
6138 (let ((old-regexp org-target-link-regexp
)
6139 (before-re "\\(?:^\\|[^[:alnum:]]\\)\\(")
6140 (after-re "\\)\\(?:$\\|[^[:alnum:]]\\)")
6142 (org-with-wide-buffer
6143 (goto-char (point-min))
6145 (while (re-search-forward org-radio-target-regexp nil t
)
6146 ;; Make sure point is really within the object.
6148 (let ((obj (org-element-context)))
6149 (when (eq (org-element-type obj
) 'radio-target
)
6150 (add-to-list 'rtn
(org-element-property :value obj
)))))
6152 (setq org-target-link-regexp
6157 (replace-regexp-in-string
6158 " +" "\\s-+" (regexp-quote x
) t t
))
6162 (unless (equal old-regexp org-target-link-regexp
)
6164 (let ((regexp (cond ((not old-regexp
) org-target-link-regexp
)
6165 ((not org-target-link-regexp
) old-regexp
)
6170 (substring re
(length before-re
)
6171 (- (length after-re
))))
6172 (list old-regexp org-target-link-regexp
)
6175 (org-with-wide-buffer
6176 (goto-char (point-min))
6177 (while (re-search-forward regexp nil t
)
6178 (org-element-cache-refresh (match-beginning 1)))))
6179 ;; Re fontify buffer.
6180 (when (memq 'radio org-highlight-links
)
6181 (org-restart-font-lock)))))
6183 (defun org-hide-wide-columns (limit)
6185 (setq s
(text-property-any (point) (or limit
(point-max))
6188 (setq e
(next-single-property-change s
'org-cwidth
))
6189 (add-text-properties s e
(org-maybe-intangible '(invisible org-cwidth
)))
6193 (defvar org-latex-and-related-regexp nil
6194 "Regular expression for highlighting LaTeX, entities and sub/superscript.")
6196 (defun org-compute-latex-and-related-regexp ()
6197 "Compute regular expression for LaTeX, entities and sub/superscript.
6198 Result depends on variable `org-highlight-latex-and-related'."
6200 'org-latex-and-related-regexp
6202 (cond ((not (memq 'script org-highlight-latex-and-related
)) nil
)
6203 ((eq org-use-sub-superscripts
'{})
6204 (list org-match-substring-with-braces-regexp
))
6205 (org-use-sub-superscripts (list org-match-substring-regexp
))))
6207 (when (memq 'latex org-highlight-latex-and-related
)
6208 (let ((matchers (plist-get org-format-latex-options
:matchers
)))
6211 (and (member (car x
) matchers
) (nth 1 x
)))
6212 org-latex-regexps
)))))
6214 (when (memq 'entities org-highlight-latex-and-related
)
6215 (list "\\\\\\(there4\\|sup[123]\\|frac[13][24]\\|[a-zA-Z]+\\)\\($\\|{}\\|[^[:alpha:]]\\)"))))
6216 (mapconcat 'identity
(append re-latex re-entities re-sub
) "\\|"))))
6218 (defun org-do-latex-and-related (limit)
6219 "Highlight LaTeX snippets and environments, entities and sub/superscript.
6220 LIMIT bounds the search for syntax to highlight. Stop at first
6221 highlighted object, if any. Return t if some highlighting was
6222 done, nil otherwise."
6223 (when (org-string-nw-p org-latex-and-related-regexp
)
6225 (while (re-search-forward org-latex-and-related-regexp limit t
)
6226 (unless (memq (car-safe (get-text-property (1+ (match-beginning 0))
6228 '(org-code org-verbatim underline
))
6229 (let ((offset (if (memq (char-after (1+ (match-beginning 0)))
6233 (font-lock-prepend-text-property
6234 (+ offset
(match-beginning 0)) (match-end 0)
6235 'face
'org-latex-and-related
)
6236 (add-text-properties (+ offset
(match-beginning 0)) (match-end 0)
6237 '(font-lock-multiline t
)))
6241 (defun org-restart-font-lock ()
6242 "Restart `font-lock-mode', to force refontification."
6243 (when (and (boundp 'font-lock-mode
) font-lock-mode
)
6245 (font-lock-mode 1)))
6247 (defun org-activate-tags (limit)
6248 (if (re-search-forward (org-re "^\\*+.*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \r\n]") limit t
)
6250 (org-remove-flyspell-overlays-in (match-beginning 1) (match-end 1))
6251 (add-text-properties (match-beginning 1) (match-end 1)
6252 (list 'mouse-face
'highlight
6253 'keymap org-mouse-map
))
6254 (org-rear-nonsticky-at (match-end 1))
6257 (defun org-outline-level ()
6258 "Compute the outline level of the heading at point.
6259 If this is called at a normal headline, the level is the number of stars.
6260 Use `org-reduced-level' to remove the effect of `org-odd-levels'."
6262 (if (not (ignore-errors (org-back-to-heading t
)))
6264 (looking-at org-outline-regexp
)
6265 (1- (- (match-end 0) (match-beginning 0))))))
6267 (defvar org-font-lock-keywords nil
)
6269 (defsubst org-re-property
(property &optional literal allow-null
)
6270 "Return a regexp matching a PROPERTY line.
6271 Match group 3 will be set to the value if it exists."
6272 (concat "^\\(?4:[ \t]*\\)\\(?1::\\(?2:"
6273 (if literal property
(regexp-quote property
))
6274 "\\):\\)[ \t]+\\(?3:[^ \t\r\n]"
6276 ".*?\\)\\(?5:[ \t]*\\)$"))
6278 (defconst org-property-re
6279 (org-re-property ".*?" 'literal t
)
6280 "Regular expression matching a property line.
6281 There are four matching groups:
6282 1: :PROPKEY: including the leading and trailing colon,
6283 2: PROPKEY without the leading and trailing colon,
6284 3: PROPVAL without leading or trailing spaces,
6285 4: the indentation of the current line,
6286 5: trailing whitespace.")
6288 (defvar org-font-lock-hook nil
6289 "Functions to be called for special font lock stuff.")
6291 (defvar org-font-lock-set-keywords-hook nil
6292 "Functions that can manipulate `org-font-lock-extra-keywords'.
6293 This is called after `org-font-lock-extra-keywords' is defined, but before
6294 it is installed to be used by font lock. This can be useful if something
6295 needs to be inserted at a specific position in the font-lock sequence.")
6297 (defun org-font-lock-hook (limit)
6298 "Run `org-font-lock-hook' within LIMIT."
6299 (run-hook-with-args 'org-font-lock-hook limit
))
6301 (defun org-set-font-lock-defaults ()
6302 "Set font lock defaults for the current buffer."
6303 (let* ((em org-fontify-emphasized-text
)
6304 (lk org-highlight-links
)
6305 (org-font-lock-extra-keywords
6308 '(org-font-lock-hook)
6310 `(,(if org-fontify-whole-heading-line
6311 "^\\(\\**\\)\\(\\* \\)\\(.*\n?\\)"
6312 "^\\(\\**\\)\\(\\* \\)\\(.*\\)")
6313 (1 (org-get-level-face 1))
6314 (2 (org-get-level-face 2))
6315 (3 (org-get-level-face 3)))
6317 '("^[ \t]*\\(\\(|\\|\\+-[-+]\\).*\\S-\\)"
6320 '("^[ \t]*|\\(?:.*?|\\)? *\\(:?=[^|\n]*\\)" (1 'org-formula t
))
6321 '("^[ \t]*| *\\([#*]\\) *|" (1 'org-formula t
))
6322 '("^[ \t]*|\\( *\\([$!_^/]\\) *|.*\\)|" (1 'org-formula t
))
6323 '("| *\\(<[lrc]?[0-9]*>\\)" (1 'org-formula t
))
6325 '(org-fontify-drawers)
6327 (list org-property-re
6328 '(1 'org-special-keyword t
)
6329 '(3 'org-property-value t
))
6331 (if (memq 'tag lk
) '(org-activate-tags (1 'org-tag prepend
)))
6332 (if (memq 'angle lk
) '(org-activate-angle-links (0 'org-link t
)))
6333 (if (memq 'plain lk
) '(org-activate-plain-links (0 'org-link t
)))
6334 (if (memq 'bracket lk
) '(org-activate-bracket-links (0 'org-link t
)))
6335 (if (memq 'radio lk
) '(org-activate-target-links (1 'org-link t
)))
6336 (if (memq 'date lk
) '(org-activate-dates (0 'org-date t
)))
6337 (if (memq 'footnote lk
) '(org-activate-footnote-links))
6339 (list org-any-target-regexp
'(0 'org-target t
))
6341 '("^&?%%(.*\\|<%%([^>\n]*?>" (0 'org-sexp-date t
))
6343 '(org-fontify-macros)
6344 '(org-hide-wide-columns (0 nil append
))
6346 (list (format org-heading-keyword-regexp-format
6348 '(2 (org-get-todo-face 2) t
))
6350 (if org-fontify-done-headline
6351 (list (format org-heading-keyword-regexp-format
6354 (mapconcat 'regexp-quote org-done-keywords
"\\|")
6356 '(2 'org-headline-done t
))
6359 '(org-font-lock-add-priority-faces)
6361 '(org-font-lock-add-tag-faces)
6363 (if (and org-group-tags org-tag-groups-alist
)
6364 (list (concat org-outline-regexp-bol
".+\\(:"
6365 (regexp-opt (mapcar 'car org-tag-groups-alist
))
6367 '(1 'org-tag-group prepend
)))
6369 (list (concat "\\<" org-deadline-string
) '(0 'org-special-keyword t
))
6370 (list (concat "\\<" org-scheduled-string
) '(0 'org-special-keyword t
))
6371 (list (concat "\\<" org-closed-string
) '(0 'org-special-keyword t
))
6372 (list (concat "\\<" org-clock-string
) '(0 'org-special-keyword t
))
6375 (if (featurep 'xemacs
)
6376 '(org-do-emphasis-faces (0 nil append
))
6377 '(org-do-emphasis-faces)))
6379 '("^[ \t]*\\(?:[-+*]\\|[0-9]+[.)]\\)[ \t]+\\(?:\\[@\\(?:start:\\)?[0-9]+\\][ \t]*\\)?\\(\\[[- X]\\]\\)"
6380 1 'org-checkbox prepend
)
6381 (if (cdr (assq 'checkbox org-list-automatic-rules
))
6382 '("\\[\\([0-9]*%\\)\\]\\|\\[\\([0-9]*\\)/\\([0-9]*\\)\\]"
6383 (0 (org-get-checkbox-statistics-face) t
)))
6384 ;; Description list items
6385 '("^[ \t]*[-+*][ \t]+\\(.*?[ \t]+::\\)\\([ \t]+\\|$\\)"
6386 1 'org-list-dt prepend
)
6387 ;; ARCHIVEd headings
6389 org-outline-regexp-bol
6390 "\\(.*:" org-archive-tag
":.*\\)")
6391 '(1 'org-archived prepend
))
6393 '(org-do-latex-and-related)
6394 '(org-fontify-entities)
6395 '(org-raise-scripts)
6397 '(org-activate-code (1 'org-code t
))
6400 "^\\*\\(?: +%s\\)?\\(?: +\\[#[A-Z0-9]\\]\\)? +\\(?9:%s\\)\\(?: \\|$\\)"
6403 '(9 'org-special-keyword t
))
6404 ;; Blocks and meta lines
6405 '(org-fontify-meta-lines-and-blocks))))
6406 (setq org-font-lock-extra-keywords
(delq nil org-font-lock-extra-keywords
))
6407 (run-hooks 'org-font-lock-set-keywords-hook
)
6408 ;; Now set the full font-lock-keywords
6409 (org-set-local 'org-font-lock-keywords org-font-lock-extra-keywords
)
6410 (org-set-local 'font-lock-defaults
6411 '(org-font-lock-keywords t nil nil backward-paragraph
))
6412 (kill-local-variable 'font-lock-keywords
) nil
))
6414 (defun org-toggle-pretty-entities ()
6415 "Toggle the composition display of entities as UTF8 characters."
6417 (org-set-local 'org-pretty-entities
(not org-pretty-entities
))
6418 (org-restart-font-lock)
6419 (if org-pretty-entities
6420 (message "Entities are now displayed as UTF8 characters")
6423 (org-decompose-region (point-min) (point-max))
6424 (message "Entities are now displayed as plain text"))))
6426 (defvar org-custom-properties-overlays nil
6427 "List of overlays used for custom properties.")
6428 (make-variable-buffer-local 'org-custom-properties-overlays
)
6430 (defun org-toggle-custom-properties-visibility ()
6431 "Display or hide properties in `org-custom-properties'."
6433 (if org-custom-properties-overlays
6434 (progn (mapc 'delete-overlay org-custom-properties-overlays
)
6435 (setq org-custom-properties-overlays nil
))
6436 (unless (not org-custom-properties
)
6440 (goto-char (point-min))
6441 (while (re-search-forward org-property-re nil t
)
6443 (when (equal p
(substring (match-string 1) 1 -
1))
6444 (let ((o (make-overlay (match-beginning 0) (1+ (match-end 0)))))
6445 (overlay-put o
'invisible t
)
6446 (overlay-put o
'org-custom-property t
)
6447 (push o org-custom-properties-overlays
))))
6448 org-custom-properties
)))))))
6450 (defun org-fontify-entities (limit)
6451 "Find an entity to fontify."
6453 (when org-pretty-entities
6455 (while (re-search-forward
6456 "\\\\\\(there4\\|sup[123]\\|frac[13][24]\\|[a-zA-Z]+\\)\\($\\|{}\\|[^[:alpha:]\n]\\)"
6458 (if (and (not (org-at-comment-p))
6459 (setq ee
(org-entity-get (match-string 1)))
6460 (= (length (nth 6 ee
)) 1))
6462 ((end (if (equal (match-string 2) "{}")
6465 (add-text-properties
6466 (match-beginning 0) end
6467 (list 'font-lock-fontified t
))
6468 (compose-region (match-beginning 0) end
6474 (defun org-fontify-like-in-org-mode (s &optional odd-levels
)
6475 "Fontify string S like in Org-mode."
6478 (let ((org-odd-levels-only odd-levels
))
6486 (defun org-get-level-face (n)
6487 "Get the right face for match N in font-lock matching of headlines."
6488 (setq org-l
(- (match-end 2) (match-beginning 1) 1))
6489 (if org-odd-levels-only
(setq org-l
(1+ (/ org-l
2))))
6490 (if org-cycle-level-faces
6491 (setq org-f
(nth (%
(1- org-l
) org-n-level-faces
) org-level-faces
))
6492 (setq org-f
(nth (1- (min org-l org-n-level-faces
)) org-level-faces
)))
6494 ((eq n
1) (if org-hide-leading-stars
'org-hide org-f
))
6496 (t (if org-level-color-stars-only nil org-f
))))
6499 (defun org-get-todo-face (kwd)
6500 "Get the right face for a TODO keyword KWD.
6501 If KWD is a number, get the corresponding match group."
6502 (if (numberp kwd
) (setq kwd
(match-string kwd
)))
6503 (or (org-face-from-face-or-color
6504 'todo
'org-todo
(cdr (assoc kwd org-todo-keyword-faces
)))
6505 (and (member kwd org-done-keywords
) 'org-done
)
6508 (defun org-face-from-face-or-color (context inherit face-or-color
)
6509 "Create a face list that inherits INHERIT, but sets the foreground color.
6510 When FACE-OR-COLOR is not a string, just return it."
6511 (if (stringp face-or-color
)
6512 (list :inherit inherit
6513 (cdr (assoc context org-faces-easy-properties
))
6517 (defun org-font-lock-add-tag-faces (limit)
6518 "Add the special tag faces."
6519 (when (and org-tag-faces org-tags-special-faces-re
)
6520 (while (re-search-forward org-tags-special-faces-re limit t
)
6521 (add-text-properties (match-beginning 1) (match-end 1)
6522 (list 'face
(org-get-tag-face 1)
6523 'font-lock-fontified t
))
6524 (backward-char 1))))
6526 (defun org-font-lock-add-priority-faces (limit)
6527 "Add the special priority faces."
6528 (while (re-search-forward "\\[#\\([A-Z0-9]\\)\\]" limit t
)
6529 (when (save-match-data (org-at-heading-p))
6530 (add-text-properties
6531 (match-beginning 0) (match-end 0)
6532 (list 'face
(or (org-face-from-face-or-color
6533 'priority
'org-priority
6534 (cdr (assoc (char-after (match-beginning 1))
6535 org-priority-faces
)))
6537 'font-lock-fontified t
)))))
6539 (defun org-get-tag-face (kwd)
6540 "Get the right face for a TODO keyword KWD.
6541 If KWD is a number, get the corresponding match group."
6542 (if (numberp kwd
) (setq kwd
(match-string kwd
)))
6543 (or (org-face-from-face-or-color
6544 'tag
'org-tag
(cdr (assoc kwd org-tag-faces
)))
6547 (defun org-unfontify-region (beg end
&optional maybe_loudly
)
6548 "Remove fontification and activation overlays from links."
6549 (font-lock-default-unfontify-region beg end
)
6550 (let* ((buffer-undo-list t
)
6551 (inhibit-read-only t
) (inhibit-point-motion-hooks t
)
6552 (inhibit-modification-hooks t
)
6553 deactivate-mark buffer-file-name buffer-file-truename
)
6554 (org-decompose-region beg end
)
6555 (remove-text-properties beg end
6556 '(mouse-face t keymap t org-linked-text t
6557 invisible t intangible t
6559 (org-remove-font-lock-display-properties beg end
)))
6561 (defconst org-script-display
'(((raise -
0.3) (height 0.7))
6562 ((raise 0.3) (height 0.7))
6565 "Display properties for showing superscripts and subscripts.")
6567 (defun org-remove-font-lock-display-properties (beg end
)
6568 "Remove specific display properties that have been added by font lock.
6569 The will remove the raise properties that are used to show superscripts
6573 (setq next
(next-single-property-change beg
'display nil end
)
6574 prop
(get-text-property beg
'display
))
6575 (if (member prop org-script-display
)
6576 (put-text-property beg next
'display nil
))
6579 (defun org-raise-scripts (limit)
6580 "Add raise properties to sub/superscripts."
6581 (when (and org-pretty-entities org-pretty-entities-include-sub-superscripts
)
6582 (if (re-search-forward
6583 (if (eq org-use-sub-superscripts t
)
6584 org-match-substring-regexp
6585 org-match-substring-with-braces-regexp
)
6587 (let* ((pos (point)) table-p comment-p
6588 (mpos (match-beginning 3))
6589 (emph-p (get-text-property mpos
'org-emphasis
))
6590 (link-p (get-text-property mpos
'mouse-face
))
6591 (keyw-p (eq 'org-special-keyword
(get-text-property mpos
'face
))))
6592 (goto-char (point-at-bol))
6593 (setq table-p
(org-looking-at-p org-table-dataline-regexp
)
6594 comment-p
(org-looking-at-p "^[ \t]*#[ +]"))
6597 (if (member (char-after) '(?_ ?^
)) (goto-char (1- pos
)))
6598 (if (or comment-p emph-p link-p keyw-p
)
6600 (put-text-property (match-beginning 3) (match-end 0)
6602 (if (equal (char-after (match-beginning 2)) ?^
)
6603 (nth (if table-p
3 1) org-script-display
)
6604 (nth (if table-p
2 0) org-script-display
)))
6605 (add-text-properties (match-beginning 2) (match-end 2)
6607 'org-dwidth t
'org-dwidth-n
1))
6608 (if (and (eq (char-after (match-beginning 3)) ?
{)
6609 (eq (char-before (match-end 3)) ?
}))
6611 (add-text-properties
6612 (match-beginning 3) (1+ (match-beginning 3))
6613 (list 'invisible t
'org-dwidth t
'org-dwidth-n
1))
6614 (add-text-properties
6615 (1- (match-end 3)) (match-end 3)
6616 (list 'invisible t
'org-dwidth t
'org-dwidth-n
1))))
6619 ;;;; Visibility cycling, including org-goto and indirect buffer
6623 (defvar org-cycle-global-status nil
)
6624 (make-variable-buffer-local 'org-cycle-global-status
)
6625 (put 'org-cycle-global-status
'org-state t
)
6626 (defvar org-cycle-subtree-status nil
)
6627 (make-variable-buffer-local 'org-cycle-subtree-status
)
6628 (put 'org-cycle-subtree-status
'org-state t
)
6630 (defvar org-inlinetask-min-level
)
6632 (defun org-unlogged-message (&rest args
)
6633 "Display a message, but avoid logging it in the *Messages* buffer."
6634 (let ((message-log-max nil
))
6635 (apply 'message args
)))
6638 (defun org-cycle (&optional arg
)
6639 "TAB-action and visibility cycling for Org-mode.
6641 This is the command invoked in Org-mode by the TAB key. Its main purpose
6642 is outline visibility cycling, but it also invokes other actions
6643 in special contexts.
6645 - When this function is called with a prefix argument, rotate the entire
6646 buffer through 3 states (global cycling)
6647 1. OVERVIEW: Show only top-level headlines.
6648 2. CONTENTS: Show all headlines of all levels, but no body text.
6649 3. SHOW ALL: Show everything.
6650 When called with two `C-u C-u' prefixes, switch to the startup visibility,
6651 determined by the variable `org-startup-folded', and by any VISIBILITY
6652 properties in the buffer.
6653 When called with three `C-u C-u C-u' prefixed, show the entire buffer,
6654 including any drawers.
6656 - When inside a table, re-align the table and move to the next field.
6658 - When point is at the beginning of a headline, rotate the subtree started
6659 by this line through 3 different states (local cycling)
6660 1. FOLDED: Only the main headline is shown.
6661 2. CHILDREN: The main headline and the direct children are shown.
6662 From this state, you can move to one of the children
6663 and zoom in further.
6664 3. SUBTREE: Show the entire subtree, including body text.
6665 If there is no subtree, switch directly from CHILDREN to FOLDED.
6667 - When point is at the beginning of an empty headline and the variable
6668 `org-cycle-level-after-item/entry-creation' is set, cycle the level
6669 of the headline by demoting and promoting it to likely levels. This
6670 speeds up creation document structure by pressing TAB once or several
6671 times right after creating a new headline.
6673 - When there is a numeric prefix, go up to a heading with level ARG, do
6674 a `show-subtree' and return to the previous cursor position. If ARG
6675 is negative, go up that many levels.
6677 - When point is not at the beginning of a headline, execute the global
6678 binding for TAB, which is re-indenting the line. See the option
6679 `org-cycle-emulate-tab' for details.
6681 - Special case: if point is at the beginning of the buffer and there is
6682 no headline in line 1, this function will act as if called with prefix arg
6683 (C-u TAB, same as S-TAB) also when called without prefix arg.
6684 But only if also the variable `org-cycle-global-at-bob' is t."
6686 (org-load-modules-maybe)
6687 (unless (or (run-hook-with-args-until-success 'org-tab-first-hook
)
6688 (and org-cycle-level-after-item
/entry-creation
6689 (or (org-cycle-level)
6690 (org-cycle-item-indentation))))
6692 (or org-cycle-max-level
6693 (and (boundp 'org-inlinetask-min-level
)
6694 org-inlinetask-min-level
6695 (1- org-inlinetask-min-level
))))
6696 (nstars (and limit-level
6697 (if org-odd-levels-only
6698 (and limit-level
(1- (* limit-level
2)))
6701 (if (not (derived-mode-p 'org-mode
))
6703 (concat "\\*" (if nstars
(format "\\{1,%d\\} " nstars
) "+ "))))
6704 (bob-special (and org-cycle-global-at-bob
(not arg
) (bobp)
6705 (not (looking-at org-outline-regexp
))))
6708 (delq 'org-optimize-window-after-visibility-change
6709 (copy-sequence org-cycle-hook
))
6713 (if (or bob-special
(equal arg
'(4)))
6714 ;; special case: use global cycling
6720 (setq last-command
'dummy
)
6721 (org-set-startup-visibility)
6722 (org-unlogged-message "Startup visibility, plus VISIBILITY properties"))
6726 (org-unlogged-message "Entire buffer visible, including drawers"))
6728 ;; Try cdlatex TAB completion
6729 ((org-try-cdlatex-tab))
6731 ;; Table: enter it or move to the next field.
6732 ((org-at-table-p 'any
)
6733 (if (org-at-table.el-p
)
6734 (message "Use C-c ' to edit table.el tables")
6735 (if arg
(org-table-edit-field t
)
6736 (org-table-justify-field-maybe)
6737 (call-interactively 'org-table-next-field
))))
6739 ((run-hook-with-args-until-success
6740 'org-tab-after-check-for-table-hook
))
6742 ;; Global cycling: delegate to `org-cycle-internal-global'.
6743 ((eq arg t
) (org-cycle-internal-global))
6745 ;; Drawers: delegate to `org-flag-drawer'.
6747 (beginning-of-line 1)
6748 (looking-at org-drawer-regexp
))
6749 (org-flag-drawer ; toggle block visibility
6750 (not (get-char-property (match-end 0) 'invisible
))))
6752 ;; Show-subtree, ARG levels up from here.
6755 (org-back-to-heading)
6756 (outline-up-heading (if (< arg
0) (- arg
)
6757 (- (funcall outline-level
) arg
)))
6758 (org-show-subtree)))
6760 ;; Inline task: delegate to `org-inlinetask-toggle-visibility'.
6761 ((and (featurep 'org-inlinetask
)
6762 (org-inlinetask-at-task-p)
6763 (or (bolp) (not (eq org-cycle-emulate-tab
'exc-hl-bol
))))
6764 (org-inlinetask-toggle-visibility))
6766 ;; At an item/headline: delegate to `org-cycle-internal-local'.
6767 ((and (or (and org-cycle-include-plain-lists
(org-at-item-p))
6768 (save-excursion (beginning-of-line 1)
6769 (looking-at org-outline-regexp
)))
6770 (or (bolp) (not (eq org-cycle-emulate-tab
'exc-hl-bol
))))
6771 (org-cycle-internal-local))
6773 ;; From there: TAB emulation and template completion.
6774 (buffer-read-only (org-back-to-heading))
6776 ((run-hook-with-args-until-success
6777 'org-tab-after-check-for-cycling-hook
))
6779 ((org-try-structure-completion))
6781 ((run-hook-with-args-until-success
6782 'org-tab-before-tab-emulation-hook
))
6784 ((and (eq org-cycle-emulate-tab
'exc-hl-bol
)
6786 (not (looking-at org-outline-regexp
))))
6787 (call-interactively (global-key-binding "\t")))
6789 ((if (and (memq org-cycle-emulate-tab
'(white whitestart
))
6790 (save-excursion (beginning-of-line 1) (looking-at "[ \t]*"))
6791 (or (and (eq org-cycle-emulate-tab
'white
)
6792 (= (match-end 0) (point-at-eol)))
6793 (and (eq org-cycle-emulate-tab
'whitestart
)
6794 (>= (match-end 0) pos
))))
6796 (eq org-cycle-emulate-tab t
))
6797 (call-interactively (global-key-binding "\t")))
6800 (org-back-to-heading)
6803 (defun org-cycle-internal-global ()
6804 "Do the global cycling action."
6805 ;; Hack to avoid display of messages for .org attachments in Gnus
6806 (let ((ga (string-match "\\*fontification" (buffer-name))))
6808 ((and (eq last-command this-command
)
6809 (eq org-cycle-global-status
'overview
))
6810 ;; We just created the overview - now do table of contents
6811 ;; This can be slow in very large buffers, so indicate action
6812 (run-hook-with-args 'org-pre-cycle-hook
'contents
)
6813 (unless ga
(org-unlogged-message "CONTENTS..."))
6815 (unless ga
(org-unlogged-message "CONTENTS...done"))
6816 (setq org-cycle-global-status
'contents
)
6817 (run-hook-with-args 'org-cycle-hook
'contents
))
6819 ((and (eq last-command this-command
)
6820 (eq org-cycle-global-status
'contents
))
6821 ;; We just showed the table of contents - now show everything
6822 (run-hook-with-args 'org-pre-cycle-hook
'all
)
6824 (unless ga
(org-unlogged-message "SHOW ALL"))
6825 (setq org-cycle-global-status
'all
)
6826 (run-hook-with-args 'org-cycle-hook
'all
))
6829 ;; Default action: go to overview
6830 (run-hook-with-args 'org-pre-cycle-hook
'overview
)
6832 (unless ga
(org-unlogged-message "OVERVIEW"))
6833 (setq org-cycle-global-status
'overview
)
6834 (run-hook-with-args 'org-cycle-hook
'overview
)))))
6836 (defvar org-called-with-limited-levels
);Dyn-bound in ̀org-with-limited-levels'.
6838 (defun org-cycle-internal-local ()
6839 "Do the local cycling action."
6840 (let ((goal-column 0) eoh eol eos has-children children-skipped struct
)
6841 ;; First, determine end of headline (EOH), end of subtree or item
6842 ;; (EOS), and if item or heading has children (HAS-CHILDREN).
6847 (setq struct
(org-list-struct))
6848 (setq eoh
(point-at-eol))
6849 (setq eos
(org-list-get-item-end-before-blank (point) struct
))
6850 (setq has-children
(org-list-has-child-p (point) struct
)))
6851 (org-back-to-heading)
6852 (setq eoh
(save-excursion (outline-end-of-heading) (point)))
6853 (setq eos
(save-excursion (org-end-of-subtree t t
)
6854 (when (bolp) (backward-char)) (point)))
6857 (let ((level (funcall outline-level
)))
6858 (outline-next-heading)
6859 (and (org-at-heading-p t
)
6860 (> (funcall outline-level
) level
))))
6862 (org-list-search-forward (org-item-beginning-re) eos t
)))))
6863 ;; Determine end invisible part of buffer (EOL)
6864 (beginning-of-line 2)
6865 ;; XEmacs doesn't have `next-single-char-property-change'
6866 (if (featurep 'xemacs
)
6867 (while (and (not (eobp)) ;; this is like `next-line'
6868 (get-char-property (1- (point)) 'invisible
))
6869 (beginning-of-line 2))
6870 (while (and (not (eobp)) ;; this is like `next-line'
6871 (get-char-property (1- (point)) 'invisible
))
6872 (goto-char (next-single-char-property-change (point) 'invisible
))
6873 (and (eolp) (beginning-of-line 2))))
6875 ;; Find out what to do next and set `this-command'
6878 ;; Nothing is hidden behind this heading
6879 (unless (org-before-first-heading-p)
6880 (run-hook-with-args 'org-pre-cycle-hook
'empty
))
6881 (org-unlogged-message "EMPTY ENTRY")
6882 (setq org-cycle-subtree-status nil
)
6885 (outline-next-heading)
6886 (if (outline-invisible-p) (org-flag-heading nil
))))
6887 ((and (or (>= eol eos
)
6888 (not (string-match "\\S-" (buffer-substring eol eos
))))
6890 (not (setq children-skipped
6891 org-cycle-skip-children-state-if-no-children
))))
6892 ;; Entire subtree is hidden in one line: children view
6893 (unless (org-before-first-heading-p)
6894 (run-hook-with-args 'org-pre-cycle-hook
'children
))
6896 (org-list-set-item-visibility (point-at-bol) struct
'children
)
6898 (org-with-limited-levels (show-children))
6899 ;; FIXME: This slows down the func way too much.
6900 ;; How keep drawers hidden in subtree anyway?
6901 ;; (when (memq 'org-cycle-hide-drawers org-cycle-hook)
6902 ;; (org-cycle-hide-drawers 'subtree))
6904 ;; Fold every list in subtree to top-level items.
6905 (when (eq org-cycle-include-plain-lists
'integrate
)
6907 (org-back-to-heading)
6908 (while (org-list-search-forward (org-item-beginning-re) eos t
)
6909 (beginning-of-line 1)
6910 (let* ((struct (org-list-struct))
6911 (prevs (org-list-prevs-alist struct
))
6912 (end (org-list-get-bottom-point struct
)))
6913 (mapc (lambda (e) (org-list-set-item-visibility e struct
'folded
))
6914 (org-list-get-all-items (point) struct prevs
))
6915 (goto-char (if (< end eos
) end eos
)))))))
6916 (org-unlogged-message "CHILDREN")
6919 (outline-next-heading)
6920 (if (outline-invisible-p) (org-flag-heading nil
)))
6921 (setq org-cycle-subtree-status
'children
)
6922 (unless (org-before-first-heading-p)
6923 (run-hook-with-args 'org-cycle-hook
'children
)))
6924 ((or children-skipped
6925 (and (eq last-command this-command
)
6926 (eq org-cycle-subtree-status
'children
)))
6927 ;; We just showed the children, or no children are there,
6928 ;; now show everything.
6929 (unless (org-before-first-heading-p)
6930 (run-hook-with-args 'org-pre-cycle-hook
'subtree
))
6931 (outline-flag-region eoh eos nil
)
6932 (org-unlogged-message
6933 (if children-skipped
"SUBTREE (NO CHILDREN)" "SUBTREE"))
6934 (setq org-cycle-subtree-status
'subtree
)
6935 (unless (org-before-first-heading-p)
6936 (run-hook-with-args 'org-cycle-hook
'subtree
)))
6938 ;; Default action: hide the subtree.
6939 (run-hook-with-args 'org-pre-cycle-hook
'folded
)
6940 (outline-flag-region eoh eos t
)
6941 (org-unlogged-message "FOLDED")
6942 (setq org-cycle-subtree-status
'folded
)
6943 (unless (org-before-first-heading-p)
6944 (run-hook-with-args 'org-cycle-hook
'folded
))))))
6947 (defun org-global-cycle (&optional arg
)
6948 "Cycle the global visibility. For details see `org-cycle'.
6949 With \\[universal-argument] prefix arg, switch to startup visibility.
6950 With a numeric prefix, show all headlines up to that level."
6952 (let ((org-cycle-include-plain-lists
6953 (if (derived-mode-p 'org-mode
) org-cycle-include-plain-lists nil
)))
6957 (hide-sublevels arg
)
6958 (setq org-cycle-global-status
'contents
))
6960 (org-set-startup-visibility)
6961 (org-unlogged-message "Startup visibility, plus VISIBILITY properties."))
6963 (org-cycle '(4))))))
6965 (defun org-set-startup-visibility ()
6966 "Set the visibility required by startup options and properties."
6968 ((eq org-startup-folded t
)
6970 ((eq org-startup-folded
'content
)
6972 ((or (eq org-startup-folded
'showeverything
)
6973 (eq org-startup-folded nil
))
6975 (unless (eq org-startup-folded
'showeverything
)
6976 (if org-hide-block-startup
(org-hide-block-all))
6977 (org-set-visibility-according-to-property 'no-cleanup
)
6978 (org-cycle-hide-archived-subtrees 'all
)
6979 (org-cycle-hide-drawers 'all
)
6980 (org-cycle-show-empty-lines t
)))
6982 (defun org-set-visibility-according-to-property (&optional no-cleanup
)
6983 "Switch subtree visibilities according to :VISIBILITY: property."
6985 (let (org-show-entry-below state
)
6987 (goto-char (point-min))
6988 (while (re-search-forward
6989 "^[ \t]*:VISIBILITY:[ \t]+\\([a-z]+\\)"
6991 (setq state
(match-string 1))
6993 (org-back-to-heading t
)
6997 ((equal state
'("fold" "folded"))
6999 ((equal state
"children")
7000 (org-show-hidden-entry)
7002 ((equal state
"content")
7005 (org-narrow-to-subtree)
7007 ((member state
'("all" "showall"))
7010 (org-cycle-hide-archived-subtrees 'all
)
7011 (org-cycle-hide-drawers 'all
)
7012 (org-cycle-show-empty-lines 'all
)))))
7014 ;; This function uses outline-regexp instead of the more fundamental
7015 ;; org-outline-regexp so that org-cycle-global works outside of Org
7016 ;; buffers, where outline-regexp is needed.
7017 (defun org-overview ()
7018 "Switch to overview mode, showing only top-level headlines.
7019 This shows all headlines with a level equal or greater than the level
7020 of the first headline in the buffer. This is important, because if the
7021 first headline is not level one, then (hide-sublevels 1) gives confusing
7027 (goto-char (point-min))
7028 (if (re-search-forward (concat "^" outline-regexp
) nil t
)
7030 (goto-char (match-beginning 0))
7031 (funcall outline-level
))))))
7032 (and level
(hide-sublevels level
)))))
7034 (defun org-content (&optional arg
)
7035 "Show all headlines in the buffer, like a table of contents.
7036 With numerical argument N, show content up to level N."
7040 ;; Visit all headings and show their offspring
7041 (and (integerp arg
) (org-overview))
7042 (goto-char (point-max))
7044 (while (and (progn (condition-case nil
7045 (outline-previous-visible-heading 1)
7046 (error (goto-char (point-min))))
7048 (looking-at org-outline-regexp
))
7050 (show-children (1- arg
))
7052 (if (bobp) (throw 'exit nil
))))))
7054 (defun org-optimize-window-after-visibility-change (state)
7055 "Adjust the window after a change in outline visibility.
7056 This function is the default value of the hook `org-cycle-hook'."
7057 (when (get-buffer-window (current-buffer))
7059 ((eq state
'content
) nil
)
7060 ((eq state
'all
) nil
)
7061 ((eq state
'folded
) nil
)
7062 ((eq state
'children
) (or (org-subtree-end-visible-p) (recenter 1)))
7063 ((eq state
'subtree
) (or (org-subtree-end-visible-p) (recenter 1))))))
7065 (defun org-remove-empty-overlays-at (pos)
7066 "Remove outline overlays that do not contain non-white stuff."
7069 (and (eq 'outline
(overlay-get o
'invisible
))
7070 (not (string-match "\\S-" (buffer-substring (overlay-start o
)
7072 (delete-overlay o
)))
7075 (defun org-clean-visibility-after-subtree-move ()
7076 "Fix visibility issues after moving a subtree."
7077 ;; First, find a reasonable region to look at:
7078 ;; Start two siblings above, end three below
7079 (let* ((beg (save-excursion
7080 (and (org-get-last-sibling)
7081 (org-get-last-sibling))
7083 (end (save-excursion
7084 (and (org-get-next-sibling)
7085 (org-get-next-sibling)
7086 (org-get-next-sibling))
7087 (if (org-at-heading-p)
7090 (level (looking-at "\\*+"))
7091 (re (if level
(concat "^" (regexp-quote (match-string 0)) " "))))
7094 (narrow-to-region beg end
)
7096 ;; Properly fold already folded siblings
7097 (goto-char (point-min))
7098 (while (re-search-forward re nil t
)
7099 (if (and (not (outline-invisible-p))
7101 (goto-char (point-at-eol)) (outline-invisible-p)))
7103 (org-cycle-show-empty-lines 'overview
)
7104 (org-cycle-hide-drawers 'overview
)))))
7106 (defun org-cycle-show-empty-lines (state)
7107 "Show empty lines above all visible headlines.
7108 The region to be covered depends on STATE when called through
7109 `org-cycle-hook'. Lisp program can use t for STATE to get the
7110 entire buffer covered. Note that an empty line is only shown if there
7111 are at least `org-cycle-separator-lines' empty lines before the headline."
7112 (when (not (= org-cycle-separator-lines
0))
7114 (let* ((n (abs org-cycle-separator-lines
))
7116 ((= n
1) "\\(\n[ \t]*\n\\*+\\) ")
7117 ((= n
2) "^[ \t]*\\(\n[ \t]*\n\\*+\\) ")
7118 (t (let ((ns (number-to-string (- n
2))))
7119 (concat "^\\(?:[ \t]*\n\\)\\{" ns
"," ns
"\\}"
7120 "[ \t]*\\(\n[ \t]*\n\\*+\\) ")))))
7123 ((memq state
'(overview contents t
))
7124 (setq beg
(point-min) end
(point-max)))
7125 ((memq state
'(children folded
))
7126 (setq beg
(point) end
(progn (org-end-of-subtree t t
)
7127 (beginning-of-line 2)
7131 (while (re-search-forward re end t
)
7132 (unless (get-char-property (match-end 1) 'invisible
)
7133 (setq e
(match-end 1))
7134 (if (< org-cycle-separator-lines
0)
7135 (setq b
(save-excursion
7136 (goto-char (match-beginning 0))
7137 (org-back-over-empty-lines)
7139 (goto-char (max (point-min) (1- (point))))
7143 (setq b
(match-beginning 1)))
7144 (outline-flag-region b e nil
)))))))
7145 ;; Never hide empty lines at the end of the file.
7147 (goto-char (point-max))
7148 (outline-previous-heading)
7149 (outline-end-of-heading)
7150 (if (and (looking-at "[ \t\n]+")
7151 (= (match-end 0) (point-max)))
7152 (outline-flag-region (point) (match-end 0) nil
))))
7154 (defun org-show-empty-lines-in-parent ()
7155 "Move to the parent and re-show empty lines before visible headlines."
7157 (let ((context (if (org-up-heading-safe) 'children
'overview
)))
7158 (org-cycle-show-empty-lines context
))))
7160 (defun org-files-list ()
7161 "Return `org-agenda-files' list, plus all open org-mode files.
7162 This is useful for operations that need to scan all of a user's
7163 open and agenda-wise Org files."
7164 (let ((files (mapcar 'expand-file-name
(org-agenda-files))))
7165 (dolist (buf (buffer-list))
7166 (with-current-buffer buf
7167 (if (and (derived-mode-p 'org-mode
) (buffer-file-name))
7168 (let ((file (expand-file-name (buffer-file-name))))
7169 (unless (member file files
)
7170 (push file files
))))))
7173 (defsubst org-entry-beginning-position
()
7174 "Return the beginning position of the current entry."
7175 (save-excursion (outline-back-to-heading t
) (point)))
7177 (defsubst org-entry-end-position
()
7178 "Return the end position of the current entry."
7179 (save-excursion (outline-next-heading) (point)))
7181 (defun org-cycle-hide-drawers (state &optional exceptions
)
7182 "Re-hide all drawers after a visibility state change.
7183 When non-nil, optional argument EXCEPTIONS is a list of strings
7184 specifying which drawers should not be hidden."
7185 (when (and (derived-mode-p 'org-mode
)
7186 (not (memq state
'(overview folded contents
))))
7188 (let* ((globalp (memq state
'(contents all
)))
7189 (beg (if globalp
(point-min) (point)))
7190 (end (if globalp
(point-max)
7191 (if (eq state
'children
)
7192 (save-excursion (outline-next-heading) (point))
7193 (org-end-of-subtree t
)))))
7195 (while (re-search-forward org-drawer-regexp
(max end
(point)) t
)
7196 (unless (member-ignore-case (match-string 1) exceptions
)
7197 (let ((drawer (org-element-at-point)))
7198 (when (memq (org-element-type drawer
) '(drawer property-drawer
))
7199 (org-flag-drawer t drawer
)
7200 ;; Make sure to skip drawer entirely or we might flag
7201 ;; it another time when matching its ending line with
7202 ;; `org-drawer-regexp'.
7203 (goto-char (org-element-property :end drawer
))))))))))
7205 (defun org-cycle-hide-inline-tasks (state)
7206 "Re-hide inline tasks when switching to 'contents or 'children
7210 (when (org-bound-and-true-p org-inlinetask-min-level
)
7211 (hide-sublevels (1- org-inlinetask-min-level
))))
7213 (when (featurep 'org-inlinetask
)
7215 (while (and (outline-next-heading)
7216 (org-inlinetask-at-task-p))
7217 (org-inlinetask-toggle-visibility)
7218 (org-inlinetask-goto-end)))))))
7220 (defun org-flag-drawer (flag &optional element
)
7221 "When FLAG is non-nil, hide the drawer we are at.
7222 Otherwise make it visible. When optional argument ELEMENT is
7223 a parsed drawer, as returned by `org-element-at-point', hide or
7224 show that drawer instead."
7225 (when (save-excursion
7227 (org-looking-at-p org-drawer-regexp
))
7228 (let ((drawer (or element
(org-element-at-point))))
7229 (when (memq (org-element-type drawer
) '(drawer property-drawer
))
7230 (let ((post (org-element-property :post-affiliated drawer
)))
7232 (outline-flag-region
7233 (progn (goto-char post
) (line-end-position))
7234 (progn (goto-char (org-element-property :end drawer
))
7235 (skip-chars-backward " \r\t\n")
7236 (line-end-position))
7238 ;; When the drawer is hidden away, make sure point lies in
7239 ;; a visible part of the buffer.
7240 (when (and flag
(> (line-beginning-position) post
))
7241 (goto-char post
)))))))
7243 (defun org-subtree-end-visible-p ()
7244 "Is the end of the current subtree visible?"
7245 (pos-visible-in-window-p
7246 (save-excursion (org-end-of-subtree t
) (point))))
7248 (defun org-first-headline-recenter (&optional N
)
7249 "Move cursor to the first headline and recenter the headline.
7250 Optional argument N means put the headline into the Nth line of the window."
7251 (goto-char (point-min))
7252 (when (re-search-forward (concat "^\\(" org-outline-regexp
"\\)") nil t
)
7254 (recenter (prefix-numeric-value N
))))
7256 ;;; Saving and restoring visibility
7258 (defun org-outline-overlay-data (&optional use-markers
)
7259 "Return a list of the locations of all outline overlays.
7260 These are overlays with the `invisible' property value `outline'.
7261 The return value is a list of cons cells, with start and stop
7262 positions for each overlay.
7263 If USE-MARKERS is set, return the positions as markers."
7270 (when (eq (overlay-get o
'invisible
) 'outline
)
7271 (setq beg
(overlay-start o
)
7272 end
(overlay-end o
))
7273 (and beg end
(> end beg
)
7275 (cons (copy-marker beg
)
7276 (copy-marker end t
))
7278 (overlays-in (point-min) (point-max))))))))
7280 (defun org-set-outline-overlay-data (data)
7281 "Create visibility overlays for all positions in DATA.
7282 DATA should have been made by `org-outline-overlay-data'."
7289 (outline-flag-region (car c
) (cdr c
) t
))
7292 ;;; Folding of blocks
7294 (defvar org-hide-block-overlays nil
7295 "Overlays hiding blocks.")
7296 (make-variable-buffer-local 'org-hide-block-overlays
)
7298 (defun org-block-map (function &optional start end
)
7299 "Call FUNCTION at the head of all source blocks in the current buffer.
7300 Optional arguments START and END can be used to limit the range."
7301 (let ((start (or start
(point-min)))
7302 (end (or end
(point-max))))
7305 (while (and (< (point) end
) (re-search-forward org-block-regexp end t
))
7308 (goto-char (match-beginning 0))
7309 (funcall function
)))))))
7311 (defun org-hide-block-toggle-all ()
7312 "Toggle the visibility of all blocks in the current buffer."
7313 (org-block-map 'org-hide-block-toggle
))
7315 (defun org-hide-block-all ()
7316 "Fold all blocks in the current buffer."
7318 (org-show-block-all)
7319 (org-block-map 'org-hide-block-toggle-maybe
))
7321 (defun org-show-block-all ()
7322 "Unfold all blocks in the current buffer."
7324 (mapc 'delete-overlay org-hide-block-overlays
)
7325 (setq org-hide-block-overlays nil
))
7327 (defun org-hide-block-toggle-maybe ()
7328 "Toggle visibility of block at point."
7330 (let ((case-fold-search t
))
7332 (beginning-of-line 1)
7333 (looking-at org-block-regexp
))
7334 (progn (org-hide-block-toggle)
7335 t
) ;; to signal that we took action
7336 nil
))) ;; to signal that we did not
7338 (defun org-hide-block-toggle (&optional force
)
7339 "Toggle the visibility of the current block."
7343 (if (re-search-forward org-block-regexp nil t
)
7344 (let ((start (- (match-beginning 4) 1)) ;; beginning of body
7345 (end (match-end 0)) ;; end of entire body
7347 (if (memq t
(mapcar (lambda (overlay)
7348 (eq (overlay-get overlay
'invisible
)
7350 (overlays-at start
)))
7351 (if (or (not force
) (eq force
'off
))
7353 (when (member ov org-hide-block-overlays
)
7354 (setq org-hide-block-overlays
7355 (delq ov org-hide-block-overlays
)))
7356 (when (eq (overlay-get ov
'invisible
)
7358 (delete-overlay ov
)))
7359 (overlays-at start
)))
7360 (setq ov
(make-overlay start end
))
7361 (overlay-put ov
'invisible
'org-hide-block
)
7362 ;; make the block accessible to isearch
7364 ov
'isearch-open-invisible
7366 (when (member ov org-hide-block-overlays
)
7367 (setq org-hide-block-overlays
7368 (delq ov org-hide-block-overlays
)))
7369 (when (eq (overlay-get ov
'invisible
)
7371 (delete-overlay ov
))))
7372 (push ov org-hide-block-overlays
)))
7373 (user-error "Not looking at a source block"))))
7375 ;; org-tab-after-check-for-cycling-hook
7376 (add-hook 'org-tab-first-hook
'org-hide-block-toggle-maybe
)
7377 ;; Remove overlays when changing major mode
7378 (add-hook 'org-mode-hook
7379 (lambda () (org-add-hook 'change-major-mode-hook
7380 'org-show-block-all
'append
'local
)))
7384 (defvar org-goto-window-configuration nil
)
7385 (defvar org-goto-marker nil
)
7386 (defvar org-goto-map
)
7387 (defun org-goto-map ()
7388 "Set the keymap `org-goto'."
7390 (let ((map (make-sparse-keymap)))
7391 (let ((cmds '(isearch-forward isearch-backward kill-ring-save set-mark-command
7392 mouse-drag-region universal-argument org-occur
))
7394 (while (setq cmd
(pop cmds
))
7395 (substitute-key-definition cmd cmd map global-map
)))
7396 (suppress-keymap map
)
7397 (org-defkey map
"\C-m" 'org-goto-ret
)
7398 (org-defkey map
[(return)] 'org-goto-ret
)
7399 (org-defkey map
[(left)] 'org-goto-left
)
7400 (org-defkey map
[(right)] 'org-goto-right
)
7401 (org-defkey map
[(control ?g
)] 'org-goto-quit
)
7402 (org-defkey map
"\C-i" 'org-cycle
)
7403 (org-defkey map
[(tab)] 'org-cycle
)
7404 (org-defkey map
[(down)] 'outline-next-visible-heading
)
7405 (org-defkey map
[(up)] 'outline-previous-visible-heading
)
7406 (if org-goto-auto-isearch
7407 (if (fboundp 'define-key-after
)
7408 (define-key-after map
[t] 'org-goto-local-auto-isearch)
7410 (org-defkey map "q" 'org-goto-quit)
7411 (org-defkey map "n" 'outline-next-visible-heading)
7412 (org-defkey map "p" 'outline-previous-visible-heading)
7413 (org-defkey map "f" 'outline-forward-same-level)
7414 (org-defkey map "b" 'outline-backward-same-level)
7415 (org-defkey map "u" 'outline-up-heading))
7416 (org-defkey map "/" 'org-occur)
7417 (org-defkey map "\C-c\C-n" 'outline-next-visible-heading)
7418 (org-defkey map "\C-c\C-p" 'outline-previous-visible-heading)
7419 (org-defkey map "\C-c\C-f" 'outline-forward-same-level)
7420 (org-defkey map "\C-c\C-b" 'outline-backward-same-level)
7421 (org-defkey map "\C-c\C-u" 'outline-up-heading)
7424 (defconst org-goto-help
7425 "Browse buffer copy, to find location or copy text.%s
7426 RET=jump to location C-g=quit and return to previous location
7427 \[Up]/[Down]=next/prev headline TAB=cycle visibility [/] org-occur")
7429 (defvar org-goto-start-pos) ; dynamically scoped parameter
7431 (defun org-goto (&optional alternative-interface)
7432 "Look up a different location in the current file, keeping current visibility.
7434 When you want look-up or go to a different location in a
7435 document, the fastest way is often to fold the entire buffer and
7436 then dive into the tree. This method has the disadvantage, that
7437 the previous location will be folded, which may not be what you
7440 This command works around this by showing a copy of the current
7441 buffer in an indirect buffer, in overview mode. You can dive
7442 into the tree in that copy, use org-occur and incremental search
7443 to find a location. When pressing RET or `Q', the command
7444 returns to the original buffer in which the visibility is still
7445 unchanged. After RET it will also jump to the location selected
7446 in the indirect buffer and expose the headline hierarchy above.
7448 With a prefix argument, use the alternative interface: e.g. if
7449 `org-goto-interface' is 'outline use 'outline-path-completion."
7452 (let* ((org-refile-targets `((nil . (:maxlevel . ,org-goto-max-level))))
7453 (org-refile-use-outline-path t)
7454 (org-refile-target-verify-function nil)
7456 (if (not alternative-interface)
7458 (if (eq org-goto-interface 'outline)
7459 'outline-path-completion
7461 (org-goto-start-pos (point))
7463 (if (eq interface 'outline)
7464 (car (org-get-location (current-buffer) org-goto-help))
7465 (let ((pa (org-refile-get-location "Goto" nil nil t)))
7466 (org-refile-check-position pa)
7470 (org-mark-ring-push org-goto-start-pos)
7471 (goto-char selected-point)
7472 (if (or (outline-invisible-p) (org-invisible-p2))
7473 (org-show-context 'org-goto)))
7476 (defvar org-goto-selected-point nil) ; dynamically scoped parameter
7477 (defvar org-goto-exit-command nil) ; dynamically scoped parameter
7478 (defvar org-goto-local-auto-isearch-map) ; defined below
7480 (defun org-get-location (buf help)
7481 "Let the user select a location in the Org-mode buffer BUF.
7482 This function uses a recursive edit. It returns the selected position
7485 (let ((isearch-mode-map org-goto-local-auto-isearch-map)
7486 (isearch-hide-immediately nil)
7487 (isearch-search-fun-function
7488 (lambda () 'org-goto-local-search-headings))
7489 (org-goto-selected-point org-goto-exit-command))
7491 (save-window-excursion
7492 (delete-other-windows)
7493 (and (get-buffer "*org-goto*") (kill-buffer "*org-goto*"))
7494 (org-pop-to-buffer-same-window
7496 (make-indirect-buffer (current-buffer) "*org-goto*")
7497 (error (make-indirect-buffer (current-buffer) "*org-goto*"))))
7498 (with-output-to-temp-buffer "*Org Help*"
7499 (princ (format help (if org-goto-auto-isearch
7500 " Just type for auto-isearch."
7501 " n/p/f/b/u to navigate, q to quit."))))
7502 (org-fit-window-to-buffer (get-buffer-window "*Org Help*"))
7503 (setq buffer-read-only nil)
7504 (let ((org-startup-truncated t)
7505 (org-startup-folded nil)
7506 (org-startup-align-all-tables nil))
7509 (setq buffer-read-only t)
7510 (if (and (boundp 'org-goto-start-pos)
7511 (integer-or-marker-p org-goto-start-pos))
7512 (let ((org-show-hierarchy-above t)
7513 (org-show-siblings t)
7514 (org-show-following-heading t))
7515 (goto-char org-goto-start-pos)
7516 (and (outline-invisible-p) (org-show-context)))
7517 (goto-char (point-min)))
7518 (let (org-special-ctrl-a/e) (org-beginning-of-line))
7519 (message "Select location and press RET")
7520 (use-local-map org-goto-map)
7522 (kill-buffer "*org-goto*")
7523 (cons org-goto-selected-point org-goto-exit-command))))
7525 (defvar org-goto-local-auto-isearch-map (make-sparse-keymap))
7526 (set-keymap-parent org-goto-local-auto-isearch-map isearch-mode-map)
7527 (define-key org-goto-local-auto-isearch-map "\C-i" 'isearch-other-control-char)
7528 (define-key org-goto-local-auto-isearch-map "\C-m" 'isearch-other-control-char)
7530 (defun org-goto-local-search-headings (string bound noerror)
7531 "Search and make sure that any matches are in headlines."
7533 (while (if isearch-forward
7534 (search-forward string bound noerror)
7535 (search-backward string bound noerror))
7536 (when (let ((context (mapcar 'car (save-match-data (org-context)))))
7537 (and (member :headline context)
7538 (not (member :tags context))))
7539 (throw 'return (point))))))
7541 (defun org-goto-local-auto-isearch ()
7544 (goto-char (point-min))
7545 (let ((keys (this-command-keys)))
7546 (when (eq (lookup-key isearch-mode-map keys) 'isearch-printing-char)
7548 (isearch-process-search-char (string-to-char keys)))))
7550 (defun org-goto-ret (&optional arg)
7551 "Finish `org-goto' by going to the new location."
7553 (setq org-goto-selected-point (point)
7554 org-goto-exit-command 'return)
7557 (defun org-goto-left ()
7558 "Finish `org-goto' by going to the new location."
7560 (if (org-at-heading-p)
7562 (beginning-of-line 1)
7563 (setq org-goto-selected-point (point)
7564 org-goto-exit-command 'left)
7566 (user-error "Not on a heading")))
7568 (defun org-goto-right ()
7569 "Finish `org-goto' by going to the new location."
7571 (if (org-at-heading-p)
7573 (setq org-goto-selected-point (point)
7574 org-goto-exit-command 'right)
7576 (user-error "Not on a heading")))
7578 (defun org-goto-quit ()
7579 "Finish `org-goto' without cursor motion."
7581 (setq org-goto-selected-point nil)
7582 (setq org-goto-exit-command 'quit)
7585 ;;; Indirect buffer display of subtrees
7587 (defvar org-indirect-dedicated-frame nil
7588 "This is the frame being used for indirect tree display.")
7589 (defvar org-last-indirect-buffer nil)
7591 (defun org-tree-to-indirect-buffer (&optional arg)
7592 "Create indirect buffer and narrow it to current subtree.
7593 With a numerical prefix ARG, go up to this level and then take that tree.
7594 If ARG is negative, go up that many levels.
7596 If `org-indirect-buffer-display' is not `new-frame', the command removes the
7597 indirect buffer previously made with this command, to avoid proliferation of
7598 indirect buffers. However, when you call the command with a \
7599 \\[universal-argument] prefix, or
7600 when `org-indirect-buffer-display' is `new-frame', the last buffer
7601 is kept so that you can work with several indirect buffers at the same time.
7602 If `org-indirect-buffer-display' is `dedicated-frame', the \
7603 \\[universal-argument] prefix also
7604 requests that a new frame be made for the new buffer, so that the dedicated
7605 frame is not changed."
7607 (let ((cbuf (current-buffer))
7608 (cwin (selected-window))
7610 beg end level heading ibuf)
7612 (org-back-to-heading t)
7614 (setq level (org-outline-level))
7615 (if (< arg 0) (setq arg (+ level arg)))
7616 (while (> (setq level (org-outline-level)) arg)
7617 (org-up-heading-safe)))
7619 heading (org-get-heading))
7620 (org-end-of-subtree t t)
7621 (if (org-at-heading-p) (backward-char 1))
7623 (if (and (buffer-live-p org-last-indirect-buffer)
7624 (not (eq org-indirect-buffer-display 'new-frame))
7626 (kill-buffer org-last-indirect-buffer))
7627 (setq ibuf (org-get-indirect-buffer cbuf heading)
7628 org-last-indirect-buffer ibuf)
7630 ((or (eq org-indirect-buffer-display 'new-frame)
7631 (and arg (eq org-indirect-buffer-display 'dedicated-frame)))
7632 (select-frame (make-frame))
7633 (delete-other-windows)
7634 (org-pop-to-buffer-same-window ibuf)
7635 (org-set-frame-title heading))
7636 ((eq org-indirect-buffer-display 'dedicated-frame)
7638 (select-frame (or (and org-indirect-dedicated-frame
7639 (frame-live-p org-indirect-dedicated-frame)
7640 org-indirect-dedicated-frame)
7641 (setq org-indirect-dedicated-frame (make-frame)))))
7642 (delete-other-windows)
7643 (org-pop-to-buffer-same-window ibuf)
7644 (org-set-frame-title (concat "Indirect: " heading)))
7645 ((eq org-indirect-buffer-display 'current-window)
7646 (org-pop-to-buffer-same-window ibuf))
7647 ((eq org-indirect-buffer-display 'other-window)
7648 (pop-to-buffer ibuf))
7649 (t (error "Invalid value")))
7650 (if (featurep 'xemacs)
7651 (save-excursion (org-mode) (turn-on-font-lock)))
7652 (narrow-to-region beg end)
7655 (run-hook-with-args 'org-cycle-hook 'all)
7656 (and (window-live-p cwin) (select-window cwin))))
7658 (defun org-get-indirect-buffer (&optional buffer heading)
7659 (setq buffer (or buffer (current-buffer)))
7660 (let ((n 1) (base (buffer-name buffer)) bname)
7661 (while (buffer-live-p
7665 (if heading (concat heading "-" (number-to-string n))
7666 (number-to-string n))))))
7669 (make-indirect-buffer buffer bname 'clone)
7670 (error (make-indirect-buffer buffer bname)))))
7672 (defun org-set-frame-title (title)
7673 "Set the title of the current frame to the string TITLE."
7674 ;; FIXME: how to name a single frame in XEmacs???
7675 (unless (featurep 'xemacs)
7676 (modify-frame-parameters (selected-frame) (list (cons 'name title)))))
7678 ;;;; Structure editing
7680 ;;; Inserting headlines
7682 (defun org-previous-line-empty-p (&optional next)
7683 "Is the previous line a blank line?
7684 When NEXT is non-nil, check the next line instead."
7687 (or (beginning-of-line (if next 2 0)) t)
7689 (looking-at "[ \t]*$")))))
7691 (defun org-insert-heading (&optional arg invisible-ok)
7692 "Insert a new heading or item with same depth at point.
7694 If point is in a plain list and ARG is nil, add a new list item.
7696 With one universal prefix argument, insert a heading even when
7697 the point is within a list.
7699 With two universal prefix arguments, insert the heading at the
7700 end of the grandparent subtree. For example, if point is within
7701 a 2nd-level heading, then it will insert a 2nd-level heading at
7702 the end of the 1st-level parent heading.
7704 If point is at the beginning of a headline, insert a sibling
7705 before the current headline. If point is not at the beginning,
7706 split the line and create a new headline with the text in the
7707 current line after point \(see `org-M-RET-may-split-line' on how
7708 to modify this behavior).
7710 If point is at the beginning of a normal line, turn this line
7713 When INVISIBLE-OK is set, stop at invisible headlines when going
7714 back. This is important for non-interactive uses of the
7717 (if (org-called-interactively-p 'any) (org-reveal))
7718 (let ((itemp (org-in-item-p))
7719 (may-split (org-get-alist-option org-M-RET-may-split-line 'headline))
7720 (respect-content (or org-insert-heading-respect-content
7722 (initial-content "")
7723 (adjust-empty-lines t))
7727 ((or (= (buffer-size) 0)
7728 (and (not (save-excursion
7729 (and (ignore-errors (org-back-to-heading invisible-ok))
7730 (org-at-heading-p))))
7731 (or arg (not itemp))))
7732 ;; At beginning of buffer or so high up that only a heading
7734 (when (and (org-before-first-heading-p) (not (bolp)))
7735 (re-search-forward org-outline-regexp-bol)
7736 (beginning-of-line 0))
7738 (if (or (bobp) (org-previous-line-empty-p)) "" "\n")
7739 (if (org-in-src-block-p) ",* " "* "))
7740 (run-hooks 'org-insert-heading-hook))
7742 ((and itemp (not (member arg '((4) (16)))))
7747 ;; Maybe move at the end of the subtree
7748 (when (equal arg '(16))
7749 (org-up-heading-safe)
7750 (org-end-of-subtree t))
7755 (on-heading (org-at-heading-p))
7756 (empty-line-p (if on-heading
7757 (org-previous-line-empty-p)
7758 ;; We will decide later
7760 ;; Get a level string to fall back on
7762 (if (org-before-first-heading-p) "*"
7764 (org-back-to-heading t)
7765 (if (org-previous-line-empty-p) (setq empty-line-p t))
7766 (looking-at org-outline-regexp)
7767 (make-string (1- (length (match-string 0))) ?*))))
7772 (org-back-to-heading invisible-ok)
7773 (when (and (not on-heading)
7774 (featurep 'org-inlinetask)
7775 (integerp org-inlinetask-min-level)
7776 (>= (length (match-string 0))
7777 org-inlinetask-min-level))
7778 ;; Find a heading level before the inline task
7779 (while (and (setq level (org-up-heading-safe))
7780 (>= level org-inlinetask-min-level)))
7781 (if (org-at-heading-p)
7782 (org-back-to-heading invisible-ok)
7783 (error "This should not happen")))
7784 (unless (and (save-excursion
7786 (org-backward-heading-same-level
7788 (= (point) (match-beginning 0)))
7789 (not (org-previous-line-empty-p t)))
7790 (setq empty-line-p (or empty-line-p
7791 (org-previous-line-empty-p))))
7793 (error (or fix-level "* ")))))
7794 (blank-a (cdr (assq 'heading org-blank-before-new-entry)))
7795 (blank (if (eq blank-a 'auto) empty-line-p blank-a))
7796 pos hide-previous previous-pos)
7798 ;; If we insert after content, move there and clean up whitespace
7799 (when (and respect-content
7800 (not (org-looking-at-p org-outline-regexp-bol))
7802 (if (not (org-before-first-heading-p))
7803 (org-end-of-subtree nil t)
7804 (re-search-forward org-outline-regexp-bol)
7805 (beginning-of-line 0))
7806 (skip-chars-backward " \r\n")
7807 (and (not (looking-back "^\\*+"))
7808 (looking-at "[ \t]+") (replace-match ""))
7809 (unless (eobp) (forward-char 1))
7810 (when (looking-at "^\\*")
7811 (unless (bobp) (backward-char 1))
7814 ;; If we are splitting, grab the text that should be moved to the new headline
7816 (if (org-on-heading-p)
7817 ;; This is a heading, we split intelligently (keeping tags)
7818 (let ((pos (point)))
7819 (goto-char (point-at-bol))
7820 (unless (looking-at org-complex-heading-regexp)
7821 (error "This should not happen"))
7822 (when (and (match-beginning 4)
7823 (> pos (match-beginning 4))
7824 (< pos (match-end 4)))
7825 (setq initial-content (buffer-substring pos (match-end 4)))
7827 (delete-region (point) (match-end 4))
7828 (if (looking-at "[ \t]*$")
7830 (insert (make-string (length initial-content) ?\ )))
7831 (setq initial-content (org-trim initial-content)))
7834 (setq initial-content
7835 (org-trim (buffer-substring (point) (point-at-eol))))
7836 (delete-region (point) (point-at-eol))))
7838 ;; If we are at the beginning of the line, insert before it. Else after
7840 ((and (bolp) (looking-at "[ \t]*$")))
7841 ((and (bolp) (not (looking-at "[ \t]*$")))
7844 (goto-char (point-at-eol))
7847 ;; Insert the new heading
7850 (insert initial-content)
7851 (when adjust-empty-lines
7853 (and blank (not (org-previous-line-empty-p))))
7854 (org-N-empty-lines-before-current (if blank 1 0))))
7855 (run-hooks 'org-insert-heading-hook)))))))
7857 (defun org-N-empty-lines-before-current (N)
7858 "Make the number of empty lines before current exactly N.
7859 So this will delete or add empty lines."
7861 (goto-char (point-at-bol))
7862 (if (looking-back "\\s-+" nil 'greedy)
7864 (or (bobp) (insert "\n"))
7869 (defun org-get-heading (&optional no-tags no-todo)
7870 "Return the heading of the current entry, without the stars.
7871 When NO-TAGS is non-nil, don't include tags.
7872 When NO-TODO is non-nil, don't include TODO keywords."
7874 (org-back-to-heading t)
7876 ((and no-tags no-todo)
7877 (looking-at org-complex-heading-regexp)
7880 (looking-at (concat org-outline-regexp
7882 "\\(?:[ \t]+:[[:alnum:]:_@#%]+:\\)?[ \t]*$"))
7885 (looking-at org-todo-line-regexp)
7887 (t (looking-at org-heading-regexp)
7888 (match-string 2)))))
7890 (defvar orgstruct-mode) ; defined below
7892 (defun org-heading-components ()
7893 "Return the components of the current heading.
7894 This is a list with the following elements:
7895 - the level as an integer
7896 - the reduced level, different if `org-odd-levels-only' is set.
7897 - the TODO keyword, or nil
7898 - the priority character, like ?A, or nil if no priority is given
7899 - the headline text itself, or the tags string if no headline text
7900 - the tags string, or nil."
7902 (org-back-to-heading t)
7903 (if (let (case-fold-search)
7907 org-complex-heading-regexp)))
7909 (list (length (match-string 1))
7910 (org-reduced-level (length (match-string 1)))
7915 (list (length (match-string 1))
7916 (org-reduced-level (length (match-string 1)))
7917 (org-match-string-no-properties 2)
7918 (and (match-end 3) (aref (match-string 3) 2))
7919 (org-match-string-no-properties 4)
7920 (org-match-string-no-properties 5))))))
7922 (defun org-get-entry ()
7923 "Get the entry text, after heading, entire subtree."
7925 (org-back-to-heading t)
7926 (buffer-substring (point-at-bol 2) (org-end-of-subtree t))))
7928 (defun org-insert-heading-after-current ()
7929 "Insert a new heading with same level as current, after current subtree."
7931 (org-back-to-heading)
7932 (org-insert-heading)
7933 (org-move-subtree-down)
7936 (defun org-insert-heading-respect-content (&optional arg invisible-ok)
7937 "Insert heading with `org-insert-heading-respect-content' set to t."
7939 (let ((org-insert-heading-respect-content t))
7940 (org-insert-heading '(4) invisible-ok)))
7942 (defun org-insert-todo-heading-respect-content (&optional force-state)
7943 "Insert TODO heading with `org-insert-heading-respect-content' set to t."
7945 (let ((org-insert-heading-respect-content t))
7946 (org-insert-todo-heading force-state '(4))))
7948 (defun org-insert-todo-heading (arg &optional force-heading)
7949 "Insert a new heading with the same level and TODO state as current heading.
7950 If the heading has no TODO state, or if the state is DONE, use the first
7951 state (TODO by default). Also with one prefix arg, force first state. With
7952 two prefix args, force inserting at the end of the parent subtree."
7954 (when (or force-heading (not (org-insert-item 'checkbox)))
7955 (org-insert-heading (or (and (equal arg '(16)) '(16))
7958 (org-back-to-heading)
7959 (outline-previous-heading)
7960 (looking-at org-todo-line-regexp))
7963 (if (or (equal arg '(4))
7964 (not (match-beginning 2))
7965 (member (match-string 2) org-done-keywords))
7966 (car org-todo-keywords-1)
7970 (run-hook-with-args-until-success
7971 'org-todo-get-default-hook new-mark-x nil)
7973 (beginning-of-line 1)
7974 (and (looking-at org-outline-regexp) (goto-char (match-end 0))
7975 (if org-treat-insert-todo-heading-as-state-change
7977 (insert new-mark " "))))
7978 (when org-provide-todo-statistics
7979 (org-update-parent-todo-statistics))))
7981 (defun org-insert-subheading (arg)
7982 "Insert a new subheading and demote it.
7983 Works for outline headings and for plain lists alike."
7985 (org-insert-heading arg)
7987 ((org-at-heading-p) (org-do-demote))
7988 ((org-at-item-p) (org-indent-item))))
7990 (defun org-insert-todo-subheading (arg)
7991 "Insert a new subheading with TODO keyword or checkbox and demote it.
7992 Works for outline headings and for plain lists alike."
7994 (org-insert-todo-heading arg)
7996 ((org-at-heading-p) (org-do-demote))
7997 ((org-at-item-p) (org-indent-item))))
7999 ;;; Promotion and Demotion
8001 (defvar org-after-demote-entry-hook nil
8002 "Hook run after an entry has been demoted.
8003 The cursor will be at the beginning of the entry.
8004 When a subtree is being demoted, the hook will be called for each node.")
8006 (defvar org-after-promote-entry-hook nil
8007 "Hook run after an entry has been promoted.
8008 The cursor will be at the beginning of the entry.
8009 When a subtree is being promoted, the hook will be called for each node.")
8011 (defun org-promote-subtree ()
8012 "Promote the entire subtree.
8013 See also `org-promote'."
8016 (org-with-limited-levels (org-map-tree 'org-promote)))
8017 (org-fix-position-after-promote))
8019 (defun org-demote-subtree ()
8020 "Demote the entire subtree. See `org-demote'.
8021 See also `org-promote'."
8024 (org-with-limited-levels (org-map-tree 'org-demote)))
8025 (org-fix-position-after-promote))
8028 (defun org-do-promote ()
8029 "Promote the current heading higher up the tree.
8030 If the region is active in `transient-mark-mode', promote all headings
8034 (if (org-region-active-p)
8035 (org-map-region 'org-promote (region-beginning) (region-end))
8037 (org-fix-position-after-promote))
8039 (defun org-do-demote ()
8040 "Demote the current heading lower down the tree.
8041 If the region is active in `transient-mark-mode', demote all headings
8045 (if (org-region-active-p)
8046 (org-map-region 'org-demote (region-beginning) (region-end))
8048 (org-fix-position-after-promote))
8050 (defun org-fix-position-after-promote ()
8051 "Make sure that after pro/demotion cursor position is right."
8052 (let ((pos (point)))
8053 (when (save-excursion
8054 (beginning-of-line 1)
8055 (looking-at org-todo-line-regexp)
8056 (or (equal pos (match-end 1)) (equal pos (match-end 2))))
8057 (cond ((eobp) (insert " "))
8058 ((eolp) (insert " "))
8059 ((equal (char-after) ?\ ) (forward-char 1))))))
8061 (defun org-current-level ()
8062 "Return the level of the current entry, or nil if before the first headline.
8063 The level is the number of stars at the beginning of the headline."
8065 (org-with-limited-levels
8066 (if (ignore-errors (org-back-to-heading t))
8067 (funcall outline-level)))))
8069 (defun org-get-previous-line-level ()
8070 "Return the outline depth of the last headline before the current line.
8071 Returns 0 for the first headline in the buffer, and nil if before the
8073 (and (org-current-level)
8074 (or (and (/= (line-beginning-position) (point-min))
8075 (save-excursion (beginning-of-line 0) (org-current-level)))
8078 (defun org-reduced-level (l)
8079 "Compute the effective level of a heading.
8080 This takes into account the setting of `org-odd-levels-only'."
8083 (org-odd-levels-only (1+ (floor (/ l 2))))
8086 (defun org-level-increment ()
8087 "Return the number of stars that will be added or removed at a
8088 time to headlines when structure editing, based on the value of
8089 `org-odd-levels-only'."
8090 (if org-odd-levels-only 2 1))
8092 (defun org-get-valid-level (level &optional change)
8093 "Rectify a level change under the influence of `org-odd-levels-only'
8094 LEVEL is a current level, CHANGE is by how much the level should be
8095 modified. Even if CHANGE is nil, LEVEL may be returned modified because
8096 even level numbers will become the next higher odd number."
8097 (if org-odd-levels-only
8098 (cond ((or (not change) (= 0 change)) (1+ (* 2 (/ level 2))))
8099 ((> change 0) (1+ (* 2 (/ (+ level (* 2 change)) 2))))
8100 ((< change 0) (max 1 (1+ (* 2 (/ (+ level (* 2 change)) 2))))))
8101 (max 1 (+ level (or change 0)))))
8103 (if (boundp 'define-obsolete-function-alias)
8104 (if (or (featurep 'xemacs) (< emacs-major-version 23))
8105 (define-obsolete-function-alias 'org-get-legal-level
8106 'org-get-valid-level)
8107 (define-obsolete-function-alias 'org-get-legal-level
8108 'org-get-valid-level "23.1")))
8110 (defun org-promote ()
8111 "Promote the current heading higher up the tree.
8112 If the region is active in `transient-mark-mode', promote all headings
8114 (org-back-to-heading t)
8115 (let* ((level (save-match-data (funcall outline-level)))
8116 (after-change-functions (remove 'flyspell-after-change-function
8117 after-change-functions))
8118 (up-head (concat (make-string (org-get-valid-level level -1) ?*) " "))
8119 (diff (abs (- level (length up-head) -1))))
8120 (cond ((and (= level 1) org-called-with-limited-levels
8121 org-allow-promoting-top-level-subtree)
8122 (replace-match "# " nil t))
8124 (user-error "Cannot promote to level 0. UNDO to recover if necessary"))
8125 (t (replace-match up-head nil t)))
8126 ;; Fixup tag positioning
8128 (and org-auto-align-tags (org-set-tags nil 'ignore-column))
8129 (if org-adapt-indentation (org-fixup-indentation (- diff))))
8130 (run-hooks 'org-after-promote-entry-hook)))
8132 (defun org-demote ()
8133 "Demote the current heading lower down the tree.
8134 If the region is active in `transient-mark-mode', demote all headings
8136 (org-back-to-heading t)
8137 (let* ((level (save-match-data (funcall outline-level)))
8138 (after-change-functions (remove 'flyspell-after-change-function
8139 after-change-functions))
8140 (down-head (concat (make-string (org-get-valid-level level 1) ?*) " "))
8141 (diff (abs (- level (length down-head) -1))))
8142 (replace-match down-head nil t)
8143 ;; Fixup tag positioning
8144 (and org-auto-align-tags (org-set-tags nil 'ignore-column))
8145 (if org-adapt-indentation (org-fixup-indentation diff))
8146 (run-hooks 'org-after-demote-entry-hook)))
8148 (defun org-cycle-level ()
8149 "Cycle the level of an empty headline through possible states.
8150 This goes first to child, then to parent, level, then up the hierarchy.
8151 After top level, it switches back to sibling level."
8153 (let ((org-adapt-indentation nil))
8154 (when (org-point-at-end-of-empty-headline)
8155 (setq this-command 'org-cycle-level) ; Only needed for caching
8156 (let ((cur-level (org-current-level))
8157 (prev-level (org-get-previous-line-level)))
8159 ;; If first headline in file, promote to top-level.
8161 (loop repeat (/ (- cur-level 1) (org-level-increment))
8162 do (org-do-promote)))
8163 ;; If same level as prev, demote one.
8164 ((= prev-level cur-level)
8166 ;; If parent is top-level, promote to top level if not already.
8168 (loop repeat (/ (- cur-level 1) (org-level-increment))
8169 do (org-do-promote)))
8170 ;; If top-level, return to prev-level.
8172 (loop repeat (/ (- prev-level 1) (org-level-increment))
8173 do (org-do-demote)))
8174 ;; If less than prev-level, promote one.
8175 ((< cur-level prev-level)
8177 ;; If deeper than prev-level, promote until higher than
8179 ((> cur-level prev-level)
8180 (loop repeat (+ 1 (/ (- cur-level prev-level) (org-level-increment)))
8181 do (org-do-promote))))
8184 (defun org-map-tree (fun)
8185 "Call FUN for every heading underneath the current one."
8186 (org-back-to-heading)
8187 (let ((level (funcall outline-level)))
8191 (outline-next-heading)
8192 (> (funcall outline-level) level))
8196 (defun org-map-region (fun beg end)
8197 "Call FUN for every heading between BEG and END."
8198 (let ((org-ignore-region t))
8200 (setq end (copy-marker end))
8202 (if (and (re-search-forward org-outline-regexp-bol nil t)
8206 (outline-next-heading)
8211 (defvar org-property-end-re) ; silence byte-compiler
8212 (defun org-fixup-indentation (diff)
8213 "Change the indentation in the current entry by DIFF.
8214 However, if any line in the current entry has no indentation, or if it
8215 would end up with no indentation after the change, nothing at all is done."
8217 (let ((end (save-excursion (outline-next-heading)
8219 (prohibit (if (> diff 0)
8221 (concat "^ \\{0," (int-to-string (- diff)) "\\}\\S-")))
8223 (unless (save-excursion (end-of-line 1)
8224 (re-search-forward prohibit end t))
8225 (while (and (< (point) end)
8226 (re-search-forward "^[ \t]+" end t))
8227 (goto-char (match-end 0))
8228 (setq col (current-column))
8229 (if (< diff 0) (replace-match ""))
8230 (org-indent-to-column (+ diff col))))
8231 (move-marker end nil))))
8233 (defun org-convert-to-odd-levels ()
8234 "Convert an org-mode file with all levels allowed to one with odd levels.
8235 This will leave level 1 alone, convert level 2 to level 3, level 3 to
8238 (when (yes-or-no-p "Are you sure you want to globally change levels to odd? ")
8239 (let ((outline-level 'org-outline-level)
8240 (org-odd-levels-only nil) n)
8242 (goto-char (point-min))
8243 (while (re-search-forward "^\\*\\*+ " nil t)
8244 (setq n (- (length (match-string 0)) 2))
8245 (while (>= (setq n (1- n)) 0)
8247 (end-of-line 1))))))
8249 (defun org-convert-to-oddeven-levels ()
8250 "Convert an org-mode file with only odd levels to one with odd/even levels.
8251 This promotes level 3 to level 2, level 5 to level 3 etc. If the
8252 file contains a section with an even level, conversion would
8253 destroy the structure of the file. An error is signaled in this
8256 (goto-char (point-min))
8257 ;; First check if there are no even levels
8258 (when (re-search-forward "^\\(\\*\\*\\)+ " nil t)
8259 (org-show-context t)
8260 (error "Not all levels are odd in this file. Conversion not possible"))
8261 (when (yes-or-no-p "Are you sure you want to globally change levels to odd-even? ")
8262 (let ((outline-regexp org-outline-regexp)
8263 (outline-level 'org-outline-level)
8264 (org-odd-levels-only nil) n)
8266 (goto-char (point-min))
8267 (while (re-search-forward "^\\*\\*+ " nil t)
8268 (setq n (/ (1- (length (match-string 0))) 2))
8269 (while (>= (setq n (1- n)) 0)
8271 (end-of-line 1))))))
8273 (defun org-tr-level (n)
8274 "Make N odd if required."
8275 (if org-odd-levels-only (1+ (/ n 2)) n))
8277 ;;; Vertical tree motion, cutting and pasting of subtrees
8279 (defun org-move-subtree-up (&optional arg)
8280 "Move the current subtree up past ARG headlines of the same level."
8282 (org-move-subtree-down (- (prefix-numeric-value arg))))
8284 (defun org-move-subtree-down (&optional arg)
8285 "Move the current subtree down past ARG headlines of the same level."
8287 (setq arg (prefix-numeric-value arg))
8288 (let ((movfunc (if (> arg 0) 'org-get-next-sibling
8289 'org-get-last-sibling))
8290 (ins-point (make-marker))
8292 (col (current-column))
8293 beg beg0 end txt folded ne-beg ne-end ne-ins ins-end)
8295 (org-back-to-heading)
8298 (setq ne-beg (org-back-over-empty-lines))
8301 (save-excursion (outline-end-of-heading)
8302 (setq folded (outline-invisible-p)))
8303 (progn (org-end-of-subtree nil t)
8304 (unless (eobp) (backward-char))))
8305 (outline-next-heading)
8306 (setq ne-end (org-back-over-empty-lines))
8309 (when (and (> arg 0) (org-first-sibling-p) (< ne-end ne-beg))
8310 ;; include less whitespace
8313 (forward-line (- ne-beg ne-end))
8314 (setq beg (point))))
8315 ;; Find insertion point, with error handling
8317 (or (and (funcall movfunc) (looking-at org-outline-regexp))
8318 (progn (goto-char beg0)
8319 (user-error "Cannot move past superior level or buffer limit")))
8320 (setq cnt (1- cnt)))
8322 ;; Moving forward - still need to move over subtree
8323 (progn (org-end-of-subtree t t)
8325 (org-back-over-empty-lines)
8326 (or (bolp) (newline)))))
8327 (setq ne-ins (org-back-over-empty-lines))
8328 (move-marker ins-point (point))
8329 (setq txt (buffer-substring beg end))
8330 (org-save-markers-in-region beg end)
8331 (delete-region beg end)
8332 (org-remove-empty-overlays-at beg)
8333 (or (= beg (point-min)) (outline-flag-region (1- beg) beg nil))
8334 (or (bobp) (outline-flag-region (1- (point)) (point) nil))
8335 (and (not (bolp)) (looking-at "\n") (forward-char 1))
8336 (let ((bbb (point)))
8337 (insert-before-markers txt)
8338 (org-reinstall-markers-in-region bbb)
8339 (move-marker ins-point bbb))
8340 (or (bolp) (insert "\n"))
8341 (setq ins-end (point))
8342 (goto-char ins-point)
8343 (org-skip-whitespace)
8344 (when (and (< arg 0)
8345 (org-first-sibling-p)
8347 ;; Move whitespace back to beginning
8350 (let ((kill-whole-line t))
8351 (kill-line (- ne-ins ne-beg)) (point)))
8352 (insert (make-string (- ne-ins ne-beg) ?\n)))
8353 (move-marker ins-point nil)
8358 (org-cycle-hide-drawers 'children))
8359 (org-clean-visibility-after-subtree-move)
8360 ;; move back to the initial column we were at
8361 (move-to-column col)))
8363 (defvar org-subtree-clip ""
8364 "Clipboard for cut and paste of subtrees.
8365 This is actually only a copy of the kill, because we use the normal kill
8366 ring. We need it to check if the kill was created by `org-copy-subtree'.")
8368 (defvar org-subtree-clip-folded nil
8369 "Was the last copied subtree folded?
8370 This is used to fold the tree back after pasting.")
8372 (defun org-cut-subtree (&optional n)
8373 "Cut the current subtree into the clipboard.
8374 With prefix arg N, cut this many sequential subtrees.
8375 This is a short-hand for marking the subtree and then cutting it."
8377 (org-copy-subtree n 'cut))
8379 (defun org-copy-subtree (&optional n cut force-store-markers nosubtrees)
8380 "Copy the current subtree it in the clipboard.
8381 With prefix arg N, copy this many sequential subtrees.
8382 This is a short-hand for marking the subtree and then copying it.
8383 If CUT is non-nil, actually cut the subtree.
8384 If FORCE-STORE-MARKERS is non-nil, store the relative locations
8385 of some markers in the region, even if CUT is non-nil. This is
8386 useful if the caller implements cut-and-paste as copy-then-paste-then-cut."
8388 (let (beg end folded (beg0 (point)))
8389 (if (org-called-interactively-p 'any)
8390 (org-back-to-heading nil) ; take what looks like a subtree
8391 (org-back-to-heading t)) ; take what is really there
8393 (skip-chars-forward " \t\r\n")
8396 (outline-next-heading)
8397 (save-excursion (outline-end-of-heading)
8398 (setq folded (outline-invisible-p)))
8399 (ignore-errors (org-forward-heading-same-level (1- n) t))
8400 (org-end-of-subtree t t)))
8404 (setq org-subtree-clip-folded folded)
8405 (when (or cut force-store-markers)
8406 (org-save-markers-in-region beg end))
8407 (if cut (kill-region beg end) (copy-region-as-kill beg end))
8408 (setq org-subtree-clip (current-kill 0))
8409 (message "%s: Subtree(s) with %d characters"
8410 (if cut "Cut" "Copied")
8411 (length org-subtree-clip)))))
8413 (defun org-paste-subtree (&optional level tree for-yank)
8414 "Paste the clipboard as a subtree, with modification of headline level.
8415 The entire subtree is promoted or demoted in order to match a new headline
8418 If the cursor is at the beginning of a headline, the same level as
8419 that headline is used to paste the tree.
8421 If not, the new level is derived from the *visible* headings
8422 before and after the insertion point, and taken to be the inferior headline
8423 level of the two. So if the previous visible heading is level 3 and the
8424 next is level 4 (or vice versa), level 4 will be used for insertion.
8425 This makes sure that the subtree remains an independent subtree and does
8426 not swallow low level entries.
8428 You can also force a different level, either by using a numeric prefix
8429 argument, or by inserting the heading marker by hand. For example, if the
8430 cursor is after \"*****\", then the tree will be shifted to level 5.
8432 If optional TREE is given, use this text instead of the kill ring.
8434 When FOR-YANK is set, this is called by `org-yank'. In this case, do not
8435 move back over whitespace before inserting, and move point to the end of
8436 the inserted text when done."
8438 (setq tree (or tree (and kill-ring (current-kill 0))))
8439 (unless (org-kill-is-subtree-p tree)
8441 (substitute-command-keys
8442 "The kill is not a (set of) tree(s) - please use \\[yank] to yank anyway")))
8443 (org-with-limited-levels
8444 (let* ((visp (not (outline-invisible-p)))
8446 (^re_ "\\(\\*+\\)[ \t]*")
8447 (old-level (if (string-match org-outline-regexp-bol txt)
8448 (- (match-end 0) (match-beginning 0) 1)
8450 (force-level (cond (level (prefix-numeric-value level))
8451 ((and (looking-at "[ \t]*$")
8453 "^\\*+$" (buffer-substring
8454 (point-at-bol) (point))))
8455 (- (match-end 1) (match-beginning 1)))
8457 (looking-at org-outline-regexp))
8458 (- (match-end 0) (point) 1))))
8459 (previous-level (save-excursion
8462 (outline-previous-visible-heading 1)
8463 (if (looking-at ^re_)
8464 (- (match-end 0) (match-beginning 0) 1)
8467 (next-level (save-excursion
8470 (or (looking-at org-outline-regexp)
8471 (outline-next-visible-heading 1))
8472 (if (looking-at ^re_)
8473 (- (match-end 0) (match-beginning 0) 1)
8476 (new-level (or force-level (max previous-level next-level)))
8477 (shift (if (or (= old-level -1)
8479 (= old-level new-level))
8481 (- new-level old-level)))
8482 (delta (if (> shift 0) -1 1))
8483 (func (if (> shift 0) 'org-demote 'org-promote))
8484 (org-odd-levels-only nil)
8486 ;; Remove the forced level indicator
8488 (delete-region (point-at-bol) (point)))
8490 (beginning-of-line (if (bolp) 1 2))
8492 (and (fboundp 'org-id-paste-tracker) (org-id-paste-tracker txt))
8493 (insert-before-markers txt)
8494 (unless (string-match "\n\\'" txt) (insert "\n"))
8495 (setq newend (point))
8496 (org-reinstall-markers-in-region beg)
8499 (skip-chars-forward " \t\n\r")
8501 (if (and (outline-invisible-p) visp)
8502 (save-excursion (outline-show-heading)))
8503 ;; Shift if necessary
8506 (narrow-to-region beg end)
8507 (while (not (= shift 0))
8508 (org-map-region func (point-min) (point-max))
8509 (setq shift (+ delta shift)))
8510 (goto-char (point-min))
8511 (setq newend (point-max))))
8512 (when (or (org-called-interactively-p 'interactive) for-yank)
8513 (message "Clipboard pasted as level %d subtree" new-level))
8514 (if (and (not for-yank) ; in this case, org-yank will decide about folding
8516 (eq org-subtree-clip (current-kill 0))
8517 org-subtree-clip-folded)
8518 ;; The tree was folded before it was killed/copied
8520 (and for-yank (goto-char newend)))))
8522 (defun org-kill-is-subtree-p (&optional txt)
8523 "Check if the current kill is an outline subtree, or a set of trees.
8524 Returns nil if kill does not start with a headline, or if the first
8525 headline level is not the largest headline level in the tree.
8526 So this will actually accept several entries of equal levels as well,
8527 which is OK for `org-paste-subtree'.
8528 If optional TXT is given, check this string instead of the current kill."
8529 (let* ((kill (or txt (and kill-ring (current-kill 0)) ""))
8530 (re (org-get-limited-outline-regexp))
8531 (^re (concat "^" re))
8532 (start-level (and kill
8534 (concat "\\`\\([ \t\n\r]*?\n\\)?\\(" re "\\)")
8536 (- (match-end 2) (match-beginning 2) 1)))
8537 (start (1+ (or (match-beginning 2) -1))))
8538 (if (not start-level)
8540 nil) ;; does not even start with a heading
8542 (while (setq start (string-match ^re kill (1+ start)))
8543 (when (< (- (match-end 0) (match-beginning 0) 1) start-level)
8547 (defvar org-markers-to-move nil
8548 "Markers that should be moved with a cut-and-paste operation.
8549 Those markers are stored together with their positions relative to
8550 the start of the region.")
8552 (defun org-save-markers-in-region (beg end)
8553 "Check markers in region.
8554 If these markers are between BEG and END, record their position relative
8555 to BEG, so that after moving the block of text, we can put the markers back
8557 This function gets called just before an entry or tree gets cut from the
8558 buffer. After re-insertion, `org-reinstall-markers-in-region' must be
8559 called immediately, to move the markers with the entries."
8560 (setq org-markers-to-move nil)
8561 (when (featurep 'org-clock)
8562 (org-clock-save-markers-for-cut-and-paste beg end))
8563 (when (featurep 'org-agenda)
8564 (org-agenda-save-markers-for-cut-and-paste beg end)))
8566 (defun org-check-and-save-marker (marker beg end)
8567 "Check if MARKER is between BEG and END.
8568 If yes, remember the marker and the distance to BEG."
8569 (when (and (marker-buffer marker)
8570 (equal (marker-buffer marker) (current-buffer)))
8571 (if (and (>= marker beg) (< marker end))
8572 (push (cons marker (- marker beg)) org-markers-to-move))))
8574 (defun org-reinstall-markers-in-region (beg)
8575 "Move all remembered markers to their position relative to BEG."
8577 (move-marker (car x) (+ beg (cdr x))))
8578 org-markers-to-move)
8579 (setq org-markers-to-move nil))
8581 (defun org-narrow-to-subtree ()
8582 "Narrow buffer to the current subtree."
8586 (org-with-limited-levels
8588 (progn (org-back-to-heading t) (point))
8589 (progn (org-end-of-subtree t t)
8590 (if (and (org-at-heading-p) (not (eobp))) (backward-char 1))
8593 (defun org-narrow-to-block ()
8594 "Narrow buffer to the current block."
8596 (let* ((case-fold-search t)
8597 (blockp (org-between-regexps-p "^[ \t]*#\\+begin_.*"
8598 "^[ \t]*#\\+end_.*")))
8600 (narrow-to-region (car blockp) (cdr blockp))
8601 (user-error "Not in a block"))))
8604 (defvar org-property-drawer-re))
8606 (defvar org-property-start-re) ;; defined below
8607 (defun org-clone-subtree-with-time-shift (n &optional shift)
8608 "Clone the task (subtree) at point N times.
8609 The clones will be inserted as siblings.
8611 In interactive use, the user will be prompted for the number of
8612 clones to be produced. If the entry has a timestamp, the user
8613 will also be prompted for a time shift, which may be a repeater
8614 as used in time stamps, for example `+3d'. To disable this,
8615 you can call the function with a universal prefix argument.
8617 When a valid repeater is given and the entry contains any time
8618 stamps, the clones will become a sequence in time, with time
8619 stamps in the subtree shifted for each clone produced. If SHIFT
8620 is nil or the empty string, time stamps will be left alone. The
8621 ID property of the original subtree is removed.
8623 If the original subtree did contain time stamps with a repeater,
8624 the following will happen:
8625 - the repeater will be removed in each clone
8626 - an additional clone will be produced, with the current, unshifted
8627 date(s) in the entry.
8628 - the original entry will be placed *after* all the clones, with
8630 - the start days in the repeater in the original entry will be shifted
8631 to past the last clone.
8632 In this way you can spell out a number of instances of a repeating task,
8633 and still retain the repeater to cover future instances of the task."
8634 (interactive "nNumber of clones to produce: ")
8637 (if (and (not (equal current-prefix-arg '(4)))
8639 (re-search-forward org-ts-regexp-both
8641 (org-end-of-subtree t)
8643 (read-from-minibuffer
8644 "Date shift per clone (e.g. +1w, empty to copy unchanged): ")
8645 ""))) ;; No time shift
8647 (drawer-re org-drawer-regexp)
8648 beg end template task idprop
8649 shift-n shift-what doshift nmin nmax)
8650 (if (not (and (integerp n) (> n 0)))
8651 (user-error "Invalid number of replications %s" n))
8652 (if (and (setq doshift (and (stringp shift) (string-match "\\S-" shift)))
8653 (not (string-match "\\`[ \t]*\\+?\\([0-9]+\\)\\([hdwmy]\\)[ \t]*\\'"
8655 (user-error "Invalid shift specification %s" shift))
8657 (setq shift-n (string-to-number (match-string 1 shift))
8658 shift-what (cdr (assoc (match-string 2 shift)
8659 '(("d" . day) ("w" . week)
8660 ("m" . month) ("y" . year))))))
8661 (if (eq shift-what 'week) (setq shift-n (* 7 shift-n) shift-what 'day))
8662 (setq nmin 1 nmax n)
8663 (org-back-to-heading t)
8665 (setq idprop (org-entry-get nil "ID"))
8666 (org-end-of-subtree t t)
8667 (or (bolp) (insert "\n"))
8669 (setq template (buffer-substring beg end))
8671 (string-match "<[^<>\n]+ [.+]?\\+[0-9]+[hdwmy][^<>\n]*>" template))
8672 (delete-region beg end)
8674 (setq nmin 0 nmax (1+ nmax) n-no-remove nmax))
8676 (loop for n from nmin to nmax do
8681 (goto-char (point-min))
8683 (and idprop (if org-clone-delete-id
8684 (org-entry-delete nil "ID")
8685 (org-id-get-create t)))
8687 (while (re-search-forward "^[ \t]*CLOCK:.*$" nil t)
8689 (goto-char (point-min))
8690 (while (re-search-forward drawer-re nil t)
8691 (org-remove-empty-drawer-at (point))))
8692 (goto-char (point-min))
8694 (while (re-search-forward org-ts-regexp-both nil t)
8695 (org-timestamp-change (* n shift-n) shift-what))
8696 (unless (= n n-no-remove)
8697 (goto-char (point-min))
8698 (while (re-search-forward org-ts-regexp nil t)
8700 (goto-char (match-beginning 0))
8701 (if (looking-at "<[^<>\n]+\\( +[.+]?\\+[0-9]+[hdwmy]\\)")
8702 (delete-region (match-beginning 1) (match-end 1)))))))
8703 (setq task (buffer-string)))
8709 (defun org-sort (with-case)
8710 "Call `org-sort-entries', `org-table-sort-lines' or `org-sort-list'.
8711 Optional argument WITH-CASE means sort case-sensitively."
8714 ((org-at-table-p) (org-call-with-arg 'org-table-sort-lines with-case))
8715 ((org-at-item-p) (org-call-with-arg 'org-sort-list with-case))
8717 (org-call-with-arg 'org-sort-entries with-case))))
8719 (defun org-sort-remove-invisible (s)
8720 "Remove invisible links from string S."
8721 (remove-text-properties 0 (length s) org-rm-props s)
8722 (while (string-match org-bracket-link-regexp s)
8723 (setq s (replace-match (if (match-end 2)
8725 (match-string 1 s)) t t s)))
8726 (let ((st (format " %s " s)))
8727 (while (string-match org-emph-re st)
8728 (setq st (replace-match (format " %s " (match-string 4 st)) t t st)))
8729 (setq s (substring st 1 -1)))
8732 (defvar org-priority-regexp) ; defined later in the file
8734 (defvar org-after-sorting-entries-or-items-hook nil
8735 "Hook that is run after a bunch of entries or items have been sorted.
8736 When children are sorted, the cursor is in the parent line when this
8737 hook gets called. When a region or a plain list is sorted, the cursor
8738 will be in the first entry of the sorted region/list.")
8740 (defun org-sort-entries
8741 (&optional with-case sorting-type getkey-func compare-func property)
8742 "Sort entries on a certain level of an outline tree.
8743 If there is an active region, the entries in the region are sorted.
8744 Else, if the cursor is before the first entry, sort the top-level items.
8745 Else, the children of the entry at point are sorted.
8747 Sorting can be alphabetically, numerically, by date/time as given by
8748 a time stamp, by a property, by priority order, or by a custom function.
8750 The command prompts for the sorting type unless it has been given to the
8751 function through the SORTING-TYPE argument, which needs to be a character,
8752 \(?n ?N ?a ?A ?t ?T ?s ?S ?d ?D ?p ?P ?o ?O ?r ?R ?f ?F ?k ?K). Here is
8753 the precise meaning of each character:
8755 a Alphabetically, ignoring the TODO keyword and the priority, if any.
8756 c By creation time, which is assumed to be the first inactive time stamp
8757 at the beginning of a line.
8758 d By deadline date/time.
8760 n Numerically, by converting the beginning of the entry/item to a number.
8761 o By order of TODO keywords.
8762 p By priority according to the cookie.
8763 r By the value of a property.
8764 s By scheduled date/time.
8765 t By date/time, either the first active time stamp in the entry, or, if
8766 none exist, by the first inactive one.
8768 Capital letters will reverse the sort order.
8770 If the SORTING-TYPE is ?f or ?F, then GETKEY-FUNC specifies a function to be
8771 called with point at the beginning of the record. It must return either
8772 a string or a number that should serve as the sorting key for that record.
8774 Comparing entries ignores case by default. However, with an optional argument
8775 WITH-CASE, the sorting considers case as well.
8777 Sorting is done against the visible part of the headlines, it ignores hidden
8780 When sorting is done, call `org-after-sorting-entries-or-items-hook'."
8782 (let ((case-func (if with-case 'identity 'downcase))
8784 ;; The clock marker is lost when using `sort-subr', let's
8785 ;; store the clocking string.
8786 (when (equal (marker-buffer org-clock-marker) (current-buffer))
8788 (goto-char org-clock-marker)
8789 (looking-back "^.*") (match-string-no-properties 0))))
8790 start beg end stars re re2
8792 ;; Find beginning and end of region to sort
8794 ((org-region-active-p)
8795 ;; we will sort the region
8796 (setq end (region-end)
8798 (goto-char (region-beginning))
8799 (if (not (org-at-heading-p)) (outline-next-heading))
8800 (setq start (point)))
8801 ((or (org-at-heading-p)
8802 (ignore-errors (progn (org-back-to-heading) t)))
8803 ;; we will sort the children of the current headline
8804 (org-back-to-heading)
8806 end (progn (org-end-of-subtree t t)
8807 (or (bolp) (insert "\n"))
8808 (when (>= (org-back-over-empty-lines) 1)
8814 (outline-next-heading))
8816 ;; we will sort the top-level entries in this file
8817 (goto-char (point-min))
8818 (or (org-at-heading-p) (outline-next-heading))
8819 (setq start (point))
8820 (goto-char (point-max))
8821 (beginning-of-line 1)
8822 (when (looking-at ".*?\\S-")
8823 ;; File ends in a non-white line
8826 (setq end (point-max))
8827 (setq what "top-level")
8832 (when (>= beg end) (goto-char start) (user-error "Nothing to sort"))
8834 (looking-at "\\(\\*+\\)")
8835 (setq stars (match-string 1)
8836 re (concat "^" (regexp-quote stars) " +")
8837 re2 (concat "^" (regexp-quote (substring stars 0 -1)) "[ \t\n]")
8838 txt (buffer-substring beg end))
8839 (if (not (equal (substring txt -1) "\n")) (setq txt (concat txt "\n")))
8840 (if (and (not (equal stars "*")) (string-match re2 txt))
8841 (user-error "Region to sort contains a level above the first entry"))
8843 (unless sorting-type
8845 "Sort %s: [a]lpha [n]umeric [p]riority p[r]operty todo[o]rder [f]unc
8846 [t]ime
[s]cheduled [d]eadline [c]reated cloc[k]ing
8847 A/N/P/R/O/F/T/S/D/C/K means reversed:"
8849 (setq sorting-type (read-char-exclusive))
8852 (and (= (downcase sorting-type) ?f)
8854 (org-icompleting-read "Sort using function: "
8855 obarray 'fboundp t nil nil))
8856 (setq getkey-func (intern getkey-func))))
8858 (and (= (downcase sorting-type) ?r)
8861 (org-icompleting-read "Property: "
8862 (mapcar 'list (org-buffer-property-keys t))
8865 (when (member sorting-type '(?k ?K)) (org-clock-sum))
8866 (message "Sorting entries...")
8869 (narrow-to-region start end)
8870 (let ((dcst (downcase sorting-type))
8871 (case-fold-search nil)
8872 (now (current-time)))
8874 (/= dcst sorting-type)
8875 ;; This function moves to the beginning character of the "record" to
8878 (if (re-search-forward re nil t)
8879 (goto-char (match-beginning 0))
8880 (goto-char (point-max))))
8881 ;; This function moves to the last character of the "record" being
8886 (outline-forward-same-level 1)
8888 (goto-char (point-max))))))
8889 ;; This function returns the value that gets sorted against.
8893 (if (looking-at org-complex-heading-regexp)
8894 (string-to-number (org-sort-remove-invisible (match-string 4)))
8897 (if (looking-at org-complex-heading-regexp)
8898 (funcall case-func (org-sort-remove-invisible (match-string 4)))
8901 (or (get-text-property (point) :org-clock-minutes) 0))
8903 (let ((end (save-excursion (outline-next-heading) (point))))
8904 (if (or (re-search-forward org-ts-regexp end t)
8905 (re-search-forward org-ts-regexp-both end t))
8906 (org-time-string-to-seconds (match-string 0))
8907 (org-float-time now))))
8909 (let ((end (save-excursion (outline-next-heading) (point))))
8910 (if (re-search-forward
8911 (concat "^[ \t]*\\[" org-ts-regexp1 "\\]")
8913 (org-time-string-to-seconds (match-string 0))
8914 (org-float-time now))))
8916 (let ((end (save-excursion (outline-next-heading) (point))))
8917 (if (re-search-forward org-scheduled-time-regexp end t)
8918 (org-time-string-to-seconds (match-string 1))
8919 (org-float-time now))))
8921 (let ((end (save-excursion (outline-next-heading) (point))))
8922 (if (re-search-forward org-deadline-time-regexp end t)
8923 (org-time-string-to-seconds (match-string 1))
8924 (org-float-time now))))
8926 (if (re-search-forward org-priority-regexp (point-at-eol) t)
8927 (string-to-char (match-string 2))
8928 org-default-priority))
8930 (or (org-entry-get nil property) ""))
8932 (if (looking-at org-complex-heading-regexp)
8933 (let* ((m (match-string 2))
8934 (s (if (member m org-done-keywords) '- '+)))
8935 (- 99 (funcall s (length (member m org-todo-keywords-1)))))))
8939 (setq tmp (funcall getkey-func))
8940 (if (stringp tmp) (setq tmp (funcall case-func tmp)))
8942 (error "Invalid key function `%s'" getkey-func)))
8943 (t (error "Invalid sorting type `%c'" sorting-type))))
8946 ((= dcst ?a) 'string<)
8947 ((= dcst ?f) compare-func)
8948 ((member dcst '(?p ?t ?s ?d ?c ?k)) '<)))))
8949 (run-hooks 'org-after-sorting-entries-or-items-hook)
8950 ;; Reset the clock marker if needed
8954 (search-forward cmstr nil t)
8955 (move-marker org-clock-marker (point))))
8956 (message "Sorting entries...done")))
8958 (defun org-do-sort (table what &optional with-case sorting-type)
8959 "Sort TABLE of WHAT according to SORTING-TYPE.
8960 The user will be prompted for the SORTING-TYPE if the call to this
8961 function does not specify it.
8962 WHAT is only for the prompt, to indicate what is being sorted.
8963 The sorting key will be extracted from the car of the elements of
8965 If WITH-CASE is non-nil, the sorting will be case-sensitive."
8966 (unless sorting-type
8968 "Sort %s: [a]lphabetic, [n]umeric, [t]ime. A/N/T means reversed:"
8970 (setq sorting-type (read-char-exclusive)))
8971 (let ((dcst (downcase sorting-type))
8972 extractfun comparefun)
8973 ;; Define the appropriate functions
8976 (setq extractfun 'string-to-number
8977 comparefun (if (= dcst sorting-type) '< '>)))
8979 (setq extractfun (if with-case (lambda(x) (org-sort-remove-invisible x))
8980 (lambda(x) (downcase (org-sort-remove-invisible x))))
8981 comparefun (if (= dcst sorting-type)
8983 (lambda (a b) (and (not (string< a b))
8984 (not (string= a b)))))))
8988 (cond ((or (string-match org-ts-regexp x)
8989 (string-match org-ts-regexp-both x))
8991 (org-time-string-to-time (match-string 0 x))))
8992 ((string-match "[0-9]\\{1,2\\}:[0-9]\\{2\\}" x)
8993 (org-hh:mm-string-to-minutes x))
8995 comparefun (if (= dcst sorting-type) '< '>)))
8996 (t (error "Invalid sorting type `%c'" sorting-type)))
8998 (sort (mapcar (lambda (x) (cons (funcall extractfun (car x)) (cdr x)))
9000 (lambda (a b) (funcall comparefun (car a) (car b))))))
9003 ;;; The orgstruct minor mode
9005 ;; Define a minor mode which can be used in other modes in order to
9006 ;; integrate the org-mode structure editing commands.
9008 ;; This is really a hack, because the org-mode structure commands use
9009 ;; keys which normally belong to the major mode. Here is how it
9010 ;; works: The minor mode defines all the keys necessary to operate the
9011 ;; structure commands, but wraps the commands into a function which
9012 ;; tests if the cursor is currently at a headline or a plain list
9013 ;; item. If that is the case, the structure command is used,
9014 ;; temporarily setting many Org-mode variables like regular
9015 ;; expressions for filling etc. However, when any of those keys is
9016 ;; used at a different location, function uses `key-binding' to look
9017 ;; up if the key has an associated command in another currently active
9018 ;; keymap (minor modes, major mode, global), and executes that
9019 ;; command. There might be problems if any of the keys is otherwise
9020 ;; used as a prefix key.
9022 (defcustom orgstruct-heading-prefix-regexp ""
9023 "Regexp that matches the custom prefix of Org headlines in
9024 orgstruct(++)-mode."
9027 :package-version '(Org . "8.3")
9029 ;;;###autoload(put 'orgstruct-heading-prefix-regexp 'safe-local-variable 'stringp)
9031 (defcustom orgstruct-setup-hook nil
9032 "Hook run after orgstruct-mode-map is filled."
9035 :package-version '(Org . "8.0")
9038 (defvar orgstruct-initialized nil)
9040 (defvar org-local-vars nil
9041 "List of local variables, for use by `orgstruct-mode'.")
9044 (define-minor-mode orgstruct-mode
9045 "Toggle the minor mode `orgstruct-mode'.
9046 This mode is for using Org-mode structure commands in other
9047 modes. The following keys behave as if Org-mode were active, if
9048 the cursor is on a headline, or on a plain list item (both as
9049 defined by Org-mode)."
9050 nil " OrgStruct" (make-sparse-keymap)
9051 (funcall (if orgstruct-mode
9052 'add-to-invisibility-spec
9053 'remove-from-invisibility-spec)
9055 (when orgstruct-mode
9056 (org-load-modules-maybe)
9057 (unless orgstruct-initialized
9059 (setq orgstruct-initialized t))))
9062 (defun turn-on-orgstruct ()
9063 "Unconditionally turn on `orgstruct-mode'."
9066 (defvar org-fb-vars nil)
9067 (make-variable-buffer-local 'org-fb-vars)
9068 (defun orgstruct++-mode (&optional arg)
9069 "Toggle `orgstruct-mode', the enhanced version of it.
9070 In addition to setting orgstruct-mode, this also exports all
9071 indentation and autofilling variables from org-mode into the
9072 buffer. It will also recognize item context in multiline items."
9074 (setq arg (prefix-numeric-value (or arg (if orgstruct-mode -1 1))))
9076 (progn (orgstruct-mode -1)
9078 (org-set-local (car v)
9079 (if (eq (car-safe (cadr v)) 'quote) (cadadr v) (cadr v))))
9082 (setq org-fb-vars nil)
9083 (unless org-local-vars
9084 (setq org-local-vars (org-get-local-variables)))
9089 "^\\(paragraph-\\|auto-fill\\|normal-auto-fill\\|fill-paragraph\\|fill-prefix\\|indent-\\)"
9090 (symbol-name (car x)))
9091 (setq var (car x) val (nth 1 x))
9092 (push (list var `(quote ,(eval var))) org-fb-vars)
9093 (org-set-local var (if (eq (car-safe val) 'quote) (nth 1 val) val))))
9095 (org-set-local 'orgstruct-is-++ t))))
9097 (defvar orgstruct-is-++ nil
9098 "Is `orgstruct-mode' in ++ version in the current-buffer?")
9099 (make-variable-buffer-local 'orgstruct-is-++)
9102 (defun turn-on-orgstruct++ ()
9103 "Unconditionally turn on `orgstruct++-mode'."
9104 (orgstruct++-mode 1))
9106 (defun orgstruct-error ()
9107 "Error when there is no default binding for a structure key."
9109 (funcall (if (fboundp 'user-error)
9112 "This key has no function outside structure elements"))
9114 (defun orgstruct-setup ()
9115 "Setup orgstruct keymap."
9116 (dolist (cell '((org-demote . t)
9120 (org-shiftmetaleft . t)
9121 (org-shiftmetaright . t)
9122 org-backward-element
9123 org-backward-heading-same-level
9128 org-forward-heading-same-level
9130 org-insert-heading-respect-content
9131 org-kill-note-or-show-branches
9136 org-narrow-to-subtree
9151 outline-next-visible-heading
9152 outline-previous-visible-heading
9156 (let ((f (or (car-safe cell) cell))
9157 (disable-when-heading-prefix (cdr-safe cell)))
9159 (let ((new-bindings))
9160 (dolist (binding (nconc (where-is-internal f org-mode-map)
9161 (where-is-internal f outline-mode-map)))
9162 (push binding new-bindings)
9163 ;; TODO use local-function-key-map
9164 (dolist (rep '(("<tab>" . "TAB")
9165 ("<return>" . "RET")
9166 ("<escape>" . "ESC")
9167 ("<delete>" . "DEL")))
9168 (setq binding (read-kbd-macro
9169 (let ((case-fold-search))
9170 (replace-regexp-in-string
9171 (regexp-quote (cdr rep))
9173 (key-description binding)))))
9174 (pushnew binding new-bindings :test 'equal)))
9175 (dolist (binding new-bindings)
9176 (let ((key (lookup-key orgstruct-mode-map binding)))
9177 (when (or (not key) (numberp key))
9179 (org-defkey orgstruct-mode-map
9181 (orgstruct-make-binding
9182 f binding disable-when-heading-prefix))))))))))
9183 (run-hooks 'orgstruct-setup-hook))
9185 (defun orgstruct-make-binding (fun key disable-when-heading-prefix)
9186 "Create a function for binding in the structure minor mode.
9187 FUN is the command to call inside a table. KEY is the key that
9188 should be checked in for a command to execute outside of tables.
9189 Non-nil `disable-when-heading-prefix' means to disable the command
9190 if `orgstruct-heading-prefix-regexp' is not empty."
9191 (let ((name (concat "orgstruct-hijacker-" (symbol-name fun))))
9194 (while (fboundp (intern nname))
9195 (setq nname (format "%s-%d" name (setq i (1+ i)))))
9196 (setq name (intern nname)))
9198 (let ((bindings '((org-heading-regexp
9200 orgstruct-heading-prefix-regexp
9201 "\\(\\*+\\)\\(?: +\\(.*?\\)\\)?[ ]*$"))
9203 (concat orgstruct-heading-prefix-regexp "\\*+ "))
9204 (org-outline-regexp-bol
9205 (concat "^" org-outline-regexp))
9206 (outline-regexp org-outline-regexp)
9207 (outline-heading-end-regexp "\n")
9208 (outline-level 'org-outline-level)
9209 (outline-heading-alist))))
9211 ,(concat "In Structure, run `" (symbol-name fun) "'.\n"
9212 "Outside of structure, run the binding of `"
9213 (key-description key) "'."
9214 (when disable-when-heading-prefix
9216 "\nIf `orgstruct-heading-prefix-regexp' is not empty, this command will always fall\n"
9217 "back to the default binding due to limitations of Org's implementation of\n"
9218 "`" (symbol-name fun) "'.")))
9221 ,(and disable-when-heading-prefix
9222 '(not (string= orgstruct-heading-prefix-regexp ""))))
9227 (org-context-p 'headline 'item
9229 '(org-insert-heading
9230 org-insert-heading-respect-content
9232 '(when orgstruct-is-++
9235 (let* ((orgstruct-mode)
9237 (loop with key = ,key
9240 ("<\\([^>]*\\)tab>" . "\\1TAB")
9241 ("<\\([^>]*\\)return>" . "\\1RET")
9242 ("<\\([^>]*\\)escape>" . "\\1ESC")
9243 ("<\\([^>]*\\)delete>" . "\\1DEL"))
9246 (setq key (read-kbd-macro
9247 (let ((case-fold-search))
9248 (replace-regexp-in-string
9251 (key-description key))))))
9252 thereis (key-binding key))))
9253 (if (keymapp binding)
9254 (org-set-transient-map binding)
9255 (let ((func (or binding
9257 'orgstruct-error))))
9259 (call-interactively func)))))
9260 (org-run-like-in-org-mode
9264 (call-interactively ',fun)))))))))
9267 (defun org-contextualize-keys (alist contexts)
9268 "Return valid elements in ALIST depending on CONTEXTS.
9270 `org-agenda-custom-commands' or `org-capture-templates' are the
9271 values used for ALIST, and `org-agenda-custom-commands-contexts'
9272 or `org-capture-templates-contexts' are the associated contexts
9275 ;; normalize contexts
9277 (lambda(c) (cond ((listp (cadr c))
9278 (list (car c) (car c) (cadr c)))
9279 ((string= "" (cadr c))
9280 (list (car c) (car c) (caddr c)))
9283 ;; loop over all commands or templates
9284 (while (setq c (pop a))
9287 ((not (assoc (car c) contexts))
9289 ((and (assoc (car c) contexts)
9290 (setq vrules (org-contextualize-validate-key
9293 (when (not (equal (car vr) (cadr vr)))
9294 (setq repl vr))) vrules)
9295 (if (not repl) (push c r)
9296 (push (cadr repl) s)
9299 (cdr (or (assoc (cadr repl) alist)
9300 (error "Undefined key `%s' as contextual replacement for `%s'"
9301 (cadr repl) (car c)))))
9303 ;; Return limited ALIST, possibly with keys modified, and deduplicated
9308 (let ((tpl (car x)))
9312 (equal y tpl)) s))) x)))
9315 (defun org-contextualize-validate-key (key contexts)
9316 "Check CONTEXTS for agenda or capture KEY."
9318 (while (setq r (pop contexts))
9322 (and (equal key (car r))
9323 (if (functionp rr) (funcall rr)
9324 (or (and (eq (car rr) 'in-file)
9326 (string-match (cdr rr) (buffer-file-name)))
9327 (and (eq (car rr) 'in-mode)
9328 (string-match (cdr rr) (symbol-name major-mode)))
9329 (and (eq (car rr) 'in-buffer)
9330 (string-match (cdr rr) (buffer-name)))
9331 (when (and (eq (car rr) 'not-in-file)
9333 (not (string-match (cdr rr) (buffer-file-name))))
9334 (when (eq (car rr) 'not-in-mode)
9335 (not (string-match (cdr rr) (symbol-name major-mode))))
9336 (when (eq (car rr) 'not-in-buffer)
9337 (not (string-match (cdr rr) (buffer-name)))))))
9340 (delete-dups (delq nil res))))
9342 (defun org-context-p (&rest contexts)
9343 "Check if local context is any of CONTEXTS.
9344 Possible values in the list of contexts are `table', `headline', and `item'."
9345 (let ((pos (point)))
9346 (goto-char (point-at-bol))
9347 (prog1 (or (and (memq 'table contexts)
9348 (looking-at "[ \t]*|"))
9349 (and (memq 'headline contexts)
9350 (looking-at org-outline-regexp))
9351 (and (memq 'item contexts)
9352 (looking-at "[ \t]*\\([-+*] \\|[0-9]+[.)] \\)"))
9353 (and (memq 'item-body contexts)
9357 (defun org-get-local-variables ()
9358 "Return a list of all local variables in an Org mode buffer."
9360 (with-current-buffer (get-buffer-create "*Org tmp*")
9363 (setq varlist (buffer-local-variables)))
9364 (kill-buffer "*Org tmp*")
9371 (list (car x) (cdr x))))
9372 (if (and (not (get (car x) 'org-state))
9374 "^\\(org-\\|orgtbl-\\|outline-\\|comment-\\|paragraph-\\|auto-fill\\|normal-auto-fill\\|fill-paragraph\\|indent-\\)"
9375 (symbol-name (car x))))
9379 (defun org-clone-local-variables (from-buffer &optional regexp)
9380 "Clone local variables from FROM-BUFFER.
9381 Optional argument REGEXP selects variables to clone."
9384 (and (symbolp (car pair))
9386 (string-match regexp (symbol-name (car pair))))
9387 (set (make-local-variable (car pair))
9389 (buffer-local-variables from-buffer)))
9392 (defun org-run-like-in-org-mode (cmd)
9393 "Run a command, pretending that the current buffer is in Org-mode.
9394 This will temporarily bind local variables that are typically bound in
9395 Org-mode to the values they have in Org-mode, and then interactively
9397 (org-load-modules-maybe)
9398 (unless org-local-vars
9399 (setq org-local-vars (org-get-local-variables)))
9401 (dolist (var org-local-vars)
9402 (when (or (not (boundp (car var)))
9403 (eq (symbol-value (car var))
9404 (default-value (car var))))
9405 (push (list (car var) `(quote ,(cadr var))) binds)))
9407 (call-interactively (quote ,cmd))))))
9409 (defun org-get-category (&optional pos force-refresh)
9410 "Get the category applying to position POS."
9412 (if force-refresh (org-refresh-category-properties))
9413 (let ((pos (or pos (point))))
9414 (or (get-text-property pos 'org-category)
9415 (progn (org-refresh-category-properties)
9416 (get-text-property pos 'org-category))))))
9418 ;;; Refresh properties
9420 (defun org-refresh-properties (dprop tprop)
9421 "Refresh buffer text properties.
9422 DPROP is the drawer property and TPROP is either the
9423 corresponding text property to set, or an alist with each element
9424 being a text property (as a symbol) and a function to apply to
9425 the value of the drawer property."
9426 (let ((case-fold-search t)
9427 (inhibit-read-only t))
9428 (org-with-silent-modifications
9432 (goto-char (point-min))
9433 (while (re-search-forward (concat "^[ \t]*:" dprop ": +\\(.*\\)[ \t]*$") nil t)
9434 (org-refresh-property tprop (org-match-string-no-properties 1))))))))
9436 (defun org-refresh-property (tprop p)
9437 "Refresh the buffer text property TPROP from the drawer property P.
9438 The refresh happens only for the current tree (not subtree)."
9440 (org-back-to-heading t)
9441 ;; tprop is a text property symbol
9444 (point) (or (outline-next-heading) (point-max)) tprop p)
9445 ;; tprop is an alist with (properties . function) elements
9449 (point-at-bol) (or (outline-next-heading) (point-max))
9451 (funcall (cdr al) p))))
9454 (defun org-refresh-category-properties ()
9455 "Refresh category text properties in the buffer."
9456 (let ((case-fold-search t)
9457 (inhibit-read-only t)
9459 ((null org-category)
9460 (if buffer-file-name
9461 (file-name-sans-extension
9462 (file-name-nondirectory buffer-file-name))
9464 ((symbolp org-category) (symbol-name org-category))
9466 beg end cat pos optionp)
9467 (org-with-silent-modifications
9471 (goto-char (point-min))
9472 (put-text-property (point) (point-max) 'org-category def-cat)
9473 (while (re-search-forward
9474 "^[ \t]*\\(#\\+CATEGORY:\\|[ \t]*:CATEGORY:\\)\\(.*\\)" nil t)
9475 (setq pos (match-end 0)
9476 optionp (equal (char-after (match-beginning 0)) ?#)
9477 cat (org-trim (match-string 2)))
9479 (setq beg (point-at-bol) end (point-max))
9480 (org-back-to-heading t)
9481 (setq beg (point) end (org-end-of-subtree t t)))
9482 (put-text-property beg end 'org-category cat)
9483 (goto-char pos)))))))
9485 (defun org-refresh-stats-properties ()
9486 "Refresh stats text properties in the buffer."
9488 (org-with-silent-modifications
9492 (goto-char (point-min))
9493 (while (re-search-forward
9494 (concat org-outline-regexp-bol ".*"
9495 "\\(?:\\[\\([0-9]+\\)%\\|\\([0-9]+\\)/\\([0-9]+\\)\\]\\)")
9497 (setq stats (cond ((equal (match-string 3) "0") 0)
9499 (/ (* (string-to-number (match-string 2)) 100)
9500 (string-to-number (match-string 3))))
9501 (t (string-to-number (match-string 1)))))
9502 (org-back-to-heading t)
9503 (put-text-property (point) (progn (org-end-of-subtree t t) (point))
9504 'org-stats stats)))))))
9506 (defun org-refresh-effort-properties ()
9507 "Refresh effort properties"
9508 (org-refresh-properties
9510 '((effort . identity)
9511 (effort-minutes . org-duration-string-to-minutes))))
9515 ;;; Link abbreviations
9517 (defun org-link-expand-abbrev (link)
9518 "Apply replacements as defined in `org-link-abbrev-alist'."
9519 (if (string-match "^\\([^:]*\\)\\(::?\\(.*\\)\\)?$" link)
9520 (let* ((key (match-string 1 link))
9521 (as (or (assoc key org-link-abbrev-alist-local)
9522 (assoc key org-link-abbrev-alist)))
9523 (tag (and (match-end 2) (match-string 3 link)))
9529 ((symbolp rpl) (funcall rpl tag))
9530 ((string-match "%(\\([^)]+\\))" rpl)
9533 (funcall (intern-soft (match-string 1 rpl)) tag)) t t rpl))
9534 ((string-match "%s" rpl) (replace-match (or tag "") t t rpl))
9535 ((string-match "%h" rpl)
9536 (replace-match (url-hexify-string (or tag "")) t t rpl))
9537 (t (concat rpl tag)))))
9540 ;;; Storing and inserting links
9542 (defvar org-insert-link-history nil
9543 "Minibuffer history for links inserted with `org-insert-link'.")
9545 (defvar org-stored-links nil
9546 "Contains the links stored with `org-store-link'.")
9548 (defvar org-store-link-plist nil
9549 "Plist with info about the most recently link created with `org-store-link'.")
9551 (defvar org-link-protocols nil
9552 "Link protocols added to Org-mode using `org-add-link-type'.")
9554 (defvar org-store-link-functions nil
9555 "List of functions that are called to create and store a link.
9556 Each function will be called in turn until one returns a non-nil
9557 value. Each function should check if it is responsible for creating
9558 this link (for example by looking at the major mode).
9559 If not, it must exit and return nil.
9560 If yes, it should return a non-nil value after a calling
9561 `org-store-link-props' with a list of properties and values.
9562 Special properties are:
9564 :type The link prefix, like \"http\". This must be given.
9565 :link The link, like \"http://www.astro.uva.nl/~dominik\".
9566 This is obligatory as well.
9567 :description Optional default description for the second pair
9568 of brackets in an Org-mode link. The user can still change
9569 this when inserting this link into an Org-mode buffer.
9571 In addition to these, any additional properties can be specified
9572 and then used in capture templates.")
9574 (defun org-add-link-type (type &optional follow export)
9575 "Add TYPE to the list of `org-link-types'.
9576 Re-compute all regular expressions depending on `org-link-types'
9578 FOLLOW and EXPORT are two functions.
9580 FOLLOW should take the link path as the single argument and do whatever
9581 is necessary to follow the link, for example find a file or display
9584 EXPORT should format the link path for export to one of the export formats.
9585 It should be a function accepting three arguments:
9587 path the path of the link, the text after the prefix (like \"http:\")
9588 desc the description of the link, if any, or a description added by
9589 org-export-normalize-links if there is none
9590 format the export format, a symbol like `html' or `latex' or `ascii'..
9592 The function may use the FORMAT information to return different values
9593 depending on the format. The return value will be put literally into
9594 the exported file. If the return value is nil, this means Org should
9595 do what it normally does with links which do not have EXPORT defined.
9597 Org-mode has a built-in default for exporting links. If you are happy with
9598 this default, there is no need to define an export function for the link
9599 type. For a simple example of an export function, see `org-bbdb.el'."
9600 (add-to-list 'org-link-types type t)
9601 (org-make-link-regexps)
9602 (if (assoc type org-link-protocols)
9603 (setcdr (assoc type org-link-protocols) (list follow export))
9604 (push (list type follow export) org-link-protocols)))
9606 (defvar org-agenda-buffer-name) ; Defined in org-agenda.el
9607 (defvar org-id-link-to-org-use-id) ; Defined in org-id.el
9610 (defun org-store-link (arg)
9611 "\\<org-mode-map>Store an org-link to the current location.
9612 This link is added to `org-stored-links' and can later be inserted
9613 into an org-buffer with \\[org-insert-link].
9615 For some link types, a prefix arg is interpreted.
9616 For links to Usenet articles, arg negates `org-gnus-prefer-web-links'.
9617 For file links, arg negates `org-context-in-file-links'.
9619 A double prefix arg force skipping storing functions that are not
9622 A triple prefix arg force storing a link for each line in the
9625 (org-load-modules-maybe)
9626 (if (and (equal arg '(64)) (org-region-active-p))
9628 (let ((end (region-end)))
9629 (goto-char (region-beginning))
9631 (while (< (point-at-eol) end)
9632 (move-end-of-line 1) (activate-mark)
9633 (let (current-prefix-arg)
9634 (call-interactively 'org-store-link))
9635 (move-beginning-of-line 2)
9636 (set-mark (point)))))
9637 (org-with-limited-levels
9638 (setq org-store-link-plist nil)
9639 (let (link cpltxt desc description search
9640 txt custom-id agenda-link sfuns sfunsn)
9643 ;; Store a link using an external link type
9644 ((and (not (equal arg '(16)))
9647 nil (mapcar (lambda (f)
9648 (let (fs) (if (funcall f) (push f fs))))
9649 org-store-link-functions))
9650 sfunsn (mapcar (lambda (fu) (symbol-name (car fu))) sfuns))
9651 (or (and (cdr sfuns)
9654 "Which function for creating the link? "
9655 sfunsn nil t (car sfunsn)))))
9656 (funcall (caar sfuns)))
9657 (setq link (plist-get org-store-link-plist :link)
9658 desc (or (plist-get org-store-link-plist
9659 :description) link))))
9661 ;; Store a link from a source code buffer
9662 ((org-src-edit-buffer-p)
9664 (while (or (not label)
9668 (goto-char (point-min))
9670 (regexp-quote (format org-coderef-label-format label))
9672 (when label (message "Label exists already") (sit-for 2))
9673 (setq label (read-string "Code line label: " label)))
9675 (setq link (format org-coderef-label-format label))
9676 (setq gc (- 79 (length link)))
9677 (if (< (current-column) gc) (org-move-to-column gc t) (insert " "))
9679 (setq link (concat "(" label ")") desc nil)))
9681 ;; We are in the agenda, link to referenced location
9682 ((equal (org-bound-and-true-p org-agenda-buffer-name) (buffer-name))
9683 (let ((m (or (get-text-property (point) 'org-hd-marker)
9684 (get-text-property (point) 'org-marker))))
9686 (org-with-point-at m
9688 (if (org-called-interactively-p 'any)
9689 (call-interactively 'org-store-link)
9690 (org-store-link nil)))))))
9692 ((eq major-mode 'calendar-mode)
9693 (let ((cd (calendar-cursor-to-date)))
9696 (car org-time-stamp-formats)
9698 (list 0 0 0 (nth 1 cd) (nth 0 cd) (nth 2 cd)
9700 (org-store-link-props :type "calendar" :date cd)))
9702 ((eq major-mode 'help-mode)
9703 (setq link (concat "help:" (save-excursion
9704 (goto-char (point-min))
9705 (looking-at "^[^ ]+")
9707 (org-store-link-props :type "help"))
9709 ((eq major-mode 'w3-mode)
9710 (setq cpltxt (if (and (buffer-name)
9711 (not (string-match "Untitled" (buffer-name))))
9714 link (url-view-url t))
9715 (org-store-link-props :type "w3" :url (url-view-url t)))
9717 ((eq major-mode 'image-mode)
9718 (setq cpltxt (concat "file:"
9719 (abbreviate-file-name buffer-file-name))
9721 (org-store-link-props :type "image" :file buffer-file-name))
9723 ;; In dired, store a link to the file of the current line
9724 ((derived-mode-p 'dired-mode)
9725 (let ((file (dired-get-filename nil t)))
9727 (abbreviate-file-name
9728 (expand-file-name (dired-get-filename nil t)))
9729 ;; otherwise, no file so use current directory.
9731 (setq cpltxt (concat "file:" file)
9734 ((setq search (run-hook-with-args-until-success
9735 'org-create-file-search-functions))
9736 (setq link (concat "file:" (abbreviate-file-name buffer-file-name)
9738 (setq cpltxt (or description link)))
9740 ((and (buffer-file-name (buffer-base-buffer)) (derived-mode-p 'org-mode))
9741 (setq custom-id (org-entry-get nil "CUSTOM_ID"))
9743 ;; Store a link using the target at point
9744 ((org-in-regexp "[^<]<<\\([^<>]+\\)>>[^>]" 1)
9747 (abbreviate-file-name
9748 (buffer-file-name (buffer-base-buffer)))
9749 "::" (match-string 1))
9751 ((and (featurep 'org-id)
9752 (or (eq org-id-link-to-org-use-id t)
9753 (and (org-called-interactively-p 'any)
9754 (or (eq org-id-link-to-org-use-id 'create-if-interactive)
9755 (and (eq org-id-link-to-org-use-id
9756 'create-if-interactive-and-no-custom-id)
9758 (and org-id-link-to-org-use-id (org-entry-get nil "ID"))))
9759 ;; Store a link using the ID at point
9760 (setq link (condition-case nil
9761 (prog1 (org-id-store-link)
9762 (setq desc (or (plist-get org-store-link-plist
9766 ;; Probably before first headline, link only to file
9768 (abbreviate-file-name
9769 (buffer-file-name (buffer-base-buffer))))))))
9771 ;; Just link to current headline
9772 (setq cpltxt (concat "file:"
9773 (abbreviate-file-name
9774 (buffer-file-name (buffer-base-buffer)))))
9775 ;; Add a context search string
9776 (when (org-xor org-context-in-file-links arg)
9777 (let* ((ee (org-element-at-point))
9778 (et (org-element-type ee))
9779 (ev (plist-get (cadr ee) :value))
9780 (ek (plist-get (cadr ee) :key))
9781 (eok (and (stringp ek) (string-match "name" ek))))
9783 ((org-at-heading-p) nil)
9784 ((and (eq et 'keyword) eok) ev)
9785 ((org-region-active-p)
9786 (buffer-substring (region-beginning) (region-end)))))
9787 (when (or (null txt) (string-match "\\S-" txt))
9791 (org-make-org-heading-search-string txt)
9793 desc (or (and (eq et 'keyword) eok ev)
9794 (nth 4 (ignore-errors (org-heading-components)))
9796 (if (string-match "::\\'" cpltxt)
9797 (setq cpltxt (substring cpltxt 0 -2)))
9798 (setq link cpltxt))))
9800 ((buffer-file-name (buffer-base-buffer))
9801 ;; Just link to this file here.
9802 (setq cpltxt (concat "file:"
9803 (abbreviate-file-name
9804 (buffer-file-name (buffer-base-buffer)))))
9805 ;; Add a context string.
9806 (when (org-xor org-context-in-file-links arg)
9807 (setq txt (if (org-region-active-p)
9808 (buffer-substring (region-beginning) (region-end))
9809 (buffer-substring (point-at-bol) (point-at-eol))))
9810 ;; Only use search option if there is some text.
9811 (when (string-match "\\S-" txt)
9813 (concat cpltxt "::" (org-make-org-heading-search-string txt))
9817 ((org-called-interactively-p 'interactive)
9818 (user-error "No method for storing a link from this buffer"))
9820 (t (setq link nil)))
9822 ;; We're done setting link and desc, clean up
9823 (if (consp link) (setq cpltxt (car link) link (cdr link)))
9824 (setq link (or link cpltxt)
9825 desc (or desc cpltxt))
9826 (cond ((equal desc "NONE") (setq desc nil))
9827 ((and desc (string-match org-bracket-link-analytic-regexp desc))
9828 (let ((d0 (match-string 3 desc))
9829 (p0 (match-string 5 desc)))
9831 (replace-regexp-in-string
9832 org-bracket-link-regexp
9834 (if (equal (length (match-string 0 desc))
9835 (length desc)) "*" "")) desc)))))
9838 (if (not (and (or (org-called-interactively-p 'any)
9839 executing-kbd-macro) link))
9840 (or agenda-link (and link (org-make-link-string link desc)))
9841 (push (list link desc) org-stored-links)
9842 (message "Stored: %s" (or desc link))
9844 (setq link (concat "file:" (abbreviate-file-name
9845 (buffer-file-name)) "::#" custom-id))
9846 (push (list link desc) org-stored-links))
9847 (car org-stored-links))))))
9849 (defun org-store-link-props (&rest plist)
9850 "Store link properties, extract names and addresses."
9852 (when (setq x (plist-get plist :from))
9853 (setq adr (mail-extract-address-components x))
9854 (setq plist (plist-put plist :fromname (car adr)))
9855 (setq plist (plist-put plist :fromaddress (nth 1 adr))))
9856 (when (setq x (plist-get plist :to))
9857 (setq adr (mail-extract-address-components x))
9858 (setq plist (plist-put plist :toname (car adr)))
9859 (setq plist (plist-put plist :toaddress (nth 1 adr)))))
9860 (let ((from (plist-get plist :from))
9861 (to (plist-get plist :to)))
9862 (when (and from to org-from-is-user-regexp)
9864 (plist-put plist :fromto
9865 (if (string-match org-from-is-user-regexp from)
9867 (concat "from %f"))))))
9868 (setq org-store-link-plist plist))
9870 (defun org-add-link-props (&rest plist)
9871 "Add these properties to the link property list."
9874 (setq key (pop plist) value (pop plist))
9875 (setq org-store-link-plist
9876 (plist-put org-store-link-plist key value)))))
9878 (defun org-email-link-description (&optional fmt)
9879 "Return the description part of an email link.
9880 This takes information from `org-store-link-plist' and formats it
9881 according to FMT (default from `org-email-link-description-format')."
9882 (setq fmt (or fmt org-email-link-description-format))
9883 (let* ((p org-store-link-plist)
9884 (to (plist-get p :toaddress))
9885 (from (plist-get p :fromaddress))
9888 (cons "%c" (plist-get p :fromto))
9889 (cons "%F" (plist-get p :from))
9890 (cons "%f" (or (plist-get p :fromname) (plist-get p :fromaddress) "?"))
9891 (cons "%T" (plist-get p :to))
9892 (cons "%t" (or (plist-get p :toname) (plist-get p :toaddress) "?"))
9893 (cons "%s" (plist-get p :subject))
9894 (cons "%d" (plist-get p :date))
9895 (cons "%m" (plist-get p :message-id)))))
9896 (when (string-match "%c" fmt)
9897 ;; Check if the user wrote this message
9898 (if (and org-from-is-user-regexp from to
9899 (save-match-data (string-match org-from-is-user-regexp from)))
9900 (setq fmt (replace-match "to %t" t t fmt))
9901 (setq fmt (replace-match "from %f" t t fmt))))
9902 (org-replace-escapes fmt table)))
9904 (defun org-make-org-heading-search-string (&optional string)
9905 "Make search string for the current headline or STRING."
9907 (and (derived-mode-p 'org-mode)
9909 (org-back-to-heading t)
9910 (org-element-property :raw-value (org-element-at-point))))))
9911 (lines org-context-in-file-links))
9912 (or string (setq s (concat "*" s))) ; Add * for headlines
9913 (setq s (replace-regexp-in-string "\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]" "" s))
9914 (when (and string (integerp lines) (> lines 0))
9915 (let ((slines (org-split-string s "\n")))
9916 (when (< lines (length slines))
9919 (reverse (nthcdr (- (length slines) lines)
9920 (reverse slines))) "\n")))))
9921 (mapconcat 'identity (org-split-string s "[ \t]+") " ")))
9923 (defun org-make-link-string (link &optional description)
9924 "Make a link with brackets, consisting of LINK and DESCRIPTION."
9925 (unless (string-match "\\S-" link)
9926 (error "Empty link"))
9927 (when (and description
9928 (stringp description)
9929 (not (string-match "\\S-" description)))
9930 (setq description nil))
9931 (when (stringp description)
9932 ;; Remove brackets from the description, they are fatal.
9933 (while (string-match "\\[" description)
9934 (setq description (replace-match "{" t t description)))
9935 (while (string-match "\\]" description)
9936 (setq description (replace-match "}" t t description))))
9937 (when (equal link description)
9938 ;; No description needed, it is identical
9939 (setq description nil))
9940 (when (and (not description)
9941 (not (string-match (org-image-file-name-regexp) link))
9942 (not (equal link (org-link-escape link))))
9943 (setq description (org-extract-attributes link)))
9945 (cond ((string-match (org-image-file-name-regexp) link) link)
9946 ((string-match org-link-types-re link)
9947 (concat (match-string 1 link)
9948 (org-link-escape (substring link (match-end 1)))))
9949 (t (org-link-escape link))))
9950 (concat "[[" link "]"
9951 (if description (concat "[" description "]") "")
9954 (defconst org-link-escape-chars
9957 "List of characters that should be escaped in a link when stored to Org.
9958 This is the list that is used for internal purposes.")
9960 (defconst org-link-escape-chars-browser
9963 "List of characters to be escaped before handing over to the browser.
9964 If you consider using this constant then you probably want to use
9965 the function `org-link-escape-browser' instead. See there why
9966 this constant is a candidate to be removed once Org drops support
9967 for Emacs 24.1 and 24.2.")
9969 (defun org-link-escape (text &optional table merge)
9970 "Return percent escaped representation of TEXT.
9971 TEXT is a string with the text to escape.
9972 Optional argument TABLE is a list with characters that should be
9973 escaped. When nil, `org-link-escape-chars' is used.
9974 If optional argument MERGE is set, merge TABLE into
9975 `org-link-escape-chars'."
9976 ;; Don't escape chars in internal links
9977 (if (string-match "^\\*[[:alnum:]]+" text)
9981 (mapc (lambda (defchr)
9982 (unless (member defchr table)
9983 (setq table (cons defchr table))))
9984 org-link-escape-chars))
9986 (setq table org-link-escape-chars)))
9989 (if (or (member char table)
9990 (and (or (< char 32) (= char ?\%) (> char 126))
9992 (mapconcat (lambda (sequence-element)
9993 (format "%%%.2X" sequence-element))
9994 (or (encode-coding-char char 'utf-8)
9995 (error "Unable to percent escape character: %s"
9996 (char-to-string char))) "")
9997 (char-to-string char))) text "")))
9999 (defun org-link-escape-browser (text)
10000 "Escape some characters before handing over to the browser.
10001 This function is a candidate to be removed together with the
10002 constant `org-link-escape-chars-browser' once Org drops support
10003 for Emacs 24.1 and 24.2. All calls to this function will have to
10004 be replaced with `url-encode-url' which is available since Emacs
10006 ;; Example with the Org link
10007 ;; [[http://lists.gnu.org/archive/cgi-bin/namazu.cgi?idxname=emacs-orgmode&query=%252Bsubject:"Release+8.2"]]
10008 ;; to open the browser with +subject:"Release 8.2" filled into the
10009 ;; query field: In this case the variable TEXT contains the
10010 ;; unescaped [...]=%2Bsubject:"Release+8.2". Then `url-encode-url'
10011 ;; converts correctly to [...]=%2Bsubject:%22Release+8.2%22 or
10012 ;; `org-link-escape' with `org-link-escape-chars-browser' converts
10013 ;; wrongly to [...]=%252Bsubject:%22Release+8.2%22.
10014 (if (fboundp 'url-encode-url)
10015 (url-encode-url text)
10016 (if (org-string-match-p
10017 (concat "[[:nonascii:]" org-link-escape-chars-browser "]")
10019 (org-link-escape text org-link-escape-chars-browser)
10022 (defun org-link-unescape (str)
10023 "Unhex hexified Unicode strings as returned from the JavaScript function
10024 encodeURIComponent. E.g. `%C3%B6' is the german o-Umlaut."
10025 (unless (and (null str) (string= "" str))
10026 (let ((pos 0) (case-fold-search t) unhexed)
10027 (while (setq pos (string-match "\\(%[0-9a-f][0-9a-f]\\)+" str pos))
10028 (setq unhexed (org-link-unescape-compound (match-string 0 str)))
10029 (setq str (replace-match unhexed t t str))
10030 (setq pos (+ pos (length unhexed))))))
10033 (defun org-link-unescape-compound (hex)
10034 "Unhexify Unicode hex-chars. E.g. `%C3%B6' is the German o-Umlaut.
10035 Note: this function also decodes single byte encodings like
10036 `%E1' (a-acute) if not followed by another `%[A-F0-9]{2}' group."
10038 (let* ((bytes (cdr (split-string hex "%")))
10043 (let* ((val (string-to-number (pop bytes) 16))
10047 ((>= val 252) (cons 6 252))
10048 ((>= val 248) (cons 5 248))
10049 ((>= val 240) (cons 4 240))
10050 ((>= val 224) (cons 3 224))
10051 ((>= val 192) (cons 2 192))
10054 (if (>= val 192) (setq eat (car shift-xor)))
10055 (setq val (logxor val (cdr shift-xor)))
10056 (setq sum (+ (lsh sum (car shift-xor)) val))
10057 (if (> eat 0) (setq eat (- eat 1)))
10059 ((= 0 eat) ;multi byte
10060 (setq ret (concat ret (org-char-to-string sum)))
10062 ((not bytes) ; single byte(s)
10063 (setq ret (org-link-unescape-single-byte-sequence hex))))))
10066 (defun org-link-unescape-single-byte-sequence (hex)
10067 "Unhexify hex-encoded single byte character sequences."
10068 (mapconcat (lambda (byte)
10069 (char-to-string (string-to-number byte 16)))
10070 (cdr (split-string hex "%")) ""))
10072 (defun org-xor (a b)
10076 (defun org-fixup-message-id-for-http (s)
10077 "Replace special characters in a message id, so it can be used in an http query."
10078 (when (string-match "%" s)
10079 (setq s (mapconcat (lambda (c)
10082 (char-to-string c)))
10084 (while (string-match "<" s)
10085 (setq s (replace-match "%3C" t t s)))
10086 (while (string-match ">" s)
10087 (setq s (replace-match "%3E" t t s)))
10088 (while (string-match "@" s)
10089 (setq s (replace-match "%40" t t s)))
10092 (defun org-link-prettify (link)
10093 "Return a human-readable representation of LINK.
10094 The car of LINK must be a raw link.
10095 The cdr of LINK must be either a link description or nil."
10096 (let ((desc (or (cadr link) "<no description>")))
10097 (concat (format "%-45s" (substring desc 0 (min (length desc) 40)))
10098 "<" (car link) ">")))
10101 (defun org-insert-link-global ()
10102 "Insert a link like Org-mode does.
10103 This command can be called in any mode to insert a link in Org-mode syntax."
10105 (org-load-modules-maybe)
10106 (org-run-like-in-org-mode 'org-insert-link))
10108 (defun org-insert-all-links (arg &optional pre post)
10109 "Insert all links in `org-stored-links'.
10110 When a universal prefix, do not delete the links from `org-stored-links'.
10111 When `ARG' is a number, insert the last N link(s).
10112 `PRE' and `POST' are optional arguments to define a string to
10113 prepend or to append."
10115 (let ((org-keep-stored-link-after-insertion (equal arg '(4)))
10116 (links (copy-seq org-stored-links))
10118 (po (or post "\n"))
10120 (if (null org-stored-links)
10121 (message "No link to insert")
10122 (while (and (or (listp arg) (>= arg cnt))
10123 (setq l (if (listp arg)
10125 (pop org-stored-links))))
10126 (setq cnt (1+ cnt))
10128 (org-insert-link nil (car l) (or (cadr l) "<no description>"))
10131 (defun org-insert-last-stored-link (arg)
10132 "Insert the last link stored in `org-stored-links'."
10134 (org-insert-all-links arg "" "\n"))
10136 (defun org-link-fontify-links-to-this-file ()
10137 "Fontify links to the current file in `org-stored-links'."
10138 (let ((f (buffer-file-name)) a b)
10139 (setq a (mapcar (lambda(l)
10140 (let ((ll (car l)))
10141 (when (and (string-match "^file:\\(.+\\)::" ll)
10142 (equal f (expand-file-name (match-string 1 ll))))
10145 (when (featurep 'org-id)
10146 (setq b (mapcar (lambda(l)
10147 (let ((ll (car l)))
10148 (when (and (string-match "^id:\\(.+\\)$" ll)
10149 (equal f (expand-file-name
10150 (or (org-id-find-id-file
10151 (match-string 1 ll)) ""))))
10153 org-stored-links)))
10155 (put-text-property 0 (length l) 'face 'font-lock-comment-face l))
10156 (delq nil (append a b)))))
10158 (defvar org-link-links-in-this-file nil)
10159 (defun org-insert-link (&optional complete-file link-location default-description)
10160 "Insert a link. At the prompt, enter the link.
10162 Completion can be used to insert any of the link protocol prefixes like
10163 http or ftp in use.
10165 The history can be used to select a link previously stored with
10166 `org-store-link'. When the empty string is entered (i.e. if you just
10167 press RET at the prompt), the link defaults to the most recently
10168 stored link. As SPC triggers completion in the minibuffer, you need to
10169 use M-SPC or C-q SPC to force the insertion of a space character.
10171 You will also be prompted for a description, and if one is given, it will
10172 be displayed in the buffer instead of the link.
10174 If there is already a link at point, this command will allow you to edit link
10175 and description parts.
10177 With a \\[universal-argument] prefix, prompts for a file to link to. The file name can
10178 be selected using completion. The path to the file will be relative to the
10179 current directory if the file is in the current directory or a subdirectory.
10180 Otherwise, the link will be the absolute path as completed in the minibuffer
10181 \(i.e. normally ~/path/to/file). You can configure this behavior using the
10182 option `org-link-file-path-type'.
10184 With two \\[universal-argument] prefixes, enforce an absolute path even if the file is in
10185 the current directory or below.
10187 With three \\[universal-argument] prefixes, negate the meaning of
10188 `org-keep-stored-link-after-insertion'.
10190 If `org-make-link-description-function' is non-nil, this function will be
10191 called with the link target, and the result will be the default
10194 If the LINK-LOCATION parameter is non-nil, this value will be
10195 used as the link location instead of reading one interactively.
10197 If the DEFAULT-DESCRIPTION parameter is non-nil, this value will
10198 be used as the default description."
10200 (let* ((wcf (current-window-configuration))
10201 (origbuf (current-buffer))
10202 (region (if (org-region-active-p)
10203 (buffer-substring (region-beginning) (region-end))))
10204 (remove (and region (list (region-beginning) (region-end))))
10206 tmphist ; byte-compile incorrectly complains about this
10207 (link link-location)
10208 (abbrevs org-link-abbrev-alist-local)
10209 entry file all-prefixes auto-desc)
10211 (link-location) ; specified by arg, just use it.
10212 ((org-in-regexp org-bracket-link-regexp 1)
10213 ;; We do have a link at point, and we are going to edit it.
10214 (setq remove (list (match-beginning 0) (match-end 0)))
10215 (setq desc (if (match-end 3) (org-match-string-no-properties 3)))
10216 (setq link (read-string "Link: "
10218 (org-match-string-no-properties 1)))))
10219 ((or (org-in-regexp org-angle-link-re)
10220 (org-in-regexp org-plain-link-re))
10221 ;; Convert to bracket link
10222 (setq remove (list (match-beginning 0) (match-end 0))
10223 link (read-string "Link: "
10224 (org-remove-angle-brackets (match-string 0)))))
10225 ((member complete-file '((4) (16)))
10226 ;; Completing read for file names.
10227 (setq link (org-file-complete-link complete-file)))
10229 ;; Read link, with completion for stored links.
10230 (org-link-fontify-links-to-this-file)
10231 (org-switch-to-buffer-other-window "*Org Links*")
10232 (with-current-buffer "*Org Links*"
10234 (insert "Insert a link.
10235 Use TAB to complete link prefixes, then RET for type-specific completion support\n")
10236 (when org-stored-links
10237 (insert "\nStored links are available with <up>/<down> or M-p/n (most recent with RET):\n\n")
10238 (insert (mapconcat 'org-link-prettify
10239 (reverse org-stored-links) "\n")))
10240 (goto-char (point-min)))
10241 (let ((cw (selected-window)))
10242 (select-window (get-buffer-window "*Org Links*" 'visible))
10243 (with-current-buffer "*Org Links*" (setq truncate-lines t))
10244 (unless (pos-visible-in-window-p (point-max))
10245 (org-fit-window-to-buffer))
10246 (and (window-live-p cw) (select-window cw)))
10247 ;; Fake a link history, containing the stored links.
10248 (setq tmphist (append (mapcar 'car org-stored-links)
10249 org-insert-link-history))
10250 (setq all-prefixes (append (mapcar 'car abbrevs)
10251 (mapcar 'car org-link-abbrev-alist)
10256 (org-completing-read
10259 (mapcar (lambda (x) (concat x ":"))
10261 (mapcar 'car org-stored-links))
10264 (caar org-stored-links)))
10265 (if (not (string-match "\\S-" link))
10266 (user-error "No link selected"))
10268 (when (equal link (cadr l)) (setq link (car l) auto-desc t)))
10270 (if (or (member link all-prefixes)
10271 (and (equal ":" (substring link -1))
10272 (member (substring link 0 -1) all-prefixes)
10273 (setq link (substring link 0 -1))))
10274 (setq link (with-current-buffer origbuf
10275 (org-link-try-special-completion link)))))
10276 (set-window-configuration wcf)
10277 (kill-buffer "*Org Links*"))
10278 (setq entry (assoc link org-stored-links))
10279 (or entry (push link org-insert-link-history))
10280 (setq desc (or desc (nth 1 entry)))))
10282 (if (funcall (if (equal complete-file '(64)) 'not 'identity)
10283 (not org-keep-stored-link-after-insertion))
10284 (setq org-stored-links (delq (assoc link org-stored-links)
10285 org-stored-links)))
10287 (if (and (string-match org-plain-link-re link)
10288 (not (string-match org-ts-regexp link)))
10289 ;; URL-like link, normalize the use of angular brackets.
10290 (setq link (org-remove-angle-brackets link)))
10292 ;; Check if we are linking to the current file with a search
10293 ;; option If yes, simplify the link by using only the search
10295 (when (and buffer-file-name
10296 (string-match "^file:\\(.+?\\)::\\(.+\\)" link))
10297 (let* ((path (match-string 1 link))
10298 (case-fold-search nil)
10299 (search (match-string 2 link)))
10301 (if (equal (file-truename buffer-file-name) (file-truename path))
10302 ;; We are linking to this same file, with a search option
10303 (setq link search)))))
10305 ;; Check if we can/should use a relative path. If yes, simplify the link
10306 (when (string-match "^\\(file:\\|docview:\\)\\(.*\\)" link)
10307 (let* ((type (match-string 1 link))
10308 (path (match-string 2 link))
10310 (case-fold-search nil))
10312 ((or (eq org-link-file-path-type 'absolute)
10313 (equal complete-file '(16)))
10314 (setq path (abbreviate-file-name (expand-file-name path))))
10315 ((eq org-link-file-path-type 'noabbrev)
10316 (setq path (expand-file-name path)))
10317 ((eq org-link-file-path-type 'relative)
10318 (setq path (file-relative-name path)))
10321 (if (string-match (concat "^" (regexp-quote
10323 (file-name-as-directory
10324 default-directory))))
10325 (expand-file-name path))
10326 ;; We are linking a file with relative path name.
10327 (setq path (substring (expand-file-name path)
10329 (setq path (abbreviate-file-name (expand-file-name path)))))))
10330 (setq link (concat type path))
10331 (if (equal desc origpath)
10332 (setq desc path))))
10334 (if org-make-link-description-function
10336 (or (condition-case nil
10337 (funcall org-make-link-description-function link desc)
10338 (error (progn (message "Can't get link description from `%s'"
10339 (symbol-name org-make-link-description-function))
10341 (read-string "Description: " default-description)))
10342 (if default-description (setq desc default-description)
10343 (setq desc (or (and auto-desc desc)
10344 (read-string "Description: " desc)))))
10346 (unless (string-match "\\S-" desc) (setq desc nil))
10347 (if remove (apply 'delete-region remove))
10348 (insert (org-make-link-string link desc))))
10350 (defun org-link-try-special-completion (type)
10351 "If there is completion support for link type TYPE, offer it."
10352 (let ((fun (intern (concat "org-" type "-complete-link"))))
10353 (if (functionp fun)
10355 (read-string "Link (no completion support): " (concat type ":")))))
10357 (defun org-file-complete-link (&optional arg)
10358 "Create a file link using completion."
10360 (setq file (org-iread-file-name "File: "))
10361 (let ((pwd (file-name-as-directory (expand-file-name ".")))
10362 (pwd1 (file-name-as-directory (abbreviate-file-name
10363 (expand-file-name ".")))))
10368 (abbreviate-file-name (expand-file-name file)))))
10369 ((string-match (concat "^" (regexp-quote pwd1) "\\(.+\\)") file)
10370 (setq link (concat "file:" (match-string 1 file))))
10371 ((string-match (concat "^" (regexp-quote pwd) "\\(.+\\)")
10372 (expand-file-name file))
10374 "file:" (match-string 1 (expand-file-name file)))))
10375 (t (setq link (concat "file:" file)))))
10378 (defun org-iread-file-name (&rest args)
10379 "Read-file-name using `ido-mode' speedup if available.
10380 ARGS are arguments that may be passed to `ido-read-file-name' or `read-file-name'.
10381 See `read-file-name' for a description of parameters."
10382 (org-without-partial-completion
10383 (if (and org-completion-use-ido
10384 (fboundp 'ido-read-file-name)
10385 (boundp 'ido-mode) ido-mode
10386 (listp (second args)))
10387 (let ((ido-enter-matching-directory nil))
10388 (apply 'ido-read-file-name args))
10389 (apply 'read-file-name args))))
10391 (defun org-completing-read (&rest args)
10392 "Completing-read with SPACE being a normal character."
10393 (let ((enable-recursive-minibuffers t)
10394 (minibuffer-local-completion-map
10395 (copy-keymap minibuffer-local-completion-map)))
10396 (org-defkey minibuffer-local-completion-map " " 'self-insert-command)
10397 (org-defkey minibuffer-local-completion-map "?" 'self-insert-command)
10398 (org-defkey minibuffer-local-completion-map (kbd "C-c !") 'org-time-stamp-inactive)
10399 (apply 'org-icompleting-read args)))
10401 (defun org-completing-read-no-i (&rest args)
10402 (let (org-completion-use-ido org-completion-use-iswitchb)
10403 (apply 'org-completing-read args)))
10405 (defun org-iswitchb-completing-read (prompt choices &rest args)
10406 "Use iswitch as a completing-read replacement to choose from choices.
10407 PROMPT is a string to prompt with. CHOICES is a list of strings to choose
10409 (let* ((iswitchb-use-virtual-buffers nil)
10410 (iswitchb-make-buflist-hook
10412 (setq iswitchb-temp-buflist choices))))
10413 (iswitchb-read-buffer prompt)))
10415 (defun org-icompleting-read (&rest args)
10416 "Completing-read using `ido-mode' or `iswitchb' speedups if available."
10417 (org-without-partial-completion
10418 (if (and org-completion-use-ido
10419 (fboundp 'ido-completing-read)
10420 (boundp 'ido-mode) ido-mode
10421 (listp (second args)))
10422 (let ((ido-enter-matching-directory nil))
10423 (apply 'ido-completing-read (concat (car args))
10424 (if (consp (car (nth 1 args)))
10425 (mapcar 'car (nth 1 args))
10428 (if (and org-completion-use-iswitchb
10429 (boundp 'iswitchb-mode) iswitchb-mode
10430 (listp (second args)))
10431 (apply 'org-iswitchb-completing-read (concat (car args))
10432 (if (consp (car (nth 1 args)))
10433 (mapcar 'car (nth 1 args))
10436 (apply 'completing-read args)))))
10438 (defun org-extract-attributes (s)
10439 "Extract the attributes cookie from a string and set as text property."
10440 (let (a attr (start 0) key value)
10442 (when (string-match "{{\\([^}]+\\)}}$" s)
10443 (setq a (match-string 1 s) s (substring s 0 (match-beginning 0)))
10444 (while (string-match "\\([a-zA-Z]+\\)=\"\\([^\"]*\\)\"" a start)
10445 (setq key (match-string 1 a) value (match-string 2 a)
10446 start (match-end 0)
10447 attr (plist-put attr (intern key) value))))
10448 (org-add-props s nil 'org-attr attr))
10451 ;;; Opening/following a link
10453 (defvar org-link-search-failed nil)
10455 (defvar org-open-link-functions nil
10456 "Hook for functions finding a plain text link.
10457 These functions must take a single argument, the link content.
10458 They will be called for links that look like [[link text][description]]
10459 when LINK TEXT does not have a protocol like \"http:\" and does not look
10460 like a filename (e.g. \"./blue.png\").
10462 These functions will be called *before* Org attempts to resolve the
10463 link by doing text searches in the current buffer - so if you want a
10464 link \"[[target]]\" to still find \"<<target>>\", your function should
10465 handle this as a special case.
10467 When the function does handle the link, it must return a non-nil value.
10468 If it decides that it is not responsible for this link, it must return
10469 nil to indicate that that Org-mode can continue with other options
10470 like exact and fuzzy text search.")
10472 (defun org-next-link (&optional search-backward)
10473 "Move forward to the next link.
10474 If the link is in hidden text, expose it."
10476 (when (and org-link-search-failed (eq this-command last-command))
10477 (goto-char (point-min))
10478 (message "Link search wrapped back to beginning of buffer"))
10479 (setq org-link-search-failed nil)
10480 (let* ((pos (point))
10482 (a (assoc :link ct))
10483 (srch-fun (if search-backward 're-search-backward 're-search-forward)))
10484 (cond (a (goto-char (nth (if search-backward 1 2) a)))
10485 ((looking-at org-any-link-re)
10486 ;; Don't stay stuck at link without an org-link face
10487 (forward-char (if search-backward -1 1))))
10488 (if (funcall srch-fun org-any-link-re nil t)
10490 (goto-char (match-beginning 0))
10491 (if (outline-invisible-p) (org-show-context)))
10493 (setq org-link-search-failed t)
10494 (message "No further link found"))))
10496 (defun org-previous-link ()
10497 "Move backward to the previous link.
10498 If the link is in hidden text, expose it."
10500 (funcall 'org-next-link t))
10502 (defun org-translate-link (s)
10503 "Translate a link string if a translation function has been defined."
10504 (if (and org-link-translation-function
10505 (fboundp org-link-translation-function)
10506 (string-match "\\([a-zA-Z0-9]+\\):\\(.*\\)" s))
10508 (setq s (funcall org-link-translation-function
10509 (match-string 1 s) (match-string 2 s)))
10510 (concat (car s) ":" (cdr s)))
10513 (defun org-translate-link-from-planner (type path)
10514 "Translate a link from Emacs Planner syntax so that Org can follow it.
10515 This is still an experimental function, your mileage may vary."
10517 ((member type '("http" "https" "news" "ftp"))
10518 ;; standard Internet links are the same.
10520 ((and (equal type "irc") (string-match "^//" path))
10521 ;; Planner has two / at the beginning of an irc link, we have 1.
10522 ;; We should have zero, actually....
10523 (setq path (substring path 1)))
10524 ((and (equal type "lisp") (string-match "^/" path))
10525 ;; Planner has a slash, we do not.
10526 (setq type "elisp" path (substring path 1)))
10527 ((string-match "^//\\(.?*\\)/\\(<.*>\\)$" path)
10528 ;; A typical message link. Planner has the id after the final slash,
10529 ;; we separate it with a hash mark
10530 (setq path (concat (match-string 1 path) "#"
10531 (org-remove-angle-brackets (match-string 2 path))))))
10534 (defun org-find-file-at-mouse (ev)
10535 "Open file link or URL at mouse."
10537 (mouse-set-point ev)
10538 (org-open-at-point 'in-emacs))
10540 (defun org-open-at-mouse (ev)
10541 "Open file link or URL at mouse.
10542 See the docstring of `org-open-file' for details."
10544 (mouse-set-point ev)
10545 (if (eq major-mode 'org-agenda-mode)
10546 (org-agenda-copy-local-variable 'org-link-abbrev-alist-local))
10547 (org-open-at-point))
10549 (defvar org-window-config-before-follow-link nil
10550 "The window configuration before following a link.
10551 This is saved in case the need arises to restore it.")
10553 (defvar org-open-link-marker (make-marker)
10554 "Marker pointing to the location where `org-open-at-point' was called.")
10557 (defun org-open-at-point-global ()
10558 "Follow a link like Org-mode does.
10559 This command can be called in any mode to follow a link that has
10562 (org-run-like-in-org-mode 'org-open-at-point))
10565 (defun org-open-link-from-string (s &optional arg reference-buffer)
10566 "Open a link in the string S, as if it was in Org-mode."
10567 (interactive "sLink: \nP")
10568 (let ((reference-buffer (or reference-buffer (current-buffer))))
10570 (let ((org-inhibit-startup (not reference-buffer)))
10573 (goto-char (point-min))
10574 (when reference-buffer
10575 (setq org-link-abbrev-alist-local
10576 (with-current-buffer reference-buffer
10577 org-link-abbrev-alist-local)))
10578 (org-open-at-point arg reference-buffer)))))
10580 (defvar org-open-at-point-functions nil
10581 "Hook that is run when following a link at point.
10583 Functions in this hook must return t if they identify and follow
10584 a link at point. If they don't find anything interesting at point,
10585 they must return nil.")
10587 (defvar org-link-search-inhibit-query nil) ;; dynamically scoped
10588 (defvar clean-buffer-list-kill-buffer-names) ; Defined in midnight.el
10589 (defun org-open-at-point (&optional arg reference-buffer)
10590 "Open link, timestamp, footnote or tags at point.
10592 When point is on a link, follow it. Normally, files will be
10593 opened by an appropriate application. If the optional prefix
10594 argument ARG is non-nil, Emacs will visit the file. With
10595 a double prefix argument, try to open outside of Emacs, in the
10596 application the system uses for this file type.
10598 When point is on a timestamp, open the agenda at the day
10601 When point is a footnote definition, move to the first reference
10602 found. If it is on a reference, move to the associated
10605 When point is on a headline, display a list of every link in the
10606 entry, so it is possible to pick one, or all, of them. If point
10607 is on a tag, call `org-tags-view' instead.
10609 When optional argument REFERENCE-BUFFER is non-nil, it should
10610 specify a buffer from where the link search should happen. This
10611 is used internally by `org-open-link-from-string'.
10613 On top of syntactically correct links, this function will open
10614 the link at point in comments and the first link in a property
10617 ;; On a code block, open block's results.
10618 (unless (call-interactively 'org-babel-open-src-block-result)
10619 (org-load-modules-maybe)
10620 (move-marker org-open-link-marker (point))
10621 (setq org-window-config-before-follow-link (current-window-configuration))
10622 (org-remove-occur-highlights nil nil t)
10623 (unless (run-hook-with-args-until-success 'org-open-at-point-functions)
10624 (let* ((context (org-element-context)) type value)
10625 ;; On an unsupported type, check if point is contained within
10627 (while (and (not (memq (setq type (org-element-type context))
10628 '(comment headline inlinetask link
10629 footnote-definition footnote-reference
10630 node-property timestamp)))
10631 (setq context (org-element-property :parent context))))
10632 (setq value (org-element-property :value context))
10634 ;; Blank lines at the beginning of buffer: bail out.
10635 ((not context) (user-error "No link found"))
10636 ;; Exception n°1: links in property drawers
10637 ((eq type 'node-property)
10638 (org-open-link-from-string
10639 (and (string-match org-any-link-re value)
10640 (match-string-no-properties 0 value))))
10641 ;; Exception n°2: links in comments.
10642 ((eq type 'comment)
10643 (let ((string-rear (replace-regexp-in-string
10644 "^[ \t]*# [ \t]*" ""
10645 (buffer-substring (point) (line-beginning-position))))
10646 (string-front (buffer-substring (point) (line-end-position))))
10648 (let ((org-inhibit-startup t)) (org-mode))
10650 (goto-char (point-min))
10651 (when (and (search-forward string-rear nil t)
10652 (search-forward string-front (line-end-position) t))
10653 (goto-char (match-beginning 0))
10654 (org-open-at-point)
10655 (when (string= string-rear "") (forward-char))))))
10656 ;; On a headline or an inlinetask, but not on a timestamp,
10657 ;; a link, a footnote reference or on tags.
10658 ((and (memq type '(headline inlinetask))
10660 (progn (save-excursion (beginning-of-line)
10661 (looking-at org-complex-heading-regexp))
10662 (or (not (match-beginning 5))
10663 (< (point) (match-beginning 5)))))
10664 (let* ((data (org-offer-links-in-entry (current-buffer) (point) arg))
10666 (links-end (cdr data)))
10668 (dolist (link (if (stringp links) (list links) links))
10669 (search-forward link nil links-end)
10670 (goto-char (match-beginning 0))
10671 (org-open-at-point))
10672 (require 'org-attach)
10673 (org-attach-reveal 'if-exists))))
10674 ;; Do nothing on white spaces after an object, unless point
10675 ;; is right after it.
10678 (goto-char (org-element-property :end context))
10679 (skip-chars-backward " \t")
10681 (user-error "No link found"))
10682 ((eq type 'timestamp) (org-follow-timestamp-link))
10683 ;; On tags within a headline or an inlinetask.
10684 ((and (memq type '(headline inlinetask))
10685 (progn (save-excursion (beginning-of-line)
10686 (looking-at org-complex-heading-regexp))
10687 (and (match-beginning 5)
10688 (>= (point) (match-beginning 5)))))
10689 (org-tags-view arg (substring (match-string 5) 0 -1)))
10691 (let ((type (org-element-property :type context))
10692 (path (org-link-unescape (org-element-property :path context))))
10693 ;; Switch back to REFERENCE-BUFFER needed when called in
10694 ;; a temporary buffer through `org-open-link-from-string'.
10695 (with-current-buffer (or reference-buffer (current-buffer))
10697 ((equal type "file")
10698 (if (string-match "[*?{]" (file-name-nondirectory path))
10700 ;; Look into `org-link-protocols' in order to find
10701 ;; a DEDICATED-FUNCTION to open file. The function
10702 ;; will be applied on raw link instead of parsed
10703 ;; link due to the limitation in `org-add-link-type'
10704 ;; ("open" function called with a single argument).
10705 ;; If no such function is found, fallback to
10706 ;; `org-open-file'.
10708 ;; Note : "file+emacs" and "file+sys" types are
10709 ;; hard-coded in order to escape the previous
10711 (let* ((option (org-element-property :search-option context))
10712 (app (org-element-property :application context))
10713 (dedicated-function
10714 (nth 1 (assoc app org-link-protocols))))
10715 (if dedicated-function
10716 (funcall dedicated-function
10718 (and option (concat "::" option))))
10719 (apply 'org-open-file
10722 ((equal app "emacs") 'emacs)
10723 ((equal app "sys") 'system))
10724 (cond ((not option) nil)
10725 ((org-string-match-p "\\`[0-9]+\\'" option)
10726 (list (string-to-number option)))
10728 (org-link-unescape option)))))))))
10729 ((assoc type org-link-protocols)
10730 (funcall (nth 1 (assoc type org-link-protocols)) path))
10731 ((equal type "help")
10732 (let ((f-or-v (intern path)))
10733 (cond ((fboundp f-or-v) (describe-function f-or-v))
10734 ((boundp f-or-v) (describe-variable f-or-v))
10735 (t (error "Not a known function or variable")))))
10736 ((member type '("http" "https" "ftp" "mailto" "news"))
10737 (browse-url (org-link-escape-browser (concat type ":" path))))
10738 ((equal type "doi")
10740 (org-link-escape-browser (concat org-doi-server-url path))))
10741 ((equal type "message") (browse-url (concat type ":" path)))
10742 ((equal type "shell")
10743 (let ((buf (generate-new-buffer "*Org Shell Output*"))
10745 (if (or (and (org-string-nw-p
10746 org-confirm-shell-link-not-regexp)
10748 org-confirm-shell-link-not-regexp cmd))
10749 (not org-confirm-shell-link-function)
10750 (funcall org-confirm-shell-link-function
10751 (format "Execute \"%s\" in shell? "
10752 (org-add-props cmd nil
10753 'face 'org-warning))))
10755 (message "Executing %s" cmd)
10756 (shell-command cmd buf)
10757 (when (featurep 'midnight)
10758 (setq clean-buffer-list-kill-buffer-names
10760 clean-buffer-list-kill-buffer-names))))
10761 (user-error "Abort"))))
10762 ((equal type "elisp")
10764 (if (or (and (org-string-nw-p
10765 org-confirm-elisp-link-not-regexp)
10766 (org-string-match-p
10767 org-confirm-elisp-link-not-regexp cmd))
10768 (not org-confirm-elisp-link-function)
10769 (funcall org-confirm-elisp-link-function
10770 (format "Execute \"%s\" as elisp? "
10771 (org-add-props cmd nil
10772 'face 'org-warning))))
10773 (message "%s => %s" cmd
10774 (if (eq (string-to-char cmd) ?\()
10776 (call-interactively (read cmd))))
10777 (user-error "Abort"))))
10780 (funcall (nth 1 (assoc "id" org-link-protocols)) path))
10781 ((member type '("coderef" "custom-id" "fuzzy" "radio"))
10782 (unless (run-hook-with-args-until-success
10783 'org-open-link-functions path)
10784 (if (not arg) (org-mark-ring-push)
10785 (switch-to-buffer-other-window
10786 (org-get-buffer-for-internal-link (current-buffer))))
10787 (let ((cmd `(org-link-search
10788 ,(if (member type '("custom-id" "coderef"))
10789 (org-element-property :raw-link context)
10791 ,(cond ((equal arg '(4)) 'occur)
10792 ((equal arg '(16)) 'org-occur))
10793 ,(org-element-property :begin context))))
10794 (condition-case nil
10795 (let ((org-link-search-inhibit-query t))
10797 (error (progn (widen) (eval cmd)))))))
10798 (t (browse-url-at-point))))))
10799 ;; On a footnote reference or at a footnote definition's label.
10800 ((or (eq type 'footnote-reference)
10801 (and (eq type 'footnote-definition)
10803 ;; Do not validate action when point is on the
10804 ;; spaces right after the footnote label, in
10805 ;; order to be on par with behaviour on links.
10806 (skip-chars-forward " \t")
10808 (org-element-property :contents-begin context)))
10809 (if begin (< (point) begin)
10810 (= (org-element-property :post-affiliated context)
10811 (line-beginning-position)))))))
10812 (org-footnote-action))
10813 (t (user-error "No link found")))))
10814 (move-marker org-open-link-marker nil)
10815 (run-hook-with-args 'org-follow-link-hook)))
10817 (defun org-offer-links-in-entry (buffer marker &optional nth zero)
10818 "Offer links in the current entry and return the selected link.
10819 If there is only one link, return it.
10820 If NTH is an integer, return the NTH link found.
10821 If ZERO is a string, check also this string for a link, and if
10822 there is one, return it."
10823 (with-current-buffer buffer
10829 (in-emacs (if (integerp nth) nil nth))
10830 have-zero end links link c)
10831 (when (and (stringp zero) (string-match org-bracket-link-regexp zero))
10832 (push (match-string 0 zero) links)
10833 (setq cnt (1- cnt) have-zero t))
10835 (org-back-to-heading t)
10836 (setq end (save-excursion (outline-next-heading) (point)))
10837 (while (re-search-forward org-any-link-re end t)
10838 (push (match-string 0) links))
10839 (setq links (org-uniquify (reverse links))))
10842 (message "No links"))
10843 ((equal (length links) 1)
10844 (setq link (car links)))
10845 ((and (integerp nth) (>= (length links) (if have-zero (1+ nth) nth)))
10846 (setq link (nth (if have-zero nth (1- nth)) links)))
10847 (t ; we have to select a link
10849 (save-window-excursion
10850 (delete-other-windows)
10851 (with-output-to-temp-buffer "*Select Link*"
10853 (if (not (string-match org-bracket-link-regexp l))
10854 (princ (format "[%c] %s\n" (incf cnt)
10855 (org-remove-angle-brackets l)))
10857 (princ (format "[%c] %s (%s)\n" (incf cnt)
10858 (match-string 3 l) (match-string 1 l)))
10859 (princ (format "[%c] %s\n" (incf cnt)
10860 (match-string 1 l))))))
10862 (org-fit-window-to-buffer (get-buffer-window "*Select Link*"))
10863 (message "Select link to open, RET to open all:")
10864 (setq c (read-char-exclusive))
10865 (and (get-buffer "*Select Link*") (kill-buffer "*Select Link*"))))
10866 (when (equal c ?q) (user-error "Abort"))
10867 (if (equal c ?\C-m)
10869 (setq nth (- c ?0))
10870 (if have-zero (setq nth (1+ nth)))
10871 (unless (and (integerp nth) (>= (length links) nth))
10872 (user-error "Invalid link selection"))
10873 (setq link (nth (1- nth) links)))))
10874 (cons link end))))))
10876 ;; TODO: These functions are deprecated since `org-open-at-point'
10877 ;; hard-codes behaviour for "file+emacs" and "file+sys" types.
10878 (defun org-open-file-with-system (path)
10879 "Open file at PATH using the system way of opening it."
10880 (org-open-file path 'system))
10881 (defun org-open-file-with-emacs (path)
10882 "Open file at PATH in Emacs."
10883 (org-open-file path 'emacs))
10888 (defvar org-create-file-search-functions nil
10889 "List of functions to construct the right search string for a file link.
10890 These functions are called in turn with point at the location to
10891 which the link should point.
10893 A function in the hook should first test if it would like to
10894 handle this file type, for example by checking the `major-mode'
10895 or the file extension. If it decides not to handle this file, it
10896 should just return nil to give other functions a chance. If it
10897 does handle the file, it must return the search string to be used
10898 when following the link. The search string will be part of the
10899 file link, given after a double colon, and `org-open-at-point'
10900 will automatically search for it. If special measures must be
10901 taken to make the search successful, another function should be
10902 added to the companion hook `org-execute-file-search-functions',
10905 A function in this hook may also use `setq' to set the variable
10906 `description' to provide a suggestion for the descriptive text to
10907 be used for this link when it gets inserted into an Org-mode
10908 buffer with \\[org-insert-link].")
10910 (defvar org-execute-file-search-functions nil
10911 "List of functions to execute a file search triggered by a link.
10913 Functions added to this hook must accept a single argument, the
10914 search string that was part of the file link, the part after the
10915 double colon. The function must first check if it would like to
10916 handle this search, for example by checking the `major-mode' or
10917 the file extension. If it decides not to handle this search, it
10918 should just return nil to give other functions a chance. If it
10919 does handle the search, it must return a non-nil value to keep
10920 other functions from trying.
10922 Each function can access the current prefix argument through the
10923 variable `current-prefix-arg'. Note that a single prefix is used
10924 to force opening a link in Emacs, so it may be good to only use a
10925 numeric or double prefix to guide the search function.
10927 In case this is needed, a function in this hook can also restore
10928 the window configuration before `org-open-at-point' was called using:
10930 (set-window-configuration org-window-config-before-follow-link)")
10932 (defun org-link-search (s &optional type avoid-pos stealth)
10933 "Search for a link search option.
10934 If S is surrounded by forward slashes, it is interpreted as a
10935 regular expression. In org-mode files, this will create an `org-occur'
10936 sparse tree. In ordinary files, `occur' will be used to list matches.
10937 If the current buffer is in `dired-mode', grep will be used to search
10938 in all files. If AVOID-POS is given, ignore matches near that position.
10940 When optional argument STEALTH is non-nil, do not modify
10941 visibility around point, thus ignoring
10942 `org-show-hierarchy-above', `org-show-following-heading' and
10943 `org-show-siblings' variables."
10944 (let ((case-fold-search t)
10945 (s0 (mapconcat 'identity (org-split-string s "[ \t\r\n]+") " "))
10946 (markers (concat "\\(?:" (mapconcat (lambda (x) (regexp-quote (car x)))
10947 (append '(("") (" ") ("\t") ("\n"))
10948 org-emphasis-alist)
10951 (pre nil) (post nil)
10952 words re0 re1 re2 re3 re4_ re4 re5 re2a re2a_ reall)
10954 ;; First check if there are any special search functions
10955 ((run-hook-with-args-until-success 'org-execute-file-search-functions s))
10956 ;; Now try the builtin stuff
10957 ((and (equal (string-to-char s0) ?#)
10960 (goto-char (point-min))
10963 (concat "^[ \t]*:CUSTOM_ID:[ \t]+"
10964 (regexp-quote (substring s0 1)) "[ \t]*$") nil t)
10965 (setq type 'dedicated
10966 pos (match-beginning 0))))
10967 ;; There is an exact target for this
10969 (org-back-to-heading t)))
10971 (goto-char (point-min))
10974 (concat "<<" (regexp-quote s0) ">>") nil t)
10975 (setq type 'dedicated
10976 pos (match-beginning 0))))
10977 ;; There is an exact target for this
10980 (goto-char (point-min))
10983 (format "^[ \t]*#\\+NAME: %s" (regexp-quote s0)) nil t)
10984 (setq type 'dedicated pos (match-beginning 0))))
10985 ;; Found an element with a matching #+name affiliated keyword.
10987 ((and (string-match "^(\\(.*\\))$" s0)
10989 (goto-char (point-min))
10992 (concat "[^[]" (regexp-quote
10993 (format org-coderef-label-format
10994 (match-string 1 s0))))
10996 (setq type 'dedicated
10997 pos (1+ (match-beginning 0))))))
10998 ;; There is a coderef target for this
11000 ((string-match "^/\\(.*\\)/$" s)
11001 ;; A regular expression
11003 ((derived-mode-p 'org-mode)
11004 (org-occur (match-string 1 s)))
11005 (t (org-do-occur (match-string 1 s)))))
11006 ((and (derived-mode-p 'org-mode) org-link-search-must-match-exact-headline)
11007 (and (equal (string-to-char s) ?*) (setq s (substring s 1)))
11008 (goto-char (point-min))
11010 ((let (case-fold-search)
11011 (re-search-forward (format org-complex-heading-regexp-format
11014 ;; OK, found a match
11015 (setq type 'dedicated)
11016 (goto-char (match-beginning 0)))
11017 ((and (not org-link-search-inhibit-query)
11018 (eq org-link-search-must-match-exact-headline 'query-to-create)
11019 (y-or-n-p "No match - create this as a new heading? "))
11020 (goto-char (point-max))
11021 (or (bolp) (newline))
11022 (insert "* " s "\n")
11023 (beginning-of-line 0))
11026 (error "No match"))))
11028 ;; A normal search string
11029 (when (equal (string-to-char s) ?*)
11030 ;; Anchor on headlines, post may include tags.
11031 (setq pre "^\\*+[ \t]+\\(?:\\sw+\\)?[ \t]*"
11032 post (org-re "[ \t]*\\(?:[ \t]+:[[:alnum:]_@#%:+]:[ \t]*\\)?$")
11033 s (substring s 1)))
11034 (remove-text-properties
11036 '(face nil mouse-face nil keymap nil fontified nil) s)
11037 ;; Make a series of regular expressions to find a match
11038 (setq words (org-split-string s "[ \n\r\t]+")
11040 re0 (concat "\\(<<" (regexp-quote s0) ">>\\)")
11041 re2 (concat markers "\\(" (mapconcat 'downcase words "[ \t]+")
11043 re2a_ (concat "\\(" (mapconcat 'downcase words
11044 "[ \t\r\n]+") "\\)[ \t\r\n]")
11045 re2a (concat "[ \t\r\n]" re2a_)
11046 re4_ (concat "\\(" (mapconcat 'downcase words
11047 "[^a-zA-Z_\r\n]+") "\\)[^a-zA-Z_]")
11048 re4 (concat "[^a-zA-Z_]" re4_)
11050 re1 (concat pre re2 post)
11051 re3 (concat pre (if pre re4_ re4) post)
11052 re5 (concat pre ".*" re4)
11053 re2 (concat pre re2)
11054 re2a (concat pre (if pre re2a_ re2a))
11055 re4 (concat pre (if pre re4_ re4))
11056 reall (concat "\\(" re0 "\\)\\|\\(" re1 "\\)\\|\\(" re2
11057 "\\)\\|\\(" re3 "\\)\\|\\(" re4 "\\)\\|\\("
11060 ((eq type 'org-occur) (org-occur reall))
11061 ((eq type 'occur) (org-do-occur (downcase reall) 'cleanup))
11062 (t (goto-char (point-min))
11064 (if (or (and (org-search-not-self 1 re0 nil t)
11065 (setq type 'dedicated))
11066 (org-search-not-self 1 re1 nil t)
11067 (org-search-not-self 1 re2 nil t)
11068 (org-search-not-self 1 re2a nil t)
11069 (org-search-not-self 1 re3 nil t)
11070 (org-search-not-self 1 re4 nil t)
11071 (org-search-not-self 1 re5 nil t))
11072 (goto-char (match-beginning 1))
11074 (error "No match"))))))
11075 (and (derived-mode-p 'org-mode)
11077 (org-show-context 'link-search))
11080 (defun org-search-not-self (group &rest args)
11081 "Execute `re-search-forward', but only accept matches that do not
11082 enclose the position of `org-open-link-marker'."
11083 (let ((m org-open-link-marker))
11085 (while (apply 're-search-forward args)
11086 (unless (get-text-property (match-end group) 'intangible) ; Emacs 21
11087 (goto-char (match-end group))
11088 (if (and (or (not (eq (marker-buffer m) (current-buffer)))
11089 (> (match-beginning 0) (marker-position m))
11090 (< (match-end 0) (marker-position m)))
11092 (or (not (org-in-regexp
11093 org-bracket-link-analytic-regexp 1))
11094 (not (match-end 4)) ; no description
11095 (and (<= (match-beginning 4) (point))
11096 (>= (match-end 4) (point))))))
11097 (throw 'exit (point))))))))
11099 (defun org-get-buffer-for-internal-link (buffer)
11100 "Return a buffer to be used for displaying the link target of internal links."
11102 ((not org-display-internal-link-with-indirect-buffer)
11104 ((string-match "(Clone)$" (buffer-name buffer))
11105 (message "Buffer is already a clone, not making another one")
11106 ;; we also do not modify visibility in this case
11108 (t ; make a new indirect buffer for displaying the link
11109 (let* ((bn (buffer-name buffer))
11110 (ibn (concat bn "(Clone)"))
11111 (ib (or (get-buffer ibn) (make-indirect-buffer buffer ibn 'clone))))
11112 (with-current-buffer ib (org-overview))
11115 (defun org-do-occur (regexp &optional cleanup)
11116 "Call the Emacs command `occur'.
11117 If CLEANUP is non-nil, remove the printout of the regular expression
11118 in the *Occur* buffer. This is useful if the regex is long and not useful
11122 (let ((cwin (selected-window)) win beg end)
11123 (when (setq win (get-buffer-window "*Occur*"))
11124 (select-window win))
11125 (goto-char (point-min))
11126 (when (re-search-forward "match[a-z]+" nil t)
11127 (setq beg (match-end 0))
11128 (if (re-search-forward "^[ \t]*[0-9]+" nil t)
11129 (setq end (1- (match-beginning 0)))))
11130 (and beg end (let ((inhibit-read-only t)) (delete-region beg end)))
11131 (goto-char (point-min))
11132 (select-window cwin))))
11134 ;;; The mark ring for links jumps
11136 (defvar org-mark-ring nil
11137 "Mark ring for positions before jumps in Org-mode.")
11138 (defvar org-mark-ring-last-goto nil
11139 "Last position in the mark ring used to go back.")
11140 ;; Fill and close the ring
11141 (setq org-mark-ring nil org-mark-ring-last-goto nil) ;; in case file is reloaded
11142 (loop for i from 1 to org-mark-ring-length do
11143 (push (make-marker) org-mark-ring))
11144 (setcdr (nthcdr (1- org-mark-ring-length) org-mark-ring)
11147 (defun org-mark-ring-push (&optional pos buffer)
11148 "Put the current position or POS into the mark ring and rotate it."
11150 (setq pos (or pos (point)))
11151 (setq org-mark-ring (nthcdr (1- org-mark-ring-length) org-mark-ring))
11152 (move-marker (car org-mark-ring)
11154 (or buffer (current-buffer)))
11156 (substitute-command-keys
11157 "Position saved to mark ring, go back with \\[org-mark-ring-goto].")))
11159 (defun org-mark-ring-goto (&optional n)
11160 "Jump to the previous position in the mark ring.
11161 With prefix arg N, jump back that many stored positions. When
11162 called several times in succession, walk through the entire ring.
11163 Org-mode commands jumping to a different position in the current file,
11164 or to another Org-mode file, automatically push the old position
11168 (if (eq last-command this-command)
11169 (setq p (nthcdr n (or org-mark-ring-last-goto org-mark-ring)))
11170 (setq p org-mark-ring))
11171 (setq org-mark-ring-last-goto p)
11173 (org-pop-to-buffer-same-window (marker-buffer m))
11175 (if (or (outline-invisible-p) (org-invisible-p2)) (org-show-context 'mark-goto))))
11177 (defun org-remove-angle-brackets (s)
11178 (if (equal (substring s 0 1) "<") (setq s (substring s 1)))
11179 (if (equal (substring s -1) ">") (setq s (substring s 0 -1)))
11181 (defun org-add-angle-brackets (s)
11182 (if (equal (substring s 0 1) "<") nil (setq s (concat "<" s)))
11183 (if (equal (substring s -1) ">") nil (setq s (concat s ">")))
11185 (defun org-remove-double-quotes (s)
11186 (if (equal (substring s 0 1) "\"") (setq s (substring s 1)))
11187 (if (equal (substring s -1) "\"") (setq s (substring s 0 -1)))
11190 ;;; Following specific links
11192 (defun org-follow-timestamp-link ()
11193 "Open an agenda view for the time-stamp date/range at point."
11195 ((org-at-date-range-p t)
11196 (let ((org-agenda-start-on-weekday)
11197 (t1 (match-string 1))
11198 (t2 (match-string 2)) tt1 tt2)
11199 (setq tt1 (time-to-days (org-time-string-to-time t1))
11200 tt2 (time-to-days (org-time-string-to-time t2)))
11201 (let ((org-agenda-buffer-tmp-name
11202 (format "*Org Agenda(a:%s)"
11203 (concat (substring t1 0 10) "--" (substring t2 0 10)))))
11204 (org-agenda-list nil tt1 (1+ (- tt2 tt1))))))
11205 ((org-at-timestamp-p t)
11206 (let ((org-agenda-buffer-tmp-name
11207 (format "*Org Agenda(a:%s)" (substring (match-string 1) 0 10))))
11208 (org-agenda-list nil (time-to-days (org-time-string-to-time
11209 (substring (match-string 1) 0 10)))
11211 (t (error "This should not happen"))))
11214 ;;; Following file links
11215 (declare-function mailcap-parse-mailcaps "mailcap" (&optional path force))
11216 (declare-function mailcap-extension-to-mime "mailcap" (extn))
11217 (declare-function mailcap-mime-info
11218 "mailcap" (string &optional request no-decode))
11219 (defvar org-wait nil)
11220 (defun org-open-file (path &optional in-emacs line search)
11221 "Open the file at PATH.
11222 First, this expands any special file name abbreviations. Then the
11223 configuration variable `org-file-apps' is checked if it contains an
11224 entry for this file type, and if yes, the corresponding command is launched.
11226 If no application is found, Emacs simply visits the file.
11228 With optional prefix argument IN-EMACS, Emacs will visit the file.
11229 With a double \\[universal-argument] \\[universal-argument] \
11230 prefix arg, Org tries to avoid opening in Emacs
11231 and to use an external application to visit the file.
11233 Optional LINE specifies a line to go to, optional SEARCH a string
11234 to search for. If LINE or SEARCH is given, the file will be
11235 opened in Emacs, unless an entry from org-file-apps that makes
11236 use of groups in a regexp matches.
11238 If you want to change the way frames are used when following a
11239 link, please customize `org-link-frame-setup'.
11241 If the file does not exist, an error is thrown."
11242 (let* ((file (if (equal path "")
11244 (substitute-in-file-name (expand-file-name path))))
11245 (file-apps (append org-file-apps (org-default-apps)))
11246 (apps (org-remove-if
11247 'org-file-apps-entry-match-against-dlink-p file-apps))
11248 (apps-dlink (org-remove-if-not
11249 'org-file-apps-entry-match-against-dlink-p file-apps))
11250 (remp (and (assq 'remote apps) (org-file-remote-p file)))
11251 (dirp (if remp nil (file-directory-p file)))
11252 (file (if (and dirp org-open-directory-means-index-dot-org)
11253 (concat (file-name-as-directory file) "index.org")
11255 (a-m-a-p (assq 'auto-mode apps))
11256 (dfile (downcase file))
11257 ;; reconstruct the original file: link from the PATH, LINE and SEARCH args
11258 (link (cond ((and (eq line nil)
11262 (concat file "::" (number-to-string line)))
11264 (concat file "::" search))))
11265 (dlink (downcase link))
11266 (old-buffer (current-buffer))
11268 (old-mode major-mode)
11269 ext cmd link-match-data)
11270 (if (string-match "^.*\\.\\([a-zA-Z0-9]+\\.gz\\)$" dfile)
11271 (setq ext (match-string 1 dfile))
11272 (if (string-match "^.*\\.\\([a-zA-Z0-9]+\\)$" dfile)
11273 (setq ext (match-string 1 dfile))))
11275 ((member in-emacs '((16) system))
11276 (setq cmd (cdr (assoc 'system apps))))
11277 (in-emacs (setq cmd 'emacs))
11279 (setq cmd (or (and remp (cdr (assoc 'remote apps)))
11280 (and dirp (cdr (assoc 'directory apps)))
11281 ; first, try matching against apps-dlink
11282 ; if we get a match here, store the match data for later
11283 (let ((match (assoc-default dlink apps-dlink
11286 (progn (setq link-match-data (match-data))
11288 (progn (setq in-emacs (or in-emacs line search))
11289 nil))) ; if we have no match in apps-dlink,
11290 ; always open the file in emacs if line or search
11291 ; is given (for backwards compatibility)
11292 (assoc-default dfile (org-apps-regexp-alist apps a-m-a-p)
11294 (cdr (assoc ext apps))
11295 (cdr (assoc t apps))))))
11296 (when (eq cmd 'system)
11297 (setq cmd (cdr (assoc 'system apps))))
11298 (when (eq cmd 'default)
11299 (setq cmd (cdr (assoc t apps))))
11300 (when (eq cmd 'mailcap)
11302 (mailcap-parse-mailcaps)
11303 (let* ((mime-type (mailcap-extension-to-mime (or ext "")))
11304 (command (mailcap-mime-info mime-type)))
11305 (if (stringp command)
11307 (setq cmd 'emacs))))
11308 (if (and (not (eq cmd 'emacs)) ; Emacs has no problems with non-ex files
11309 (not (file-exists-p file))
11310 (not org-open-non-existing-files))
11311 (user-error "No such file: %s" file))
11313 ((and (stringp cmd) (not (string-match "^\\s-*$" cmd)))
11314 ;; Remove quotes around the file name - we'll use shell-quote-argument.
11315 (while (string-match "['\"]%s['\"]" cmd)
11316 (setq cmd (replace-match "%s" t t cmd)))
11317 (while (string-match "%s" cmd)
11318 (setq cmd (replace-match
11320 (shell-quote-argument
11321 (convert-standard-filename file)))
11324 ;; Replace "%1", "%2" etc. in command with group matches from regex
11326 (let ((match-index 1)
11327 (number-of-groups (- (/ (length link-match-data) 2) 1)))
11328 (set-match-data link-match-data)
11329 (while (<= match-index number-of-groups)
11330 (let ((regex (concat "%" (number-to-string match-index)))
11331 (replace-with (match-string match-index dlink)))
11332 (while (string-match regex cmd)
11333 (setq cmd (replace-match replace-with t t cmd))))
11334 (setq match-index (+ match-index 1)))))
11336 (save-window-excursion
11337 (message "Running %s...done" cmd)
11338 (start-process-shell-command cmd nil cmd)
11339 (and (boundp 'org-wait) (numberp org-wait) (sit-for org-wait))))
11342 (funcall (cdr (assq 'file org-link-frame-setup)) file)
11344 (if line (progn (org-goto-line line)
11345 (if (derived-mode-p 'org-mode)
11347 (if search (org-link-search search))))
11349 (let ((file (convert-standard-filename file)))
11351 (set-match-data link-match-data)
11353 (t (funcall (cdr (assq 'file org-link-frame-setup)) file)))
11354 (and (derived-mode-p 'org-mode) (eq old-mode 'org-mode)
11355 (or (not (equal old-buffer (current-buffer)))
11356 (not (equal old-pos (point))))
11357 (org-mark-ring-push old-pos old-buffer))))
11359 (defun org-file-apps-entry-match-against-dlink-p (entry)
11360 "This function returns non-nil if `entry' uses a regular
11361 expression which should be matched against the whole link by
11364 It assumes that is the case when the entry uses a regular
11365 expression which has at least one grouping construct and the
11366 action is either a lisp form or a command string containing
11367 '%1', i.e. using at least one subexpression match as a
11369 (let ((selector (car entry))
11370 (action (cdr entry)))
11371 (if (stringp selector)
11372 (and (> (regexp-opt-depth selector) 0)
11373 (or (and (stringp action)
11374 (string-match "%[0-9]" action))
11378 (defun org-default-apps ()
11379 "Return the default applications for this operating system."
11381 ((eq system-type 'darwin)
11382 org-file-apps-defaults-macosx)
11383 ((eq system-type 'windows-nt)
11384 org-file-apps-defaults-windowsnt)
11385 (t org-file-apps-defaults-gnu)))
11387 (defun org-apps-regexp-alist (list &optional add-auto-mode)
11388 "Convert extensions to regular expressions in the cars of LIST.
11389 Also, weed out any non-string entries, because the return value is used
11390 only for regexp matching.
11391 When ADD-AUTO-MODE is set, make all matches in `auto-mode-alist'
11392 point to the symbol `emacs', indicating that the file should
11393 be opened in Emacs."
11396 (mapcar (lambda (x)
11397 (if (not (stringp (car x)))
11399 (if (string-match "\\W" (car x))
11401 (cons (concat "\\." (car x) "\\'") (cdr x)))))
11404 (mapcar (lambda (x) (cons (car x) 'emacs)) auto-mode-alist))))
11406 (defvar ange-ftp-name-format) ; to silence the XEmacs compiler.
11407 (defun org-file-remote-p (file)
11408 "Test whether FILE specifies a location on a remote system.
11409 Return non-nil if the location is indeed remote.
11411 For example, the filename \"/user@host:/foo\" specifies a location
11412 on the system \"/user@host:\"."
11413 (cond ((fboundp 'file-remote-p)
11414 (file-remote-p file))
11415 ((fboundp 'tramp-handle-file-remote-p)
11416 (tramp-handle-file-remote-p file))
11417 ((and (boundp 'ange-ftp-name-format)
11418 (string-match (car ange-ftp-name-format) file))
11424 (defun org-get-org-file ()
11425 "Read a filename, with default directory `org-directory'."
11426 (let ((default (or org-default-notes-file remember-data-file)))
11427 (read-file-name (format "File name [%s]: " default)
11428 (file-name-as-directory org-directory)
11431 (defun org-notes-order-reversed-p ()
11432 "Check if the current file should receive notes in reversed order."
11434 ((not org-reverse-note-order) nil)
11435 ((eq t org-reverse-note-order) t)
11436 ((not (listp org-reverse-note-order)) nil)
11438 (let ((all org-reverse-note-order)
11440 (while (setq entry (pop all))
11441 (if (string-match (car entry) buffer-file-name)
11442 (throw 'exit (cdr entry))))
11445 (defvar org-refile-target-table nil
11446 "The list of refile targets, created by `org-refile'.")
11448 (defvar org-agenda-new-buffers nil
11449 "Buffers created to visit agenda files.")
11451 (defvar org-refile-cache nil
11452 "Cache for refile targets.")
11454 (defvar org-refile-markers nil
11455 "All the markers used for caching refile locations.")
11457 (defun org-refile-marker (pos)
11458 "Get a new refile marker, but only if caching is in use."
11459 (if (not org-refile-use-cache)
11461 (let ((m (make-marker)))
11462 (move-marker m pos)
11463 (push m org-refile-markers)
11466 (defun org-refile-cache-clear ()
11467 "Clear the refile cache and disable all the markers."
11468 (mapc (lambda (m) (move-marker m nil)) org-refile-markers)
11469 (setq org-refile-markers nil)
11470 (setq org-refile-cache nil)
11471 (message "Refile cache has been cleared"))
11473 (defun org-refile-cache-check-set (set)
11474 "Check if all the markers in the cache still have live buffers."
11477 (while (and set (setq marker (nth 3 (pop set))))
11478 ;; If `org-refile-use-outline-path' is 'file, marker may be nil
11479 (when (and marker (null (marker-buffer marker)))
11480 (message "Please regenerate the refile cache with `C-0 C-c C-w'")
11482 (throw 'exit nil)))
11485 (defun org-refile-cache-put (set &rest identifiers)
11486 "Push the refile targets SET into the cache, under IDENTIFIERS."
11487 (let* ((key (sha1 (prin1-to-string identifiers)))
11488 (entry (assoc key org-refile-cache)))
11491 (push (cons key set) org-refile-cache))))
11493 (defun org-refile-cache-get (&rest identifiers)
11494 "Retrieve the cached value for refile targets given by IDENTIFIERS."
11496 ((not org-refile-cache) nil)
11497 ((not org-refile-use-cache) (org-refile-cache-clear) nil)
11499 (let ((set (cdr (assoc (sha1 (prin1-to-string identifiers))
11500 org-refile-cache))))
11501 (and set (org-refile-cache-check-set set) set)))))
11503 (defun org-refile-get-targets (&optional default-buffer excluded-entries)
11504 "Produce a table with refile targets."
11505 (let ((case-fold-search nil)
11506 ;; otherwise org confuses "TODO" as a kw and "Todo" as a word
11507 (entries (or org-refile-targets '((nil . (:level . 1)))))
11508 targets tgs txt re files f desc descre fast-path-p level pos0)
11509 (message "Getting targets...")
11510 (with-current-buffer (or default-buffer (current-buffer))
11511 (while (setq entry (pop entries))
11512 (setq files (car entry) desc (cdr entry))
11513 (setq fast-path-p nil)
11515 ((null files) (setq files (list (current-buffer))))
11516 ((eq files 'org-agenda-files)
11517 (setq files (org-agenda-files 'unrestricted)))
11518 ((and (symbolp files) (fboundp files))
11519 (setq files (funcall files)))
11520 ((and (symbolp files) (boundp files))
11521 (setq files (symbol-value files))))
11522 (if (stringp files) (setq files (list files)))
11524 ((eq (car desc) :tag)
11525 (setq descre (concat "^\\*+[ \t]+.*?:" (regexp-quote (cdr desc)) ":")))
11526 ((eq (car desc) :todo)
11527 (setq descre (concat "^\\*+[ \t]+" (regexp-quote (cdr desc)) "[ \t]")))
11528 ((eq (car desc) :regexp)
11529 (setq descre (cdr desc)))
11530 ((eq (car desc) :level)
11531 (setq descre (concat "^\\*\\{" (number-to-string
11532 (if org-odd-levels-only
11533 (1- (* 2 (cdr desc)))
11536 ((eq (car desc) :maxlevel)
11537 (setq fast-path-p t)
11538 (setq descre (concat "^\\*\\{1," (number-to-string
11539 (if org-odd-levels-only
11540 (1- (* 2 (cdr desc)))
11543 (t (error "Bad refiling target description %s" desc)))
11544 (while (setq f (pop files))
11545 (with-current-buffer
11546 (if (bufferp f) f (org-get-agenda-file-buffer f))
11548 (setq tgs (org-refile-cache-get (buffer-file-name) descre))
11550 (if (bufferp f) (setq f (buffer-file-name
11551 (buffer-base-buffer f))))
11552 (setq f (and f (expand-file-name f)))
11553 (if (eq org-refile-use-outline-path 'file)
11554 (push (list (file-name-nondirectory f) f nil nil) tgs))
11558 (goto-char (point-min))
11559 (while (re-search-forward descre nil t)
11560 (goto-char (setq pos0 (point-at-bol)))
11562 (when org-refile-target-verify-function
11564 (or (funcall org-refile-target-verify-function)
11566 (when (and (looking-at org-complex-heading-regexp)
11567 (not (member (match-string 4) excluded-entries))
11569 (setq level (org-reduced-level
11570 (- (match-end 1) (match-beginning 1)))
11571 txt (org-link-display-format (match-string 4))
11572 txt (replace-regexp-in-string "\\( *\[[0-9]+/?[0-9]*%?\]\\)+$" "" txt)
11573 re (format org-complex-heading-regexp-format
11574 (regexp-quote (match-string 4))))
11575 (when org-refile-use-outline-path
11576 (setq txt (mapconcat
11579 (if (eq org-refile-use-outline-path
11581 (list (file-name-nondirectory
11583 (buffer-base-buffer))))
11584 (if (eq org-refile-use-outline-path
11586 (list (buffer-file-name
11587 (buffer-base-buffer)))))
11588 (org-get-outline-path fast-path-p
11592 (push (list txt f re (org-refile-marker (point)))
11594 (when (= (point) pos0)
11595 ;; verification function has not moved point
11596 (goto-char (point-at-eol))))))))
11597 (when org-refile-use-cache
11598 (org-refile-cache-put tgs (buffer-file-name) descre))
11599 (setq targets (append tgs targets))))))
11600 (message "Getting targets...done")
11601 (nreverse targets)))
11603 (defun org-protect-slash (s)
11604 (while (string-match "/" s)
11605 (setq s (replace-match "\\" t t s)))
11608 (defvar org-olpa (make-vector 20 nil))
11610 (defun org-get-outline-path (&optional fastp level heading)
11611 "Return the outline path to the current entry, as a list.
11613 The parameters FASTP, LEVEL, and HEADING are for use by a scanner
11614 routine which makes outline path derivations for an entire file,
11615 avoiding backtracing. Refile target collection makes use of that."
11619 (error "Outline path failure, more than 19 levels"))
11620 (loop for i from level upto 19 do
11621 (aset org-olpa i nil))
11623 (delq nil (append org-olpa nil))
11624 (aset org-olpa level heading)))
11625 (let (rtn case-fold-search)
11629 (while (org-up-heading-safe)
11630 (when (looking-at org-complex-heading-regexp)
11632 (replace-regexp-in-string
11633 ;; Remove statistical/checkboxes cookies
11634 "\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]" ""
11635 (org-match-string-no-properties 4)))
11639 (defun org-format-outline-path (path &optional width prefix separator)
11640 "Format the outline path PATH for display.
11641 WIDTH is the maximum number of characters that is available.
11642 PREFIX is a prefix to be included in the returned string,
11643 such as the file name.
11644 SEPARATOR is inserted between the different parts of the path,
11645 the default is \"/\"."
11646 (setq width (or width 79))
11647 (if prefix (setq width (- width (length prefix))))
11650 (let* ((nsteps (length path))
11651 (total-width (+ nsteps (apply '+ (mapcar 'length path))))
11652 (maxwidth (if (<= total-width width)
11653 10000 ;; everything fits
11654 ;; we need to shorten the level headings
11655 (/ (- width nsteps) nsteps)))
11656 (org-odd-levels-only nil)
11658 (total (1+ (length prefix))))
11659 (setq maxwidth (max maxwidth 10))
11661 (if prefix (or separator "/"))
11665 (if (and (= n nsteps) (< maxwidth 10000))
11666 (setq maxwidth (- total-width total)))
11667 (if (< (length h) maxwidth)
11668 (progn (setq total (+ total (length h) 1)) h)
11669 (setq h (substring h 0 (- maxwidth 2))
11670 total (+ total maxwidth 1))
11671 (if (string-match "[ \t]+\\'" h)
11672 (setq h (substring h 0 (match-beginning 0))))
11673 (setq h (concat h "..")))
11674 (org-add-props h nil 'face
11675 (nth (% (1- n) org-n-level-faces)
11678 path (or separator "/"))))))
11680 (defun org-display-outline-path (&optional file current separator just-return-string)
11681 "Display the current outline path in the echo area.
11683 If FILE is non-nil, prepend the output with the file name.
11684 If CURRENT is non-nil, append the current heading to the output.
11685 SEPARATOR is passed through to `org-format-outline-path'. It separates
11686 the different parts of the path and defaults to \"/\".
11687 If JUST-RETURN-STRING is non-nil, return a string, don't display a message."
11689 (let* (case-fold-search
11690 (bfn (buffer-file-name (buffer-base-buffer)))
11691 (path (and (derived-mode-p 'org-mode) (org-get-outline-path)))
11693 (if current (setq path (append path
11695 (org-back-to-heading t)
11696 (if (looking-at org-complex-heading-regexp)
11697 (list (match-string 4)))))))
11699 (org-format-outline-path
11702 (and file bfn (concat (file-name-nondirectory bfn) separator))
11704 (if just-return-string
11705 (org-no-properties res)
11706 (org-unlogged-message "%s" res))))
11708 (defvar org-refile-history nil
11709 "History for refiling operations.")
11711 (defvar org-after-refile-insert-hook nil
11712 "Hook run after `org-refile' has inserted its stuff at the new location.
11713 Note that this is still *before* the stuff will be removed from
11714 the *old* location.")
11716 (defvar org-capture-last-stored-marker)
11717 (defvar org-refile-keep nil
11718 "Non-nil means `org-refile' will copy instead of refile.")
11721 "Like `org-refile', but copy."
11723 (let ((org-refile-keep t))
11724 (funcall 'org-refile nil nil nil "Copy")))
11726 (defun org-refile (&optional arg default-buffer rfloc msg)
11727 "Move the entry or entries at point to another heading.
11728 The list of target headings is compiled using the information in
11729 `org-refile-targets', which see.
11731 At the target location, the entry is filed as a subitem of the
11732 target heading. Depending on `org-reverse-note-order', the new
11733 subitem will either be the first or the last subitem.
11735 If there is an active region, all entries in that region will be
11736 refiled. However, the region must fulfill the requirement that
11737 the first heading sets the top-level of the moved text.
11739 With prefix arg ARG, the command will only visit the target
11740 location and not actually move anything.
11742 With a double prefix arg \\[universal-argument] \\[universal-argument], go to the location where the last
11743 refiling operation has put the subtree.
11745 With a numeric prefix argument of `2', refile to the running clock.
11747 With a numeric prefix argument of `3', emulate `org-refile-keep'
11748 being set to `t' and copy to the target location, don't move it.
11749 Beware that keeping refiled entries may result in duplicated ID
11752 RFLOC can be a refile location obtained in a different way.
11754 MSG is a string to replace \"Refile\" in the default prompt with
11755 another verb. E.g. `org-copy' sets this parameter to \"Copy\".
11757 See also `org-refile-use-outline-path' and `org-completion-use-ido'.
11759 If you are using target caching (see `org-refile-use-cache'), you
11760 have to clear the target cache in order to find new targets.
11761 This can be done with a 0 prefix (`C-0 C-c C-w') or a triple
11762 prefix argument (`C-u C-u C-u C-c C-w')."
11764 (if (member arg '(0 (64)))
11765 (org-refile-cache-clear)
11766 (let* ((actionmsg (cond (msg msg)
11767 ((equal arg 3) "Refile (and keep)")
11769 (cbuf (current-buffer))
11770 (regionp (org-region-active-p))
11771 (region-start (and regionp (region-beginning)))
11772 (region-end (and regionp (region-end)))
11773 (filename (buffer-file-name (buffer-base-buffer cbuf)))
11774 (org-refile-keep (if (equal arg 3) t org-refile-keep))
11775 pos it nbuf file re level reversed)
11776 (setq last-command nil)
11778 (goto-char region-start)
11779 (or (bolp) (goto-char (point-at-bol)))
11780 (setq region-start (point))
11781 (unless (or (org-kill-is-subtree-p
11782 (buffer-substring region-start region-end))
11783 (prog1 org-refile-active-region-within-subtree
11784 (let ((s (point-at-eol)))
11785 (org-toggle-heading)
11786 (setq region-end (+ (- (point-at-eol) s) region-end)))))
11787 (user-error "The region is not a (sequence of) subtree(s)")))
11788 (if (equal arg '(16))
11789 (org-refile-goto-last-stored)
11792 org-clock-hd-marker (marker-buffer org-clock-hd-marker)
11794 (setq it (list (or org-clock-heading "running clock")
11796 (marker-buffer org-clock-hd-marker))
11798 (marker-position org-clock-hd-marker)))
11801 (let (heading-text)
11803 (unless (and arg (listp arg))
11804 (org-back-to-heading t)
11806 (replace-regexp-in-string
11807 org-bracket-link-regexp
11809 (nth 4 (org-heading-components)))))
11810 (org-refile-get-location
11811 (cond ((and arg (listp arg)) "Goto")
11812 (regionp (concat actionmsg " region to"))
11813 (t (concat actionmsg " subtree \""
11814 heading-text "\" to")))
11816 (and (not (equal '(4) arg))
11817 org-refile-allow-creating-parent-nodes)
11819 (setq file (nth 1 it)
11824 (equal (buffer-file-name) file)
11826 (and (>= pos region-start)
11827 (<= pos region-end))
11828 (and (>= pos (point))
11829 (< pos (save-excursion
11830 (org-end-of-subtree t t))))))
11831 (error "Cannot refile to position inside the tree or region"))
11832 (setq nbuf (or (find-buffer-visiting file)
11833 (find-file-noselect file)))
11834 (if (and arg (not (equal arg 3)))
11836 (org-pop-to-buffer-same-window nbuf)
11838 (org-show-context 'org-goto))
11841 (org-kill-new (buffer-substring region-start region-end))
11842 (org-save-markers-in-region region-start region-end))
11843 (org-copy-subtree 1 nil t))
11844 (with-current-buffer (setq nbuf (or (find-buffer-visiting file)
11845 (find-file-noselect file)))
11846 (setq reversed (org-notes-order-reversed-p))
11853 (looking-at org-outline-regexp)
11854 (setq level (org-get-valid-level (funcall outline-level) 1))
11857 (or (outline-next-heading) (point-max))
11858 (or (save-excursion (org-get-next-sibling))
11859 (org-end-of-subtree t t)
11863 (goto-char (point-max))
11864 (goto-char (point-min))
11865 (or (outline-next-heading) (goto-char (point-max)))))
11866 (if (not (bolp)) (newline))
11867 (org-paste-subtree level)
11868 (when org-log-refile
11869 (org-add-log-setup 'refile nil nil 'findpos org-log-refile)
11870 (unless (eq org-log-refile 'note)
11871 (save-excursion (org-add-log-note))))
11872 (and org-auto-align-tags
11873 (let ((org-loop-over-headlines-in-active-region nil))
11874 (org-set-tags nil t)))
11875 (let ((bookmark-name (plist-get org-bookmark-names-plist
11877 (when bookmark-name
11878 (with-demoted-errors
11879 (bookmark-set bookmark-name))))
11880 ;; If we are refiling for capture, make sure that the
11881 ;; last-capture pointers point here
11882 (when (org-bound-and-true-p org-refile-for-capture)
11883 (let ((bookmark-name (plist-get org-bookmark-names-plist
11884 :last-capture-marker)))
11885 (when bookmark-name
11886 (with-demoted-errors
11887 (bookmark-set bookmark-name))))
11888 (move-marker org-capture-last-stored-marker (point)))
11889 (if (fboundp 'deactivate-mark) (deactivate-mark))
11890 (run-hooks 'org-after-refile-insert-hook))))
11891 (unless org-refile-keep
11893 (delete-region (point) (+ (point) (- region-end region-start)))
11895 (and (org-back-to-heading t) (point))
11896 (min (1+ (buffer-size)) (org-end-of-subtree t t) (point)))))
11897 (when (featurep 'org-inlinetask)
11898 (org-inlinetask-remove-END-maybe))
11899 (setq org-markers-to-move nil)
11900 (message (concat actionmsg " to \"%s\" in file %s: done") (car it) file)))))))
11902 (defun org-refile-goto-last-stored ()
11903 "Go to the location where the last refile was stored."
11905 (bookmark-jump (plist-get org-bookmark-names-plist :last-refile))
11906 (message "This is the location of the last refile"))
11908 (defun org-refile--get-location (refloc tbl)
11909 "When user refile to REFLOC, find the associated target in TBL.
11910 Also check `org-refile-target-table'."
11914 (lambda (r) (or (assoc r tbl)
11915 (assoc r org-refile-target-table)))
11916 (list (replace-regexp-in-string "/$" "" refloc)
11917 (replace-regexp-in-string "\\([^/]\\)$" "\\1/" refloc))))))
11919 (defun org-refile-get-location (&optional prompt default-buffer new-nodes
11921 "Prompt the user for a refile location, using PROMPT.
11922 PROMPT should not be suffixed with a colon and a space, because
11923 this function appends the default value from
11924 `org-refile-history' automatically, if that is not empty.
11925 When NO-EXCLUDE is set, do not exclude headlines in the current subtree,
11926 this is used for the GOTO interface."
11927 (let ((org-refile-targets org-refile-targets)
11928 (org-refile-use-outline-path org-refile-use-outline-path)
11930 (when (and (derived-mode-p 'org-mode)
11931 (not org-refile-use-cache)
11935 (setq excluded-entries
11936 (append excluded-entries (list (org-get-heading t t)))))))
11937 (setq org-refile-target-table
11938 (org-refile-get-targets default-buffer excluded-entries)))
11939 (unless org-refile-target-table
11940 (user-error "No refile targets"))
11941 (let* ((cbuf (current-buffer))
11942 (partial-completion-mode nil)
11943 (cfn (buffer-file-name (buffer-base-buffer cbuf)))
11944 (cfunc (if (and org-refile-use-outline-path
11945 org-outline-path-complete-in-steps)
11946 'org-olpath-completing-read
11947 'org-icompleting-read))
11948 (extra (if org-refile-use-outline-path "/" ""))
11949 (cbnex (concat (buffer-name) extra))
11950 (filename (and cfn (expand-file-name cfn)))
11953 (if (and (not (member org-refile-use-outline-path
11954 '(file full-file-path)))
11955 (not (equal filename (nth 1 x))))
11956 (cons (concat (car x) extra " ("
11957 (file-name-nondirectory (nth 1 x)) ")")
11959 (cons (concat (car x) extra) (cdr x))))
11960 org-refile-target-table))
11961 (completion-ignore-case t)
11963 (prompt (concat prompt
11964 (or (and (car org-refile-history)
11965 (concat " (default " (car org-refile-history) ")"))
11966 (and (assoc cbnex tbl) (setq cdef cbnex)
11967 (concat " (default " cbnex ")"))) ": "))
11968 pa answ parent-target child parent old-hist)
11969 (setq old-hist org-refile-history)
11970 (setq answ (funcall cfunc prompt tbl nil (not new-nodes)
11971 nil 'org-refile-history (or cdef (car org-refile-history))))
11972 (if (setq pa (org-refile--get-location answ tbl))
11974 (org-refile-check-position pa)
11975 (when (or (not org-refile-history)
11976 (not (eq old-hist org-refile-history))
11977 (not (equal (car pa) (car org-refile-history))))
11978 (setq org-refile-history
11979 (cons (car pa) (if (assoc (car org-refile-history) tbl)
11981 (cdr org-refile-history))))
11982 (if (equal (car org-refile-history) (nth 1 org-refile-history))
11983 (pop org-refile-history)))
11985 (if (string-match "\\`\\(.*\\)/\\([^/]+\\)\\'" answ)
11987 (setq parent (match-string 1 answ)
11988 child (match-string 2 answ))
11989 (setq parent-target (org-refile--get-location parent tbl))
11990 (when (and parent-target
11991 (or (eq new-nodes t)
11992 (and (eq new-nodes 'confirm)
11993 (y-or-n-p (format "Create new node \"%s\"? "
11995 (org-refile-new-child parent-target child)))
11996 (user-error "Invalid target location")))))
11998 (declare-function org-string-nw-p "org-macs" (s))
11999 (defun org-refile-check-position (refile-pointer)
12000 "Check if the refile pointer matches the headline to which it points."
12001 (let* ((file (nth 1 refile-pointer))
12002 (re (nth 2 refile-pointer))
12003 (pos (nth 3 refile-pointer))
12005 (if (and (not (markerp pos)) (not file))
12006 (user-error "Please indicate a target file in the refile path")
12007 (when (org-string-nw-p re)
12008 (setq buffer (if (markerp pos)
12009 (marker-buffer pos)
12010 (or (find-buffer-visiting file)
12011 (find-file-noselect file))))
12012 (with-current-buffer buffer
12017 (beginning-of-line 1)
12018 (unless (org-looking-at-p re)
12019 (user-error "Invalid refile position, please clear the cache with `C-0 C-c C-w' before refiling")))))))))
12021 (defun org-refile-new-child (parent-target child)
12022 "Use refile target PARENT-TARGET to add new CHILD below it."
12023 (unless parent-target
12024 (error "Cannot find parent for new node"))
12025 (let ((file (nth 1 parent-target))
12026 (pos (nth 3 parent-target))
12028 (with-current-buffer (or (find-buffer-visiting file)
12029 (find-file-noselect file))
12035 (goto-char (point-max))
12036 (if (not (bolp)) (newline)))
12037 (when (looking-at org-outline-regexp)
12038 (setq level (funcall outline-level))
12039 (org-end-of-subtree t t))
12040 (org-back-over-empty-lines)
12041 (insert "\n" (make-string
12042 (if pos (org-get-valid-level level 1) 1) ?*)
12044 (beginning-of-line 0)
12045 (list (concat (car parent-target) "/" child) file "" (point)))))))
12047 (defun org-olpath-completing-read (prompt collection &rest args)
12048 "Read an outline path like a file name."
12049 (let ((thetable collection)
12050 (org-completion-use-ido nil) ; does not work with ido.
12051 (org-completion-use-iswitchb nil)) ; or iswitchb
12053 'org-icompleting-read prompt
12054 (lambda (string predicate &optional flag)
12055 (let (rtn r f (l (length string)))
12059 (try-completion string thetable))
12062 (setq rtn (all-completions string thetable predicate))
12065 (setq r (substring x l))
12066 (if (string-match " ([^)]*)$" x)
12067 (setq f (match-string 0 x))
12069 (if (string-match "/" r)
12070 (concat string (substring r 0 (match-end 0)) f)
12075 (assoc string thetable)))))
12078 ;;;; Dynamic blocks
12080 (defun org-find-dblock (name)
12081 "Find the first dynamic block with name NAME in the buffer.
12082 If not found, stay at current position and return nil."
12083 (let ((case-fold-search t) pos)
12085 (goto-char (point-min))
12086 (setq pos (and (re-search-forward
12087 (concat "^[ \t]*#\\+\\(?:BEGIN\\|begin\\):[ \t]+" name "\\>") nil t)
12088 (match-beginning 0))))
12089 (if pos (goto-char pos))
12092 (defun org-create-dblock (plist)
12093 "Create a dynamic block section, with parameters taken from PLIST.
12094 PLIST must contain a :name entry which is used as the name of the block."
12095 (when (string-match "\\S-" (buffer-substring (point-at-bol) (point-at-eol)))
12098 (let ((col (current-column))
12099 (name (plist-get plist :name)))
12100 (insert "#+BEGIN: " name)
12102 (if (eq (car plist) :name)
12103 (setq plist (cddr plist))
12104 (insert " " (prin1-to-string (pop plist)))))
12105 (insert "\n\n" (make-string col ?\ ) "#+END:\n")
12106 (beginning-of-line -2)))
12108 (defun org-prepare-dblock ()
12109 "Prepare dynamic block for refresh.
12110 This empties the block, puts the cursor at the insert position and returns
12111 the property list including an extra property :name with the block name."
12112 (unless (looking-at org-dblock-start-re)
12113 (user-error "Not at a dynamic block"))
12114 (let* ((begdel (1+ (match-end 0)))
12115 (name (org-no-properties (match-string 1)))
12116 (params (append (list :name name)
12117 (read (concat "(" (match-string 3) ")")))))
12119 (beginning-of-line 1)
12120 (skip-chars-forward " \t")
12121 (setq params (plist-put params :indentation-column (current-column))))
12122 (unless (re-search-forward org-dblock-end-re nil t)
12123 (error "Dynamic block not terminated"))
12126 (list :content (buffer-substring
12127 begdel (match-beginning 0)))))
12128 (delete-region begdel (match-beginning 0))
12133 (defun org-map-dblocks (&optional command)
12134 "Apply COMMAND to all dynamic blocks in the current buffer.
12135 If COMMAND is not given, use `org-update-dblock'."
12136 (let ((cmd (or command 'org-update-dblock)))
12138 (goto-char (point-min))
12139 (while (re-search-forward org-dblock-start-re nil t)
12140 (goto-char (match-beginning 0))
12142 (condition-case nil
12144 (error (message "Error during update of dynamic block"))))
12145 (unless (re-search-forward org-dblock-end-re nil t)
12146 (error "Dynamic block not terminated"))))))
12148 (defun org-dblock-update (&optional arg)
12149 "User command for updating dynamic blocks.
12150 Update the dynamic block at point. With prefix ARG, update all dynamic
12151 blocks in the buffer."
12154 (org-update-all-dblocks)
12155 (or (looking-at org-dblock-start-re)
12156 (org-beginning-of-dblock))
12157 (org-update-dblock)))
12159 (defun org-update-dblock ()
12160 "Update the dynamic block at point.
12161 This means to empty the block, parse for parameters and then call
12162 the correct writing function."
12165 (let* ((win (selected-window))
12167 (line (org-current-line))
12168 (params (org-prepare-dblock))
12169 (name (plist-get params :name))
12170 (indent (plist-get params :indentation-column))
12171 (cmd (intern (concat "org-dblock-write:" name))))
12172 (message "Updating dynamic block `%s' at line %d..." name line)
12173 (funcall cmd params)
12174 (message "Updating dynamic block `%s' at line %d...done" name line)
12176 (when (and indent (> indent 0))
12177 (setq indent (make-string indent ?\ ))
12179 (select-window win)
12180 (org-beginning-of-dblock)
12182 (while (not (looking-at org-dblock-end-re))
12184 (beginning-of-line 2))
12185 (when (looking-at org-dblock-end-re)
12186 (and (looking-at "[ \t]+")
12187 (replace-match ""))
12188 (insert indent)))))))
12190 (defun org-beginning-of-dblock ()
12191 "Find the beginning of the dynamic block at point.
12192 Error if there is no such block at point."
12193 (let ((pos (point))
12196 (if (and (re-search-backward org-dblock-start-re nil t)
12197 (setq beg (match-beginning 0))
12198 (re-search-forward org-dblock-end-re nil t)
12199 (> (match-end 0) pos))
12202 (error "Not in a dynamic block"))))
12204 (defun org-update-all-dblocks ()
12205 "Update all dynamic blocks in the buffer.
12206 This function can be used in a hook."
12208 (when (derived-mode-p 'org-mode)
12209 (org-map-dblocks 'org-update-dblock)))
12214 (declare-function org-export-backend-name "org-export" (cl-x))
12215 (declare-function org-export-backend-options "org-export" (cl-x))
12216 (defun org-get-export-keywords ()
12217 "Return a list of all currently understood export keywords.
12218 Export keywords include options, block names, attributes and
12219 keywords relative to each registered export back-end."
12222 (org-bound-and-true-p org-export--registered-backends)
12223 (delq nil keywords))
12224 ;; Back-end name (for keywords, like #+LATEX:)
12225 (push (upcase (symbol-name (org-export-backend-name backend))) keywords)
12226 (dolist (option-entry (org-export-backend-options backend))
12227 ;; Back-end options.
12228 (push (nth 1 option-entry) keywords)))))
12230 (defconst org-options-keywords
12231 '("ARCHIVE:" "AUTHOR:" "BIND:" "CATEGORY:" "COLUMNS:" "CREATOR:" "DATE:"
12232 "DESCRIPTION:" "DRAWERS:" "EMAIL:" "EXCLUDE_TAGS:" "FILETAGS:" "INCLUDE:"
12233 "INDEX:" "KEYWORDS:" "LANGUAGE:" "MACRO:" "OPTIONS:" "PROPERTY:"
12234 "PRIORITIES:" "SELECT_TAGS:" "SEQ_TODO:" "SETUPFILE:" "STARTUP:" "TAGS:"
12235 "TITLE:" "TODO:" "TYP_TODO:" "SELECT_TAGS:" "EXCLUDE_TAGS:"))
12237 (defcustom org-structure-template-alist
12238 '(("s" "#+BEGIN_SRC ?\n\n#+END_SRC" "<src lang=\"?\">\n\n</src>")
12239 ("e" "#+BEGIN_EXAMPLE\n?\n#+END_EXAMPLE" "<example>\n?\n</example>")
12240 ("q" "#+BEGIN_QUOTE\n?\n#+END_QUOTE" "<quote>\n?\n</quote>")
12241 ("v" "#+BEGIN_VERSE\n?\n#+END_VERSE" "<verse>\n?\n</verse>")
12242 ("V" "#+BEGIN_VERBATIM\n?\n#+END_VERBATIM" "<verbatim>\n?\n</verbatim>")
12243 ("c" "#+BEGIN_CENTER\n?\n#+END_CENTER" "<center>\n?\n</center>")
12244 ("l" "#+BEGIN_LaTeX\n?\n#+END_LaTeX"
12245 "<literal style=\"latex\">\n?\n</literal>")
12246 ("L" "#+LaTeX: " "<literal style=\"latex\">?</literal>")
12247 ("h" "#+BEGIN_HTML\n?\n#+END_HTML"
12248 "<literal style=\"html\">\n?\n</literal>")
12249 ("H" "#+HTML: " "<literal style=\"html\">?</literal>")
12250 ("a" "#+BEGIN_ASCII\n?\n#+END_ASCII" "")
12251 ("A" "#+ASCII: " "")
12252 ("i" "#+INDEX: ?" "#+INDEX: ?")
12253 ("I" "#+INCLUDE: %file ?"
12254 "<include file=%file markup=\"?\">"))
12255 "Structure completion elements.
12256 This is a list of abbreviation keys and values. The value gets inserted
12257 if you type `<' followed by the key and then press the completion key,
12258 usually `M-TAB'. %file will be replaced by a file name after prompting
12259 for the file using completion. The cursor will be placed at the position
12260 of the `?` in the template.
12261 There are two templates for each key, the first uses the original Org syntax,
12262 the second uses Emacs Muse-like syntax tags. These Muse-like tags become
12263 the default when the /org-mtags.el/ module has been loaded. See also the
12264 variable `org-mtags-prefer-muse-templates'."
12265 :group 'org-completion
12268 (string :tag "Key")
12269 (string :tag "Template")
12270 (string :tag "Muse Template"))))
12272 (defun org-try-structure-completion ()
12273 "Try to complete a structure template before point.
12274 This looks for strings like \"<e\" on an otherwise empty line and
12276 (let ((l (buffer-substring (point-at-bol) (point)))
12278 (when (and (looking-at "[ \t]*$")
12279 (string-match "^[ \t]*<\\([a-zA-Z]+\\)$" l)
12280 (setq a (assoc (match-string 1 l) org-structure-template-alist)))
12281 (org-complete-expand-structure-template (+ -1 (point-at-bol)
12282 (match-beginning 1)) a)
12285 (defun org-complete-expand-structure-template (start cell)
12286 "Expand a structure template."
12287 (let* ((musep (org-bound-and-true-p org-mtags-prefer-muse-templates))
12288 (rpl (nth (if musep 2 1) cell))
12290 (delete-region start (point))
12291 (when (string-match "\\`[ \t]*#\\+" rpl)
12294 ((not (string-match "\\S-" (buffer-substring (point-at-bol) (point))))
12295 (setq ind (buffer-substring (point-at-bol) (point))))
12297 (setq start (point))
12298 (if (string-match "%file" rpl)
12299 (setq rpl (replace-match
12303 (abbreviate-file-name (read-file-name "Include file: ")))
12306 (setq rpl (mapconcat 'identity (split-string rpl "\n")
12307 (concat "\n" ind)))
12309 (if (re-search-backward "\\?" start t) (delete-char 1))))
12311 ;;;; TODO, DEADLINE, Comments
12313 (defun org-toggle-comment ()
12314 "Change the COMMENT state of an entry."
12317 (org-back-to-heading)
12318 (looking-at org-complex-heading-regexp)
12319 (goto-char (or (match-end 3) (match-end 2) (match-end 1)))
12320 (skip-chars-forward " \t")
12321 (unless (memq (char-before) '(?\s ?\t)) (insert " "))
12322 (if (org-in-commented-heading-p t)
12323 (delete-region (point)
12324 (progn (search-forward " " (line-end-position) 'move)
12325 (skip-chars-forward " \t")
12327 (insert org-comment-string)
12328 (unless (eolp) (insert " ")))))
12330 (defvar org-last-todo-state-is-todo nil
12331 "This is non-nil when the last TODO state change led to a TODO state.
12332 If the last change removed the TODO tag or switched to DONE, then
12335 (defvar org-setting-tags nil) ; dynamically skipped
12337 (defvar org-todo-setup-filter-hook nil
12338 "Hook for functions that pre-filter todo specs.
12339 Each function takes a todo spec and returns either nil or the spec
12340 transformed into canonical form." )
12342 (defvar org-todo-get-default-hook nil
12343 "Hook for functions that get a default item for todo.
12344 Each function takes arguments (NEW-MARK OLD-MARK) and returns either
12345 nil or a string to be used for the todo mark." )
12347 (defvar org-agenda-headline-snapshot-before-repeat)
12349 (defun org-current-effective-time ()
12350 "Return current time adjusted for `org-extend-today-until' variable."
12351 (let* ((ct (org-current-time))
12352 (dct (decode-time ct))
12355 (org-use-last-clock-out-time-as-effective-time
12356 (or (org-clock-get-last-clock-out-time) ct))
12357 ((and org-use-effective-time (< (nth 2 dct) org-extend-today-until))
12358 (encode-time 0 59 23 (1- (nth 3 dct)) (nth 4 dct) (nth 5 dct)))
12362 (defun org-todo-yesterday (&optional arg)
12363 "Like `org-todo' but the time of change will be 23:59 of yesterday."
12365 (if (eq major-mode 'org-agenda-mode)
12366 (apply 'org-agenda-todo-yesterday arg)
12367 (let* ((hour (third (decode-time
12368 (org-current-time))))
12369 (org-extend-today-until (1+ hour)))
12372 (defvar org-block-entry-blocking ""
12373 "First entry preventing the TODO state change.")
12375 (defun org-cancel-repeater ()
12376 "Cancel a repeater by setting its numeric value to zero."
12379 (org-back-to-heading t)
12380 (let ((bound1 (point))
12381 (bound0 (save-excursion (outline-next-heading) (point))))
12382 (when (re-search-forward
12383 (concat "\\(" org-scheduled-time-regexp "\\)\\|\\("
12384 org-deadline-time-regexp "\\)\\|\\("
12385 org-ts-regexp "\\)")
12387 (if (re-search-backward "[ \t]+\\(?:[.+]\\)?\\+\\([0-9]+\\)[hdwmy]" bound1 t)
12388 (replace-match "0" t nil nil 1))))))
12390 (defun org-todo (&optional arg)
12391 "Change the TODO state of an item.
12392 The state of an item is given by a keyword at the start of the heading,
12394 *** TODO Write paper
12397 The different keywords are specified in the variable `org-todo-keywords'.
12398 By default the available states are \"TODO\" and \"DONE\".
12399 So for this example: when the item starts with TODO, it is changed to DONE.
12400 When it starts with DONE, the DONE is removed. And when neither TODO nor
12401 DONE are present, add TODO at the beginning of the heading.
12403 With \\[universal-argument] prefix arg, use completion to determine the new \
12405 With numeric prefix arg, switch to that state.
12406 With a double \\[universal-argument] prefix, switch to the next set of TODO \
12407 keywords (nextset).
12408 With a triple \\[universal-argument] prefix, circumvent any state blocking.
12409 With a numeric prefix arg of 0, inhibit note taking for the change.
12410 With a numeric prefix arg of -1, cancel repeater to allow marking as DONE.
12412 When called through ELisp, arg is also interpreted in the following way:
12413 'none -> empty state
12414 \"\"(empty string) -> switch to empty state
12415 'done -> switch to DONE
12416 'nextset -> switch to the next set of keywords
12417 'previousset -> switch to the previous set of keywords
12418 \"WAITING\" -> switch to the specified keyword, but only if it
12419 really is a member of `org-todo-keywords'."
12421 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
12422 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
12423 'region-start-level 'region))
12424 org-loop-over-headlines-in-active-region)
12427 org-loop-over-headlines-in-active-region
12428 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
12429 (if (equal arg '(16)) (setq arg 'nextset))
12430 (when (equal arg -1) (org-cancel-repeater) (setq arg nil))
12431 (let ((org-blocker-hook org-blocker-hook)
12434 (when (equal arg '(64))
12435 (setq arg nil org-blocker-hook nil))
12436 (when (and org-blocker-hook
12437 (or org-inhibit-blocking
12438 (org-entry-get nil "NOBLOCKING")))
12439 (setq org-blocker-hook nil))
12442 (org-back-to-heading t)
12443 (when (org-in-commented-heading-p t)
12444 (org-toggle-comment)
12446 (if (looking-at org-outline-regexp) (goto-char (1- (match-end 0))))
12447 (or (looking-at (concat " +" org-todo-regexp "\\( +\\|[ \t]*$\\)"))
12448 (looking-at "\\(?: *\\|[ \t]*$\\)"))
12449 (let* ((match-data (match-data))
12450 (startpos (point-at-bol))
12451 (logging (save-match-data (org-entry-get nil "LOGGING" t t)))
12452 (org-log-done org-log-done)
12453 (org-log-repeat org-log-repeat)
12454 (org-todo-log-states org-todo-log-states)
12455 (org-inhibit-logging
12457 (progn (setq arg nil) 'note) org-inhibit-logging))
12458 (this (match-string 1))
12459 (hl-pos (match-beginning 0))
12460 (head (org-get-todo-sequence-head this))
12461 (ass (assoc head org-todo-kwd-alist))
12462 (interpret (nth 1 ass))
12463 (done-word (nth 3 ass))
12464 (final-done-word (nth 4 ass))
12465 (org-last-state (or this ""))
12466 (completion-ignore-case t)
12467 (member (member this org-todo-keywords-1))
12468 (tail (cdr member))
12470 ((and org-todo-key-trigger
12471 (or (and (equal arg '(4))
12472 (eq org-use-fast-todo-selection 'prefix))
12473 (and (not arg) org-use-fast-todo-selection
12474 (not (eq org-use-fast-todo-selection
12476 ;; Use fast selection
12477 (org-fast-todo-selection))
12478 ((and (equal arg '(4))
12479 (or (not org-use-fast-todo-selection)
12480 (not org-todo-key-trigger)))
12481 ;; Read a state with completion
12482 (org-icompleting-read
12483 "State: " (mapcar 'list org-todo-keywords-1)
12487 (if tail (car tail) nil)
12488 (car org-todo-keywords-1)))
12490 (if (equal member org-todo-keywords-1)
12493 (nth (- (length org-todo-keywords-1)
12495 org-todo-keywords-1)
12496 (org-last org-todo-keywords-1))))
12497 ((and (eq org-use-fast-todo-selection t) (equal arg '(4))
12498 (setq arg nil))) ; hack to fall back to cycling
12500 ;; user or caller requests a specific state
12502 ((equal arg "") nil)
12503 ((eq arg 'none) nil)
12504 ((eq arg 'done) (or done-word (car org-done-keywords)))
12506 (or (car (cdr (member head org-todo-heads)))
12507 (car org-todo-heads)))
12508 ((eq arg 'previousset)
12509 (let ((org-todo-heads (reverse org-todo-heads)))
12510 (or (car (cdr (member head org-todo-heads)))
12511 (car org-todo-heads))))
12512 ((car (member arg org-todo-keywords-1)))
12514 (user-error "State `%s' not valid in this file" arg))
12515 ((nth (1- (prefix-numeric-value arg))
12516 org-todo-keywords-1))))
12517 ((null member) (or head (car org-todo-keywords-1)))
12518 ((equal this final-done-word) nil) ;; -> make empty
12519 ((null tail) nil) ;; -> first entry
12520 ((memq interpret '(type priority))
12521 (if (eq this-command last-command)
12523 (if (> (length tail) 0)
12524 (or done-word (car org-done-keywords))
12529 (run-hook-with-args-until-success
12530 'org-todo-get-default-hook org-state org-last-state)
12532 (next (if org-state (concat " " org-state " ") " "))
12533 (change-plist (list :type 'todo-state-change :from this :to org-state
12534 :position startpos))
12536 (when org-blocker-hook
12537 (setq org-last-todo-state-is-todo
12538 (not (member this org-done-keywords)))
12539 (unless (save-excursion
12541 (org-with-wide-buffer
12542 (run-hook-with-args-until-failure
12543 'org-blocker-hook change-plist))))
12544 (if (org-called-interactively-p 'interactive)
12545 (user-error "TODO state change from %s to %s blocked (by \"%s\")"
12546 this org-state org-block-entry-blocking)
12548 (message "TODO state change from %s to %s blocked (by \"%s\")"
12549 this org-state org-block-entry-blocking)
12550 (throw 'exit nil))))
12551 (store-match-data match-data)
12552 (replace-match next t t)
12553 (cond ((equal this org-state)
12554 (message "TODO state was already %s" (org-trim next)))
12555 ((pos-visible-in-window-p hl-pos)
12556 (message "TODO state changed to %s" (org-trim next))))
12558 (setq head (org-get-todo-sequence-head org-state)
12559 ass (assoc head org-todo-kwd-alist)
12560 interpret (nth 1 ass)
12561 done-word (nth 3 ass)
12562 final-done-word (nth 4 ass)))
12563 (when (memq arg '(nextset previousset))
12564 (message "Keyword-Set %d/%d: %s"
12565 (- (length org-todo-sets) -1
12566 (length (memq (assoc org-state org-todo-sets) org-todo-sets)))
12567 (length org-todo-sets)
12568 (mapconcat 'identity (assoc org-state org-todo-sets) " ")))
12569 (setq org-last-todo-state-is-todo
12570 (not (member org-state org-done-keywords)))
12571 (setq now-done-p (and (member org-state org-done-keywords)
12572 (not (member this org-done-keywords))))
12573 (and logging (org-local-logging logging))
12574 (when (and (or org-todo-log-states org-log-done)
12575 (not (eq org-inhibit-logging t))
12576 (not (memq arg '(nextset previousset))))
12577 ;; we need to look at recording a time and note
12578 (setq dolog (or (nth 1 (assoc org-state org-todo-log-states))
12579 (nth 2 (assoc this org-todo-log-states))))
12580 (if (and (eq dolog 'note) (eq org-inhibit-logging 'note))
12581 (setq dolog 'time))
12582 (when (or (and (not org-state) (not org-closed-keep-when-no-todo))
12584 (member org-state org-not-done-keywords)
12585 (not (member this org-not-done-keywords))))
12586 ;; This is now a todo state and was not one before
12587 ;; If there was a CLOSED time stamp, get rid of it.
12588 (org-add-planning-info nil nil 'closed))
12589 (when (and now-done-p org-log-done)
12590 ;; It is now done, and it was not done before
12591 (org-add-planning-info 'closed (org-current-effective-time))
12592 (if (and (not dolog) (eq 'note org-log-done))
12593 (org-add-log-setup 'done org-state this 'findpos 'note)))
12594 (when (and org-state dolog)
12595 ;; This is a non-nil state, and we need to log it
12596 (org-add-log-setup 'state org-state this 'findpos dolog)))
12597 ;; Fixup tag positioning
12598 (org-todo-trigger-tag-changes org-state)
12599 (and org-auto-align-tags (not org-setting-tags) (org-set-tags nil t))
12600 (when org-provide-todo-statistics
12601 (org-update-parent-todo-statistics))
12602 (run-hooks 'org-after-todo-state-change-hook)
12603 (if (and arg (not (member org-state org-done-keywords)))
12604 (setq head (org-get-todo-sequence-head org-state)))
12605 (put-text-property (point-at-bol) (point-at-eol) 'org-todo-head head)
12606 ;; Do we need to trigger a repeat?
12608 (when (boundp 'org-agenda-headline-snapshot-before-repeat)
12609 ;; This is for the agenda, take a snapshot of the headline.
12611 (setq org-agenda-headline-snapshot-before-repeat
12612 (org-get-heading))))
12613 (org-auto-repeat-maybe org-state))
12614 ;; Fixup cursor location if close to the keyword
12615 (if (and (outline-on-heading-p)
12617 (save-excursion (beginning-of-line 1)
12618 (looking-at org-todo-line-regexp))
12619 (< (point) (+ 2 (or (match-end 2) (match-end 1)))))
12621 (goto-char (or (match-end 2) (match-end 1)))
12622 (and (looking-at " ") (just-one-space))))
12623 (when org-trigger-hook
12625 (run-hook-with-args 'org-trigger-hook change-plist)))
12626 (when commentp (org-toggle-comment))))))))
12628 (defun org-block-todo-from-children-or-siblings-or-parent (change-plist)
12629 "Block turning an entry into a TODO, using the hierarchy.
12630 This checks whether the current task should be blocked from state
12631 changes. Such blocking occurs when:
12633 1. The task has children which are not all in a completed state.
12635 2. A task has a parent with the property :ORDERED:, and there
12636 are siblings prior to the current task with incomplete
12639 3. The parent of the task is blocked because it has siblings that should
12640 be done first, or is child of a block grandparent TODO entry."
12642 (if (not org-enforce-todo-dependencies)
12643 t ; if locally turned off don't block
12645 ;; If this is not a todo state change, or if this entry is already DONE,
12647 (when (or (not (eq (plist-get change-plist :type) 'todo-state-change))
12648 (member (plist-get change-plist :from)
12649 (cons 'done org-done-keywords))
12650 (member (plist-get change-plist :to)
12651 (cons 'todo org-not-done-keywords))
12652 (not (plist-get change-plist :to)))
12653 (throw 'dont-block t))
12654 ;; If this task has children, and any are undone, it's blocked
12656 (org-back-to-heading t)
12657 (let ((this-level (funcall outline-level)))
12658 (outline-next-heading)
12659 (let ((child-level (funcall outline-level)))
12660 (while (and (not (eobp))
12661 (> child-level this-level))
12662 ;; this todo has children, check whether they are all
12664 (if (and (not (org-entry-is-done-p))
12665 (org-entry-is-todo-p))
12666 (progn (setq org-block-entry-blocking (org-get-heading))
12667 (throw 'dont-block nil)))
12668 (outline-next-heading)
12669 (setq child-level (funcall outline-level))))))
12670 ;; Otherwise, if the task's parent has the :ORDERED: property, and
12671 ;; any previous siblings are undone, it's blocked
12673 (org-back-to-heading t)
12674 (let* ((pos (point))
12675 (parent-pos (and (org-up-heading-safe) (point))))
12676 (if (not parent-pos) (throw 'dont-block t)) ; no parent
12677 (when (and (org-not-nil (org-entry-get (point) "ORDERED"))
12679 (re-search-forward org-not-done-heading-regexp pos t))
12680 (setq org-block-entry-blocking (match-string 0))
12681 (throw 'dont-block nil)) ; block, there is an older sibling not done.
12682 ;; Search further up the hierarchy, to see if an ancestor is blocked
12684 (goto-char parent-pos)
12685 (if (not (looking-at org-not-done-heading-regexp))
12686 (throw 'dont-block t)) ; do not block, parent is not a TODO
12688 (setq parent-pos (and (org-up-heading-safe) (point)))
12689 (if (not parent-pos) (throw 'dont-block t)) ; no parent
12690 (when (and (org-not-nil (org-entry-get (point) "ORDERED"))
12692 (re-search-forward org-not-done-heading-regexp pos t)
12693 (setq org-block-entry-blocking (org-get-heading)))
12694 (throw 'dont-block nil)))))))) ; block, older sibling not done.
12696 (defcustom org-track-ordered-property-with-tag nil
12697 "Should the ORDERED property also be shown as a tag?
12698 The ORDERED property decides if an entry should require subtasks to be
12699 completed in sequence. Since a property is not very visible, setting
12700 this option means that toggling the ORDERED property with the command
12701 `org-toggle-ordered-property' will also toggle a tag ORDERED. That tag is
12702 not relevant for the behavior, but it makes things more visible.
12704 Note that toggling the tag with tags commands will not change the property
12705 and therefore not influence behavior!
12707 This can be t, meaning the tag ORDERED should be used, It can also be a
12708 string to select a different tag for this task."
12711 (const :tag "No tracking" nil)
12712 (const :tag "Track with ORDERED tag" t)
12713 (string :tag "Use other tag")))
12715 (defun org-toggle-ordered-property ()
12716 "Toggle the ORDERED property of the current entry.
12717 For better visibility, you can track the value of this property with a tag.
12718 See variable `org-track-ordered-property-with-tag'."
12720 (let* ((t1 org-track-ordered-property-with-tag)
12721 (tag (and t1 (if (stringp t1) t1 "ORDERED"))))
12723 (org-back-to-heading)
12724 (if (org-entry-get nil "ORDERED")
12726 (org-delete-property "ORDERED")
12727 (and tag (org-toggle-tag tag 'off))
12728 (message "Subtasks can be completed in arbitrary order"))
12729 (org-entry-put nil "ORDERED" "t")
12730 (and tag (org-toggle-tag tag 'on))
12731 (message "Subtasks must be completed in sequence")))))
12733 (defvar org-blocked-by-checkboxes) ; dynamically scoped
12734 (defun org-block-todo-from-checkboxes (change-plist)
12735 "Block turning an entry into a TODO, using checkboxes.
12736 This checks whether the current task should be blocked from state
12737 changes because there are unchecked boxes in this entry."
12738 (if (not org-enforce-todo-checkbox-dependencies)
12739 t ; if locally turned off don't block
12741 ;; If this is not a todo state change, or if this entry is already DONE,
12743 (when (or (not (eq (plist-get change-plist :type) 'todo-state-change))
12744 (member (plist-get change-plist :from)
12745 (cons 'done org-done-keywords))
12746 (member (plist-get change-plist :to)
12747 (cons 'todo org-not-done-keywords))
12748 (not (plist-get change-plist :to)))
12749 (throw 'dont-block t))
12750 ;; If this task has checkboxes that are not checked, it's blocked
12752 (org-back-to-heading t)
12753 (let ((beg (point)) end)
12754 (outline-next-heading)
12757 (if (org-list-search-forward
12758 (concat (org-item-beginning-re)
12759 "\\(?:\\[@\\(?:start:\\)?\\([0-9]+\\|[A-Za-z]\\)\\][ \t]*\\)?"
12763 (if (boundp 'org-blocked-by-checkboxes)
12764 (setq org-blocked-by-checkboxes t))
12765 (throw 'dont-block nil)))))
12766 t))) ; do not block
12768 (defun org-entry-blocked-p ()
12769 "Is the current entry blocked?"
12770 (org-with-silent-modifications
12771 (if (org-entry-get nil "NOBLOCKING")
12772 nil ;; Never block this entry
12773 (not (run-hook-with-args-until-failure
12775 (list :type 'todo-state-change
12780 (defun org-update-statistics-cookies (all)
12781 "Update the statistics cookie, either from TODO or from checkboxes.
12782 This should be called with the cursor in a line with a statistics cookie."
12786 (org-update-checkbox-count 'all)
12787 (org-map-entries 'org-update-parent-todo-statistics))
12788 (if (not (org-at-heading-p))
12789 (org-update-checkbox-count)
12790 (let ((pos (point-marker))
12792 (ignore-errors (org-back-to-heading t))
12793 (if (not (org-at-heading-p))
12794 (org-update-checkbox-count)
12795 (setq l1 (org-outline-level))
12796 (setq end (save-excursion
12797 (outline-next-heading)
12798 (if (org-at-heading-p) (setq l2 (org-outline-level)))
12800 (if (and (save-excursion
12802 "^[ \t]*\\([-+*]\\|[0-9]+[.)]\\) \\[[- X]\\]" end t))
12803 (not (save-excursion (re-search-forward
12804 ":COOKIE_DATA:.*\\<todo\\>" end t))))
12805 (org-update-checkbox-count)
12806 (if (and l2 (> l2 l1))
12809 (org-update-parent-todo-statistics))
12811 (beginning-of-line 1)
12812 (while (re-search-forward
12813 "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)"
12815 (replace-match (if (match-end 2) "[100%]" "[0/0]") t t)))))
12817 (move-marker pos nil)))))
12819 (defvar org-entry-property-inherited-from) ;; defined below
12820 (defun org-update-parent-todo-statistics ()
12821 "Update any statistics cookie in the parent of the current headline.
12822 When `org-hierarchical-todo-statistics' is nil, statistics will cover
12823 the entire subtree and this will travel up the hierarchy and update
12824 statistics everywhere."
12825 (let* ((prop (save-excursion (org-up-heading-safe)
12826 (org-entry-get nil "COOKIE_DATA" 'inherit)))
12827 (recursive (or (not org-hierarchical-todo-statistics)
12828 (and prop (string-match "\\<recursive\\>" prop))))
12829 (lim (or (and prop (marker-position org-entry-property-inherited-from))
12832 (box-re "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)")
12833 level ltoggle l1 new ndel
12834 (cnt-all 0) (cnt-done 0) is-percent kwd
12835 checkbox-beg ov ovs ove cookie-present)
12838 (beginning-of-line 1)
12839 (setq ltoggle (funcall outline-level))
12840 ;; Three situations are to consider:
12842 ;; 1. if `org-hierarchical-todo-statistics' is nil, repeat up
12843 ;; to the top-level ancestor on the headline;
12845 ;; 2. If parent has "recursive" property, repeat up to the
12846 ;; headline setting that property, taking inheritance into
12849 ;; 3. Else, move up to direct parent and proceed only once.
12850 (while (and (setq level (org-up-heading-safe))
12851 (or recursive first)
12853 (setq first nil cookie-present nil)
12857 (downcase (or (org-entry-get nil "COOKIE_DATA")
12860 (while (re-search-forward box-re (point-at-eol) t)
12861 (setq cnt-all 0 cnt-done 0 cookie-present t)
12862 (setq is-percent (match-end 2) checkbox-beg (match-beginning 0))
12864 (unless (outline-next-heading) (throw 'exit nil))
12865 (while (and (looking-at org-complex-heading-regexp)
12866 (> (setq l1 (length (match-string 1))) level))
12867 (setq kwd (and (or recursive (= l1 ltoggle))
12869 (if (or (eq org-provide-todo-statistics 'all-headlines)
12870 (and (eq org-provide-todo-statistics t)
12871 (or (member kwd org-done-keywords)))
12872 (and (listp org-provide-todo-statistics)
12873 (stringp (car org-provide-todo-statistics))
12874 (or (member kwd org-provide-todo-statistics)
12875 (member kwd org-done-keywords)))
12876 (and (listp org-provide-todo-statistics)
12877 (listp (car org-provide-todo-statistics))
12878 (or (member kwd (car org-provide-todo-statistics))
12879 (and (member kwd org-done-keywords)
12880 (member kwd (cadr org-provide-todo-statistics))))))
12881 (setq cnt-all (1+ cnt-all))
12882 (if (eq org-provide-todo-statistics t)
12883 (and kwd (setq cnt-all (1+ cnt-all)))))
12884 (when (or (and (member org-provide-todo-statistics '(t all-headlines))
12885 (member kwd org-done-keywords))
12886 (and (listp org-provide-todo-statistics)
12887 (listp (car org-provide-todo-statistics))
12888 (member kwd org-done-keywords)
12889 (member kwd (cadr org-provide-todo-statistics)))
12890 (and (listp org-provide-todo-statistics)
12891 (stringp (car org-provide-todo-statistics))
12892 (member kwd org-done-keywords)))
12893 (setq cnt-done (1+ cnt-done)))
12894 (outline-next-heading)))
12897 (format "[%d%%]" (/ (* 100 cnt-done) (max 1 cnt-all)))
12898 (format "[%d/%d]" cnt-done cnt-all))
12899 ndel (- (match-end 0) checkbox-beg))
12900 ;; handle overlays when updating cookie from column view
12901 (when (setq ov (car (overlays-at checkbox-beg)))
12902 (setq ovs (overlay-start ov) ove (overlay-end ov))
12903 (delete-overlay ov))
12904 (goto-char checkbox-beg)
12906 (delete-region (point) (+ (point) ndel))
12907 (when org-auto-align-tags (org-fix-tags-on-the-fly))
12908 (when ov (move-overlay ov ovs ove)))
12909 (when cookie-present
12910 (run-hook-with-args 'org-after-todo-statistics-hook
12911 cnt-done (- cnt-all cnt-done))))))
12912 (run-hooks 'org-todo-statistics-hook)))
12914 (defvar org-after-todo-statistics-hook nil
12915 "Hook that is called after a TODO statistics cookie has been updated.
12916 Each function is called with two arguments: the number of not-done entries
12917 and the number of done entries.
12919 For example, the following function, when added to this hook, will switch
12920 an entry to DONE when all children are done, and back to TODO when new
12921 entries are set to a TODO status. Note that this hook is only called
12922 when there is a statistics cookie in the headline!
12924 (defun org-summary-todo (n-done n-not-done)
12925 \"Switch entry to DONE when all subentries are done, to TODO otherwise.\"
12926 (let (org-log-done org-log-states) ; turn off logging
12927 (org-todo (if (= n-not-done 0) \"DONE\" \"TODO\"))))
12930 (defvar org-todo-statistics-hook nil
12931 "Hook that is run whenever Org thinks TODO statistics should be updated.
12932 This hook runs even if there is no statistics cookie present, in which case
12933 `org-after-todo-statistics-hook' would not run.")
12935 (defun org-todo-trigger-tag-changes (state)
12936 "Apply the changes defined in `org-todo-state-tags-triggers'."
12937 (let ((l org-todo-state-tags-triggers)
12939 (when (or (not state) (equal state ""))
12940 (setq changes (append changes (cdr (assoc "" l)))))
12941 (when (and (stringp state) (> (length state) 0))
12942 (setq changes (append changes (cdr (assoc state l)))))
12943 (when (member state org-not-done-keywords)
12944 (setq changes (append changes (cdr (assoc 'todo l)))))
12945 (when (member state org-done-keywords)
12946 (setq changes (append changes (cdr (assoc 'done l)))))
12947 (dolist (c changes)
12948 (org-toggle-tag (car c) (if (cdr c) 'on 'off)))))
12950 (defun org-local-logging (value)
12951 "Get logging settings from a property VALUE."
12953 ;; directly set the variables, they are already local.
12954 (setq org-log-done nil
12956 org-todo-log-states nil)
12957 (setq words (org-split-string value))
12958 (while (setq w (pop words))
12960 ((setq a (assoc w org-startup-options))
12961 (and (member (nth 1 a) '(org-log-done org-log-repeat))
12962 (set (nth 1 a) (nth 2 a))))
12963 ((setq a (org-extract-log-state-settings w))
12964 (and (member (car a) org-todo-keywords-1)
12965 (push a org-todo-log-states)))))))
12967 (defun org-get-todo-sequence-head (kwd)
12968 "Return the head of the TODO sequence to which KWD belongs.
12969 If KWD is not set, check if there is a text property remembering the
12974 (or (get-text-property (point-at-bol) 'org-todo-head)
12976 (setq p (next-single-property-change (point-at-bol) 'org-todo-head
12977 nil (point-at-eol)))
12978 (get-text-property p 'org-todo-head))))
12979 ((not (member kwd org-todo-keywords-1))
12980 (car org-todo-keywords-1))
12981 (t (nth 2 (assoc kwd org-todo-kwd-alist))))))
12983 (defun org-fast-todo-selection ()
12984 "Fast TODO keyword selection with single keys.
12985 Returns the new TODO keyword, or nil if no state change should occur."
12986 (let* ((fulltable org-todo-key-alist)
12987 (done-keywords org-done-keywords) ;; needed for the faces.
12988 (maxlen (apply 'max (mapcar
12990 (if (stringp (car x)) (string-width (car x)) 0))
12993 (fwidth (+ maxlen 3 1 3))
12994 (ncol (/ (- (window-width) 4) fwidth))
12998 (save-window-excursion
13000 (set-buffer (get-buffer-create " *Org todo*"))
13001 (org-switch-to-buffer-other-window (get-buffer-create " *Org todo*")))
13003 (org-set-local 'org-done-keywords done-keywords)
13004 (setq tbl fulltable cnt 0)
13005 (while (setq e (pop tbl))
13007 ((equal e '(:startgroup))
13008 (push '() groups) (setq ingroup t)
13009 (when (not (= cnt 0))
13013 ((equal e '(:endgroup))
13014 (setq ingroup nil cnt 0)
13016 ((equal e '(:newline))
13017 (when (not (= cnt 0))
13021 (while (equal (car tbl) '(:newline))
13023 (setq tbl (cdr tbl)))))
13025 (setq tg (car e) c (cdr e))
13026 (if ingroup (push tg (car groups)))
13027 (setq tg (org-add-props tg nil 'face
13028 (org-get-todo-face tg)))
13029 (if (and (= cnt 0) (not ingroup)) (insert " "))
13030 (insert "[" c "] " tg (make-string
13031 (- fwidth 4 (length tg)) ?\ ))
13032 (when (= (setq cnt (1+ cnt)) ncol)
13034 (if ingroup (insert " "))
13037 (goto-char (point-min))
13038 (if (not expert) (org-fit-window-to-buffer))
13039 (message "[a-z..]:Set [SPC]:clear")
13040 (setq c (let ((inhibit-quit t)) (read-char-exclusive)))
13043 (and (= c ?q) (not (rassoc c fulltable))))
13044 (setq quit-flag t))
13046 ((setq e (rassoc c fulltable) tg (car e))
13048 (t (setq quit-flag t)))))))
13050 (defun org-entry-is-todo-p ()
13051 (member (org-get-todo-state) org-not-done-keywords))
13053 (defun org-entry-is-done-p ()
13054 (member (org-get-todo-state) org-done-keywords))
13056 (defun org-get-todo-state ()
13057 "Return the TODO keyword of the current subtree."
13059 (org-back-to-heading t)
13060 (and (looking-at org-todo-line-regexp)
13062 (match-string 2))))
13064 (defun org-at-date-range-p (&optional inactive-ok)
13065 "Is the cursor inside a date range?"
13069 (let ((pos (point)))
13070 (skip-chars-backward "^[<\r\n")
13071 (skip-chars-backward "<[")
13072 (and (looking-at (if inactive-ok org-tr-regexp-both org-tr-regexp))
13073 (>= (match-end 0) pos)
13075 (skip-chars-backward "^<[\r\n")
13076 (skip-chars-backward "<[")
13077 (and (looking-at (if inactive-ok org-tr-regexp-both org-tr-regexp))
13078 (>= (match-end 0) pos)
13082 (defun org-get-repeat (&optional tagline)
13083 "Check if there is a deadline/schedule with repeater in this entry."
13086 (org-back-to-heading t)
13087 (and (re-search-forward (if tagline
13088 (concat tagline "\\s-*" org-repeat-re)
13090 (org-entry-end-position) t)
13091 (match-string-no-properties 1)))))
13093 (defvar org-last-changed-timestamp)
13094 (defvar org-last-inserted-timestamp)
13095 (defvar org-log-post-message)
13096 (defvar org-log-note-purpose)
13097 (defvar org-log-note-how)
13098 (defvar org-log-note-extra)
13099 (defun org-auto-repeat-maybe (done-word)
13100 "Check if the current headline contains a repeated deadline/schedule.
13101 If yes, set TODO state back to what it was and change the base date
13102 of repeating deadline/scheduled time stamps to new date.
13103 This function is run automatically after each state change to a DONE state."
13104 ;; last-state is dynamically scoped into this function
13105 (let* ((repeat (org-get-repeat))
13106 (aa (assoc org-last-state org-todo-kwd-alist))
13107 (interpret (nth 1 aa))
13109 (whata '(("h" . hour) ("d" . day) ("m" . month) ("y" . year)))
13110 (msg "Entry repeats: ")
13112 (org-todo-log-states nil)
13113 re type n what ts time to-state)
13114 (when (and repeat (not (zerop (string-to-number (substring repeat 1)))))
13115 (if (eq org-log-repeat t) (setq org-log-repeat 'state))
13116 (setq to-state (or (org-entry-get nil "REPEAT_TO_STATE")
13117 org-todo-repeat-to-state))
13118 (unless (and to-state (member to-state org-todo-keywords-1))
13119 (setq to-state (if (eq interpret 'type) org-last-state head)))
13120 (org-todo to-state)
13121 (when (or org-log-repeat (org-entry-get nil "CLOCK"))
13122 (org-entry-put nil "LAST_REPEAT" (format-time-string
13123 (org-time-stamp-format t t))))
13124 (when org-log-repeat
13125 (if (or (memq 'org-add-log-note (default-value 'post-command-hook))
13126 (memq 'org-add-log-note post-command-hook))
13127 ;; OK, we are already setup for some record
13128 (if (eq org-log-repeat 'note)
13129 ;; make sure we take a note, not only a time stamp
13130 (setq org-log-note-how 'note))
13131 ;; Set up for taking a record
13132 (org-add-log-setup 'state (or done-word (car org-done-keywords))
13134 'findpos org-log-repeat)))
13135 (org-back-to-heading t)
13136 (org-add-planning-info nil nil 'closed)
13137 (setq re (concat "\\(" org-scheduled-time-regexp "\\)\\|\\("
13138 org-deadline-time-regexp "\\)\\|\\("
13139 org-ts-regexp "\\)"))
13140 (while (re-search-forward
13141 re (save-excursion (outline-next-heading) (point)) t)
13142 (setq type (if (match-end 1) org-scheduled-string
13143 (if (match-end 3) org-deadline-string "Plain:"))
13144 ts (match-string (if (match-end 2) 2 (if (match-end 4) 4 0))))
13145 (when (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([hdwmy]\\)" ts)
13146 (setq n (string-to-number (match-string 2 ts))
13147 what (match-string 3 ts))
13148 (if (equal what "w") (setq n (* n 7) what "d"))
13149 (if (and (equal what "h") (not (string-match "[0-9]\\{1,2\\}:[0-9]\\{2\\}" ts)))
13150 (user-error "Cannot repeat in Repeat in %d hour(s) because no hour has been set" n))
13151 ;; Preparation, see if we need to modify the start date for the change
13152 (when (match-end 1)
13153 (setq time (save-match-data (org-time-string-to-time ts)))
13155 ((equal (match-string 1 ts) ".")
13156 ;; Shift starting date to today
13157 (org-timestamp-change
13158 (- (org-today) (time-to-days time))
13160 ((equal (match-string 1 ts) "+")
13161 (let ((nshiftmax 10) (nshift 0))
13162 (while (or (= nshift 0)
13163 (<= (time-to-days time)
13164 (time-to-days (current-time))))
13165 (when (= (incf nshift) nshiftmax)
13166 (or (y-or-n-p (message "%d repeater intervals were not enough to shift date past today. Continue? " nshift))
13167 (user-error "Abort")))
13168 (org-timestamp-change n (cdr (assoc what whata)))
13169 (org-at-timestamp-p t)
13170 (setq ts (match-string 1))
13171 (setq time (save-match-data (org-time-string-to-time ts)))))
13172 (org-timestamp-change (- n) (cdr (assoc what whata)))
13173 ;; rematch, so that we have everything in place for the real shift
13174 (org-at-timestamp-p t)
13175 (setq ts (match-string 1))
13176 (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([hdwmy]\\)" ts))))
13177 (save-excursion (org-timestamp-change n (cdr (assoc what whata)) nil t))
13178 (setq msg (concat msg type " " org-last-changed-timestamp " "))))
13179 (setq org-log-post-message msg)
13180 (message "%s" msg))))
13182 (defun org-show-todo-tree (arg)
13183 "Make a compact tree which shows all headlines marked with TODO.
13184 The tree will show the lines where the regexp matches, and all higher
13185 headlines above the match.
13186 With a \\[universal-argument] prefix, prompt for a regexp to match.
13187 With a numeric prefix N, construct a sparse tree for the Nth element
13188 of `org-todo-keywords-1'."
13190 (let ((case-fold-search nil)
13192 (cond ((null arg) org-not-done-regexp)
13194 (let ((kwd (org-icompleting-read "Keyword (or KWD1|KWD2|...): "
13195 (mapcar 'list org-todo-keywords-1))))
13197 (mapconcat 'identity (org-split-string kwd "|") "\\|")
13199 ((<= (prefix-numeric-value arg) (length org-todo-keywords-1))
13200 (regexp-quote (nth (1- (prefix-numeric-value arg))
13201 org-todo-keywords-1)))
13202 (t (user-error "Invalid prefix argument: %s" arg)))))
13203 (message "%d TODO entries found"
13204 (org-occur (concat "^" org-outline-regexp " *" kwd-re )))))
13206 (defun org-deadline (arg &optional time)
13207 "Insert the \"DEADLINE:\" string with a timestamp to make a deadline.
13208 With one universal prefix argument, remove any deadline from the item.
13209 With two universal prefix arguments, prompt for a warning delay.
13210 With argument TIME, set the deadline at the corresponding date. TIME
13211 can either be an Org date like \"2011-07-24\" or a delta like \"+2d\"."
13213 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
13214 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
13215 'region-start-level 'region))
13216 org-loop-over-headlines-in-active-region)
13218 `(org-deadline ',arg ,time)
13219 org-loop-over-headlines-in-active-region
13220 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
13221 (let* ((old-date (org-entry-get nil "DEADLINE"))
13222 (old-date-time (if old-date (org-time-string-to-time old-date)))
13223 (repeater (and old-date
13225 "\\([.+-]+[0-9]+[hdwmy]\\(?:[/ ][-+]?[0-9]+[hdwmy]\\)?\\) ?"
13227 (match-string 1 old-date))))
13230 (when (and old-date org-log-redeadline)
13231 (org-add-log-setup 'deldeadline nil old-date 'findpos
13232 org-log-redeadline))
13233 (org-remove-timestamp-with-keyword org-deadline-string)
13234 (message "Item no longer has a deadline."))
13237 (org-back-to-heading t)
13238 (if (re-search-forward
13239 org-deadline-time-regexp
13240 (save-excursion (outline-next-heading) (point)) t)
13241 (let* ((rpl0 (match-string 1))
13242 (rpl (replace-regexp-in-string " -[0-9]+[hdwmy]" "" rpl0)))
13244 (concat org-deadline-string
13250 (org-read-date nil t nil "Warn starting from" old-date-time)))
13251 (time-to-days old-date-time))))
13253 (user-error "No deadline information to update"))))
13255 (org-add-planning-info 'deadline time 'closed)
13256 (when (and old-date org-log-redeadline
13257 (not (equal old-date
13258 (substring org-last-inserted-timestamp 1 -1))))
13259 (org-add-log-setup 'redeadline nil old-date 'findpos
13260 org-log-redeadline))
13263 (org-back-to-heading t)
13264 (when (re-search-forward (concat org-deadline-string " "
13265 org-last-inserted-timestamp)
13267 (outline-next-heading) (point)) t)
13268 (goto-char (1- (match-end 0)))
13269 (insert " " repeater)
13270 (setq org-last-inserted-timestamp
13271 (concat (substring org-last-inserted-timestamp 0 -1)
13273 (substring org-last-inserted-timestamp -1))))))
13274 (message "Deadline on %s" org-last-inserted-timestamp))))))
13276 (defun org-schedule (arg &optional time)
13277 "Insert the SCHEDULED: string with a timestamp to schedule a TODO item.
13278 With one universal prefix argument, remove any scheduling date from the item.
13279 With two universal prefix arguments, prompt for a delay cookie.
13280 With argument TIME, scheduled at the corresponding date. TIME can
13281 either be an Org date like \"2011-07-24\" or a delta like \"+2d\"."
13283 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
13284 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
13285 'region-start-level 'region))
13286 org-loop-over-headlines-in-active-region)
13288 `(org-schedule ',arg ,time)
13289 org-loop-over-headlines-in-active-region
13290 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
13291 (let* ((old-date (org-entry-get nil "SCHEDULED"))
13292 (old-date-time (if old-date (org-time-string-to-time old-date)))
13293 (repeater (and old-date
13295 "\\([.+-]+[0-9]+[hdwmy]\\(?:[/ ][-+]?[0-9]+[hdwmy]\\)?\\) ?"
13297 (match-string 1 old-date))))
13301 (when (and old-date org-log-reschedule)
13302 (org-add-log-setup 'delschedule nil old-date 'findpos
13303 org-log-reschedule))
13304 (org-remove-timestamp-with-keyword org-scheduled-string)
13305 (message "Item is no longer scheduled.")))
13308 (org-back-to-heading t)
13309 (if (re-search-forward
13310 org-scheduled-time-regexp
13311 (save-excursion (outline-next-heading) (point)) t)
13312 (let* ((rpl0 (match-string 1))
13313 (rpl (replace-regexp-in-string " -[0-9]+[hdwmy]" "" rpl0)))
13315 (concat org-scheduled-string
13321 (org-read-date nil t nil "Delay until" old-date-time)))
13322 (time-to-days old-date-time))))
13324 (user-error "No scheduled information to update"))))
13326 (org-add-planning-info 'scheduled time 'closed)
13327 (when (and old-date org-log-reschedule
13328 (not (equal old-date
13329 (substring org-last-inserted-timestamp 1 -1))))
13330 (org-add-log-setup 'reschedule nil old-date 'findpos
13331 org-log-reschedule))
13334 (org-back-to-heading t)
13335 (when (re-search-forward (concat org-scheduled-string " "
13336 org-last-inserted-timestamp)
13338 (outline-next-heading) (point)) t)
13339 (goto-char (1- (match-end 0)))
13340 (insert " " repeater)
13341 (setq org-last-inserted-timestamp
13342 (concat (substring org-last-inserted-timestamp 0 -1)
13344 (substring org-last-inserted-timestamp -1))))))
13345 (message "Scheduled to %s" org-last-inserted-timestamp))))))
13347 (defun org-get-scheduled-time (pom &optional inherit)
13348 "Get the scheduled time as a time tuple, of a format suitable
13349 for calling org-schedule with, or if there is no scheduling,
13351 (let ((time (org-entry-get pom "SCHEDULED" inherit)))
13353 (apply 'encode-time (org-parse-time-string time)))))
13355 (defun org-get-deadline-time (pom &optional inherit)
13356 "Get the deadline as a time tuple, of a format suitable for
13357 calling org-deadline with, or if there is no scheduling, returns
13359 (let ((time (org-entry-get pom "DEADLINE" inherit)))
13361 (apply 'encode-time (org-parse-time-string time)))))
13363 (defun org-remove-timestamp-with-keyword (keyword)
13364 "Remove all time stamps with KEYWORD in the current entry."
13365 (let ((re (concat "\\<" (regexp-quote keyword) " +<[^>\n]+>[ \t]*"))
13368 (org-back-to-heading t)
13370 (outline-next-heading)
13371 (while (re-search-backward re beg t)
13373 (if (and (string-match "\\S-" (buffer-substring (point-at-bol) (point)))
13374 (equal (char-before) ?\ ))
13375 (backward-delete-char 1)
13376 (if (string-match "^[ \t]*$" (buffer-substring
13377 (point-at-bol) (point-at-eol)))
13378 (delete-region (point-at-bol)
13379 (min (point-max) (1+ (point-at-eol))))))))))
13381 (defvar org-time-was-given) ; dynamically scoped parameter
13382 (defvar org-end-time-was-given) ; dynamically scoped parameter
13384 (defun org-add-planning-info (what &optional time &rest remove)
13385 "Insert new timestamp with keyword in the line directly after the headline.
13386 WHAT indicates what kind of time stamp to add. TIME indicates the time to use.
13387 If non is given, the user is prompted for a date.
13388 REMOVE indicates what kind of entries to remove. An old WHAT entry will also
13391 (let (org-time-was-given org-end-time-was-given ts
13392 end default-time default-input)
13395 (when (and (memq what '(scheduled deadline))
13397 (and (stringp time)
13398 (string-match "^[-+]+[0-9]" time))))
13399 ;; Try to get a default date/time from existing timestamp
13401 (org-back-to-heading t)
13402 (setq end (save-excursion (outline-next-heading) (point)))
13403 (when (re-search-forward (if (eq what 'scheduled)
13404 org-scheduled-time-regexp
13405 org-deadline-time-regexp)
13407 (setq ts (match-string 1)
13409 (apply 'encode-time (org-parse-time-string ts))
13410 default-input (and ts (org-get-compact-tod ts))))))
13414 ;; This is a string (relative or absolute), set proper date
13415 (apply 'encode-time
13416 (org-read-date-analyze
13417 time default-time (decode-time default-time)))
13418 ;; If necessary, get the time from the user
13419 (or time (org-read-date nil 'to-time nil nil
13420 default-time default-input)))))
13422 (when (and org-insert-labeled-timestamps-at-point
13423 (member what '(scheduled deadline)))
13425 (if (eq what 'scheduled) org-scheduled-string org-deadline-string) " ")
13426 (org-insert-time-stamp time org-time-was-given
13427 nil nil nil (list org-end-time-was-given))
13431 (let (col list elt ts buffer-invisibility-spec)
13432 (org-back-to-heading t)
13433 (looking-at (concat org-outline-regexp "\\( *\\)[^\r\n]*"))
13434 (goto-char (match-end 1))
13435 (setq col (current-column))
13436 (goto-char (match-end 0))
13437 (if (eobp) (insert "\n") (forward-char 1))
13438 (when (and (not what)
13441 org-keyword-time-not-clock-regexp))))
13442 ;; Nothing to add, nothing to remove...... :-)
13444 (if (and (not (looking-at org-outline-regexp))
13445 (looking-at (concat "[^\r\n]*?" org-keyword-time-regexp
13447 (not (equal (match-string 1) org-clock-string)))
13448 (narrow-to-region (match-beginning 0) (match-end 0))
13449 (insert-before-markers "\n")
13451 (narrow-to-region (point) (point))
13452 (and org-adapt-indentation (org-indent-to-column col)))
13453 ;; Check if we have to remove something.
13454 (setq list (cons what remove))
13456 (setq elt (pop list))
13457 (when (or (and (eq elt 'scheduled)
13458 (re-search-forward org-scheduled-time-regexp nil t))
13459 (and (eq elt 'deadline)
13460 (re-search-forward org-deadline-time-regexp nil t))
13461 (and (eq elt 'closed)
13462 (re-search-forward org-closed-time-regexp nil t)))
13464 (if (looking-at "--+<[^>]+>") (replace-match ""))))
13465 (and (looking-at "[ \t]+") (replace-match ""))
13466 (and org-adapt-indentation (bolp) (org-indent-to-column col))
13469 (if (not (or (bolp) (eq (char-before) ?\ ))) " " "")
13470 (cond ((eq what 'scheduled) org-scheduled-string)
13471 ((eq what 'deadline) org-deadline-string)
13472 ((eq what 'closed) org-closed-string))
13474 (setq ts (org-insert-time-stamp
13476 (or org-time-was-given
13477 (and (eq what 'closed) org-log-done-with-time))
13479 nil nil (list org-end-time-was-given)))
13481 (if (not (or (bolp) (eq (char-before) ?\ )
13482 (memq (char-after) '(32 10))
13485 (goto-char (point-min))
13487 (if (and (looking-at "[ \t]*\n")
13488 (equal (char-before) ?\n))
13489 (delete-region (1- (point)) (point-at-eol)))
13492 (defvar org-log-note-marker (make-marker))
13493 (defvar org-log-note-purpose nil)
13494 (defvar org-log-note-state nil)
13495 (defvar org-log-note-previous-state nil)
13496 (defvar org-log-note-how nil)
13497 (defvar org-log-note-extra nil)
13498 (defvar org-log-note-window-configuration nil)
13499 (defvar org-log-note-return-to (make-marker))
13500 (defvar org-log-note-effective-time nil
13501 "Remembered current time so that dynamically scoped
13502 `org-extend-today-until' affects tha timestamps in state change
13505 (defvar org-log-post-message nil
13506 "Message to be displayed after a log note has been stored.
13507 The auto-repeater uses this.")
13509 (defun org-add-note ()
13510 "Add a note to the current entry.
13511 This is done in the same way as adding a state change note."
13513 (org-add-log-setup 'note nil nil 'findpos nil))
13515 (defvar org-property-end-re)
13516 (defun org-add-log-setup (&optional purpose state prev-state
13518 "Set up the post command hook to take a note.
13519 If this is about to TODO state change, the new state is expected in STATE.
13520 When FINDPOS is non-nil, find the correct position for the note in
13521 the current entry. If not, assume that it can be inserted at point.
13522 HOW is an indicator what kind of note should be created.
13523 EXTRA is additional text that will be inserted into the notes buffer."
13524 (let* ((org-log-into-drawer (org-log-into-drawer))
13525 (drawer (cond ((stringp org-log-into-drawer)
13526 org-log-into-drawer)
13527 (org-log-into-drawer "LOGBOOK"))))
13531 (org-back-to-heading t)
13532 (narrow-to-region (point) (save-excursion
13533 (outline-next-heading) (point)))
13534 (looking-at (concat org-outline-regexp "\\( *\\)[^\r\n]*"
13535 "\\(\n[^\r\n]*?" org-keyword-time-not-clock-regexp
13537 (goto-char (match-end 0))
13540 (if (re-search-forward (concat "^[ \t]*:" drawer ":[ \t]*$")
13543 (goto-char (match-end 0))
13544 (or org-log-states-order-reversed
13545 (and (re-search-forward org-property-end-re nil t)
13546 (goto-char (1- (match-beginning 0))))))
13547 (insert "\n:" drawer ":\n:END:")
13548 (beginning-of-line 0)
13550 (beginning-of-line 2)
13553 ((and org-log-state-notes-insert-after-drawers
13555 (forward-line) (looking-at org-drawer-regexp)))
13557 (while (looking-at org-drawer-regexp)
13558 (goto-char (match-end 0))
13559 (re-search-forward org-property-end-re (point-max) t)
13561 (forward-line -1)))
13562 (unless org-log-states-order-reversed
13563 (and (= (char-after) ?\n) (forward-char 1))
13564 (org-skip-over-state-notes)
13565 (skip-chars-backward " \t\n\r")))
13566 (move-marker org-log-note-marker (point))
13567 (setq org-log-note-purpose purpose
13568 org-log-note-state state
13569 org-log-note-previous-state prev-state
13570 org-log-note-how how
13571 org-log-note-extra extra
13572 org-log-note-effective-time (org-current-effective-time))
13573 (add-hook 'post-command-hook 'org-add-log-note 'append)))))
13575 (defun org-skip-over-state-notes ()
13576 "Skip past the list of State notes in an entry."
13577 (if (looking-at "\n[ \t]*- State") (forward-char 1))
13578 (when (ignore-errors (goto-char (org-in-item-p)))
13579 (let* ((struct (org-list-struct))
13580 (prevs (org-list-prevs-alist struct)))
13581 (while (looking-at "[ \t]*- State")
13582 (goto-char (or (org-list-get-next-item (point) struct prevs)
13583 (org-list-get-item-end (point) struct)))))))
13585 (defun org-add-log-note (&optional purpose)
13586 "Pop up a window for taking a note, and add this note later at point."
13587 (remove-hook 'post-command-hook 'org-add-log-note)
13588 (setq org-log-note-window-configuration (current-window-configuration))
13589 (delete-other-windows)
13590 (move-marker org-log-note-return-to (point))
13591 (org-pop-to-buffer-same-window (marker-buffer org-log-note-marker))
13592 (goto-char org-log-note-marker)
13593 (org-switch-to-buffer-other-window "*Org Note*")
13595 (if (memq org-log-note-how '(time state))
13596 (let (current-prefix-arg) (org-store-log-note))
13597 (let ((org-inhibit-startup t)) (org-mode))
13598 (insert (format "# Insert note for %s.
13599 # Finish with C-c C-c, or cancel with C-c C-k.\n\n"
13601 ((eq org-log-note-purpose 'clock-out) "stopped clock")
13602 ((eq org-log-note-purpose 'done) "closed todo item")
13603 ((eq org-log-note-purpose 'state)
13604 (format "state change from \"%s\" to \"%s\""
13605 (or org-log-note-previous-state "")
13606 (or org-log-note-state "")))
13607 ((eq org-log-note-purpose 'reschedule)
13609 ((eq org-log-note-purpose 'delschedule)
13610 "no longer scheduled")
13611 ((eq org-log-note-purpose 'redeadline)
13612 "changing deadline")
13613 ((eq org-log-note-purpose 'deldeadline)
13614 "removing deadline")
13615 ((eq org-log-note-purpose 'refile)
13617 ((eq org-log-note-purpose 'note)
13619 (t (error "This should not happen")))))
13620 (if org-log-note-extra (insert org-log-note-extra))
13621 (org-set-local 'org-finish-function 'org-store-log-note)
13622 (run-hooks 'org-log-buffer-setup-hook)))
13624 (defvar org-note-abort nil) ; dynamically scoped
13625 (defun org-store-log-note ()
13626 "Finish taking a log note, and insert it to where it belongs."
13627 (let ((txt (buffer-string)))
13628 (kill-buffer (current-buffer))
13629 (let ((note (cdr (assq org-log-note-purpose org-log-note-headings)))
13631 (while (string-match "\\`# .*\n[ \t\n]*" txt)
13632 (setq txt (replace-match "" t t txt)))
13633 (if (string-match "\\s-+\\'" txt)
13634 (setq txt (replace-match "" t t txt)))
13635 (setq lines (org-split-string txt "\n"))
13636 (when (and note (string-match "\\S-" note))
13638 (org-replace-escapes
13640 (list (cons "%u" (user-login-name))
13641 (cons "%U" user-full-name)
13642 (cons "%t" (format-time-string
13643 (org-time-stamp-format 'long 'inactive)
13644 org-log-note-effective-time))
13645 (cons "%T" (format-time-string
13646 (org-time-stamp-format 'long nil)
13647 org-log-note-effective-time))
13648 (cons "%d" (format-time-string
13649 (org-time-stamp-format nil 'inactive)
13650 org-log-note-effective-time))
13651 (cons "%D" (format-time-string
13652 (org-time-stamp-format nil nil)
13653 org-log-note-effective-time))
13654 (cons "%s" (if org-log-note-state
13655 (concat "\"" org-log-note-state "\"")
13657 (cons "%S" (if org-log-note-previous-state
13658 (concat "\"" org-log-note-previous-state "\"")
13660 (if lines (setq note (concat note " \\\\")))
13662 (when (or current-prefix-arg org-note-abort)
13663 (when org-log-into-drawer
13664 (org-remove-empty-drawer-at org-log-note-marker))
13667 (with-current-buffer (marker-buffer org-log-note-marker)
13669 (goto-char org-log-note-marker)
13670 (move-marker org-log-note-marker nil)
13672 (if (not (bolp)) (let ((inhibit-read-only t)) (insert "\n")))
13673 (setq ind (save-excursion
13674 (if (ignore-errors (goto-char (org-in-item-p)))
13675 (let ((struct (org-list-struct)))
13677 (org-list-get-top-point struct) struct))
13678 (skip-chars-backward " \r\t\n")
13680 ((and (org-at-heading-p)
13681 org-adapt-indentation)
13682 (1+ (org-current-level)))
13683 ((org-at-heading-p) 0)
13684 (t (org-get-indentation))))))
13685 (setq bul (org-list-bullet-string "-"))
13686 (org-indent-line-to ind)
13687 (insert bul (pop lines))
13688 (let ((ind-body (+ (length bul) ind)))
13691 (org-indent-line-to ind-body)
13692 (insert (pop lines))))
13693 (message "Note stored")
13694 (org-back-to-heading t)
13695 (org-cycle-hide-drawers 'children))
13696 ;; Fix `buffer-undo-list' when `org-store-log-note' is called
13697 ;; from within `org-add-log-note' because `buffer-undo-list'
13698 ;; is then modified outside of `org-with-remote-undo'.
13699 (when (eq this-command 'org-agenda-todo)
13700 (setcdr buffer-undo-list (cddr buffer-undo-list)))))))
13701 ;; Don't add undo information when called from `org-agenda-todo'
13702 (let ((buffer-undo-list (eq this-command 'org-agenda-todo)))
13703 (set-window-configuration org-log-note-window-configuration)
13704 (with-current-buffer (marker-buffer org-log-note-return-to)
13705 (goto-char org-log-note-return-to))
13706 (move-marker org-log-note-return-to nil)
13707 (and org-log-post-message (message "%s" org-log-post-message))))
13709 (defun org-remove-empty-drawer-at (pos)
13710 "Remove an empty drawer at position POS.
13711 POS may also be a marker."
13712 (with-current-buffer (if (markerp pos) (marker-buffer pos) (current-buffer))
13713 (org-with-wide-buffer
13715 (let ((drawer (org-element-at-point)))
13716 (when (and (memq (org-element-type drawer) '(drawer property-drawer))
13717 (not (org-element-property :contents-begin drawer)))
13718 (delete-region (org-element-property :begin drawer)
13719 (progn (goto-char (org-element-property :end drawer))
13720 (skip-chars-backward " \r\t\n")
13724 (defvar org-ts-type nil)
13725 (defun org-sparse-tree (&optional arg type)
13726 "Create a sparse tree, prompt for the details.
13727 This command can create sparse trees. You first need to select the type
13728 of match used to create the tree:
13730 t Show all TODO entries.
13731 T Show entries with a specific TODO keyword.
13732 m Show entries selected by a tags/property match.
13733 p Enter a property name and its value (both with completion on existing
13734 names/values) and show entries with that property.
13735 r Show entries matching a regular expression (`/' can be used as well).
13736 b Show deadlines and scheduled items before a date.
13737 a Show deadlines and scheduled items after a date.
13738 d Show deadlines due within `org-deadline-warning-days'.
13739 D Show deadlines and scheduled items between a date range."
13741 (setq type (or type org-sparse-tree-default-date-type))
13742 (setq org-ts-type type)
13743 (message "Sparse tree: [/]regexp [t]odo [T]odo-kwd [m]atch [p]roperty
13744 [d]eadlines [b]efore-date [a]fter-date [D]ates range
13745 [c]ycle through date types: %s"
13747 (all "all timestamps")
13748 (scheduled "only scheduled")
13749 (deadline "only deadline")
13750 (active "only active timestamps")
13751 (inactive "only inactive timestamps")
13752 (scheduled-or-deadline "scheduled/deadline")
13753 (closed "with a closed time-stamp")
13754 (otherwise "scheduled/deadline")))
13755 (let ((answer (read-char-exclusive)))
13760 (cadr (memq type '(scheduled-or-deadline all scheduled deadline active
13761 inactive closed)))))
13762 (?d (call-interactively 'org-check-deadlines))
13763 (?b (call-interactively 'org-check-before-date))
13764 (?a (call-interactively 'org-check-after-date))
13765 (?D (call-interactively 'org-check-dates-range))
13766 (?t (call-interactively 'org-show-todo-tree))
13767 (?T (org-show-todo-tree '(4)))
13768 (?m (call-interactively 'org-match-sparse-tree))
13770 (let* ((kwd (org-icompleting-read
13771 "Property: " (mapcar 'list (org-buffer-property-keys))))
13772 (value (org-icompleting-read
13773 "Value: " (mapcar 'list (org-property-values kwd)))))
13774 (unless (string-match "\\`{.*}\\'" value)
13775 (setq value (concat "\"" value "\"")))
13776 (org-match-sparse-tree arg (concat kwd "=" value))))
13777 ((?r ?R ?/) (call-interactively 'org-occur))
13778 (otherwise (user-error "No such sparse tree command \"%c\"" answer)))))
13780 (defvar org-occur-highlights nil
13781 "List of overlays used for occur matches.")
13782 (make-variable-buffer-local 'org-occur-highlights)
13783 (defvar org-occur-parameters nil
13784 "Parameters of the active org-occur calls.
13785 This is a list, each call to org-occur pushes as cons cell,
13786 containing the regular expression and the callback, onto the list.
13787 The list can contain several entries if `org-occur' has been called
13788 several time with the KEEP-PREVIOUS argument. Otherwise, this list
13789 will only contain one set of parameters. When the highlights are
13790 removed (for example with `C-c C-c', or with the next edit (depending
13791 on `org-remove-highlights-with-change'), this variable is emptied
13793 (make-variable-buffer-local 'org-occur-parameters)
13795 (defun org-occur (regexp &optional keep-previous callback)
13796 "Make a compact tree which shows all matches of REGEXP.
13797 The tree will show the lines where the regexp matches, and all higher
13798 headlines above the match. It will also show the heading after the match,
13799 to make sure editing the matching entry is easy.
13800 If KEEP-PREVIOUS is non-nil, highlighting and exposing done by a previous
13801 call to `org-occur' will be kept, to allow stacking of calls to this
13803 If CALLBACK is non-nil, it is a function which is called to confirm
13804 that the match should indeed be shown."
13805 (interactive "sRegexp: \nP")
13806 (when (equal regexp "")
13807 (user-error "Regexp cannot be empty"))
13808 (unless keep-previous
13809 (org-remove-occur-highlights nil nil t))
13810 (push (cons regexp callback) org-occur-parameters)
13813 (goto-char (point-min))
13814 (if (or (not keep-previous) ; do not want to keep
13815 (not org-occur-highlights)) ; no previous matches
13818 (while (re-search-forward regexp nil t)
13819 (when (or (not callback)
13820 (save-match-data (funcall callback)))
13821 (setq cnt (1+ cnt))
13822 (when org-highlight-sparse-tree-matches
13823 (org-highlight-new-match (match-beginning 0) (match-end 0)))
13824 (org-show-context 'occur-tree))))
13825 (when org-remove-highlights-with-change
13826 (org-add-hook 'before-change-functions 'org-remove-occur-highlights
13828 (unless org-sparse-tree-open-archived-trees
13829 (org-hide-archived-subtrees (point-min) (point-max)))
13830 (run-hooks 'org-occur-hook)
13831 (if (org-called-interactively-p 'interactive)
13832 (message "%d match(es) for regexp %s" cnt regexp))
13835 (defun org-occur-next-match (&optional n reset)
13836 "Function for `next-error-function' to find sparse tree matches.
13837 N is the number of matches to move, when negative move backwards.
13838 RESET is entirely ignored - this function always goes back to the
13839 starting point when no match is found."
13840 (let* ((limit (if (< n 0) (point-min) (point-max)))
13841 (search-func (if (< n 0)
13842 'previous-single-char-property-change
13843 'next-single-char-property-change))
13848 (while (setq p1 (funcall search-func (point) 'org-type))
13849 (when (equal p1 limit)
13851 (user-error "No more matches"))
13852 (when (equal (get-char-property p1 'org-type) 'org-occur)
13856 (throw 'exit (point))))
13859 (user-error "No more matches"))))
13861 (defun org-show-context (&optional key)
13862 "Make sure point and context are visible.
13863 How much context is shown depends upon the variables
13864 `org-show-hierarchy-above', `org-show-following-heading',
13865 `org-show-entry-below' and `org-show-siblings'."
13866 (let ((heading-p (org-at-heading-p t))
13867 (hierarchy-p (org-get-alist-option org-show-hierarchy-above key))
13868 (following-p (org-get-alist-option org-show-following-heading key))
13869 (entry-p (org-get-alist-option org-show-entry-below key))
13870 (siblings-p (org-get-alist-option org-show-siblings key)))
13871 ;; Show heading or entry text
13872 (if (and heading-p (not entry-p))
13873 (org-flag-heading nil) ; only show the heading
13874 (and (or entry-p (outline-invisible-p) (org-invisible-p2))
13875 (org-show-hidden-entry))) ; show entire entry
13877 ;; Show next sibling, or heading below text
13879 (and (if heading-p (org-goto-sibling) (outline-next-heading))
13880 (org-flag-heading nil))))
13881 (when siblings-p (org-show-siblings))
13883 ;; show all higher headings, possibly with siblings
13885 (while (and (ignore-errors (progn (org-up-heading-all 1) t))
13887 (org-flag-heading nil)
13888 (when siblings-p (org-show-siblings)))))
13889 (unless (eq key 'agenda) (org-fix-ellipsis-at-bol))))
13891 (defvar org-reveal-start-hook nil
13892 "Hook run before revealing a location.")
13894 (defun org-reveal (&optional siblings)
13895 "Show current entry, hierarchy above it, and the following headline.
13896 This can be used to show a consistent set of context around locations
13897 exposed with `org-show-hierarchy-above' or `org-show-following-heading'
13898 not t for the search context.
13900 With optional argument SIBLINGS, on each level of the hierarchy all
13901 siblings are shown. This repairs the tree structure to what it would
13902 look like when opened with hierarchical calls to `org-cycle'.
13903 With double optional argument \\[universal-argument] \\[universal-argument], \
13904 go to the parent and show the
13907 (run-hooks 'org-reveal-start-hook)
13908 (let ((org-show-hierarchy-above t)
13909 (org-show-following-heading t)
13910 (org-show-siblings (if siblings t org-show-siblings)))
13911 (org-show-context nil))
13912 (when (equal siblings '(16))
13914 (when (org-up-heading-safe)
13916 (run-hook-with-args 'org-cycle-hook 'subtree)))))
13918 (defun org-highlight-new-match (beg end)
13919 "Highlight from BEG to END and mark the highlight is an occur headline."
13920 (let ((ov (make-overlay beg end)))
13921 (overlay-put ov 'face 'secondary-selection)
13922 (overlay-put ov 'org-type 'org-occur)
13923 (push ov org-occur-highlights)))
13925 (defun org-remove-occur-highlights (&optional beg end noremove)
13926 "Remove the occur highlights from the buffer.
13927 BEG and END are ignored. If NOREMOVE is nil, remove this function
13928 from the `before-change-functions' in the current buffer."
13930 (unless org-inhibit-highlight-removal
13931 (mapc 'delete-overlay org-occur-highlights)
13932 (setq org-occur-highlights nil)
13933 (setq org-occur-parameters nil)
13935 (remove-hook 'before-change-functions
13936 'org-remove-occur-highlights 'local))))
13940 (defvar org-priority-regexp ".*?\\(\\[#\\([A-Z0-9]\\)\\] ?\\)"
13941 "Regular expression matching the priority indicator.")
13943 (defvar org-remove-priority-next-time nil)
13945 (defun org-priority-up ()
13946 "Increase the priority of the current item."
13948 (org-priority 'up))
13950 (defun org-priority-down ()
13951 "Decrease the priority of the current item."
13953 (org-priority 'down))
13955 (defun org-priority (&optional action show)
13956 "Change the priority of an item.
13957 ACTION can be `set', `up', `down', or a character."
13959 (if (equal action '(4))
13960 (org-show-priority)
13961 (unless org-enable-priority-commands
13962 (user-error "Priority commands are disabled"))
13963 (setq action (or action 'set))
13964 (let (current new news have remove)
13966 (org-back-to-heading t)
13967 (if (looking-at org-priority-regexp)
13968 (setq current (string-to-char (match-string 2))
13971 ((eq action 'remove)
13972 (setq remove t new ?\ ))
13973 ((or (eq action 'set)
13974 (if (featurep 'xemacs) (characterp action) (integerp action)))
13975 (if (not (eq action 'set))
13977 (message "Priority %c-%c, SPC to remove: "
13978 org-highest-priority org-lowest-priority)
13980 (setq new (read-char-exclusive))))
13981 (if (and (= (upcase org-highest-priority) org-highest-priority)
13982 (= (upcase org-lowest-priority) org-lowest-priority))
13983 (setq new (upcase new)))
13984 (cond ((equal new ?\ ) (setq remove t))
13985 ((or (< (upcase new) org-highest-priority) (> (upcase new) org-lowest-priority))
13986 (user-error "Priority must be between `%c' and `%c'"
13987 org-highest-priority org-lowest-priority))))
13990 (1- current) ; normal cycling
13991 ;; last priority was empty
13992 (if (eq last-command this-command)
13993 org-lowest-priority ; wrap around empty to lowest
13995 (if org-priority-start-cycle-with-default
13996 org-default-priority
13997 (1- org-default-priority))))))
14000 (1+ current) ; normal cycling
14001 ;; last priority was empty
14002 (if (eq last-command this-command)
14003 org-highest-priority ; wrap around empty to highest
14005 (if org-priority-start-cycle-with-default
14006 org-default-priority
14007 (1+ org-default-priority))))))
14008 (t (user-error "Invalid action")))
14009 (if (or (< (upcase new) org-highest-priority)
14010 (> (upcase new) org-lowest-priority))
14011 (if (and (memq action '(up down))
14012 (not have) (not (eq last-command this-command)))
14013 ;; `new' is from default priority
14015 "The default can not be set, see `org-default-priority' why")
14016 ;; normal cycling: `new' is beyond highest/lowest priority
14017 ;; and is wrapped around to the empty priority
14019 (setq news (format "%c" new))
14022 (replace-match "" t t nil 1)
14023 (replace-match news t t nil 2))
14025 (user-error "No priority cookie found in line")
14026 (let ((case-fold-search nil))
14027 (looking-at org-todo-line-regexp))
14030 (goto-char (match-end 2))
14031 (insert " [#" news "]"))
14032 (goto-char (match-beginning 3))
14033 (insert "[#" news "] "))))
14034 (org-set-tags nil 'align))
14036 (message "Priority removed")
14037 (message "Priority of current item set to %s" news)))))
14039 (defun org-show-priority ()
14040 "Show the priority of the current item.
14041 This priority is composed of the main priority given with the [#A] cookies,
14042 and by additional input from the age of a schedules or deadline entry."
14044 (let ((pri (if (eq major-mode 'org-agenda-mode)
14045 (org-get-at-bol 'priority)
14048 (beginning-of-line)
14049 (and (looking-at org-heading-regexp)
14050 (org-get-priority (match-string 0))))))))
14051 (message "Priority is %d" (if pri pri -1000))))
14053 (defun org-get-priority (s)
14054 "Find priority cookie and return priority."
14056 (if (functionp org-get-priority-function)
14057 (funcall org-get-priority-function)
14058 (if (not (string-match org-priority-regexp s))
14059 (* 1000 (- org-lowest-priority org-default-priority))
14060 (* 1000 (- org-lowest-priority
14061 (string-to-char (match-string 2 s))))))))
14065 (defvar org-agenda-archives-mode)
14066 (defvar org-map-continue-from nil
14067 "Position from where mapping should continue.
14068 Can be set by the action argument to `org-scan-tags' and `org-map-entries'.")
14070 (defvar org-scanner-tags nil
14071 "The current tag list while the tags scanner is running.")
14072 (defvar org-trust-scanner-tags nil
14073 "Should `org-get-tags-at' use the tags for the scanner.
14074 This is for internal dynamical scoping only.
14075 When this is non-nil, the function `org-get-tags-at' will return the value
14076 of `org-scanner-tags' instead of building the list by itself. This
14077 can lead to large speed-ups when the tags scanner is used in a file with
14078 many entries, and when the list of tags is retrieved, for example to
14079 obtain a list of properties. Building the tags list for each entry in such
14080 a file becomes an N^2 operation - but with this variable set, it scales
14083 (defun org-scan-tags (action matcher todo-only &optional start-level)
14084 "Scan headline tags with inheritance and produce output ACTION.
14086 ACTION can be `sparse-tree' to produce a sparse tree in the current buffer,
14087 or `agenda' to produce an entry list for an agenda view. It can also be
14088 a Lisp form or a function that should be called at each matched headline, in
14089 this case the return value is a list of all return values from these calls.
14091 MATCHER is a Lisp form to be evaluated, testing if a given set of tags
14092 qualifies a headline for inclusion. When TODO-ONLY is non-nil,
14093 only lines with a not-done TODO keyword are included in the output.
14094 This should be the same variable that was scoped into
14095 and set by `org-make-tags-matcher' when it constructed MATCHER.
14097 START-LEVEL can be a string with asterisks, reducing the scope to
14098 headlines matching this string."
14099 (require 'org-agenda)
14100 (let* ((re (concat "^"
14102 ;; Get the correct level to match
14103 (concat "\\*\\{" (number-to-string start-level) "\\} ")
14104 org-outline-regexp)
14106 (mapconcat 'regexp-quote org-todo-keywords-1 "\\|")
14107 (org-re "\\)\\>\\)? *\\(.*?\\)\\(:[[:alnum:]_@#%:]+:\\)?[ \t]*$")))
14108 (props (list 'face 'default
14109 'done-face 'org-agenda-done
14110 'undone-face 'default
14111 'mouse-face 'highlight
14112 'org-not-done-regexp org-not-done-regexp
14113 'org-todo-regexp org-todo-regexp
14114 'org-complex-heading-regexp org-complex-heading-regexp
14116 (format "mouse-2 or RET jump to org file %s"
14117 (abbreviate-file-name
14118 (or (buffer-file-name (buffer-base-buffer))
14119 (buffer-name (buffer-base-buffer)))))))
14120 (org-map-continue-from nil)
14121 lspos tags tags-list
14122 (tags-alist (list (cons 0 org-file-tags)))
14123 (llast 0) rtn rtn1 level category i txt
14124 todo marker entry priority)
14125 (when (not (or (member action '(agenda sparse-tree)) (functionp action)))
14126 (setq action (list 'lambda nil action)))
14128 (goto-char (point-min))
14129 (when (eq action 'sparse-tree)
14131 (org-remove-occur-highlights))
14132 (while (let (case-fold-search)
14133 (re-search-forward re nil t))
14134 (setq org-map-continue-from nil)
14136 (setq todo (if (match-end 1) (org-match-string-no-properties 2))
14137 tags (if (match-end 4) (org-match-string-no-properties 4)))
14138 (goto-char (setq lspos (match-beginning 0)))
14139 (setq level (org-reduced-level (org-outline-level))
14140 category (org-get-category))
14141 (setq i llast llast level)
14142 ;; remove tag lists from same and sublevels
14143 (while (>= i level)
14144 (when (setq entry (assoc i tags-alist))
14145 (setq tags-alist (delete entry tags-alist)))
14147 ;; add the next tags
14149 (setq tags (org-split-string tags ":")
14151 (cons (cons level tags) tags-alist)))
14152 ;; compile tags for current headline
14154 (if org-use-tag-inheritance
14155 (apply 'append (mapcar 'cdr (reverse tags-alist)))
14157 org-scanner-tags tags-list)
14158 (when org-use-tag-inheritance
14159 (setcdr (car tags-alist)
14160 (mapcar (lambda (x)
14161 (setq x (copy-sequence x))
14162 (org-add-prop-inherited x))
14163 (cdar tags-alist))))
14164 (when (and tags org-use-tag-inheritance
14165 (or (not (eq t org-use-tag-inheritance))
14166 org-tags-exclude-from-inheritance))
14167 ;; selective inheritance, remove uninherited ones
14168 (setcdr (car tags-alist)
14169 (org-remove-uninherited-tags (cdar tags-alist))))
14172 ;; eval matcher only when the todo condition is OK
14173 (and (or (not todo-only) (member todo org-not-done-keywords))
14174 (let ((case-fold-search t) (org-trust-scanner-tags t))
14177 ;; Call the skipper, but return t if it does not skip,
14178 ;; so that the `and' form continues evaluating
14180 (unless (eq action 'sparse-tree) (org-agenda-skip))
14183 ;; Check if timestamps are deselecting this entry
14184 (or (not todo-only)
14185 (and (member todo org-not-done-keywords)
14186 (or (not org-agenda-tags-todo-honor-ignore-options)
14187 (not (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item))))))
14189 ;; select this headline
14191 ((eq action 'sparse-tree)
14192 (and org-highlight-sparse-tree-matches
14193 (org-get-heading) (match-end 0)
14194 (org-highlight-new-match
14195 (match-beginning 1) (match-end 1)))
14196 (org-show-context 'tags-tree))
14197 ((eq action 'agenda)
14198 (setq txt (org-agenda-format-item
14201 (if (eq org-tags-match-list-sublevels 'indented)
14202 (make-string (1- level) ?.) "")
14206 priority (org-get-priority txt))
14208 (setq marker (org-agenda-new-marker))
14209 (org-add-props txt props
14210 'org-marker marker 'org-hd-marker marker 'org-category category
14212 'priority priority 'type "tagsmatch")
14214 ((functionp action)
14215 (setq org-map-continue-from nil)
14217 (setq rtn1 (funcall action))
14219 (t (user-error "Invalid action")))
14221 ;; if we are to skip sublevels, jump to end of subtree
14222 (unless org-tags-match-list-sublevels
14223 (org-end-of-subtree t)
14224 (backward-char 1))))
14225 ;; Get the correct position from where to continue
14226 (if org-map-continue-from
14227 (goto-char org-map-continue-from)
14228 (and (= (point) lspos) (end-of-line 1)))))
14229 (when (and (eq action 'sparse-tree)
14230 (not org-sparse-tree-open-archived-trees))
14231 (org-hide-archived-subtrees (point-min) (point-max)))
14234 (defun org-remove-uninherited-tags (tags)
14235 "Remove all tags that are not inherited from the list TAGS."
14237 ((eq org-use-tag-inheritance t)
14238 (if org-tags-exclude-from-inheritance
14239 (org-delete-all org-tags-exclude-from-inheritance tags)
14241 ((not org-use-tag-inheritance) nil)
14242 ((stringp org-use-tag-inheritance)
14245 (if (and (string-match org-use-tag-inheritance x)
14246 (not (member x org-tags-exclude-from-inheritance)))
14249 ((listp org-use-tag-inheritance)
14252 (if (member x org-use-tag-inheritance) x nil))
14255 (defun org-match-sparse-tree (&optional todo-only match)
14256 "Create a sparse tree according to tags string MATCH.
14257 MATCH can contain positive and negative selection of tags, like
14258 \"+WORK+URGENT-WITHBOSS\".
14259 If optional argument TODO-ONLY is non-nil, only select lines that are
14262 (org-agenda-prepare-buffers (list (current-buffer)))
14263 (org-scan-tags 'sparse-tree (cdr (org-make-tags-matcher match)) todo-only))
14265 (defalias 'org-tags-sparse-tree 'org-match-sparse-tree)
14267 (defvar org-cached-props nil)
14268 (defun org-cached-entry-get (pom property)
14269 (if (or (eq t org-use-property-inheritance)
14270 (and (stringp org-use-property-inheritance)
14271 (string-match org-use-property-inheritance property))
14272 (and (listp org-use-property-inheritance)
14273 (member property org-use-property-inheritance)))
14274 ;; Caching is not possible, check it directly
14275 (org-entry-get pom property 'inherit)
14276 ;; Get all properties, so that we can do complicated checks easily
14277 (cdr (assoc property (or org-cached-props
14278 (setq org-cached-props
14279 (org-entry-properties pom)))))))
14281 (defun org-global-tags-completion-table (&optional files)
14282 "Return the list of all tags in all agenda buffer/files.
14283 Optional FILES argument is a list of files which can be used
14284 instead of the agenda files."
14291 (set-buffer (find-file-noselect file))
14292 (append (org-get-buffer-tags)
14293 (mapcar (lambda (x) (if (stringp (car-safe x))
14294 (list (car-safe x)) nil))
14296 (if (and files (car files))
14298 (org-agenda-files))))))))
14300 (defun org-make-tags-matcher (match)
14301 "Create the TAGS/TODO matcher form for the selection string MATCH.
14303 The variable `todo-only' is scoped dynamically into this function.
14304 It will be set to t if the matcher restricts matching to TODO entries,
14305 otherwise will not be touched.
14307 Returns a cons of the selection string MATCH and the constructed
14308 lisp form implementing the matcher. The matcher is to be evaluated
14309 at an Org entry, with point on the headline, and returns t if the
14310 entry matches the selection string MATCH. The returned lisp form
14311 references two variables with information about the entry, which
14312 must be bound around the form's evaluation: todo, the TODO keyword
14313 at the entry (or nil of none); and tags-list, the list of all tags
14314 at the entry including inherited ones. Additionally, the category
14315 of the entry (if any) must be specified as the text property
14316 'org-category on the headline.
14318 See also `org-scan-tags'.
14320 (declare (special todo-only))
14321 (unless (boundp 'todo-only)
14322 (error "`org-make-tags-matcher' expects todo-only to be scoped in"))
14324 ;; Get a new match request, with completion against the global
14325 ;; tags table and the local tags in current buffer
14326 (let ((org-last-tags-completion-table
14328 (delq nil (append (org-get-buffer-tags)
14329 (org-global-tags-completion-table))))))
14330 (setq match (org-completing-read-no-i
14331 "Match: " 'org-tags-completion-function nil nil nil
14332 'org-tags-history))))
14334 ;; Parse the string and create a lisp form
14335 (let ((match0 match)
14336 (re (org-re "^&?\\([-+:]\\)?\\({[^}]+}\\|LEVEL\\([<=>]\\{1,2\\}\\)\\([0-9]+\\)\\|\\(\\(?:[[:alnum:]_]+\\(?:\\\\-\\)*\\)+\\)\\([<>=]\\{1,2\\}\\)\\({[^}]+}\\|\"[^\"]*\"\\|-?[.0-9]+\\(?:[eE][-+]?[0-9]+\\)?\\)\\|[[:alnum:]_@#%]+\\)"))
14338 tagsmatch todomatch tagsmatcher todomatcher kwd matcher
14339 orterms term orlist re-p str-p level-p level-op time-p
14340 prop-p pn pv po gv rest (start 0) (ss 0))
14341 ;; Expand group tags
14342 (setq match (org-tags-expand match))
14344 ;; Check if there is a TODO part of this match, which would be the
14345 ;; part after a "/". TO make sure that this slash is not part of
14346 ;; a property value to be matched against, we also check that there
14347 ;; is no " after that slash.
14348 ;; First, find the last slash
14349 (while (string-match "/+" match ss)
14350 (setq start (match-beginning 0) ss (match-end 0)))
14351 (if (and (string-match "/+" match start)
14352 (not (save-match-data (string-match "\"" match start))))
14353 ;; match contains also a todo-matching request
14355 (setq tagsmatch (substring match 0 (match-beginning 0))
14356 todomatch (substring match (match-end 0)))
14357 (if (string-match "^!" todomatch)
14358 (setq todo-only t todomatch (substring todomatch 1)))
14359 (if (string-match "^\\s-*$" todomatch)
14360 (setq todomatch nil)))
14361 ;; only matching tags
14362 (setq tagsmatch match todomatch nil))
14364 ;; Make the tags matcher
14365 (if (or (not tagsmatch) (not (string-match "\\S-" tagsmatch)))
14366 (setq tagsmatcher t)
14367 (setq orterms (org-split-string tagsmatch "|") orlist nil)
14368 (while (setq term (pop orterms))
14369 (while (and (equal (substring term -1) "\\") orterms)
14370 (setq term (concat term "|" (pop orterms)))) ; repair bad split
14371 (while (string-match re term)
14372 (setq rest (substring term (match-end 0))
14373 minus (and (match-end 1)
14374 (equal (match-string 1 term) "-"))
14375 tag (save-match-data (replace-regexp-in-string
14377 (match-string 2 term)))
14378 re-p (equal (string-to-char tag) ?{)
14379 level-p (match-end 4)
14380 prop-p (match-end 5)
14382 (re-p `(org-match-any-p ,(substring tag 1 -1) tags-list))
14384 (setq level-op (org-op-to-function (match-string 3 term)))
14385 `(,level-op level ,(string-to-number
14386 (match-string 4 term))))
14388 (setq pn (match-string 5 term)
14389 po (match-string 6 term)
14390 pv (match-string 7 term)
14391 re-p (equal (string-to-char pv) ?{)
14392 str-p (equal (string-to-char pv) ?\")
14393 time-p (save-match-data
14394 (string-match "^\"[[<].*[]>]\"$" pv))
14395 pv (if (or re-p str-p) (substring pv 1 -1) pv))
14396 (if time-p (setq pv (org-matcher-time pv)))
14397 (setq po (org-op-to-function po (if time-p 'time str-p)))
14399 ((equal pn "CATEGORY")
14400 (setq gv '(get-text-property (point) 'org-category)))
14404 (setq gv `(org-cached-entry-get nil ,pn))))
14407 `(not (string-match ,pv (or ,gv "")))
14408 `(string-match ,pv (or ,gv "")))
14410 `(,po (or ,gv "") ,pv)
14411 `(,po (string-to-number (or ,gv ""))
14412 ,(string-to-number pv) ))))
14413 (t `(member ,tag tags-list)))
14414 mm (if minus (list 'not mm) mm)
14416 (push mm tagsmatcher))
14417 (push (if (> (length tagsmatcher) 1)
14418 (cons 'and tagsmatcher)
14421 (setq tagsmatcher nil))
14422 (setq tagsmatcher (if (> (length orlist) 1) (cons 'or orlist) (car orlist)))
14424 (list 'progn '(setq org-cached-props nil) tagsmatcher)))
14425 ;; Make the todo matcher
14426 (if (or (not todomatch) (not (string-match "\\S-" todomatch)))
14427 (setq todomatcher t)
14428 (setq orterms (org-split-string todomatch "|") orlist nil)
14429 (while (setq term (pop orterms))
14430 (while (string-match re term)
14431 (setq minus (and (match-end 1)
14432 (equal (match-string 1 term) "-"))
14433 kwd (match-string 2 term)
14434 re-p (equal (string-to-char kwd) ?{)
14435 term (substring term (match-end 0))
14437 `(string-match ,(substring kwd 1 -1) todo)
14438 (list 'equal 'todo kwd))
14439 mm (if minus (list 'not mm) mm))
14440 (push mm todomatcher))
14441 (push (if (> (length todomatcher) 1)
14442 (cons 'and todomatcher)
14445 (setq todomatcher nil))
14446 (setq todomatcher (if (> (length orlist) 1)
14447 (cons 'or orlist) (car orlist))))
14449 ;; Return the string and lisp forms of the matcher
14450 (setq matcher (if todomatcher
14451 (list 'and tagsmatcher todomatcher)
14454 (setq matcher (list 'and '(member todo org-not-done-keywords)
14456 (cons match0 matcher)))
14458 (defun org-tags-expand (match &optional single-as-list downcased)
14459 "Expand group tags in MATCH.
14461 This replaces every group tag in MATCH with a regexp tag search.
14462 For example, a group tag \"Work\" defined as { Work : Lab Conf }
14463 will be replaced like this:
14465 Work => {\\(?:Work\\|Lab\\|Conf\\)}
14466 +Work => +{\\(?:Work\\|Lab\\|Conf\\)}
14467 -Work => -{\\(?:Work\\|Lab\\|Conf\\)}
14469 Replacing by a regexp preserves the structure of the match.
14470 E.g., this expansion
14472 Work|Home => {\\(?:Work\\|Lab\\|Conf\\}|Home
14474 will match anything tagged with \"Lab\" and \"Home\", or tagged
14475 with \"Conf\" and \"Home\" or tagged with \"Work\" and \"home\".
14477 When the optional argument SINGLE-AS-LIST is non-nil, MATCH is
14478 assumed to be a single group tag, and the function will return
14479 the list of tags in this group.
14481 When DOWNCASE is non-nil, expand downcased TAGS."
14483 (let* ((case-fold-search t)
14484 (stable org-mode-syntax-table)
14485 (tal (or org-tag-groups-alist-for-agenda
14486 org-tag-groups-alist))
14488 (mapcar (lambda(tg) (mapcar 'downcase tg)) tal) tal))
14489 (tml (mapcar 'car tal))
14490 (rtnmatch match) rpl)
14491 ;; @ and _ are allowed as word-components in tags
14492 (modify-syntax-entry ?@ "w" stable)
14493 (modify-syntax-entry ?_ "w" stable)
14495 (with-syntax-table stable
14497 (concat "\\(?1:[+-]?\\)\\(?2:\\<"
14498 (regexp-opt tml) "\\>\\)") rtnmatch)))
14499 (let* ((dir (match-string 1 rtnmatch))
14500 (tag (match-string 2 rtnmatch))
14501 (tag (if downcased (downcase tag) tag)))
14502 (setq tml (delete tag tml))
14503 (when (not (get-text-property 0 'grouptag (match-string 2 rtnmatch)))
14504 (setq rpl (append (org-uniquify rpl) (assoc tag tal)))
14505 (setq rpl (concat dir "{\\<" (regexp-opt rpl) "\\>}"))
14506 (if (stringp rpl) (org-add-props rpl '(grouptag t)))
14507 (setq rtnmatch (replace-match rpl t t rtnmatch)))))
14509 (or (reverse rpl) (list rtnmatch))
14511 (if single-as-list (list (if downcased (downcase match) match))
14514 (defun org-op-to-function (op &optional stringp)
14515 "Turn an operator into the appropriate function."
14518 ((equal op "<" ) '(< string< org-time<))
14519 ((equal op ">" ) '(> org-string> org-time>))
14520 ((member op '("<=" "=<")) '(<= org-string<= org-time<=))
14521 ((member op '(">=" "=>")) '(>= org-string>= org-time>=))
14522 ((member op '("=" "==")) '(= string= org-time=))
14523 ((member op '("<>" "!=")) '(org<> org-string<> org-time<>))))
14524 (nth (if (eq stringp 'time) 2 (if stringp 1 0)) op))
14526 (defun org<> (a b) (not (= a b)))
14527 (defun org-string<= (a b) (or (string= a b) (string< a b)))
14528 (defun org-string>= (a b) (not (string< a b)))
14529 (defun org-string> (a b) (and (not (string= a b)) (not (string< a b))))
14530 (defun org-string<> (a b) (not (string= a b)))
14531 (defun org-time= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (= a b)))
14532 (defun org-time< (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (< a b)))
14533 (defun org-time<= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (<= a b)))
14534 (defun org-time> (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (> a b)))
14535 (defun org-time>= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (>= a b)))
14536 (defun org-time<> (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (org<> a b)))
14538 "Convert S to a floating point time.
14539 If S is already a number, just return it. If it is a string, parse
14540 it as a time string and apply `float-time' to it. If S is nil, just return 0."
14544 (condition-case nil
14545 (float-time (apply 'encode-time (org-parse-time-string s)))
14549 (defun org-time-today ()
14550 "Time in seconds today at 0:00.
14551 Returns the float number of seconds since the beginning of the
14552 epoch to the beginning of today (00:00)."
14553 (float-time (apply 'encode-time
14554 (append '(0 0 0) (nthcdr 3 (decode-time))))))
14556 (defun org-matcher-time (s)
14557 "Interpret a time comparison value."
14560 ((string= s "<now>") (float-time))
14561 ((string= s "<today>") (org-time-today))
14562 ((string= s "<tomorrow>") (+ 86400.0 (org-time-today)))
14563 ((string= s "<yesterday>") (- (org-time-today) 86400.0))
14564 ((string-match "^<\\([-+][0-9]+\\)\\([hdwmy]\\)>$" s)
14565 (+ (org-time-today)
14566 (* (string-to-number (match-string 1 s))
14567 (cdr (assoc (match-string 2 s)
14568 '(("d" . 86400.0) ("w" . 604800.0)
14569 ("m" . 2678400.0) ("y" . 31557600.0)))))))
14572 (defun org-match-any-p (re list)
14573 "Does re match any element of list?"
14574 (setq list (mapcar (lambda (x) (string-match re x)) list))
14577 (defvar org-add-colon-after-tag-completion nil) ;; dynamically scoped param
14578 (defvar org-tags-overlay (make-overlay 1 1))
14579 (org-detach-overlay org-tags-overlay)
14581 (defun org-get-local-tags-at (&optional pos)
14582 "Get a list of tags defined in the current headline."
14583 (org-get-tags-at pos 'local))
14585 (defun org-get-local-tags ()
14586 "Get a list of tags defined in the current headline."
14587 (org-get-tags-at nil 'local))
14589 (defun org-get-tags-at (&optional pos local)
14590 "Get a list of all headline tags applicable at POS.
14591 POS defaults to point. If tags are inherited, the list contains
14592 the targets in the same sequence as the headlines appear, i.e.
14593 the tags of the current headline come last.
14594 When LOCAL is non-nil, only return tags from the current headline,
14595 ignore inherited ones."
14597 (if (and org-trust-scanner-tags
14598 (or (not pos) (equal pos (point)))
14601 (let (tags ltags lastpos parent)
14605 (goto-char (or pos (point)))
14608 (condition-case nil
14610 (org-back-to-heading t)
14611 (while (not (equal lastpos (point)))
14612 (setq lastpos (point))
14614 (org-re "[^\r\n]+?:\\([[:alnum:]_@#%:]+\\):[ \t]*$"))
14615 (setq ltags (org-split-string
14616 (org-match-string-no-properties 1) ":"))
14618 (setq ltags (mapcar 'org-add-prop-inherited ltags)))
14621 (org-remove-uninherited-tags ltags)
14624 (or org-use-tag-inheritance (throw 'done t))
14625 (if local (throw 'done t))
14626 (or (org-up-heading-safe) (error nil))
14631 (reverse (delete-dups
14633 (org-remove-uninherited-tags
14634 org-file-tags) tags)))))))))
14636 (defun org-add-prop-inherited (s)
14637 (add-text-properties 0 (length s) '(inherited t) s)
14640 (defun org-toggle-tag (tag &optional onoff)
14641 "Toggle the tag TAG for the current line.
14642 If ONOFF is `on' or `off', don't toggle but set to this state."
14645 (org-back-to-heading t)
14646 (if (re-search-forward (org-re "[ \t]:\\([[:alnum:]_@#%:]+\\):[ \t]*$")
14649 (setq current (match-string 1))
14650 (replace-match ""))
14652 (setq current (nreverse (org-split-string current ":")))
14656 (or (member tag current) (push tag current)))
14658 (or (not (member tag current)) (setq current (delete tag current))))
14659 (t (if (member tag current)
14660 (setq current (delete tag current))
14662 (push tag current))))
14666 (insert " :" (mapconcat 'identity (nreverse current) ":") ":")
14667 (org-set-tags nil t))
14668 (delete-horizontal-space))
14669 (run-hooks 'org-after-tags-change-hook))
14672 (defun org-align-tags-here (to-col)
14673 ;; Assumes that this is a headline
14674 "Align tags on the current headline to TO-COL."
14675 (let ((pos (point)) (col (current-column)) ncol tags-l p)
14676 (beginning-of-line 1)
14677 (if (and (looking-at (org-re ".*?\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
14678 (< pos (match-beginning 2)))
14680 (setq tags-l (- (match-end 2) (match-beginning 2)))
14681 (goto-char (match-beginning 1))
14683 (delete-region (point) (1+ (match-beginning 2)))
14684 (setq ncol (max (current-column)
14688 (- (abs to-col) tags-l))))
14690 (insert (make-string (- ncol (current-column)) ?\ ))
14691 (setq ncol (current-column))
14692 (when indent-tabs-mode (tabify p (point-at-eol)))
14693 (org-move-to-column (min ncol col)))
14696 (defun org-set-tags-command (&optional arg just-align)
14697 "Call the set-tags command for the current entry."
14699 (if (or (org-at-heading-p) (and arg (org-before-first-heading-p)))
14700 (org-set-tags arg just-align)
14702 (unless (and (org-region-active-p)
14703 org-loop-over-headlines-in-active-region)
14704 (org-back-to-heading t))
14705 (org-set-tags arg just-align))))
14707 (defun org-set-tags-to (data)
14708 "Set the tags of the current entry to DATA, replacing the current tags.
14709 DATA may be a tags string like :aa:bb:cc:, or a list of tags.
14710 If DATA is nil or the empty string, any tags will be removed."
14711 (interactive "sTags: ")
14715 ((equal data "") "")
14717 (concat ":" (mapconcat 'identity (org-split-string data ":+") ":")
14720 (concat ":" (mapconcat 'identity data ":") ":"))))
14723 (org-back-to-heading t)
14724 (when (looking-at org-complex-heading-regexp)
14727 (goto-char (match-beginning 5))
14729 (delete-region (point) (point-at-eol))
14730 (org-set-tags nil 'align))
14731 (goto-char (point-at-eol))
14733 (org-set-tags nil 'align)))
14734 (beginning-of-line 1)
14735 (if (looking-at ".*?\\([ \t]+\\)$")
14736 (delete-region (match-beginning 1) (match-end 1))))))
14738 (defun org-align-all-tags ()
14739 "Align the tags i all headings."
14742 (or (ignore-errors (org-back-to-heading t))
14743 (outline-next-heading))
14744 (if (org-at-heading-p)
14746 (message "No headings"))))
14748 (defvar org-indent-indentation-per-level)
14749 (defun org-set-tags (&optional arg just-align)
14750 "Set the tags for the current headline.
14751 With prefix ARG, realign all tags in headings in the current buffer.
14752 When JUST-ALIGN is non-nil, only align tags."
14754 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
14755 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
14756 'region-start-level 'region))
14757 org-loop-over-headlines-in-active-region)
14759 ;; We don't use ARG and JUST-ALIGN here because these args
14760 ;; are not useful when looping over headlines.
14762 org-loop-over-headlines-in-active-region
14763 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
14764 (let* ((re org-outline-regexp-bol)
14765 (current (unless arg (org-get-tags-string)))
14766 (col (current-column))
14767 (org-setting-tags t)
14768 table current-tags inherited-tags ; computed below when needed
14769 tags p0 c0 c1 rpl di tc level)
14772 (goto-char (point-min))
14773 (let ((buffer-invisibility-spec (org-inhibit-invisibility)))
14774 (while (re-search-forward re nil t)
14775 (org-set-tags nil t)
14777 (message "All tags realigned to column %d" org-tags-column))
14779 (setq tags current)
14780 ;; Get a new set of tags from the user
14782 (setq table (append org-tag-persistent-alist
14783 (or org-tag-alist (org-get-buffer-tags))
14785 org-complete-tags-always-offer-all-agenda-tags
14786 (org-global-tags-completion-table
14787 (org-agenda-files))))
14788 org-last-tags-completion-table table
14789 current-tags (org-split-string current ":")
14790 inherited-tags (nreverse
14791 (nthcdr (length current-tags)
14792 (nreverse (org-get-tags-at))))
14794 (if (or (eq t org-use-fast-tag-selection)
14795 (and org-use-fast-tag-selection
14796 (delq nil (mapcar 'cdr table))))
14797 (org-fast-tag-selection
14798 current-tags inherited-tags table
14799 (if org-fast-tag-selection-include-todo
14800 org-todo-key-alist))
14801 (let ((org-add-colon-after-tag-completion (< 1 (length table))))
14803 (org-icompleting-read "Tags: "
14804 'org-tags-completion-function
14805 nil nil current 'org-tags-history))))))
14806 (while (string-match "[-+&]+" tags)
14807 ;; No boolean logic, just a list
14808 (setq tags (replace-match ":" t t tags))))
14810 (setq tags (replace-regexp-in-string "[,]" ":" tags))
14812 (if org-tags-sort-function
14813 (setq tags (mapconcat 'identity
14814 (sort (org-split-string
14815 tags (org-re "[^[:alnum:]_@#%]+"))
14816 org-tags-sort-function) ":")))
14818 (if (string-match "\\`[\t ]*\\'" tags)
14820 (unless (string-match ":$" tags) (setq tags (concat tags ":")))
14821 (unless (string-match "^:" tags) (setq tags (concat ":" tags))))
14823 ;; Insert new tags at the correct column
14824 (beginning-of-line 1)
14825 (setq level (or (and (looking-at org-outline-regexp)
14826 (- (match-end 0) (point) 1))
14829 ((and (equal current "") (equal tags "")))
14830 ((re-search-forward
14831 (concat "\\([ \t]*" (regexp-quote current) "\\)[ \t]*$")
14833 (if (equal tags "")
14835 (goto-char (match-beginning 0))
14836 (setq c0 (current-column)
14837 ;; compute offset for the case of org-indent-mode active
14838 di (if (org-bound-and-true-p org-indent-mode)
14839 (* (1- org-indent-indentation-per-level) (1- level))
14841 p0 (if (equal (char-before) ?*) (1+ (point)) (point))
14842 tc (+ org-tags-column (if (> org-tags-column 0) (- di) di))
14843 c1 (max (1+ c0) (if (> tc 0) tc (- (- tc) (string-width tags))))
14844 rpl (concat (make-string (max 0 (- c1 c0)) ?\ ) tags)))
14845 (replace-match rpl t t)
14846 (and (not (featurep 'xemacs)) c0 indent-tabs-mode (tabify p0 (point)))
14848 (t (error "Tags alignment failed")))
14849 (org-move-to-column col)
14851 (run-hooks 'org-after-tags-change-hook))))))
14853 (defun org-change-tag-in-region (beg end tag off)
14854 "Add or remove TAG for each entry in the region.
14855 This works in the agenda, and also in an org-mode buffer."
14857 (list (region-beginning) (region-end)
14858 (let ((org-last-tags-completion-table
14859 (if (derived-mode-p 'org-mode)
14861 (delq nil (append (org-get-buffer-tags)
14862 (org-global-tags-completion-table))))
14863 (org-global-tags-completion-table))))
14864 (org-icompleting-read
14865 "Tag: " 'org-tags-completion-function nil nil nil
14866 'org-tags-history))
14868 (message "[s]et or
[r]emove? ")
14869 (equal (read-char-exclusive) ?r))))
14870 (if (fboundp 'deactivate-mark) (deactivate-mark))
14871 (let ((agendap (equal major-mode 'org-agenda-mode))
14872 l1 l2 m buf pos newhead (cnt 0))
14874 (setq l2 (1- (org-current-line)))
14876 (setq l1 (org-current-line))
14877 (loop for l from l1 to l2 do
14879 (setq m (get-text-property (point) 'org-hd-marker))
14880 (when (or (and (derived-mode-p 'org-mode) (org-at-heading-p))
14882 (setq buf (if agendap (marker-buffer m) (current-buffer))
14883 pos (if agendap m (point)))
14884 (with-current-buffer buf
14888 (setq cnt (1+ cnt))
14889 (org-toggle-tag tag (if off 'off 'on))
14890 (setq newhead (org-get-heading)))))
14891 (and agendap (org-agenda-change-all-lines newhead m))))
14892 (message "Tag :%s: %s in %d headings" tag (if off "removed" "set") cnt)))
14894 (defun org-tags-completion-function (string predicate &optional flag)
14895 (let (s1 s2 rtn (ctable org-last-tags-completion-table)
14896 (confirm (lambda (x) (stringp (car x)))))
14897 (if (string-match "^\\(.*[-+:&,|]\\)\\([^-+:&,|]*\\)$" string)
14898 (setq s1 (match-string 1 string)
14899 s2 (match-string 2 string))
14900 (setq s1 "" s2 string))
14904 (setq rtn (try-completion s2 ctable confirm))
14907 (concat s1 s2 (substring rtn (length s2))
14908 (if (and org-add-colon-after-tag-completion
14909 (assoc rtn ctable))
14914 (all-completions s2 ctable confirm))
14917 (assoc s2 ctable)))))
14919 (defun org-fast-tag-insert (kwd tags face &optional end)
14920 "Insert KDW, and the TAGS, the latter with face FACE.
14922 (insert (format "%-12s" (concat kwd ":"))
14923 (org-add-props (mapconcat 'identity tags " ") nil 'face face)
14926 (defun org-fast-tag-show-exit (flag)
14929 (if (re-search-forward "[ \t]+Next change exits" (point-at-eol) t)
14930 (replace-match ""))
14933 (org-move-to-column (- (window-width) 19) t)
14934 (insert (org-add-props " Next change exits" nil 'face 'org-warning)))))
14936 (defun org-set-current-tags-overlay (current prefix)
14937 "Add an overlay to CURRENT tag with PREFIX."
14938 (let ((s (concat ":" (mapconcat 'identity current ":") ":")))
14939 (if (featurep 'xemacs)
14940 (org-overlay-display org-tags-overlay (concat prefix s)
14941 'secondary-selection)
14942 (put-text-property 0 (length s) 'face '(secondary-selection org-tag) s)
14943 (org-overlay-display org-tags-overlay (concat prefix s)))))
14945 (defvar org-last-tag-selection-key nil)
14946 (defun org-fast-tag-selection (current inherited table &optional todo-table)
14947 "Fast tag selection with single keys.
14948 CURRENT is the current list of tags in the headline, INHERITED is the
14949 list of inherited tags, and TABLE is an alist of tags and corresponding keys,
14950 possibly with grouping information. TODO-TABLE is a similar table with
14951 TODO keywords, should these have keys assigned to them.
14952 If the keys are nil, a-z are automatically assigned.
14953 Returns the new tags string, or nil to not change the current settings."
14954 (let* ((fulltable (append table todo-table))
14955 (maxlen (apply 'max (mapcar
14957 (if (stringp (car x)) (string-width (car x)) 0))
14959 (buf (current-buffer))
14960 (expert (eq org-fast-tag-selection-single-key 'expert))
14962 (fwidth (+ maxlen 3 1 3))
14963 (ncol (/ (- (window-width) 4) fwidth))
14966 tg cnt e c char c1 c2 ntable tbl rtn
14967 ov-start ov-end ov-prefix
14968 (exit-after-next org-fast-tag-selection-single-key)
14969 (done-keywords org-done-keywords)
14972 (beginning-of-line 1)
14974 (org-re ".*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
14975 (setq ov-start (match-beginning 1)
14976 ov-end (match-end 1)
14978 (setq ov-start (1- (point-at-eol))
14979 ov-end (1+ ov-start))
14980 (skip-chars-forward "^\n\r")
14983 (buffer-substring (1- (point)) (point))
14984 (if (> (current-column) org-tags-column)
14986 (make-string (- org-tags-column (current-column)) ?\ ))))))
14987 (move-overlay org-tags-overlay ov-start ov-end)
14988 (save-window-excursion
14990 (set-buffer (get-buffer-create " *Org tags*"))
14991 (delete-other-windows)
14992 (set-window-buffer (split-window-vertically) (get-buffer-create " *Org tags*"))
14993 (org-switch-to-buffer-other-window " *Org tags*"))
14995 (org-set-local 'org-done-keywords done-keywords)
14996 (org-fast-tag-insert "Inherited" inherited i-face "\n")
14997 (org-fast-tag-insert "Current" current c-face "\n\n")
14998 (org-fast-tag-show-exit exit-after-next)
14999 (org-set-current-tags-overlay current ov-prefix)
15000 (setq tbl fulltable char ?a cnt 0)
15001 (while (setq e (pop tbl))
15003 ((equal (car e) :startgroup)
15004 (push '() groups) (setq ingroup t)
15005 (when (not (= cnt 0))
15008 (insert (if (cdr e) (format "%s: " (cdr e)) "") "{ "))
15009 ((equal (car e) :endgroup)
15010 (setq ingroup nil cnt 0)
15011 (insert "}" (if (cdr e) (format " (%s) " (cdr e)) "") "\n"))
15012 ((equal e '(:newline))
15013 (when (not (= cnt 0))
15017 (while (equal (car tbl) '(:newline))
15019 (setq tbl (cdr tbl)))))
15020 ((equal e '(:grouptags)) nil)
15022 (setq tg (copy-sequence (car e)) c2 nil)
15025 ;; automatically assign a character.
15026 (setq c1 (string-to-char
15027 (downcase (substring
15028 tg (if (= (string-to-char tg) ?@) 1 0)))))
15029 (if (or (rassoc c1 ntable) (rassoc c1 table))
15030 (while (or (rassoc char ntable) (rassoc char table))
15031 (setq char (1+ char)))
15033 (setq c (or c2 char)))
15034 (if ingroup (push tg (car groups)))
15035 (setq tg (org-add-props tg nil 'face
15037 ((not (assoc tg table))
15038 (org-get-todo-face tg))
15039 ((member tg current) c-face)
15040 ((member tg inherited) i-face))))
15041 (if (equal (caar tbl) :grouptags)
15042 (org-add-props tg nil 'face 'org-tag-group))
15043 (if (and (= cnt 0) (not ingroup)) (insert " "))
15044 (insert "[" c "] " tg (make-string
15045 (- fwidth 4 (length tg)) ?\ ))
15046 (push (cons tg c) ntable)
15047 (when (= (setq cnt (1+ cnt)) ncol)
15049 (if ingroup (insert " "))
15051 (setq ntable (nreverse ntable))
15053 (goto-char (point-min))
15054 (if (not expert) (org-fit-window-to-buffer))
15058 (message "[a-z..]:Toggle [SPC]:clear [RET]:accept [TAB]:free [!] %sgroups%s"
15059 (if (not groups) "no " "")
15060 (if expert " [C-c]:window" (if exit-after-next " [C-c]:single" " [C-c]:multi")))
15061 (setq c (let ((inhibit-quit t)) (read-char-exclusive)))
15062 (setq org-last-tag-selection-key c)
15064 ((= c ?\r) (throw 'exit t))
15066 (setq groups (not groups))
15067 (goto-char (point-min))
15068 (while (re-search-forward "[{}]" nil t) (replace-match " ")))
15071 (org-fast-tag-show-exit
15072 (setq exit-after-next (not exit-after-next)))
15074 (delete-other-windows)
15075 (set-window-buffer (split-window-vertically) " *Org tags*")
15076 (org-switch-to-buffer-other-window " *Org tags*")
15077 (org-fit-window-to-buffer)))
15079 (and (= c ?q) (not (rassoc c ntable))))
15080 (org-detach-overlay org-tags-overlay)
15081 (setq quit-flag t))
15084 (if exit-after-next (setq exit-after-next 'now)))
15086 (condition-case nil
15087 (setq tg (org-icompleting-read
15090 (with-current-buffer buf
15091 (org-get-buffer-tags)))))
15092 (quit (setq tg "")))
15093 (when (string-match "\\S-" tg)
15094 (add-to-list 'buffer-tags (list tg))
15095 (if (member tg current)
15096 (setq current (delete tg current))
15097 (push tg current)))
15098 (if exit-after-next (setq exit-after-next 'now)))
15099 ((setq e (rassoc c todo-table) tg (car e))
15100 (with-current-buffer buf
15101 (save-excursion (org-todo tg)))
15102 (if exit-after-next (setq exit-after-next 'now)))
15103 ((setq e (rassoc c ntable) tg (car e))
15104 (if (member tg current)
15105 (setq current (delete tg current))
15106 (loop for g in groups do
15109 (setq current (delete x current)))
15112 (if exit-after-next (setq exit-after-next 'now))))
15114 ;; Create a sorted list
15118 (assoc b (cdr (memq (assoc a ntable) ntable))))))
15119 (if (eq exit-after-next 'now) (throw 'exit t))
15120 (goto-char (point-min))
15121 (beginning-of-line 2)
15122 (delete-region (point) (point-at-eol))
15123 (org-fast-tag-insert "Current" current c-face)
15124 (org-set-current-tags-overlay current ov-prefix)
15125 (while (re-search-forward
15126 (org-re "\\[.\\] \\([[:alnum:]_@#%]+\\)") nil t)
15127 (setq tg (match-string 1))
15128 (add-text-properties
15129 (match-beginning 1) (match-end 1)
15132 ((member tg current) c-face)
15133 ((member tg inherited) i-face)
15134 (t (get-text-property (match-beginning 1) 'face))))))
15135 (goto-char (point-min)))))
15136 (org-detach-overlay org-tags-overlay)
15138 (mapconcat 'identity current ":")
15141 (defun org-get-tags-string ()
15142 "Get the TAGS string in the current headline."
15143 (unless (org-at-heading-p t)
15144 (user-error "Not on a heading"))
15146 (beginning-of-line 1)
15147 (if (looking-at (org-re ".*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
15148 (org-match-string-no-properties 1)
15151 (defun org-get-tags ()
15152 "Get the list of tags specified in the current headline."
15153 (org-split-string (org-get-tags-string) ":"))
15155 (defun org-get-buffer-tags ()
15156 "Get a table of all tags used in the buffer, for completion."
15159 (goto-char (point-min))
15160 (while (re-search-forward
15161 (org-re "[ \t]:\\([[:alnum:]_@#%:]+\\):[ \t\r\n]") nil t)
15162 (when (equal (char-after (point-at-bol 0)) ?*)
15163 (mapc (lambda (x) (add-to-list 'tags x))
15164 (org-split-string (org-match-string-no-properties 1) ":")))))
15165 (mapc (lambda (s) (add-to-list 'tags s)) org-file-tags)
15166 (mapcar 'list tags)))
15168 ;;;; The mapping API
15170 (defun org-map-entries (func &optional match scope &rest skip)
15171 "Call FUNC at each headline selected by MATCH in SCOPE.
15173 FUNC is a function or a lisp form. The function will be called without
15174 arguments, with the cursor positioned at the beginning of the headline.
15175 The return values of all calls to the function will be collected and
15176 returned as a list.
15178 The call to FUNC will be wrapped into a save-excursion form, so FUNC
15179 does not need to preserve point. After evaluation, the cursor will be
15180 moved to the end of the line (presumably of the headline of the
15181 processed entry) and search continues from there. Under some
15182 circumstances, this may not produce the wanted results. For example,
15183 if you have removed (e.g. archived) the current (sub)tree it could
15184 mean that the next entry will be skipped entirely. In such cases, you
15185 can specify the position from where search should continue by making
15186 FUNC set the variable `org-map-continue-from' to the desired buffer
15189 MATCH is a tags/property/todo match as it is used in the agenda tags view.
15190 Only headlines that are matched by this query will be considered during
15191 the iteration. When MATCH is nil or t, all headlines will be
15192 visited by the iteration.
15194 SCOPE determines the scope of this command. It can be any of:
15196 nil The current buffer, respecting the restriction if any
15197 tree The subtree started with the entry at point
15198 region The entries within the active region, if any
15200 The entries within the active region, but only those at
15201 the same level than the first one.
15202 file The current buffer, without restriction
15204 The current buffer, and any archives associated with it
15205 agenda All agenda files
15206 agenda-with-archives
15207 All agenda files with any archive files associated with them
15209 If this is a list, all files in the list will be scanned
15211 The remaining args are treated as settings for the skipping facilities of
15212 the scanner. The following items can be given here:
15214 archive skip trees with the archive tag
15215 comment skip trees with the COMMENT keyword
15216 function or Emacs Lisp form:
15217 will be used as value for `org-agenda-skip-function', so
15218 whenever the function returns a position, FUNC will not be
15219 called for that entry and search will continue from the
15222 If your function needs to retrieve the tags including inherited tags
15223 at the *current* entry, you can use the value of the variable
15224 `org-scanner-tags' which will be much faster than getting the value
15225 with `org-get-tags-at'. If your function gets properties with
15226 `org-entry-properties' at the *current* entry, bind `org-trust-scanner-tags'
15227 to t around the call to `org-entry-properties' to get the same speedup.
15228 Note that if your function moves around to retrieve tags and properties at
15229 a *different* entry, you cannot use these techniques."
15230 (unless (and (or (eq scope 'region) (eq scope 'region-start-level))
15231 (not (org-region-active-p)))
15232 (let* ((org-agenda-archives-mode nil) ; just to make sure
15233 (org-agenda-skip-archived-trees (memq 'archive skip))
15234 (org-agenda-skip-comment-trees (memq 'comment skip))
15235 (org-agenda-skip-function
15236 (car (org-delete-all '(comment archive) skip)))
15237 (org-tags-match-list-sublevels t)
15238 (start-level (eq scope 'region-start-level))
15240 org-todo-keywords-for-agenda
15241 org-done-keywords-for-agenda
15242 org-todo-keyword-alist-for-agenda
15243 org-tag-alist-for-agenda
15247 ((eq match t) (setq matcher t))
15248 ((eq match nil) (setq matcher t))
15249 (t (setq matcher (if match (cdr (org-make-tags-matcher match)) t))))
15253 (cond ((eq scope 'tree)
15254 (org-back-to-heading t)
15255 (org-narrow-to-subtree)
15257 ((and (or (eq scope 'region) (eq scope 'region-start-level))
15258 (org-region-active-p))
15259 ;; If needed, set start-level to a string like "2"
15262 (goto-char (region-beginning))
15263 (unless (org-at-heading-p) (outline-next-heading))
15264 (setq start-level (org-current-level))))
15265 (narrow-to-region (region-beginning)
15267 (goto-char (region-end))
15268 (unless (and (bolp) (org-at-heading-p))
15269 (outline-next-heading))
15275 (org-agenda-prepare-buffers
15276 (list (buffer-file-name (current-buffer))))
15277 (setq res (org-scan-tags func matcher todo-only start-level)))
15278 ;; Get the right scope
15280 ((and scope (listp scope) (symbolp (car scope)))
15281 (setq scope (eval scope)))
15282 ((eq scope 'agenda)
15283 (setq scope (org-agenda-files t)))
15284 ((eq scope 'agenda-with-archives)
15285 (setq scope (org-agenda-files t))
15286 (setq scope (org-add-archive-files scope)))
15288 (setq scope (list (buffer-file-name))))
15289 ((eq scope 'file-with-archives)
15290 (setq scope (org-add-archive-files (list (buffer-file-name))))))
15291 (org-agenda-prepare-buffers scope)
15292 (while (setq file (pop scope))
15293 (with-current-buffer (org-find-base-buffer-visiting file)
15297 (goto-char (point-min))
15298 (setq res (append res (org-scan-tags func matcher todo-only))))))))))
15303 ;;; Setting and retrieving properties
15305 (defconst org-special-properties
15306 '("TODO" "TAGS" "ALLTAGS" "DEADLINE" "SCHEDULED" "CLOCK" "CLOSED" "PRIORITY"
15307 "TIMESTAMP" "TIMESTAMP_IA" "BLOCKED" "FILE" "CLOCKSUM" "CLOCKSUM_T")
15308 "The special properties valid in Org-mode.
15310 These are properties that are not defined in the property drawer,
15311 but in some other way.")
15313 (defconst org-default-properties
15314 '("ARCHIVE" "CATEGORY" "SUMMARY" "DESCRIPTION" "CUSTOM_ID"
15315 "LOCATION" "LOGGING" "COLUMNS" "VISIBILITY"
15316 "TABLE_EXPORT_FORMAT" "TABLE_EXPORT_FILE"
15317 "EXPORT_OPTIONS" "EXPORT_TEXT" "EXPORT_FILE_NAME"
15318 "EXPORT_TITLE" "EXPORT_AUTHOR" "EXPORT_DATE"
15319 "ORDERED" "NOBLOCKING" "COOKIE_DATA" "LOG_INTO_DRAWER" "REPEAT_TO_STATE"
15320 "CLOCK_MODELINE_TOTAL" "STYLE" "HTML_CONTAINER_CLASS")
15321 "Some properties that are used by Org-mode for various purposes.
15322 Being in this list makes sure that they are offered for completion.")
15324 (defun org-property-action ()
15325 "Do an action on properties."
15328 (org-at-property-p)
15329 (message "Property Action: [s]et [d]elete [D]elete globally [c]ompute")
15330 (setq c (read-char-exclusive))
15333 (call-interactively 'org-set-property))
15335 (call-interactively 'org-delete-property))
15337 (call-interactively 'org-delete-property-globally))
15339 (call-interactively 'org-compute-property-at-point))
15340 (t (user-error "No such property action %c" c)))))
15342 (defun org-inc-effort ()
15343 "Increment the value of the effort property in the current entry."
15345 (org-set-effort nil t))
15347 (defvar org-clock-effort) ;; Defined in org-clock.el
15348 (defvar org-clock-current-task) ;; Defined in org-clock.el
15349 (defun org-set-effort (&optional value increment)
15350 "Set the effort property of the current entry.
15351 With numerical prefix arg, use the nth allowed value, 0 stands for the
15352 10th allowed value.
15354 When INCREMENT is non-nil, set the property to the next allowed value."
15356 (if (equal value 0) (setq value 10))
15357 (let* ((completion-ignore-case t)
15358 (prop org-effort-property)
15359 (cur (org-entry-get nil prop))
15360 (allowed (org-property-get-allowed-values nil prop 'table))
15361 (existing (mapcar 'list (org-property-values prop)))
15362 (heading (nth 4 (org-heading-components)))
15365 ((stringp value) value)
15366 ((and allowed (integerp value))
15367 (or (car (nth (1- value) allowed))
15368 (car (org-last allowed))))
15369 ((and allowed increment)
15370 (or (caadr (member (list cur) allowed))
15371 (user-error "Allowed effort values are not set")))
15373 (message "Select 1-9,0, [RET%s]: %s"
15374 (if cur (concat "=" cur) "")
15375 (mapconcat 'car allowed " "))
15376 (setq rpl (read-char-exclusive))
15377 (if (equal rpl ?\r)
15379 (setq rpl (- rpl ?0))
15380 (if (equal rpl 0) (setq rpl 10))
15381 (if (and (> rpl 0) (<= rpl (length allowed)))
15382 (car (nth (1- rpl) allowed))
15383 (org-completing-read "Effort: " allowed nil))))
15385 (let (org-completion-use-ido org-completion-use-iswitchb)
15386 (org-completing-read
15387 (concat "Effort " (if (and cur (string-match "\\S-" cur))
15388 (concat "[" cur "]") "")
15390 existing nil nil "" nil cur))))))
15391 (unless (equal (org-entry-get nil prop) val)
15392 (org-entry-put nil prop val))
15393 (org-refresh-property
15394 '((effort . identity)
15395 (effort-minutes . org-duration-string-to-minutes))
15397 (when (string= heading org-clock-current-task)
15398 (setq org-clock-effort (get-text-property (point-at-bol) 'effort))
15399 (org-clock-update-mode-line))
15400 (message "%s is now %s" prop val)))
15402 (defun org-at-property-p ()
15403 "Non-nil when point is inside a property drawer.
15404 See `org-property-re' for match data, if applicable."
15405 (when (eq (org-element-type (org-element-at-point)) 'node-property)
15407 (beginning-of-line)
15408 (looking-at org-property-re))))
15410 (defun org-get-property-block (&optional beg end force)
15411 "Return the (beg . end) range of the body of the property drawer.
15412 BEG and END are the beginning and end of the current subtree, or of
15413 the part before the first headline. If they are not given, they will
15414 be found. If the drawer does not exist and FORCE is non-nil, create
15418 (let* ((beg (or beg (and (org-before-first-heading-p) (point-min))
15419 (progn (org-back-to-heading t) (point))))
15420 (end (or end (and (not (outline-next-heading)) (point-max))
15423 (if (re-search-forward org-property-start-re end t)
15424 (setq beg (1+ (match-end 0)))
15427 (org-insert-property-drawer)
15428 (setq end (progn (outline-next-heading) (point))))
15431 (if (re-search-forward org-property-start-re end t)
15432 (setq beg (1+ (match-end 0)))))
15433 (if (re-search-forward org-property-end-re end t)
15434 (setq end (match-beginning 0))
15435 (or force (throw 'exit nil))
15439 (insert ":END:\n"))
15442 (defun org-entry-properties (&optional pom which specific)
15443 "Get all properties of the entry at point-or-marker POM.
15444 This includes the TODO keyword, the tags, time strings for deadline,
15445 scheduled, and clocking, and any additional properties defined in the
15446 entry. The return value is an alist, keys may occur multiple times
15447 if the property key was used several times.
15448 POM may also be nil, in which case the current entry is used.
15449 If WHICH is nil or `all', get all properties. If WHICH is
15450 `special' or `standard', only get that subclass. If WHICH
15451 is a string only get exactly this property. SPECIFIC can be a string, the
15452 specific property we are interested in. Specifying it can speed
15453 things up because then unnecessary parsing is avoided."
15454 (setq which (or which 'all))
15455 (org-with-wide-buffer
15456 (org-with-point-at pom
15457 (let ((clockstr (substring org-clock-string 0 -1))
15458 (excluded '("TODO" "TAGS" "ALLTAGS" "PRIORITY" "BLOCKED"))
15459 (case-fold-search nil)
15460 beg end range props sum-props key key1 value string clocksum clocksumt)
15461 (when (and (derived-mode-p 'org-mode)
15462 (ignore-errors (org-back-to-heading t)))
15464 (setq sum-props (get-text-property (point) 'org-summaries))
15465 (setq clocksum (get-text-property (point) :org-clock-minutes)
15466 clocksumt (get-text-property (point) :org-clock-minutes-today))
15467 (outline-next-heading)
15469 (when (memq which '(all special))
15470 ;; Get the special properties, like TODO and tags
15472 (when (and (or (not specific) (string= specific "TODO"))
15473 (looking-at org-todo-line-regexp) (match-end 2))
15474 (push (cons "TODO" (org-match-string-no-properties 2)) props))
15475 (when (and (or (not specific) (string= specific "PRIORITY"))
15476 (looking-at org-priority-regexp))
15477 (push (cons "PRIORITY" (org-match-string-no-properties 2)) props))
15478 (when (or (not specific) (string= specific "FILE"))
15479 (push (cons "FILE" buffer-file-name) props))
15480 (when (and (or (not specific) (string= specific "TAGS"))
15481 (setq value (org-get-tags-string))
15482 (string-match "\\S-" value))
15483 (push (cons "TAGS" value) props))
15484 (when (and (or (not specific) (string= specific "ALLTAGS"))
15485 (setq value (org-get-tags-at)))
15486 (push (cons "ALLTAGS" (concat ":" (mapconcat 'identity value ":")
15489 (when (or (not specific) (string= specific "BLOCKED"))
15490 (push (cons "BLOCKED" (if (org-entry-blocked-p) "t" "")) props))
15491 (when (or (not specific)
15493 '("SCHEDULED" "DEADLINE" "CLOCK" "CLOSED"
15494 "TIMESTAMP" "TIMESTAMP_IA")))
15496 (while (and (re-search-forward org-maybe-keyword-time-regexp end t)
15497 (not (text-property-any 0 (length (match-string 0))
15498 'face 'font-lock-comment-face
15499 (match-string 0))))
15500 (setq key (if (match-end 1)
15501 (substring (org-match-string-no-properties 1)
15503 string (if (equal key clockstr)
15505 (buffer-substring-no-properties
15506 (match-beginning 3) (goto-char
15508 (substring (org-match-string-no-properties 3)
15510 ;; Get the correct property name from the key. This is
15511 ;; necessary if the user has configured time keywords.
15512 (setq key1 (concat key ":"))
15516 (if (= (char-after (match-beginning 3)) ?\[)
15517 "TIMESTAMP_IA" "TIMESTAMP")))
15518 ((equal key1 org-scheduled-string) (setq key "SCHEDULED"))
15519 ((equal key1 org-deadline-string) (setq key "DEADLINE"))
15520 ((equal key1 org-closed-string) (setq key "CLOSED"))
15521 ((equal key1 org-clock-string) (setq key "CLOCK")))
15522 (if (and specific (equal key specific) (not (equal key "CLOCK")))
15524 (push (cons key string) props)
15525 ;; no need to search further if match is found
15527 (when (or (equal key "CLOCK") (not (assoc key props)))
15528 (push (cons key string) props)))))))
15530 (when (memq which '(all standard))
15531 ;; Get the standard properties, like :PROP: ...
15532 (setq range (org-get-property-block beg end))
15534 (goto-char (car range))
15535 (while (re-search-forward org-property-re
15537 (setq key (org-match-string-no-properties 2)
15538 value (org-trim (or (org-match-string-no-properties 3) "")))
15539 (unless (member key excluded)
15540 (push (cons key (or value "")) props)))))
15542 (push (cons "CLOCKSUM"
15543 (org-columns-number-to-string (/ (float clocksum) 60.)
15547 (push (cons "CLOCKSUM_T"
15548 (org-columns-number-to-string (/ (float clocksumt) 60.)
15551 (unless (assoc "CATEGORY" props)
15552 (push (cons "CATEGORY" (org-get-category)) props))
15553 (append sum-props (nreverse props)))))))
15555 (defun org-entry-get (pom property &optional inherit literal-nil)
15556 "Get value of PROPERTY for entry or content at point-or-marker POM.
15557 If INHERIT is non-nil and the entry does not have the property,
15558 then also check higher levels of the hierarchy.
15559 If INHERIT is the symbol `selective', use inheritance only if the setting
15560 in `org-use-property-inheritance' selects PROPERTY for inheritance.
15561 If the property is present but empty, the return value is the empty string.
15562 If the property is not present at all, nil is returned.
15564 Return the value as a string.
15566 If LITERAL-NIL is set, return the string value \"nil\" as a string,
15567 do not interpret it as the list atom nil. This is used for inheritance
15568 when a \"nil\" value can supersede a non-nil value higher up the hierarchy."
15569 (org-with-point-at pom
15570 (if (and inherit (if (eq inherit 'selective)
15571 (org-property-inherit-p property)
15573 (org-entry-get-with-inheritance property literal-nil)
15574 (if (member property org-special-properties)
15575 ;; We need a special property. Use `org-entry-properties'
15576 ;; to retrieve it, but specify the wanted property
15577 (cdr (assoc property (org-entry-properties nil 'special property)))
15578 (org-with-wide-buffer
15579 (let ((range (org-get-property-block)))
15580 (when (and range (not (eq (car range) (cdr range)))
15582 (goto-char (car range))
15584 (concat (org-re-property property) "\\|"
15585 (org-re-property (concat property "+")))
15588 (list (or (assoc property org-file-properties)
15589 (assoc property org-global-properties)
15590 (assoc property org-global-properties-fixed))))
15592 (when (re-search-forward
15593 (org-re-property key) (cdr range) t)
15595 (org-update-property-plist
15598 (org-match-string-no-properties 3) "")
15601 (goto-char (car range))
15602 (funcall ap property)
15603 (goto-char (car range))
15604 (while (funcall ap (concat property "+")))
15605 (setq val (cdr (assoc property props)))
15606 (when val (if literal-nil val (org-not-nil val)))))))))))
15608 (defun org-property-or-variable-value (var &optional inherit)
15609 "Check if there is a property fixing the value of VAR.
15610 If yes, return this value. If not, return the current value of the variable."
15611 (let ((prop (org-entry-get nil (symbol-name var) inherit)))
15612 (if (and prop (stringp prop) (string-match "\\S-" prop))
15614 (symbol-value var))))
15616 (defun org-entry-delete (pom property)
15617 "Delete the property PROPERTY from entry at point-or-marker POM."
15618 (unless (member property org-special-properties)
15619 (org-with-point-at pom
15620 (let ((range (org-get-property-block)))
15622 (goto-char (car range))
15624 (org-re-property property nil t)
15627 (delete-region (match-beginning 0) (1+ (point-at-eol)))
15628 (org-remove-empty-drawer-at (car range))
15632 ;; Multi-values properties are properties that contain multiple values
15633 ;; These values are assumed to be single words, separated by whitespace.
15634 (defun org-entry-add-to-multivalued-property (pom property value)
15635 "Add VALUE to the words in the PROPERTY in entry at point-or-marker POM."
15636 (let* ((old (org-entry-get pom property))
15637 (values (and old (org-split-string old "[ \t]"))))
15638 (setq value (org-entry-protect-space value))
15639 (unless (member value values)
15640 (setq values (append values (list value)))
15641 (org-entry-put pom property
15642 (mapconcat 'identity values " ")))))
15644 (defun org-entry-remove-from-multivalued-property (pom property value)
15645 "Remove VALUE from words in the PROPERTY in entry at point-or-marker POM."
15646 (let* ((old (org-entry-get pom property))
15647 (values (and old (org-split-string old "[ \t]"))))
15648 (setq value (org-entry-protect-space value))
15649 (when (member value values)
15650 (setq values (delete value values))
15651 (org-entry-put pom property
15652 (mapconcat 'identity values " ")))))
15654 (defun org-entry-member-in-multivalued-property (pom property value)
15655 "Is VALUE one of the words in the PROPERTY in entry at point-or-marker POM?"
15656 (let* ((old (org-entry-get pom property))
15657 (values (and old (org-split-string old "[ \t]"))))
15658 (setq value (org-entry-protect-space value))
15659 (member value values)))
15661 (defun org-entry-get-multivalued-property (pom property)
15662 "Return a list of values in a multivalued property."
15663 (let* ((value (org-entry-get pom property))
15664 (values (and value (org-split-string value "[ \t]"))))
15665 (mapcar 'org-entry-restore-space values)))
15667 (defun org-entry-put-multivalued-property (pom property &rest values)
15668 "Set multivalued PROPERTY at point-or-marker POM to VALUES.
15669 VALUES should be a list of strings. Spaces will be protected."
15670 (org-entry-put pom property
15671 (mapconcat 'org-entry-protect-space values " "))
15672 (let* ((value (org-entry-get pom property))
15673 (values (and value (org-split-string value "[ \t]"))))
15674 (mapcar 'org-entry-restore-space values)))
15676 (defun org-entry-protect-space (s)
15677 "Protect spaces and newline in string S."
15678 (while (string-match " " s)
15679 (setq s (replace-match "%20" t t s)))
15680 (while (string-match "\n" s)
15681 (setq s (replace-match "%0A" t t s)))
15684 (defun org-entry-restore-space (s)
15685 "Restore spaces and newline in string S."
15686 (while (string-match "%20" s)
15687 (setq s (replace-match " " t t s)))
15688 (while (string-match "%0A" s)
15689 (setq s (replace-match "\n" t t s)))
15692 (defvar org-entry-property-inherited-from (make-marker)
15693 "Marker pointing to the entry from where a property was inherited.
15694 Each call to `org-entry-get-with-inheritance' will set this marker to the
15695 location of the entry where the inheritance search matched. If there was
15696 no match, the marker will point nowhere.
15697 Note that also `org-entry-get' calls this function, if the INHERIT flag
15700 (defun org-entry-get-with-inheritance (property &optional literal-nil)
15701 "Get PROPERTY of entry or content at point, search higher levels if needed.
15702 The search will stop at the first ancestor which has the property defined.
15703 If the value found is \"nil\", return nil to show that the property
15704 should be considered as undefined (this is the meaning of nil here).
15705 However, if LITERAL-NIL is set, return the string value \"nil\" instead."
15706 (move-marker org-entry-property-inherited-from nil)
15713 (when (setq tmp (org-entry-get nil property nil literal-nil))
15714 (or (ignore-errors (org-back-to-heading t))
15715 (goto-char (point-min)))
15716 (move-marker org-entry-property-inherited-from (point))
15718 (or (ignore-errors (org-up-heading-safe))
15719 (throw 'ex nil))))))
15721 (cdr (assoc property org-file-properties))
15722 (cdr (assoc property org-global-properties))
15723 (cdr (assoc property org-global-properties-fixed))))
15724 (if literal-nil tmp (org-not-nil tmp))))
15726 (defvar org-property-changed-functions nil
15727 "Hook called when the value of a property has changed.
15728 Each hook function should accept two arguments, the name of the property
15729 and the new value.")
15731 (defun org-entry-put (pom property value)
15732 "Set PROPERTY to VALUE for entry at point-or-marker POM.
15733 If the value is `nil', it is converted to the empty string.
15734 If it is not a string, an error is raised."
15735 (cond ((null value) (setq value ""))
15736 ((not (stringp value))
15737 (error "Properties values should be strings.")))
15738 (org-with-point-at pom
15739 (org-back-to-heading t)
15740 (let ((beg (point)) (end (save-excursion (outline-next-heading) (point)))
15743 ((equal property "TODO")
15744 (when (and (string-match "\\S-" value)
15745 (not (member value org-todo-keywords-1)))
15746 (user-error "\"%s\" is not a valid TODO state" value))
15747 (if (or (not value)
15748 (not (string-match "\\S-" value)))
15749 (setq value 'none))
15751 (org-set-tags nil 'align))
15752 ((equal property "PRIORITY")
15753 (org-priority (if (and value (string-match "\\S-" value))
15754 (string-to-char value) ?\ ))
15755 (org-set-tags nil 'align))
15756 ((equal property "CLOCKSUM")
15757 (if (not (re-search-forward
15758 (concat org-clock-string ".*\\]--\\(\\[[^]]+\\]\\)") nil t))
15759 (error "Cannot find a clock log")
15760 (goto-char (- (match-end 1) 2))
15762 ((eq value 'earlier) (org-timestamp-down))
15763 ((eq value 'later) (org-timestamp-up)))
15764 (org-clock-sum-current-item)))
15765 ((equal property "SCHEDULED")
15766 (if (re-search-forward org-scheduled-time-regexp end t)
15768 ((eq value 'earlier) (org-timestamp-change -1 'day))
15769 ((eq value 'later) (org-timestamp-change 1 'day))
15770 (t (call-interactively 'org-schedule)))
15771 (call-interactively 'org-schedule)))
15772 ((equal property "DEADLINE")
15773 (if (re-search-forward org-deadline-time-regexp end t)
15775 ((eq value 'earlier) (org-timestamp-change -1 'day))
15776 ((eq value 'later) (org-timestamp-change 1 'day))
15777 (t (call-interactively 'org-deadline)))
15778 (call-interactively 'org-deadline)))
15779 ((member property org-special-properties)
15780 (error "The %s property can not yet be set with `org-entry-put'"
15782 (t ; a non-special property
15783 (let ((buffer-invisibility-spec (org-inhibit-invisibility))) ; Emacs 21
15784 (setq range (org-get-property-block beg end 'force))
15785 (goto-char (car range))
15786 (if (re-search-forward
15787 (org-re-property property nil t) (cdr range) t)
15789 (delete-region (match-beginning 0) (match-end 0))
15790 (goto-char (match-beginning 0)))
15791 (goto-char (cdr range))
15795 (insert ":" property ":")
15796 (and value (insert " " value))
15797 (org-indent-line)))))
15798 (run-hook-with-args 'org-property-changed-functions property value)))
15800 (defun org-buffer-property-keys (&optional include-specials include-defaults include-columns)
15801 "Get all property keys in the current buffer.
15802 With INCLUDE-SPECIALS, also list the special properties that reflect things
15803 like tags and TODO state.
15804 With INCLUDE-DEFAULTS, also include properties that has special meaning
15805 internally: ARCHIVE, CATEGORY, SUMMARY, DESCRIPTION, LOCATION, and LOGGING
15807 With INCLUDE-COLUMNS, also include property names given in COLUMN
15808 formats in the current buffer."
15809 (let (rtn range cfmt s p)
15813 (goto-char (point-min))
15814 (while (re-search-forward org-property-start-re nil t)
15816 (setq range (or (org-get-property-block)
15818 (format "Malformed drawer at %d, repair?" (point)))
15819 (org-get-property-block nil nil t)
15820 (throw 'cont nil))))
15821 (goto-char (car range))
15822 (while (re-search-forward org-property-re
15824 (add-to-list 'rtn (org-match-string-no-properties 2)))
15825 (outline-next-heading)))))
15827 (when include-specials
15828 (setq rtn (append org-special-properties rtn)))
15830 (when include-defaults
15831 (mapc (lambda (x) (add-to-list 'rtn x)) org-default-properties)
15832 (add-to-list 'rtn org-effort-property))
15834 (when include-columns
15838 (goto-char (point-min))
15839 (while (re-search-forward
15840 "^[ \t]*\\(#\\+COLUMNS:\\|[ \t]*:COLUMNS:\\)[ \t]*\\(.*\\)"
15842 (setq cfmt (match-string 2) s 0)
15843 (while (string-match (org-re "%[0-9]*\\([-[:alnum:]_]+\\)")
15845 (setq s (match-end 0)
15846 p (match-string 1 cfmt))
15847 (unless (or (equal p "ITEM")
15848 (member p org-special-properties))
15849 (add-to-list 'rtn (match-string 1 cfmt))))))))
15851 (sort rtn (lambda (a b) (string< (upcase a) (upcase b))))))
15853 (defun org-property-values (key)
15854 "Return a list of all values of property KEY in the current buffer."
15858 (goto-char (point-min))
15859 (let ((re (org-re-property key))
15861 (while (re-search-forward re nil t)
15862 (add-to-list 'values (org-trim (match-string 3))))
15863 (delete "" values)))))
15865 (defun org-insert-property-drawer ()
15866 "Insert a property drawer into the current entry."
15867 (org-back-to-heading t)
15868 (looking-at org-outline-regexp)
15869 (let ((indent (if org-adapt-indentation
15870 (- (match-end 0) (match-beginning 0))
15873 (re (concat "^[ \t]*" org-keyword-time-regexp))
15875 (outline-next-heading)
15878 (while (re-search-forward re end t))
15879 (setq hiddenp (outline-invisible-p))
15881 (and (equal (char-after) ?\n) (forward-char 1))
15882 (while (looking-at "^[ \t]*\\(:CLOCK:\\|:LOGBOOK:\\|CLOCK:\\|:END:\\)")
15883 (if (member (match-string 1) '("CLOCK:" ":END:"))
15884 ;; just skip this line
15885 (beginning-of-line 2)
15886 ;; Drawer start, find the end
15887 (re-search-forward "^\\*+ \\|^[ \t]*:END:" nil t)
15888 (beginning-of-line 1)))
15889 (org-skip-over-state-notes)
15890 (skip-chars-backward " \t\n\r")
15891 (if (and (eq (char-before) ?*) (not (eq (char-after) ?\n)))
15893 (goto-char (point-at-eol))
15894 (let ((inhibit-read-only t)) (insert "\n:PROPERTIES:\n:END:"))
15895 (beginning-of-line 0)
15896 (org-indent-to-column indent)
15897 (beginning-of-line 2)
15898 (org-indent-to-column indent)
15899 (beginning-of-line 0)
15902 (org-back-to-heading t)
15904 (org-flag-drawer t))))
15906 (defun org-insert-drawer (&optional arg drawer)
15907 "Insert a drawer at point.
15909 Optional argument DRAWER, when non-nil, is a string representing
15910 drawer's name. Otherwise, the user is prompted for a name.
15912 If a region is active, insert the drawer around that region
15915 Point is left between drawer's boundaries."
15917 (let* ((drawer (if arg "PROPERTIES"
15918 (or drawer (read-from-minibuffer "Drawer: ")))))
15920 ;; With C-u, fall back on `org-insert-property-drawer'
15921 (arg (org-insert-property-drawer))
15923 ((not (org-string-match-p org-drawer-regexp (format ":%s:" drawer)))
15924 (user-error "Invalid drawer name"))
15925 ;; With an active region, insert a drawer at point.
15926 ((not (org-region-active-p))
15928 (unless (bolp) (insert "\n"))
15929 (insert (format ":%s:\n\n:END:\n" drawer))
15930 (forward-line -2)))
15931 ;; Otherwise, insert the drawer at point
15933 (let ((rbeg (region-beginning))
15934 (rend (copy-marker (region-end))))
15938 (beginning-of-line)
15939 (when (save-excursion
15940 (re-search-forward org-outline-regexp-bol rend t))
15941 (user-error "Drawers cannot contain headlines"))
15942 ;; Position point at the beginning of the first
15943 ;; non-blank line in region. Insert drawer's opening
15944 ;; there, then indent it.
15945 (org-skip-whitespace)
15946 (beginning-of-line)
15947 (insert ":" drawer ":\n")
15949 (indent-for-tab-command)
15950 ;; Move point to the beginning of the first blank line
15951 ;; after the last non-blank line in region. Insert
15952 ;; drawer's closing, then indent it.
15954 (skip-chars-backward " \r\t\n")
15956 (deactivate-mark t)
15957 (indent-for-tab-command)
15958 (unless (eolp) (insert "\n")))
15959 ;; Clear marker, whatever the outcome of insertion is.
15960 (set-marker rend nil)))))))
15962 (defvar org-property-set-functions-alist nil
15963 "Property set function alist.
15964 Each entry should have the following format:
15966 (PROPERTY . READ-FUNCTION)
15968 The read function will be called with the same argument as
15969 `org-completing-read'.")
15971 (defun org-set-property-function (property)
15972 "Get the function that should be used to set PROPERTY.
15973 This is computed according to `org-property-set-functions-alist'."
15974 (or (cdr (assoc property org-property-set-functions-alist))
15975 'org-completing-read))
15977 (defun org-read-property-value (property)
15978 "Read PROPERTY value from user."
15979 (let* ((completion-ignore-case t)
15980 (allowed (org-property-get-allowed-values nil property 'table))
15981 (cur (org-entry-get nil property))
15982 (prompt (concat property " value"
15983 (if (and cur (string-match "\\S-" cur))
15984 (concat " [" cur "]") "") ": "))
15985 (set-function (org-set-property-function property))
15987 (funcall set-function prompt allowed nil
15988 (not (get-text-property 0 'org-unrestricted
15990 (let (org-completion-use-ido org-completion-use-iswitchb)
15991 (funcall set-function prompt
15992 (mapcar 'list (org-property-values property))
15993 nil nil "" nil cur)))))
15996 (defvar org-last-set-property nil)
15997 (defvar org-last-set-property-value nil)
15998 (defun org-read-property-name ()
15999 "Read a property name."
16000 (let* ((completion-ignore-case t)
16001 (keys (org-buffer-property-keys nil t t))
16002 (default-prop (or (save-excursion
16004 (beginning-of-line)
16005 (and (looking-at "^\\s-*:\\([^:\n]+\\):")
16006 (null (string= (match-string 1) "END"))
16007 (match-string 1))))
16008 org-last-set-property))
16009 (property (org-icompleting-read
16011 (if default-prop (concat " [" default-prop "]") "")
16013 (mapcar 'list keys)
16016 (if (member property keys)
16018 (or (cdr (assoc (downcase property)
16019 (mapcar (lambda (x) (cons (downcase x) x))
16023 (defun org-set-property-and-value (use-last)
16024 "Allow to set [PROPERTY]: [value] direction from prompt.
16025 When use-default, don't even ask, just use the last
16026 \"[PROPERTY]: [value]\" string from the history."
16028 (let* ((completion-ignore-case t)
16029 (pv (or (and use-last org-last-set-property-value)
16030 (org-completing-read
16031 "Enter a \"[Property]: [value]\" pair: "
16032 nil nil nil nil nil
16033 org-last-set-property-value)))
16035 (when (string-match "^[ \t]*\\([^:]+\\):[ \t]*\\(.*\\)[ \t]*$" pv)
16036 (setq prop (match-string 1 pv)
16037 val (match-string 2 pv))
16038 (org-set-property prop val))))
16040 (defun org-set-property (property value)
16041 "In the current entry, set PROPERTY to VALUE.
16042 When called interactively, this will prompt for a property name, offering
16043 completion on existing and default properties. And then it will prompt
16044 for a value, offering completion either on allowed values (via an inherited
16045 xxx_ALL property) or on existing values in other instances of this property
16046 in the current file."
16047 (interactive (list nil nil))
16048 (let* ((property (or property (org-read-property-name)))
16049 (value (or value (org-read-property-value property)))
16050 (fn (cdr (assoc property org-properties-postprocess-alist))))
16051 (setq org-last-set-property property)
16052 (setq org-last-set-property-value (concat property ": " value))
16053 ;; Possibly postprocess the inserted value:
16054 (when fn (setq value (funcall fn value)))
16055 (unless (equal (org-entry-get nil property) value)
16056 (org-entry-put nil property value))))
16058 (defun org-delete-property (property)
16059 "In the current entry, delete PROPERTY."
16061 (let* ((completion-ignore-case t)
16062 (cat (org-entry-get (point) "CATEGORY"))
16063 (props0 (org-entry-properties nil 'standard))
16064 (props (if cat props0
16065 (delete `("CATEGORY" . ,(org-get-category)) props0)))
16066 (prop (if (< 1 (length props))
16067 (org-icompleting-read "Property: " props nil t)
16071 (message "No property to delete in this entry")
16072 (org-entry-delete nil property)
16073 (message "Property \"%s\" deleted" property)))
16075 (defun org-delete-property-globally (property)
16076 "Remove PROPERTY globally, from all entries."
16078 (let* ((completion-ignore-case t)
16079 (prop (org-icompleting-read
16080 "Globally remove property: "
16081 (mapcar 'list (org-buffer-property-keys)))))
16086 (goto-char (point-min))
16088 (while (re-search-forward
16089 (org-re-property property)
16091 (setq cnt (1+ cnt))
16092 (delete-region (match-beginning 0) (1+ (point-at-eol))))
16093 (message "Property \"%s\" removed from %d entries" property cnt)))))
16095 (defvar org-columns-current-fmt-compiled) ; defined in org-colview.el
16097 (defun org-compute-property-at-point ()
16098 "Compute the property at point.
16099 This looks for an enclosing column format, extracts the operator and
16100 then applies it to the property in the column format's scope."
16102 (unless (org-at-property-p)
16103 (user-error "Not at a property"))
16104 (let ((prop (org-match-string-no-properties 2)))
16105 (org-columns-get-format-and-top-level)
16106 (unless (nth 3 (assoc prop org-columns-current-fmt-compiled))
16107 (user-error "No operator defined for property %s" prop))
16108 (org-columns-compute prop)))
16110 (defvar org-property-allowed-value-functions nil
16111 "Hook for functions supplying allowed values for a specific property.
16112 The functions must take a single argument, the name of the property, and
16113 return a flat list of allowed values. If \":ETC\" is one of
16114 the values, this means that these values are intended as defaults for
16115 completion, but that other values should be allowed too.
16116 The functions must return nil if they are not responsible for this
16119 (defun org-property-get-allowed-values (pom property &optional table)
16120 "Get allowed values for the property PROPERTY.
16121 When TABLE is non-nil, return an alist that can directly be used for
16125 ((equal property "TODO")
16126 (setq vals (org-with-point-at pom
16127 (append org-todo-keywords-1 '("")))))
16128 ((equal property "PRIORITY")
16129 (let ((n org-lowest-priority))
16130 (while (>= n org-highest-priority)
16131 (push (char-to-string n) vals)
16133 ((member property org-special-properties))
16134 ((setq vals (run-hook-with-args-until-success
16135 'org-property-allowed-value-functions property)))
16137 (setq vals (org-entry-get pom (concat property "_ALL") 'inherit))
16138 (when (and vals (string-match "\\S-" vals))
16139 (setq vals (car (read-from-string (concat "(" vals ")"))))
16140 (setq vals (mapcar (lambda (x)
16141 (cond ((stringp x) x)
16142 ((numberp x) (number-to-string x))
16143 ((symbolp x) (symbol-name x))
16146 (when (member ":ETC" vals)
16147 (setq vals (remove ":ETC" vals))
16148 (org-add-props (car vals) '(org-unrestricted t)))
16149 (if table (mapcar 'list vals) vals)))
16151 (defun org-property-previous-allowed-value (&optional previous)
16152 "Switch to the next allowed value for this property."
16154 (org-property-next-allowed-value t))
16156 (defun org-property-next-allowed-value (&optional previous)
16157 "Switch to the next allowed value for this property."
16159 (unless (org-at-property-p)
16160 (user-error "Not at a property"))
16161 (let* ((prop (car (save-match-data (org-split-string (match-string 1) ":"))))
16162 (key (match-string 2))
16163 (value (match-string 3))
16164 (allowed (or (org-property-get-allowed-values (point) key)
16165 (and (member value '("[ ]" "[-]" "[X]"))
16167 (heading (save-match-data (nth 4 (org-heading-components))))
16170 (user-error "Allowed values for this property have not been defined"))
16171 (if previous (setq allowed (reverse allowed)))
16172 (if (member value allowed)
16173 (setq nval (car (cdr (member value allowed)))))
16174 (setq nval (or nval (car allowed)))
16175 (if (equal nval value)
16176 (user-error "Only one allowed value for this property"))
16177 (org-at-property-p)
16178 (replace-match (concat " :" key ": " nval) t t)
16180 (beginning-of-line 1)
16181 (skip-chars-forward " \t")
16182 (when (equal prop org-effort-property)
16183 (org-refresh-property
16184 '((effort . identity)
16185 (effort-minutes . org-duration-string-to-minutes))
16187 (when (string= org-clock-current-task heading)
16188 (setq org-clock-effort nval)
16189 (org-clock-update-mode-line)))
16190 (run-hook-with-args 'org-property-changed-functions key nval)))
16192 (defun org-find-olp (path &optional this-buffer)
16193 "Return a marker pointing to the entry at outline path OLP.
16194 If anything goes wrong, throw an error.
16195 You can wrap this call to catch the error like this:
16197 (condition-case msg
16198 (org-mobile-locate-entry (match-string 4))
16199 (error (nth 1 msg)))
16201 The return value will then be either a string with the error message,
16202 or a marker if everything is OK.
16204 If THIS-BUFFER is set, the outline path does not contain a file,
16206 (let* ((file (if this-buffer buffer-file-name (pop path)))
16207 (buffer (if this-buffer (current-buffer) (find-file-noselect file)))
16211 limit re end found pos heading cnt flevel)
16212 (unless buffer (error "File not found :%s" file))
16213 (with-current-buffer buffer
16217 (setq limit (point-max))
16218 (goto-char (point-min))
16219 (while (setq heading (pop path))
16220 (setq re (format org-complex-heading-regexp-format
16221 (regexp-quote heading)))
16222 (setq cnt 0 pos (point))
16223 (while (re-search-forward re end t)
16224 (setq level (- (match-end 1) (match-beginning 1)))
16225 (if (and (>= level lmin) (<= level lmax))
16226 (setq found (match-beginning 0) flevel level cnt (1+ cnt))))
16227 (when (= cnt 0) (error "Heading not found on level %d: %s"
16229 (when (> cnt 1) (error "Heading not unique on level %d: %s"
16232 (setq lmin (1+ flevel) lmax (+ lmin (if org-odd-levels-only 1 0)))
16233 (setq end (save-excursion (org-end-of-subtree t t))))
16234 (when (org-at-heading-p)
16235 (point-marker)))))))
16237 (defun org-find-exact-headline-in-buffer (heading &optional buffer pos-only)
16238 "Find node HEADING in BUFFER.
16239 Return a marker to the heading if it was found, or nil if not.
16240 If POS-ONLY is set, return just the position instead of a marker.
16242 The heading text must match exact, but it may have a TODO keyword,
16243 a priority cookie and tags in the standard locations."
16244 (with-current-buffer (or buffer (current-buffer))
16248 (goto-char (point-min))
16249 (let (case-fold-search)
16250 (if (re-search-forward
16251 (format org-complex-heading-regexp-format
16252 (regexp-quote heading)) nil t)
16254 (match-beginning 0)
16255 (move-marker (make-marker) (match-beginning 0)))))))))
16257 (defun org-find-exact-heading-in-directory (heading &optional dir)
16258 "Find Org node headline HEADING in all .org files in directory DIR.
16259 When the target headline is found, return a marker to this location."
16260 (let ((files (directory-files (or dir default-directory)
16261 t "\\`[^.#].*\\.org\\'"))
16262 file visiting m buffer)
16264 (while (setq file (pop files))
16265 (message "trying %s" file)
16266 (setq visiting (org-find-base-buffer-visiting file))
16267 (setq buffer (or visiting (find-file-noselect file)))
16268 (setq m (org-find-exact-headline-in-buffer
16270 (when (and (not m) (not visiting)) (kill-buffer buffer))
16271 (and m (throw 'found m))))))
16273 (defun org-find-entry-with-id (ident)
16274 "Locate the entry that contains the ID property with exact value IDENT.
16275 IDENT can be a string, a symbol or a number, this function will search for
16276 the string representation of it.
16277 Return the position where this entry starts, or nil if there is no such entry."
16278 (interactive "sID: ")
16280 ((stringp ident) ident)
16281 ((symbol-name ident) (symbol-name ident))
16282 ((numberp ident) (number-to-string ident))
16283 (t (error "IDENT %s must be a string, symbol or number" ident))))
16284 (case-fold-search nil))
16288 (goto-char (point-min))
16289 (when (re-search-forward
16290 (concat "^[ \t]*:ID:[ \t]+" (regexp-quote id) "[ \t]*$")
16292 (org-back-to-heading t)
16297 (defvar org-last-changed-timestamp nil)
16298 (defvar org-last-inserted-timestamp nil
16299 "The last time stamp inserted with `org-insert-time-stamp'.")
16300 (defvar org-ts-what) ; dynamically scoped parameter
16302 (defun org-time-stamp (arg &optional inactive)
16303 "Prompt for a date/time and insert a time stamp.
16304 If the user specifies a time like HH:MM or if this command is
16305 called with at least one prefix argument, the time stamp contains
16306 the date and the time. Otherwise, only the date is be included.
16308 All parts of a date not specified by the user is filled in from
16309 the current date/time. So if you just press return without
16310 typing anything, the time stamp will represent the current
16313 If there is already a timestamp at the cursor, it will be
16316 With two universal prefix arguments, insert an active timestamp
16317 with the current time without prompting the user.
16319 When called from lisp, the timestamp is inactive if INACTIVE is
16324 ;; Default time is either today, or, when entering a range,
16325 ;; the range start.
16326 (if (or (and (org-at-timestamp-p t) (setq ts (match-string 0)))
16328 (re-search-backward
16329 (concat org-ts-regexp "--?-?\\=") ; 1-3 minuses
16330 (- (point) 20) t)))
16331 (apply 'encode-time (org-parse-time-string (match-string 1)))
16333 (default-input (and ts (org-get-compact-tod ts)))
16334 (repeater (save-excursion
16336 (beginning-of-line)
16337 (when (re-search-forward
16338 "\\([.+-]+[0-9]+[hdwmy] ?\\)+" ;;\\(?:[/ ][-+]?[0-9]+[hdwmy]\\)?\\) ?"
16339 (save-excursion (progn (end-of-line) (point))) t)
16340 (match-string 0)))))
16341 org-time-was-given org-end-time-was-given time)
16343 ((and (org-at-timestamp-p t)
16344 (memq last-command '(org-time-stamp org-time-stamp-inactive))
16345 (memq this-command '(org-time-stamp org-time-stamp-inactive)))
16347 (setq time (let ((this-command this-command))
16348 (org-read-date arg 'totime nil nil
16349 default-time default-input inactive)))
16350 (org-insert-time-stamp time (or org-time-was-given arg) inactive))
16351 ((org-at-timestamp-p t)
16352 (setq time (let ((this-command this-command))
16353 (org-read-date arg 'totime nil nil default-time default-input inactive)))
16354 (when (org-at-timestamp-p t) ; just to get the match data
16355 ; (setq inactive (eq (char-after (match-beginning 0)) ?\[))
16357 (setq org-last-changed-timestamp
16358 (org-insert-time-stamp
16359 time (or org-time-was-given arg)
16360 inactive nil nil (list org-end-time-was-given)))
16361 (when repeater (goto-char (1- (point))) (insert " " repeater)
16362 (setq org-last-changed-timestamp
16363 (concat (substring org-last-inserted-timestamp 0 -1)
16364 " " repeater ">"))))
16365 (message "Timestamp updated"))
16367 (org-insert-time-stamp (current-time) t inactive))
16369 (setq time (let ((this-command this-command))
16370 (org-read-date arg 'totime nil nil default-time default-input inactive)))
16371 (org-insert-time-stamp time (or org-time-was-given arg) inactive
16372 nil nil (list org-end-time-was-given))))))
16374 ;; FIXME: can we use this for something else, like computing time differences?
16375 (defun org-get-compact-tod (s)
16376 (when (string-match "\\(\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)\\(-\\(\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)\\)?" s)
16377 (let* ((t1 (match-string 1 s))
16378 (h1 (string-to-number (match-string 2 s)))
16379 (m1 (string-to-number (match-string 3 s)))
16380 (t2 (and (match-end 4) (match-string 5 s)))
16381 (h2 (and t2 (string-to-number (match-string 6 s))))
16382 (m2 (and t2 (string-to-number (match-string 7 s))))
16386 (setq dh (- h2 h1) dm (- m2 m1))
16387 (if (< dm 0) (setq dm (+ dm 60) dh (1- dh)))
16388 (concat t1 "+" (number-to-string dh)
16389 (and (/= 0 dm) (format ":%02d" dm)))))))
16391 (defun org-time-stamp-inactive (&optional arg)
16392 "Insert an inactive time stamp.
16393 An inactive time stamp is enclosed in square brackets instead of angle
16394 brackets. It is inactive in the sense that it does not trigger agenda entries,
16395 does not link to the calendar and cannot be changed with the S-cursor keys.
16396 So these are more for recording a certain time/date."
16398 (org-time-stamp arg 'inactive))
16400 (defvar org-date-ovl (make-overlay 1 1))
16401 (overlay-put org-date-ovl 'face 'org-date-selected)
16402 (org-detach-overlay org-date-ovl)
16404 (defvar org-ans1) ; dynamically scoped parameter
16405 (defvar org-ans2) ; dynamically scoped parameter
16407 (defvar org-plain-time-of-day-regexp) ; defined below
16409 (defvar org-overriding-default-time nil) ; dynamically scoped
16410 (defvar org-read-date-overlay nil)
16411 (defvar org-dcst nil) ; dynamically scoped
16412 (defvar org-read-date-history nil)
16413 (defvar org-read-date-final-answer nil)
16414 (defvar org-read-date-analyze-futurep nil)
16415 (defvar org-read-date-analyze-forced-year nil)
16416 (defvar org-read-date-inactive)
16418 (defvar org-read-date-minibuffer-local-map
16419 (let* ((org-replace-disputed-keys nil)
16420 (map (make-sparse-keymap)))
16421 (set-keymap-parent map minibuffer-local-map)
16422 (org-defkey map (kbd ".")
16423 (lambda () (interactive)
16424 ;; Are we at the beginning of the prompt?
16425 (if (looking-back "^[^:]+: ")
16426 (org-eval-in-calendar '(calendar-goto-today))
16428 (org-defkey map (kbd "C-.")
16429 (lambda () (interactive)
16430 (org-eval-in-calendar '(calendar-goto-today))))
16431 (org-defkey map [(meta shift left)]
16432 (lambda () (interactive)
16433 (org-eval-in-calendar '(calendar-backward-month 1))))
16434 (org-defkey map [(meta shift right)]
16435 (lambda () (interactive)
16436 (org-eval-in-calendar '(calendar-forward-month 1))))
16437 (org-defkey map [(meta shift up)]
16438 (lambda () (interactive)
16439 (org-eval-in-calendar '(calendar-backward-year 1))))
16440 (org-defkey map [(meta shift down)]
16441 (lambda () (interactive)
16442 (org-eval-in-calendar '(calendar-forward-year 1))))
16443 (org-defkey map [?\e (shift left)]
16444 (lambda () (interactive)
16445 (org-eval-in-calendar '(calendar-backward-month 1))))
16446 (org-defkey map [?\e (shift right)]
16447 (lambda () (interactive)
16448 (org-eval-in-calendar '(calendar-forward-month 1))))
16449 (org-defkey map [?\e (shift up)]
16450 (lambda () (interactive)
16451 (org-eval-in-calendar '(calendar-backward-year 1))))
16452 (org-defkey map [?\e (shift down)]
16453 (lambda () (interactive)
16454 (org-eval-in-calendar '(calendar-forward-year 1))))
16455 (org-defkey map [(shift up)]
16456 (lambda () (interactive)
16457 (org-eval-in-calendar '(calendar-backward-week 1))))
16458 (org-defkey map [(shift down)]
16459 (lambda () (interactive)
16460 (org-eval-in-calendar '(calendar-forward-week 1))))
16461 (org-defkey map [(shift left)]
16462 (lambda () (interactive)
16463 (org-eval-in-calendar '(calendar-backward-day 1))))
16464 (org-defkey map [(shift right)]
16465 (lambda () (interactive)
16466 (org-eval-in-calendar '(calendar-forward-day 1))))
16467 (org-defkey map "!"
16468 (lambda () (interactive)
16469 (org-eval-in-calendar '(diary-view-entries))
16471 (org-defkey map ">"
16472 (lambda () (interactive)
16473 (org-eval-in-calendar '(scroll-calendar-left 1))))
16474 (org-defkey map "<"
16475 (lambda () (interactive)
16476 (org-eval-in-calendar '(scroll-calendar-right 1))))
16477 (org-defkey map "\C-v"
16478 (lambda () (interactive)
16479 (org-eval-in-calendar
16480 '(calendar-scroll-left-three-months 1))))
16481 (org-defkey map "\M-v"
16482 (lambda () (interactive)
16483 (org-eval-in-calendar
16484 '(calendar-scroll-right-three-months 1))))
16486 "Keymap for minibuffer commands when using `org-read-date'.")
16489 (defvar org-defdecode)
16490 (defvar org-with-time)
16492 (defun org-read-date (&optional org-with-time to-time from-string prompt
16493 default-time default-input inactive)
16494 "Read a date, possibly a time, and make things smooth for the user.
16495 The prompt will suggest to enter an ISO date, but you can also enter anything
16496 which will at least partially be understood by `parse-time-string'.
16497 Unrecognized parts of the date will default to the current day, month, year,
16498 hour and minute. If this command is called to replace a timestamp at point,
16499 or to enter the second timestamp of a range, the default time is taken
16500 from the existing stamp. Furthermore, the command prefers the future,
16501 so if you are giving a date where the year is not given, and the day-month
16502 combination is already past in the current year, it will assume you
16503 mean next year. For details, see the manual. A few examples:
16505 3-2-5 --> 2003-02-05
16506 feb 15 --> currentyear-02-15
16507 2/15 --> currentyear-02-15
16508 sep 12 9 --> 2009-09-12
16509 12:45 --> today 12:45
16510 22 sept 0:34 --> currentyear-09-22 0:34
16511 12 --> currentyear-currentmonth-12
16512 Fri --> nearest Friday after today
16513 -Tue --> last Tuesday
16516 Furthermore you can specify a relative date by giving, as the *first* thing
16517 in the input: a plus/minus sign, a number and a letter [hdwmy] to indicate
16518 change in days weeks, months, years.
16519 With a single plus or minus, the date is relative to today. With a double
16520 plus or minus, it is relative to the date in DEFAULT-TIME. E.g.
16521 +4d --> four days from today
16522 +4 --> same as above
16523 +2w --> two weeks from today
16524 ++5 --> five days from default date
16526 The function understands only English month and weekday abbreviations.
16528 While prompting, a calendar is popped up - you can also select the
16529 date with the mouse (button 1). The calendar shows a period of three
16530 months. To scroll it to other months, use the keys `>' and `<'.
16531 If you don't like the calendar, turn it off with
16532 \(setq org-read-date-popup-calendar nil)
16534 With optional argument TO-TIME, the date will immediately be converted
16535 to an internal time.
16536 With an optional argument ORG-WITH-TIME, the prompt will suggest to
16537 also insert a time. Note that when ORG-WITH-TIME is not set, you can
16538 still enter a time, and this function will inform the calling routine
16539 about this change. The calling routine may then choose to change the
16540 format used to insert the time stamp into the buffer to include the time.
16541 With optional argument FROM-STRING, read from this string instead from
16542 the user. PROMPT can overwrite the default prompt. DEFAULT-TIME is
16543 the time/date that is used for everything that is not specified by the
16545 (require 'parse-time)
16546 (let* ((org-time-stamp-rounding-minutes
16547 (if (equal org-with-time '(16)) '(0 0) org-time-stamp-rounding-minutes))
16548 (org-dcst org-display-custom-times)
16549 (ct (org-current-time))
16550 (org-def (or org-overriding-default-time default-time ct))
16551 (org-defdecode (decode-time org-def))
16553 (when (< (nth 2 org-defdecode) org-extend-today-until)
16554 (setcar (nthcdr 2 org-defdecode) -1)
16555 (setcar (nthcdr 1 org-defdecode) 59)
16556 (setq org-def (apply 'encode-time org-defdecode)
16557 org-defdecode (decode-time org-def)))))
16558 (mouse-autoselect-window nil) ; Don't let the mouse jump
16559 (calendar-frame-setup nil)
16560 (calendar-setup nil)
16561 (calendar-move-hook nil)
16562 (calendar-view-diary-initially-flag nil)
16563 (calendar-view-holidays-initially-flag nil)
16564 (timestr (format-time-string
16565 (if org-with-time "%Y-%m-%d %H:%M" "%Y-%m-%d") org-def))
16566 (prompt (concat (if prompt (concat prompt " ") "")
16567 (format "Date+time [%s]: " timestr)))
16568 ans (org-ans0 "") org-ans1 org-ans2 final)
16571 (from-string (setq ans from-string))
16572 (org-read-date-popup-calendar
16574 (save-window-excursion
16576 (org-eval-in-calendar '(setq cursor-type nil) t)
16579 (calendar-forward-day (- (time-to-days org-def)
16580 (calendar-absolute-from-gregorian
16581 (calendar-current-date))))
16582 (org-eval-in-calendar nil t)
16583 (let* ((old-map (current-local-map))
16584 (map (copy-keymap calendar-mode-map))
16585 (minibuffer-local-map
16586 (copy-keymap org-read-date-minibuffer-local-map)))
16587 (org-defkey map (kbd "RET") 'org-calendar-select)
16588 (org-defkey map [mouse-1] 'org-calendar-select-mouse)
16589 (org-defkey map [mouse-2] 'org-calendar-select-mouse)
16592 (use-local-map map)
16593 (setq org-read-date-inactive inactive)
16594 (add-hook 'post-command-hook 'org-read-date-display)
16595 (setq org-ans0 (read-string prompt default-input
16596 'org-read-date-history nil))
16597 ;; org-ans0: from prompt
16598 ;; org-ans1: from mouse click
16599 ;; org-ans2: from calendar motion
16600 (setq ans (concat org-ans0 " " (or org-ans1 org-ans2))))
16601 (remove-hook 'post-command-hook 'org-read-date-display)
16602 (use-local-map old-map)
16603 (when org-read-date-overlay
16604 (delete-overlay org-read-date-overlay)
16605 (setq org-read-date-overlay nil)))))
16606 (bury-buffer "*Calendar*")))))
16608 (t ; Naked prompt only
16610 (setq ans (read-string prompt default-input
16611 'org-read-date-history timestr))
16612 (when org-read-date-overlay
16613 (delete-overlay org-read-date-overlay)
16614 (setq org-read-date-overlay nil)))))
16616 (setq final (org-read-date-analyze ans org-def org-defdecode))
16618 (when org-read-date-analyze-forced-year
16619 (message "Year was forced into %s"
16620 (if org-read-date-force-compatible-dates
16621 "compatible range (1970-2037)"
16622 "range representable on this machine"))
16625 ;; One round trip to get rid of 34th of August and stuff like that....
16626 (setq final (decode-time (apply 'encode-time final)))
16628 (setq org-read-date-final-answer ans)
16631 (apply 'encode-time final)
16632 (if (and (boundp 'org-time-was-given) org-time-was-given)
16633 (format "%04d-%02d-%02d %02d:%02d"
16634 (nth 5 final) (nth 4 final) (nth 3 final)
16635 (nth 2 final) (nth 1 final))
16636 (format "%04d-%02d-%02d" (nth 5 final) (nth 4 final) (nth 3 final))))))
16638 (defun org-read-date-display ()
16639 "Display the current date prompt interpretation in the minibuffer."
16640 (when org-read-date-display-live
16641 (when org-read-date-overlay
16642 (delete-overlay org-read-date-overlay))
16643 (when (minibufferp (current-buffer))
16646 (while (not (equal (buffer-substring
16647 (max (point-min) (- (point) 4)) (point))
16650 (let* ((ans (concat (buffer-substring (point-at-bol) (point-max))
16651 " " (or org-ans1 org-ans2)))
16652 (org-end-time-was-given nil)
16653 (f (org-read-date-analyze ans org-def org-defdecode))
16655 org-time-stamp-custom-formats
16656 org-time-stamp-formats))
16657 (fmt (if (or org-with-time
16658 (and (boundp 'org-time-was-given) org-time-was-given))
16661 (txt (format-time-string fmt (apply 'encode-time f)))
16662 (txt (if org-read-date-inactive (concat "[" (substring txt 1 -1) "]") txt))
16663 (txt (concat "=> " txt)))
16664 (when (and org-end-time-was-given
16665 (string-match org-plain-time-of-day-regexp txt))
16666 (setq txt (concat (substring txt 0 (match-end 0)) "-"
16667 org-end-time-was-given
16668 (substring txt (match-end 0)))))
16669 (when org-read-date-analyze-futurep
16670 (setq txt (concat txt " (=>F)")))
16671 (setq org-read-date-overlay
16672 (make-overlay (1- (point-at-eol)) (point-at-eol)))
16673 (org-overlay-display org-read-date-overlay txt 'secondary-selection)))))
16675 (defun org-read-date-analyze (ans org-def org-defdecode)
16676 "Analyze the combined answer of the date prompt."
16677 ;; FIXME: cleanup and comment
16678 (let ((nowdecode (decode-time (current-time)))
16679 delta deltan deltaw deltadef year month day
16680 hour minute second wday pm h2 m2 tl wday1
16681 iso-year iso-weekday iso-week iso-year iso-date futurep kill-year)
16682 (setq org-read-date-analyze-futurep nil
16683 org-read-date-analyze-forced-year nil)
16684 (when (string-match "\\`[ \t]*\\.[ \t]*\\'" ans)
16687 (when (setq delta (org-read-date-get-relative ans (current-time) org-def))
16688 (setq ans (replace-match "" t t ans)
16690 deltaw (nth 1 delta)
16691 deltadef (nth 2 delta)))
16693 ;; Check if there is an iso week date in there. If yes, store the
16694 ;; info and postpone interpreting it until the rest of the parsing
16696 (when (string-match "\\<\\(?:\\([0-9]+\\)-\\)?[wW]\\([0-9]\\{1,2\\}\\)\\(?:-\\([0-6]\\)\\)?\\([ \t]\\|$\\)" ans)
16697 (setq iso-year (if (match-end 1)
16698 (org-small-year-to-year
16699 (string-to-number (match-string 1 ans))))
16700 iso-weekday (if (match-end 3)
16701 (string-to-number (match-string 3 ans)))
16702 iso-week (string-to-number (match-string 2 ans)))
16703 (setq ans (replace-match "" t t ans)))
16705 ;; Help matching ISO dates with single digit month or day, like 2006-8-11.
16706 (when (string-match
16707 "^ *\\(\\([0-9]+\\)-\\)?\\([0-1]?[0-9]\\)-\\([0-3]?[0-9]\\)\\([^-0-9]\\|$\\)" ans)
16708 (setq year (if (match-end 2)
16709 (string-to-number (match-string 2 ans))
16710 (progn (setq kill-year t)
16711 (string-to-number (format-time-string "%Y"))))
16712 month (string-to-number (match-string 3 ans))
16713 day (string-to-number (match-string 4 ans)))
16714 (if (< year 100) (setq year (+ 2000 year)))
16715 (setq ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
16718 ;; Help matching dotted european dates
16719 (when (string-match
16720 "^ *\\(3[01]\\|0?[1-9]\\|[12][0-9]\\)\\. ?\\(0?[1-9]\\|1[012]\\)\\.\\( ?[1-9][0-9]\\{3\\}\\)?" ans)
16721 (setq year (if (match-end 3) (string-to-number (match-string 3 ans))
16723 (string-to-number (format-time-string "%Y")))
16724 day (string-to-number (match-string 1 ans))
16725 month (string-to-number (match-string 2 ans))
16726 ans (replace-match (format "%04d-%02d-%02d" year month day)
16729 ;; Help matching american dates, like 5/30 or 5/30/7
16730 (when (string-match
16731 "^ *\\(0?[1-9]\\|1[012]\\)/\\(0?[1-9]\\|[12][0-9]\\|3[01]\\)\\(/\\([0-9]+\\)\\)?\\([^/0-9]\\|$\\)" ans)
16732 (setq year (if (match-end 4)
16733 (string-to-number (match-string 4 ans))
16734 (progn (setq kill-year t)
16735 (string-to-number (format-time-string "%Y"))))
16736 month (string-to-number (match-string 1 ans))
16737 day (string-to-number (match-string 2 ans)))
16738 (if (< year 100) (setq year (+ 2000 year)))
16739 (setq ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
16741 ;; Help matching am/pm times, because `parse-time-string' does not do that.
16742 ;; If there is a time with am/pm, and *no* time without it, we convert
16743 ;; so that matching will be successful.
16744 (loop for i from 1 to 2 do ; twice, for end time as well
16745 (when (and (not (string-match "\\(\\`\\|[^+]\\)[012]?[0-9]:[0-9][0-9]\\([ \t\n]\\|$\\)" ans))
16746 (string-match "\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\(am\\|AM\\|pm\\|PM\\)\\>" ans))
16747 (setq hour (string-to-number (match-string 1 ans))
16748 minute (if (match-end 3)
16749 (string-to-number (match-string 3 ans))
16752 (string-to-char (downcase (match-string 4 ans)))))
16753 (if (and (= hour 12) (not pm))
16755 (if (and pm (< hour 12)) (setq hour (+ 12 hour))))
16756 (setq ans (replace-match (format "%02d:%02d" hour minute)
16759 ;; Check if a time range is given as a duration
16760 (when (string-match "\\([012]?[0-9]\\):\\([0-6][0-9]\\)\\+\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?" ans)
16761 (setq hour (string-to-number (match-string 1 ans))
16762 h2 (+ hour (string-to-number (match-string 3 ans)))
16763 minute (string-to-number (match-string 2 ans))
16764 m2 (+ minute (if (match-end 5) (string-to-number
16765 (match-string 5 ans))0)))
16766 (if (>= m2 60) (setq h2 (1+ h2) m2 (- m2 60)))
16767 (setq ans (replace-match (format "%02d:%02d-%02d:%02d" hour minute h2 m2)
16770 ;; Check if there is a time range
16771 (when (boundp 'org-end-time-was-given)
16772 (setq org-time-was-given nil)
16773 (when (and (string-match org-plain-time-of-day-regexp ans)
16775 (setq org-end-time-was-given (match-string 8 ans))
16776 (setq ans (concat (substring ans 0 (match-beginning 7))
16777 (substring ans (match-end 7))))))
16779 (setq tl (parse-time-string ans)
16780 day (or (nth 3 tl) (nth 3 org-defdecode))
16781 month (or (nth 4 tl)
16782 (if (and org-read-date-prefer-future
16783 (nth 3 tl) (< (nth 3 tl) (nth 3 nowdecode)))
16784 (prog1 (1+ (nth 4 nowdecode)) (setq futurep t))
16785 (nth 4 org-defdecode)))
16786 year (or (and (not kill-year) (nth 5 tl))
16787 (if (and org-read-date-prefer-future
16788 (nth 4 tl) (< (nth 4 tl) (nth 4 nowdecode)))
16789 (prog1 (1+ (nth 5 nowdecode)) (setq futurep t))
16790 (nth 5 org-defdecode)))
16791 hour (or (nth 2 tl) (nth 2 org-defdecode))
16792 minute (or (nth 1 tl) (nth 1 org-defdecode))
16793 second (or (nth 0 tl) 0)
16796 (when (and (eq org-read-date-prefer-future 'time)
16797 (not (nth 3 tl)) (not (nth 4 tl)) (not (nth 5 tl))
16798 (equal day (nth 3 nowdecode))
16799 (equal month (nth 4 nowdecode))
16800 (equal year (nth 5 nowdecode))
16802 (or (< (nth 2 tl) (nth 2 nowdecode))
16803 (and (= (nth 2 tl) (nth 2 nowdecode))
16805 (< (nth 1 tl) (nth 1 nowdecode)))))
16809 ;; Special date definitions below
16812 ;; There was an iso week
16815 (setq year (or iso-year year)
16816 day (or iso-weekday wday 1)
16817 wday nil ; to make sure that the trigger below does not match
16818 iso-date (calendar-gregorian-from-absolute
16819 (calendar-absolute-from-iso
16820 (list iso-week day year))))
16821 ; FIXME: Should we also push ISO weeks into the future?
16822 ; (when (and org-read-date-prefer-future
16824 ; (< (calendar-absolute-from-gregorian iso-date)
16825 ; (time-to-days (current-time))))
16826 ; (setq year (1+ year)
16827 ; iso-date (calendar-gregorian-from-absolute
16828 ; (calendar-absolute-from-iso
16829 ; (list iso-week day year)))))
16830 (setq month (car iso-date)
16831 year (nth 2 iso-date)
16832 day (nth 1 iso-date)))
16836 (let ((now (decode-time (current-time))))
16837 (setq day (nth 3 now) month (nth 4 now) year (nth 5 now))))
16838 (cond ((member deltaw '("d" "")) (setq day (+ day deltan)))
16839 ((equal deltaw "w") (setq day (+ day (* 7 deltan))))
16840 ((equal deltaw "m") (setq month (+ month deltan)))
16841 ((equal deltaw "y") (setq year (+ year deltan)))))
16842 ((and wday (not (nth 3 tl)))
16843 ;; Weekday was given, but no day, so pick that day in the week
16844 ;; on or after the derived date.
16845 (setq wday1 (nth 6 (decode-time (encode-time 0 0 0 day month year))))
16846 (unless (equal wday wday1)
16847 (setq day (+ day (% (- wday wday1 -7) 7))))))
16848 (if (and (boundp 'org-time-was-given)
16850 (setq org-time-was-given t))
16851 (if (< year 100) (setq year (+ 2000 year)))
16852 ;; Check of the date is representable
16853 (if org-read-date-force-compatible-dates
16856 (setq year 1970 org-read-date-analyze-forced-year t))
16858 (setq year 2037 org-read-date-analyze-forced-year t)))
16859 (condition-case nil
16860 (ignore (encode-time second minute hour day month year))
16862 (setq year (nth 5 org-defdecode))
16863 (setq org-read-date-analyze-forced-year t))))
16864 (setq org-read-date-analyze-futurep futurep)
16865 (list second minute hour day month year)))
16867 (defvar parse-time-weekdays)
16868 (defun org-read-date-get-relative (s today default)
16869 "Check string S for special relative date string.
16870 TODAY and DEFAULT are internal times, for today and for a default.
16871 Return shift list (N what def-flag)
16872 WHAT is \"d\", \"w\", \"m\", or \"y\" for day, week, month, year.
16873 N is the number of WHATs to shift.
16874 DEF-FLAG is t when a double ++ or -- indicates shift relative to
16875 the DEFAULT date rather than TODAY."
16876 (require 'parse-time)
16880 "\\`[ \t]*\\([-+]\\{0,2\\}\\)"
16882 "\\([hdwmy]\\|\\(" (mapconcat 'car parse-time-weekdays "\\|") "\\)\\)?"
16883 "\\([ \t]\\|$\\)") s)
16884 (or (> (match-end 1) (match-beginning 1)) (match-end 4)))
16885 (let* ((dir (if (> (match-end 1) (match-beginning 1))
16886 (string-to-char (substring (match-string 1 s) -1))
16888 (rel (and (match-end 1) (= 2 (- (match-end 1) (match-beginning 1)))))
16889 (n (if (match-end 2) (string-to-number (match-string 2 s)) 1))
16890 (what (if (match-end 3) (match-string 3 s) "d"))
16891 (wday1 (cdr (assoc (downcase what) parse-time-weekdays)))
16892 (date (if rel default today))
16893 (wday (nth 6 (decode-time date)))
16897 (setq delta (mod (+ 7 (- wday1 wday)) 7))
16898 (if (= delta 0) (setq delta 7))
16901 (setq delta (- delta 7))
16902 (if (= delta 0) (setq delta -7))))
16903 (if (> n 1) (setq delta (+ delta (* (1- n) (if (= dir ?-) -7 7)))))
16904 (list delta "d" rel))
16905 (list (* n (if (= dir ?-) -1 1)) what rel)))))
16907 (defun org-order-calendar-date-args (arg1 arg2 arg3)
16908 "Turn a user-specified date into the internal representation.
16909 The internal representation needed by the calendar is (month day year).
16910 This is a wrapper to handle the brain-dead convention in calendar that
16911 user function argument order change dependent on argument order."
16912 (if (boundp 'calendar-date-style)
16914 ((eq calendar-date-style 'american)
16915 (list arg1 arg2 arg3))
16916 ((eq calendar-date-style 'european)
16917 (list arg2 arg1 arg3))
16918 ((eq calendar-date-style 'iso)
16919 (list arg2 arg3 arg1)))
16920 (org-no-warnings ;; european-calendar-style is obsolete as of version 23.1
16921 (if (org-bound-and-true-p european-calendar-style)
16922 (list arg2 arg1 arg3)
16923 (list arg1 arg2 arg3)))))
16925 (defun org-eval-in-calendar (form &optional keepdate)
16926 "Eval FORM in the calendar window and return to current window.
16927 When KEEPDATE is non-nil, update `org-ans2' from the cursor date,
16928 otherwise stick to the current value of `org-ans2'."
16929 (let ((sf (selected-frame))
16930 (sw (selected-window)))
16931 (select-window (get-buffer-window "*Calendar*" t))
16933 (when (and (not keepdate) (calendar-cursor-to-date))
16934 (let* ((date (calendar-cursor-to-date))
16935 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
16936 (setq org-ans2 (format-time-string "%Y-%m-%d" time))))
16937 (move-overlay org-date-ovl (1- (point)) (1+ (point)) (current-buffer))
16939 (org-select-frame-set-input-focus sf)))
16941 (defun org-calendar-select ()
16942 "Return to `org-read-date' with the date currently selected.
16943 This is used by `org-read-date' in a temporary keymap for the calendar buffer."
16945 (when (calendar-cursor-to-date)
16946 (let* ((date (calendar-cursor-to-date))
16947 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
16948 (setq org-ans1 (format-time-string "%Y-%m-%d" time)))
16949 (if (active-minibuffer-window) (exit-minibuffer))))
16951 (defun org-insert-time-stamp (time &optional with-hm inactive pre post extra)
16952 "Insert a date stamp for the date given by the internal TIME.
16953 WITH-HM means use the stamp format that includes the time of the day.
16954 INACTIVE means use square brackets instead of angular ones, so that the
16955 stamp will not contribute to the agenda.
16956 PRE and POST are optional strings to be inserted before and after the
16958 The command returns the inserted time stamp."
16959 (let ((fmt (funcall (if with-hm 'cdr 'car) org-time-stamp-formats))
16961 (if inactive (setq fmt (concat "[" (substring fmt 1 -1) "]")))
16962 (insert-before-markers (or pre ""))
16963 (when (listp extra)
16964 (setq extra (car extra))
16965 (if (and (stringp extra)
16966 (string-match "\\([0-9]+\\):\\([0-9]+\\)" extra))
16967 (setq extra (format "-%02d:%02d"
16968 (string-to-number (match-string 1 extra))
16969 (string-to-number (match-string 2 extra))))
16972 (setq fmt (concat (substring fmt 0 -1) extra (substring fmt -1))))
16973 (insert-before-markers (setq stamp (format-time-string fmt time)))
16974 (insert-before-markers (or post ""))
16975 (setq org-last-inserted-timestamp stamp)))
16977 (defun org-toggle-time-stamp-overlays ()
16978 "Toggle the use of custom time stamp formats."
16980 (setq org-display-custom-times (not org-display-custom-times))
16981 (unless org-display-custom-times
16982 (let ((p (point-min)) (bmp (buffer-modified-p)))
16983 (while (setq p (next-single-property-change p 'display))
16984 (if (and (get-text-property p 'display)
16985 (eq (get-text-property p 'face) 'org-date))
16986 (remove-text-properties
16987 p (setq p (next-single-property-change p 'display))
16989 (set-buffer-modified-p bmp)))
16990 (if (featurep 'xemacs)
16991 (remove-text-properties (point-min) (point-max) '(end-glyph t)))
16992 (org-restart-font-lock)
16993 (setq org-table-may-need-update t)
16994 (if org-display-custom-times
16995 (message "Time stamps are overlaid with custom format")
16996 (message "Time stamp overlays removed")))
16998 (defun org-display-custom-time (beg end)
16999 "Overlay modified time stamp format over timestamp between BEG and END."
17000 (let* ((ts (buffer-substring beg end))
17001 t1 w1 with-hm tf time str w2 (off 0))
17003 (setq t1 (org-parse-time-string ts t))
17004 (if (string-match "\\(-[0-9]+:[0-9]+\\)?\\( [.+]?\\+[0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)?\\'" ts)
17005 (setq off (- (match-end 0) (match-beginning 0)))))
17006 (setq end (- end off))
17007 (setq w1 (- end beg)
17008 with-hm (and (nth 1 t1) (nth 2 t1))
17009 tf (funcall (if with-hm 'cdr 'car) org-time-stamp-custom-formats)
17010 time (org-fix-decoded-time t1)
17012 (format-time-string
17013 (substring tf 1 -1) (apply 'encode-time time))
17014 nil 'mouse-face 'highlight)
17016 (if (not (= w2 w1))
17017 (add-text-properties (1+ beg) (+ 2 beg)
17018 (list 'org-dwidth t 'org-dwidth-n (- w1 w2))))
17019 (if (featurep 'xemacs)
17021 (put-text-property beg end 'invisible t)
17022 (put-text-property beg end 'end-glyph (make-glyph str)))
17023 (put-text-property beg end 'display str))))
17025 (defun org-translate-time (string)
17026 "Translate all timestamps in STRING to custom format.
17027 But do this only if the variable `org-display-custom-times' is set."
17028 (when org-display-custom-times
17031 (re org-ts-regexp-both)
17032 t1 with-hm inactive tf time str beg end)
17033 (while (setq start (string-match re string start))
17034 (setq beg (match-beginning 0)
17036 t1 (save-match-data
17037 (org-parse-time-string (substring string beg end) t))
17038 with-hm (and (nth 1 t1) (nth 2 t1))
17039 inactive (equal (substring string beg (1+ beg)) "[")
17040 tf (funcall (if with-hm 'cdr 'car)
17041 org-time-stamp-custom-formats)
17042 time (org-fix-decoded-time t1)
17043 str (format-time-string
17045 (if inactive "[" "<") (substring tf 1 -1)
17046 (if inactive "]" ">"))
17047 (apply 'encode-time time))
17048 string (replace-match str t t string)
17049 start (+ start (length str)))))))
17052 (defun org-fix-decoded-time (time)
17053 "Set 0 instead of nil for the first 6 elements of time.
17054 Don't touch the rest."
17056 (mapcar (lambda (x) (if (< (setq n (1+ n)) 7) (or x 0) x)) time)))
17058 (define-obsolete-function-alias 'org-days-to-time 'org-time-stamp-to-now "24.4")
17060 (defun org-time-stamp-to-now (timestamp-string &optional seconds)
17061 "Difference between TIMESTAMP-STRING and now in days.
17062 If SECONDS is non-nil, return the difference in seconds."
17063 (let ((fdiff (if seconds 'org-float-time 'time-to-days)))
17064 (- (funcall fdiff (org-time-string-to-time timestamp-string))
17065 (funcall fdiff (current-time)))))
17067 (defun org-deadline-close (timestamp-string &optional ndays)
17068 "Is the time in TIMESTAMP-STRING close to the current date?"
17069 (setq ndays (or ndays (org-get-wdays timestamp-string)))
17070 (and (< (org-time-stamp-to-now timestamp-string) ndays)
17071 (not (org-entry-is-done-p))))
17073 (defun org-get-wdays (ts &optional delay zero-delay)
17074 "Get the deadline lead time appropriate for timestring TS.
17075 When DELAY is non-nil, get the delay time for scheduled items
17076 instead of the deadline lead time. When ZERO-DELAY is non-nil
17077 and `org-scheduled-delay-days' is 0, enforce 0 as the delay,
17078 don't try to find the delay cookie in the scheduled timestamp."
17079 (let ((tv (if delay org-scheduled-delay-days
17080 org-deadline-warning-days)))
17082 ((or (and delay (< tv 0))
17083 (and delay zero-delay (<= tv 0))
17084 (and (not delay) (<= tv 0)))
17085 ;; Enforce this value no matter what
17087 ((string-match "-\\([0-9]+\\)\\([hdwmy]\\)\\(\\'\\|>\\| \\)" ts)
17088 ;; lead time is specified.
17089 (floor (* (string-to-number (match-string 1 ts))
17090 (cdr (assoc (match-string 2 ts)
17091 '(("d" . 1) ("w" . 7)
17092 ("m" . 30.4) ("y" . 365.25)
17093 ("h" . 0.041667)))))))
17094 ;; go for the default.
17097 (defun org-calendar-select-mouse (ev)
17098 "Return to `org-read-date' with the date currently selected.
17099 This is used by `org-read-date' in a temporary keymap for the calendar buffer."
17101 (mouse-set-point ev)
17102 (when (calendar-cursor-to-date)
17103 (let* ((date (calendar-cursor-to-date))
17104 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
17105 (setq org-ans1 (format-time-string "%Y-%m-%d" time)))
17106 (if (active-minibuffer-window) (exit-minibuffer))))
17108 (defun org-check-deadlines (ndays)
17109 "Check if there are any deadlines due or past due.
17110 A deadline is considered due if it happens within `org-deadline-warning-days'
17111 days from today's date. If the deadline appears in an entry marked DONE,
17112 it is not shown. The prefix arg NDAYS can be used to test that many
17113 days. If the prefix is a raw \\[universal-argument] prefix, all deadlines are shown."
17115 (let* ((org-warn-days
17117 ((equal ndays '(4)) 100000)
17118 (ndays (prefix-numeric-value ndays))
17119 (t (abs org-deadline-warning-days))))
17120 (case-fold-search nil)
17121 (regexp (concat "\\<" org-deadline-string " *<\\([^>]+\\)>"))
17123 (lambda () (org-deadline-close (match-string 1) org-warn-days))))
17125 (message "%d deadlines past-due or due within %d days"
17126 (org-occur regexp nil callback)
17129 (defsubst org-re-timestamp (type)
17130 "Return a regexp for timestamp TYPE.
17131 Allowed values for TYPE are:
17133 all: all timestamps
17134 active: only active timestamps (<...>)
17135 inactive: only inactive timestamps ([...])
17136 scheduled: only scheduled timestamps
17137 deadline: only deadline timestamps
17138 closed: only closed time-stamps
17140 When TYPE is nil, fall back on returning a regexp that matches
17141 both scheduled and deadline timestamps."
17142 (cond ((eq type 'all) "\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\}\\(?: +[^]+0-9>
\n -]+\\)?\\(?: +[0-9]\\{1,2\\}:[0-9]\\{2\\}\\)?\\)")
17143 ((eq type 'active) org-ts-regexp)
17144 ((eq type 'inactive) "\\[\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^
\n>]*?\\)\\]")
17145 ((eq type 'scheduled) (concat "\\<" org-scheduled-string " *<\\([^>]+\\)>"))
17146 ((eq type 'deadline) (concat "\\<" org-deadline-string " *<\\([^>]+\\)>"))
17147 ((eq type 'closed) (concat org-closed-string " \\[\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^
\n>]*?\\)\\]"))
17148 ((eq type 'scheduled-or-deadline)
17149 (concat "\\<\\(?:" org-deadline-string "\\|" org-scheduled-string "\\) *<\\([^>]+\\)>"))))
17151 (defun org-check-before-date (date)
17152 "Check if there are deadlines or scheduled entries before DATE."
17153 (interactive (list (org-read-date)))
17154 (let ((case-fold-search nil)
17155 (regexp (org-re-timestamp org-ts-type))
17157 (lambda () (time-less-p
17158 (org-time-string-to-time (match-string 1))
17159 (org-time-string-to-time date)))))
17160 (message "%d entries before %s"
17161 (org-occur regexp nil callback) date)))
17163 (defun org-check-after-date (date)
17164 "Check if there are deadlines or scheduled entries after DATE."
17165 (interactive (list (org-read-date)))
17166 (let ((case-fold-search nil)
17167 (regexp (org-re-timestamp org-ts-type))
17171 (org-time-string-to-time (match-string 1))
17172 (org-time-string-to-time date))))))
17173 (message "%d entries after %s"
17174 (org-occur regexp nil callback) date)))
17176 (defun org-check-dates-range (start-date end-date)
17177 "Check for deadlines/scheduled entries between START-DATE and END-DATE."
17178 (interactive (list (org-read-date nil nil nil "Range starts")
17179 (org-read-date nil nil nil "Range end")))
17180 (let ((case-fold-search nil)
17181 (regexp (org-re-timestamp org-ts-type))
17184 (let ((match (match-string 1)))
17187 (org-time-string-to-time match)
17188 (org-time-string-to-time start-date)))
17190 (org-time-string-to-time match)
17191 (org-time-string-to-time end-date)))))))
17192 (message "%d entries between %s and %s"
17193 (org-occur regexp nil callback) start-date end-date)))
17195 (defun org-evaluate-time-range (&optional to-buffer)
17196 "Evaluate a time range by computing the difference between start and end.
17197 Normally the result is just printed in the echo area, but with prefix arg
17198 TO-BUFFER, the result is inserted just after the date stamp into the buffer.
17199 If the time range is actually in a table, the result is inserted into the
17201 For time difference computation, a year is assumed to be exactly 365
17202 days in order to avoid rounding problems."
17205 (org-clock-update-time-maybe)
17207 (unless (org-at-date-range-p t)
17208 (goto-char (point-at-bol))
17209 (re-search-forward org-tr-regexp-both (point-at-eol) t))
17210 (if (not (org-at-date-range-p t))
17211 (user-error "Not at a time-stamp range, and none found in current line")))
17212 (let* ((ts1 (match-string 1))
17213 (ts2 (match-string 2))
17214 (havetime (or (> (length ts1) 15) (> (length ts2) 15)))
17215 (match-end (match-end 0))
17216 (time1 (org-time-string-to-time ts1))
17217 (time2 (org-time-string-to-time ts2))
17218 (t1 (org-float-time time1))
17219 (t2 (org-float-time time2))
17220 (diff (abs (- t2 t1)))
17221 (negative (< (- t2 t1) 0))
17222 ;; (ys (floor (* 365 24 60 60)))
17225 (fy "%dy %dd %02d:%02d")
17227 (fd "%dd %02d:%02d")
17232 (setq ; y (floor (/ diff ys)) diff (mod diff ys)
17234 d (floor (/ diff ds)) diff (mod diff ds)
17235 h (floor (/ diff hs)) diff (mod diff hs)
17236 m (floor (/ diff 60)))
17237 (setq ; y (floor (/ diff ys)) diff (mod diff ys)
17239 d (floor (+ (/ diff ds) 0.5))
17241 (if (not to-buffer)
17242 (message "%s" (org-make-tdiff-string y d h m))
17243 (if (org-at-table-p)
17245 (goto-char match-end)
17247 (and (looking-at " *|") (goto-char (match-end 0))))
17248 (goto-char match-end))
17250 "\\( *-? *[0-9]+y\\)?\\( *[0-9]+d\\)? *[0-9][0-9]:[0-9][0-9]")
17251 (replace-match ""))
17252 (if negative (insert " -"))
17253 (if (> y 0) (insert " " (format (if havetime fy fy1) y d h m))
17254 (if (> d 0) (insert " " (format (if havetime fd fd1) d h m))
17255 (insert " " (format fh h m))))
17256 (if align (org-table-align))
17257 (message "Time difference inserted")))))
17259 (defun org-make-tdiff-string (y d h m)
17262 (if (> y 0) (setq fmt (concat fmt "%d year" (if (> y 1) "s" "") " ")
17264 (if (> d 0) (setq fmt (concat fmt "%d day" (if (> d 1) "s" "") " ")
17266 (if (> h 0) (setq fmt (concat fmt "%d hour" (if (> h 1) "s" "") " ")
17268 (if (> m 0) (setq fmt (concat fmt "%d minute" (if (> m 1) "s" "") " ")
17270 (apply 'format fmt (nreverse l))))
17272 (defun org-time-string-to-time (s &optional buffer pos)
17273 "Convert a timestamp string into internal time."
17274 (condition-case errdata
17275 (apply 'encode-time (org-parse-time-string s))
17276 (error (error "Bad timestamp `%s'%s\nError was: %s"
17277 s (if (not (and buffer pos))
17279 (format " at %d in buffer `%s'" pos buffer))
17282 (defun org-time-string-to-seconds (s)
17283 "Convert a timestamp string to a number of seconds."
17284 (org-float-time (org-time-string-to-time s)))
17286 (defun org-time-string-to-absolute (s &optional daynr prefer show-all buffer pos)
17287 "Convert a time stamp to an absolute day number.
17288 If there is a specifier for a cyclic time stamp, get the closest
17290 PREFER and SHOW-ALL are passed through to `org-closest-date'.
17291 The variable `date' is bound by the calendar when this is called."
17293 ((and daynr (string-match "\\`%%\\((.*)\\)" s))
17294 (if (org-diary-sexp-entry (match-string 1 s) "" date)
17297 ((and daynr (string-match "\\+[0-9]+[hdwmy]" s))
17298 (org-closest-date s (if (and (boundp 'daynr) (integerp daynr)) daynr
17299 (time-to-days (current-time))) (match-string 0 s)
17302 (condition-case errdata
17303 (apply 'encode-time (org-parse-time-string s))
17304 (error (error "Bad timestamp `%s'%s\nError was: %s"
17305 s (if (not (and buffer pos))
17307 (format " at %d in buffer `%s'" pos buffer))
17308 (cdr errdata))))))))
17310 (defun org-days-to-iso-week (days)
17311 "Return the iso week number."
17313 (car (calendar-iso-from-absolute days)))
17315 (defun org-small-year-to-year (year)
17316 "Convert 2-digit years into 4-digit years.
17317 38-99 are mapped into 1938-1999. 1-37 are mapped into 2001-2037.
17318 The year 2000 cannot be abbreviated. Any year larger than 99
17319 is returned unchanged."
17321 (setq year (+ 2000 year))
17323 (setq year (+ 1900 year))))
17326 (defun org-time-from-absolute (d)
17327 "Return the time corresponding to date D.
17328 D may be an absolute day number, or a calendar-type list (month day year)."
17329 (if (numberp d) (setq d (calendar-gregorian-from-absolute d)))
17330 (encode-time 0 0 0 (nth 1 d) (car d) (nth 2 d)))
17332 (defun org-calendar-holiday ()
17333 "List of holidays, for Diary display in Org-mode."
17334 (require 'holidays)
17336 (if (fboundp 'calendar-check-holidays)
17337 'calendar-check-holidays 'check-calendar-holidays) date)))
17338 (if hl (mapconcat 'identity hl "; "))))
17340 (defun org-diary-sexp-entry (sexp entry date)
17341 "Process a SEXP diary ENTRY for DATE."
17342 (require 'diary-lib)
17343 (let ((result (if calendar-debug-sexp
17344 (let ((stack-trace-on-error t))
17345 (eval (car (read-from-string sexp))))
17346 (condition-case nil
17347 (eval (car (read-from-string sexp)))
17350 (message "Bad sexp at line %d in %s: %s"
17352 (buffer-file-name) sexp)
17354 (cond ((stringp result) (split-string result "; "))
17355 ((and (consp result)
17356 (not (consp (cdr result)))
17357 (stringp (cdr result))) (cdr result))
17358 ((and (consp result)
17359 (stringp (car result))) result)
17362 (defun org-diary-to-ical-string (frombuf)
17363 "Get iCalendar entries from diary entries in buffer FROMBUF.
17364 This uses the icalendar.el library."
17365 (let* ((tmpdir (if (featurep 'xemacs)
17367 temporary-file-directory))
17368 (tmpfile (make-temp-name
17369 (expand-file-name "orgics" tmpdir)))
17371 (with-current-buffer frombuf
17372 (icalendar-export-region (point-min) (point-max) tmpfile)
17373 (setq buf (find-buffer-visiting tmpfile))
17375 (goto-char (point-min))
17376 (if (re-search-forward "^BEGIN:VEVENT" nil t)
17377 (setq b (match-beginning 0)))
17378 (goto-char (point-max))
17379 (if (re-search-backward "^END:VEVENT" nil t)
17380 (setq e (match-end 0)))
17381 (setq rtn (if (and b e) (concat (buffer-substring b e) "\n") "")))
17383 (delete-file tmpfile)
17386 (defun org-closest-date (start current change prefer show-all)
17387 "Find the date closest to CURRENT that is consistent with START and CHANGE.
17388 When PREFER is `past', return a date that is either CURRENT or past.
17389 When PREFER is `future', return a date that is either CURRENT or future.
17390 When SHOW-ALL is nil, only return the current occurrence of a time stamp."
17391 ;; Make the proper lists from the dates
17393 (let ((a1 '(("h" . hour)
17398 (shour (nth 2 (org-parse-time-string start)))
17399 dn dw sday cday n1 n2 n0
17400 d m y y1 y2 date1 date2 nmonths nm ny m2)
17402 (setq start (org-date-to-gregorian start)
17403 current (org-date-to-gregorian
17406 (time-to-days (current-time))))
17407 sday (calendar-absolute-from-gregorian start)
17408 cday (calendar-absolute-from-gregorian current))
17410 (if (<= cday sday) (throw 'exit sday))
17412 (if (string-match "\\(\\+[0-9]+\\)\\([hdwmy]\\)" change)
17413 (setq dn (string-to-number (match-string 1 change))
17414 dw (cdr (assoc (match-string 2 change) a1)))
17415 (user-error "Invalid change specifier: %s" change))
17416 (if (eq dw 'week) (setq dw 'day dn (* 7 dn)))
17419 (let ((missing-hours
17420 (mod (+ (- (* 24 (- cday sday)) shour) org-extend-today-until)
17422 (setq n1 (if (zerop missing-hours) cday
17423 (- cday (1+ (floor (/ missing-hours 24)))))
17424 n2 (+ cday (floor (/ (- dn missing-hours) 24))))))
17426 (setq n1 (+ sday (* dn (floor (/ (- cday sday) dn))))
17429 (setq d (nth 1 start) m (car start) y1 (nth 2 start) y2 (nth 2 current))
17430 (setq y1 (+ (* (floor (/ (- y2 y1) dn)) dn) y1))
17431 (setq date1 (list m d y1)
17432 n1 (calendar-absolute-from-gregorian date1)
17433 date2 (list m d (+ y1 (* (if (< n1 cday) 1 -1) dn)))
17434 n2 (calendar-absolute-from-gregorian date2)))
17436 ;; approx number of month between the two dates
17437 (setq nmonths (floor (/ (- cday sday) 30.436875)))
17438 ;; How often does dn fit in there?
17439 (setq d (nth 1 start) m (car start) y (nth 2 start)
17440 nm (* dn (max 0 (1- (floor (/ nmonths dn)))))
17442 ny (floor (/ m 12))
17445 (while (> m 12) (setq m (- m 12) y (1+ y)))
17446 (setq n1 (calendar-absolute-from-gregorian (list m d y)))
17447 (setq m2 (+ m dn) y2 y)
17448 (if (> m2 12) (setq y2 (1+ y2) m2 (- m2 12)))
17449 (setq n2 (calendar-absolute-from-gregorian (list m2 d y2)))
17450 (while (<= n2 cday)
17451 (setq n1 n2 m m2 y y2)
17452 (setq m2 (+ m dn) y2 y)
17453 (if (> m2 12) (setq y2 (1+ y2) m2 (- m2 12)))
17454 (setq n2 (calendar-absolute-from-gregorian (list m2 d y2))))))
17455 ;; Make sure n1 is the earlier date
17456 (setq n0 n1 n1 (min n1 n2) n2 (max n0 n2))
17459 ((eq prefer 'past) (if (= cday n2) n2 n1))
17460 ((eq prefer 'future) (if (= cday n1) n1 n2))
17461 (t (if (> (abs (- cday n1)) (abs (- cday n2))) n2 n1)))
17463 ((eq prefer 'past) (if (= cday n2) n2 n1))
17464 ((eq prefer 'future) (if (= cday n1) n1 n2))
17465 (t (if (= cday n1) n1 n2)))))))
17467 (defun org-date-to-gregorian (date)
17468 "Turn any specification of DATE into a Gregorian date for the calendar."
17469 (cond ((integerp date) (calendar-gregorian-from-absolute date))
17470 ((and (listp date) (= (length date) 3)) date)
17472 (setq date (org-parse-time-string date))
17473 (list (nth 4 date) (nth 3 date) (nth 5 date)))
17475 (list (nth 4 date) (nth 3 date) (nth 5 date)))))
17477 (defun org-parse-time-string (s &optional nodefault)
17478 "Parse the standard Org-mode time string.
17479 This should be a lot faster than the normal `parse-time-string'.
17480 If time is not given, defaults to 0:00. However, with optional NODEFAULT,
17481 hour and minute fields will be nil if not given."
17482 (cond ((string-match org-ts-regexp0 s)
17484 (if (or (match-beginning 8) (not nodefault))
17485 (string-to-number (or (match-string 8 s) "0")))
17486 (if (or (match-beginning 7) (not nodefault))
17487 (string-to-number (or (match-string 7 s) "0")))
17488 (string-to-number (match-string 4 s))
17489 (string-to-number (match-string 3 s))
17490 (string-to-number (match-string 2 s))
17492 ((string-match "^<[^>]+>$" s)
17493 (decode-time (seconds-to-time (org-matcher-time s))))
17494 (t (error "Not a standard Org-mode time string: %s" s))))
17496 (defun org-timestamp-up (&optional arg)
17497 "Increase the date item at the cursor by one.
17498 If the cursor is on the year, change the year. If it is on the month,
17499 the day or the time, change that.
17500 With prefix ARG, change by that many units."
17502 (org-timestamp-change (prefix-numeric-value arg) nil 'updown))
17504 (defun org-timestamp-down (&optional arg)
17505 "Decrease the date item at the cursor by one.
17506 If the cursor is on the year, change the year. If it is on the month,
17507 the day or the time, change that.
17508 With prefix ARG, change by that many units."
17510 (org-timestamp-change (- (prefix-numeric-value arg)) nil 'updown))
17512 (defun org-timestamp-up-day (&optional arg)
17513 "Increase the date in the time stamp by one day.
17514 With prefix ARG, change that many days."
17516 (if (and (not (org-at-timestamp-p t))
17517 (org-at-heading-p))
17519 (org-timestamp-change (prefix-numeric-value arg) 'day 'updown)))
17521 (defun org-timestamp-down-day (&optional arg)
17522 "Decrease the date in the time stamp by one day.
17523 With prefix ARG, change that many days."
17525 (if (and (not (org-at-timestamp-p t))
17526 (org-at-heading-p))
17528 (org-timestamp-change (- (prefix-numeric-value arg)) 'day) 'updown))
17530 (defun org-at-timestamp-p (&optional inactive-ok)
17531 "Determine if the cursor is in or at a timestamp."
17533 (let* ((tsr (if inactive-ok org-ts-regexp3 org-ts-regexp2))
17535 (ans (or (looking-at tsr)
17537 (skip-chars-backward "^[<\n\r\t")
17538 (if (> (point) (point-min)) (backward-char 1))
17539 (and (looking-at tsr)
17540 (> (- (match-end 0) pos) -1))))))
17542 (boundp 'org-ts-what)
17545 ((= pos (match-beginning 0)) 'bracket)
17546 ;; Point is considered to be "on the bracket" whether
17547 ;; it's really on it or right after it.
17548 ((= pos (1- (match-end 0))) 'bracket)
17549 ((= pos (match-end 0)) 'after)
17550 ((org-pos-in-match-range pos 2) 'year)
17551 ((org-pos-in-match-range pos 3) 'month)
17552 ((org-pos-in-match-range pos 7) 'hour)
17553 ((org-pos-in-match-range pos 8) 'minute)
17554 ((or (org-pos-in-match-range pos 4)
17555 (org-pos-in-match-range pos 5)) 'day)
17556 ((and (> pos (or (match-end 8) (match-end 5)))
17557 (< pos (match-end 0)))
17558 (- pos (or (match-end 8) (match-end 5))))
17562 (defun org-toggle-timestamp-type ()
17563 "Toggle the type (<active> or [inactive]) of a time stamp."
17565 (when (org-at-timestamp-p t)
17566 (let ((beg (match-beginning 0)) (end (match-end 0))
17567 (map '((?\[ . "<") (?\] . ">") (?< . "[") (?> . "]"))))
17570 (while (re-search-forward "[][<>]" end t)
17571 (replace-match (cdr (assoc (char-after (match-beginning 0)) map))
17573 (message "Timestamp is now %sactive"
17574 (if (equal (char-after beg) ?<) "" "in")))))
17576 (defun org-at-clock-log-p nil
17577 "Is the cursor on the clock log line?"
17579 (move-beginning-of-line 1)
17580 (looking-at "^[ \t]*CLOCK:")))
17582 (defvar org-clock-history) ; defined in org-clock.el
17583 (defvar org-clock-adjust-closest nil) ; defined in org-clock.el
17584 (defun org-timestamp-change (n &optional what updown suppress-tmp-delay)
17585 "Change the date in the time stamp at point.
17586 The date will be changed by N times WHAT. WHAT can be `day', `month',
17587 `year', `minute', `second'. If WHAT is not given, the cursor position
17588 in the timestamp determines what will be changed.
17589 When SUPPRESS-TMP-DELAY is non-nil, suppress delays like \"--2d\"."
17590 (let ((origin (point)) origin-cat
17592 (dm (max (nth 1 org-time-stamp-rounding-minutes) 1))
17595 ts time time0 fixnext clrgx)
17596 (if (not (org-at-timestamp-p t))
17597 (user-error "Not at a timestamp"))
17598 (if (and (not what) (eq org-ts-what 'bracket))
17599 (org-toggle-timestamp-type)
17600 ;; Point isn't on brackets. Remember the part of the time-stamp
17601 ;; the point was in. Indeed, size of time-stamps may change,
17602 ;; but point must be kept in the same category nonetheless.
17603 (setq origin-cat org-ts-what)
17604 (if (and (not what) (not (eq org-ts-what 'day))
17605 org-display-custom-times
17606 (get-text-property (point) 'display)
17607 (not (get-text-property (1- (point)) 'display)))
17608 (setq org-ts-what 'day))
17609 (setq org-ts-what (or what org-ts-what)
17610 inactive (= (char-after (match-beginning 0)) ?\[)
17611 ts (match-string 0))
17613 (when (string-match
17614 "\\(\\(-[012][0-9]:[0-5][0-9]\\)?\\( +[.+]?-?[-+][0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)*\\)[]>]"
17616 (setq extra (match-string 1 ts))
17617 (if suppress-tmp-delay
17618 (setq extra (replace-regexp-in-string " --[0-9]+[hdwmy]" "" extra))))
17619 (if (string-match "^.\\{10\\}.*?[0-9]+:[0-9][0-9]" ts)
17621 (setq time0 (org-parse-time-string ts))
17623 (eq org-ts-what 'minute)
17624 (not current-prefix-arg))
17625 ;; This looks like s-up and s-down. Change by one rounding step.
17626 (setq n (* dm (cond ((> n 0) 1) ((< n 0) -1) (t 0))))
17627 (when (not (= 0 (setq rem (% (nth 1 time0) dm))))
17628 (setcar (cdr time0) (+ (nth 1 time0)
17629 (if (> n 0) (- rem) (- dm rem))))))
17631 (encode-time (or (car time0) 0)
17632 (+ (if (eq org-ts-what 'minute) n 0) (nth 1 time0))
17633 (+ (if (eq org-ts-what 'hour) n 0) (nth 2 time0))
17634 (+ (if (eq org-ts-what 'day) n 0) (nth 3 time0))
17635 (+ (if (eq org-ts-what 'month) n 0) (nth 4 time0))
17636 (+ (if (eq org-ts-what 'year) n 0) (nth 5 time0))
17638 (when (and (member org-ts-what '(hour minute))
17640 (string-match "-\\([012][0-9]\\):\\([0-5][0-9]\\)" extra))
17641 (setq extra (org-modify-ts-extra
17643 (if (eq org-ts-what 'hour) 2 5)
17645 (when (integerp org-ts-what)
17646 (setq extra (org-modify-ts-extra extra org-ts-what n dm)))
17647 (if (eq what 'calendar)
17648 (let ((cal-date (org-get-date-from-calendar)))
17649 (setcar (nthcdr 4 time0) (nth 0 cal-date)) ; month
17650 (setcar (nthcdr 3 time0) (nth 1 cal-date)) ; day
17651 (setcar (nthcdr 5 time0) (nth 2 cal-date)) ; year
17652 (setcar time0 (or (car time0) 0))
17653 (setcar (nthcdr 1 time0) (or (nth 1 time0) 0))
17654 (setcar (nthcdr 2 time0) (or (nth 2 time0) 0))
17655 (setq time (apply 'encode-time time0))))
17656 ;; Insert the new time-stamp, and ensure point stays in the same
17657 ;; category as before (i.e. not after the last position in that
17659 (let ((pos (point)))
17660 ;; Stay before inserted string. `save-excursion' is of no use.
17661 (setq org-last-changed-timestamp
17662 (org-insert-time-stamp time with-hm inactive nil nil extra))
17665 (looking-at org-ts-regexp3)
17667 ;; `day' category ends before `hour' if any, or at
17668 ;; the end of the day name.
17669 ((eq origin-cat 'day)
17670 (min (or (match-beginning 7) (1- (match-end 5))) origin))
17671 ((eq origin-cat 'hour) (min (match-end 7) origin))
17672 ((eq origin-cat 'minute) (min (1- (match-end 8)) origin))
17673 ((integerp origin-cat) (min (1- (match-end 0)) origin))
17674 ;; `year' and `month' have both fixed size: point
17675 ;; couldn't have moved into another part.
17677 ;; Update clock if on a CLOCK line.
17678 (org-clock-update-time-maybe)
17679 ;; Maybe adjust the closest clock in `org-clock-history'
17680 (when org-clock-adjust-closest
17681 (if (not (and (org-at-clock-log-p)
17682 (< 1 (length (delq nil (mapcar 'marker-position
17683 org-clock-history))))))
17684 (message "No clock to adjust")
17685 (cond ((save-excursion ; fix previous clock?
17686 (re-search-backward org-ts-regexp0 nil t)
17687 (org-looking-back (concat org-clock-string " \\[")))
17688 (setq fixnext 1 clrgx (concat org-ts-regexp0 "\\] =>.*$")))
17689 ((save-excursion ; fix next clock?
17690 (re-search-backward org-ts-regexp0 nil t)
17691 (looking-at (concat org-ts-regexp0 "\\] =>")))
17692 (setq fixnext -1 clrgx (concat org-clock-string " \\[" org-ts-regexp0))))
17693 (save-window-excursion
17694 ;; Find closest clock to point, adjust the previous/next one in history
17695 (let* ((p (save-excursion (org-back-to-heading t)))
17696 (cl (mapcar (lambda(c) (abs (- (marker-position c) p))) org-clock-history))
17698 (+ fixnext (- (length cl) (or (length (member (apply 'min cl) cl)) 100))))
17699 (clfixpos (if (> 0 clfixnth) nil (nth clfixnth org-clock-history))))
17701 (message "No clock to adjust")
17703 (org-goto-marker-or-bmk clfixpos)
17705 (when (re-search-forward clrgx nil t)
17706 (goto-char (match-beginning 1))
17707 (let (org-clock-adjust-closest)
17708 (org-timestamp-change n org-ts-what updown))
17709 (message "Clock adjusted in %s for heading: %s"
17710 (file-name-nondirectory (buffer-file-name))
17711 (org-get-heading t t)))))))))
17712 ;; Try to recenter the calendar window, if any.
17713 (if (and org-calendar-follow-timestamp-change
17714 (get-buffer-window "*Calendar*" t)
17715 (memq org-ts-what '(day month year)))
17716 (org-recenter-calendar (time-to-days time))))))
17718 (defun org-modify-ts-extra (s pos n dm)
17719 "Change the different parts of the lead-time and repeat fields in timestamp."
17720 (let ((idx '(("d" . 0) ("w" . 1) ("m" . 2) ("y" . 3) ("d" . -1) ("y" . 4)))
17722 (when (string-match "\\(-\\([012][0-9]\\):\\([0-5][0-9]\\)\\)?\\( +\\+\\([0-9]+\\)\\([dmwy]\\)\\)?\\( +-\\([0-9]+\\)\\([dmwy]\\)\\)?" s)
17724 ((or (org-pos-in-match-range pos 2)
17725 (org-pos-in-match-range pos 3))
17726 (setq m (string-to-number (match-string 3 s))
17727 h (string-to-number (match-string 2 s)))
17728 (if (org-pos-in-match-range pos 2)
17730 (setq n (* dm (org-no-warnings (signum n))))
17731 (when (not (= 0 (setq rem (% m dm))))
17732 (setq m (+ m (if (> n 0) (- rem) (- dm rem)))))
17734 (if (< m 0) (setq m (+ m 60) h (1- h)))
17735 (if (> m 59) (setq m (- m 60) h (1+ h)))
17736 (setq h (min 24 (max 0 h)))
17737 (setq ng 1 new (format "-%02d:%02d" h m)))
17738 ((org-pos-in-match-range pos 6)
17739 (setq ng 6 new (car (rassoc (+ n (cdr (assoc (match-string 6 s) idx))) idx))))
17740 ((org-pos-in-match-range pos 5)
17741 (setq ng 5 new (format "%d" (max 1 (+ n (string-to-number (match-string 5 s)))))))
17743 ((org-pos-in-match-range pos 9)
17744 (setq ng 9 new (car (rassoc (+ n (cdr (assoc (match-string 9 s) idx))) idx))))
17745 ((org-pos-in-match-range pos 8)
17746 (setq ng 8 new (format "%d" (max 0 (+ n (string-to-number (match-string 8 s))))))))
17750 (substring s 0 (match-beginning ng))
17752 (substring s (match-end ng))))))
17755 (defun org-recenter-calendar (date)
17756 "If the calendar is visible, recenter it to DATE."
17757 (let ((cwin (get-buffer-window "*Calendar*" t)))
17759 (let ((calendar-move-hook nil))
17760 (with-selected-window cwin
17761 (calendar-goto-date (if (listp date) date
17762 (calendar-gregorian-from-absolute date))))))))
17764 (defun org-goto-calendar (&optional arg)
17765 "Go to the Emacs calendar at the current date.
17766 If there is a time stamp in the current line, go to that date.
17767 A prefix ARG can be used to force the current date."
17769 (let ((tsr org-ts-regexp) diff
17770 (calendar-move-hook nil)
17771 (calendar-view-holidays-initially-flag nil)
17772 (calendar-view-diary-initially-flag nil))
17773 (if (or (org-at-timestamp-p)
17775 (beginning-of-line 1)
17776 (looking-at (concat ".*" tsr))))
17777 (let ((d1 (time-to-days (current-time)))
17779 (org-time-string-to-time (match-string 1)))))
17780 (setq diff (- d2 d1))))
17782 (calendar-goto-today)
17783 (if (and diff (not arg)) (calendar-forward-day diff))))
17785 (defun org-get-date-from-calendar ()
17786 "Return a list (month day year) of date at point in calendar."
17787 (with-current-buffer "*Calendar*"
17789 (calendar-cursor-to-date))))
17791 (defun org-date-from-calendar ()
17792 "Insert time stamp corresponding to cursor date in *Calendar* buffer.
17793 If there is already a time stamp at the cursor position, update it."
17795 (if (org-at-timestamp-p t)
17796 (org-timestamp-change 0 'calendar)
17797 (let ((cal-date (org-get-date-from-calendar)))
17798 (org-insert-time-stamp
17799 (encode-time 0 0 0 (nth 1 cal-date) (car cal-date) (nth 2 cal-date))))))
17801 (defcustom org-effort-durations
17804 ("w" . ,(* 60 8 5))
17805 ("m" . ,(* 60 8 5 4))
17806 ("y" . ,(* 60 8 5 40)))
17807 "Conversion factor to minutes for an effort modifier.
17809 Each entry has the form (MODIFIER . MINUTES).
17811 In an effort string, a number followed by MODIFIER is multiplied
17812 by the specified number of MINUTES to obtain an effort in
17815 For example, if the value of this variable is ((\"hours\" . 60)), then an
17816 effort string \"2hours\" is equivalent to 120 minutes."
17819 :type '(alist :key-type (string :tag "Modifier")
17820 :value-type (number :tag "Minutes")))
17822 (defun org-minutes-to-clocksum-string (m)
17823 "Format number of minutes as a clocksum string.
17824 The format is determined by `org-time-clocksum-format',
17825 `org-time-clocksum-use-fractional' and
17826 `org-time-clocksum-fractional-format' and
17827 `org-time-clocksum-use-effort-durations'."
17828 (let ((clocksum "")
17829 (m (round m)) ; Don't allow fractions of minutes
17831 (setq h (if org-time-clocksum-use-effort-durations
17832 (cdr (assoc "h" org-effort-durations)) 60)
17833 d (if org-time-clocksum-use-effort-durations
17834 (/ (cdr (assoc "d" org-effort-durations)) h) 24)
17835 w (if org-time-clocksum-use-effort-durations
17836 (/ (cdr (assoc "w" org-effort-durations)) (* d h)) 7)
17837 mo (if org-time-clocksum-use-effort-durations
17838 (/ (cdr (assoc "m" org-effort-durations)) (* d h)) 30)
17839 y (if org-time-clocksum-use-effort-durations
17840 (/ (cdr (assoc "y" org-effort-durations)) (* d h)) 365))
17841 ;; fractional format
17842 (if org-time-clocksum-use-fractional
17844 ;; single format string
17845 ((stringp org-time-clocksum-fractional-format)
17846 (format org-time-clocksum-fractional-format (/ m (float h))))
17847 ;; choice of fractional formats for different time units
17848 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :years))
17849 (> (/ (truncate m) (* y d h)) 0))
17850 (format fmt (/ m (* y d (float h)))))
17851 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :months))
17852 (> (/ (truncate m) (* mo d h)) 0))
17853 (format fmt (/ m (* mo d (float h)))))
17854 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :weeks))
17855 (> (/ (truncate m) (* w d h)) 0))
17856 (format fmt (/ m (* w d (float h)))))
17857 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :days))
17858 (> (/ (truncate m) (* d h)) 0))
17859 (format fmt (/ m (* d (float h)))))
17860 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :hours))
17861 (> (/ (truncate m) h) 0))
17862 (format fmt (/ m (float h))))
17863 ((setq fmt (plist-get org-time-clocksum-fractional-format :minutes))
17865 ;; fall back to smallest time unit with a format
17866 ((setq fmt (plist-get org-time-clocksum-fractional-format :hours))
17867 (format fmt (/ m (float h))))
17868 ((setq fmt (plist-get org-time-clocksum-fractional-format :days))
17869 (format fmt (/ m (* d (float h)))))
17870 ((setq fmt (plist-get org-time-clocksum-fractional-format :weeks))
17871 (format fmt (/ m (* w d (float h)))))
17872 ((setq fmt (plist-get org-time-clocksum-fractional-format :months))
17873 (format fmt (/ m (* mo d (float h)))))
17874 ((setq fmt (plist-get org-time-clocksum-fractional-format :years))
17875 (format fmt (/ m (* y d (float h))))))
17876 ;; standard (non-fractional) format, with single format string
17877 (if (stringp org-time-clocksum-format)
17878 (format org-time-clocksum-format (setq n (/ m h)) (- m (* h n)))
17879 ;; separate formats components
17880 (and (setq fmt (plist-get org-time-clocksum-format :years))
17881 (or (> (setq n (/ (truncate m) (* y d h))) 0)
17882 (plist-get org-time-clocksum-format :require-years))
17883 (setq clocksum (concat clocksum (format fmt n))
17884 m (- m (* n y d h))))
17885 (and (setq fmt (plist-get org-time-clocksum-format :months))
17886 (or (> (setq n (/ (truncate m) (* mo d h))) 0)
17887 (plist-get org-time-clocksum-format :require-months))
17888 (setq clocksum (concat clocksum (format fmt n))
17889 m (- m (* n mo d h))))
17890 (and (setq fmt (plist-get org-time-clocksum-format :weeks))
17891 (or (> (setq n (/ (truncate m) (* w d h))) 0)
17892 (plist-get org-time-clocksum-format :require-weeks))
17893 (setq clocksum (concat clocksum (format fmt n))
17894 m (- m (* n w d h))))
17895 (and (setq fmt (plist-get org-time-clocksum-format :days))
17896 (or (> (setq n (/ (truncate m) (* d h))) 0)
17897 (plist-get org-time-clocksum-format :require-days))
17898 (setq clocksum (concat clocksum (format fmt n))
17899 m (- m (* n d h))))
17900 (and (setq fmt (plist-get org-time-clocksum-format :hours))
17901 (or (> (setq n (/ (truncate m) h)) 0)
17902 (plist-get org-time-clocksum-format :require-hours))
17903 (setq clocksum (concat clocksum (format fmt n))
17905 (and (setq fmt (plist-get org-time-clocksum-format :minutes))
17906 (or (> m 0) (plist-get org-time-clocksum-format :require-minutes))
17907 (setq clocksum (concat clocksum (format fmt m))))
17908 ;; return formatted time duration
17911 (defalias 'org-minutes-to-hh:mm-string 'org-minutes-to-clocksum-string)
17912 (make-obsolete 'org-minutes-to-hh:mm-string 'org-minutes-to-clocksum-string
17913 "Org mode version 8.0")
17915 (defun org-hours-to-clocksum-string (n)
17916 (org-minutes-to-clocksum-string (* n 60)))
17918 (defun org-hh:mm-string-to-minutes (s)
17919 "Convert a string H:MM to a number of minutes.
17920 If the string is just a number, interpret it as minutes.
17921 In fact, the first hh:mm or number in the string will be taken,
17922 there can be extra stuff in the string.
17923 If no number is found, the return value is 0."
17926 ((string-match "\\([0-9]+\\):\\([0-9]+\\)" s)
17927 (+ (* (string-to-number (match-string 1 s)) 60)
17928 (string-to-number (match-string 2 s))))
17929 ((string-match "\\([0-9]+\\)" s)
17930 (string-to-number (match-string 1 s)))
17933 (defcustom org-image-actual-width t
17934 "Should we use the actual width of images when inlining them?
17936 When set to `t', always use the image width.
17938 When set to a number, use imagemagick (when available) to set
17939 the image's width to this value.
17941 When set to a number in a list, try to get the width from any
17942 #+ATTR.* keyword if it matches a width specification like
17944 #+ATTR_HTML: :width 300px
17946 and fall back on that number if none is found.
17948 When set to nil, try to get the width from an #+ATTR.* keyword
17949 and fall back on the original width if none is found.
17951 This requires Emacs >= 24.1, build with imagemagick support."
17952 :group 'org-appearance
17954 :package-version '(Org . "8.0")
17956 (const :tag "Use the image width" t)
17957 (integer :tag "Use a number of pixels")
17958 (list :tag "Use #+ATTR* or a number of pixels" (integer))
17959 (const :tag "Use #+ATTR* or don't resize" nil)))
17961 (defcustom org-agenda-inhibit-startup nil
17962 "Inhibit startup when preparing agenda buffers.
17963 When this variable is `t' (the default), the initialization of
17964 the Org agenda buffers is inhibited: e.g. the visibility state
17965 is not set, the tables are not re-aligned, etc."
17968 :group 'org-agenda)
17970 (define-obsolete-variable-alias
17971 'org-agenda-ignore-drawer-properties
17972 'org-agenda-ignore-properties "24.5")
17974 (defcustom org-agenda-ignore-properties nil
17975 "Avoid updating text properties when building the agenda.
17976 Properties are used to prepare buffers for effort estimates,
17977 appointments, statistics and subtree-local categories.
17978 If you don't use these in the agenda, you can add them to this
17979 list and agenda building will be a bit faster.
17980 The value is a list, with zero or more of the symbols `effort', `appt',
17981 `stats' or `category'."
17982 :type '(set :greedy t
17988 :package-version '(Org . "8.3")
17989 :group 'org-agenda)
17991 (defun org-duration-string-to-minutes (s &optional output-to-string)
17992 "Convert a duration string S to minutes.
17994 A bare number is interpreted as minutes, modifiers can be set by
17995 customizing `org-effort-durations' (which see).
17997 Entries containing a colon are interpreted as H:MM by
17998 `org-hh:mm-string-to-minutes'."
18000 (re (concat "\\([0-9.]+\\) *\\("
18001 (regexp-opt (mapcar 'car org-effort-durations))
18003 (while (string-match re s)
18004 (incf result (* (cdr (assoc (match-string 2 s) org-effort-durations))
18005 (string-to-number (match-string 1 s))))
18006 (setq s (replace-match "" nil t s)))
18007 (setq result (floor result))
18008 (incf result (org-hh:mm-string-to-minutes s))
18009 (if output-to-string (number-to-string result) result)))
18013 (defun org-save-all-org-buffers ()
18014 "Save all Org-mode buffers without user confirmation."
18016 (message "Saving all Org-mode buffers...")
18017 (save-some-buffers t (lambda () (derived-mode-p 'org-mode)))
18018 (when (featurep 'org-id) (org-id-locations-save))
18019 (message "Saving all Org-mode buffers... done"))
18021 (defun org-revert-all-org-buffers ()
18022 "Revert all Org-mode buffers.
18023 Prompt for confirmation when there are unsaved changes.
18024 Be sure you know what you are doing before letting this function
18025 overwrite your changes.
18027 This function is useful in a setup where one tracks org files
18028 with a version control system, to revert on one machine after pulling
18029 changes from another. I believe the procedure must be like this:
18031 1. M-x org-save-all-org-buffers
18032 2. Pull changes from the other machine, resolve conflicts
18033 3. M-x org-revert-all-org-buffers"
18035 (unless (yes-or-no-p "Revert all Org buffers from their files? ")
18036 (user-error "Abort"))
18038 (save-window-excursion
18041 (when (and (with-current-buffer b (derived-mode-p 'org-mode))
18042 (with-current-buffer b buffer-file-name))
18043 (org-pop-to-buffer-same-window b)
18044 (revert-buffer t 'no-confirm)))
18046 (when (and (featurep 'org-id) org-id-track-globally)
18047 (org-id-locations-load)))))
18052 (defun org-switchb (&optional arg)
18053 "Switch between Org buffers.
18054 With one prefix argument, restrict available buffers to files.
18055 With two prefix arguments, restrict available buffers to agenda files.
18057 Defaults to `iswitchb' for buffer name completion.
18058 Set `org-completion-use-ido' to make it use ido instead."
18060 (let ((blist (cond ((equal arg '(4)) (org-buffer-list 'files))
18061 ((equal arg '(16)) (org-buffer-list 'agenda))
18062 (t (org-buffer-list))))
18063 (org-completion-use-iswitchb org-completion-use-iswitchb)
18064 (org-completion-use-ido org-completion-use-ido))
18065 (unless (or org-completion-use-ido org-completion-use-iswitchb)
18066 (setq org-completion-use-iswitchb t))
18067 (org-pop-to-buffer-same-window
18068 (org-icompleting-read "Org buffer: "
18069 (mapcar 'list (mapcar 'buffer-name blist))
18072 ;;; Define some older names previously used for this functionality
18074 (defalias 'org-ido-switchb 'org-switchb)
18076 (defalias 'org-iswitchb 'org-switchb)
18078 (defun org-buffer-list (&optional predicate exclude-tmp)
18079 "Return a list of Org buffers.
18080 PREDICATE can be `export', `files' or `agenda'.
18082 export restrict the list to Export buffers.
18083 files restrict the list to buffers visiting Org files.
18084 agenda restrict the list to buffers visiting agenda files.
18086 If EXCLUDE-TMP is non-nil, ignore temporary buffers."
18088 (agenda-files (and (eq predicate 'agenda)
18089 (mapcar 'file-truename (org-agenda-files t))))
18092 ((eq predicate 'files)
18093 (lambda (b) (with-current-buffer b (derived-mode-p 'org-mode))))
18094 ((eq predicate 'export)
18095 (lambda (b) (string-match "\*Org .*Export" (buffer-name b))))
18096 ((eq predicate 'agenda)
18098 (with-current-buffer b
18099 (and (derived-mode-p 'org-mode)
18100 (setq bfn (buffer-file-name b))
18101 (member (file-truename bfn) agenda-files)))))
18102 (t (lambda (b) (with-current-buffer b
18103 (or (derived-mode-p 'org-mode)
18104 (string-match "\*Org .*Export"
18105 (buffer-name b)))))))))
18109 (if (and (funcall filter b)
18110 (or (not exclude-tmp)
18111 (not (string-match "tmp" (buffer-name b)))))
18116 (defun org-agenda-files (&optional unrestricted archives)
18117 "Get the list of agenda files.
18118 Optional UNRESTRICTED means return the full list even if a restriction
18119 is currently in place.
18120 When ARCHIVES is t, include all archive files that are really being
18121 used by the agenda files. If ARCHIVE is `ifmode', do this only if
18122 `org-agenda-archives-mode' is t."
18125 ((and (not unrestricted) (get 'org-agenda-files 'org-restrict)))
18126 ((stringp org-agenda-files) (org-read-agenda-file-list))
18127 ((listp org-agenda-files) org-agenda-files)
18128 (t (error "Invalid value of `org-agenda-files'")))))
18129 (setq files (apply 'append
18130 (mapcar (lambda (f)
18131 (if (file-directory-p f)
18133 f t org-agenda-file-regexp)
18136 (when org-agenda-skip-unavailable-files
18137 (setq files (delq nil
18140 (and (file-readable-p file) file)))
18142 (when (or (eq archives t)
18143 (and (eq archives 'ifmode) (eq org-agenda-archives-mode t)))
18144 (setq files (org-add-archive-files files)))
18147 (defun org-agenda-file-p (&optional file)
18148 "Return non-nil, if FILE is an agenda file.
18149 If FILE is omitted, use the file associated with the current
18151 (member (or file (buffer-file-name))
18152 (org-agenda-files t)))
18154 (defun org-edit-agenda-file-list ()
18155 "Edit the list of agenda files.
18156 Depending on setup, this either uses customize to edit the variable
18157 `org-agenda-files', or it visits the file that is holding the list. In the
18158 latter case, the buffer is set up in a way that saving it automatically kills
18159 the buffer and restores the previous window configuration."
18161 (if (stringp org-agenda-files)
18162 (let ((cw (current-window-configuration)))
18163 (find-file org-agenda-files)
18164 (org-set-local 'org-window-configuration cw)
18165 (org-add-hook 'after-save-hook
18167 (set-window-configuration
18168 (prog1 org-window-configuration
18169 (kill-buffer (current-buffer))))
18170 (org-install-agenda-files-menu)
18171 (message "New agenda file list installed"))
18173 (message "%s" (substitute-command-keys
18174 "Edit list and finish with \\[save-buffer]")))
18175 (customize-variable 'org-agenda-files)))
18177 (defun org-store-new-agenda-file-list (list)
18178 "Set new value for the agenda file list and save it correctly."
18179 (if (stringp org-agenda-files)
18180 (let ((fe (org-read-agenda-file-list t)) b u)
18181 (while (setq b (find-buffer-visiting org-agenda-files))
18183 (with-temp-file org-agenda-files
18186 (lambda (f) ;; Keep un-expanded entries.
18187 (if (setq u (assoc f fe))
18192 (let ((org-mode-hook nil) (org-inhibit-startup t)
18193 (org-insert-mode-line-in-empty-file nil))
18194 (setq org-agenda-files list)
18195 (customize-save-variable 'org-agenda-files org-agenda-files))))
18197 (defun org-read-agenda-file-list (&optional pair-with-expansion)
18198 "Read the list of agenda files from a file.
18199 If PAIR-WITH-EXPANSION is t return pairs with un-expanded
18200 filenames, used by `org-store-new-agenda-file-list' to write back
18201 un-expanded file names."
18202 (when (file-directory-p org-agenda-files)
18203 (error "`org-agenda-files' cannot be a single directory"))
18204 (when (stringp org-agenda-files)
18206 (insert-file-contents org-agenda-files)
18209 (let ((e (expand-file-name (substitute-in-file-name f)
18211 (if pair-with-expansion
18214 (org-split-string (buffer-string) "[ \t\r\n]*?[\r\n][ \t\r\n]*")))))
18217 (defun org-cycle-agenda-files ()
18218 "Cycle through the files in `org-agenda-files'.
18219 If the current buffer visits an agenda file, find the next one in the list.
18220 If the current buffer does not, find the first agenda file."
18222 (let* ((fs (org-agenda-files t))
18223 (files (append fs (list (car fs))))
18224 (tcf (if buffer-file-name (file-truename buffer-file-name)))
18226 (unless files (user-error "No agenda files"))
18228 (while (setq file (pop files))
18229 (if (equal (file-truename file) tcf)
18231 (find-file (car files))
18233 (find-file (car fs)))
18234 (if (buffer-base-buffer) (org-pop-to-buffer-same-window (buffer-base-buffer)))))
18236 (defun org-agenda-file-to-front (&optional to-end)
18237 "Move/add the current file to the top of the agenda file list.
18238 If the file is not present in the list, it is added to the front. If it is
18239 present, it is moved there. With optional argument TO-END, add/move to the
18242 (let ((org-agenda-skip-unavailable-files nil)
18243 (file-alist (mapcar (lambda (x)
18244 (cons (file-truename x) x))
18245 (org-agenda-files t)))
18246 (ctf (file-truename
18247 (or buffer-file-name
18248 (user-error "Please save the current buffer to a file"))))
18250 (setq x (assoc ctf file-alist) had x)
18252 (if (not x) (setq x (cons ctf (abbreviate-file-name buffer-file-name))))
18254 (setq file-alist (append (delq x file-alist) (list x)))
18255 (setq file-alist (cons x (delq x file-alist))))
18256 (org-store-new-agenda-file-list (mapcar 'cdr file-alist))
18257 (org-install-agenda-files-menu)
18258 (message "File %s to %s of agenda file list"
18259 (if had "moved" "added") (if to-end "end" "front"))))
18261 (defun org-remove-file (&optional file)
18262 "Remove current file from the list of files in variable `org-agenda-files'.
18263 These are the files which are being checked for agenda entries.
18264 Optional argument FILE means use this file instead of the current."
18266 (let* ((org-agenda-skip-unavailable-files nil)
18267 (file (or file buffer-file-name
18268 (user-error "Current buffer does not visit a file")))
18269 (true-file (file-truename file))
18270 (afile (abbreviate-file-name file))
18271 (files (delq nil (mapcar
18273 (if (equal true-file
18276 (org-agenda-files t)))))
18277 (if (not (= (length files) (length (org-agenda-files t))))
18279 (org-store-new-agenda-file-list files)
18280 (org-install-agenda-files-menu)
18281 (message "Removed file: %s" afile))
18282 (message "File was not in list: %s (not removed)" afile))))
18284 (defun org-file-menu-entry (file)
18285 (vector file (list 'find-file file) t))
18287 (defun org-check-agenda-file (file)
18288 "Make sure FILE exists. If not, ask user what to do."
18289 (when (not (file-exists-p file))
18290 (message "Non-existent agenda file %s. [R]emove from list or [A]bort?"
18291 (abbreviate-file-name file))
18292 (let ((r (downcase (read-char-exclusive))))
18295 (org-remove-file file)
18296 (throw 'nextfile t))
18297 (t (user-error "Abort"))))))
18299 (defun org-get-agenda-file-buffer (file)
18300 "Get an agenda buffer visiting FILE.
18301 If the buffer needs to be created, add it to the list of buffers
18302 which might be released later."
18303 (let ((buf (org-find-base-buffer-visiting file)))
18305 buf ; just return it
18306 ;; Make a new buffer and remember it
18307 (setq buf (find-file-noselect file))
18308 (if buf (push buf org-agenda-new-buffers))
18311 (defun org-release-buffers (blist)
18312 "Release all buffers in list, asking the user for confirmation when needed.
18313 When a buffer is unmodified, it is just killed. When modified, it is saved
18314 \(if the user agrees) and then killed."
18316 (while (setq buf (pop blist))
18317 (setq file (buffer-file-name buf))
18318 (when (and (buffer-modified-p buf)
18320 (y-or-n-p (format "Save file %s? " file)))
18321 (with-current-buffer buf (save-buffer)))
18322 (kill-buffer buf))))
18324 (defun org-agenda-prepare-buffers (files)
18325 "Create buffers for all agenda files, protect archived trees and comments."
18327 (let ((pa '(:org-archived t))
18328 (pc '(:org-comment t))
18329 (pall '(:org-archived t :org-comment t))
18330 (inhibit-read-only t)
18331 (org-inhibit-startup org-agenda-inhibit-startup)
18332 (rea (concat ":" org-archive-tag ":"))
18334 (setq org-tag-alist-for-agenda nil
18335 org-tag-groups-alist-for-agenda nil)
18338 (while (setq file (pop files))
18342 (org-check-agenda-file file)
18343 (set-buffer (org-get-agenda-file-buffer file)))
18345 (org-set-regexps-and-options-for-tags)
18347 (goto-char (point-min))
18348 (let ((case-fold-search t))
18349 (when (search-forward "#+setupfile" nil t)
18350 ;; Don't set all regexps and options systematically as
18351 ;; this is only run for setting agenda tags from setup
18353 (org-set-regexps-and-options)))
18354 (or (memq 'category org-agenda-ignore-properties)
18355 (org-refresh-category-properties))
18356 (or (memq 'stats org-agenda-ignore-properties)
18357 (org-refresh-stats-properties))
18358 (or (memq 'effort org-agenda-ignore-properties)
18359 (org-refresh-effort-properties))
18360 (or (memq 'appt org-agenda-ignore-properties)
18361 (org-refresh-properties "APPT_WARNTIME" 'org-appt-warntime))
18362 (setq org-todo-keywords-for-agenda
18363 (append org-todo-keywords-for-agenda org-todo-keywords-1))
18364 (setq org-done-keywords-for-agenda
18365 (append org-done-keywords-for-agenda org-done-keywords))
18366 (setq org-todo-keyword-alist-for-agenda
18367 (append org-todo-keyword-alist-for-agenda org-todo-key-alist))
18368 (setq org-tag-alist-for-agenda
18370 (append org-tag-alist-for-agenda
18372 org-tag-persistent-alist)))
18374 (setq org-tag-groups-alist-for-agenda
18375 (org-uniquify-alist
18376 (append org-tag-groups-alist-for-agenda org-tag-groups-alist))))
18377 (org-with-silent-modifications
18379 (remove-text-properties (point-min) (point-max) pall)
18380 (when org-agenda-skip-archived-trees
18381 (goto-char (point-min))
18382 (while (re-search-forward rea nil t)
18383 (if (org-at-heading-p t)
18384 (add-text-properties (point-at-bol) (org-end-of-subtree t) pa))))
18385 (goto-char (point-min))
18386 (setq re (format "^\\* .*\\<%s\\>" org-comment-string))
18387 (while (re-search-forward re nil t)
18388 (when (save-match-data (org-in-commented-heading-p t))
18389 (add-text-properties
18390 (match-beginning 0) (org-end-of-subtree t) pc)))))
18391 (goto-char pos)))))
18392 (setq org-todo-keywords-for-agenda
18393 (org-uniquify org-todo-keywords-for-agenda))
18394 (setq org-todo-keyword-alist-for-agenda
18395 (org-uniquify org-todo-keyword-alist-for-agenda))))
18398 ;;;; CDLaTeX minor mode
18400 (defvar org-cdlatex-mode-map (make-sparse-keymap)
18401 "Keymap for the minor `org-cdlatex-mode'.")
18403 (org-defkey org-cdlatex-mode-map "_" 'org-cdlatex-underscore-caret)
18404 (org-defkey org-cdlatex-mode-map "^" 'org-cdlatex-underscore-caret)
18405 (org-defkey org-cdlatex-mode-map "`" 'cdlatex-math-symbol)
18406 (org-defkey org-cdlatex-mode-map "'" 'org-cdlatex-math-modify)
18407 (org-defkey org-cdlatex-mode-map "\C-c{" 'cdlatex-environment)
18409 (defvar org-cdlatex-texmathp-advice-is-done nil
18410 "Flag remembering if we have applied the advice to texmathp already.")
18412 (define-minor-mode org-cdlatex-mode
18413 "Toggle the minor `org-cdlatex-mode'.
18414 This mode supports entering LaTeX environment and math in LaTeX fragments
18416 \\{org-cdlatex-mode-map}"
18418 (when org-cdlatex-mode
18420 (run-hooks 'cdlatex-mode-hook)
18421 (cdlatex-compute-tables))
18422 (unless org-cdlatex-texmathp-advice-is-done
18423 (setq org-cdlatex-texmathp-advice-is-done t)
18424 (defadvice texmathp (around org-math-always-on activate)
18425 "Always return t in org-mode buffers.
18426 This is because we want to insert math symbols without dollars even outside
18427 the LaTeX math segments. If Orgmode thinks that point is actually inside
18428 an embedded LaTeX fragment, let texmathp do its job.
18429 \\[org-cdlatex-mode-map]"
18433 ((not (derived-mode-p 'org-mode)) ad-do-it)
18434 ((eq this-command 'cdlatex-math-symbol)
18435 (setq ad-return-value t
18436 texmathp-why '("cdlatex-math-symbol in org-mode" . 0)))
18438 (let ((p (org-inside-LaTeX-fragment-p)))
18439 (if (and p (member (car p) (plist-get org-format-latex-options :matchers)))
18440 (setq ad-return-value t
18441 texmathp-why '("Org-mode embedded math" . 0))
18442 (if p ad-do-it)))))))))
18444 (defun turn-on-org-cdlatex ()
18445 "Unconditionally turn on `org-cdlatex-mode'."
18446 (org-cdlatex-mode 1))
18448 (defun org-try-cdlatex-tab ()
18449 "Check if it makes sense to execute `cdlatex-tab', and do it if yes.
18450 It makes sense to do so if `org-cdlatex-mode' is active and if the cursor is
18451 - inside a LaTeX fragment, or
18452 - after the first word in a line, where an abbreviation expansion could
18453 insert a LaTeX environment."
18454 (when org-cdlatex-mode
18456 ;; Before any word on the line: No expansion possible.
18457 ((save-excursion (skip-chars-backward " \t") (bolp)) nil)
18458 ;; Just after first word on the line: Expand it. Make sure it
18459 ;; cannot happen on headlines, though.
18461 (skip-chars-backward "a-zA-Z0-9*")
18462 (skip-chars-backward " \t")
18463 (and (bolp) (not (org-at-heading-p))))
18465 ((org-inside-LaTeX-fragment-p) (cdlatex-tab) t))))
18467 (defun org-cdlatex-underscore-caret (&optional arg)
18468 "Execute `cdlatex-sub-superscript' in LaTeX fragments.
18469 Revert to the normal definition outside of these fragments."
18471 (if (org-inside-LaTeX-fragment-p)
18472 (call-interactively 'cdlatex-sub-superscript)
18473 (let (org-cdlatex-mode)
18474 (call-interactively (key-binding (vector last-input-event))))))
18476 (defun org-cdlatex-math-modify (&optional arg)
18477 "Execute `cdlatex-math-modify' in LaTeX fragments.
18478 Revert to the normal definition outside of these fragments."
18480 (if (org-inside-LaTeX-fragment-p)
18481 (call-interactively 'cdlatex-math-modify)
18482 (let (org-cdlatex-mode)
18483 (call-interactively (key-binding (vector last-input-event))))))
18487 ;;;; LaTeX fragments
18489 (defun org-inside-LaTeX-fragment-p ()
18490 "Test if point is inside a LaTeX fragment.
18491 I.e. after a \\begin, \\(, \\[, $, or $$, without the corresponding closing
18492 sequence appearing also before point.
18493 Even though the matchers for math are configurable, this function assumes
18494 that \\begin, \\(, \\[, and $$ are always used. Only the single dollar
18495 delimiters are skipped when they have been removed by customization.
18496 The return value is nil, or a cons cell with the delimiter and the
18497 position of this delimiter.
18499 This function does a reasonably good job, but can locally be fooled by
18500 for example currency specifications. For example it will assume being in
18501 inline math after \"$22.34\". The LaTeX fragment formatter will only format
18502 fragments that are properly closed, but during editing, we have to live
18503 with the uncertainty caused by missing closing delimiters. This function
18504 looks only before point, not after."
18506 (let ((pos (point))
18507 (dodollar (member "$" (plist-get org-format-latex-options :matchers)))
18509 (re-search-backward (concat "^\\(" paragraph-start "\\)") nil t)
18511 dd-on str (start 0) m re)
18514 (setq str (concat (buffer-substring lim (point)) "\000 X$.")
18515 re (nth 1 (assoc "$" org-latex-regexps)))
18516 (while (string-match re str start)
18518 ((= (match-end 0) (length str))
18519 (throw 'exit (cons "$" (+ lim (match-beginning 0) 1))))
18520 ((= (match-end 0) (- (length str) 5))
18522 (t (setq start (match-end 0))))))
18523 (when (setq m (re-search-backward "\\(\\\\begin{[^}]*}\\|\\\\(\\|\\\\\\[\\)\\|\\(\\\\end{[^}]*}\\|\\\\)\\|\\\\\\]\\)\\|\\(\\$\\$\\)" lim t))
18525 (and (match-beginning 1) (throw 'exit (cons (match-string 1) m)))
18526 (and (match-beginning 2) (throw 'exit nil))
18528 (while (re-search-backward "\\$\\$" lim t)
18529 (setq dd-on (not dd-on)))
18531 (if dd-on (cons "$$" m))))))
18533 (defun org-inside-latex-macro-p ()
18534 "Is point inside a LaTeX macro or its arguments?"
18537 "\\\\[a-zA-Z]+\\*?\\(\\(\\[[^][\n{}]*\\]\\)\\|\\({[^{}\n]*}\\)\\)*")))
18539 (defvar org-latex-fragment-image-overlays nil
18540 "List of overlays carrying the images of latex fragments.")
18541 (make-variable-buffer-local 'org-latex-fragment-image-overlays)
18543 (defun org-remove-latex-fragment-image-overlays ()
18544 "Remove all overlays with LaTeX fragment images in current buffer."
18545 (mapc 'delete-overlay org-latex-fragment-image-overlays)
18546 (setq org-latex-fragment-image-overlays nil))
18548 (defun org-preview-latex-fragment (&optional subtree)
18549 "Preview the LaTeX fragment at point, or all locally or globally.
18550 If the cursor is in a LaTeX fragment, create the image and overlay
18551 it over the source code. If there is no fragment at point, display
18552 all fragments in the current text, from one headline to the next. With
18553 prefix SUBTREE, display all fragments in the current subtree. With a
18554 double prefix arg \\[universal-argument] \\[universal-argument], or when \
18555 the cursor is before the first headline,
18556 display all fragments in the buffer.
18557 The images can be removed again with \\[org-ctrl-c-ctrl-c]."
18559 (unless buffer-file-name
18560 (user-error "Can't preview LaTeX fragment in a non-file buffer"))
18561 (when (display-graphic-p)
18562 (org-remove-latex-fragment-image-overlays)
18565 (let (beg end at msg)
18567 ((or (equal subtree '(16))
18568 (not (save-excursion
18569 (re-search-backward org-outline-regexp-bol nil t))))
18570 (setq beg (point-min) end (point-max)
18571 msg "Creating images for buffer...%s"))
18572 ((equal subtree '(4))
18573 (org-back-to-heading)
18574 (setq beg (point) end (org-end-of-subtree t)
18575 msg "Creating images for subtree...%s"))
18577 (if (setq at (org-inside-LaTeX-fragment-p))
18578 (goto-char (max (point-min) (- (cdr at) 2)))
18579 (org-back-to-heading))
18580 (setq beg (point) end (progn (outline-next-heading) (point))
18581 msg (if at "Creating image...%s"
18582 "Creating images for entry...%s"))))
18584 (narrow-to-region beg end)
18587 (concat org-latex-preview-ltxpng-directory (file-name-sans-extension
18588 (file-name-nondirectory
18589 buffer-file-name)))
18590 default-directory 'overlays msg at 'forbuffer
18591 org-latex-create-formula-image-program)
18592 (message msg "done. Use `C-c C-c' to remove images."))))))
18594 (defun org-format-latex (prefix &optional dir overlays msg at
18595 forbuffer processing-type)
18596 "Replace LaTeX fragments with links to an image, and produce images.
18597 Some of the options can be changed using the variable
18598 `org-format-latex-options'."
18599 (if (and overlays (fboundp 'clear-image-cache)) (clear-image-cache))
18600 (let* ((prefixnodir (file-name-nondirectory prefix))
18601 (absprefix (expand-file-name prefix dir))
18602 (todir (file-name-directory absprefix))
18603 (opt org-format-latex-options)
18604 (optnew org-format-latex-options)
18605 (matchers (plist-get opt :matchers))
18606 (re-list org-latex-regexps)
18607 (cnt 0) txt hash link beg end re e checkdir
18609 m n block-type block linkfile movefile ov)
18610 ;; Check the different regular expressions
18611 (while (setq e (pop re-list))
18612 (setq m (car e) re (nth 1 e) n (nth 2 e) block-type (nth 3 e)
18613 block (if block-type "\n\n" ""))
18614 (when (member m matchers)
18615 (goto-char (point-min))
18616 (while (re-search-forward re nil t)
18617 (when (and (or (not at) (equal (cdr at) (match-beginning n)))
18619 (not (eq (get-char-property (match-beginning n)
18621 'org-latex-overlay))))
18623 ((eq processing-type 'verbatim))
18624 ((eq processing-type 'mathjax)
18625 ;; Prepare for MathJax processing.
18626 (setq string (match-string n))
18627 (when (member m '("$" "$1"))
18629 (delete-region (match-beginning n) (match-end n))
18630 (goto-char (match-beginning n))
18631 (insert (concat "\\(" (substring string 1 -1) "\\)")))))
18632 ((or (eq processing-type 'dvipng)
18633 (eq processing-type 'imagemagick))
18634 ;; Process to an image.
18635 (setq txt (match-string n)
18636 beg (match-beginning n) end (match-end n)
18638 (let ((face (face-at-point))
18639 (fg (plist-get opt :foreground))
18640 (bg (plist-get opt :background))
18641 ;; Ensure full list is printed.
18642 print-length print-level)
18644 ;; Get the colors from the face at point.
18646 (when (eq fg 'auto)
18647 (setq fg (face-attribute face :foreground nil 'default)))
18648 (when (eq bg 'auto)
18649 (setq bg (face-attribute face :background nil 'default)))
18650 (setq optnew (copy-sequence opt))
18651 (plist-put optnew :foreground fg)
18652 (plist-put optnew :background bg))
18653 (setq hash (sha1 (prin1-to-string
18654 (list org-format-latex-header
18655 org-latex-default-packages-alist
18656 org-latex-packages-alist
18657 org-format-latex-options
18658 forbuffer txt fg bg)))
18659 linkfile (format "%s_%s.png" prefix hash)
18660 movefile (format "%s_%s.png" absprefix hash)))
18661 (setq link (concat block "[[file:" linkfile "]]" block))
18662 (if msg (message msg cnt))
18664 (unless checkdir ; Ensure the directory exists.
18666 (or (file-directory-p todir) (make-directory todir t)))
18667 (unless (file-exists-p movefile)
18668 (org-create-formula-image
18669 txt movefile optnew forbuffer processing-type))
18673 (if (eq (overlay-get o 'org-overlay-type)
18674 'org-latex-overlay)
18675 (delete-overlay o)))
18676 (overlays-in beg end))
18677 (setq ov (make-overlay beg end))
18678 (overlay-put ov 'org-overlay-type 'org-latex-overlay)
18679 (if (featurep 'xemacs)
18681 (overlay-put ov 'invisible t)
18684 (make-glyph (vector 'png :file movefile))))
18687 (list 'image :type 'png :file movefile :ascent 'center)))
18688 (push ov org-latex-fragment-image-overlays)
18690 (delete-region beg end)
18691 (insert (org-add-props link
18692 (list 'org-latex-src
18693 (replace-regexp-in-string
18695 'org-latex-src-embed-type
18696 (if block-type 'paragraph 'character))))))
18697 ((eq processing-type 'mathml)
18698 ;; Process to MathML
18699 (unless (save-match-data (org-format-latex-mathml-available-p))
18700 (user-error "LaTeX to MathML converter not configured"))
18701 (setq txt (match-string n)
18702 beg (match-beginning n) end (match-end n)
18704 (if msg (message msg cnt))
18706 (delete-region beg end)
18707 (insert (org-format-latex-as-mathml
18708 txt block-type prefix dir)))
18710 (error "Unknown conversion type %s for LaTeX fragments"
18711 processing-type)))))))))
18713 (defun org-create-math-formula (latex-frag &optional mathml-file)
18714 "Convert LATEX-FRAG to MathML and store it in MATHML-FILE.
18715 Use `org-latex-to-mathml-convert-command'. If the conversion is
18716 sucessful, return the portion between \"<math...> </math>\"
18717 elements otherwise return nil. When MATHML-FILE is specified,
18718 write the results in to that file. When invoked as an
18719 interactive command, prompt for LATEX-FRAG, with initial value
18720 set to the current active region and echo the results for user
18722 (interactive (list (let ((frag (when (org-region-active-p)
18723 (buffer-substring-no-properties
18724 (region-beginning) (region-end)))))
18725 (read-string "LaTeX Fragment: " frag nil frag))))
18726 (unless latex-frag (user-error "Invalid LaTeX fragment"))
18727 (let* ((tmp-in-file (file-relative-name
18728 (make-temp-name (expand-file-name "ltxmathml-in"))))
18729 (ignore (write-region latex-frag nil tmp-in-file))
18730 (tmp-out-file (file-relative-name
18731 (make-temp-name (expand-file-name "ltxmathml-out"))))
18733 org-latex-to-mathml-convert-command
18734 `((?j . ,(shell-quote-argument
18735 (expand-file-name org-latex-to-mathml-jar-file)))
18736 (?I . ,(shell-quote-argument tmp-in-file))
18737 (?o . ,(shell-quote-argument tmp-out-file)))))
18738 mathml shell-command-output)
18739 (when (org-called-interactively-p 'any)
18740 (unless (org-format-latex-mathml-available-p)
18741 (user-error "LaTeX to MathML converter not configured")))
18742 (message "Running %s" cmd)
18743 (setq shell-command-output (shell-command-to-string cmd))
18745 (when (file-readable-p tmp-out-file)
18746 (with-current-buffer (find-file-noselect tmp-out-file t)
18747 (goto-char (point-min))
18748 (when (re-search-forward
18751 "<math xmlns=\"http://www.w3.org/1998/Math/MathML\">")
18753 (regexp-quote "</math>")) nil t)
18754 (prog1 (match-string 0) (kill-buffer))))))
18758 (concat "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" mathml))
18760 (write-region mathml nil mathml-file))
18761 (when (org-called-interactively-p 'any)
18763 ((message "LaTeX to MathML conversion failed")
18764 (message shell-command-output)))
18765 (delete-file tmp-in-file)
18766 (when (file-exists-p tmp-out-file)
18767 (delete-file tmp-out-file))
18770 (defun org-format-latex-as-mathml (latex-frag latex-frag-type
18771 prefix &optional dir)
18772 "Use `org-create-math-formula' but check local cache first."
18773 (let* ((absprefix (expand-file-name prefix dir))
18774 (print-length nil) (print-level nil)
18775 (formula-id (concat
18780 org-latex-to-mathml-convert-command)))))
18781 (formula-cache (format "%s-%s.mathml" absprefix formula-id))
18782 (formula-cache-dir (file-name-directory formula-cache)))
18784 (unless (file-directory-p formula-cache-dir)
18785 (make-directory formula-cache-dir t))
18787 (unless (file-exists-p formula-cache)
18788 (org-create-math-formula latex-frag formula-cache))
18790 (if (file-exists-p formula-cache)
18791 ;; Successful conversion. Return the link to MathML file.
18793 (format "[[file:%s]]" (file-relative-name formula-cache dir))
18794 (list 'org-latex-src (replace-regexp-in-string "\"" "" latex-frag)
18795 'org-latex-src-embed-type (if latex-frag-type
18796 'paragraph 'character)))
18797 ;; Failed conversion. Return the LaTeX fragment verbatim
18800 (defun org-create-formula-image (string tofile options buffer &optional type)
18801 "Create an image from LaTeX source using dvipng or convert.
18802 This function calls either `org-create-formula-image-with-dvipng'
18803 or `org-create-formula-image-with-imagemagick' depending on the
18804 value of `org-latex-create-formula-image-program' or on the value
18805 of the optional TYPE variable.
18807 Note: ultimately these two function should be combined as they
18808 share a good deal of logic."
18809 (org-check-external-command
18810 "latex" "needed to convert LaTeX fragments to images")
18812 (case (or type org-latex-create-formula-image-program)
18814 (org-check-external-command
18815 "dvipng" "needed to convert LaTeX fragments to images")
18816 'org-create-formula-image-with-dvipng)
18818 (org-check-external-command
18819 "convert" "you need to install imagemagick")
18820 'org-create-formula-image-with-imagemagick)
18822 "Invalid value of `org-latex-create-formula-image-program'")))
18823 string tofile options buffer))
18825 (declare-function org-export-get-backend "ox" (name))
18826 (declare-function org-export--get-global-options "ox" (&optional backend))
18827 (declare-function org-export--get-inbuffer-options "ox" (&optional backend))
18828 (declare-function org-latex-guess-inputenc "ox-latex" (header))
18829 (declare-function org-latex-guess-babel-language "ox-latex" (header info))
18830 (defun org-create-formula--latex-header ()
18831 "Return LaTeX header appropriate for previewing a LaTeX snippet."
18832 (let ((info (org-combine-plists (org-export--get-global-options
18833 (org-export-get-backend 'latex))
18834 (org-export--get-inbuffer-options
18835 (org-export-get-backend 'latex)))))
18836 (org-latex-guess-babel-language
18837 (org-latex-guess-inputenc
18838 (org-splice-latex-header
18839 org-format-latex-header
18840 org-latex-default-packages-alist
18841 org-latex-packages-alist t
18842 (plist-get info :latex-header)))
18845 ;; This function borrows from Ganesh Swami's latex2png.el
18846 (defun org-create-formula-image-with-dvipng (string tofile options buffer)
18847 "This calls dvipng."
18848 (require 'ox-latex)
18849 (let* ((tmpdir (if (featurep 'xemacs)
18851 temporary-file-directory))
18852 (texfilebase (make-temp-name
18853 (expand-file-name "orgtex" tmpdir)))
18854 (texfile (concat texfilebase ".tex"))
18855 (dvifile (concat texfilebase ".dvi"))
18856 (pngfile (concat texfilebase ".png"))
18857 (fnh (if (featurep 'xemacs)
18858 (font-height (face-font 'default))
18859 (face-attribute 'default :height nil)))
18860 (scale (or (plist-get options (if buffer :scale :html-scale)) 1.0))
18861 (dpi (number-to-string (* scale (floor (* 0.9 (if buffer fnh 140.))))))
18862 (fg (or (plist-get options (if buffer :foreground :html-foreground))
18864 (bg (or (plist-get options (if buffer :background :html-background))
18866 (if (eq fg 'default) (setq fg (org-dvipng-color :foreground))
18867 (unless (string= fg "Transparent") (setq fg (org-dvipng-color-format fg))))
18868 (if (eq bg 'default) (setq bg (org-dvipng-color :background))
18869 (unless (string= bg "Transparent") (setq bg (org-dvipng-color-format bg))))
18870 (let ((latex-header (org-create-formula--latex-header)))
18871 (with-temp-file texfile
18872 (insert latex-header)
18873 (insert "\n\\begin{document}\n" string "\n\\end{document}\n")))
18874 (let ((dir default-directory))
18877 (call-process "latex" nil nil nil texfile))
18879 (if (not (file-exists-p dvifile))
18880 (progn (message "Failed to create dvi file from %s" texfile) nil)
18882 (if (featurep 'xemacs)
18883 (call-process "dvipng" nil nil nil
18888 (call-process "dvipng" nil nil nil
18891 ;;"-x" scale "-y" scale
18895 (if (not (file-exists-p pngfile))
18896 (if org-format-latex-signal-error
18897 (error "Failed to create png file from %s" texfile)
18898 (message "Failed to create png file from %s" texfile)
18900 ;; Use the requested file name and clean up
18901 (copy-file pngfile tofile 'replace)
18902 (loop for e in '(".dvi" ".tex" ".aux" ".log" ".png" ".out") do
18903 (if (file-exists-p (concat texfilebase e))
18904 (delete-file (concat texfilebase e))))
18907 (declare-function org-latex-compile "ox-latex" (texfile &optional snippet))
18908 (defun org-create-formula-image-with-imagemagick (string tofile options buffer)
18909 "This calls convert, which is included into imagemagick."
18910 (require 'ox-latex)
18911 (let* ((tmpdir (if (featurep 'xemacs)
18913 temporary-file-directory))
18914 (texfilebase (make-temp-name
18915 (expand-file-name "orgtex" tmpdir)))
18916 (texfile (concat texfilebase ".tex"))
18917 (pdffile (concat texfilebase ".pdf"))
18918 (pngfile (concat texfilebase ".png"))
18919 (fnh (if (featurep 'xemacs)
18920 (font-height (face-font 'default))
18921 (face-attribute 'default :height nil)))
18922 (scale (or (plist-get options (if buffer :scale :html-scale)) 1.0))
18923 (dpi (number-to-string (* scale (floor (if buffer fnh 120.)))))
18924 (fg (or (plist-get options (if buffer :foreground :html-foreground))
18926 (bg (or (plist-get options (if buffer :background :html-background))
18928 (if (eq fg 'default) (setq fg (org-latex-color :foreground))
18929 (setq fg (org-latex-color-format fg)))
18930 (if (eq bg 'default) (setq bg (org-latex-color :background))
18931 (setq bg (org-latex-color-format
18932 (if (string= bg "Transparent") "white" bg))))
18933 (let ((latex-header (org-create-formula--latex-header)))
18934 (with-temp-file texfile
18935 (insert latex-header)
18936 (insert "\n\\begin{document}\n"
18937 "\\definecolor{fg}{rgb}{" fg "}\n"
18938 "\\definecolor{bg}{rgb}{" bg "}\n"
18939 "\n\\pagecolor{bg}\n"
18943 "\n\\end{document}\n")))
18944 (org-latex-compile texfile t)
18945 (if (not (file-exists-p pdffile))
18946 (progn (message "Failed to create pdf file from %s" texfile) nil)
18948 (if (featurep 'xemacs)
18949 (call-process "convert" nil nil nil
18955 ;; "-sharpen" "0x1.0"
18957 (call-process "convert" nil nil nil
18963 ;; "-sharpen" "0x1.0"
18965 (if (not (file-exists-p pngfile))
18966 (if org-format-latex-signal-error
18967 (error "Failed to create png file from %s" texfile)
18968 (message "Failed to create png file from %s" texfile)
18970 ;; Use the requested file name and clean up
18971 (copy-file pngfile tofile 'replace)
18972 (loop for e in '(".pdf" ".tex" ".aux" ".log" ".png") do
18973 (if (file-exists-p (concat texfilebase e))
18974 (delete-file (concat texfilebase e))))
18977 (defun org-splice-latex-header (tpl def-pkg pkg snippets-p &optional extra)
18978 "Fill a LaTeX header template TPL.
18979 In the template, the following place holders will be recognized:
18981 [DEFAULT-PACKAGES] \\usepackage statements for DEF-PKG
18982 [NO-DEFAULT-PACKAGES] do not include DEF-PKG
18983 [PACKAGES] \\usepackage statements for PKG
18984 [NO-PACKAGES] do not include PKG
18985 [EXTRA] the string EXTRA
18986 [NO-EXTRA] do not include EXTRA
18988 For backward compatibility, if both the positive and the negative place
18989 holder is missing, the positive one (without the \"NO-\") will be
18990 assumed to be present at the end of the template.
18991 DEF-PKG and PKG are assumed to be alists of options/packagename lists.
18993 SNIPPETS-P indicates if this is run to create snippet images for HTML."
18994 (let (rpl (end ""))
18995 (if (string-match "^[ \t]*\\[\\(NO-\\)?DEFAULT-PACKAGES\\][ \t]*\n?" tpl)
18996 (setq rpl (if (or (match-end 1) (not def-pkg))
18997 "" (org-latex-packages-to-string def-pkg snippets-p t))
18998 tpl (replace-match rpl t t tpl))
18999 (if def-pkg (setq end (org-latex-packages-to-string def-pkg snippets-p))))
19001 (if (string-match "\\[\\(NO-\\)?PACKAGES\\][ \t]*\n?" tpl)
19002 (setq rpl (if (or (match-end 1) (not pkg))
19003 "" (org-latex-packages-to-string pkg snippets-p t))
19004 tpl (replace-match rpl t t tpl))
19007 (org-latex-packages-to-string pkg snippets-p)))))
19009 (if (string-match "\\[\\(NO-\\)?EXTRA\\][ \t]*\n?" tpl)
19010 (setq rpl (if (or (match-end 1) (not extra))
19011 "" (concat extra "\n"))
19012 tpl (replace-match rpl t t tpl))
19013 (if (and extra (string-match "\\S-" extra))
19014 (setq end (concat end "\n" extra))))
19016 (if (string-match "\\S-" end)
19017 (concat tpl "\n" end)
19020 (defun org-latex-packages-to-string (pkg &optional snippets-p newline)
19021 "Turn an alist of packages into a string with the \\usepackage macros."
19022 (setq pkg (mapconcat (lambda(p)
19025 ((and snippets-p (>= (length p) 3) (not (nth 2 p)))
19026 (format "%% Package %s omitted" (cadr p)))
19027 ((equal "" (car p))
19028 (format "\\usepackage{%s}" (cadr p)))
19030 (format "\\usepackage[%s]{%s}"
19031 (car p) (cadr p)))))
19034 (if newline (concat pkg "\n") pkg))
19036 (defun org-dvipng-color (attr)
19037 "Return a RGB color specification for dvipng."
19038 (apply 'format "rgb %s %s %s"
19039 (mapcar 'org-normalize-color
19040 (if (featurep 'xemacs)
19041 (color-rgb-components
19042 (face-property 'default
19043 (cond ((eq attr :foreground) 'foreground)
19044 ((eq attr :background) 'background))))
19045 (color-values (face-attribute 'default attr nil))))))
19047 (defun org-dvipng-color-format (color-name)
19048 "Convert COLOR-NAME to a RGB color value for dvipng."
19049 (apply 'format "rgb %s %s %s"
19050 (mapcar 'org-normalize-color
19051 (color-values color-name))))
19053 (defun org-latex-color (attr)
19054 "Return a RGB color for the LaTeX color package."
19055 (apply 'format "%s,%s,%s"
19056 (mapcar 'org-normalize-color
19057 (if (featurep 'xemacs)
19058 (color-rgb-components
19059 (face-property 'default
19060 (cond ((eq attr :foreground) 'foreground)
19061 ((eq attr :background) 'background))))
19062 (color-values (face-attribute 'default attr nil))))))
19064 (defun org-latex-color-format (color-name)
19065 "Convert COLOR-NAME to a RGB color value."
19066 (apply 'format "%s,%s,%s"
19067 (mapcar 'org-normalize-color
19068 (color-values color-name))))
19070 (defun org-normalize-color (value)
19071 "Return string to be used as color value for an RGB component."
19072 (format "%g" (/ value 65535.0)))
19078 (defvar org-inline-image-overlays nil)
19079 (make-variable-buffer-local 'org-inline-image-overlays)
19081 (defun org-toggle-inline-images (&optional include-linked)
19082 "Toggle the display of inline images.
19083 INCLUDE-LINKED is passed to `org-display-inline-images'."
19085 (if org-inline-image-overlays
19087 (org-remove-inline-images)
19088 (message "Inline image display turned off"))
19089 (org-display-inline-images include-linked)
19090 (if (and (org-called-interactively-p)
19091 org-inline-image-overlays)
19092 (message "%d images displayed inline"
19093 (length org-inline-image-overlays))
19094 (message "No images to display inline"))))
19096 (defun org-redisplay-inline-images ()
19097 "Refresh the display of inline images."
19099 (if (not org-inline-image-overlays)
19100 (org-toggle-inline-images)
19101 (org-toggle-inline-images)
19102 (org-toggle-inline-images)))
19104 (defun org-display-inline-images (&optional include-linked refresh beg end)
19105 "Display inline images.
19107 An inline image is a link which follows either of these
19110 1. Its path is a file with an extension matching return value
19111 from `image-file-name-regexp' and it has no contents.
19113 2. Its description consists in a single link of the previous
19116 When optional argument INCLUDE-LINKED is non-nil, also links with
19117 a text description part will be inlined. This can be nice for
19118 a quick look at those images, but it does not reflect what
19119 exported files will look like.
19121 When optional argument REFRESH is non-nil, refresh existing
19122 images between BEG and END. This will create new image displays
19123 only if necessary. BEG and END default to the buffer
19126 (when (display-graphic-p)
19128 (org-remove-inline-images)
19129 (when (fboundp 'clear-image-cache) (clear-image-cache)))
19130 (org-with-wide-buffer
19131 (goto-char (or beg (point-min)))
19132 (let ((case-fold-search t)
19133 (file-extension-re (org-image-file-name-regexp)))
19134 (while (re-search-forward "[][]\\[\\(?:file\\|[./~]\\)" end t)
19135 (let ((link (save-match-data (org-element-context))))
19136 ;; Check if we're at an inline image.
19137 (when (and (equal (org-element-property :type link) "file")
19139 (not (org-element-property :contents-begin link)))
19140 (let ((parent (org-element-property :parent link)))
19141 (or (not (eq (org-element-type parent) 'link))
19142 (not (cdr (org-element-contents parent)))))
19143 (org-string-match-p file-extension-re
19144 (org-element-property :path link)))
19145 (let ((file (expand-file-name (org-element-property :path link))))
19146 (when (file-exists-p file)
19148 ;; Apply `org-image-actual-width' specifications.
19150 ((not (image-type-available-p 'imagemagick)) nil)
19151 ((eq org-image-actual-width t) nil)
19152 ((listp org-image-actual-width)
19154 ;; First try to find a width among
19155 ;; attributes associated to the paragraph
19156 ;; containing link.
19159 (while (and (setq e (org-element-property
19161 (not (eq (org-element-type e)
19166 (goto-char (org-element-property :begin paragraph))
19167 (when (save-match-data
19169 "^[ \t]*#\\+attr_.*?: +.*?:width +\\(\\S-+\\)"
19170 (org-element-property
19171 :post-affiliated paragraph)
19173 (string-to-number (match-string 1))))))
19174 ;; Otherwise, fall-back to provided number.
19175 (car org-image-actual-width)))
19176 ((numberp org-image-actual-width)
19177 org-image-actual-width)))
19178 (old (get-char-property-and-overlay
19179 (org-element-property :begin link)
19180 'org-image-overlay)))
19181 (if (and (car-safe old) refresh)
19182 (image-refresh (overlay-get (cdr old) 'display))
19183 (let ((image (save-match-data
19185 (and width 'imagemagick)
19190 ;; If inline image is the description
19191 ;; of another link, be sure to
19192 ;; consider the latter as the one to
19193 ;; apply the overlay on.
19195 (org-element-property :parent link)))
19196 (if (eq (org-element-type parent) 'link)
19200 (org-element-property :begin link)
19203 (org-element-property :end link))
19204 (skip-chars-backward " \t")
19206 (overlay-put ov 'display image)
19207 (overlay-put ov 'face 'default)
19208 (overlay-put ov 'org-image-overlay t)
19210 ov 'modification-hooks
19211 (list 'org-display-inline-remove-overlay))
19212 (push ov org-inline-image-overlays)))))))))))))))
19214 (define-obsolete-function-alias
19215 'org-display-inline-modification-hook 'org-display-inline-remove-overlay "24.3")
19217 (defun org-display-inline-remove-overlay (ov after beg end &optional len)
19218 "Remove inline-display overlay if a corresponding region is modified."
19219 (let ((inhibit-modification-hooks t))
19220 (when (and ov after)
19221 (delete ov org-inline-image-overlays)
19222 (delete-overlay ov))))
19224 (defun org-remove-inline-images ()
19225 "Remove inline display of images."
19227 (mapc 'delete-overlay org-inline-image-overlays)
19228 (setq org-inline-image-overlays nil))
19232 ;; Outline functions from `outline-mode-prefix-map'
19233 ;; that can be remapped in Org:
19234 (define-key org-mode-map [remap outline-mark-subtree] 'org-mark-subtree)
19235 (define-key org-mode-map [remap show-subtree] 'org-show-subtree)
19236 (define-key org-mode-map [remap outline-forward-same-level]
19237 'org-forward-heading-same-level)
19238 (define-key org-mode-map [remap outline-backward-same-level]
19239 'org-backward-heading-same-level)
19240 (define-key org-mode-map [remap show-branches]
19241 'org-kill-note-or-show-branches)
19242 (define-key org-mode-map [remap outline-promote] 'org-promote-subtree)
19243 (define-key org-mode-map [remap outline-demote] 'org-demote-subtree)
19244 (define-key org-mode-map [remap outline-insert-heading] 'org-ctrl-c-ret)
19246 ;; Outline functions from `outline-mode-prefix-map' that can not
19247 ;; be remapped in Org:
19249 ;; - the column "key binding" shows whether the Outline function is still
19250 ;; available in Org mode on the same key that it has been bound to in
19252 ;; - "overridden": key used for a different functionality in Org mode
19253 ;; - else: key still bound to the same Outline function in Org mode
19255 ;; | Outline function | key binding | Org replacement |
19256 ;; |------------------------------------+-------------+-----------------------|
19257 ;; | `outline-next-visible-heading' | `C-c C-n' | still same function |
19258 ;; | `outline-previous-visible-heading' | `C-c C-p' | still same function |
19259 ;; | `outline-up-heading' | `C-c C-u' | still same function |
19260 ;; | `outline-move-subtree-up' | overridden | better: org-shiftup |
19261 ;; | `outline-move-subtree-down' | overridden | better: org-shiftdown |
19262 ;; | `show-entry' | overridden | no replacement |
19263 ;; | `show-children' | `C-c C-i' | visibility cycling |
19264 ;; | `show-branches' | `C-c C-k' | still same function |
19265 ;; | `show-subtree' | overridden | visibility cycling |
19266 ;; | `show-all' | overridden | no replacement |
19267 ;; | `hide-subtree' | overridden | visibility cycling |
19268 ;; | `hide-body' | overridden | no replacement |
19269 ;; | `hide-entry' | overridden | visibility cycling |
19270 ;; | `hide-leaves' | overridden | no replacement |
19271 ;; | `hide-sublevels' | overridden | no replacement |
19272 ;; | `hide-other' | overridden | no replacement |
19274 ;; Make `C-c C-x' a prefix key
19275 (org-defkey org-mode-map "\C-c\C-x" (make-sparse-keymap))
19277 ;; TAB key with modifiers
19278 (org-defkey org-mode-map "\C-i" 'org-cycle)
19279 (org-defkey org-mode-map [(tab)] 'org-cycle)
19280 (org-defkey org-mode-map [(control tab)] 'org-force-cycle-archived)
19281 (org-defkey org-mode-map "\M-\t" 'pcomplete)
19282 ;; The following line is necessary under Suse GNU/Linux
19283 (unless (featurep 'xemacs)
19284 (org-defkey org-mode-map [S-iso-lefttab] 'org-shifttab))
19285 (org-defkey org-mode-map [(shift tab)] 'org-shifttab)
19286 (define-key org-mode-map [backtab] 'org-shifttab)
19288 (org-defkey org-mode-map [(shift return)] 'org-table-copy-down)
19289 (org-defkey org-mode-map [(meta shift return)] 'org-insert-todo-heading)
19290 (org-defkey org-mode-map [(meta return)] 'org-meta-return)
19292 ;; Cursor keys with modifiers
19293 (org-defkey org-mode-map [(meta left)] 'org-metaleft)
19294 (org-defkey org-mode-map [(meta right)] 'org-metaright)
19295 (org-defkey org-mode-map [(meta up)] 'org-metaup)
19296 (org-defkey org-mode-map [(meta down)] 'org-metadown)
19298 (org-defkey org-mode-map [(control meta shift right)] 'org-increase-number-at-point)
19299 (org-defkey org-mode-map [(control meta shift left)] 'org-decrease-number-at-point)
19300 (org-defkey org-mode-map [(meta shift left)] 'org-shiftmetaleft)
19301 (org-defkey org-mode-map [(meta shift right)] 'org-shiftmetaright)
19302 (org-defkey org-mode-map [(meta shift up)] 'org-shiftmetaup)
19303 (org-defkey org-mode-map [(meta shift down)] 'org-shiftmetadown)
19305 (org-defkey org-mode-map [(shift up)] 'org-shiftup)
19306 (org-defkey org-mode-map [(shift down)] 'org-shiftdown)
19307 (org-defkey org-mode-map [(shift left)] 'org-shiftleft)
19308 (org-defkey org-mode-map [(shift right)] 'org-shiftright)
19310 (org-defkey org-mode-map [(control shift right)] 'org-shiftcontrolright)
19311 (org-defkey org-mode-map [(control shift left)] 'org-shiftcontrolleft)
19312 (org-defkey org-mode-map [(control shift up)] 'org-shiftcontrolup)
19313 (org-defkey org-mode-map [(control shift down)] 'org-shiftcontroldown)
19316 (define-key org-mode-map org-babel-key-prefix org-babel-map)
19317 (mapc (lambda (pair)
19318 (define-key org-babel-map (car pair) (cdr pair)))
19319 org-babel-key-bindings)
19321 ;;; Extra keys for tty access.
19322 ;; We only set them when really needed because otherwise the
19323 ;; menus don't show the simple keys
19325 (when (or org-use-extra-keys
19326 (featurep 'xemacs) ;; because XEmacs supports multi-device stuff
19327 (not window-system))
19328 (org-defkey org-mode-map "\C-c\C-xc" 'org-table-copy-down)
19329 (org-defkey org-mode-map "\C-c\C-xM" 'org-insert-todo-heading)
19330 (org-defkey org-mode-map "\C-c\C-xm" 'org-meta-return)
19331 (org-defkey org-mode-map [?\e (return)] 'org-meta-return)
19332 (org-defkey org-mode-map [?\e (left)] 'org-metaleft)
19333 (org-defkey org-mode-map "\C-c\C-xl" 'org-metaleft)
19334 (org-defkey org-mode-map [?\e (right)] 'org-metaright)
19335 (org-defkey org-mode-map "\C-c\C-xr" 'org-metaright)
19336 (org-defkey org-mode-map [?\e (up)] 'org-metaup)
19337 (org-defkey org-mode-map "\C-c\C-xu" 'org-metaup)
19338 (org-defkey org-mode-map [?\e (down)] 'org-metadown)
19339 (org-defkey org-mode-map "\C-c\C-xd" 'org-metadown)
19340 (org-defkey org-mode-map "\C-c\C-xL" 'org-shiftmetaleft)
19341 (org-defkey org-mode-map "\C-c\C-xR" 'org-shiftmetaright)
19342 (org-defkey org-mode-map "\C-c\C-xU" 'org-shiftmetaup)
19343 (org-defkey org-mode-map "\C-c\C-xD" 'org-shiftmetadown)
19344 (org-defkey org-mode-map [?\C-c (up)] 'org-shiftup)
19345 (org-defkey org-mode-map [?\C-c (down)] 'org-shiftdown)
19346 (org-defkey org-mode-map [?\C-c (left)] 'org-shiftleft)
19347 (org-defkey org-mode-map [?\C-c (right)] 'org-shiftright)
19348 (org-defkey org-mode-map [?\C-c ?\C-x (right)] 'org-shiftcontrolright)
19349 (org-defkey org-mode-map [?\C-c ?\C-x (left)] 'org-shiftcontrolleft)
19350 (org-defkey org-mode-map [?\e (tab)] 'pcomplete)
19351 (org-defkey org-mode-map [?\e (shift return)] 'org-insert-todo-heading)
19352 (org-defkey org-mode-map [?\e (shift left)] 'org-shiftmetaleft)
19353 (org-defkey org-mode-map [?\e (shift right)] 'org-shiftmetaright)
19354 (org-defkey org-mode-map [?\e (shift up)] 'org-shiftmetaup)
19355 (org-defkey org-mode-map [?\e (shift down)] 'org-shiftmetadown))
19357 ;; All the other keys
19359 (org-defkey org-mode-map "\C-c\C-a" 'show-all) ; in case allout messed up.
19360 (org-defkey org-mode-map "\C-c\C-r" 'org-reveal)
19361 (if (boundp 'narrow-map)
19362 (org-defkey narrow-map "s" 'org-narrow-to-subtree)
19363 (org-defkey org-mode-map "\C-xns" 'org-narrow-to-subtree))
19364 (if (boundp 'narrow-map)
19365 (org-defkey narrow-map "b" 'org-narrow-to-block)
19366 (org-defkey org-mode-map "\C-xnb" 'org-narrow-to-block))
19367 (if (boundp 'narrow-map)
19368 (org-defkey narrow-map "e" 'org-narrow-to-element)
19369 (org-defkey org-mode-map "\C-xne" 'org-narrow-to-element))
19370 (org-defkey org-mode-map "\C-\M-t" 'org-transpose-element)
19371 (org-defkey org-mode-map "\M-}" 'org-forward-element)
19372 (org-defkey org-mode-map "\M-{" 'org-backward-element)
19373 (org-defkey org-mode-map "\C-c\C-^" 'org-up-element)
19374 (org-defkey org-mode-map "\C-c\C-_" 'org-down-element)
19375 (org-defkey org-mode-map "\C-c\C-f" 'org-forward-heading-same-level)
19376 (org-defkey org-mode-map "\C-c\C-b" 'org-backward-heading-same-level)
19377 (org-defkey org-mode-map "\C-c\M-f" 'org-next-block)
19378 (org-defkey org-mode-map "\C-c\M-b" 'org-previous-block)
19379 (org-defkey org-mode-map "\C-c$" 'org-archive-subtree)
19380 (org-defkey org-mode-map "\C-c\C-x\C-s" 'org-advertized-archive-subtree)
19381 (org-defkey org-mode-map "\C-c\C-x\C-a" 'org-archive-subtree-default)
19382 (org-defkey org-mode-map "\C-c\C-xd" 'org-insert-drawer)
19383 (org-defkey org-mode-map "\C-c\C-xa" 'org-toggle-archive-tag)
19384 (org-defkey org-mode-map "\C-c\C-xA" 'org-archive-to-archive-sibling)
19385 (org-defkey org-mode-map "\C-c\C-xb" 'org-tree-to-indirect-buffer)
19386 (org-defkey org-mode-map "\C-c\C-xq" 'org-toggle-tags-groups)
19387 (org-defkey org-mode-map "\C-c\C-j" 'org-goto)
19388 (org-defkey org-mode-map "\C-c\C-t" 'org-todo)
19389 (org-defkey org-mode-map "\C-c\C-q" 'org-set-tags-command)
19390 (org-defkey org-mode-map "\C-c\C-s" 'org-schedule)
19391 (org-defkey org-mode-map "\C-c\C-d" 'org-deadline)
19392 (org-defkey org-mode-map "\C-c;" 'org-toggle-comment)
19393 (org-defkey org-mode-map "\C-c\C-w" 'org-refile)
19394 (org-defkey org-mode-map "\C-c\M-w" 'org-copy)
19395 (org-defkey org-mode-map "\C-c/" 'org-sparse-tree) ; Minor-mode reserved
19396 (org-defkey org-mode-map "\C-c\\" 'org-match-sparse-tree) ; Minor-mode res.
19397 (org-defkey org-mode-map "\C-c\C-m" 'org-ctrl-c-ret)
19398 (org-defkey org-mode-map "\M-\C-m" 'org-insert-heading)
19399 (org-defkey org-mode-map "\C-c\C-xc" 'org-clone-subtree-with-time-shift)
19400 (org-defkey org-mode-map "\C-c\C-xv" 'org-copy-visible)
19401 (org-defkey org-mode-map [(control return)] 'org-insert-heading-respect-content)
19402 (org-defkey org-mode-map [(shift control return)] 'org-insert-todo-heading-respect-content)
19403 (org-defkey org-mode-map "\C-c\C-x\C-n" 'org-next-link)
19404 (org-defkey org-mode-map "\C-c\C-x\C-p" 'org-previous-link)
19405 (org-defkey org-mode-map "\C-c\C-l" 'org-insert-link)
19406 (org-defkey org-mode-map "\C-c\M-l" 'org-insert-last-stored-link)
19407 (org-defkey org-mode-map "\C-c\C-\M-l" 'org-insert-all-links)
19408 (org-defkey org-mode-map "\C-c\C-o" 'org-open-at-point)
19409 (org-defkey org-mode-map "\C-c%" 'org-mark-ring-push)
19410 (org-defkey org-mode-map "\C-c&" 'org-mark-ring-goto)
19411 (org-defkey org-mode-map "\C-c\C-z" 'org-add-note) ; Alternative binding
19412 (org-defkey org-mode-map "\C-c." 'org-time-stamp) ; Minor-mode reserved
19413 (org-defkey org-mode-map "\C-c!" 'org-time-stamp-inactive) ; Minor-mode r.
19414 (org-defkey org-mode-map "\C-c," 'org-priority) ; Minor-mode reserved
19415 (org-defkey org-mode-map "\C-c\C-y" 'org-evaluate-time-range)
19416 (org-defkey org-mode-map "\C-c>" 'org-goto-calendar)
19417 (org-defkey org-mode-map "\C-c<" 'org-date-from-calendar)
19418 (org-defkey org-mode-map [(control ?,)] 'org-cycle-agenda-files)
19419 (org-defkey org-mode-map [(control ?\')] 'org-cycle-agenda-files)
19420 (org-defkey org-mode-map "\C-c[" 'org-agenda-file-to-front)
19421 (org-defkey org-mode-map "\C-c]" 'org-remove-file)
19422 (org-defkey org-mode-map "\C-c\C-x<" 'org-agenda-set-restriction-lock)
19423 (org-defkey org-mode-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
19424 (org-defkey org-mode-map "\C-c-" 'org-ctrl-c-minus)
19425 (org-defkey org-mode-map "\C-c*" 'org-ctrl-c-star)
19426 (org-defkey org-mode-map "\C-c^" 'org-sort)
19427 (org-defkey org-mode-map "\C-c\C-c" 'org-ctrl-c-ctrl-c)
19428 (org-defkey org-mode-map "\C-c\C-k" 'org-kill-note-or-show-branches)
19429 (org-defkey org-mode-map "\C-c#" 'org-update-statistics-cookies)
19430 (org-defkey org-mode-map [remap open-line] 'org-open-line)
19431 (org-defkey org-mode-map [remap comment-dwim] 'org-comment-dwim)
19432 (org-defkey org-mode-map [remap forward-paragraph] 'org-forward-paragraph)
19433 (org-defkey org-mode-map [remap backward-paragraph] 'org-backward-paragraph)
19434 (org-defkey org-mode-map "\C-m" 'org-return)
19435 (org-defkey org-mode-map "\C-j" 'org-return-indent)
19436 (org-defkey org-mode-map "\C-c?" 'org-table-field-info)
19437 (org-defkey org-mode-map "\C-c " 'org-table-blank-field)
19438 (org-defkey org-mode-map "\C-c+" 'org-table-sum)
19439 (org-defkey org-mode-map "\C-c=" 'org-table-eval-formula)
19440 (org-defkey org-mode-map "\C-c'" 'org-edit-special)
19441 (org-defkey org-mode-map "\C-c`" 'org-table-edit-field)
19442 (org-defkey org-mode-map "\C-c|" 'org-table-create-or-convert-from-region)
19443 (org-defkey org-mode-map [(control ?#)] 'org-table-rotate-recalc-marks)
19444 (org-defkey org-mode-map "\C-c~" 'org-table-create-with-table.el)
19445 (org-defkey org-mode-map "\C-c\C-a" 'org-attach)
19446 (org-defkey org-mode-map "\C-c}" 'org-table-toggle-coordinate-overlays)
19447 (org-defkey org-mode-map "\C-c{" 'org-table-toggle-formula-debugger)
19448 (org-defkey org-mode-map "\C-c\C-e" 'org-export-dispatch)
19449 (org-defkey org-mode-map "\C-c:" 'org-toggle-fixed-width)
19450 (org-defkey org-mode-map "\C-c\C-x\C-f" 'org-emphasize)
19451 (org-defkey org-mode-map "\C-c\C-xf" 'org-footnote-action)
19452 (org-defkey org-mode-map "\C-c\C-x\C-mg" 'org-mobile-pull)
19453 (org-defkey org-mode-map "\C-c\C-x\C-mp" 'org-mobile-push)
19454 (org-defkey org-mode-map "\C-c@" 'org-mark-subtree)
19455 (org-defkey org-mode-map "\M-h" 'org-mark-element)
19456 (org-defkey org-mode-map [?\C-c (control ?*)] 'org-list-make-subtree)
19457 ;;(org-defkey org-mode-map [?\C-c (control ?-)] 'org-list-make-list-from-subtree)
19459 (org-defkey org-mode-map "\C-c\C-x\C-w" 'org-cut-special)
19460 (org-defkey org-mode-map "\C-c\C-x\M-w" 'org-copy-special)
19461 (org-defkey org-mode-map "\C-c\C-x\C-y" 'org-paste-special)
19463 (org-defkey org-mode-map "\C-c\C-x\C-t" 'org-toggle-time-stamp-overlays)
19464 (org-defkey org-mode-map "\C-c\C-x\C-i" 'org-clock-in)
19465 (org-defkey org-mode-map "\C-c\C-x\C-x" 'org-clock-in-last)
19466 (org-defkey org-mode-map "\C-c\C-x\C-z" 'org-resolve-clocks)
19467 (org-defkey org-mode-map "\C-c\C-x\C-o" 'org-clock-out)
19468 (org-defkey org-mode-map "\C-c\C-x\C-j" 'org-clock-goto)
19469 (org-defkey org-mode-map "\C-c\C-x\C-q" 'org-clock-cancel)
19470 (org-defkey org-mode-map "\C-c\C-x\C-d" 'org-clock-display)
19471 (org-defkey org-mode-map "\C-c\C-x\C-r" 'org-clock-report)
19472 (org-defkey org-mode-map "\C-c\C-x\C-u" 'org-dblock-update)
19473 (org-defkey org-mode-map "\C-c\C-x\C-l" 'org-preview-latex-fragment)
19474 (org-defkey org-mode-map "\C-c\C-x\C-v" 'org-toggle-inline-images)
19475 (org-defkey org-mode-map "\C-c\C-x\C-\M-v" 'org-redisplay-inline-images)
19476 (org-defkey org-mode-map "\C-c\C-x\\" 'org-toggle-pretty-entities)
19477 (org-defkey org-mode-map "\C-c\C-x\C-b" 'org-toggle-checkbox)
19478 (org-defkey org-mode-map "\C-c\C-xp" 'org-set-property)
19479 (org-defkey org-mode-map "\C-c\C-xP" 'org-set-property-and-value)
19480 (org-defkey org-mode-map "\C-c\C-xe" 'org-set-effort)
19481 (org-defkey org-mode-map "\C-c\C-xE" 'org-inc-effort)
19482 (org-defkey org-mode-map "\C-c\C-xo" 'org-toggle-ordered-property)
19483 (org-defkey org-mode-map "\C-c\C-xi" 'org-insert-columns-dblock)
19484 (org-defkey org-mode-map [(control ?c) (control ?x) ?\;] 'org-timer-set-timer)
19485 (org-defkey org-mode-map [(control ?c) (control ?x) ?\:] 'org-timer-cancel-timer)
19487 (org-defkey org-mode-map "\C-c\C-x." 'org-timer)
19488 (org-defkey org-mode-map "\C-c\C-x-" 'org-timer-item)
19489 (org-defkey org-mode-map "\C-c\C-x0" 'org-timer-start)
19490 (org-defkey org-mode-map "\C-c\C-x_" 'org-timer-stop)
19491 (org-defkey org-mode-map "\C-c\C-x," 'org-timer-pause-or-continue)
19493 (define-key org-mode-map "\C-c\C-x\C-c" 'org-columns)
19495 (define-key org-mode-map "\C-c\C-x!" 'org-reload)
19497 (define-key org-mode-map "\C-c\C-xg" 'org-feed-update-all)
19498 (define-key org-mode-map "\C-c\C-xG" 'org-feed-goto-inbox)
19500 (define-key org-mode-map "\C-c\C-x[" 'org-reftex-citation)
19503 (when (featurep 'xemacs)
19504 (org-defkey org-mode-map 'button3 'popup-mode-menu))
19507 (defconst org-speed-commands-default
19509 ("Outline Navigation")
19510 ("n" . (org-speed-move-safe 'outline-next-visible-heading))
19511 ("p" . (org-speed-move-safe 'outline-previous-visible-heading))
19512 ("f" . (org-speed-move-safe 'org-forward-heading-same-level))
19513 ("b" . (org-speed-move-safe 'org-backward-heading-same-level))
19514 ("F" . org-next-block)
19515 ("B" . org-previous-block)
19516 ("u" . (org-speed-move-safe 'outline-up-heading))
19518 ("g" . (org-refile t))
19519 ("Outline Visibility")
19521 ("C" . org-shifttab)
19522 (" " . org-display-outline-path)
19523 ("s" . org-narrow-to-subtree)
19524 ("=" . org-columns)
19525 ("Outline Structure Editing")
19526 ("U" . org-shiftmetaup)
19527 ("D" . org-shiftmetadown)
19528 ("r" . org-metaright)
19529 ("l" . org-metaleft)
19530 ("R" . org-shiftmetaright)
19531 ("L" . org-shiftmetaleft)
19532 ("i" . (progn (forward-char 1) (call-interactively
19533 'org-insert-heading-respect-content)))
19536 ("a" . org-archive-subtree-default-with-confirmation)
19537 ("@" . org-mark-subtree)
19538 ("#" . org-toggle-comment)
19540 ("I" . org-clock-in)
19541 ("O" . org-clock-out)
19542 ("Meta Data Editing")
19544 ("," . (org-priority))
19545 ("0" . (org-priority ?\ ))
19546 ("1" . (org-priority ?A))
19547 ("2" . (org-priority ?B))
19548 ("3" . (org-priority ?C))
19549 (":" . org-set-tags-command)
19550 ("e" . org-set-effort)
19551 ("E" . org-inc-effort)
19552 ("W" . (lambda(m) (interactive "sMinutes before warning: ")
19553 (org-entry-put (point) "APPT_WARNTIME" m)))
19554 ("Agenda Views etc")
19556 ("/" . org-sparse-tree)
19558 ("o" . org-open-at-point)
19559 ("?" . org-speed-command-help)
19560 ("<" . (org-agenda-set-restriction-lock 'subtree))
19561 (">" . (org-agenda-remove-restriction-lock))
19563 "The default speed commands.")
19565 (defun org-print-speed-command (e)
19566 (if (> (length (car e)) 1)
19571 (princ (make-string (length (car e)) ?-))
19575 (if (symbolp (cdr e))
19576 (princ (symbol-name (cdr e)))
19580 (defun org-speed-command-help ()
19581 "Show the available speed commands."
19583 (if (not org-use-speed-commands)
19584 (user-error "Speed commands are not activated, customize `org-use-speed-commands'")
19585 (with-output-to-temp-buffer "*Help*"
19586 (princ "User-defined Speed commands\n===========================\n")
19587 (mapc 'org-print-speed-command org-speed-commands-user)
19589 (princ "Built-in Speed commands\n=======================\n")
19590 (mapc 'org-print-speed-command org-speed-commands-default))
19591 (with-current-buffer "*Help*"
19592 (setq truncate-lines t))))
19594 (defun org-speed-move-safe (cmd)
19595 "Execute CMD, but make sure that the cursor always ends up in a headline.
19596 If not, return to the original position and throw an error."
19598 (let ((pos (point)))
19599 (call-interactively cmd)
19600 (unless (and (bolp) (org-at-heading-p))
19602 (error "Boundary reached while executing %s" cmd))))
19604 (defvar org-self-insert-command-undo-counter 0)
19606 (defvar org-table-auto-blank-field) ; defined in org-table.el
19607 (defvar org-speed-command nil)
19609 (define-obsolete-function-alias
19610 'org-speed-command-default-hook 'org-speed-command-activate "24.3")
19612 (defun org-speed-command-activate (keys)
19613 "Hook for activating single-letter speed commands.
19614 `org-speed-commands-default' specifies a minimal command set.
19615 Use `org-speed-commands-user' for further customization."
19616 (when (or (and (bolp) (looking-at org-outline-regexp))
19617 (and (functionp org-use-speed-commands)
19618 (funcall org-use-speed-commands)))
19619 (cdr (assoc keys (append org-speed-commands-user
19620 org-speed-commands-default)))))
19622 (define-obsolete-function-alias
19623 'org-babel-speed-command-hook 'org-babel-speed-command-activate "24.3")
19625 (defun org-babel-speed-command-activate (keys)
19626 "Hook for activating single-letter code block commands."
19627 (when (and (bolp) (looking-at org-babel-src-block-regexp))
19628 (cdr (assoc keys org-babel-key-bindings))))
19630 (defcustom org-speed-command-hook
19631 '(org-speed-command-default-hook org-babel-speed-command-hook)
19632 "Hook for activating speed commands at strategic locations.
19633 Hook functions are called in sequence until a valid handler is
19636 Each hook takes a single argument, a user-pressed command key
19637 which is also a `self-insert-command' from the global map.
19639 Within the hook, examine the cursor position and the command key
19640 and return nil or a valid handler as appropriate. Handler could
19641 be one of an interactive command, a function, or a form.
19643 Set `org-use-speed-commands' to non-nil value to enable this
19644 hook. The default setting is `org-speed-command-activate'."
19645 :group 'org-structure
19649 (defun org-self-insert-command (N)
19650 "Like `self-insert-command', use overwrite-mode for whitespace in tables.
19651 If the cursor is in a table looking at whitespace, the whitespace is
19652 overwritten, and the table is not marked as requiring realignment."
19654 (org-check-before-invisible-edit 'insert)
19656 ((and org-use-speed-commands
19657 (setq org-speed-command
19658 (run-hook-with-args-until-success
19659 'org-speed-command-hook (this-command-keys))))
19661 ((commandp org-speed-command)
19662 (setq this-command org-speed-command)
19663 (call-interactively org-speed-command))
19664 ((functionp org-speed-command)
19665 (funcall org-speed-command))
19666 ((and org-speed-command (listp org-speed-command))
19667 (eval org-speed-command))
19668 (t (let (org-use-speed-commands)
19669 (call-interactively 'org-self-insert-command)))))
19673 ;; check if we blank the field, and if that triggers align
19674 (and (featurep 'org-table) org-table-auto-blank-field
19675 (member last-command
19676 '(org-cycle org-return org-shifttab org-ctrl-c-ctrl-c yas/expand))
19677 (if (or (equal (char-after) ?\ ) (looking-at "[^|\n]* |"))
19678 ;; got extra space, this field does not determine column width
19679 (let (org-table-may-need-update) (org-table-blank-field))
19680 ;; no extra space, this field may determine column width
19681 (org-table-blank-field)))
19684 (looking-at "[^|\n]* |"))
19685 (let (org-table-may-need-update)
19686 (goto-char (1- (match-end 0)))
19687 (backward-delete-char 1)
19688 (goto-char (match-beginning 0))
19689 (self-insert-command N)))
19691 (setq org-table-may-need-update t)
19692 (self-insert-command N)
19693 (org-fix-tags-on-the-fly)
19694 (if org-self-insert-cluster-for-undo
19695 (if (not (eq last-command 'org-self-insert-command))
19696 (setq org-self-insert-command-undo-counter 1)
19697 (if (>= org-self-insert-command-undo-counter 20)
19698 (setq org-self-insert-command-undo-counter 1)
19699 (and (> org-self-insert-command-undo-counter 0)
19700 buffer-undo-list (listp buffer-undo-list)
19701 (not (cadr buffer-undo-list)) ; remove nil entry
19702 (setcdr buffer-undo-list (cddr buffer-undo-list)))
19703 (setq org-self-insert-command-undo-counter
19704 (1+ org-self-insert-command-undo-counter))))))))
19706 (defun org-check-before-invisible-edit (kind)
19707 "Check is editing if kind KIND would be dangerous with invisible text around.
19708 The detailed reaction depends on the user option `org-catch-invisible-edits'."
19709 ;; First, try to get out of here as quickly as possible, to reduce overhead
19710 (if (and org-catch-invisible-edits
19711 (or (not (boundp 'visible-mode)) (not visible-mode))
19712 (or (get-char-property (point) 'invisible)
19713 (get-char-property (max (point-min) (1- (point))) 'invisible)))
19714 ;; OK, we need to take a closer look
19715 (let* ((invisible-at-point (get-char-property (point) 'invisible))
19716 (invisible-before-point (if (bobp) nil (get-char-property
19717 (1- (point)) 'invisible)))
19718 (border-and-ok-direction
19720 ;; Check if we are acting predictably before invisible text
19721 (and invisible-at-point (not invisible-before-point)
19722 (memq kind '(insert delete-backward)))
19723 ;; Check if we are acting predictably after invisible text
19724 ;; This works not well, and I have turned it off. It seems
19725 ;; better to always show and stop after invisible text.
19726 ;; (and (not invisible-at-point) invisible-before-point
19727 ;; (memq kind '(insert delete)))
19729 (when (or (memq invisible-at-point '(outline org-hide-block t))
19730 (memq invisible-before-point '(outline org-hide-block t)))
19731 (if (eq org-catch-invisible-edits 'error)
19732 (user-error "Editing in invisible areas is prohibited, make them visible first"))
19733 (if (and org-custom-properties-overlays
19734 (y-or-n-p "Display invisible properties in this buffer? "))
19735 (org-toggle-custom-properties-visibility)
19736 ;; Make the area visible
19738 (if invisible-before-point
19739 (goto-char (previous-single-char-property-change
19740 (point) 'invisible)))
19743 ((eq org-catch-invisible-edits 'show)
19744 ;; That's it, we do the edit after showing
19746 "Unfolding invisible region around point before editing")
19748 ((and (eq org-catch-invisible-edits 'smart)
19749 border-and-ok-direction)
19750 (message "Unfolding invisible region around point before editing"))
19752 ;; Don't do the edit, make the user repeat it in full visibility
19753 (user-error "Edit in invisible region aborted, repeat to confirm with text visible"))))))))
19755 (defun org-fix-tags-on-the-fly ()
19756 (when (and (equal (char-after (point-at-bol)) ?*)
19757 (org-at-heading-p))
19758 (org-align-tags-here org-tags-column)))
19760 (defun org-delete-backward-char (N)
19761 "Like `delete-backward-char', insert whitespace at field end in tables.
19762 When deleting backwards, in tables this function will insert whitespace in
19763 front of the next \"|\" separator, to keep the table aligned. The table will
19764 still be marked for re-alignment if the field did fill the entire column,
19765 because, in this case the deletion might narrow the column."
19768 (org-check-before-invisible-edit 'delete-backward)
19769 (if (and (org-table-p)
19771 (string-match "|" (buffer-substring (point-at-bol) (point)))
19772 (looking-at ".*?|"))
19773 (let ((pos (point))
19774 (noalign (looking-at "[^|\n\r]* |"))
19775 (c org-table-may-need-update))
19776 (backward-delete-char N)
19777 (if (not overwrite-mode)
19779 (skip-chars-forward "^|")
19781 (goto-char (1- pos))))
19782 ;; noalign: if there were two spaces at the end, this field
19783 ;; does not determine the width of the column.
19784 (if noalign (setq org-table-may-need-update c)))
19785 (backward-delete-char N)
19786 (org-fix-tags-on-the-fly))))
19788 (defun org-delete-char (N)
19789 "Like `delete-char', but insert whitespace at field end in tables.
19790 When deleting characters, in tables this function will insert whitespace in
19791 front of the next \"|\" separator, to keep the table aligned. The table will
19792 still be marked for re-alignment if the field did fill the entire column,
19793 because, in this case the deletion might narrow the column."
19796 (org-check-before-invisible-edit 'delete)
19797 (if (and (org-table-p)
19799 (not (= (char-after) ?|))
19801 (if (looking-at ".*?|")
19802 (let ((pos (point))
19803 (noalign (looking-at "[^|\n\r]* |"))
19804 (c org-table-may-need-update))
19806 (concat (substring (match-string 0) 1 -1) " |") nil t)
19808 ;; noalign: if there were two spaces at the end, this field
19809 ;; does not determine the width of the column.
19810 (if noalign (setq org-table-may-need-update c)))
19813 (org-fix-tags-on-the-fly))))
19815 ;; Make `delete-selection-mode' work with org-mode and orgtbl-mode
19816 (put 'org-self-insert-command 'delete-selection
19818 (not (run-hook-with-args-until-success
19819 'self-insert-uses-region-functions))))
19820 (put 'orgtbl-self-insert-command 'delete-selection
19822 (not (run-hook-with-args-until-success
19823 'self-insert-uses-region-functions))))
19824 (put 'org-delete-char 'delete-selection 'supersede)
19825 (put 'org-delete-backward-char 'delete-selection 'supersede)
19826 (put 'org-yank 'delete-selection 'yank)
19828 ;; Make `flyspell-mode' delay after some commands
19829 (put 'org-self-insert-command 'flyspell-delayed t)
19830 (put 'orgtbl-self-insert-command 'flyspell-delayed t)
19831 (put 'org-delete-char 'flyspell-delayed t)
19832 (put 'org-delete-backward-char 'flyspell-delayed t)
19834 ;; Make pabbrev-mode expand after org-mode commands
19835 (put 'org-self-insert-command 'pabbrev-expand-after-command t)
19836 (put 'orgtbl-self-insert-command 'pabbrev-expand-after-command t)
19838 (defun org-remap (map &rest commands)
19839 "In MAP, remap the functions given in COMMANDS.
19840 COMMANDS is a list of alternating OLDDEF NEWDEF command names."
19843 (setq old (pop commands) new (pop commands))
19844 (if (fboundp 'command-remapping)
19845 (org-defkey map (vector 'remap old) new)
19846 (substitute-key-definition old new map global-map)))))
19848 (defun org-transpose-words ()
19849 "Transpose words for Org.
19850 This uses the `org-mode-transpose-word-syntax-table' syntax
19851 table, which interprets characters in `org-emphasis-alist' as
19852 word constituents."
19854 (with-syntax-table org-mode-transpose-word-syntax-table
19855 (call-interactively 'transpose-words)))
19856 (org-remap org-mode-map 'transpose-words 'org-transpose-words)
19858 (when (eq org-enable-table-editor 'optimized)
19859 ;; If the user wants maximum table support, we need to hijack
19860 ;; some standard editing functions
19861 (org-remap org-mode-map
19862 'self-insert-command 'org-self-insert-command
19863 'delete-char 'org-delete-char
19864 'delete-backward-char 'org-delete-backward-char)
19865 (org-defkey org-mode-map "|" 'org-force-self-insert))
19867 (defvar org-ctrl-c-ctrl-c-hook nil
19868 "Hook for functions attaching themselves to `C-c C-c'.
19870 This can be used to add additional functionality to the C-c C-c
19871 key which executes context-dependent commands. This hook is run
19872 before any other test, while `org-ctrl-c-ctrl-c-final-hook' is
19873 run after the last test.
19875 Each function will be called with no arguments. The function
19876 must check if the context is appropriate for it to act. If yes,
19877 it should do its thing and then return a non-nil value. If the
19878 context is wrong, just do nothing and return nil.")
19880 (defvar org-ctrl-c-ctrl-c-final-hook nil
19881 "Hook for functions attaching themselves to `C-c C-c'.
19883 This can be used to add additional functionality to the C-c C-c
19884 key which executes context-dependent commands. This hook is run
19885 after any other test, while `org-ctrl-c-ctrl-c-hook' is run
19886 before the first test.
19888 Each function will be called with no arguments. The function
19889 must check if the context is appropriate for it to act. If yes,
19890 it should do its thing and then return a non-nil value. If the
19891 context is wrong, just do nothing and return nil.")
19893 (defvar org-tab-first-hook nil
19894 "Hook for functions to attach themselves to TAB.
19895 See `org-ctrl-c-ctrl-c-hook' for more information.
19896 This hook runs as the first action when TAB is pressed, even before
19897 `org-cycle' messes around with the `outline-regexp' to cater for
19898 inline tasks and plain list item folding.
19899 If any function in this hook returns t, any other actions that
19900 would have been caused by TAB (such as table field motion or visibility
19901 cycling) will not occur.")
19903 (defvar org-tab-after-check-for-table-hook nil
19904 "Hook for functions to attach themselves to TAB.
19905 See `org-ctrl-c-ctrl-c-hook' for more information.
19906 This hook runs after it has been established that the cursor is not in a
19907 table, but before checking if the cursor is in a headline or if global cycling
19909 If any function in this hook returns t, not other actions like visibility
19910 cycling will be done.")
19912 (defvar org-tab-after-check-for-cycling-hook nil
19913 "Hook for functions to attach themselves to TAB.
19914 See `org-ctrl-c-ctrl-c-hook' for more information.
19915 This hook runs after it has been established that not table field motion and
19916 not visibility should be done because of current context. This is probably
19917 the place where a package like yasnippets can hook in.")
19919 (defvar org-tab-before-tab-emulation-hook nil
19920 "Hook for functions to attach themselves to TAB.
19921 See `org-ctrl-c-ctrl-c-hook' for more information.
19922 This hook runs after every other options for TAB have been exhausted, but
19923 before indentation and \t insertion takes place.")
19925 (defvar org-metaleft-hook nil
19926 "Hook for functions attaching themselves to `M-left'.
19927 See `org-ctrl-c-ctrl-c-hook' for more information.")
19928 (defvar org-metaright-hook nil
19929 "Hook for functions attaching themselves to `M-right'.
19930 See `org-ctrl-c-ctrl-c-hook' for more information.")
19931 (defvar org-metaup-hook nil
19932 "Hook for functions attaching themselves to `M-up'.
19933 See `org-ctrl-c-ctrl-c-hook' for more information.")
19934 (defvar org-metadown-hook nil
19935 "Hook for functions attaching themselves to `M-down'.
19936 See `org-ctrl-c-ctrl-c-hook' for more information.")
19937 (defvar org-shiftmetaleft-hook nil
19938 "Hook for functions attaching themselves to `M-S-left'.
19939 See `org-ctrl-c-ctrl-c-hook' for more information.")
19940 (defvar org-shiftmetaright-hook nil
19941 "Hook for functions attaching themselves to `M-S-right'.
19942 See `org-ctrl-c-ctrl-c-hook' for more information.")
19943 (defvar org-shiftmetaup-hook nil
19944 "Hook for functions attaching themselves to `M-S-up'.
19945 See `org-ctrl-c-ctrl-c-hook' for more information.")
19946 (defvar org-shiftmetadown-hook nil
19947 "Hook for functions attaching themselves to `M-S-down'.
19948 See `org-ctrl-c-ctrl-c-hook' for more information.")
19949 (defvar org-metareturn-hook nil
19950 "Hook for functions attaching themselves to `M-RET'.
19951 See `org-ctrl-c-ctrl-c-hook' for more information.")
19952 (defvar org-shiftup-hook nil
19953 "Hook for functions attaching themselves to `S-up'.
19954 See `org-ctrl-c-ctrl-c-hook' for more information.")
19955 (defvar org-shiftup-final-hook nil
19956 "Hook for functions attaching themselves to `S-up'.
19957 This one runs after all other options except shift-select have been excluded.
19958 See `org-ctrl-c-ctrl-c-hook' for more information.")
19959 (defvar org-shiftdown-hook nil
19960 "Hook for functions attaching themselves to `S-down'.
19961 See `org-ctrl-c-ctrl-c-hook' for more information.")
19962 (defvar org-shiftdown-final-hook nil
19963 "Hook for functions attaching themselves to `S-down'.
19964 This one runs after all other options except shift-select have been excluded.
19965 See `org-ctrl-c-ctrl-c-hook' for more information.")
19966 (defvar org-shiftleft-hook nil
19967 "Hook for functions attaching themselves to `S-left'.
19968 See `org-ctrl-c-ctrl-c-hook' for more information.")
19969 (defvar org-shiftleft-final-hook nil
19970 "Hook for functions attaching themselves to `S-left'.
19971 This one runs after all other options except shift-select have been excluded.
19972 See `org-ctrl-c-ctrl-c-hook' for more information.")
19973 (defvar org-shiftright-hook nil
19974 "Hook for functions attaching themselves to `S-right'.
19975 See `org-ctrl-c-ctrl-c-hook' for more information.")
19976 (defvar org-shiftright-final-hook nil
19977 "Hook for functions attaching themselves to `S-right'.
19978 This one runs after all other options except shift-select have been excluded.
19979 See `org-ctrl-c-ctrl-c-hook' for more information.")
19981 (defun org-modifier-cursor-error ()
19982 "Throw an error, a modified cursor command was applied in wrong context."
19983 (user-error "This command is active in special context like tables, headlines or items"))
19985 (defun org-shiftselect-error ()
19986 "Throw an error because Shift-Cursor command was applied in wrong context."
19987 (if (and (boundp 'shift-select-mode) shift-select-mode)
19988 (user-error "To use shift-selection with Org-mode, customize `org-support-shift-select'")
19989 (user-error "This command works only in special context like headlines or timestamps")))
19991 (defun org-call-for-shift-select (cmd)
19992 (let ((this-command-keys-shift-translated t))
19993 (call-interactively cmd)))
19995 (defun org-shifttab (&optional arg)
19996 "Global visibility cycling or move to previous table field.
19997 Call `org-table-previous-field' within a table.
19998 When ARG is nil, cycle globally through visibility states.
19999 When ARG is a numeric prefix, show contents of this level."
20002 ((org-at-table-p) (call-interactively 'org-table-previous-field))
20004 (let ((arg2 (if org-odd-levels-only (1- (* 2 arg)) arg)))
20005 (message "Content view to level: %d" arg)
20006 (org-content (prefix-numeric-value arg2))
20007 (org-cycle-show-empty-lines t)
20008 (setq org-cycle-global-status 'overview)))
20009 (t (call-interactively 'org-global-cycle))))
20011 (defun org-shiftmetaleft ()
20012 "Promote subtree or delete table column.
20013 Calls `org-promote-subtree', `org-outdent-item-tree', or
20014 `org-table-delete-column', depending on context. See the
20015 individual commands for more information."
20018 ((run-hook-with-args-until-success 'org-shiftmetaleft-hook))
20019 ((org-at-table-p) (call-interactively 'org-table-delete-column))
20020 ((org-at-heading-p) (call-interactively 'org-promote-subtree))
20021 ((if (not (org-region-active-p)) (org-at-item-p)
20022 (save-excursion (goto-char (region-beginning))
20024 (call-interactively 'org-outdent-item-tree))
20025 (t (org-modifier-cursor-error))))
20027 (defun org-shiftmetaright ()
20028 "Demote subtree or insert table column.
20029 Calls `org-demote-subtree', `org-indent-item-tree', or
20030 `org-table-insert-column', depending on context. See the
20031 individual commands for more information."
20034 ((run-hook-with-args-until-success 'org-shiftmetaright-hook))
20035 ((org-at-table-p) (call-interactively 'org-table-insert-column))
20036 ((org-at-heading-p) (call-interactively 'org-demote-subtree))
20037 ((if (not (org-region-active-p)) (org-at-item-p)
20038 (save-excursion (goto-char (region-beginning))
20040 (call-interactively 'org-indent-item-tree))
20041 (t (org-modifier-cursor-error))))
20043 (defun org-shiftmetaup (&optional arg)
20044 "Drag the line at point up.
20045 In a table, kill the current row.
20046 On a clock timestamp, update the value of the timestamp like `S-<up>'
20047 but also adjust the previous clocked item in the clock history.
20048 Everywhere else, drag the line at point up."
20051 ((run-hook-with-args-until-success 'org-shiftmetaup-hook))
20052 ((org-at-table-p) (call-interactively 'org-table-kill-row))
20053 ((org-at-clock-log-p) (let ((org-clock-adjust-closest t))
20054 (call-interactively 'org-timestamp-up)))
20055 (t (call-interactively 'org-drag-line-backward))))
20057 (defun org-shiftmetadown (&optional arg)
20058 "Drag the line at point down.
20059 In a table, insert an empty row at the current line.
20060 On a clock timestamp, update the value of the timestamp like `S-<down>'
20061 but also adjust the previous clocked item in the clock history.
20062 Everywhere else, drag the line at point down."
20065 ((run-hook-with-args-until-success 'org-shiftmetadown-hook))
20066 ((org-at-table-p) (call-interactively 'org-table-insert-row))
20067 ((org-at-clock-log-p) (let ((org-clock-adjust-closest t))
20068 (call-interactively 'org-timestamp-down)))
20069 (t (call-interactively 'org-drag-line-forward))))
20071 (defsubst org-hidden-tree-error ()
20073 "Hidden subtree, open with TAB or use subtree command M-S-<left>/<right>"))
20075 (defun org-metaleft (&optional arg)
20076 "Promote heading or move table column to left.
20077 Calls `org-do-promote' or `org-table-move-column', depending on context.
20078 With no specific context, calls the Emacs default `backward-word'.
20079 See the individual commands for more information."
20082 ((run-hook-with-args-until-success 'org-metaleft-hook))
20083 ((org-at-table-p) (org-call-with-arg 'org-table-move-column 'left))
20084 ((org-with-limited-levels
20085 (or (org-at-heading-p)
20086 (and (org-region-active-p)
20088 (goto-char (region-beginning))
20089 (org-at-heading-p)))))
20090 (when (org-check-for-hidden 'headlines) (org-hidden-tree-error))
20091 (call-interactively 'org-do-promote))
20092 ;; At an inline task.
20093 ((org-at-heading-p)
20094 (call-interactively 'org-inlinetask-promote))
20095 ((or (org-at-item-p)
20096 (and (org-region-active-p)
20098 (goto-char (region-beginning))
20100 (when (org-check-for-hidden 'items) (org-hidden-tree-error))
20101 (call-interactively 'org-outdent-item))
20102 (t (call-interactively 'backward-word))))
20104 (defun org-metaright (&optional arg)
20105 "Demote a subtree, a list item or move table column to right.
20106 In front of a drawer or a block keyword, indent it correctly.
20107 With no specific context, calls the Emacs default `forward-word'.
20108 See the individual commands for more information."
20111 ((run-hook-with-args-until-success 'org-metaright-hook))
20112 ((org-at-table-p) (call-interactively 'org-table-move-column))
20113 ((org-at-drawer-p) (call-interactively 'org-indent-drawer))
20114 ((org-at-block-p) (call-interactively 'org-indent-block))
20115 ((org-with-limited-levels
20116 (or (org-at-heading-p)
20117 (and (org-region-active-p)
20119 (goto-char (region-beginning))
20120 (org-at-heading-p)))))
20121 (when (org-check-for-hidden 'headlines) (org-hidden-tree-error))
20122 (call-interactively 'org-do-demote))
20123 ;; At an inline task.
20124 ((org-at-heading-p)
20125 (call-interactively 'org-inlinetask-demote))
20126 ((or (org-at-item-p)
20127 (and (org-region-active-p)
20129 (goto-char (region-beginning))
20131 (when (org-check-for-hidden 'items) (org-hidden-tree-error))
20132 (call-interactively 'org-indent-item))
20133 (t (call-interactively 'forward-word))))
20135 (defun org-check-for-hidden (what)
20136 "Check if there are hidden headlines/items in the current visual line.
20137 WHAT can be either `headlines' or `items'. If the current line is
20138 an outline or item heading and it has a folded subtree below it,
20139 this function returns t, nil otherwise."
20141 ((eq what 'headlines) org-outline-regexp-bol)
20142 ((eq what 'items) (org-item-beginning-re))
20143 (t (error "This should not happen"))))
20147 (unless (org-region-active-p)
20148 (setq beg (point-at-bol))
20149 (beginning-of-line 2)
20150 (while (and (not (eobp)) ;; this is like `next-line'
20151 (get-char-property (1- (point)) 'invisible))
20152 (beginning-of-line 2))
20155 (goto-char (point-at-eol))
20156 (setq end (max end (point)))
20157 (while (re-search-forward re end t)
20158 (if (get-char-property (match-beginning 0) 'invisible)
20162 (defun org-metaup (&optional arg)
20163 "Move subtree up or move table row up.
20164 Calls `org-move-subtree-up' or `org-table-move-row' or
20165 `org-move-item-up', depending on context. See the individual commands
20166 for more information."
20169 ((run-hook-with-args-until-success 'org-metaup-hook))
20170 ((org-region-active-p)
20171 (let* ((a (min (region-beginning) (region-end)))
20172 (b (1- (max (region-beginning) (region-end))))
20173 (c (save-excursion (goto-char a)
20174 (move-beginning-of-line 0)))
20175 (d (save-excursion (goto-char a)
20176 (move-end-of-line 0) (point))))
20177 (transpose-regions a b c d)
20179 ((org-at-table-p) (org-call-with-arg 'org-table-move-row 'up))
20180 ((org-at-heading-p) (call-interactively 'org-move-subtree-up))
20181 ((org-at-item-p) (call-interactively 'org-move-item-up))
20182 (t (org-drag-element-backward))))
20184 (defun org-metadown (&optional arg)
20185 "Move subtree down or move table row down.
20186 Calls `org-move-subtree-down' or `org-table-move-row' or
20187 `org-move-item-down', depending on context. See the individual
20188 commands for more information."
20191 ((run-hook-with-args-until-success 'org-metadown-hook))
20192 ((org-region-active-p)
20193 (let* ((a (min (region-beginning) (region-end)))
20194 (b (max (region-beginning) (region-end)))
20195 (c (save-excursion (goto-char b)
20196 (move-beginning-of-line 1)))
20197 (d (save-excursion (goto-char b)
20198 (move-end-of-line 1) (1+ (point)))))
20199 (transpose-regions a b c d)
20201 ((org-at-table-p) (call-interactively 'org-table-move-row))
20202 ((org-at-heading-p) (call-interactively 'org-move-subtree-down))
20203 ((org-at-item-p) (call-interactively 'org-move-item-down))
20204 (t (org-drag-element-forward))))
20206 (defun org-shiftup (&optional arg)
20207 "Increase item in timestamp or increase priority of current headline.
20208 Calls `org-timestamp-up' or `org-priority-up', or `org-previous-item',
20209 depending on context. See the individual commands for more information."
20212 ((run-hook-with-args-until-success 'org-shiftup-hook))
20213 ((and org-support-shift-select (org-region-active-p))
20214 (org-call-for-shift-select 'previous-line))
20215 ((org-at-timestamp-p t)
20216 (call-interactively (if org-edit-timestamp-down-means-later
20217 'org-timestamp-down 'org-timestamp-up)))
20218 ((and (not (eq org-support-shift-select 'always))
20219 org-enable-priority-commands
20220 (org-at-heading-p))
20221 (call-interactively 'org-priority-up))
20222 ((and (not org-support-shift-select) (org-at-item-p))
20223 (call-interactively 'org-previous-item))
20224 ((org-clocktable-try-shift 'up arg))
20225 ((run-hook-with-args-until-success 'org-shiftup-final-hook))
20226 (org-support-shift-select
20227 (org-call-for-shift-select 'previous-line))
20228 (t (org-shiftselect-error))))
20230 (defun org-shiftdown (&optional arg)
20231 "Decrease item in timestamp or decrease priority of current headline.
20232 Calls `org-timestamp-down' or `org-priority-down', or `org-next-item'
20233 depending on context. See the individual commands for more information."
20236 ((run-hook-with-args-until-success 'org-shiftdown-hook))
20237 ((and org-support-shift-select (org-region-active-p))
20238 (org-call-for-shift-select 'next-line))
20239 ((org-at-timestamp-p t)
20240 (call-interactively (if org-edit-timestamp-down-means-later
20241 'org-timestamp-up 'org-timestamp-down)))
20242 ((and (not (eq org-support-shift-select 'always))
20243 org-enable-priority-commands
20244 (org-at-heading-p))
20245 (call-interactively 'org-priority-down))
20246 ((and (not org-support-shift-select) (org-at-item-p))
20247 (call-interactively 'org-next-item))
20248 ((org-clocktable-try-shift 'down arg))
20249 ((run-hook-with-args-until-success 'org-shiftdown-final-hook))
20250 (org-support-shift-select
20251 (org-call-for-shift-select 'next-line))
20252 (t (org-shiftselect-error))))
20254 (defun org-shiftright (&optional arg)
20255 "Cycle the thing at point or in the current line, depending on context.
20256 Depending on context, this does one of the following:
20258 - switch a timestamp at point one day into the future
20259 - on a headline, switch to the next TODO keyword.
20260 - on an item, switch entire list to the next bullet type
20261 - on a property line, switch to the next allowed value
20262 - on a clocktable definition line, move time block into the future"
20265 ((run-hook-with-args-until-success 'org-shiftright-hook))
20266 ((and org-support-shift-select (org-region-active-p))
20267 (org-call-for-shift-select 'forward-char))
20268 ((org-at-timestamp-p t) (call-interactively 'org-timestamp-up-day))
20269 ((and (not (eq org-support-shift-select 'always))
20270 (org-at-heading-p))
20271 (let ((org-inhibit-logging
20272 (not org-treat-S-cursor-todo-selection-as-state-change))
20273 (org-inhibit-blocking
20274 (not org-treat-S-cursor-todo-selection-as-state-change)))
20275 (org-call-with-arg 'org-todo 'right)))
20276 ((or (and org-support-shift-select
20277 (not (eq org-support-shift-select 'always))
20278 (org-at-item-bullet-p))
20279 (and (not org-support-shift-select) (org-at-item-p)))
20280 (org-call-with-arg 'org-cycle-list-bullet nil))
20281 ((and (not (eq org-support-shift-select 'always))
20282 (org-at-property-p))
20283 (call-interactively 'org-property-next-allowed-value))
20284 ((org-clocktable-try-shift 'right arg))
20285 ((run-hook-with-args-until-success 'org-shiftright-final-hook))
20286 (org-support-shift-select
20287 (org-call-for-shift-select 'forward-char))
20288 (t (org-shiftselect-error))))
20290 (defun org-shiftleft (&optional arg)
20291 "Cycle the thing at point or in the current line, depending on context.
20292 Depending on context, this does one of the following:
20294 - switch a timestamp at point one day into the past
20295 - on a headline, switch to the previous TODO keyword.
20296 - on an item, switch entire list to the previous bullet type
20297 - on a property line, switch to the previous allowed value
20298 - on a clocktable definition line, move time block into the past"
20301 ((run-hook-with-args-until-success 'org-shiftleft-hook))
20302 ((and org-support-shift-select (org-region-active-p))
20303 (org-call-for-shift-select 'backward-char))
20304 ((org-at-timestamp-p t) (call-interactively 'org-timestamp-down-day))
20305 ((and (not (eq org-support-shift-select 'always))
20306 (org-at-heading-p))
20307 (let ((org-inhibit-logging
20308 (not org-treat-S-cursor-todo-selection-as-state-change))
20309 (org-inhibit-blocking
20310 (not org-treat-S-cursor-todo-selection-as-state-change)))
20311 (org-call-with-arg 'org-todo 'left)))
20312 ((or (and org-support-shift-select
20313 (not (eq org-support-shift-select 'always))
20314 (org-at-item-bullet-p))
20315 (and (not org-support-shift-select) (org-at-item-p)))
20316 (org-call-with-arg 'org-cycle-list-bullet 'previous))
20317 ((and (not (eq org-support-shift-select 'always))
20318 (org-at-property-p))
20319 (call-interactively 'org-property-previous-allowed-value))
20320 ((org-clocktable-try-shift 'left arg))
20321 ((run-hook-with-args-until-success 'org-shiftleft-final-hook))
20322 (org-support-shift-select
20323 (org-call-for-shift-select 'backward-char))
20324 (t (org-shiftselect-error))))
20326 (defun org-shiftcontrolright ()
20327 "Switch to next TODO set."
20330 ((and org-support-shift-select (org-region-active-p))
20331 (org-call-for-shift-select 'forward-word))
20332 ((and (not (eq org-support-shift-select 'always))
20333 (org-at-heading-p))
20334 (org-call-with-arg 'org-todo 'nextset))
20335 (org-support-shift-select
20336 (org-call-for-shift-select 'forward-word))
20337 (t (org-shiftselect-error))))
20339 (defun org-shiftcontrolleft ()
20340 "Switch to previous TODO set."
20343 ((and org-support-shift-select (org-region-active-p))
20344 (org-call-for-shift-select 'backward-word))
20345 ((and (not (eq org-support-shift-select 'always))
20346 (org-at-heading-p))
20347 (org-call-with-arg 'org-todo 'previousset))
20348 (org-support-shift-select
20349 (org-call-for-shift-select 'backward-word))
20350 (t (org-shiftselect-error))))
20352 (defun org-shiftcontrolup (&optional n)
20353 "Change timestamps synchronously up in CLOCK log lines.
20354 Optional argument N tells to change by that many units."
20356 (if (and (org-at-clock-log-p) (org-at-timestamp-p t))
20357 (let (org-support-shift-select)
20358 (org-clock-timestamps-up n))
20359 (user-error "Not at a clock log")))
20361 (defun org-shiftcontroldown (&optional n)
20362 "Change timestamps synchronously down in CLOCK log lines.
20363 Optional argument N tells to change by that many units."
20365 (if (and (org-at-clock-log-p) (org-at-timestamp-p t))
20366 (let (org-support-shift-select)
20367 (org-clock-timestamps-down n))
20368 (user-error "Not at a clock log")))
20370 (defun org-increase-number-at-point (&optional inc)
20371 "Increment the number at point.
20372 With an optional prefix numeric argument INC, increment using
20373 this numeric value."
20375 (if (not (number-at-point))
20376 (user-error "Not on a number")
20377 (unless inc (setq inc 1))
20378 (let ((pos (point))
20379 (beg (skip-chars-backward "-+^/*0-9eE."))
20380 (end (skip-chars-forward "-+^/*0-9eE^.")) nap)
20381 (setq nap (buffer-substring-no-properties
20382 (+ pos beg) (+ pos beg end)))
20383 (delete-region (+ pos beg) (+ pos beg end))
20384 (insert (calc-eval (concat (number-to-string inc) "+" nap))))
20385 (when (org-at-table-p)
20387 (org-table-end-of-field 1))))
20389 (defun org-decrease-number-at-point (&optional inc)
20390 "Decrement the number at point.
20391 With an optional prefix numeric argument INC, decrement using
20392 this numeric value."
20394 (org-increase-number-at-point (- inc)))
20396 (defun org-ctrl-c-ret ()
20397 "Call `org-table-hline-and-move' or `org-insert-heading' dep. on context."
20400 ((org-at-table-p) (call-interactively 'org-table-hline-and-move))
20401 (t (call-interactively 'org-insert-heading))))
20403 (defun org-find-visible ()
20405 (while (and (not (= (point-max) (setq s (next-overlay-change s))))
20406 (get-char-property s 'invisible)))
20408 (defun org-find-invisible ()
20410 (while (and (not (= (point-max) (setq s (next-overlay-change s))))
20411 (not (get-char-property s 'invisible))))
20414 (defun org-copy-visible (beg end)
20415 "Copy the visible parts of the region."
20420 (narrow-to-region beg end)
20421 (setq s (goto-char (point-min)))
20422 (while (not (= (point) (point-max)))
20423 (goto-char (org-find-invisible))
20424 (push (buffer-substring s (point)) snippets)
20425 (setq s (goto-char (org-find-visible))))))
20426 (kill-new (apply 'concat (nreverse snippets)))))
20428 (defun org-copy-special ()
20429 "Copy region in table or copy current subtree.
20430 Calls `org-table-copy' or `org-copy-subtree', depending on context.
20431 See the individual commands for more information."
20433 (call-interactively
20434 (if (org-at-table-p) 'org-table-copy-region 'org-copy-subtree)))
20436 (defun org-cut-special ()
20437 "Cut region in table or cut current subtree.
20438 Calls `org-table-copy' or `org-cut-subtree', depending on context.
20439 See the individual commands for more information."
20441 (call-interactively
20442 (if (org-at-table-p) 'org-table-cut-region 'org-cut-subtree)))
20444 (defun org-paste-special (arg)
20445 "Paste rectangular region into table, or past subtree relative to level.
20446 Calls `org-table-paste-rectangle' or `org-paste-subtree', depending on context.
20447 See the individual commands for more information."
20449 (if (org-at-table-p)
20450 (org-table-paste-rectangle)
20451 (org-paste-subtree arg)))
20453 (defsubst org-in-fixed-width-region-p ()
20454 "Is point in a fixed-width region?"
20456 (eq 'fixed-width (org-element-type (org-element-at-point)))))
20458 (defun org-edit-special (&optional arg)
20459 "Call a special editor for the element at point.
20460 When at a table, call the formula editor with `org-table-edit-formulas'.
20461 When in a source code block, call `org-edit-src-code'.
20462 When in a fixed-width region, call `org-edit-fixed-width-region'.
20463 When at an #+INCLUDE keyword, visit the included file.
20464 On a link, call `ffap' to visit the link at point.
20465 Otherwise, return a user error."
20467 (let ((element (org-element-at-point)))
20468 (assert (not buffer-read-only) nil
20469 "Buffer is read-only: %s" (buffer-name))
20470 (case (org-element-type element)
20472 (if (not arg) (org-edit-src-code)
20473 (let* ((info (org-babel-get-src-block-info))
20474 (lang (nth 0 info))
20475 (params (nth 2 info))
20476 (session (cdr (assq :session params))))
20477 (if (not session) (org-edit-src-code)
20478 ;; At a src-block with a session and function called with
20479 ;; an ARG: switch to the buffer related to the inferior
20482 (funcall (intern (concat "org-babel-prep-session:" lang))
20483 session params))))))
20485 (if (member (org-element-property :key element) '("INCLUDE" "SETUPFILE"))
20486 (find-file-other-window
20487 (org-remove-double-quotes
20488 (car (org-split-string (org-element-property :value element)))))
20489 (user-error "No special environment to edit here")))
20491 (if (eq (org-element-property :type element) 'table.el)
20492 (org-edit-src-code)
20493 (call-interactively 'org-table-edit-formulas)))
20494 ;; Only Org tables contain `table-row' type elements.
20495 (table-row (call-interactively 'org-table-edit-formulas))
20496 ((example-block export-block) (org-edit-src-code))
20497 (fixed-width (org-edit-fixed-width-region))
20499 ;; No notable element at point. Though, we may be at a link,
20500 ;; which is an object. Thus, scan deeper.
20501 (if (eq (org-element-type (org-element-context element)) 'link)
20502 (call-interactively 'ffap)
20503 (user-error "No special environment to edit here"))))))
20505 (defvar org-table-coordinate-overlays) ; defined in org-table.el
20506 (defun org-ctrl-c-ctrl-c (&optional arg)
20507 "Set tags in headline, or update according to changed information at point.
20509 This command does many different things, depending on context:
20511 - If a function in `org-ctrl-c-ctrl-c-hook' recognizes this location,
20512 this is what we do.
20514 - If the cursor is on a statistics cookie, update it.
20516 - If the cursor is in a headline, prompt for tags and insert them
20517 into the current line, aligned to `org-tags-column'. When called
20518 with prefix arg, realign all tags in the current buffer.
20520 - If the cursor is in one of the special #+KEYWORD lines, this
20521 triggers scanning the buffer for these lines and updating the
20524 - If the cursor is inside a table, realign the table. This command
20525 works even if the automatic table editor has been turned off.
20527 - If the cursor is on a #+TBLFM line, re-apply the formulas to
20530 - If the cursor is at a footnote reference or definition, jump to
20531 the corresponding definition or references, respectively.
20533 - If the cursor is a the beginning of a dynamic block, update it.
20535 - If the current buffer is a capture buffer, close note and file it.
20537 - If the cursor is on a <<<target>>>, update radio targets and
20538 corresponding links in this buffer.
20540 - If the cursor is on a numbered item in a plain list, renumber the
20543 - If the cursor is on a checkbox, toggle it.
20545 - If the cursor is on a code block, evaluate it. The variable
20546 `org-confirm-babel-evaluate' can be used to control prompting
20547 before code block evaluation, by default every code block
20548 evaluation requires confirmation. Code block evaluation can be
20549 inhibited by setting `org-babel-no-eval-on-ctrl-c-ctrl-c'."
20552 ((or (and (boundp 'org-clock-overlays) org-clock-overlays)
20553 org-occur-highlights
20554 org-latex-fragment-image-overlays)
20555 (and (boundp 'org-clock-overlays) (org-clock-remove-overlays))
20556 (org-remove-occur-highlights)
20557 (org-remove-latex-fragment-image-overlays)
20558 (message "Temporary highlights/overlays removed from current buffer"))
20559 ((and (local-variable-p 'org-finish-function (current-buffer))
20560 (fboundp org-finish-function))
20561 (funcall org-finish-function))
20562 ((run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-hook))
20564 (let* ((context (org-element-context)) (type (org-element-type context)))
20565 ;; Test if point is within a blank line.
20566 (if (save-excursion (beginning-of-line) (looking-at "[ \t]*$"))
20567 (or (run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-final-hook)
20568 (user-error "C-c C-c can do nothing useful at this location"))
20570 ;; When at a link, act according to the parent instead.
20571 (link (setq context (org-element-property :parent context))
20572 (setq type (org-element-type context)))
20573 ;; Unsupported object types: refer to the first supported
20574 ;; element or object containing it.
20575 ((bold code entity export-snippet inline-babel-call inline-src-block
20576 italic latex-fragment line-break macro strike-through subscript
20577 superscript underline verbatim)
20578 (while (and (setq context (org-element-property :parent context))
20579 (not (memq (setq type (org-element-type context))
20580 '(radio-target paragraph verse-block
20582 ;; For convenience: at the first line of a paragraph on the
20583 ;; same line as an item, apply function on that item instead.
20584 (when (eq type 'paragraph)
20585 (let ((parent (org-element-property :parent context)))
20586 (when (and (eq (org-element-type parent) 'item)
20587 (= (point-at-bol) (org-element-property :begin parent)))
20588 (setq context parent type 'item))))
20589 ;; Act according to type of element or object at point.
20591 (clock (org-clock-update-time-maybe))
20594 (goto-char (org-element-property :post-affiliated context))
20595 (org-update-dblock)))
20596 (footnote-definition
20597 (goto-char (org-element-property :post-affiliated context))
20598 (call-interactively 'org-footnote-action))
20599 (footnote-reference (call-interactively 'org-footnote-action))
20600 ((headline inlinetask)
20601 (save-excursion (goto-char (org-element-property :begin context))
20602 (call-interactively 'org-set-tags)))
20604 ;; At an item: a double C-u set checkbox to "[-]"
20605 ;; unconditionally, whereas a single one will toggle its
20606 ;; presence. Without an universal argument, if the item
20607 ;; has a checkbox, toggle it. Otherwise repair the list.
20608 (let* ((box (org-element-property :checkbox context))
20609 (struct (org-element-property :structure context))
20610 (old-struct (copy-tree struct))
20611 (parents (org-list-parents-alist struct))
20612 (prevs (org-list-prevs-alist struct))
20613 (orderedp (org-not-nil (org-entry-get nil "ORDERED"))))
20614 (org-list-set-checkbox
20615 (org-element-property :begin context) struct
20616 (cond ((equal arg '(16)) "[-]")
20617 ((and (not box) (equal arg '(4))) "[ ]")
20618 ((or (not box) (equal arg '(4))) nil)
20619 ((eq box 'on) "[ ]")
20621 ;; Mimic `org-list-write-struct' but with grabbing
20622 ;; a return value from `org-list-struct-fix-box'.
20623 (org-list-struct-fix-ind struct parents 2)
20624 (org-list-struct-fix-item-end struct)
20625 (org-list-struct-fix-bul struct prevs)
20626 (org-list-struct-fix-ind struct parents)
20628 (org-list-struct-fix-box struct parents prevs orderedp)))
20629 (if (and box (equal struct old-struct))
20630 (if (equal arg '(16))
20631 (message "Checkboxes already reset")
20632 (user-error "Cannot toggle this checkbox: %s"
20634 "all subitems checked"
20635 "unchecked subitems")))
20636 (org-list-struct-apply-struct struct old-struct)
20637 (org-update-checkbox-count-maybe))
20639 (message "Checkboxes were removed due to empty box at line %d"
20640 (org-current-line block-item))))))
20642 (let ((org-inhibit-startup-visibility-stuff t)
20643 (org-startup-align-all-tables nil))
20644 (when (boundp 'org-table-coordinate-overlays)
20645 (mapc 'delete-overlay org-table-coordinate-overlays)
20646 (setq org-table-coordinate-overlays nil))
20647 (org-save-outline-visibility 'use-markers (org-mode-restart)))
20648 (message "Local setup has been refreshed"))
20650 ;; At a plain list, with a double C-u argument, set
20651 ;; checkboxes of each item to "[-]", whereas a single one
20652 ;; will toggle their presence according to the state of the
20653 ;; first item in the list. Without an argument, repair the
20655 (let* ((begin (org-element-property :contents-begin context))
20656 (beginm (move-marker (make-marker) begin))
20657 (struct (org-element-property :structure context))
20658 (old-struct (copy-tree struct))
20659 (first-box (save-excursion
20661 (looking-at org-list-full-item-re)
20662 (match-string-no-properties 3)))
20663 (new-box (cond ((equal arg '(16)) "[-]")
20664 ((equal arg '(4)) (unless first-box "[ ]"))
20665 ((equal first-box "[X]") "[ ]")
20669 (mapc (lambda (pos) (org-list-set-checkbox pos struct new-box))
20670 (org-list-get-all-items
20671 begin struct (org-list-prevs-alist struct))))
20672 ((and first-box (eq (point) begin))
20673 ;; For convenience, when point is at bol on the first
20674 ;; item of the list and no argument is provided, simply
20675 ;; toggle checkbox of that item, if any.
20676 (org-list-set-checkbox begin struct new-box)))
20677 (org-list-write-struct
20678 struct (org-list-parents-alist struct) old-struct)
20679 (org-update-checkbox-count-maybe)
20680 (save-excursion (goto-char beginm) (org-list-send-list 'maybe))))
20681 ((property-drawer node-property)
20682 (call-interactively 'org-property-action))
20683 ((radio-target target)
20684 (call-interactively 'org-update-radio-target-regexp))
20686 (call-interactively 'org-update-statistics-cookies))
20687 ((table table-cell table-row)
20688 ;; At a table, recalculate every field and align it. Also
20689 ;; send the table if necessary. If the table has
20690 ;; a `table.el' type, just give up. At a table row or
20691 ;; cell, maybe recalculate line but always align table.
20692 (if (eq (org-element-property :type context) 'table.el)
20693 (message "Use C-c ' to edit table.el tables")
20694 (let ((org-enable-table-editor t))
20695 (if (or (eq type 'table)
20696 ;; Check if point is at a TBLFM line.
20697 (and (eq type 'table-row)
20698 (= (point) (org-element-property :end context))))
20700 (if (org-at-TBLFM-p)
20701 (progn (require 'org-table)
20702 (org-table-calc-current-TBLFM))
20703 (goto-char (org-element-property :contents-begin context))
20704 (org-call-with-arg 'org-table-recalculate (or arg t))
20705 (orgtbl-send-table 'maybe)))
20706 (org-table-maybe-eval-formula)
20707 (cond (arg (call-interactively 'org-table-recalculate))
20708 ((org-table-maybe-recalculate-line))
20709 (t (org-table-align)))))))
20710 (timestamp (org-timestamp-change 0 'day))
20712 (or (run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-final-hook)
20714 "C-c C-c can do nothing useful at this location")))))))))
20716 (defun org-mode-restart ()
20718 (let ((indent-status (org-bound-and-true-p org-indent-mode)))
20719 (funcall major-mode)
20720 (hack-local-variables)
20721 (when (and indent-status (not (org-bound-and-true-p org-indent-mode)))
20722 (org-indent-mode -1)))
20723 (message "%s restarted" major-mode))
20725 (defun org-kill-note-or-show-branches ()
20726 "If this is a Note buffer, abort storing the note. Else call `show-branches'."
20728 (if (not org-finish-function)
20731 (call-interactively 'show-branches))
20732 (let ((org-note-abort t))
20733 (funcall org-finish-function))))
20735 (defun org-open-line (n)
20736 "Insert a new row in tables, call `open-line' elsewhere.
20737 If `org-special-ctrl-o' is nil, just call `open-line' everywhere."
20740 ((not org-special-ctrl-o)
20743 (org-table-insert-row))
20747 (defun org-return (&optional indent)
20748 "Goto next table row or insert a newline.
20749 Calls `org-table-next-row' or `newline', depending on context.
20750 See the individual commands for more information."
20754 ((or (bobp) (org-in-src-block-p))
20755 (if indent (newline-and-indent) (newline)))
20757 (org-table-justify-field-maybe)
20758 (call-interactively 'org-table-next-row))
20759 ;; when `newline-and-indent' is called within a list, make sure
20760 ;; text moved stays inside the item.
20761 ((and (org-in-item-p) indent)
20762 (if (and (org-at-item-p) (>= (point) (match-end 0)))
20764 (save-match-data (newline))
20765 (org-indent-line-to (length (match-string 0))))
20766 (let ((ind (org-get-indentation)))
20768 (if (org-looking-back org-list-end-re)
20770 (org-indent-line-to ind)))))
20771 ((and org-return-follows-link
20772 (org-at-timestamp-p t)
20773 (not (eq org-ts-what 'after)))
20774 (org-follow-timestamp-link))
20775 ((and org-return-follows-link
20776 (let ((tprop (get-text-property (point) 'face)))
20777 (or (eq tprop 'org-link)
20778 (and (listp tprop) (memq 'org-link tprop)))))
20779 (call-interactively 'org-open-at-point))
20780 ((and (org-at-heading-p)
20782 (org-re "\\([ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)[ \t]*$")))
20786 (t (if indent (newline-and-indent) (newline))))))
20788 (defun org-return-indent ()
20789 "Goto next table row or insert a newline and indent.
20790 Calls `org-table-next-row' or `newline-and-indent', depending on
20791 context. See the individual commands for more information."
20795 (defun org-ctrl-c-star ()
20796 "Compute table, or change heading status of lines.
20797 Calls `org-table-recalculate' or `org-toggle-heading',
20798 depending on context."
20802 (call-interactively 'org-table-recalculate))
20804 ;; Convert all lines in region to list items
20805 (call-interactively 'org-toggle-heading))))
20807 (defun org-ctrl-c-minus ()
20808 "Insert separator line in table or modify bullet status of line.
20809 Also turns a plain line or a region of lines into list items.
20810 Calls `org-table-insert-hline', `org-toggle-item', or
20811 `org-cycle-list-bullet', depending on context."
20815 (call-interactively 'org-table-insert-hline))
20816 ((org-region-active-p)
20817 (call-interactively 'org-toggle-item))
20819 (call-interactively 'org-cycle-list-bullet))
20821 (call-interactively 'org-toggle-item))))
20823 (defun org-toggle-item (arg)
20824 "Convert headings or normal lines to items, items to normal lines.
20825 If there is no active region, only the current line is considered.
20827 If the first non blank line in the region is a headline, convert
20828 all headlines to items, shifting text accordingly.
20830 If it is an item, convert all items to normal lines.
20832 If it is normal text, change region into a list of items.
20833 With a prefix argument ARG, change the region in a single item."
20837 ;; Shift text in current section to IND, from point to END.
20838 ;; The function leaves point to END line.
20840 (let ((min-i 1000) (end (copy-marker end)))
20841 ;; First determine the minimum indentation (MIN-I) of
20845 (while (< (point) end)
20846 (let ((i (org-get-indentation)))
20848 ;; Skip blank lines and inline tasks.
20849 ((looking-at "^[ \t]*$"))
20850 ((looking-at org-outline-regexp-bol))
20851 ;; We can't find less than 0 indentation.
20852 ((zerop i) (throw 'exit (setq min-i 0)))
20853 ((< i min-i) (setq min-i i))))
20855 ;; Then indent each line so that a line indented to
20856 ;; MIN-I becomes indented to IND. Ignore blank lines
20857 ;; and inline tasks in the process.
20858 (let ((delta (- ind min-i)))
20859 (while (< (point) end)
20860 (unless (or (looking-at "^[ \t]*$")
20861 (looking-at org-outline-regexp-bol))
20862 (org-indent-line-to (+ (org-get-indentation) delta)))
20863 (forward-line)))))))
20866 ;; Return beginning of first non-blank line, starting from
20871 (skip-chars-forward " \r\t\n")
20874 ;; Determine boundaries of changes.
20875 (if (org-region-active-p)
20876 (setq beg (funcall skip-blanks (region-beginning))
20877 end (copy-marker (region-end)))
20878 (setq beg (funcall skip-blanks (point-at-bol))
20879 end (copy-marker (point-at-eol))))
20880 ;; Depending on the starting line, choose an action on the text
20881 ;; between BEG and END.
20882 (org-with-limited-levels
20886 ;; Case 1. Start at an item: de-itemize. Note that it only
20887 ;; happens when a region is active: `org-ctrl-c-minus'
20888 ;; would call `org-cycle-list-bullet' otherwise.
20890 (while (< (point) end)
20891 (when (org-at-item-p)
20892 (skip-chars-forward " \t")
20893 (delete-region (point) (match-end 0)))
20895 ;; Case 2. Start at an heading: convert to items.
20896 ((org-at-heading-p)
20897 (let* ((bul (org-list-bullet-string "-"))
20898 (bul-len (length bul))
20899 (done (org-entry-is-done-p))
20900 (todo (org-entry-is-todo-p))
20901 ;; Indentation of the first heading. It should be
20902 ;; relative to the indentation of its parent, if any.
20903 (start-ind (save-excursion
20905 ((not org-adapt-indentation) 0)
20906 ((not (outline-previous-heading)) 0)
20907 (t (length (match-string 0))))))
20908 ;; Level of first heading. Further headings will be
20909 ;; compared to it to determine hierarchy in the list.
20910 (ref-level (org-reduced-level (org-outline-level))))
20911 (when (or done todo) (org-todo ""))
20912 (while (< (point) end)
20913 (let* ((level (org-reduced-level (org-outline-level)))
20914 (delta (max 0 (- level ref-level))))
20915 ;; If current headline is less indented than the first
20916 ;; one, set it as reference, in order to preserve
20918 (when (< level ref-level) (setq ref-level level))
20919 (replace-match bul t t)
20920 (org-indent-line-to (+ start-ind (* delta bul-len)))
20921 (when (or done todo)
20922 (let* ((struct (org-list-struct))
20923 (old (copy-tree struct)))
20924 (org-list-set-checkbox (line-beginning-position)
20926 (if done "[X]" "[ ]"))
20927 (org-list-write-struct struct
20928 (org-list-parents-alist struct)
20930 ;; Ensure all text down to END (or SECTION-END) belongs
20931 ;; to the newly created item.
20932 (let ((section-end (save-excursion
20933 (or (outline-next-heading) (point)))))
20935 (funcall shift-text
20936 (+ start-ind (* (1+ delta) bul-len))
20937 (min end section-end)))))))
20938 ;; Case 3. Normal line with ARG: make the first line of region
20939 ;; an item, and shift indentation of others lines to
20940 ;; set them as item's body.
20941 (arg (let* ((bul (org-list-bullet-string "-"))
20942 (bul-len (length bul))
20943 (ref-ind (org-get-indentation)))
20944 (skip-chars-forward " \t")
20947 (while (< (point) end)
20948 ;; Ensure that lines less indented than first one
20949 ;; still get included in item body.
20950 (funcall shift-text
20951 (+ ref-ind bul-len)
20952 (min end (save-excursion (or (outline-next-heading)
20955 ;; Case 4. Normal line without ARG: turn each non-item line
20958 (while (< (point) end)
20959 (unless (or (org-at-heading-p) (org-at-item-p))
20960 (if (looking-at "\\([ \t]*\\)\\(\\S-\\)")
20962 (concat "\\1" (org-list-bullet-string "-") "\\2"))))
20963 (forward-line))))))))
20965 (defun org-toggle-heading (&optional nstars)
20966 "Convert headings to normal text, or items or text to headings.
20967 If there is no active region, only convert the current line.
20969 With a \\[universal-argument] prefix, convert the whole list at
20970 point into heading.
20974 - If the first non blank line is a headline, remove the stars
20975 from all headlines in the region.
20977 - If it is a normal line, turn each and every normal line (i.e.,
20978 not an heading or an item) in the region into headings. If you
20979 want to convert only the first line of this region, use one
20980 universal prefix argument.
20982 - If it is a plain list item, turn all plain list items into headings.
20984 When converting a line into a heading, the number of stars is chosen
20985 such that the lines become children of the current entry. However,
20986 when a numeric prefix argument is given, its value determines the
20987 number of stars to add."
20991 ;; Return beginning of first non-blank line, starting from
20996 (while (org-at-comment-p) (forward-line))
20997 (skip-chars-forward " \r\t\n")
21000 ;; Determine boundaries of changes. If a universal prefix has
21001 ;; been given, put the list in a region. If region ends at a bol,
21002 ;; do not consider the last line to be in the region.
21004 (when (and current-prefix-arg (org-at-item-p))
21005 (if (listp current-prefix-arg) (setq current-prefix-arg 1))
21006 (org-mark-element))
21008 (if (org-region-active-p)
21009 (setq beg (funcall skip-blanks (region-beginning))
21010 end (copy-marker (save-excursion
21011 (goto-char (region-end))
21012 (if (bolp) (point) (point-at-eol)))))
21013 (setq beg (funcall skip-blanks (point-at-bol))
21014 end (copy-marker (point-at-eol))))
21015 ;; Ensure inline tasks don't count as headings.
21016 (org-with-limited-levels
21020 ;; Case 1. Started at an heading: de-star headings.
21021 ((org-at-heading-p)
21022 (while (< (point) end)
21023 (when (org-at-heading-p t)
21024 (looking-at org-outline-regexp) (replace-match "")
21027 ;; Case 2. Started at an item: change items into headlines.
21028 ;; One star will be added by `org-list-to-subtree'.
21030 (let* ((stars (make-string
21031 ;; subtract the star that will be added again by
21032 ;; `org-list-to-subtree'
21033 (if (numberp nstars) (1- nstars)
21034 (or (org-current-level) 0))
21037 (cond (nstars "") ; stars from prefix only
21038 ((equal stars "") "") ; before first heading
21039 (org-odd-levels-only "*") ; inside heading, odd
21040 (t "")))) ; inside heading, oddeven
21041 (while (< (point) end)
21042 (when (org-at-item-p)
21043 ;; Pay attention to cases when region ends before list.
21044 (let* ((struct (org-list-struct))
21045 (list-end (min (org-list-get-bottom-point struct) (1+ end))))
21047 (narrow-to-region (point) list-end)
21049 (org-list-to-subtree
21050 (org-list-parse-list t)
21051 '(:istart (concat stars add-stars (funcall get-stars depth))
21052 :icount (concat stars add-stars (funcall get-stars depth)))))))
21055 ;; Case 3. Started at normal text: make every line an heading,
21056 ;; skipping headlines and items.
21059 (if (numberp nstars) nstars (or (org-current-level) 0)) ?*))
21061 (cond (nstars "") ; stars from prefix only
21062 ((equal stars "") "*") ; before first heading
21063 (org-odd-levels-only "**") ; inside heading, odd
21064 (t "*"))) ; inside heading, oddeven
21065 (rpl (concat stars add-stars " "))
21066 (lend (if (listp nstars) (save-excursion (end-of-line) (point)))))
21067 (while (< (point) (if (equal nstars '(4)) lend end))
21068 (when (and (not (or (org-at-heading-p) (org-at-item-p) (org-at-comment-p)))
21069 (looking-at "\\([ \t]*\\)\\(\\S-\\)"))
21070 (replace-match (concat rpl (match-string 2))) (setq toggled t))
21071 (forward-line)))))))
21072 (unless toggled (message "Cannot toggle heading from here"))))
21074 (defun org-meta-return (&optional arg)
21075 "Insert a new heading or wrap a region in a table.
21076 Calls `org-insert-heading' or `org-table-wrap-region', depending
21077 on context. See the individual commands for more information."
21079 (org-check-before-invisible-edit 'insert)
21080 (or (run-hook-with-args-until-success 'org-metareturn-hook)
21081 (let* ((element (org-element-at-point))
21082 (type (org-element-type element)))
21083 (when (eq type 'table-row)
21084 (setq element (org-element-property :parent element))
21085 (setq type 'table))
21086 (if (and (eq type 'table)
21087 (eq (org-element-property :type element) 'org)
21088 (>= (point) (org-element-property :contents-begin element))
21089 (< (point) (org-element-property :contents-end element)))
21090 (call-interactively 'org-table-wrap-region)
21091 (call-interactively 'org-insert-heading)))))
21095 (defsubst org-in-subtree-not-table-p ()
21096 "Are we in a subtree and not in a table?"
21097 (and (not (org-before-first-heading-p))
21098 (not (org-at-table-p))))
21100 ;; Define the Org-mode menus
21101 (easy-menu-define org-tbl-menu org-mode-map "Tbl menu"
21103 ["Align" org-ctrl-c-ctrl-c :active (org-at-table-p)]
21104 ["Next Field" org-cycle (org-at-table-p)]
21105 ["Previous Field" org-shifttab (org-at-table-p)]
21106 ["Next Row" org-return (org-at-table-p)]
21108 ["Blank Field" org-table-blank-field (org-at-table-p)]
21109 ["Edit Field" org-table-edit-field (org-at-table-p)]
21110 ["Copy Field from Above" org-table-copy-down (org-at-table-p)]
21113 ["Move Column Left" org-metaleft (org-at-table-p)]
21114 ["Move Column Right" org-metaright (org-at-table-p)]
21115 ["Delete Column" org-shiftmetaleft (org-at-table-p)]
21116 ["Insert Column" org-shiftmetaright (org-at-table-p)])
21118 ["Move Row Up" org-metaup (org-at-table-p)]
21119 ["Move Row Down" org-metadown (org-at-table-p)]
21120 ["Delete Row" org-shiftmetaup (org-at-table-p)]
21121 ["Insert Row" org-shiftmetadown (org-at-table-p)]
21122 ["Sort lines in region" org-table-sort-lines (org-at-table-p)]
21124 ["Insert Hline" org-ctrl-c-minus (org-at-table-p)])
21126 ["Copy Rectangle" org-copy-special (org-at-table-p)]
21127 ["Cut Rectangle" org-cut-special (org-at-table-p)]
21128 ["Paste Rectangle" org-paste-special (org-at-table-p)]
21129 ["Fill Rectangle" org-table-wrap-region (org-at-table-p)])
21132 ["Set Column Formula" org-table-eval-formula (org-at-table-p)]
21133 ["Set Field Formula" (org-table-eval-formula '(4)) :active (org-at-table-p) :keys "C-u C-c ="]
21134 ["Edit Formulas" org-edit-special (org-at-table-p)]
21136 ["Recalculate line" org-table-recalculate (org-at-table-p)]
21137 ["Recalculate all" (lambda () (interactive) (org-table-recalculate '(4))) :active (org-at-table-p) :keys "C-u C-c *"]
21138 ["Iterate all" (lambda () (interactive) (org-table-recalculate '(16))) :active (org-at-table-p) :keys "C-u C-u C-c *"]
21140 ["Toggle Recalculate Mark" org-table-rotate-recalc-marks (org-at-table-p)]
21142 ["Sum Column/Rectangle" org-table-sum
21143 (or (org-at-table-p) (org-region-active-p))]
21144 ["Which Column?" org-table-current-column (org-at-table-p)])
21146 org-table-toggle-formula-debugger
21147 :style toggle :selected (org-bound-and-true-p org-table-formula-debug)]
21148 ["Show Col/Row Numbers"
21149 org-table-toggle-coordinate-overlays
21151 :selected (org-bound-and-true-p org-table-overlay-coordinates)]
21153 ["Create" org-table-create (and (not (org-at-table-p))
21154 org-enable-table-editor)]
21155 ["Convert Region" org-table-convert-region (not (org-at-table-p 'any))]
21156 ["Import from File" org-table-import (not (org-at-table-p))]
21157 ["Export to File" org-table-export (org-at-table-p)]
21159 ["Create/Convert from/to table.el" org-table-create-with-table.el t]))
21161 (easy-menu-define org-org-menu org-mode-map "Org menu"
21164 ["Cycle Visibility" org-cycle :active (or (bobp) (outline-on-heading-p))]
21165 ["Cycle Global Visibility" org-shifttab :active (not (org-at-table-p))]
21166 ["Sparse Tree..." org-sparse-tree t]
21167 ["Reveal Context" org-reveal t]
21168 ["Show All" show-all t]
21170 ["Subtree to indirect buffer" org-tree-to-indirect-buffer t])
21172 ["New Heading" org-insert-heading t]
21173 ("Navigate Headings"
21174 ["Up" outline-up-heading t]
21175 ["Next" outline-next-visible-heading t]
21176 ["Previous" outline-previous-visible-heading t]
21177 ["Next Same Level" outline-forward-same-level t]
21178 ["Previous Same Level" outline-backward-same-level t]
21180 ["Jump" org-goto t])
21182 ["Refile Subtree" org-refile (org-in-subtree-not-table-p)]
21184 ["Move Subtree Up" org-shiftmetaup (org-in-subtree-not-table-p)]
21185 ["Move Subtree Down" org-shiftmetadown (org-in-subtree-not-table-p)]
21187 ["Copy Subtree" org-copy-special (org-in-subtree-not-table-p)]
21188 ["Cut Subtree" org-cut-special (org-in-subtree-not-table-p)]
21189 ["Paste Subtree" org-paste-special (not (org-at-table-p))]
21191 ["Clone subtree, shift time" org-clone-subtree-with-time-shift t]
21193 ["Copy visible text" org-copy-visible t]
21195 ["Promote Heading" org-metaleft (org-in-subtree-not-table-p)]
21196 ["Promote Subtree" org-shiftmetaleft (org-in-subtree-not-table-p)]
21197 ["Demote Heading" org-metaright (org-in-subtree-not-table-p)]
21198 ["Demote Subtree" org-shiftmetaright (org-in-subtree-not-table-p)]
21200 ["Sort Region/Children" org-sort t]
21202 ["Convert to odd levels" org-convert-to-odd-levels t]
21203 ["Convert to odd/even levels" org-convert-to-oddeven-levels t])
21205 ["Emphasis..." org-emphasize t]
21206 ["Edit Source Example" org-edit-special t]
21208 ["Footnote new/jump" org-footnote-action t]
21209 ["Footnote extra" (org-footnote-action t) :active t :keys "C-u C-c C-x f"])
21211 ["Archive (default method)" org-archive-subtree-default (org-in-subtree-not-table-p)]
21213 ["Move Subtree to Archive file" org-advertized-archive-subtree (org-in-subtree-not-table-p)]
21214 ["Toggle ARCHIVE tag" org-toggle-archive-tag (org-in-subtree-not-table-p)]
21215 ["Move subtree to Archive sibling" org-archive-to-archive-sibling (org-in-subtree-not-table-p)]
21219 ["Store Link (Global)" org-store-link t]
21220 ["Find existing link to here" org-occur-link-in-agenda-files t]
21221 ["Insert Link" org-insert-link t]
21222 ["Follow Link" org-open-at-point t]
21224 ["Next link" org-next-link t]
21225 ["Previous link" org-previous-link t]
21227 ["Descriptive Links"
21228 org-toggle-link-display
21230 :selected org-descriptive-links
21233 org-toggle-link-display
21235 :selected (not org-descriptive-links)])
21238 ["TODO/DONE/-" org-todo t]
21240 ["Next keyword" org-shiftright (org-at-heading-p)]
21241 ["Previous keyword" org-shiftleft (org-at-heading-p)]
21242 ["Complete Keyword" pcomplete (assq :todo-keyword (org-context))]
21243 ["Next keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-at-heading-p))]
21244 ["Previous keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-at-heading-p))])
21245 ["Show TODO Tree" org-show-todo-tree :active t :keys "C-c / t"]
21246 ["Global TODO list" org-todo-list :active t :keys "C-c a t"]
21248 ["Enforce dependencies" (customize-variable 'org-enforce-todo-dependencies)
21249 :selected org-enforce-todo-dependencies :style toggle :active t]
21250 "Settings for tree at point"
21251 ["Do Children sequentially" org-toggle-ordered-property :style radio
21252 :selected (org-entry-get nil "ORDERED")
21253 :active org-enforce-todo-dependencies :keys "C-c C-x o"]
21254 ["Do Children parallel" org-toggle-ordered-property :style radio
21255 :selected (not (org-entry-get nil "ORDERED"))
21256 :active org-enforce-todo-dependencies :keys "C-c C-x o"]
21258 ["Set Priority" org-priority t]
21259 ["Priority Up" org-shiftup t]
21260 ["Priority Down" org-shiftdown t]
21262 ["Get news from all feeds" org-feed-update-all t]
21263 ["Go to the inbox of a feed..." org-feed-goto-inbox t]
21264 ["Customize feeds" (customize-variable 'org-feed-alist) t])
21265 ("TAGS and Properties"
21266 ["Set Tags" org-set-tags-command (not (org-before-first-heading-p))]
21267 ["Change tag in region" org-change-tag-in-region (org-region-active-p)]
21269 ["Set property" org-set-property (not (org-before-first-heading-p))]
21270 ["Column view of properties" org-columns t]
21271 ["Insert Column View DBlock" org-insert-columns-dblock t])
21272 ("Dates and Scheduling"
21273 ["Timestamp" org-time-stamp (not (org-before-first-heading-p))]
21274 ["Timestamp (inactive)" org-time-stamp-inactive (not (org-before-first-heading-p))]
21276 ["1 Day Later" org-shiftright (org-at-timestamp-p)]
21277 ["1 Day Earlier" org-shiftleft (org-at-timestamp-p)]
21278 ["1 ... Later" org-shiftup (org-at-timestamp-p)]
21279 ["1 ... Earlier" org-shiftdown (org-at-timestamp-p)])
21280 ["Compute Time Range" org-evaluate-time-range t]
21281 ["Schedule Item" org-schedule (not (org-before-first-heading-p))]
21282 ["Deadline" org-deadline (not (org-before-first-heading-p))]
21284 ["Custom time format" org-toggle-time-stamp-overlays
21285 :style radio :selected org-display-custom-times]
21287 ["Goto Calendar" org-goto-calendar t]
21288 ["Date from Calendar" org-date-from-calendar t]
21290 ["Start/Restart Timer" org-timer-start t]
21291 ["Pause/Continue Timer" org-timer-pause-or-continue t]
21292 ["Stop Timer" org-timer-pause-or-continue :active t :keys "C-u C-c C-x ,"]
21293 ["Insert Timer String" org-timer t]
21294 ["Insert Timer Item" org-timer-item t])
21296 ["Clock in" org-clock-in :active t :keys "C-c C-x C-i"]
21297 ["Switch task" (lambda () (interactive) (org-clock-in '(4))) :active t :keys "C-u C-c C-x C-i"]
21298 ["Clock out" org-clock-out t]
21299 ["Clock cancel" org-clock-cancel t]
21301 ["Mark as default task" org-clock-mark-default-task t]
21302 ["Clock in, mark as default" (lambda () (interactive) (org-clock-in '(16))) :active t :keys "C-u C-u C-c C-x C-i"]
21303 ["Goto running clock" org-clock-goto t]
21305 ["Display times" org-clock-display t]
21306 ["Create clock table" org-clock-report t]
21308 ["Record DONE time"
21309 (progn (setq org-log-done (not org-log-done))
21310 (message "Switching to %s will %s record a timestamp"
21311 (car org-done-keywords)
21312 (if org-log-done "automatically" "not")))
21313 :style toggle :selected org-log-done])
21315 ["Agenda Command..." org-agenda t]
21316 ["Set Restriction Lock" org-agenda-set-restriction-lock t]
21317 ("File List for Agenda")
21318 ("Special views current file"
21319 ["TODO Tree" org-show-todo-tree t]
21320 ["Check Deadlines" org-check-deadlines t]
21321 ["Timeline" org-timeline t]
21322 ["Tags/Property tree" org-match-sparse-tree t])
21324 ["Export/Publish..." org-export-dispatch t]
21326 ["Org CDLaTeX mode" org-cdlatex-mode :style toggle
21327 :selected org-cdlatex-mode]
21328 ["Insert Environment" cdlatex-environment (fboundp 'cdlatex-environment)]
21329 ["Insert math symbol" cdlatex-math-symbol (fboundp 'cdlatex-math-symbol)]
21330 ["Modify math symbol" org-cdlatex-math-modify
21331 (org-inside-LaTeX-fragment-p)]
21332 ["Insert citation" org-reftex-citation t]
21334 ["Template for BEAMER" (org-beamer-insert-options-template) t])
21337 ["Push Files and Views" org-mobile-push t]
21338 ["Get Captured and Flagged" org-mobile-pull t]
21339 ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "C-c a ?"]
21341 ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
21344 ["Show Version" org-version t]
21345 ["Info Documentation" org-info t])
21347 ["Browse Org Group" org-customize t]
21349 ["Expand This Menu" org-create-customize-menu
21350 (fboundp 'customize-menu-create)])
21351 ["Send bug report" org-submit-bug-report t]
21354 ["Refresh setup current buffer" org-mode-restart t]
21355 ["Reload Org (after update)" org-reload t]
21356 ["Reload Org uncompiled" (org-reload t) :active t :keys "C-u C-c C-x !"])
21359 (defun org-info (&optional node)
21360 "Read documentation for Org-mode in the info system.
21361 With optional NODE, go directly to that node."
21363 (info (format "(org)%s" (or node ""))))
21366 (defun org-submit-bug-report ()
21367 "Submit a bug report on Org-mode via mail.
21369 Don't hesitate to report any problems or inaccurate documentation.
21371 If you don't have setup sending mail from (X)Emacs, please copy the
21372 output buffer into your mail program, as it gives us important
21373 information about your Org-mode version and configuration."
21375 (require 'reporter)
21376 (org-load-modules-maybe)
21377 (org-require-autoloaded-modules)
21378 (let ((reporter-prompt-for-summary-p "Bug report subject: "))
21379 (reporter-submit-bug-report
21380 "emacs-orgmode@gnu.org"
21381 (org-version nil 'full)
21383 (save-window-excursion
21384 (org-pop-to-buffer-same-window (get-buffer-create "*Warn about privacy*"))
21385 (delete-other-windows)
21387 (insert "You are about to submit a bug report to the Org-mode mailing list.
21389 We would like to add your full Org-mode and Outline configuration to the
21390 bug report. This greatly simplifies the work of the maintainer and
21391 other experts on the mailing list.
21393 HOWEVER, some variables you have customized may contain private
21394 information. The names of customers, colleagues, or friends, might
21395 appear in the form of file names, tags, todo states, or search strings.
21396 If you answer yes to the prompt, you might want to check and remove
21397 such private information before sending the email.")
21398 (add-text-properties (point-min) (point-max) '(face org-warning))
21399 (when (yes-or-no-p "Include your Org-mode configuration ")
21403 (string-match "\\`\\(org-\\|outline-\\)" (symbol-name v))
21404 (or (and (symbol-value v)
21405 (string-match "\\(-hook\\|-function\\)\\'" (symbol-name v)))
21407 (get v 'custom-type) (get v 'standard-value)
21408 (not (equal (symbol-value v) (eval (car (get v 'standard-value)))))))
21410 (kill-buffer (get-buffer "*Warn about privacy*"))
21413 "Remember to cover the basics, that is, what you expected to happen and
21414 what in fact did happen. You don't know how to make a good report? See
21416 http://orgmode.org/manual/Feedback.html#Feedback
21418 Your bug report will be posted to the Org-mode mailing list.
21419 ------------------------------------------------------------------------")
21421 (if (re-search-backward "^\\(Subject: \\)Org-mode version \\(.*?\\);[ \t]*\\(.*\\)" nil t)
21422 (replace-match "\\1Bug: \\3 [\\2]")))))
21425 (defun org-install-agenda-files-menu ()
21426 (let ((bl (buffer-list)))
21429 (set-buffer (pop bl))
21430 (if (derived-mode-p 'org-mode) (setq bl nil)))
21431 (when (derived-mode-p 'org-mode)
21433 '("Org") "File List for Agenda"
21436 ["Edit File List" (org-edit-agenda-file-list) t]
21437 ["Add/Move Current File to Front of List" org-agenda-file-to-front t]
21438 ["Remove Current File from List" org-remove-file t]
21439 ["Cycle through agenda files" org-cycle-agenda-files t]
21440 ["Occur in all agenda files" org-occur-in-agenda-files t]
21442 (mapcar 'org-file-menu-entry (org-agenda-files t))))))))
21446 (defun org-require-autoloaded-modules ()
21449 '(org-agenda org-archive org-attach org-clock org-colview org-id
21450 org-table org-timer)))
21453 (defun org-reload (&optional uncompiled)
21454 "Reload all org lisp files.
21455 With prefix arg UNCOMPILED, load the uncompiled versions."
21457 (require 'loadhist)
21458 (let* ((org-dir (org-find-library-dir "org"))
21459 (contrib-dir (or (org-find-library-dir "org-contribdir") org-dir))
21460 (feature-re "^\\(org\\|ob\\|ox\\)\\(-.*\\)?")
21461 (remove-re (mapconcat 'identity
21462 (mapcar (lambda (f) (concat "^" f "$"))
21463 (list (if (featurep 'xemacs)
21465 "org-colview-xemacs")
21466 "org" "org-loaddefs" "org-version"))
21468 (feats (delete-dups
21469 (mapcar 'file-name-sans-extension
21470 (mapcar 'file-name-nondirectory
21472 (mapcar 'feature-file
21479 (if (and (string-match feature-re f)
21480 (not (string-match remove-re f)))
21484 (list "org-version" "org")))
21485 (load-suffixes (when (boundp 'load-suffixes) load-suffixes))
21486 (load-suffixes (if uncompiled (reverse load-suffixes) load-suffixes))
21487 load-uncore load-misses)
21490 (mapcar (lambda (f)
21491 (or (org-load-noerror-mustsuffix (concat org-dir f))
21492 (and (string= org-dir contrib-dir)
21493 (org-load-noerror-mustsuffix (concat contrib-dir f)))
21494 (and (org-load-noerror-mustsuffix (concat (org-find-library-dir f) f))
21495 (add-to-list 'load-uncore f 'append)
21500 (message "The following feature%s found in load-path, please check if that's correct:\n%s"
21501 (if (> (length load-uncore) 1) "s were" " was") load-uncore))
21503 (message "Some error occurred while reloading Org feature%s\n%s\nPlease check *Messages*!\n%s"
21504 (if (> (length load-misses) 1) "s" "") load-misses (org-version nil 'full))
21505 (message "Successfully reloaded Org\n%s" (org-version nil 'full)))))
21508 (defun org-customize ()
21509 "Call the customize function with org as argument."
21511 (org-load-modules-maybe)
21512 (org-require-autoloaded-modules)
21513 (customize-browse 'org))
21515 (defun org-create-customize-menu ()
21516 "Create a full customization menu for Org-mode, insert it into the menu."
21518 (org-load-modules-maybe)
21519 (org-require-autoloaded-modules)
21520 (if (fboundp 'customize-menu-create)
21523 '("Org") "Customize"
21524 `(["Browse Org group" org-customize t]
21526 ,(customize-menu-create 'org)
21527 ["Set" Custom-set t]
21528 ["Save" Custom-save t]
21529 ["Reset to Current" Custom-reset-current t]
21530 ["Reset to Saved" Custom-reset-saved t]
21531 ["Reset to Standard Settings" Custom-reset-standard t]))
21532 (message "\"Org\"-menu now contains full customization menu"))
21533 (error "Cannot expand menu (outdated version of cus-edit.el)")))
21535 ;;;; Miscellaneous stuff
21537 ;;; Generally useful functions
21539 (defsubst org-get-at-eol (property n)
21540 "Get text property PROPERTY at the end of line less N characters."
21541 (get-text-property (- (point-at-eol) n) property))
21543 (defun org-find-text-property-in-string (prop s)
21544 "Return the first non-nil value of property PROP in string S."
21545 (or (get-text-property 0 prop s)
21546 (get-text-property (or (next-single-property-change 0 prop s) 0)
21549 (defun org-display-warning (message) ;; Copied from Emacs-Muse
21550 "Display the given MESSAGE as a warning."
21551 (if (fboundp 'display-warning)
21552 (display-warning 'org message
21553 (if (featurep 'xemacs) 'warning :warning))
21554 (let ((buf (get-buffer-create "*Org warnings*")))
21555 (with-current-buffer buf
21556 (goto-char (point-max))
21557 (insert "Warning (Org): " message)
21560 (display-buffer buf)
21563 (defun org-eval (form)
21564 "Eval FORM and return result."
21565 (condition-case error
21567 (error (format "%%![Error: %s]" error))))
21569 (defun org-in-clocktable-p ()
21570 "Check if the cursor is in a clocktable."
21571 (let ((pos (point)) start)
21574 (and (re-search-backward "^[ \t]*#\\+BEGIN:[ \t]+clocktable" nil t)
21575 (setq start (match-beginning 0))
21576 (re-search-forward "^[ \t]*#\\+END:.*" nil t)
21577 (>= (match-end 0) pos)
21580 (defun org-in-verbatim-emphasis ()
21582 (and (org-in-regexp org-emph-re 2)
21583 (>= (point) (match-beginning 3))
21584 (<= (point) (match-end 4))
21585 (member (match-string 3) '("=" "~")))))
21587 (defun org-goto-marker-or-bmk (marker &optional bookmark)
21588 "Go to MARKER, widen if necessary. When marker is not live, try BOOKMARK."
21589 (if (and marker (marker-buffer marker)
21590 (buffer-live-p (marker-buffer marker)))
21592 (org-pop-to-buffer-same-window (marker-buffer marker))
21593 (if (or (> marker (point-max)) (< marker (point-min)))
21596 (org-show-context 'org-goto))
21598 (bookmark-jump bookmark)
21599 (error "Cannot find location"))))
21601 (defun org-quote-csv-field (s)
21602 "Quote field for inclusion in CSV material."
21603 (if (string-match "[\",]" s)
21604 (concat "\"" (mapconcat 'identity (split-string s "\"") "\"\"") "\"")
21607 (defun org-force-self-insert (N)
21608 "Needed to enforce self-insert under remapping."
21610 (self-insert-command N))
21612 (defun org-string-width (s)
21613 "Compute width of string, ignoring invisible characters.
21614 This ignores character with invisibility property `org-link', and also
21615 characters with property `org-cwidth', because these will become invisible
21616 upon the next fontification round."
21618 (when (or (eq t buffer-invisibility-spec)
21619 (assq 'org-link buffer-invisibility-spec))
21620 (while (setq b (text-property-any 0 (length s)
21621 'invisible 'org-link s))
21622 (setq s (concat (substring s 0 b)
21623 (substring s (or (next-single-property-change
21624 b 'invisible s) (length s)))))))
21625 (while (setq b (text-property-any 0 (length s) 'org-cwidth t s))
21626 (setq s (concat (substring s 0 b)
21627 (substring s (or (next-single-property-change
21628 b 'org-cwidth s) (length s))))))
21629 (setq l (string-width s) b -1)
21630 (while (setq b (text-property-any (1+ b) (length s) 'org-dwidth t s))
21631 (setq l (- l (get-text-property b 'org-dwidth-n s))))
21634 (defun org-shorten-string (s maxlength)
21635 "Shorten string S so tht it is no longer than MAXLENGTH characters.
21636 If the string is shorter or has length MAXLENGTH, just return the
21637 original string. If it is longer, the functions finds a space in the
21638 string, breaks this string off at that locations and adds three dots
21639 as ellipsis. Including the ellipsis, the string will not be longer
21640 than MAXLENGTH. If finding a good breaking point in the string does
21641 not work, the string is just chopped off in the middle of a word
21643 (if (<= (length s) maxlength)
21645 (let* ((n (max (- maxlength 4) 1))
21646 (re (concat "\\`\\(.\\{1," (int-to-string n) "\\}[^ ]\\)\\([ ]\\|\\'\\)")))
21647 (if (string-match re s)
21648 (concat (match-string 1 s) "...")
21649 (concat (substring s 0 (max (- maxlength 3) 0)) "...")))))
21651 (defun org-get-indentation (&optional line)
21652 "Get the indentation of the current line, interpreting tabs.
21653 When LINE is given, assume it represents a line and compute its indentation."
21655 (if (string-match "^ *" (org-remove-tabs line))
21658 (beginning-of-line 1)
21659 (skip-chars-forward " \t")
21660 (current-column))))
21662 (defun org-get-string-indentation (s)
21663 "What indentation has S due to SPACE and TAB at the beginning of the string?"
21664 (let ((n -1) (i 0) (w tab-width) c)
21666 (while (< (setq n (1+ n)) (length s))
21667 (setq c (aref s n))
21668 (cond ((= c ?\ ) (setq i (1+ i)))
21669 ((= c ?\t) (setq i (* (/ (+ w i) w) w)))
21670 (t (throw 'exit t)))))
21673 (defun org-remove-tabs (s &optional width)
21674 "Replace tabulators in S with spaces.
21675 Assumes that s is a single line, starting in column 0."
21676 (setq width (or width tab-width))
21677 (while (string-match "\t" s)
21678 (setq s (replace-match
21680 (- (* width (/ (+ (match-beginning 0) width) width))
21681 (match-beginning 0)) ?\ )
21685 (defun org-fix-indentation (line ind)
21686 "Fix indentation in LINE.
21687 IND is a cons cell with target and minimum indentation.
21688 If the current indentation in LINE is smaller than the minimum,
21689 leave it alone. If it is larger than ind, set it to the target."
21690 (let* ((l (org-remove-tabs line))
21691 (i (org-get-indentation l))
21692 (i1 (car ind)) (i2 (cdr ind)))
21693 (if (>= i i2) (setq l (substring line i2)))
21695 (concat (make-string i1 ?\ ) l)
21698 (defun org-remove-indentation (code &optional n)
21699 "Remove the maximum common indentation from the lines in CODE.
21700 N may optionally be the number of spaces to remove."
21703 (org-do-remove-indentation n)
21706 (defun org-do-remove-indentation (&optional n)
21707 "Remove the maximum common indentation from the buffer."
21708 (untabify (point-min) (point-max))
21709 (let ((min 10000) re)
21712 (goto-char (point-min))
21713 (while (re-search-forward "^ *[^ \n]" nil t)
21714 (setq min (min min (1- (- (match-end 0) (match-beginning 0)))))))
21715 (unless (or (= min 0) (= min 10000))
21716 (setq re (format "^ \\{%d\\}" min))
21717 (goto-char (point-min))
21718 (while (re-search-forward re nil t)
21723 (defun org-fill-template (template alist)
21724 "Find each %key of ALIST in TEMPLATE and replace it."
21725 (let ((case-fold-search nil)
21727 (setq alist (sort (copy-sequence alist)
21728 (lambda (a b) (< (length (car a)) (length (car b))))))
21729 (while (setq entry (pop alist))
21731 (replace-regexp-in-string
21732 (concat "%" (regexp-quote (car entry)))
21733 (or (cdr entry) "") template t t)))
21736 (defun org-base-buffer (buffer)
21737 "Return the base buffer of BUFFER, if it has one. Else return the buffer."
21740 (or (buffer-base-buffer buffer)
21743 (defun org-wrap (string &optional width lines)
21744 "Wrap string to either a number of lines, or a width in characters.
21745 If WIDTH is non-nil, the string is wrapped to that width, however many lines
21746 that costs. If there is a word longer than WIDTH, the text is actually
21747 wrapped to the length of that word.
21748 IF WIDTH is nil and LINES is non-nil, the string is forced into at most that
21749 many lines, whatever width that takes.
21750 The return value is a list of lines, without newlines at the end."
21751 (let* ((words (org-split-string string "[ \t\n]+"))
21752 (maxword (apply 'max (mapcar 'org-string-width words)))
21755 (org-do-wrap words (max maxword width)))
21758 (setq ll (org-do-wrap words maxword))
21759 (if (<= (length ll) lines)
21762 (while (> (length ll) lines)
21764 (setq ll (org-do-wrap words w)))
21766 (t (error "Cannot wrap this")))))
21768 (defun org-do-wrap (words width)
21769 "Create lines of maximum width WIDTH (in characters) from word list WORDS."
21772 (setq line (pop words))
21773 (while (and words (< (+ (length line) (length (car words))) width))
21774 (setq line (concat line " " (pop words))))
21775 (setq lines (push line lines)))
21778 (defun org-split-string (string &optional separators)
21779 "Splits STRING into substrings at SEPARATORS.
21780 No empty strings are returned if there are matches at the beginning
21781 and end of string."
21782 (let ((rexp (or separators "[ \f\t\n\r\v]+"))
21786 (while (and (string-match rexp string
21788 (= start (match-beginning 0))
21789 (< start (length string)))
21791 (< (match-beginning 0) (length string)))
21793 (or (eq (match-beginning 0) 0)
21794 (and (eq (match-beginning 0) (match-end 0))
21795 (eq (match-beginning 0) start))
21797 (cons (substring string start (match-beginning 0))
21799 (setq start (match-end 0)))
21800 (or (eq start (length string))
21802 (cons (substring string start)
21806 (defun org-quote-vert (s)
21807 "Replace \"|\" with \"\\vert\"."
21808 (while (string-match "|" s)
21809 (setq s (replace-match "\\vert" t t s)))
21812 (defun org-uuidgen-p (s)
21813 "Is S an ID created by UUIDGEN?"
21814 (string-match "\\`[0-9a-f]\\{8\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{12\\}\\'" (downcase s)))
21816 (defun org-in-src-block-p (&optional inside)
21817 "Whether point is in a code source block.
21818 When INSIDE is non-nil, don't consider we are within a src block
21819 when point is at #+BEGIN_SRC or #+END_SRC."
21820 (let ((case-fold-search t) ov)
21821 (or (and (setq ov (overlays-at (point)))
21822 (memq 'org-block-background
21823 (overlay-properties (car ov))))
21827 (beginning-of-line)
21828 (looking-at ".*#\\+\\(begin\\|end\\)_src")))))))
21830 (defun org-context ()
21831 "Return a list of contexts of the current cursor position.
21832 If several contexts apply, all are returned.
21833 Each context entry is a list with a symbol naming the context, and
21834 two positions indicating start and end of the context. Possible
21837 :headline anywhere in a headline
21838 :headline-stars on the leading stars in a headline
21839 :todo-keyword on a TODO keyword (including DONE) in a headline
21840 :tags on the TAGS in a headline
21841 :priority on the priority cookie in a headline
21842 :item on the first line of a plain list item
21843 :item-bullet on the bullet/number of a plain list item
21844 :checkbox on the checkbox in a plain list item
21845 :table in an org-mode table
21846 :table-special on a special filed in a table
21847 :table-table in a table.el table
21848 :clocktable in a clocktable
21849 :src-block in a source block
21850 :link on a hyperlink
21851 :keyword on a keyword: SCHEDULED, DEADLINE, CLOSE, COMMENT.
21852 :target on a <<target>>
21853 :radio-target on a <<<radio-target>>>
21854 :latex-fragment on a LaTeX fragment
21855 :latex-preview on a LaTeX fragment with overlaid preview image
21857 This function expects the position to be visible because it uses font-lock
21858 faces as a help to recognize the following contexts: :table-special, :link,
21860 (let* ((f (get-text-property (point) 'face))
21861 (faces (if (listp f) f (list f)))
21862 (case-fold-search t)
21863 (p (point)) clist o)
21864 ;; First the large context
21866 ((org-at-heading-p t)
21867 (push (list :headline (point-at-bol) (point-at-eol)) clist)
21869 (beginning-of-line 1)
21870 (looking-at org-todo-line-tags-regexp))
21871 (push (org-point-in-group p 1 :headline-stars) clist)
21872 (push (org-point-in-group p 2 :todo-keyword) clist)
21873 (push (org-point-in-group p 4 :tags) clist))
21875 (skip-chars-backward "^[\n\r \t") (or (bobp) (backward-char 1))
21876 (if (looking-at "\\[#[A-Z0-9]\\]")
21877 (push (org-point-in-group p 0 :priority) clist)))
21880 (push (org-point-in-group p 2 :item-bullet) clist)
21881 (push (list :item (point-at-bol)
21882 (save-excursion (org-end-of-item) (point)))
21884 (and (org-at-item-checkbox-p)
21885 (push (org-point-in-group p 0 :checkbox) clist)))
21888 (push (list :table (org-table-begin) (org-table-end)) clist)
21889 (if (memq 'org-formula faces)
21890 (push (list :table-special
21891 (previous-single-property-change p 'face)
21892 (next-single-property-change p 'face)) clist)))
21893 ((org-at-table-p 'any)
21894 (push (list :table-table) clist)))
21897 (let ((case-fold-search t))
21898 ;; New the "medium" contexts: clocktables, source blocks
21899 (cond ((org-in-clocktable-p)
21900 (push (list :clocktable
21901 (and (or (looking-at "[ \t]*\\(#\\+BEGIN: clocktable\\)")
21902 (re-search-backward "[ \t]*\\(#+BEGIN: clocktable\\)" nil t))
21903 (match-beginning 1))
21904 (and (re-search-forward "[ \t]*#\\+END:?" nil t)
21905 (match-end 0))) clist))
21906 ((org-in-src-block-p)
21907 (push (list :src-block
21908 (and (or (looking-at "[ \t]*\\(#\\+BEGIN_SRC\\)")
21909 (re-search-backward "[ \t]*\\(#+BEGIN_SRC\\)" nil t))
21910 (match-beginning 1))
21911 (and (search-forward "#+END_SRC" nil t)
21912 (match-beginning 0))) clist))))
21915 ;; Now the small context
21917 ((org-at-timestamp-p)
21918 (push (org-point-in-group p 0 :timestamp) clist))
21919 ((memq 'org-link faces)
21921 (previous-single-property-change p 'face)
21922 (next-single-property-change p 'face)) clist))
21923 ((memq 'org-special-keyword faces)
21924 (push (list :keyword
21925 (previous-single-property-change p 'face)
21926 (next-single-property-change p 'face)) clist))
21928 (push (org-point-in-group p 0 :target) clist)
21929 (goto-char (1- (match-beginning 0)))
21930 (if (looking-at org-radio-target-regexp)
21931 (push (org-point-in-group p 0 :radio-target) clist))
21933 ((setq o (car (delq nil
21936 (if (memq x org-latex-fragment-image-overlays) x))
21937 (overlays-at (point))))))
21938 (push (list :latex-fragment
21939 (overlay-start o) (overlay-end o)) clist)
21940 (push (list :latex-preview
21941 (overlay-start o) (overlay-end o)) clist))
21942 ((org-inside-LaTeX-fragment-p)
21943 ;; FIXME: positions wrong.
21944 (push (list :latex-fragment (point) (point)) clist)))
21946 (setq clist (nreverse (delq nil clist)))
21949 ;; FIXME: Compare with at-regexp-p Do we need both?
21950 (defun org-in-regexp (re &optional nlines visually)
21951 "Check if point is inside a match of regexp.
21952 Normally only the current line is checked, but you can include NLINES extra
21953 lines both before and after point into the search.
21954 If VISUALLY is set, require that the cursor is not after the match but
21955 really on, so that the block visually is on the match."
21957 (let ((pos (point))
21958 (eol (point-at-eol (+ 1 (or nlines 0))))
21959 (inc (if visually 1 0)))
21961 (beginning-of-line (- 1 (or nlines 0)))
21962 (while (re-search-forward re eol t)
21963 (if (and (<= (match-beginning 0) pos)
21964 (>= (+ inc (match-end 0)) pos))
21965 (throw 'exit (cons (match-beginning 0) (match-end 0)))))))))
21967 (defun org-at-regexp-p (regexp)
21968 "Is point inside a match of REGEXP in the current line?"
21971 (let ((pos (point)) (end (point-at-eol)))
21972 (beginning-of-line 1)
21973 (while (re-search-forward regexp end t)
21974 (if (and (<= (match-beginning 0) pos)
21975 (>= (match-end 0) pos))
21979 (defun org-between-regexps-p (start-re end-re &optional lim-up lim-down)
21980 "Non-nil when point is between matches of START-RE and END-RE.
21982 Also return a non-nil value when point is on one of the matches.
21984 Optional arguments LIM-UP and LIM-DOWN bound the search; they are
21985 buffer positions. Default values are the positions of headlines
21986 surrounding the point.
21988 The functions returns a cons cell whose car (resp. cdr) is the
21989 position before START-RE (resp. after END-RE)."
21991 (let ((pos (point))
21992 (limit-up (or lim-up (save-excursion (outline-previous-heading))))
21993 (limit-down (or lim-down (save-excursion (outline-next-heading))))
21996 ;; Point is on a block when on START-RE or if START-RE can be
21997 ;; found before it...
21998 (and (or (org-at-regexp-p start-re)
21999 (re-search-backward start-re limit-up t))
22000 (setq beg (match-beginning 0))
22001 ;; ... and END-RE after it...
22002 (goto-char (match-end 0))
22003 (re-search-forward end-re limit-down t)
22004 (> (setq end (match-end 0)) pos)
22005 ;; ... without another START-RE in-between.
22006 (goto-char (match-beginning 0))
22007 (not (re-search-backward start-re (1+ beg) t))
22009 (cons beg end))))))
22011 (defun org-in-block-p (names)
22012 "Non-nil when point belongs to a block whose name belongs to NAMES.
22014 NAMES is a list of strings containing names of blocks.
22016 Return first block name matched, or nil. Beware that in case of
22017 nested blocks, the returned name may not belong to the closest
22021 (let ((case-fold-search t)
22022 (lim-up (save-excursion (outline-previous-heading)))
22023 (lim-down (save-excursion (outline-next-heading))))
22024 (mapc (lambda (name)
22025 (let ((n (regexp-quote name)))
22026 (when (org-between-regexps-p
22027 (concat "^[ \t]*#\\+begin_" n)
22028 (concat "^[ \t]*#\\+end_" n)
22034 (defun org-in-drawer-p ()
22035 "Non-nil if point is within a drawer.
22036 If point is within a drawer, return it, as parsed data."
22037 (let ((element (save-match-data (org-element-at-point))))
22038 (while (and element (not (memq (org-element-type element)
22039 '(drawer property-drawer))))
22040 (setq element (org-element-property :parent element)))
22043 (defun org-occur-in-agenda-files (regexp &optional nlines)
22044 "Call `multi-occur' with buffers for all agenda files."
22045 (interactive "sOrg-files matching: \np")
22046 (let* ((files (org-agenda-files))
22047 (tnames (mapcar 'file-truename files))
22048 (extra org-agenda-text-search-extra-files)
22050 (when (eq (car extra) 'agenda-archives)
22051 (setq extra (cdr extra))
22052 (setq files (org-add-archive-files files)))
22053 (while (setq f (pop extra))
22054 (unless (member (file-truename f) tnames)
22055 (add-to-list 'files f 'append)
22056 (add-to-list 'tnames (file-truename f) 'append)))
22058 (mapcar (lambda (x)
22059 (with-current-buffer
22060 (or (get-file-buffer x) (find-file-noselect x))
22066 (if (boundp 'occur-mode-find-occurrence-hook)
22068 (add-hook 'occur-mode-find-occurrence-hook
22070 (when (derived-mode-p 'org-mode)
22073 (defadvice occur-mode-goto-occurrence
22074 (after org-occur-reveal activate)
22075 (and (derived-mode-p 'org-mode) (org-reveal)))
22076 (defadvice occur-mode-goto-occurrence-other-window
22077 (after org-occur-reveal activate)
22078 (and (derived-mode-p 'org-mode) (org-reveal)))
22079 (defadvice occur-mode-display-occurrence
22080 (after org-occur-reveal activate)
22081 (when (derived-mode-p 'org-mode)
22082 (let ((pos (occur-mode-find-occurrence)))
22083 (with-current-buffer (marker-buffer pos)
22088 (defun org-occur-link-in-agenda-files ()
22089 "Create a link and search for it in the agendas.
22090 The link is not stored in `org-stored-links', it is just created
22091 for the search purpose."
22093 (let ((link (condition-case nil
22094 (org-store-link nil)
22095 (error "Unable to create a link to here"))))
22096 (org-occur-in-agenda-files (regexp-quote link))))
22098 (defun org-reverse-string (string)
22099 "Return the reverse of STRING."
22100 (apply 'string (reverse (string-to-list string))))
22102 ;; defsubst org-uniquify must be defined before first use
22104 (defun org-uniquify-alist (alist)
22105 "Merge elements of ALIST with the same key.
22107 For example, in this alist:
22109 \(org-uniquify-alist '((a 1) (b 2) (a 3)))
22110 => '((a 1 3) (b 2))
22112 merge (a 1) and (a 3) into (a 1 3).
22114 The function returns the new ALIST."
22119 (if (not (assoc (car e) rtn))
22121 (setq n (cons (car e) (append (cdr (assoc (car e) rtn)) (cdr e))))
22122 (setq rtn (assq-delete-all (car e) rtn))
22127 (defun org-delete-all (elts list)
22128 "Remove all elements in ELTS from LIST."
22130 (setq list (delete (pop elts) list)))
22133 (defun org-count (cl-item cl-seq)
22134 "Count the number of occurrences of ITEM in SEQ.
22135 Taken from `count' in cl-seq.el with all keyword arguments removed."
22136 (let ((cl-end (length cl-seq)) (cl-start 0) (cl-count 0) cl-x)
22137 (when (consp cl-seq) (setq cl-seq (nthcdr cl-start cl-seq)))
22138 (while (< cl-start cl-end)
22139 (setq cl-x (if (consp cl-seq) (pop cl-seq) (aref cl-seq cl-start)))
22140 (if (equal cl-item cl-x) (setq cl-count (1+ cl-count)))
22141 (setq cl-start (1+ cl-start)))
22144 (defun org-remove-if (predicate seq)
22145 "Remove everything from SEQ that fulfills PREDICATE."
22149 (if (not (funcall predicate e)) (push e res)))
22152 (defun org-remove-if-not (predicate seq)
22153 "Remove everything from SEQ that does not fulfill PREDICATE."
22157 (if (funcall predicate e) (push e res)))
22160 (defun org-reduce (cl-func cl-seq &rest cl-keys)
22161 "Reduce two-argument FUNCTION across SEQ.
22162 Taken from `reduce' in cl-seq.el with all keyword arguments but
22163 \":initial-value\" removed."
22164 (let ((cl-accum (cond ((memq :initial-value cl-keys)
22165 (cadr (memq :initial-value cl-keys)))
22166 (cl-seq (pop cl-seq))
22167 (t (funcall cl-func)))))
22169 (setq cl-accum (funcall cl-func cl-accum (pop cl-seq))))
22172 (defun org-every (pred seq)
22173 "Return true if PREDICATE is true of every element of SEQ.
22174 Adapted from `every' in cl.el."
22176 (mapc (lambda (e) (unless (funcall pred e) (throw 'org-every nil))) seq)
22179 (defun org-some (pred seq)
22180 "Return true if PREDICATE is true of any element of SEQ.
22181 Adapted from `some' in cl.el."
22183 (mapc (lambda (e) (when (funcall pred e) (throw 'org-some t))) seq)
22186 (defun org-back-over-empty-lines ()
22187 "Move backwards over whitespace, to the beginning of the first empty line.
22188 Returns the number of empty lines passed."
22189 (let ((pos (point)))
22190 (if (cdr (assoc 'heading org-blank-before-new-entry))
22191 (skip-chars-backward " \t\n\r")
22193 (forward-line -1)))
22194 (beginning-of-line 2)
22195 (goto-char (min (point) pos))
22196 (count-lines (point) pos)))
22198 (defun org-skip-whitespace ()
22199 (skip-chars-forward " \t\n\r"))
22201 (defun org-point-in-group (point group &optional context)
22202 "Check if POINT is in match-group GROUP.
22203 If CONTEXT is non-nil, return a list with CONTEXT and the boundaries of the
22204 match. If the match group does not exist or point is not inside it,
22206 (and (match-beginning group)
22207 (>= point (match-beginning group))
22208 (<= point (match-end group))
22210 (list context (match-beginning group) (match-end group))
22213 (defun org-switch-to-buffer-other-window (&rest args)
22214 "Switch to buffer in a second window on the current frame.
22215 In particular, do not allow pop-up frames.
22216 Returns the newly created buffer."
22218 (apply 'switch-to-buffer-other-window args)))
22220 (defun org-combine-plists (&rest plists)
22221 "Create a single property list from all plists in PLISTS.
22222 The process starts by copying the first list, and then setting properties
22223 from the other lists. Settings in the last list are the most significant
22224 ones and overrule settings in the other lists."
22225 (let ((rtn (copy-sequence (pop plists)))
22228 (setq ls (pop plists))
22230 (setq p (pop ls) v (pop ls))
22231 (setq rtn (plist-put rtn p v))))
22234 (defun org-replace-escapes (string table)
22235 "Replace %-escapes in STRING with values in TABLE.
22236 TABLE is an association list with keys like \"%a\" and string values.
22237 The sequences in STRING may contain normal field width and padding information,
22238 for example \"%-5s\". Replacements happen in the sequence given by TABLE,
22239 so values can contain further %-escapes if they are define later in TABLE."
22240 (let ((tbl (copy-alist table))
22241 (case-fold-search nil)
22244 (while (setq e (pop tbl))
22245 (setq re (concat "%-?[0-9.]*" (substring (car e) 1)))
22246 (when (and (cdr e) (string-match re (cdr e)))
22247 (let ((sref (substring (cdr e) (match-beginning 0) (match-end 0)))
22249 (add-text-properties 0 3 (list 'sref sref) safe)
22250 (setcdr e (replace-match safe t t (cdr e)))))
22251 (while (string-match re string)
22252 (setq rpl (format (concat (substring (match-string 0 string) 0 -1) "s")
22254 (setq string (replace-match rpl t t string))))
22255 (while (setq pchg (next-property-change pchg string))
22256 (let ((sref (get-text-property pchg 'sref string)))
22257 (when (and sref (string-match "SREF" string pchg))
22258 (setq string (replace-match sref t t string)))))
22261 (defun org-sublist (list start end)
22262 "Return a section of LIST, from START to END.
22263 Counting starts at 1."
22264 (let (rtn (c start))
22265 (setq list (nthcdr (1- start) list))
22266 (while (and list (<= c end))
22267 (push (pop list) rtn)
22271 (defun org-find-base-buffer-visiting (file)
22272 "Like `find-buffer-visiting' but always return the base buffer and
22273 not an indirect buffer."
22274 (let ((buf (or (get-file-buffer file)
22275 (find-buffer-visiting file))))
22277 (or (buffer-base-buffer buf) buf)
22280 (defun org-image-file-name-regexp (&optional extensions)
22281 "Return regexp matching the file names of images.
22282 If EXTENSIONS is given, only match these."
22283 (if (and (not extensions) (fboundp 'image-file-name-regexp))
22284 (image-file-name-regexp)
22285 (let ((image-file-name-extensions
22287 '("png" "jpeg" "jpg" "gif" "tiff" "tif"
22288 "xbm" "xpm" "pbm" "pgm" "ppm"))))
22290 (regexp-opt (nconc (mapcar 'upcase
22291 image-file-name-extensions)
22292 image-file-name-extensions)
22296 (defun org-file-image-p (file &optional extensions)
22297 "Return non-nil if FILE is an image."
22299 (string-match (org-image-file-name-regexp extensions) file)))
22301 (defun org-get-cursor-date (&optional with-time)
22302 "Return the date at cursor in as a time.
22303 This works in the calendar and in the agenda, anywhere else it just
22304 returns the current time.
22305 If WITH-TIME is non-nil, returns the time of the event at point (in
22306 the agenda) or the current time of the day."
22307 (let (date day defd tp tm hod mod)
22309 (setq tp (get-text-property (point) 'time))
22310 (when (and tp (string-match "\\([0-9][0-9]\\):\\([0-9][0-9]\\)" tp))
22311 (setq hod (string-to-number (match-string 1 tp))
22312 mod (string-to-number (match-string 2 tp))))
22313 (or tp (setq hod (nth 2 (decode-time (current-time)))
22314 mod (nth 1 (decode-time (current-time))))))
22316 ((eq major-mode 'calendar-mode)
22317 (setq date (calendar-cursor-to-date)
22318 defd (encode-time 0 (or mod 0) (or hod 0)
22319 (nth 1 date) (nth 0 date) (nth 2 date))))
22320 ((eq major-mode 'org-agenda-mode)
22321 (setq day (get-text-property (point) 'day))
22323 (setq date (calendar-gregorian-from-absolute day)
22324 defd (encode-time 0 (or mod 0) (or hod 0)
22325 (nth 1 date) (nth 0 date) (nth 2 date))))))
22326 (or defd (current-time))))
22328 (defun org-mark-subtree (&optional up)
22329 "Mark the current subtree.
22330 This puts point at the start of the current subtree, and mark at
22331 the end. If a numeric prefix UP is given, move up into the
22332 hierarchy of headlines by UP levels before marking the subtree."
22334 (org-with-limited-levels
22335 (cond ((org-at-heading-p) (beginning-of-line))
22336 ((org-before-first-heading-p) (user-error "Not in a subtree"))
22337 (t (outline-previous-visible-heading 1))))
22338 (when up (while (and (> up 0) (org-up-heading-safe)) (decf up)))
22339 (if (org-called-interactively-p 'any)
22340 (call-interactively 'org-mark-element)
22341 (org-mark-element)))
22346 (defun org--get-expected-indentation (element contentsp)
22347 "Expected indentation column for current line, according to ELEMENT.
22348 ELEMENT is an element containing point. CONTENTSP is non-nil
22349 when indentation is to be computed according to contents of
22351 (let ((type (org-element-type element))
22352 (start (org-element-property :begin element)))
22353 (org-with-wide-buffer
22357 (footnote-definition 0)
22358 ((headline inlinetask nil)
22359 (if (not org-adapt-indentation) 0
22360 (let ((level (org-current-level)))
22361 (if level (1+ level) 0))))
22363 (org-list-item-body-column
22364 (or (org-element-property :post-affiliated element) start)))
22367 (org-get-indentation))))
22368 ((memq type '(headline inlinetask nil))
22369 (if (save-excursion (beginning-of-line) (looking-at "[ \t]*$"))
22370 (org--get-expected-indentation element t)
22372 ((eq type 'footnote-definition) 0)
22373 ;; First paragraph of a footnote definition or an item.
22374 ;; Indent like parent.
22375 ((< (line-beginning-position) start)
22376 (org--get-expected-indentation
22377 (org-element-property :parent element) t))
22378 ;; At first line: indent according to previous sibling, if any,
22379 ;; ignoring footnote definitions and inline tasks, or parent's
22381 ((= (line-beginning-position) start)
22384 (if (= (point-min) start) (throw 'exit 0)
22385 (goto-char (1- start))
22386 (let ((previous (org-element-at-point)))
22387 (while (let ((parent (org-element-property :parent previous)))
22389 (setq previous parent)
22390 (<= (org-element-property :end parent) start))))
22391 (cond ((or (not previous)
22392 (> (org-element-property :end previous) start))
22393 (throw 'exit (org--get-expected-indentation previous t)))
22394 ((memq (org-element-type previous)
22395 '(footnote-definition inlinetask))
22396 (setq start (org-element-property :begin previous)))
22397 (t (goto-char (org-element-property :begin previous))
22398 (throw 'exit (org-get-indentation)))))))))
22399 ;; Otherwise, move to the first non-blank line above.
22401 (beginning-of-line)
22402 (let ((pos (point)))
22403 (skip-chars-backward " \r\t\n")
22405 ;; Two blank lines end a footnote definition or a plain
22406 ;; list. When we indent an empty line after them, the
22407 ;; containing list or footnote definition is over, so it
22408 ;; qualifies as a previous sibling. Therefore, we indent
22409 ;; like its first line.
22410 ((and (memq type '(footnote-definition plain-list))
22411 (> (count-lines (point) pos) 2))
22413 (org-get-indentation))
22414 ;; Line above is the first one of a paragraph at the
22415 ;; beginning of an item or a footnote definition. Indent
22417 ((< (line-beginning-position) start)
22418 (org--get-expected-indentation
22419 (org-element-property :parent element) t))
22420 ;; POS is after contents in a greater element. Indent like
22421 ;; the beginning of the element.
22423 ;; As a special case, if point is at the end of a footnote
22424 ;; definition or an item, indent like the very last element
22426 ((let ((cend (org-element-property :contents-end element)))
22427 (and cend (<= cend pos)))
22428 (if (memq type '(footnote-definition item plain-list))
22429 (org--get-expected-indentation (org-element-at-point) nil)
22431 (org-get-indentation)))
22432 ;; In any other case, indent like the current line.
22433 (t (org-get-indentation)))))))))
22435 (defun org--align-node-property ()
22436 "Align node property at point.
22437 Alignment is done according to `org-property-format', which see."
22438 (when (save-excursion
22439 (beginning-of-line)
22440 (looking-at org-property-re))
22442 (concat (match-string 4)
22443 (format org-property-format (match-string 1) (match-string 3)))
22446 (defun org-indent-line ()
22447 "Indent line depending on context.
22449 Indentation is done according to the following rules:
22451 - Footnote definitions, headlines and inline tasks have to
22454 - On the very first line of an element, consider, in order, the
22455 next rules until one matches:
22457 1. If there's a sibling element before, ignoring footnote
22458 definitions and inline tasks, indent like its first line.
22460 2. If element has a parent, indent like its contents. More
22461 precisely, if parent is an item, indent after the
22462 description part, if any, or the bullet (see
22463 ``org-list-description-max-indent'). Else, indent like
22464 parent's first line.
22466 3. Otherwise, indent relatively to current level, if
22467 `org-adapt-indentation' is non-nil, or to left margin.
22469 - On a blank line at the end of a plain list, an item, or
22470 a footnote definition, indent like the very last element
22473 - In the code part of a source block, use language major mode
22474 to indent current line if `org-src-tab-acts-natively' is
22475 non-nil. If it is nil, do nothing.
22477 - Otherwise, indent like the first non-blank line above.
22479 The function doesn't indent an item as it could break the whole
22480 list structure. Instead, use \\<org-mode-map>\\[org-shiftmetaleft] or \
22481 \\[org-shiftmetaright].
22483 Also align node properties according to `org-property-format'."
22487 (let ((indent-line-function
22488 (cadadr (assq 'indent-line-function org-fb-vars))))
22489 (indent-according-to-mode)))
22490 ((org-at-heading-p) 'noindent)
22492 (let* ((element (save-excursion (beginning-of-line) (org-element-at-point)))
22493 (type (org-element-type element)))
22494 (cond ((and (memq type '(plain-list item))
22495 (= (line-beginning-position)
22496 (or (org-element-property :post-affiliated element)
22497 (org-element-property :begin element))))
22499 ((and (eq type 'src-block)
22500 org-src-tab-acts-natively
22501 (> (line-beginning-position)
22502 (org-element-property :post-affiliated element))
22503 (< (line-beginning-position)
22504 (org-with-wide-buffer
22505 (goto-char (org-element-property :end element))
22506 (skip-chars-backward " \r\t\n")
22507 (line-beginning-position))))
22508 (let ((org-src-strip-leading-and-trailing-blank-lines nil))
22509 (org-babel-do-key-sequence-in-edit-buffer (kbd "TAB"))))
22511 (let ((column (org--get-expected-indentation element nil)))
22512 ;; Preserve current column.
22513 (if (<= (current-column) (current-indentation))
22514 (org-indent-line-to column)
22515 (save-excursion (org-indent-line-to column))))
22516 ;; Align node property. Also preserve current column.
22517 (when (eq type 'node-property)
22518 (let ((column (current-column)))
22519 (org--align-node-property)
22520 (org-move-to-column column)))))))))
22522 (defun org-indent-region (start end)
22523 "Indent each non-blank line in the region.
22524 Called from a program, START and END specify the region to
22525 indent. The function will not indent contents of example blocks,
22526 verse blocks and export blocks as leading white spaces are
22527 assumed to be significant there."
22531 (beginning-of-line)
22534 ;; Set IND as indentation for all lines between point and
22535 ;; POS or END, whichever comes first. Blank lines are
22536 ;; ignored. Leave point after POS once done.
22537 (let ((limit (copy-marker (min end pos))))
22538 (while (< (point) limit)
22539 (unless (org-looking-at-p "[ \t]*$") (org-indent-line-to ind))
22541 (set-marker limit nil))))
22542 (end (copy-marker end)))
22543 (while (< (point) end)
22544 (if (or (org-looking-at-p " \r\t\n") (org-at-heading-p)) (forward-line)
22545 (let* ((element (org-element-at-point))
22546 (type (org-element-type element))
22547 (element-end (copy-marker (org-element-property :end element)))
22548 (ind (org--get-expected-indentation element nil)))
22549 (if (or (memq type '(paragraph table table-row))
22550 (not (or (org-element-property :contents-begin element)
22552 '(example-block export-block src-block)))))
22553 ;; Elements here are indented as a single block. Also
22554 ;; align node properties.
22556 (when (eq type 'node-property)
22557 (org--align-node-property)
22558 (beginning-of-line))
22559 (funcall indent-to ind element-end))
22560 ;; Elements in this category consist of three parts:
22561 ;; before the contents, the contents, and after the
22562 ;; contents. The contents are treated specially,
22563 ;; according to the element type, or not indented at
22564 ;; all. Other parts are indented as a single block.
22565 (let* ((post (copy-marker
22566 (or (org-element-property :post-affiliated element)
22567 (org-element-property :begin element))))
22571 ((not (org-element-property :contents-begin element))
22572 ;; Fake contents for source blocks.
22573 (org-with-wide-buffer
22577 ((memq type '(footnote-definition item plain-list))
22578 ;; Contents in these elements could start on
22579 ;; the same line as the beginning of the
22580 ;; element. Make sure we start indenting
22581 ;; from the second line.
22582 (org-with-wide-buffer
22586 (t (org-element-property :contents-begin element)))))
22588 (or (org-element-property :contents-end element)
22589 ;; Fake contents for source blocks.
22590 (org-with-wide-buffer
22591 (goto-char element-end)
22592 (skip-chars-backward " \r\t\n")
22593 (line-beginning-position))))))
22594 (funcall indent-to ind cbeg)
22595 (when (< (point) end)
22597 ((example-block export-block verse-block))
22599 ;; In a source block, indent source code according
22600 ;; to language major mode, but only if
22601 ;; `org-src-tab-acts-natively' is non-nil.
22602 (when (and (< (point) end) org-src-tab-acts-natively)
22604 (let (org-src-strip-leading-and-trailing-blank-lines
22605 ;; Region boundaries in edit buffer.
22606 (start (1+ (- (point) cbeg)))
22607 (end (- (min cend end) cbeg)))
22608 (org-babel-do-in-edit-buffer
22609 (indent-region start end))))))
22610 (t (org-indent-region (point) (min cend end))))
22611 (goto-char (min cend end))
22612 (when (< (point) end) (funcall indent-to ind element-end)))
22613 (set-marker post nil)
22614 (set-marker cbeg nil)
22615 (set-marker cend nil)))
22616 (set-marker element-end nil))))
22617 (set-marker end nil))))
22619 (defun org-indent-drawer ()
22620 "Indent the drawer at point."
22622 (unless (save-excursion
22623 (beginning-of-line)
22624 (org-looking-at-p org-drawer-regexp))
22625 (user-error "Not at a drawer"))
22626 (let ((element (org-element-at-point)))
22627 (unless (memq (org-element-type element) '(drawer property-drawer))
22628 (user-error "Not at a drawer"))
22629 (org-with-wide-buffer
22630 (org-indent-region (org-element-property :begin element)
22631 (org-element-property :end element))))
22632 (message "Drawer at point indented"))
22634 (defun org-indent-block ()
22635 "Indent the block at point."
22637 (unless (save-excursion
22638 (beginning-of-line)
22639 (let ((case-fold-search t))
22640 (org-looking-at-p "[ \t]*#\\+\\(begin\\|end\\)_")))
22641 (user-error "Not at a block"))
22642 (let ((element (org-element-at-point)))
22643 (unless (memq (org-element-type element)
22644 '(comment-block center-block example-block export-block
22645 quote-block special-block src-block
22647 (user-error "Not at a block"))
22648 (org-with-wide-buffer
22649 (org-indent-region (org-element-property :begin element)
22650 (org-element-property :end element))))
22651 (message "Block at point indented"))
22656 ;; We use our own fill-paragraph and auto-fill functions.
22658 ;; `org-fill-paragraph' relies on adaptive filling and context
22659 ;; checking. Appropriate `fill-prefix' is computed with
22660 ;; `org-adaptive-fill-function'.
22662 ;; `org-auto-fill-function' takes care of auto-filling. It calls
22663 ;; `do-auto-fill' only on valid areas with `fill-prefix' shadowed with
22664 ;; `org-adaptive-fill-function' value. Internally,
22665 ;; `org-comment-line-break-function' breaks the line.
22667 ;; `org-setup-filling' installs filling and auto-filling related
22668 ;; variables during `org-mode' initialization.
22670 (defvar org-element-paragraph-separate) ; org-element.el
22671 (defun org-setup-filling ()
22672 (require 'org-element)
22673 ;; Prevent auto-fill from inserting unwanted new items.
22674 (when (boundp 'fill-nobreak-predicate)
22676 'fill-nobreak-predicate
22678 (append fill-nobreak-predicate
22679 '(org-fill-line-break-nobreak-p
22680 org-fill-paragraph-with-timestamp-nobreak-p)))))
22681 (let ((paragraph-ending (substring org-element-paragraph-separate 1)))
22682 (org-set-local 'paragraph-start paragraph-ending)
22683 (org-set-local 'paragraph-separate paragraph-ending))
22684 (org-set-local 'fill-paragraph-function 'org-fill-paragraph)
22685 (org-set-local 'auto-fill-inhibit-regexp nil)
22686 (org-set-local 'adaptive-fill-function 'org-adaptive-fill-function)
22687 (org-set-local 'normal-auto-fill-function 'org-auto-fill-function)
22688 (org-set-local 'comment-line-break-function 'org-comment-line-break-function))
22690 (defun org-fill-line-break-nobreak-p ()
22691 "Non-nil when a new line at point would create an Org line break."
22693 (skip-chars-backward "[ \t]")
22694 (skip-chars-backward "\\\\")
22695 (looking-at "\\\\\\\\\\($\\|[^\\\\]\\)")))
22697 (defun org-fill-paragraph-with-timestamp-nobreak-p ()
22698 "Non-nil when a new line at point would split a timestamp."
22699 (and (org-at-timestamp-p t)
22700 (not (looking-at org-ts-regexp-both))))
22702 (declare-function message-in-body-p "message" ())
22703 (defvar orgtbl-line-start-regexp) ; From org-table.el
22704 (defun org-adaptive-fill-function ()
22705 "Compute a fill prefix for the current line.
22706 Return fill prefix, as a string, or nil if current line isn't
22707 meant to be filled. For convenience, if `adaptive-fill-regexp'
22708 matches in paragraphs or comments, use it."
22710 (when (derived-mode-p 'message-mode)
22712 (beginning-of-line)
22713 (cond ((or (not (message-in-body-p))
22714 (looking-at orgtbl-line-start-regexp))
22716 ((looking-at message-cite-prefix-regexp)
22717 (throw 'exit (match-string-no-properties 0)))
22718 ((looking-at org-outline-regexp)
22719 (throw 'exit (make-string (length (match-string 0)) ? ))))))
22720 (org-with-wide-buffer
22721 (let* ((p (line-beginning-position))
22722 (element (save-excursion
22723 (beginning-of-line)
22724 (or (ignore-errors (org-element-at-point))
22725 (user-error "An element cannot be parsed line %d"
22726 (line-number-at-pos (point))))))
22727 (type (org-element-type element))
22728 (post-affiliated (org-element-property :post-affiliated element)))
22729 (unless (and post-affiliated (< p post-affiliated))
22733 (beginning-of-line)
22734 (looking-at "[ \t]*")
22735 (concat (match-string 0) "# ")))
22736 (footnote-definition "")
22738 (make-string (org-list-item-body-column
22739 (or post-affiliated
22740 (org-element-property :begin element)))
22743 ;; Fill prefix is usually the same as the current line,
22744 ;; unless the paragraph is at the beginning of an item.
22745 (let ((parent (org-element-property :parent element)))
22747 (beginning-of-line)
22748 (cond ((eq (org-element-type parent) 'item)
22749 (make-string (org-list-item-body-column
22750 (org-element-property :begin parent))
22752 ((and adaptive-fill-regexp
22754 ;; `adaptive-fill-function' to let
22755 ;; `fill-context-prefix' handle
22756 ;; `adaptive-fill-regexp' variable.
22757 (let (adaptive-fill-function)
22758 (fill-context-prefix
22760 (org-element-property :end element)))))
22761 ((looking-at "[ \t]+") (match-string 0))
22764 ;; Only fill contents if P is within block boundaries.
22765 (let* ((cbeg (save-excursion (goto-char post-affiliated)
22768 (cend (save-excursion
22769 (goto-char (org-element-property :end element))
22770 (skip-chars-backward " \r\t\n")
22771 (line-beginning-position))))
22772 (when (and (>= p cbeg) (< p cend))
22773 (if (save-excursion (beginning-of-line) (looking-at "[ \t]+"))
22777 (declare-function message-goto-body "message" ())
22778 (defvar message-cite-prefix-regexp) ; From message.el
22779 (defun org-fill-paragraph (&optional justify)
22780 "Fill element at point, when applicable.
22782 This function only applies to comment blocks, comments, example
22783 blocks and paragraphs. Also, as a special case, re-align table
22784 when point is at one.
22786 If JUSTIFY is non-nil (interactively, with prefix argument),
22787 justify as well. If `sentence-end-double-space' is non-nil, then
22788 period followed by one space does not end a sentence, so don't
22789 break a line there. The variable `fill-column' controls the
22792 For convenience, when point is at a plain list, an item or
22793 a footnote definition, try to fill the first paragraph within."
22795 (if (and (derived-mode-p 'message-mode)
22796 (or (not (message-in-body-p))
22797 (save-excursion (move-beginning-of-line 1)
22798 (looking-at message-cite-prefix-regexp))))
22799 ;; First ensure filling is correct in message-mode.
22800 (let ((fill-paragraph-function
22801 (cadadr (assoc 'fill-paragraph-function org-fb-vars)))
22802 (fill-prefix (cadadr (assoc 'fill-prefix org-fb-vars)))
22803 (paragraph-start (cadadr (assoc 'paragraph-start org-fb-vars)))
22804 (paragraph-separate
22805 (cadadr (assoc 'paragraph-separate org-fb-vars))))
22806 (fill-paragraph nil))
22807 (with-syntax-table org-mode-transpose-word-syntax-table
22808 ;; Move to end of line in order to get the first paragraph
22809 ;; within a plain list or a footnote definition.
22810 (let ((element (save-excursion
22812 (or (ignore-errors (org-element-at-point))
22813 (user-error "An element cannot be parsed line %d"
22814 (line-number-at-pos (point)))))))
22815 ;; First check if point is in a blank line at the beginning of
22816 ;; the buffer. In that case, ignore filling.
22817 (case (org-element-type element)
22818 ;; Use major mode filling function is src blocks.
22819 (src-block (org-babel-do-key-sequence-in-edit-buffer (kbd "M-q")))
22820 ;; Align Org tables, leave table.el tables as-is.
22821 (table-row (org-table-align) t)
22823 (when (eq (org-element-property :type element) 'org)
22825 (goto-char (org-element-property :post-affiliated element))
22826 (org-table-align)))
22829 ;; Paragraphs may contain `line-break' type objects.
22830 (let ((beg (max (point-min)
22831 (org-element-property :contents-begin element)))
22832 (end (min (point-max)
22833 (org-element-property :contents-end element))))
22834 ;; Do nothing if point is at an affiliated keyword.
22835 (if (< (line-end-position) beg) t
22836 (when (derived-mode-p 'message-mode)
22837 ;; In `message-mode', do not fill following citation
22838 ;; in current paragraph nor text before message body.
22839 (let ((body-start (save-excursion (message-goto-body))))
22840 (when body-start (setq beg (max body-start beg))))
22841 (when (save-excursion
22843 (concat "^" message-cite-prefix-regexp) end t))
22844 (setq end (match-beginning 0))))
22845 ;; Fill paragraph, taking line breaks into account.
22846 ;; For that, slice the paragraph using line breaks as
22847 ;; separators, and fill the parts in reverse order to
22848 ;; avoid messing with markers.
22853 (fill-region-as-paragraph pos (point) justify)
22855 ;; Find the list of ending positions for line breaks
22856 ;; in the current paragraph. Add paragraph
22857 ;; beginning to include first slice.
22861 (org-element--parse-objects
22862 beg end nil (org-element-restriction 'paragraph))
22864 (lambda (lb) (org-element-property :end lb)))))))
22866 ;; Contents of `comment-block' type elements should be
22867 ;; filled as plain text, but only if point is within block
22870 (let* ((case-fold-search t)
22871 (beg (save-excursion
22872 (goto-char (org-element-property :begin element))
22873 (re-search-forward "^[ \t]*#\\+begin_comment" nil t)
22876 (end (save-excursion
22877 (goto-char (org-element-property :end element))
22878 (re-search-backward "^[ \t]*#\\+end_comment" nil t)
22879 (line-beginning-position))))
22880 (if (or (< (point) beg) (> (point) end)) t
22881 (fill-region-as-paragraph
22882 (save-excursion (end-of-line)
22883 (re-search-backward "^[ \t]*$" beg 'move)
22884 (line-beginning-position))
22885 (save-excursion (beginning-of-line)
22886 (re-search-forward "^[ \t]*$" end 'move)
22887 (line-beginning-position))
22891 (let ((begin (org-element-property :post-affiliated element))
22892 (end (org-element-property :end element)))
22893 (when (and (>= (point) begin) (<= (point) end))
22894 (let ((begin (save-excursion
22896 (if (re-search-backward "^[ \t]*#[ \t]*$" begin t)
22897 (progn (forward-line) (point))
22899 (end (save-excursion
22901 (if (re-search-forward "^[ \t]*#[ \t]*$" end 'move)
22902 (1- (line-beginning-position))
22903 (skip-chars-backward " \r\t\n")
22904 (line-end-position)))))
22905 ;; Do not fill comments when at a blank line.
22906 (when (> end begin)
22909 (beginning-of-line)
22910 (looking-at "[ \t]*#")
22911 (let ((comment-prefix (match-string 0)))
22912 (goto-char (match-end 0))
22913 (if (looking-at adaptive-fill-regexp)
22914 (concat comment-prefix (match-string 0))
22915 (concat comment-prefix " "))))))
22917 (fill-region-as-paragraph begin end justify))))))
22919 ;; Ignore every other element.
22922 (defun org-auto-fill-function ()
22923 "Auto-fill function."
22924 ;; Check if auto-filling is meaningful.
22925 (let ((fc (current-fill-column)))
22926 (when (and fc (> (current-column) fc))
22927 (let* ((fill-prefix (org-adaptive-fill-function))
22928 ;; Enforce empty fill prefix, if required. Otherwise, it
22929 ;; will be computed again.
22930 (adaptive-fill-mode (not (equal fill-prefix ""))))
22931 (when fill-prefix (do-auto-fill))))))
22933 (defun org-comment-line-break-function (&optional soft)
22934 "Break line at point and indent, continuing comment if within one.
22935 The inserted newline is marked hard if variable
22936 `use-hard-newlines' is true, unless optional argument SOFT is
22938 (if soft (insert-and-inherit ?\n) (newline 1))
22939 (save-excursion (forward-char -1) (delete-horizontal-space))
22940 (delete-horizontal-space)
22941 (indent-to-left-margin)
22942 (insert-before-markers-and-inherit fill-prefix))
22945 ;;; Fixed Width Areas
22947 (defun org-toggle-fixed-width ()
22948 "Toggle fixed-width markup.
22950 Add or remove fixed-width markup on current line, whenever it
22951 makes sense. Return an error otherwise.
22953 If a region is active and if it contains only fixed-width areas
22954 or blank lines, remove all fixed-width markup in it. If the
22955 region contains anything else, convert all non-fixed-width lines
22956 to fixed-width ones.
22958 Blank lines at the end of the region are ignored unless the
22959 region only contains such lines."
22961 (if (not (org-region-active-p))
22964 ;; Remove fixed width marker only in a fixed-with element.
22966 ;; Add fixed width maker in paragraphs, in blank lines after
22967 ;; elements or at the beginning of a headline or an inlinetask,
22968 ;; and before any one-line elements (e.g., a clock).
22970 (beginning-of-line)
22971 (let* ((element (org-element-at-point))
22972 (type (org-element-type element)))
22974 ((and (eq type 'fixed-width)
22975 (looking-at "[ \t]*\\(:\\(?: \\|$\\)\\)"))
22977 "" nil nil nil (if (= (line-end-position) (match-end 0)) 0 1)))
22978 ((and (memq type '(babel-call clock comment diary-sexp headline
22979 horizontal-rule keyword paragraph
22981 (or (not (org-element-property :post-affiliated element))
22982 (<= (org-element-property :post-affiliated element)
22984 (skip-chars-forward " \t")
22986 ((and (org-looking-at-p "[ \t]*$")
22987 (or (eq type 'inlinetask)
22989 (skip-chars-forward " \r\t\n")
22990 (<= (org-element-property :end element) (point)))))
22991 (delete-region (point) (line-end-position))
22994 (t (user-error "Cannot insert a fixed-width line here")))))
22996 (let* ((begin (save-excursion
22997 (goto-char (region-beginning))
22998 (line-beginning-position)))
23001 (goto-char (region-end))
23002 (unless (eolp) (beginning-of-line))
23003 (if (save-excursion (re-search-backward "\\S-" begin t))
23004 (progn (skip-chars-backward " \r\t\n") (point))
23010 (skip-chars-forward " \r\t\n")
23011 (when (eobp) (throw 'not-all-p nil))
23012 (while (< (point) end)
23013 (let ((element (org-element-at-point)))
23014 (if (eq (org-element-type element) 'fixed-width)
23015 (goto-char (org-element-property :end element))
23016 (throw 'not-all-p nil))))
23018 (if all-fixed-width-p
23021 (while (< (point) end)
23022 (when (looking-at "[ \t]*\\(:\\(?: \\|$\\)\\)")
23025 (if (= (line-end-position) (match-end 0)) 0 1)))
23027 (let ((min-ind (point-max)))
23028 ;; Find minimum indentation across all lines.
23031 (if (not (save-excursion (re-search-forward "\\S-" end t)))
23034 (while (< (point) end)
23035 (unless (org-looking-at-p "[ \t]*$")
23036 (let ((ind (org-get-indentation)))
23037 (setq min-ind (min min-ind ind))
23038 (when (zerop ind) (throw 'zerop t))))
23040 ;; Loop over all lines and add fixed-width markup everywhere
23041 ;; but in fixed-width lines.
23044 (while (< (point) end)
23046 ((org-at-heading-p)
23049 (while (and (< (point) end) (org-looking-at-p "[ \t]*$"))
23052 ((org-looking-at-p "[ \t]*:\\( \\|$\\)")
23053 (let* ((element (org-element-at-point))
23054 (element-end (org-element-property :end element)))
23055 (if (eq (org-element-type element) 'fixed-width)
23056 (progn (goto-char element-end)
23057 (skip-chars-backward " \r\t\n")
23059 (let ((limit (min end element-end)))
23060 (while (< (point) limit)
23061 (org-move-to-column min-ind t)
23063 (forward-line))))))
23065 (org-move-to-column min-ind t)
23067 (forward-line)))))))
23068 (set-marker end nil))))
23073 ;; Org comments syntax is quite complex. It requires the entire line
23074 ;; to be just a comment. Also, even with the right syntax at the
23075 ;; beginning of line, some some elements (i.e. verse-block or
23076 ;; example-block) don't accept comments. Usual Emacs comment commands
23077 ;; cannot cope with those requirements. Therefore, Org replaces them.
23079 ;; Org still relies on `comment-dwim', but cannot trust
23080 ;; `comment-only-p'. So, `comment-region-function' and
23081 ;; `uncomment-region-function' both point
23082 ;; to`org-comment-or-uncomment-region'. Eventually,
23083 ;; `org-insert-comment' takes care of insertion of comments at the
23084 ;; beginning of line.
23086 ;; `org-setup-comments-handling' install comments related variables
23087 ;; during `org-mode' initialization.
23089 (defun org-setup-comments-handling ()
23091 (org-set-local 'comment-use-syntax nil)
23092 (org-set-local 'comment-start "# ")
23093 (org-set-local 'comment-start-skip "^\\s-*#\\(?: \\|$\\)")
23094 (org-set-local 'comment-insert-comment-function 'org-insert-comment)
23095 (org-set-local 'comment-region-function 'org-comment-or-uncomment-region)
23096 (org-set-local 'uncomment-region-function 'org-comment-or-uncomment-region))
23098 (defun org-insert-comment ()
23099 "Insert an empty comment above current line.
23100 If the line is empty, insert comment at its beginning. When
23101 point is within a source block, comment according to the related
23103 (if (let ((element (org-element-at-point)))
23104 (and (eq (org-element-type element) 'src-block)
23106 (goto-char (org-element-property :post-affiliated element))
23107 (line-end-position))
23110 (goto-char (org-element-property :end element))
23111 (skip-chars-backward " \r\t\n")
23112 (line-beginning-position))
23114 (org-babel-do-in-edit-buffer (call-interactively 'comment-dwim))
23115 (beginning-of-line)
23116 (if (looking-at "\\s-*$") (delete-region (point) (point-at-eol))
23121 (defvar comment-empty-lines) ; From newcomment.el.
23122 (defun org-comment-or-uncomment-region (beg end &rest ignore)
23123 "Comment or uncomment each non-blank line in the region.
23124 Uncomment each non-blank line between BEG and END if it only
23125 contains commented lines. Otherwise, comment them. If region is
23126 strictly within a source block, use appropriate comment syntax."
23127 (if (let ((element (org-element-at-point)))
23128 (and (eq (org-element-type element) 'src-block)
23130 (goto-char (org-element-property :post-affiliated element))
23131 (line-end-position))
23133 (>= (save-excursion
23134 (goto-char (org-element-property :end element))
23135 (skip-chars-backward " \r\t\n")
23136 (line-beginning-position))
23138 (org-babel-do-in-edit-buffer (call-interactively 'comment-dwim))
23141 (narrow-to-region (save-excursion (goto-char beg)
23142 (skip-chars-forward " \r\t\n" end)
23143 (line-beginning-position))
23144 (save-excursion (goto-char end)
23145 (skip-chars-backward " \r\t\n" beg)
23146 (line-end-position)))
23148 ;; UNCOMMENTP is non-nil when every non blank line between
23149 ;; BEG and END is a comment.
23151 (goto-char (point-min))
23152 (while (and (not (eobp))
23153 (let ((element (org-element-at-point)))
23154 (and (eq (org-element-type element) 'comment)
23155 (goto-char (min (point-max)
23156 (org-element-property
23157 :end element)))))))
23160 ;; Only blank lines and comments in region: uncomment it.
23162 (goto-char (point-min))
23163 (while (not (eobp))
23164 (when (looking-at "[ \t]*\\(#\\(?: \\|$\\)\\)")
23165 (replace-match "" nil nil nil 1))
23167 ;; Comment each line in region.
23168 (let ((min-indent (point-max)))
23169 ;; First find the minimum indentation across all lines.
23171 (goto-char (point-min))
23172 (while (and (not (eobp)) (not (zerop min-indent)))
23173 (unless (looking-at "[ \t]*$")
23174 (setq min-indent (min min-indent (current-indentation))))
23176 ;; Then loop over all lines.
23178 (goto-char (point-min))
23179 (while (not (eobp))
23180 (unless (and (not comment-empty-lines) (looking-at "[ \t]*$"))
23181 ;; Don't get fooled by invisible text (e.g. link path)
23182 ;; when moving to column MIN-INDENT.
23183 (let ((buffer-invisibility-spec nil))
23184 (org-move-to-column min-indent t))
23185 (insert comment-start))
23186 (forward-line)))))))))
23188 (defun org-comment-dwim (arg)
23190 "Call `comment-dwim' within a source edit buffer if needed."
23191 (if (org-in-src-block-p)
23192 (org-babel-do-in-edit-buffer (call-interactively 'comment-dwim))
23193 (call-interactively 'comment-dwim)))
23198 ;; This section contains tools to operate on timestamp objects, as
23199 ;; returned by, e.g. `org-element-context'.
23201 (defun org-timestamp-has-time-p (timestamp)
23202 "Non-nil when TIMESTAMP has a time specified."
23203 (org-element-property :hour-start timestamp))
23205 (defun org-timestamp-format (timestamp format &optional end utc)
23206 "Format a TIMESTAMP element into a string.
23208 FORMAT is a format specifier to be passed to
23209 `format-time-string'.
23211 When optional argument END is non-nil, use end of date-range or
23212 time-range, if possible.
23214 When optional argument UTC is non-nil, time will be expressed as
23216 (format-time-string
23218 (apply 'encode-time
23221 (lambda (prop) (or (org-element-property prop timestamp) 0))
23222 (if end '(:minute-end :hour-end :day-end :month-end :year-end)
23223 '(:minute-start :hour-start :day-start :month-start
23227 (defun org-timestamp-split-range (timestamp &optional end)
23228 "Extract a timestamp object from a date or time range.
23230 TIMESTAMP is a timestamp object. END, when non-nil, means extract
23231 the end of the range. Otherwise, extract its start.
23233 Return a new timestamp object sharing the same parent as
23235 (let ((type (org-element-property :type timestamp)))
23236 (if (memq type '(active inactive diary)) timestamp
23237 (let ((split-ts (list 'timestamp (copy-sequence (nth 1 timestamp)))))
23239 (org-element-put-property
23240 split-ts :type (if (eq type 'active-range) 'active 'inactive))
23241 ;; Copy start properties over end properties if END is
23242 ;; non-nil. Otherwise, copy end properties over `start' ones.
23243 (let ((p-alist '((:minute-start . :minute-end)
23244 (:hour-start . :hour-end)
23245 (:day-start . :day-end)
23246 (:month-start . :month-end)
23247 (:year-start . :year-end))))
23248 (dolist (p-cell p-alist)
23249 (org-element-put-property
23251 (funcall (if end 'car 'cdr) p-cell)
23252 (org-element-property
23253 (funcall (if end 'cdr 'car) p-cell) split-ts)))
23254 ;; Eventually refresh `:raw-value'.
23255 (org-element-put-property split-ts :raw-value nil)
23256 (org-element-put-property
23257 split-ts :raw-value (org-element-interpret-data split-ts)))))))
23259 (defun org-timestamp-translate (timestamp &optional boundary)
23260 "Apply `org-translate-time' on a TIMESTAMP object.
23261 When optional argument BOUNDARY is non-nil, it is either the
23262 symbol `start' or `end'. In this case, only translate the
23263 starting or ending part of TIMESTAMP if it is a date or time
23264 range. Otherwise, translate both parts."
23265 (if (and (not boundary)
23266 (memq (org-element-property :type timestamp)
23267 '(active-range inactive-range)))
23269 (org-translate-time
23270 (org-element-property :raw-value
23271 (org-timestamp-split-range timestamp)))
23273 (org-translate-time
23274 (org-element-property :raw-value
23275 (org-timestamp-split-range timestamp t))))
23276 (org-translate-time
23277 (org-element-property
23279 (if (not boundary) timestamp
23280 (org-timestamp-split-range timestamp (eq boundary 'end)))))))
23286 (defun org-reftex-citation ()
23287 "Use reftex-citation to insert a citation into the buffer.
23288 This looks for a line like
23290 #+BIBLIOGRAPHY: foo plain option:-d
23292 and derives from it that foo.bib is the bibliography file relevant
23293 for this document. It then installs the necessary environment for RefTeX
23294 to work in this buffer and calls `reftex-citation' to insert a citation
23297 Export of such citations to both LaTeX and HTML is handled by the contributed
23298 package ox-bibtex by Taru Karttunen."
23300 (let ((reftex-docstruct-symbol 'rds)
23301 (reftex-cite-format "\\cite{%l}")
23306 (let ((case-fold-search t)
23307 (re "^[ \t]*#\\+BIBLIOGRAPHY:[ \t]+\\([^ \t\n]+\\)"))
23308 (if (not (save-excursion
23309 (or (re-search-forward re nil t)
23310 (re-search-backward re nil t))))
23311 (user-error "No bibliography defined in file")
23312 (setq bib (concat (match-string 1) ".bib")
23313 rds (list (list 'bib bib)))))))
23314 (call-interactively 'reftex-citation)))
23316 ;;;; Functions extending outline functionality
23318 (defun org-beginning-of-line (&optional arg)
23319 "Go to the beginning of the current line. If that is invisible, continue
23320 to a visible line beginning. This makes the function of C-a more intuitive.
23321 If this is a headline, and `org-special-ctrl-a/e' is set, ignore tags on the
23322 first attempt, and only move to after the tags when the cursor is already
23323 beyond the end of the headline."
23325 (let ((pos (point))
23326 (special (if (consp org-special-ctrl-a/e)
23327 (car org-special-ctrl-a/e)
23328 org-special-ctrl-a/e))
23329 deactivate-mark refpos)
23330 (if (org-bound-and-true-p visual-line-mode)
23331 (beginning-of-visual-line 1)
23332 (beginning-of-line 1))
23333 (if (and arg (fboundp 'move-beginning-of-line))
23334 (call-interactively 'move-beginning-of-line)
23338 (if (org-truely-invisible-p)
23339 (while (and (not (bobp)) (org-truely-invisible-p))
23341 (beginning-of-line 1))
23342 (forward-char 1))))
23345 ((and (looking-at org-complex-heading-regexp)
23346 (= (char-after (match-end 1)) ?\ ))
23347 (setq refpos (min (1+ (or (match-end 3) (match-end 2) (match-end 1)))
23351 (cond ((> pos refpos) refpos)
23352 ((= pos (point)) refpos)
23354 (cond ((> pos (point)) (point))
23355 ((not (eq last-command this-command)) (point))
23358 ;; Being at an item and not looking at an the item means point
23359 ;; was previously moved to beginning of a visual line, which
23360 ;; doesn't contain the item. Therefore, do nothing special,
23362 (when (looking-at org-list-full-item-re)
23363 ;; Set special position at first white space character after
23364 ;; bullet, and check-box, if any.
23365 (let ((after-bullet
23366 (let ((box (match-end 3)))
23367 (if (not box) (match-end 1)
23368 (let ((after (char-after box)))
23369 (if (and after (= after ? )) (1+ box) box))))))
23370 ;; Special case: Move point to special position when
23371 ;; currently after it or at beginning of line.
23373 (when (or (> pos after-bullet) (= (point) pos))
23374 (goto-char after-bullet))
23375 ;; Reversed case: Move point to special position when
23376 ;; point was already at beginning of line and command is
23378 (when (and (= (point) pos) (eq last-command this-command))
23379 (goto-char after-bullet))))))))
23381 (and (featurep 'xemacs) (setq zmacs-region-stays t))))
23382 (setq disable-point-adjustment
23383 (or (not (invisible-p (point)))
23384 (not (invisible-p (max (point-min) (1- (point))))))))
23386 (defun org-end-of-line (&optional arg)
23387 "Go to the end of the line.
23388 If this is a headline, and `org-special-ctrl-a/e' is set, ignore
23389 tags on the first attempt, and only move to after the tags when
23390 the cursor is already beyond the end of the headline."
23392 (let ((special (if (consp org-special-ctrl-a/e) (cdr org-special-ctrl-a/e)
23393 org-special-ctrl-a/e))
23394 (move-fun (cond ((org-bound-and-true-p visual-line-mode)
23395 'end-of-visual-line)
23396 ((fboundp 'move-end-of-line) 'move-end-of-line)
23399 (if (or (not special) arg) (call-interactively move-fun)
23400 (let* ((element (save-excursion (beginning-of-line)
23401 (org-element-at-point)))
23402 (type (org-element-type element)))
23404 ((memq type '(headline inlinetask))
23405 (let ((pos (point)))
23406 (beginning-of-line 1)
23407 (if (looking-at (org-re ".*?\\(?:\\([ \t]*\\)\\(:[[:alnum:]_@#%:]+:\\)?[ \t]*\\)?$"))
23409 (if (or (< pos (match-beginning 1)) (= pos (match-end 0)))
23410 (goto-char (match-beginning 1))
23411 (goto-char (match-end 0)))
23412 (if (or (< pos (match-end 0))
23413 (not (eq this-command last-command)))
23414 (goto-char (match-end 0))
23415 (goto-char (match-beginning 1))))
23416 (call-interactively move-fun))))
23417 ((outline-invisible-p (line-end-position))
23418 ;; If element is hidden, `move-end-of-line' would put point
23419 ;; after it. Use `end-of-line' to stay on current line.
23420 (call-interactively 'end-of-line))
23421 (t (call-interactively move-fun)))))
23422 (org-no-warnings (and (featurep 'xemacs) (setq zmacs-region-stays t))))
23423 (setq disable-point-adjustment
23424 (or (not (invisible-p (point)))
23425 (not (invisible-p (max (point-min) (1- (point))))))))
23427 (define-key org-mode-map "\C-a" 'org-beginning-of-line)
23428 (define-key org-mode-map "\C-e" 'org-end-of-line)
23430 (defun org-backward-sentence (&optional arg)
23431 "Go to beginning of sentence, or beginning of table field.
23432 This will call `backward-sentence' or `org-table-beginning-of-field',
23433 depending on context."
23436 ((org-at-table-p) (call-interactively 'org-table-beginning-of-field))
23437 (t (call-interactively 'backward-sentence))))
23439 (defun org-forward-sentence (&optional arg)
23440 "Go to end of sentence, or end of table field.
23441 This will call `forward-sentence' or `org-table-end-of-field',
23442 depending on context."
23445 ((org-at-table-p) (call-interactively 'org-table-end-of-field))
23446 (t (call-interactively 'forward-sentence))))
23448 (define-key org-mode-map "\M-a" 'org-backward-sentence)
23449 (define-key org-mode-map "\M-e" 'org-forward-sentence)
23451 (defun org-kill-line (&optional arg)
23452 "Kill line, to tags or end of line."
23455 ((or (not org-special-ctrl-k)
23457 (not (org-at-heading-p)))
23458 (if (and (get-char-property (min (point-max) (point-at-eol)) 'invisible)
23459 org-ctrl-k-protect-subtree)
23460 (if (or (eq org-ctrl-k-protect-subtree 'error)
23461 (not (y-or-n-p "Kill hidden subtree along with headline? ")))
23462 (user-error "C-k aborted as it would kill a hidden subtree")))
23463 (call-interactively
23464 (if (org-bound-and-true-p visual-line-mode) 'kill-visual-line 'kill-line)))
23465 ((looking-at (org-re ".*?\\S-\\([ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)[ \t]*$"))
23466 (kill-region (point) (match-beginning 1))
23467 (org-set-tags nil t))
23468 (t (kill-region (point) (point-at-eol)))))
23470 (define-key org-mode-map "\C-k" 'org-kill-line)
23472 (defun org-yank (&optional arg)
23473 "Yank. If the kill is a subtree, treat it specially.
23474 This command will look at the current kill and check if is a single
23475 subtree, or a series of subtrees[1]. If it passes the test, and if the
23476 cursor is at the beginning of a line or after the stars of a currently
23477 empty headline, then the yank is handled specially. How exactly depends
23478 on the value of the following variables, both set by default.
23480 org-yank-folded-subtrees
23481 When set, the subtree(s) will be folded after insertion, but only
23482 if doing so would now swallow text after the yanked text.
23484 org-yank-adjusted-subtrees
23485 When set, the subtree will be promoted or demoted in order to
23486 fit into the local outline tree structure, which means that the level
23487 will be adjusted so that it becomes the smaller one of the two
23488 *visible* surrounding headings.
23490 Any prefix to this command will cause `yank' to be called directly with
23491 no special treatment. In particular, a simple \\[universal-argument] prefix \
23493 plainly yank the text as it is.
23495 \[1] The test checks if the first non-white line is a heading
23496 and if there are no other headings with fewer stars."
23498 (org-yank-generic 'yank arg))
23500 (defun org-yank-generic (command arg)
23501 "Perform some yank-like command.
23503 This function implements the behavior described in the `org-yank'
23504 documentation. However, it has been generalized to work for any
23505 interactive command with similar behavior."
23507 ;; pretend to be command COMMAND
23508 (setq this-command command)
23511 (call-interactively command)
23513 (let ((subtreep ; is kill a subtree, and the yank position appropriate?
23514 (and (org-kill-is-subtree-p)
23516 (and (looking-at "[ \t]*$")
23519 (buffer-substring (point-at-bol) (point)))))))
23522 ((and subtreep org-yank-folded-subtrees)
23523 (let ((beg (point))
23525 (if (and subtreep org-yank-adjusted-subtrees)
23526 (org-paste-subtree nil nil 'for-yank)
23527 (call-interactively command))
23531 (when (and (bolp) subtreep
23532 (not (setq swallowp
23533 (org-yank-folding-would-swallow-text beg end))))
23534 (org-with-limited-levels
23535 (or (looking-at org-outline-regexp)
23536 (re-search-forward org-outline-regexp-bol end t))
23537 (while (and (< (point) end) (looking-at org-outline-regexp))
23539 (org-cycle-show-empty-lines 'folded)
23540 (condition-case nil
23541 (outline-forward-same-level 1)
23542 (error (goto-char end))))))
23545 "Inserted text not folded because that would swallow text"))
23548 (skip-chars-forward " \t\n\r")
23549 (beginning-of-line 1)
23550 (push-mark beg 'nomsg)))
23551 ((and subtreep org-yank-adjusted-subtrees)
23552 (let ((beg (point-at-bol)))
23553 (org-paste-subtree nil nil 'for-yank)
23554 (push-mark beg 'nomsg)))
23556 (call-interactively command))))))
23558 (defun org-yank-folding-would-swallow-text (beg end)
23559 "Would hide-subtree at BEG swallow any text after END?"
23561 (org-with-limited-levels
23564 (when (or (looking-at org-outline-regexp)
23565 (re-search-forward org-outline-regexp-bol end t))
23566 (setq level (org-outline-level)))
23568 (skip-chars-forward " \t\r\n\v\f")
23570 (and (bolp) (looking-at org-outline-regexp)
23571 (<= (org-outline-level) level)))
23572 nil ; Nothing would be swallowed
23573 t))))) ; something would swallow
23575 (define-key org-mode-map "\C-y" 'org-yank)
23577 (defun org-truely-invisible-p ()
23578 "Check if point is at a character currently not visible.
23579 This version does not only check the character property, but also
23581 ;; Early versions of noutline don't have `outline-invisible-p'.
23582 (if (org-bound-and-true-p visible-mode)
23584 (outline-invisible-p)))
23586 (defun org-invisible-p2 ()
23587 "Check if point is at a character currently not visible."
23589 (if (and (eolp) (not (bobp))) (backward-char 1))
23590 ;; Early versions of noutline don't have `outline-invisible-p'.
23591 (outline-invisible-p)))
23593 (defun org-back-to-heading (&optional invisible-ok)
23594 "Call `outline-back-to-heading', but provide a better error message."
23595 (condition-case nil
23596 (outline-back-to-heading invisible-ok)
23597 (error (error "Before first headline at position %d in buffer %s"
23598 (point) (current-buffer)))))
23600 (defun org-before-first-heading-p ()
23601 "Before first heading?"
23604 (null (re-search-backward org-outline-regexp-bol nil t))))
23606 (defun org-at-heading-p (&optional ignored)
23607 (outline-on-heading-p t))
23608 ;; Compatibility alias with Org versions < 7.8.03
23609 (defalias 'org-on-heading-p 'org-at-heading-p)
23611 (defun org-in-commented-heading-p (&optional no-inheritance)
23612 "Non-nil if point is under a commented heading.
23613 This function also checks ancestors of the current headline,
23614 unless optional argument NO-INHERITANCE is non-nil."
23616 ((org-before-first-heading-p) nil)
23617 ((let ((headline (nth 4 (org-heading-components))))
23619 (let ((case-fold-search nil))
23620 (org-string-match-p (concat "^" org-comment-string "\\(?: \\|$\\)")
23622 (no-inheritance nil)
23624 (save-excursion (and (org-up-heading-safe) (org-in-commented-heading-p))))))
23626 (defun org-at-comment-p nil
23627 "Is cursor in a commented line?"
23630 (beginning-of-line)
23631 (looking-at "^[ \t]*# "))))
23633 (defun org-at-drawer-p nil
23634 "Is cursor at a drawer keyword?"
23636 (move-beginning-of-line 1)
23637 (looking-at org-drawer-regexp)))
23639 (defun org-at-block-p nil
23640 "Is cursor at a block keyword?"
23642 (move-beginning-of-line 1)
23643 (looking-at org-block-regexp)))
23645 (defun org-point-at-end-of-empty-headline ()
23646 "If point is at the end of an empty headline, return t, else nil.
23647 If the heading only contains a TODO keyword, it is still still considered
23649 (and (looking-at "[ \t]*$")
23650 (when org-todo-line-regexp
23652 (beginning-of-line 1)
23653 (let ((case-fold-search nil))
23654 (looking-at org-todo-line-regexp)
23655 (string= (match-string 3) ""))))))
23657 (defun org-at-heading-or-item-p ()
23658 (or (org-at-heading-p) (org-at-item-p)))
23660 (defun org-at-target-p ()
23661 (or (org-in-regexp org-radio-target-regexp)
23662 (org-in-regexp org-target-regexp)))
23663 ;; Compatibility alias with Org versions < 7.8.03
23664 (defalias 'org-on-target-p 'org-at-target-p)
23666 (defun org-up-heading-all (arg)
23667 "Move to the heading line of which the present line is a subheading.
23668 This function considers both visible and invisible heading lines.
23669 With argument, move up ARG levels."
23670 (if (fboundp 'outline-up-heading-all)
23671 (outline-up-heading-all arg) ; emacs 21 version of outline.el
23672 (outline-up-heading arg t))) ; emacs 22 version of outline.el
23674 (defun org-up-heading-safe ()
23675 "Move to the heading line of which the present line is a subheading.
23676 This version will not throw an error. It will return the level of the
23677 headline found, or nil if no higher level is found.
23679 Also, this function will be a lot faster than `outline-up-heading',
23680 because it relies on stars being the outline starters. This can really
23681 make a significant difference in outlines with very many siblings."
23682 (let (start-level re)
23683 (org-back-to-heading t)
23684 (setq start-level (funcall outline-level))
23685 (if (equal start-level 1)
23687 (setq re (concat "^\\*\\{1," (number-to-string (1- start-level)) "\\} "))
23688 (if (re-search-backward re nil t)
23689 (funcall outline-level)))))
23691 (defun org-first-sibling-p ()
23692 "Is this heading the first child of its parents?"
23694 (let ((re org-outline-regexp-bol)
23696 (unless (org-at-heading-p t)
23697 (user-error "Not at a heading"))
23698 (setq level (funcall outline-level))
23700 (if (not (re-search-backward re nil t))
23702 (setq l (funcall outline-level))
23705 (defun org-goto-sibling (&optional previous)
23706 "Goto the next sibling, even if it is invisible.
23707 When PREVIOUS is set, go to the previous sibling instead. Returns t
23708 when a sibling was found. When none is found, return nil and don't
23710 (let ((fun (if previous 're-search-backward 're-search-forward))
23712 (re org-outline-regexp-bol)
23714 (when (ignore-errors (org-back-to-heading t))
23715 (setq level (funcall outline-level))
23717 (or previous (forward-char 1))
23718 (while (funcall fun re nil t)
23719 (setq l (funcall outline-level))
23720 (when (< l level) (goto-char pos) (throw 'exit nil))
23721 (when (= l level) (goto-char (match-beginning 0)) (throw 'exit t)))
23725 (defun org-show-siblings ()
23726 "Show all siblings of the current headline."
23728 (while (org-goto-sibling) (org-flag-heading nil)))
23730 (while (org-goto-sibling 'previous)
23731 (org-flag-heading nil))))
23733 (defun org-goto-first-child ()
23734 "Goto the first child, even if it is invisible.
23735 Return t when a child was found. Otherwise don't move point and
23737 (let (level (pos (point)) (re org-outline-regexp-bol))
23738 (when (ignore-errors (org-back-to-heading t))
23739 (setq level (outline-level))
23741 (if (and (re-search-forward re nil t) (> (outline-level) level))
23742 (progn (goto-char (match-beginning 0)) t)
23743 (goto-char pos) nil))))
23745 (defun org-show-hidden-entry ()
23746 "Show an entry where even the heading is hidden."
23750 (defun org-flag-heading (flag &optional entry)
23751 "Flag the current heading. FLAG non-nil means make invisible.
23752 When ENTRY is non-nil, show the entire entry."
23754 (org-back-to-heading t)
23755 ;; Check if we should show the entire entry
23760 (and (outline-next-heading)
23761 (org-flag-heading nil))))
23762 (outline-flag-region (max (point-min) (1- (point)))
23763 (save-excursion (outline-end-of-heading) (point))
23766 (defun org-get-next-sibling ()
23767 "Move to next heading of the same level, and return point.
23768 If there is no such heading, return nil.
23769 This is like outline-next-sibling, but invisible headings are ok."
23770 (let ((level (funcall outline-level)))
23771 (outline-next-heading)
23772 (while (and (not (eobp)) (> (funcall outline-level) level))
23773 (outline-next-heading))
23774 (if (or (eobp) (< (funcall outline-level) level))
23778 (defun org-get-last-sibling ()
23779 "Move to previous heading of the same level, and return point.
23780 If there is no such heading, return nil."
23781 (let ((opoint (point))
23782 (level (funcall outline-level)))
23783 (outline-previous-heading)
23784 (when (and (/= (point) opoint) (outline-on-heading-p t))
23785 (while (and (> (funcall outline-level) level)
23787 (outline-previous-heading))
23788 (if (< (funcall outline-level) level)
23792 (defun org-end-of-subtree (&optional invisible-ok to-heading)
23793 "Goto to the end of a subtree."
23794 ;; This contains an exact copy of the original function, but it uses
23795 ;; `org-back-to-heading', to make it work also in invisible
23796 ;; trees. And is uses an invisible-ok argument.
23797 ;; Under Emacs this is not needed, but the old outline.el needs this fix.
23798 ;; Furthermore, when used inside Org, finding the end of a large subtree
23799 ;; with many children and grandchildren etc, this can be much faster
23800 ;; than the outline version.
23801 (org-back-to-heading invisible-ok)
23803 (level (funcall outline-level)))
23804 (if (and (derived-mode-p 'org-mode) (< level 1000))
23805 ;; A true heading (not a plain list item), in Org-mode
23806 ;; This means we can easily find the end by looking
23807 ;; only for the right number of stars. Using a regexp to do
23808 ;; this is so much faster than using a Lisp loop.
23809 (let ((re (concat "^\\*\\{1," (int-to-string level) "\\} ")))
23811 (and (re-search-forward re nil 'move) (beginning-of-line 1)))
23812 ;; something else, do it the slow way
23813 (while (and (not (eobp))
23814 (or first (> (funcall outline-level) level)))
23816 (outline-next-heading)))
23818 (if (memq (preceding-char) '(?\n ?\^M))
23820 ;; Go to end of line before heading
23822 (if (memq (preceding-char) '(?\n ?\^M))
23823 ;; leave blank line before heading
23824 (forward-char -1))))))
23827 (defun org-end-of-meta-data-and-drawers ()
23828 "Jump to the first text after meta data and drawers in the current entry.
23829 This will move over empty lines, lines with planning time stamps,
23830 clocking lines, and drawers."
23831 (org-back-to-heading t)
23832 (let ((end (save-excursion (outline-next-heading) (point)))
23833 (re (concat "\\(" org-drawer-regexp "\\)"
23834 "\\|" "[ \t]*" org-keyword-time-regexp)))
23836 (while (re-search-forward re end t)
23837 (if (not (match-end 1))
23838 ;; empty or planning line
23840 ;; a drawer, find the end
23841 (re-search-forward "^[ \t]*:END:" end 'move)
23843 (and (re-search-forward "[^\n]" nil t) (backward-char 1))
23846 (defun org-forward-heading-same-level (arg &optional invisible-ok)
23847 "Move forward to the ARG'th subheading at same level as this one.
23848 Stop at the first and last subheadings of a superior heading.
23849 Normally this only looks at visible headings, but when INVISIBLE-OK is
23850 non-nil it will also look at invisible ones."
23852 (if (not (ignore-errors (org-back-to-heading invisible-ok)))
23853 (if (and arg (< arg 0))
23854 (goto-char (point-min))
23855 (outline-next-heading))
23857 (let ((level (- (match-end 0) (match-beginning 0) 1))
23858 (f (if (and arg (< arg 0))
23859 're-search-backward
23860 're-search-forward))
23861 (count (if arg (abs arg) 1))
23863 (while (and (prog1 (> count 0)
23864 (forward-char (if (and arg (< arg 0)) -1 1)))
23865 (funcall f org-outline-regexp-bol nil 'move))
23866 (let ((l (- (match-end 0) (match-beginning 0) 1)))
23867 (cond ((< l level) (setq count 0))
23871 (goto-char (line-beginning-position))
23872 (not (outline-invisible-p)))))
23873 (setq count (1- count))
23875 (setq result (point)))))))
23876 (goto-char result))
23877 (beginning-of-line 1)))
23879 (defun org-backward-heading-same-level (arg &optional invisible-ok)
23880 "Move backward to the ARG'th subheading at same level as this one.
23881 Stop at the first and last subheadings of a superior heading."
23883 (org-forward-heading-same-level (if arg (- arg) -1) invisible-ok))
23885 (defun org-next-block (arg &optional backward block-regexp)
23886 "Jump to the next block.
23887 With a prefix argument ARG, jump forward ARG many source blocks.
23888 When BACKWARD is non-nil, jump to the previous block.
23889 When BLOCK-REGEXP is non-nil, use this regexp to find blocks."
23891 (let ((re (or block-regexp org-block-regexp))
23892 (re-search-fn (or (and backward 're-search-backward)
23893 're-search-forward)))
23894 (if (looking-at re) (forward-char 1))
23895 (condition-case nil
23896 (funcall re-search-fn re nil nil arg)
23897 (error (user-error "No %s code blocks"
23898 (if backward "previous" "further" ))))
23899 (goto-char (match-beginning 0)) (org-show-context)))
23901 (defun org-previous-block (arg &optional block-regexp)
23902 "Jump to the previous block.
23903 With a prefix argument ARG, jump backward ARG many source blocks.
23904 When BLOCK-REGEXP is non-nil, use this regexp to find blocks."
23906 (org-next-block arg t block-regexp))
23908 (defun org-forward-paragraph ()
23909 "Move forward to beginning of next paragraph or equivalent.
23911 The function moves point to the beginning of the next visible
23912 structural element, which can be a paragraph, a table, a list
23913 item, etc. It also provides some special moves for convenience:
23915 - On an affiliated keyword, jump to the beginning of the
23917 - On an item or a footnote definition, move to the second
23918 element inside, if any.
23919 - On a table or a property drawer, jump after it.
23920 - On a verse or source block, stop after blank lines."
23922 (when (eobp) (user-error "Cannot move further down"))
23923 (let* ((deactivate-mark nil)
23924 (element (org-element-at-point))
23925 (type (org-element-type element))
23926 (post-affiliated (org-element-property :post-affiliated element))
23927 (contents-begin (org-element-property :contents-begin element))
23928 (contents-end (org-element-property :contents-end element))
23929 (end (let ((end (org-element-property :end element)) (parent element))
23930 (while (and (setq parent (org-element-property :parent parent))
23931 (= (org-element-property :contents-end parent) end))
23932 (setq end (org-element-property :end parent)))
23934 (cond ((not element)
23935 (skip-chars-forward " \r\t\n")
23936 (or (eobp) (beginning-of-line)))
23937 ;; On affiliated keywords, move to element's beginning.
23938 ((and post-affiliated (< (point) post-affiliated))
23939 (goto-char post-affiliated))
23940 ;; At a table row, move to the end of the table. Similarly,
23941 ;; at a node property, move to the end of the property
23943 ((memq type '(node-property table-row))
23944 (goto-char (org-element-property
23945 :end (org-element-property :parent element))))
23946 ((memq type '(property-drawer table)) (goto-char end))
23947 ;; Consider blank lines as separators in verse and source
23948 ;; blocks to ease editing.
23949 ((memq type '(src-block verse-block))
23950 (when (eq type 'src-block)
23952 (save-excursion (goto-char end)
23953 (skip-chars-backward " \r\t\n")
23954 (line-beginning-position))))
23955 (beginning-of-line)
23956 (when (looking-at "[ \t]*$") (skip-chars-forward " \r\t\n"))
23957 (if (not (re-search-forward "^[ \t]*$" contents-end t))
23959 (skip-chars-forward " \r\t\n")
23960 (if (= (point) contents-end) (goto-char end)
23961 (beginning-of-line))))
23962 ;; With no contents, just skip element.
23963 ((not contents-begin) (goto-char end))
23964 ;; If contents are invisible, skip the element altogether.
23965 ((outline-invisible-p (line-end-position))
23968 (org-with-limited-levels (outline-next-visible-heading 1)))
23969 ;; At a plain list, make sure we move to the next item
23970 ;; instead of skipping the whole list.
23971 (plain-list (forward-char)
23972 (org-forward-paragraph))
23973 (otherwise (goto-char end))))
23974 ((>= (point) contents-end) (goto-char end))
23975 ((>= (point) contents-begin)
23976 ;; This can only happen on paragraphs and plain lists.
23978 (paragraph (goto-char end))
23979 ;; At a plain list, try to move to second element in
23980 ;; first item, if possible.
23981 (plain-list (end-of-line)
23982 (org-forward-paragraph))))
23983 ;; When contents start on the middle of a line (e.g. in
23984 ;; items and footnote definitions), try to reach first
23985 ;; element starting after current line.
23986 ((> (line-end-position) contents-begin)
23988 (org-forward-paragraph))
23989 (t (goto-char contents-begin)))))
23991 (defun org-backward-paragraph ()
23992 "Move backward to start of previous paragraph or equivalent.
23994 The function moves point to the beginning of the current
23995 structural element, which can be a paragraph, a table, a list
23996 item, etc., or to the beginning of the previous visible one if
23997 point is already there. It also provides some special moves for
24000 - On an affiliated keyword, jump to the first one.
24001 - On a table or a property drawer, move to its beginning.
24002 - On a verse or source block, stop before blank lines."
24004 (when (bobp) (user-error "Cannot move further up"))
24005 (let* ((deactivate-mark nil)
24006 (element (org-element-at-point))
24007 (type (org-element-type element))
24008 (contents-begin (org-element-property :contents-begin element))
24009 (contents-end (org-element-property :contents-end element))
24010 (post-affiliated (org-element-property :post-affiliated element))
24011 (begin (org-element-property :begin element)))
24013 ((not element) (goto-char (point-min)))
24016 (org-backward-paragraph))
24017 ((and post-affiliated (<= (point) post-affiliated)) (goto-char begin))
24018 ((memq type '(node-property table-row))
24019 (goto-char (org-element-property
24020 :post-affiliated (org-element-property :parent element))))
24021 ((memq type '(property-drawer table)) (goto-char begin))
24022 ((memq type '(src-block verse-block))
24023 (when (eq type 'src-block)
24024 (setq contents-begin
24025 (save-excursion (goto-char begin) (forward-line) (point))))
24026 (if (= (point) contents-begin) (goto-char post-affiliated)
24027 ;; Inside a verse block, see blank lines as paragraph
24029 (let ((origin (point)))
24030 (skip-chars-backward " \r\t\n" contents-begin)
24031 (when (re-search-backward "^[ \t]*$" contents-begin 'move)
24032 (skip-chars-forward " \r\t\n" origin)
24033 (if (= (point) origin) (goto-char contents-begin)
24034 (beginning-of-line))))))
24035 ((not contents-begin) (goto-char (or post-affiliated begin)))
24036 ((eq type 'paragraph)
24037 (goto-char contents-begin)
24038 ;; When at first paragraph in an item or a footnote definition,
24039 ;; move directly to beginning of line.
24040 (let ((parent-contents
24041 (org-element-property
24042 :contents-begin (org-element-property :parent element))))
24043 (when (and parent-contents (= parent-contents contents-begin))
24044 (beginning-of-line))))
24045 ;; At the end of a greater element, move to the beginning of the
24046 ;; last element within.
24047 ((>= (point) contents-end)
24048 (goto-char (1- contents-end))
24049 (org-backward-paragraph))
24050 (t (goto-char (or post-affiliated begin))))
24051 ;; Ensure we never leave point invisible.
24052 (when (outline-invisible-p (point)) (beginning-of-visual-line))))
24054 (defun org-forward-element ()
24055 "Move forward by one element.
24056 Move to the next element at the same level, when possible."
24058 (cond ((eobp) (user-error "Cannot move further down"))
24059 ((org-with-limited-levels (org-at-heading-p))
24060 (let ((origin (point)))
24061 (goto-char (org-end-of-subtree nil t))
24062 (unless (org-with-limited-levels (org-at-heading-p))
24064 (user-error "Cannot move further down"))))
24066 (let* ((elem (org-element-at-point))
24067 (end (org-element-property :end elem))
24068 (parent (org-element-property :parent elem)))
24069 (cond ((and parent (= (org-element-property :contents-end parent) end))
24070 (goto-char (org-element-property :end parent)))
24071 ((integer-or-marker-p end) (goto-char end))
24072 (t (message "No element at point")))))))
24074 (defun org-backward-element ()
24075 "Move backward by one element.
24076 Move to the previous element at the same level, when possible."
24078 (cond ((bobp) (user-error "Cannot move further up"))
24079 ((org-with-limited-levels (org-at-heading-p))
24080 ;; At a headline, move to the previous one, if any, or stay
24082 (let ((origin (point)))
24083 (org-with-limited-levels (org-backward-heading-same-level 1))
24084 ;; When current headline has no sibling above, move to its
24086 (when (= (point) origin)
24087 (or (org-with-limited-levels (org-up-heading-safe))
24088 (progn (goto-char origin)
24089 (user-error "Cannot move further up"))))))
24091 (let* ((elem (org-element-at-point))
24092 (beg (org-element-property :begin elem)))
24094 ;; Move to beginning of current element if point isn't
24096 ((null beg) (message "No element at point"))
24097 ((/= (point) beg) (goto-char beg))
24099 (skip-chars-backward " \r\t\n")
24101 (let ((prev (org-element-at-point)))
24102 (goto-char (org-element-property :begin prev))
24103 (while (and (setq prev (org-element-property :parent prev))
24104 (<= (org-element-property :end prev) beg))
24105 (goto-char (org-element-property :begin prev)))))))))))
24107 (defun org-up-element ()
24108 "Move to upper element."
24110 (if (org-with-limited-levels (org-at-heading-p))
24111 (unless (org-up-heading-safe) (user-error "No surrounding element"))
24112 (let* ((elem (org-element-at-point))
24113 (parent (org-element-property :parent elem)))
24114 (if parent (goto-char (org-element-property :begin parent))
24115 (if (org-with-limited-levels (org-before-first-heading-p))
24116 (user-error "No surrounding element")
24117 (org-with-limited-levels (org-back-to-heading)))))))
24119 (defvar org-element-greater-elements)
24120 (defun org-down-element ()
24121 "Move to inner element."
24123 (let ((element (org-element-at-point)))
24125 ((memq (org-element-type element) '(plain-list table))
24126 (goto-char (org-element-property :contents-begin element))
24128 ((memq (org-element-type element) org-element-greater-elements)
24129 ;; If contents are hidden, first disclose them.
24130 (when (outline-invisible-p (line-end-position)) (org-cycle))
24131 (goto-char (or (org-element-property :contents-begin element)
24132 (user-error "No content for this element"))))
24133 (t (user-error "No inner element")))))
24135 (defun org-drag-element-backward ()
24136 "Move backward element at point."
24138 (if (org-with-limited-levels (org-at-heading-p)) (org-move-subtree-up)
24139 (let* ((elem (org-element-at-point))
24142 (goto-char (org-element-property :begin elem))
24143 (skip-chars-backward " \r\t\n")
24145 (let* ((beg (org-element-property :begin elem))
24146 (prev (org-element-at-point))
24148 (while (and (setq up (org-element-property :parent up))
24149 (<= (org-element-property :end prev) beg))
24152 ;; Error out if no previous element or previous element is
24153 ;; a parent of the current one.
24154 (if (or (not prev-elem) (org-element-nested-p elem prev-elem))
24155 (user-error "Cannot drag element backward")
24156 (let ((pos (point)))
24157 (org-element-swap-A-B prev-elem elem)
24158 (goto-char (+ (org-element-property :begin prev-elem)
24159 (- pos (org-element-property :begin elem)))))))))
24161 (defun org-drag-element-forward ()
24162 "Move forward element at point."
24164 (let* ((pos (point))
24165 (elem (org-element-at-point)))
24166 (when (= (point-max) (org-element-property :end elem))
24167 (user-error "Cannot drag element forward"))
24168 (goto-char (org-element-property :end elem))
24169 (let ((next-elem (org-element-at-point)))
24170 (when (or (org-element-nested-p elem next-elem)
24171 (and (eq (org-element-type next-elem) 'headline)
24172 (not (eq (org-element-type elem) 'headline))))
24174 (user-error "Cannot drag element forward"))
24175 ;; Compute new position of point: it's shifted by NEXT-ELEM
24176 ;; body's length (without final blanks) and by the length of
24177 ;; blanks between ELEM and NEXT-ELEM.
24178 (let ((size-next (- (save-excursion
24179 (goto-char (org-element-property :end next-elem))
24180 (skip-chars-backward " \r\t\n")
24182 ;; Small correction if buffer doesn't end
24183 ;; with a newline character.
24184 (if (and (eolp) (not (bolp))) (1+ (point)) (point)))
24185 (org-element-property :begin next-elem)))
24186 (size-blank (- (org-element-property :end elem)
24188 (goto-char (org-element-property :end elem))
24189 (skip-chars-backward " \r\t\n")
24192 (org-element-swap-A-B elem next-elem)
24193 (goto-char (+ pos size-next size-blank))))))
24195 (defun org-drag-line-forward (arg)
24196 "Drag the line at point ARG lines forward."
24198 (dotimes (n (abs arg))
24199 (let ((c (current-column)))
24202 (beginning-of-line 2)
24203 (transpose-lines 1)
24204 (beginning-of-line 0))
24205 (transpose-lines 1)
24206 (beginning-of-line -1))
24207 (org-move-to-column c))))
24209 (defun org-drag-line-backward (arg)
24210 "Drag the line at point ARG lines backward."
24212 (org-drag-line-forward (- arg)))
24214 (defun org-mark-element ()
24215 "Put point at beginning of this element, mark at end.
24217 Interactively, if this command is repeated or (in Transient Mark
24218 mode) if the mark is active, it marks the next element after the
24219 ones already marked."
24221 (let (deactivate-mark)
24222 (if (and (org-called-interactively-p 'any)
24223 (or (and (eq last-command this-command) (mark t))
24224 (and transient-mark-mode mark-active)))
24228 (goto-char (org-element-property :end (org-element-at-point)))))
24229 (let ((element (org-element-at-point)))
24231 (push-mark (org-element-property :end element) t t)
24232 (goto-char (org-element-property :begin element))))))
24234 (defun org-narrow-to-element ()
24235 "Narrow buffer to current element."
24237 (let ((elem (org-element-at-point)))
24239 ((eq (car elem) 'headline)
24241 (org-element-property :begin elem)
24242 (org-element-property :end elem)))
24243 ((memq (car elem) org-element-greater-elements)
24245 (org-element-property :contents-begin elem)
24246 (org-element-property :contents-end elem)))
24249 (org-element-property :begin elem)
24250 (org-element-property :end elem))))))
24252 (defun org-transpose-element ()
24253 "Transpose current and previous elements, keeping blank lines between.
24254 Point is moved after both elements."
24256 (org-skip-whitespace)
24257 (let ((end (org-element-property :end (org-element-at-point))))
24258 (org-drag-element-backward)
24261 (defun org-unindent-buffer ()
24262 "Un-indent the visible part of the buffer.
24263 Relative indentation (between items, inside blocks, etc.) isn't
24266 (unless (eq major-mode 'org-mode)
24267 (user-error "Cannot un-indent a buffer not in Org mode"))
24268 (let* ((parse-tree (org-element-parse-buffer 'greater-element))
24269 unindent-tree ; For byte-compiler.
24275 (if (memq (org-element-type element) '(headline section))
24276 (funcall unindent-tree (org-element-contents element))
24280 (org-element-property :begin element)
24281 (org-element-property :end element))
24282 (org-do-remove-indentation)))))
24283 (reverse contents))))))
24284 (funcall unindent-tree (org-element-contents parse-tree))))
24286 (defun org-show-subtree ()
24287 "Show everything after this heading at deeper levels."
24289 (outline-flag-region
24292 (org-end-of-subtree t t))
24295 (defun org-show-entry ()
24296 "Show the body directly following this heading.
24297 Show the heading too, if it is currently invisible."
24301 (org-back-to-heading t)
24302 (outline-flag-region
24303 (max (point-min) (1- (point)))
24305 (if (re-search-forward
24306 (concat "[\r\n]\\(" org-outline-regexp "\\)") nil t)
24307 (match-beginning 1)
24310 (org-cycle-hide-drawers 'children))))
24312 (defun org-make-options-regexp (kwds &optional extra)
24313 "Make a regular expression for keyword lines."
24316 (mapconcat 'regexp-quote kwds "\\|")
24317 (if extra (concat "\\|" extra))
24318 "\\):[ \t]*\\(.*\\)"))
24320 ;; Make isearch reveal the necessary context
24321 (defun org-isearch-end ()
24322 "Reveal context after isearch exits."
24323 (when isearch-success ; only if search was successful
24324 (if (featurep 'xemacs)
24325 ;; Under XEmacs, the hook is run in the correct place,
24326 ;; we directly show the context.
24327 (org-show-context 'isearch)
24328 ;; In Emacs the hook runs *before* restoring the overlays.
24329 ;; So we have to use a one-time post-command-hook to do this.
24330 ;; (Emacs 22 has a special variable, see function `org-mode')
24331 (unless (and (boundp 'isearch-mode-end-hook-quit)
24332 isearch-mode-end-hook-quit)
24333 ;; Only when the isearch was not quitted.
24334 (org-add-hook 'post-command-hook 'org-isearch-post-command
24336 (org-fix-ellipsis-at-bol)))
24338 (defun org-isearch-post-command ()
24339 "Remove self from hook, and show context."
24340 (remove-hook 'post-command-hook 'org-isearch-post-command 'local)
24341 (org-show-context 'isearch))
24344 ;;;; Integration with and fixes for other packages
24348 (defvar org-imenu-markers nil
24349 "All markers currently used by Imenu.")
24350 (make-variable-buffer-local 'org-imenu-markers)
24352 (defun org-imenu-new-marker (&optional pos)
24353 "Return a new marker for use by Imenu, and remember the marker."
24354 (let ((m (make-marker)))
24355 (move-marker m (or pos (point)))
24356 (push m org-imenu-markers)
24359 (defun org-imenu-get-tree ()
24360 "Produce the index for Imenu."
24361 (mapc (lambda (x) (move-marker x nil)) org-imenu-markers)
24362 (setq org-imenu-markers nil)
24363 (let* ((n org-imenu-depth)
24364 (re (concat "^" (org-get-limited-outline-regexp)))
24365 (subs (make-vector (1+ n) nil))
24367 m level head0 head)
24371 (goto-char (point-max))
24372 (while (re-search-backward re nil t)
24373 (setq level (org-reduced-level (funcall outline-level)))
24374 (when (and (<= level n)
24375 (looking-at org-complex-heading-regexp)
24376 (setq head0 (org-match-string-no-properties 4)))
24377 (setq head (org-link-display-format head0)
24378 m (org-imenu-new-marker))
24379 (org-add-props head nil 'org-imenu-marker m 'org-imenu t)
24380 (if (>= level last-level)
24381 (push (cons head m) (aref subs level))
24382 (push (cons head (aref subs (1+ level))) (aref subs level))
24383 (loop for i from (1+ level) to n do (aset subs i nil)))
24384 (setq last-level level)))))
24387 (eval-after-load "imenu"
24389 (add-hook 'imenu-after-jump-hook
24391 (if (derived-mode-p 'org-mode)
24392 (org-show-context 'org-goto))))))
24394 (defun org-link-display-format (link)
24395 "Replace a link with its the description.
24396 If there is no description, use the link target."
24398 (if (string-match org-bracket-link-analytic-regexp link)
24399 (replace-match (if (match-end 5)
24400 (match-string 5 link)
24401 (concat (match-string 1 link)
24402 (match-string 3 link)))
24406 (defun org-toggle-link-display ()
24407 "Toggle the literal or descriptive display of links."
24409 (if org-descriptive-links
24410 (progn (org-remove-from-invisibility-spec '(org-link))
24411 (org-restart-font-lock)
24412 (setq org-descriptive-links nil))
24413 (progn (add-to-invisibility-spec '(org-link))
24414 (org-restart-font-lock)
24415 (setq org-descriptive-links t))))
24417 ;; Speedbar support
24419 (defvar org-speedbar-restriction-lock-overlay (make-overlay 1 1)
24420 "Overlay marking the agenda restriction line in speedbar.")
24421 (overlay-put org-speedbar-restriction-lock-overlay
24422 'face 'org-agenda-restriction-lock)
24423 (overlay-put org-speedbar-restriction-lock-overlay
24424 'help-echo "Agendas are currently limited to this item.")
24425 (org-detach-overlay org-speedbar-restriction-lock-overlay)
24427 (defun org-speedbar-set-agenda-restriction ()
24428 "Restrict future agenda commands to the location at point in speedbar.
24429 To get rid of the restriction, use \\[org-agenda-remove-restriction-lock]."
24431 (require 'org-agenda)
24432 (let (p m tp np dir txt)
24434 ((setq p (text-property-any (point-at-bol) (point-at-eol)
24436 (setq m (get-text-property p 'org-imenu-marker))
24437 (with-current-buffer (marker-buffer m)
24439 (org-agenda-set-restriction-lock 'subtree)))
24440 ((setq p (text-property-any (point-at-bol) (point-at-eol)
24441 'speedbar-function 'speedbar-find-file))
24442 (setq tp (previous-single-property-change
24443 (1+ p) 'speedbar-function)
24444 np (next-single-property-change
24445 tp 'speedbar-function)
24446 dir (speedbar-line-directory)
24447 txt (buffer-substring-no-properties (or tp (point-min))
24448 (or np (point-max))))
24449 (with-current-buffer (find-file-noselect
24450 (let ((default-directory dir))
24451 (expand-file-name txt)))
24452 (unless (derived-mode-p 'org-mode)
24453 (user-error "Cannot restrict to non-Org-mode file"))
24454 (org-agenda-set-restriction-lock 'file)))
24455 (t (user-error "Don't know how to restrict Org-mode's agenda")))
24456 (move-overlay org-speedbar-restriction-lock-overlay
24457 (point-at-bol) (point-at-eol))
24458 (setq current-prefix-arg nil)
24459 (org-agenda-maybe-redo)))
24461 (defvar speedbar-file-key-map)
24462 (declare-function speedbar-add-supported-extension "speedbar" (extension))
24463 (eval-after-load "speedbar"
24465 (speedbar-add-supported-extension ".org")
24466 (define-key speedbar-file-key-map "<" 'org-speedbar-set-agenda-restriction)
24467 (define-key speedbar-file-key-map "\C-c\C-x<" 'org-speedbar-set-agenda-restriction)
24468 (define-key speedbar-file-key-map ">" 'org-agenda-remove-restriction-lock)
24469 (define-key speedbar-file-key-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
24470 (add-hook 'speedbar-visiting-tag-hook
24471 (lambda () (and (derived-mode-p 'org-mode) (org-show-context 'org-goto))))))
24473 ;;; Fixes and Hacks for problems with other packages
24475 (defun org-mode-flyspell-verify ()
24476 "Function used for `flyspell-generic-check-word-predicate'."
24477 (if (org-at-heading-p)
24478 ;; At a headline or an inlinetask, check title only. This is
24479 ;; faster than relying on `org-element-at-point'.
24480 (and (save-excursion (beginning-of-line)
24481 (and (let ((case-fold-search t))
24482 (not (looking-at "\\*+ END[ \t]*$")))
24483 (looking-at org-complex-heading-regexp)))
24484 (match-beginning 4)
24485 (>= (point) (match-beginning 4))
24486 (or (not (match-beginning 5))
24487 (< (point) (match-beginning 5))))
24488 (let* ((element (org-element-at-point))
24489 (post-affiliated (org-element-property :post-affiliated element))
24492 ;; Non-nil if checks can be done for object at point.
24494 (let ((object (save-excursion
24495 (when (org-looking-at-p "\\>") (backward-char))
24496 (org-element-context element))))
24497 (case (org-element-type object)
24498 ;; Prevent checks in links due to keybinding conflict
24500 ((code entity export-snippet inline-babel-call
24501 inline-src-block line-break latex-fragment link macro
24502 statistics-cookie target timestamp verbatim)
24504 (footnote-reference
24505 ;; Only in inline footnotes, within the definition.
24506 (and (eq (org-element-property :type object) 'inline)
24508 (goto-char (org-element-property :begin object))
24509 (search-forward ":" nil t 2))
24511 (otherwise t)))))))
24513 ;; Ignore checks in all affiliated keywords but captions.
24514 ((and post-affiliated (< (point) post-affiliated))
24515 (and (save-excursion
24516 (beginning-of-line)
24517 (let ((case-fold-search t)) (looking-at "[ \t]*#\\+CAPTION:")))
24518 (> (point) (match-end 0))
24519 (funcall object-check)))
24520 ;; Ignore checks in LOGBOOK (or equivalent) drawer.
24521 ((and org-log-into-drawer
24522 (let ((log (or (org-string-nw-p org-log-into-drawer) "LOGBOOK"))
24524 (while (and parent (not (eq (org-element-type parent) 'drawer)))
24525 (setq parent (org-element-property :parent parent)))
24527 (eq (compare-strings
24529 (org-element-property :drawer-name parent) nil nil t)
24533 (case (org-element-type element)
24534 ((comment quote-section) t)
24536 ;; Allow checks between block markers, not on them.
24537 (and (> (line-beginning-position)
24538 (org-element-property :post-affiliated element))
24541 (skip-chars-forward " \r\t\n")
24542 (< (point) (org-element-property :end element)))))
24543 ;; Arbitrary list of keywords where checks are meaningful.
24544 ;; Make sure point is on the value part of the element.
24546 (and (member (org-element-property :key element)
24547 '("DESCRIPTION" "TITLE"))
24549 (beginning-of-line) (search-forward ":") (point))
24551 ;; Check is globally allowed in paragraphs verse blocks and
24552 ;; table rows (after affiliated keywords) but some objects
24553 ;; must not be affected.
24554 ((paragraph table-row verse-block)
24555 (and (>= (point) (org-element-property :contents-begin element))
24556 (< (point) (org-element-property :contents-end element))
24557 (funcall object-check)))))))))
24558 (put 'org-mode 'flyspell-mode-predicate 'org-mode-flyspell-verify)
24560 (defun org-remove-flyspell-overlays-in (beg end)
24561 "Remove flyspell overlays in region."
24562 (and (org-bound-and-true-p flyspell-mode)
24563 (fboundp 'flyspell-delete-region-overlays)
24564 (flyspell-delete-region-overlays beg end)))
24566 (defvar flyspell-delayed-commands)
24567 (eval-after-load "flyspell"
24568 '(add-to-list 'flyspell-delayed-commands 'org-self-insert-command))
24570 ;; Make `bookmark-jump' shows the jump location if it was hidden.
24571 (eval-after-load "bookmark"
24572 '(if (boundp 'bookmark-after-jump-hook)
24573 ;; We can use the hook
24574 (add-hook 'bookmark-after-jump-hook 'org-bookmark-jump-unhide)
24575 ;; Hook not available, use advice
24576 (defadvice bookmark-jump (after org-make-visible activate)
24577 "Make the position visible."
24578 (org-bookmark-jump-unhide))))
24580 ;; Make sure saveplace shows the location if it was hidden
24581 (eval-after-load "saveplace"
24582 '(defadvice save-place-find-file-hook (after org-make-visible activate)
24583 "Make the position visible."
24584 (org-bookmark-jump-unhide)))
24586 ;; Make sure ecb shows the location if it was hidden
24587 (eval-after-load "ecb"
24588 '(defadvice ecb-method-clicked (after esf/org-show-context activate)
24589 "Make hierarchy visible when jumping into location from ECB tree buffer."
24590 (if (derived-mode-p 'org-mode)
24591 (org-show-context))))
24593 (defun org-bookmark-jump-unhide ()
24594 "Unhide the current position, to show the bookmark location."
24595 (and (derived-mode-p 'org-mode)
24596 (or (outline-invisible-p)
24597 (save-excursion (goto-char (max (point-min) (1- (point))))
24598 (outline-invisible-p)))
24599 (org-show-context 'bookmark-jump)))
24601 (defun org-mark-jump-unhide ()
24602 "Make the point visible with `org-show-context' after jumping to the mark."
24603 (when (and (derived-mode-p 'org-mode)
24604 (outline-invisible-p))
24605 (org-show-context 'mark-goto)))
24607 (eval-after-load "simple"
24608 '(defadvice pop-to-mark-command (after org-make-visible activate)
24609 "Make the point visible with `org-show-context'."
24610 (org-mark-jump-unhide)))
24612 (eval-after-load "simple"
24613 '(defadvice exchange-point-and-mark (after org-make-visible activate)
24614 "Make the point visible with `org-show-context'."
24615 (org-mark-jump-unhide)))
24617 (eval-after-load "simple"
24618 '(defadvice pop-global-mark (after org-make-visible activate)
24619 "Make the point visible with `org-show-context'."
24620 (org-mark-jump-unhide)))
24622 ;; Make session.el ignore our circular variable
24623 (defvar session-globals-exclude)
24624 (eval-after-load "session"
24625 '(add-to-list 'session-globals-exclude 'org-mark-ring))
24631 (run-hooks 'org-load-hook)
24633 ;;; org.el ends here