Merge branch 'maint'
[org-mode.git] / lisp / org.el
blob8320033138cf236647fde8b3a4024d49d86d3eb8
1 ;;; org.el --- Outline-based notes management and organizer
3 ;; Carstens outline-mode for keeping track of everything.
4 ;; Copyright (C) 2004-2014 Free Software Foundation, Inc.
5 ;;
6 ;; Author: Carsten Dominik <carsten at orgmode dot org>
7 ;; Maintainer: Carsten Dominik <carsten at orgmode dot org>
8 ;; Keywords: outlines, hypermedia, calendar, wp
9 ;; Homepage: http://orgmode.org
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software: you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation, either version 3 of the License, or
16 ;; (at your option) any later version.
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26 ;;; Commentary:
28 ;; Org-mode is a mode for keeping notes, maintaining ToDo lists, and doing
29 ;; project planning with a fast and effective plain-text system.
31 ;; Org-mode develops organizational tasks around NOTES files that contain
32 ;; information about projects as plain text. Org-mode is implemented on
33 ;; top of outline-mode, which makes it possible to keep the content of
34 ;; large files well structured. Visibility cycling and structure editing
35 ;; help to work with the tree. Tables are easily created with a built-in
36 ;; table editor. Org-mode supports ToDo items, deadlines, time stamps,
37 ;; and scheduling. It dynamically compiles entries into an agenda that
38 ;; utilizes and smoothly integrates much of the Emacs calendar and diary.
39 ;; Plain text URL-like links connect to websites, emails, Usenet
40 ;; messages, BBDB entries, and any files related to the projects. For
41 ;; printing and sharing of notes, an Org-mode file can be exported as a
42 ;; structured ASCII file, as HTML, or (todo and agenda items only) as an
43 ;; iCalendar file. It can also serve as a publishing tool for a set of
44 ;; linked webpages.
46 ;; Installation and Activation
47 ;; ---------------------------
48 ;; See the corresponding sections in the manual at
50 ;; http://orgmode.org/org.html#Installation
52 ;; Documentation
53 ;; -------------
54 ;; The documentation of Org-mode can be found in the TeXInfo file. The
55 ;; distribution also contains a PDF version of it. At the homepage of
56 ;; Org-mode, you can read the same text online as HTML. There is also an
57 ;; excellent reference card made by Philip Rooke. This card can be found
58 ;; in the etc/ directory of Emacs 22.
60 ;; A list of recent changes can be found at
61 ;; http://orgmode.org/Changes.html
63 ;;; Code:
65 (defvar org-inhibit-highlight-removal nil) ; dynamically scoped param
66 (defvar org-table-formula-constants-local nil
67 "Local version of `org-table-formula-constants'.")
68 (make-variable-buffer-local 'org-table-formula-constants-local)
70 ;;;; Require other packages
72 (eval-when-compile
73 (require 'cl)
74 (require 'gnus-sum))
76 (require 'calendar)
77 (require 'find-func)
78 (require 'format-spec)
80 (or (equal this-command 'eval-buffer)
81 (condition-case nil
82 (load (concat (file-name-directory load-file-name)
83 "org-loaddefs.el")
84 nil t t t)
85 (error
86 (message "WARNING: No org-loaddefs.el file could be found from where org.el is loaded.")
87 (sit-for 3)
88 (message "You need to run \"make\" or \"make autoloads\" from Org lisp directory")
89 (sit-for 3))))
91 (require 'org-macs)
92 (require 'org-compat)
94 ;; `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
201 "\\`[ \t\n\r]+" ""
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)
207 ;;;###autoload
208 (defun org-babel-do-load-languages (sym value)
209 "Load the languages defined in `org-babel-load-languages'."
210 (set-default sym value)
211 (mapc (lambda (pair)
212 (let ((active (cdr pair)) (lang (symbol-name (car pair))))
213 (if active
214 (progn
215 (require (intern (concat "ob-" lang))))
216 (progn
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))
224 ;;;###autoload
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)
233 (float-time
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)))
242 (setq exported-file
243 (car (org-babel-tangle-file file exported-file "emacs-lisp"))))
244 (message "%s %s"
245 (if compile
246 (progn (byte-compile-file exported-file 'load)
247 "Compiled and loaded")
248 (progn (load-file exported-file) "Loaded"))
249 exported-file)))
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."
262 :group 'org-babel
263 :set 'org-babel-do-load-languages
264 :version "24.1"
265 :type '(alist :tag "Babel Languages"
266 :key-type
267 (choice
268 (const :tag "Awk" awk)
269 (const :tag "C" C)
270 (const :tag "R" R)
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)
281 (const :tag "IO" io)
282 (const :tag "J" J)
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
317 identifier."
318 :type 'boolean
319 :version "24.1"
320 :group 'org-id)
322 ;;; Version
323 (org-check-version)
325 ;;;###autoload
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
331 FULL is given."
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")))
337 (org-trash (or
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)"
344 org-version
345 git-version
346 (if org-install-dir
347 (if (string= org-dir org-install-dir)
348 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))
354 version1))
356 (defconst org-version (org-version))
359 ;;; Syntax Constants
361 ;;;; Block
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
395 (concat "^[ \t]*"
396 (regexp-opt
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.")
403 ;;;; Drawer
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.")
431 ;;;; Headline
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.")
471 ;;;; Node Property
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.")
477 ;;;; Table
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.")
501 ;;;; Timestamp
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
552 (defgroup org nil
553 "Outline-based notes management and organizer."
554 :tag "Org"
555 :group 'outlines
556 :group 'calendar)
558 (defcustom org-mode-hook nil
559 "Mode hook for Org-mode, run after the mode was turned on."
560 :group 'org
561 :type 'hook)
563 (defcustom org-load-hook nil
564 "Hook that is run after org.el has been loaded."
565 :group 'org
566 :type 'hook)
568 (defcustom org-log-buffer-setup-hook nil
569 "Hook that is run after an Org log buffer is created."
570 :group 'org
571 :version "24.1"
572 :type 'hook)
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))
581 (mapc (lambda (ext)
582 (condition-case nil (require ext)
583 (error (message "Problems while trying to load feature `%s'" ext))))
584 org-modules)
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."
589 (set var value)
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:
606 \(provide 'org-xyz)
608 For export specific modules, see also `org-export-backends'."
609 :group 'org
610 :set 'org-set-modules
611 :version "24.4"
612 :package-version '(Org . "8.0")
613 :type
614 '(set :greedy t
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
683 needed.
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:
690 \(progn
691 \(setq org-export--registered-backends
692 \(org-remove-if-not
693 \(lambda (backend)
694 \(let ((name (org-export-backend-name backend)))
695 \(or (memq name val)
696 \(catch 'parentp
697 \(dolist (b val)
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)
704 \(cond
705 \((not (load (format \"ox-%s\" backend) t t))
706 \(message \"Problems while trying to load export back-end `%s'\"
707 backend))
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
712 depends on, if any."
713 :group 'org
714 :group 'org-export
715 :version "24.4"
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
724 (org-remove-if-not
725 (lambda (backend)
726 (let ((name (org-export-backend-name backend)))
727 (or (memq name val)
728 (catch 'parentp
729 (dolist (b val)
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
734 ;; parents.
735 (let ((new-list (mapcar 'org-export-backend-name
736 org-export--registered-backends)))
737 (dolist (backend val)
738 (cond
739 ((not (load (format "ox-%s" backend) t t))
740 (message "Problems while trying to load export back-end `%s'"
741 backend))
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)))
765 (eval-after-load 'ox
766 '(mapc
767 (lambda (backend)
768 (condition-case nil (require (intern (format "ox-%s" backend)))
769 (error (message "Problems while trying to load export back-end `%s'"
770 backend))))
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."
811 :group 'org
812 :type '(choice
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"))
839 :version "24.1"
840 :group 'org-todo
841 :group 'org-archive)
843 (defgroup org-startup nil
844 "Options concerning startup of Org-mode."
845 :tag "Org Startup"
846 :group 'org)
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)
855 #+STARTUP: content
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."
861 :group 'org-startup
862 :type '(choice
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."
872 :group 'org-startup
873 :type 'boolean)
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:
880 #+STARTUP: indent
881 #+STARTUP: noindent"
882 :group 'org-structure
883 :type '(choice
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."
912 :group 'org-startup
913 :version "24.4"
914 :package-version '(Org . "8.0")
915 :type '(choice
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:
925 #+STARTUP: beamer"
926 :group 'org-startup
927 :version "24.1"
928 :type 'boolean)
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:
936 #+STARTUP: align
937 #+STARTUP: noalign"
938 :group 'org-startup
939 :type 'boolean)
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"
947 :group 'org-startup
948 :version "24.1"
949 :type 'boolean)
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"
958 :group 'org-startup
959 :version "24.4"
960 :package-version '(Org . "8.0")
961 :type 'boolean)
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
969 has been set."
970 :group 'org-startup
971 :type 'boolean)
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
981 `org-disputed-keys'.
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
985 become effective."
986 :group 'org-startup
987 :type 'boolean)
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
998 it work for ESC."
999 :group 'org-startup
1000 :type 'boolean)
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."
1018 :group 'org-startup
1019 :type 'alist)
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)))
1033 key)
1035 (defun org-find-if (predicate seq)
1036 (catch 'exit
1037 (while seq
1038 (if (funcall predicate (car seq))
1039 (throw 'exit (car seq))
1040 (pop 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
1053 effective."
1054 :group 'org-startup
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."
1064 :tag "Org Keywords"
1065 :group 'org)
1067 (defcustom org-closed-keep-when-no-todo nil
1068 "Remove CLOSED: time-stamp when switching back to a non-todo state?"
1069 :group 'org-todo
1070 :group 'org-keywords
1071 :version "24.4"
1072 :package-version '(Org . "8.0")
1073 :type 'boolean)
1075 (defgroup org-structure nil
1076 "Options concerning the general structure of Org-mode files."
1077 :tag "Org Structure"
1078 :group 'org)
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
1086 '(choice
1087 (const :tag "Always" t)
1088 (const :tag "Never" nil)
1089 (repeat :greedy t :tag "Individual contexts"
1090 (cons
1091 (choice :tag "Context"
1092 (const agenda)
1093 (const org-goto)
1094 (const occur-tree)
1095 (const tags-tree)
1096 (const link-search)
1097 (const mark-goto)
1098 (const bookmark-jump)
1099 (const isearch)
1100 (const default))
1101 (boolean))))
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
1128 match is shown.
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
1152 :version "24.4"
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].
1171 Valid values are:
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
1180 :type '(choice
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
1197 :type '(choice
1198 (const :tag "Never" nil)
1199 (const :tag "At beginning of headline stars" t)
1200 (function)))
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")
1220 (choice
1221 (function)
1222 (sexp))))))
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:
1231 :last-capture
1232 :last-capture-marker
1233 :last-refile
1234 When a key does not show up in the property list, the corresponding bookmark
1235 is not set."
1236 :group 'org-structure
1237 :type 'plist)
1239 (defgroup org-cycle nil
1240 "Options concerning visibility cycling in Org-mode."
1241 :tag "Org Cycle"
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."
1246 :group 'org-cycle
1247 :type 'boolean)
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
1258 than its value."
1259 :group 'org-cycle
1260 :type '(choice
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"
1270 :group 'org-startup
1271 :group 'org-cycle
1272 :type 'boolean)
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."
1282 :group 'org-cycle
1283 :type 'boolean)
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."
1297 :group 'org-cycle
1298 :type 'boolean)
1300 (defcustom org-cycle-emulate-tab t
1301 "Where should `org-cycle' emulate TAB.
1302 nil Never
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."
1309 :group 'org-cycle
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
1324 following headline.
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."
1330 :group 'org-cycle
1331 :type 'integer)
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'."
1341 :group 'org-cycle
1342 :type 'hook)
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'."
1355 :group 'org-cycle
1356 :type 'hook)
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:
1373 #+STARTUP: odd
1374 #+STARTUP: oddeven"
1375 :group 'org-edit-structure
1376 :group 'org-appearance
1377 :type 'boolean)
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
1401 :type 'boolean)
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
1417 ellipses.
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
1422 special positions.
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
1427 :type '(choice
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
1452 :type 'boolean)
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
1461 :version "24.1"
1462 :type '(choice
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
1470 :type 'boolean)
1472 (defcustom org-catch-invisible-edits nil
1473 "Check if in invisible region before inserting or deleting a character.
1474 Valid values are:
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
1487 :version "24.1"
1488 :type '(choice
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
1502 :type 'boolean)
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
1509 :type 'boolean)
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
1514 new line.
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
1522 customized"
1523 :group 'org-structure
1524 :group 'org-table
1525 :type '(choice
1526 (const :tag "Always" t)
1527 (const :tag "Never" nil)
1528 (repeat :greedy t :tag "Individual contexts"
1529 (cons
1530 (choice :tag "Context"
1531 (const headline)
1532 (const item)
1533 (const table)
1534 (const default))
1535 (boolean)))))
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
1544 :type 'boolean)
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
1558 :type '(list
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
1571 :type 'hook)
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
1578 :type 'boolean)
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
1591 :type 'boolean)
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
1603 :type 'boolean)
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
1612 :group 'org-time
1613 :type 'boolean)
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
1619 as possible."
1620 :group 'org-sparse-trees
1621 :type 'hook)
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
1632 :type 'integer)
1634 (defgroup org-table nil
1635 "Options concerning tables in Org-mode."
1636 :tag "Org Table"
1637 :group 'org)
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
1644 do the following:
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'."
1664 :group 'org-table
1665 :type '(choice
1666 (const :tag "off" nil)
1667 (const :tag "on" t)
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."
1676 :group 'org-table
1677 :type 'boolean)
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
1684 :type 'boolean)
1686 (defgroup org-link nil
1687 "Options concerning links in Org-mode."
1688 :tag "Org Link"
1689 :group 'org)
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
1713 a string.
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."
1719 :group 'org-link
1720 :type '(repeat
1721 (cons
1722 (string :tag "Protocol")
1723 (choice
1724 (string :tag "Format")
1725 (function)))))
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
1732 literally.
1734 You can interactively set the value of this variable by calling
1735 `org-toggle-link-display' or from the menu Org>Hyperlinks menu."
1736 :group 'org-link
1737 :type 'boolean)
1739 (defcustom org-link-file-path-type 'adaptive
1740 "How the path name in file links should be stored.
1741 Valid values are:
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."
1749 :group 'org-link
1750 :type '(choice
1751 (const relative)
1752 (const absolute)
1753 (const noabbrev)
1754 (const adaptive)))
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."
1780 :group 'org-link
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."
1797 :group 'org-link
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"
1803 :group 'org-link)
1805 (defcustom org-url-hexify-p t
1806 "When non-nil, hexify URL when creating a link."
1807 :type 'boolean
1808 :version "24.3"
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'.
1821 %s subject
1822 %d date
1823 %m message-id.
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
1830 :type 'string)
1832 (defcustom org-from-is-user-regexp
1833 (let (r1 r2)
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
1842 :type 'regexp)
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
1866 more efficient."
1867 :group 'org-link-store
1868 :type 'boolean)
1870 (defgroup org-link-follow nil
1871 "Options concerning following links in Org-mode."
1872 :tag "Org Follow Link"
1873 :group 'org-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
1892 :type 'hook)
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
1900 :type 'boolean)
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
1906 :type 'boolean)
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
1914 :version "24.4"
1915 :package-version '(Org . "8.3")
1916 :type '(choice
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
1925 :type 'integer)
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
1932 :version "24.1"
1933 :type '(choice
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"
1937 query-to-create)))
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.
1949 For VM, use any of
1950 `vm-visit-folder'
1951 `vm-visit-folder-other-window'
1952 `vm-visit-folder-other-frame'
1953 For Gnus, use any of
1954 `gnus'
1955 `gnus-other-frame'
1956 `org-gnus-no-new-news'
1957 For FILE, use any of
1958 `find-file'
1959 `find-file-other-window'
1960 `find-file-other-frame'
1961 For Wanderlust use any of
1962 `wl'
1963 `wl-other-frame'
1964 For the calendar, use the variable `calendar-setup'.
1965 For BBDB, it is currently only possible to display the matches in
1966 another window."
1967 :group 'org-link-follow
1968 :type '(list
1969 (cons (const vm)
1970 (choice
1971 (const vm-visit-folder)
1972 (const vm-visit-folder-other-window)
1973 (const vm-visit-folder-other-frame)))
1974 (cons (const vm-imap)
1975 (choice
1976 (const vm-visit-imap-folder)
1977 (const vm-visit-imap-folder-other-window)
1978 (const vm-visit-imap-folder-other-frame)))
1979 (cons (const gnus)
1980 (choice
1981 (const gnus)
1982 (const gnus-other-frame)
1983 (const org-gnus-no-new-news)))
1984 (cons (const file)
1985 (choice
1986 (const find-file)
1987 (const find-file-other-window)
1988 (const find-file-other-frame)))
1989 (cons (const wl)
1990 (choice
1991 (const wl)
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 \
1999 is displayed in
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
2004 :type 'boolean)
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
2013 :type 'boolean)
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
2020 :type 'boolean)
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
2034 :type '(choice
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
2045 :version "24.1"
2046 :type 'regexp)
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
2060 :type '(choice
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
2071 :version "24.1"
2072 :type 'regexp)
2074 (defconst org-file-apps-defaults-gnu
2075 '((remote . emacs)
2076 (system . mailcap)
2077 (t . mailcap))
2078 "Default file applications on a UNIX or GNU/Linux system.
2079 See `org-file-apps'.")
2081 (defconst org-file-apps-defaults-macosx
2082 '((remote . emacs)
2083 (t . "open %s")
2084 (system . "open %s")
2085 ("ps.gz" . "gv %s")
2086 ("eps.gz" . "gv %s")
2087 ("dvi" . "xdvi %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
2095 (list
2096 '(remote . emacs)
2097 (cons t
2098 (list (if (featurep 'xemacs)
2099 'mswindows-shell-execute
2100 'w32-shell-execute)
2101 "open" 'file))
2102 (cons 'system
2103 (list (if (featurep 'xemacs)
2104 'mswindows-shell-execute
2105 'w32-shell-execute)
2106 "open" 'file)))
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
2121 file identifier are
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
2146 file name only).
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
2172 part.
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
2179 here.
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
2189 :type '(repeat
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"
2197 auto-mode))
2198 (choice :value ""
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."
2207 :type 'string
2208 :version "24.3"
2209 :group 'org-link-follow)
2211 (defgroup org-refile nil
2212 "Options concerning refiling entries in Org-mode."
2213 :tag "Org Refile"
2214 :group 'org)
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
2224 `org-directory'
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."
2228 :group 'org-refile
2229 :group 'org-capture
2230 :type 'directory)
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."
2236 :group 'org-refile
2237 :group 'org-capture
2238 :type '(choice
2239 (const :tag "Default from remember-data-file" nil)
2240 file))
2242 (defcustom org-goto-interface 'outline
2243 "The default interface to be used for `org-goto'.
2244 Allowed values are:
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."
2251 :group 'org-refile
2252 :type '(choice
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."
2258 :group 'org-refile
2259 :type 'integer)
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."
2266 :group 'org-capture
2267 :group 'org-refile
2268 :type '(choice
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'."
2294 :group 'org-refile
2295 :group 'org-progress
2296 :version "24.1"
2297 :type '(choice
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
2311 any of:
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
2314 not be considered.
2315 - a cons cell (:todo . \"KEYWORD\") to identify refile targets by
2316 todo keyword.
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))'."
2335 :group 'org-refile
2336 :type '(repeat
2337 (cons
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
2359 of the subtree."
2360 :group 'org-refile
2361 :type '(choice
2362 (const nil)
2363 (function)))
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'."
2373 :group 'org-refile
2374 :version "24.1"
2375 :type 'boolean)
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."
2386 :group 'org-refile
2387 :type '(choice
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."
2402 :group 'org-refile
2403 :type 'boolean)
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
2415 heading."
2416 :group 'org-refile
2417 :type '(choice
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."
2429 :group 'org-refile
2430 :version "24.1"
2431 :type 'boolean)
2433 (defgroup org-todo nil
2434 "Options concerning TODO items in Org-mode."
2435 :tag "Org TODO"
2436 :group 'org)
2438 (defgroup org-progress nil
2439 "Options concerning Progress logging in Org-mode."
2440 :tag "Org Progress"
2441 :group 'org-time)
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'."
2489 :group 'org-todo
2490 :group 'org-keywords
2491 :type '(choice
2492 (repeat :tag "Old syntax, just keywords"
2493 (string :tag "Keyword"))
2494 (repeat :tag "New syntax"
2495 (cons
2496 (choice
2497 :tag "Interpretation"
2498 ;;Quick and dirty way to see
2499 ;;`org-todo-interpretations'. This takes the
2500 ;;place of item arguments
2501 :convert-widget
2502 (lambda (widget)
2503 (widget-put widget
2504 :args (mapcar
2505 (lambda (x)
2506 (widget-convert
2507 (cons 'const x)))
2508 org-todo-interpretation-widgets))
2509 widget))
2510 (repeat
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
2548 more information."
2549 :group 'org-todo
2550 :group 'org-keywords
2551 :type '(choice (const sequence)
2552 (const type)))
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
2558 selection scheme.
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)."
2572 :group 'org-todo
2573 :type '(choice
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
2583 not in this list.
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."
2590 :group 'org-todo
2591 :type '(choice
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."
2607 :group 'org-todo
2608 :type 'boolean)
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'."
2614 :group 'org-todo
2615 :type 'hook)
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
2625 is blocked.")
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:
2640 TODO state changes
2641 ------------------
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)
2654 (set var val)
2655 (if 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)))
2660 :group 'org-todo
2661 :type 'boolean)
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)
2672 (set var val)
2673 (if 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)))
2678 :group 'org-todo
2679 :type 'boolean)
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."
2686 :group 'org-todo
2687 :type 'boolean)
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
2693 with that."
2694 :group 'org-todo
2695 :type 'boolean)
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."
2706 :group 'org-todo
2707 :group 'org-tags
2708 :type '(repeat
2709 (cons (choice :tag "When changing to"
2710 (const :tag "Not-done state" todo)
2711 (const :tag "Done state" done)
2712 (string :tag "State"))
2713 (repeat
2714 (cons :tag "Tag action"
2715 (string :tag "Tag")
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
2730 #+STARTUP: logdone
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."
2735 :group 'org-todo
2736 :group 'org-progress
2737 :type '(choice
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.
2743 (cond
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"
2762 :group 'org-todo
2763 :group 'org-progress
2764 :type '(choice
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."
2786 :group 'org-todo
2787 :group 'org-progress
2788 :type '(choice
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"
2800 :group 'org-todo
2801 :group 'org-progress
2802 :type 'boolean)
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
2808 :type 'boolean)
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")
2819 (clock-out . ""))
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
2823 empty string.
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."
2835 :group 'org-todo
2836 :group 'org-progress
2837 :type '(list :greedy t
2838 (cons (const :tag "Heading when closing an item" done) string)
2839 (cons (const :tag
2840 "Heading when changing todo state (todo sequence only)"
2841 state) string)
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'
2870 will be ignored.
2872 You can set the property LOG_INTO_DRAWER to overrule this setting for
2873 a subtree."
2874 :group 'org-todo
2875 :group 'org-progress
2876 :type '(choice
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)))
2888 (cond
2889 ((not p) org-log-into-drawer)
2890 ((equal p "nil") nil)
2891 ((equal p "t") "LOGBOOK")
2892 (t p))))
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
2902 set."
2903 :group 'org-todo
2904 :group 'org-progress
2905 :type 'boolean)
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"
2915 :group 'org-todo
2916 :group 'org-progress
2917 :type 'boolean)
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."
2924 :group 'org-todo
2925 :version "24.1"
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."
2949 :group 'org-todo
2950 :group 'org-progress
2951 :type '(choice
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"
2960 :group 'org-todo)
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
2965 set a priority."
2966 :group 'org-priorities
2967 :type 'boolean)
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
2973 :type 'character)
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
2979 :type 'character)
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
2992 :type 'character)
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
3000 :type 'boolean)
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
3010 :version "24.1"
3011 :type '(choice
3012 (const nil)
3013 (function)))
3015 (defgroup org-time nil
3016 "Options concerning time stamps and deadlines in Org-mode."
3017 :tag "Org Time"
3018 :group 'org)
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."
3025 :group 'org-time
3026 :type 'boolean)
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."
3042 :group 'org-time
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)))
3047 :type '(list
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"
3062 :group 'org-time
3063 :set 'set-default
3064 :type 'sexp)
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."
3074 :group 'org-time
3075 :type 'sexp)
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))))
3081 (if inactive
3082 (concat "[" (substring f 1 -1) "]")
3083 f)))
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
3099 unit.
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
3105 its value is 0.
3108 For example,
3110 \(:days \"%dd\" :hours \"%d\" :require-hours t :minutes \":%02d\"
3111 :require-minutes t)
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
3116 hour).
3118 The value
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)."
3125 :group 'org-time
3126 :group 'org-clock
3127 :version "24.4"
3128 :package-version '(Org . "8.0")
3129 :type '(choice (string :tag "Format string")
3130 (set :tag "Plist"
3131 (group :inline t (const :tag "Years" :years)
3132 (string :tag "Format string"))
3133 (group :inline t
3134 (const :tag "Always show years" :require-years)
3135 (const t))
3136 (group :inline t (const :tag "Months" :months)
3137 (string :tag "Format string"))
3138 (group :inline t
3139 (const :tag "Always show months" :require-months)
3140 (const t))
3141 (group :inline t (const :tag "Weeks" :weeks)
3142 (string :tag "Format string"))
3143 (group :inline t
3144 (const :tag "Always show weeks" :require-weeks)
3145 (const t))
3146 (group :inline t (const :tag "Days" :days)
3147 (string :tag "Format string"))
3148 (group :inline t
3149 (const :tag "Always show days" :require-days)
3150 (const t))
3151 (group :inline t (const :tag "Hours" :hours)
3152 (string :tag "Format string"))
3153 (group :inline t
3154 (const :tag "Always show hours" :require-hours)
3155 (const t))
3156 (group :inline t (const :tag "Minutes" :minutes)
3157 (string :tag "Format string"))
3158 (group :inline t
3159 (const :tag "Always show minutes" :require-minutes)
3160 (const t)))))
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."
3165 :group 'org-time
3166 :group 'org-clock
3167 :version "24.3"
3168 :type 'boolean)
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."
3178 :group 'org-time
3179 :group 'org-clock
3180 :version "24.4"
3181 :package-version '(Org . "8.0")
3182 :type 'boolean)
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
3191 a float.
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
3198 is used."
3199 :group 'org-time
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."
3221 :group 'org-time
3222 :group 'org-agenda-daily/weekly
3223 :type 'integer)
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
3231 specified.
3233 Custom commands can set this variable in the options section."
3234 :group 'org-time
3235 :group 'org-agenda-daily/weekly
3236 :version "24.4"
3237 :package-version '(Org . "8.0")
3238 :type 'integer)
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
3252 will work:
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
3260 used as defaults.
3262 See also `org-agenda-jump-prefer-future'."
3263 :group 'org-time
3264 :type '(choice
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'."
3274 :group 'org-agenda
3275 :group 'org-time
3276 :version "24.1"
3277 :type '(choice
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
3299 a message and beep.
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."
3310 :group 'org-time
3311 :version "24.1"
3312 :type 'boolean)
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."
3317 :group 'org-time
3318 :type 'boolean)
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."
3325 :group 'org-time
3326 :type 'boolean)
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
3336 temporary copy.
3338 WARNING: This option is obsolete, you should use
3339 `org-read-date-minibuffer-local-map' to set up keys."
3340 :group 'org-time
3341 :type 'hook)
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 :-)"
3355 :group 'org-time
3356 :type 'integer)
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."
3363 :group 'org-time
3364 :version "24.1"
3365 :type 'boolean)
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'."
3371 :group 'org-time
3372 :version "24.4"
3373 :package-version '(Org . "8.0")
3374 :type 'boolean)
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."
3379 :group 'org-time
3380 :type 'boolean)
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."
3386 :group 'org-time
3387 :type 'boolean)
3389 (defgroup org-tags nil
3390 "Options concerning tags in Org-mode."
3391 :tag "Org Tags"
3392 :group 'org)
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
3397 buffer.
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."
3402 :group 'org-tags
3403 :type '(repeat
3404 (choice
3405 (cons (string :tag "Tag name")
3406 (character :tag "Access char"))
3407 (list :tag "Start radio group"
3408 (const :startgroup)
3409 (option (string :tag "Group description")))
3410 (list :tag "Group tags delimiter"
3411 (const :grouptags))
3412 (list :tag "End radio group"
3413 (const :endgroup)
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
3420 of `org-tag-alist'.
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:
3427 #+STARTUP: noptag"
3428 :group 'org-tags
3429 :type '(repeat
3430 (choice
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
3445 (lambda ()
3446 (set (make-local-variable
3447 'org-complete-tags-always-offer-all-agenda-tags)
3448 t)))"
3449 :group 'org-tags
3450 :version "24.1"
3451 :type 'boolean)
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."
3468 :group 'org-tags
3469 :type '(choice
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."
3480 :group 'org-tags
3481 :type '(choice
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
3496 between."
3497 :group 'org-tags
3498 :type 'integer)
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'."
3505 :group 'org-tags
3506 :type 'boolean)
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'."
3521 :group 'org-tags
3522 :type '(choice
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'."
3533 :group 'org-tags
3534 :type '(repeat (string :tag "Tag")))
3536 (defun org-tag-inherit-p (tag)
3537 "Check if TAG is one that should be inherited."
3538 (cond
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
3554 leading dots.
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'."
3564 :group 'org-tags
3565 :type '(choice
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."
3572 :group 'org-tags
3573 :type '(choice
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"
3589 :group 'org)
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
3597 :type 'string)
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
3619 :version "24.1"
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
3628 on by default.
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
3645 in this variable)."
3646 :group 'org-properties
3647 :type '(choice
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."
3655 (cond
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
3670 :type 'string)
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
3680 :type 'string)
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
3706 spaces.")
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
3721 :type '(repeat
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."
3733 :tag "Org Agenda"
3734 :group 'org)
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
3744 #+CATEGORY: ELisp
3746 If the file does not specify a category, then file's base name
3747 is used instead.")
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
3763 are also made."
3764 :group 'org-agenda
3765 :type '(choice
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."
3774 :group 'org-agenda
3775 :type 'regexp)
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
3787 scope."
3788 :group 'org-agenda
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."
3799 :group 'org-agenda
3800 :type 'boolean)
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."
3807 :group 'org-agenda
3808 :type 'sexp)
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
3817 key."
3818 :group 'org-agenda
3819 :type 'sexp)
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."
3826 :group 'org-agenda
3827 :type '(choice
3828 (const :tag "The standard Emacs diary file" diary-file)
3829 (file :tag "Special Org file diary entries")))
3831 (eval-after-load "calendar"
3832 '(progn
3833 (org-defkey calendar-mode-map org-calendar-to-agenda-key
3834 'org-calendar-goto-agenda)
3835 (add-hook 'calendar-mode-hook
3836 (lambda ()
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."
3844 :tag "Org LaTeX"
3845 :group 'org)
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 \\=\\[...\\]"
3870 :group 'org-latex
3871 :type 'plist)
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."
3876 :group 'org-latex
3877 :version "24.1"
3878 :type 'boolean)
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."
3886 :group 'org-latex
3887 :version "24.1"
3888 :type '(choice
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\"."
3904 :group 'org-latex
3905 :version "24.1"
3906 :type '(choice
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"
3918 :group 'org-latex
3919 :version "24.1"
3920 :type '(choice
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."
3929 :group 'org-latex
3930 :version "24.3"
3931 :type 'string)
3933 (defun org-format-latex-mathml-available-p ()
3934 "Return t if `org-latex-to-mathml-convert-command' is usable."
3935 (save-match-data
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)
3941 (if (string-match
3942 "%j" org-latex-to-mathml-convert-command)
3943 (file-readable-p org-latex-to-mathml-jar-file)
3944 t))))))
3946 (defcustom org-format-latex-header "\\documentclass{article}
3947 \\usepackage[usenames]{color}
3948 \[PACKAGES]
3949 \[DEFAULT-PACKAGES]
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."
3970 :group 'org-latex
3971 :type 'string)
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)
3979 val)))
3981 (defun org-get-packages-alist (var)
3982 "Get the packages alist and make sure it has 3 elements per entry."
3983 (mapcar (lambda (x)
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)
3991 ("T1" "fontenc" t)
3992 ("" "fixltx2e" nil)
3993 ("" "graphicx" t)
3994 ("" "longtable" nil)
3995 ("" "float" nil)
3996 ("" "wrapfig" nil)
3997 ("" "rotating" nil)
3998 ("normalem" "ulem" t)
3999 ("" "amsmath" t)
4000 ("" "textcomp" t)
4001 ("" "marvosym" t)
4002 ("" "wasysym" t)
4003 ("" "amssymb" t)
4004 ("" "hyperref" nil)
4005 "\\tolerance=1000")
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
4031 a string.
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
4039 non-LaTeX output.
4041 A string will be inserted as-is in the header of the document."
4042 :group 'org-latex
4043 :group 'org-export-latex
4044 :set 'org-set-packages-alist
4045 :get 'org-get-packages-alist
4046 :version "24.1"
4047 :type '(repeat
4048 (choice
4049 (list :tag "options/package pair"
4050 (string :tag "options")
4051 (string :tag "package")
4052 (boolean :tag "Snippet"))
4053 (string :tag "A line of LaTeX"))))
4055 (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
4067 non-LaTeX output.
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'."
4077 :group 'org-latex
4078 :group 'org-export-latex
4079 :set 'org-set-packages-alist
4080 :get 'org-get-packages-alist
4081 :type '(repeat
4082 (choice
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"
4092 :group 'org)
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
4100 :type 'boolean)
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
4107 make this work.
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
4116 :type 'boolean)
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
4123 :version "24.1"
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
4135 :version "24.3"
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
4144 :type 'boolean)
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
4150 :type 'boolean)
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
4155 org-level-* faces."
4156 :group 'org-appearance
4157 :type 'boolean)
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
4162 following symbols:
4163 `latex' Highlight LaTeX snippets and environments.
4164 `script' Highlight subscript and superscript.
4165 `entities' Highlight entities."
4166 :group 'org-appearance
4167 :version "24.4"
4168 :package-version '(Org . "8.0")
4169 :type '(choice
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
4179 :type 'boolean)
4181 (defcustom org-hide-macro-markers nil
4182 "Non-nil mean font-lock should hide the brackets marking macro calls."
4183 :group 'org-appearance
4184 :type 'boolean)
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
4190 :version "24.1"
4191 :type 'boolean)
4193 (defcustom org-pretty-entities-include-sub-superscripts t
4194 "Non-nil means, pretty entity display includes formatting sub/superscripts."
4195 :group 'org-appearance
4196 :version "24.1"
4197 :type 'boolean)
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."
4215 (set var val)
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)
4220 (pre (car e))
4221 (post (nth 1 e))
4222 (border (nth 2 e))
4223 (body (nth 3 e))
4224 (nl (nth 4 e))
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) "-")))
4239 (if (> nl 0)
4240 (setq body1 (concat body1 "\\(?:\n" body "*?\\)\\{0,"
4241 (int-to-string nl) "\\}")))
4242 ;; Make the regexp
4243 (setq org-emph-re
4244 (concat "\\([" pre "]\\|^\\)"
4245 "\\("
4246 "\\([" markers "]\\)"
4247 "\\("
4248 "[^" border "]\\|"
4249 "[^" border "]"
4250 body1
4251 "[^" border "]"
4252 "\\)"
4253 "\\3\\)"
4254 "\\([" post "]\\|$\\)"))
4255 (setq org-verbatim-re
4256 (concat "\\([" pre "]\\|^\\)"
4257 "\\("
4258 "\\([" vmarkers "]\\)"
4259 "\\("
4260 "[^" border "]\\|"
4261 "[^" border "]"
4262 body1
4263 "[^" border "]"
4264 "\\)"
4265 "\\3\\)"
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
4290 `(("*" bold)
4291 ("/" italic)
4292 ("_" underline)
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
4305 :version "24.4"
4306 :package-version '(Org . "8.0")
4307 :type '(repeat
4308 (list
4309 (string :tag "Marker character")
4310 (choice
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"
4325 :group 'org)
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
4334 :type 'boolean)
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
4343 :type 'boolean)
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
4349 :type 'function)
4351 ;;; Functions and variables from their packages
4352 ;; Declared here to avoid compiler warnings
4354 ;; XEmacs only
4355 (defvar outline-mode-menu-heading)
4356 (defvar outline-mode-menu-show)
4357 (defvar outline-mode-menu-hide)
4358 (defvar zmacs-regions) ; XEmacs regions
4360 ;; Emacs only
4361 (defvar mark-active)
4363 ;; Various packages
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" ())
4381 (declare-function
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"
4390 (beg end))
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))
4408 ;;;###autoload
4409 (defun turn-on-orgtbl ()
4410 "Unconditionally turn on `orgtbl-mode'."
4411 (require 'org-table)
4412 (orgtbl-mode 1))
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
4418 (save-excursion
4419 (beginning-of-line 1)
4420 (looking-at (if table-type org-table-any-line-regexp
4421 org-table-line-regexp)))
4422 nil))
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)
4428 (save-excursion
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)
4436 (progn
4437 (beginning-of-line 1)
4438 (if (looking-at org-table-dataline-regexp)
4440 (if (looking-at org-table1-hline-regexp)
4441 (progn
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)
4446 (progn
4447 (require 'table)
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"))
4455 nil)
4456 nil))
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
4461 (save-excursion
4462 (beginning-of-line 1)
4463 (looking-at org-table-hline-regexp))
4464 nil))
4466 (defun org-table-map-tables (function &optional quietly)
4467 "Apply FUNCTION to the start of all tables in the buffer."
4468 (save-excursion
4469 (save-restriction
4470 (widen)
4471 (goto-char (point-min))
4472 (while (re-search-forward org-table-any-line-regexp nil t)
4473 (unless quietly
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)
4481 (forward-char 1)))
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."
4492 (save-excursion
4493 (let ((pos pos)))
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? "
4515 (buffer-name))))
4516 (org-clock-out)
4517 (when (y-or-n-p "Save changed buffer?")
4518 (save-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)))
4525 ;;;###autoload
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."
4534 :tag "Org Archive"
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
4548 Org-mode Agenda.
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:
4557 \"%s_archive::\"
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
4586 line like
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."
4593 :group 'org-archive
4594 :type 'string)
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."
4601 :group 'org-archive
4602 :group 'org-agenda-skip
4603 :type 'boolean)
4605 (defcustom org-columns-skip-archived-trees t
4606 "Non-nil means ignore archived trees when creating column view."
4607 :group 'org-archive
4608 :group 'org-properties
4609 :type 'boolean)
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."
4616 :group 'org-archive
4617 :group 'org-cycle
4618 :type 'boolean)
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
4623 collapsed state."
4624 :group 'org-archive
4625 :group 'org-sparse-trees
4626 :type 'boolean)
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:
4633 all: all timestamps
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))
4645 :version "24.3"
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))))
4652 (save-excursion
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)
4657 (goto-char beg)
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."
4664 (interactive)
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."
4671 (save-excursion
4672 (let* ((re (concat ":" org-archive-tag ":")))
4673 (goto-char beg)
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)
4682 (save-excursion
4683 (org-back-to-heading t)
4684 (outline-end-of-heading)
4685 (outline-flag-region (point)
4686 (progn (org-end-of-subtree t) (point))
4687 flag)))
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))
4697 ;; Declare ID code
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:
4720 group 1: the stars
4721 group 2: The todo keyword, maybe
4722 group 3: Priority cookie
4723 group 4: True headline
4724 group 5: Tags")
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
4778 (concat
4779 "\\(\\<[012]?[0-9]"
4780 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4781 "\\(--?"
4782 "\\(\\<[012]?[0-9]"
4783 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4784 "\\)?")
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:
4788 0 the full match
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
4793 (concat
4794 "\\(\\<[012]?[0-9]"
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:
4800 0 the full match
4801 7 hours of duration
4802 9 minutes of duration")
4804 (defconst org-stamp-time-of-day-regexp
4805 (concat
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>]*?\\)>"
4808 "\\(--?"
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:
4812 0 the full match
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))))
4887 (if appending
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'."
4894 :group 'org-tags
4895 :group 'org-startup
4896 :type 'boolean)
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."
4904 (interactive)
4905 (setq org-group-tags (not org-group-tags))
4906 (cond ((and (derived-mode-p 'org-agenda-mode)
4907 org-group-tags)
4908 (org-agenda-redo))
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")))
4919 (splitre "[ \t]+")
4920 (start 0)
4921 tags ftags key value)
4922 (save-excursion
4923 (save-restriction
4924 (widen)
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)))
4930 (cond
4931 ((equal key "TAGS")
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)
4936 (setq ftags
4937 (append
4938 ftags
4939 (apply 'append
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)
4948 (setq tags
4949 (mapcar
4950 (lambda (tg) (cond ((eq (car tg) :startgroup) "{")
4951 ((eq (car tg) :endgroup) "}")
4952 ((eq (car tg) :grouptags) ":")
4953 ((eq (car tg) :newline) "\n")
4954 (t (concat (car tg)
4955 (if (characterp (cdr tg))
4956 (format "(%s)" (char-to-string (cdr tg))) "")))))
4957 org-tag-alist)))
4958 (let (e tgs g)
4959 (while (setq e (pop tags))
4960 (cond
4961 ((equal e "{")
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)
4967 (setq g 0))))
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)
4974 (if (and g (> g 0))
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)
4980 (if (and g (> g 0))
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\\)"))
5010 (splitre "[ \t]+")
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
5014 (start 0))
5015 (save-excursion
5016 (save-restriction
5017 (widen)
5018 (goto-char (point-min))
5019 (while
5020 (or (and
5021 ext-setup-or-nil
5022 (not org-ota)
5023 (let (ret)
5024 (with-temp-buffer
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
5030 (setq org-ota t)
5031 (setq org-file-tags
5032 (delq nil (append org-file-tags (nth 0 ret)))
5033 org-tag-alist
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)))
5045 (cond
5046 ((equal key "CATEGORY")
5047 (setq cat value))
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))
5058 ((equal key "LINK")
5059 (when (string-match "^\\(\\S-+\\)[ \t]+\\(.+\\)" value)
5060 (push (cons (match-string 1 value)
5061 (org-trim (match-string 2 value)))
5062 links)))
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)
5069 props))))
5070 ((equal key "CONSTANTS")
5071 (org-table-set-constants))
5072 ((equal key "STARTUP")
5073 (let ((opts (org-split-string value splitre))
5074 l var val)
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))
5078 (if (not (nth 3 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")
5085 (setq arch value)
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
5095 (expand-file-name
5096 (org-remove-double-quotes value))
5097 'noerror))
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)
5113 props)))))))
5114 (org-set-local 'org-use-sub-superscripts scripts)
5115 (when cat
5116 (org-set-local 'org-category (intern cat))
5117 (push (cons "CATEGORY" cat) props))
5118 (when prio
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
5128 (unless kwds
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))
5136 (let (inter kws kw)
5137 (while (setq kws (pop kwds))
5138 (let ((kws (or
5139 (run-hook-with-args-until-success
5140 'org-todo-setup-filter-hook kws)
5141 kws)))
5142 (setq inter (pop kws) sep (member "|" kws)
5143 kws0 (delete "|" (copy-sequence kws))
5144 kwsa nil
5145 kws1 (mapcar
5146 (lambda (x)
5147 ;; 1 2
5148 (if (string-match "^\\(.*?\\)\\(?:(\\([^!@/]\\)?.*?)\\)?$" x)
5149 (progn
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)))
5157 kws0)
5158 kwsa (if kwsa (append '((:startgroup))
5159 (nreverse kwsa)
5160 '((:endgroup))))
5161 hw (car kws1)
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))
5186 org-todo-regexp
5187 (concat "\\("
5188 (mapconcat 'regexp-quote org-todo-keywords-1 "\\|")
5189 "\\)")
5190 org-not-done-regexp
5191 (concat "\\("
5192 (mapconcat 'regexp-quote org-not-done-keywords "\\|")
5193 "\\)")
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:]_@#%:]+:\\)\\)?")
5204 "[ \t]*$")
5205 org-complex-heading-regexp-format
5206 (concat "^\\(\\*+\\)"
5207 "\\(?: +" org-todo-regexp "\\)?"
5208 "\\(?: +\\(\\[#.\\]\\)\\)?"
5209 "\\(?: +"
5210 ;; Stats cookies can be stuck to body.
5211 "\\(?:\\[[0-9%%/]+\\] *\\)*"
5212 "\\(%s\\)"
5213 "\\(?: *\\[[0-9%%/]+\\]\\)*"
5214 "\\)"
5215 (org-re "\\(?:[ \t]+\\(:[[:alnum:]_@#%%:]+:\\)\\)?")
5216 "[ \t]*$")
5217 org-todo-line-tags-regexp
5218 (concat "^\\(\\*+\\)"
5219 "\\(?: +" org-todo-regexp "\\)?"
5220 "\\(?: +\\(.*?\\)\\)??"
5221 (org-re "\\(?:[ \t]+\\(:[[:alnum:]:_@#%]+:\\)\\)?")
5222 "[ \t]*$")
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
5250 "\\)"
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)))
5262 (setq org-ota nil)
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))
5268 (with-temp-buffer
5269 (insert-file-contents file)
5270 (buffer-string))
5271 (funcall (if noerror 'message 'error)
5272 "Cannot read file \"%s\"%s"
5273 file
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)))
5286 (and (or log1 log2)
5287 (list kw
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."
5293 (mapcar (lambda (x)
5294 (if (string-match "(.*)$" x)
5295 (substring x 0 (match-beginning 0))
5297 list))
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.
5306 (push e new)
5307 (let ((clist (string-to-list (downcase (car e))))
5308 (used (append new alist)))
5309 (when (= (car clist) ?@)
5310 (pop clist))
5311 (while (and clist (rassoc (car clist) used))
5312 (pop clist))
5313 (unless clist
5314 (while (rassoc alt used)
5315 (incf alt)))
5316 (push (cons (car e) (or (car clist) alt)) new))))
5317 (nreverse 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
5345 ;; an update.
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)
5363 (require 'outline)
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))
5371 (require 'easymenu)
5372 (require 'overlay)
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)
5378 (require 'org-list)
5379 (require 'org-pcomplete)
5380 (require 'org-src)
5381 (require 'org-footnote)
5382 (require 'org-macro)
5384 ;; babel
5385 (require 'ob)
5387 ;;;###autoload
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:
5405 \\{org-mode-map}"
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
5439 org-display-table 4
5440 (vconcat (mapcar
5441 (lambda (c) (make-glyph-code c (and (not (stringp org-ellipsis))
5442 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))
5451 ;; Calc embedded
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
5465 'local)
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)
5472 ;; Indentation.
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.
5476 (org-setup-filling)
5477 ;; Comments.
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
5484 (lambda ()
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
5492 ;; too late :-(
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
5505 (org-set-local
5506 'align-mode-rules-list
5507 '((org-in-buffer-settings
5508 (regexp . "^[ \t]*#\\+[A-Z_]+:\\(\\s-*\\)\\S-+")
5509 (modes . '(org-mode)))))
5511 ;; Imenu
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)
5531 'ignore)
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
5544 (org-unmodified
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)))
5557 (if 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))
5570 org-emphasis-alist)
5571 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
5579 (set-window-start (selected-window) (point-min))))
5581 (defun org-find-invisible-foreground ()
5582 (let ((candidates (remove
5583 "unspecified-bg"
5584 (nconc
5585 (list (face-background 'default)
5586 (face-background 'org-default))
5587 (mapcar
5588 (lambda (alist)
5589 (when (boundp alist)
5590 (cdr (assoc 'background-color (symbol-value alist)))))
5591 '(default-frame-alist initial-frame-alist window-system-default-frame-alist))
5592 (list (face-foreground 'org-hide))))))
5593 (car (remove nil candidates))))
5595 (defun org-current-time (&optional rounding-minutes past)
5596 "Current time, possibly rounded to ROUNDING-MINUTES.
5597 When ROUNDING-MINUTES is not an integer, fall back on the car of
5598 `org-time-stamp-rounding-minutes'. When PAST is non-nil, ensure
5599 the rounding returns a past time."
5600 (let ((r (or (and (integerp rounding-minutes) rounding-minutes)
5601 (car org-time-stamp-rounding-minutes)))
5602 (time (decode-time)) res)
5603 (if (< r 1)
5604 (current-time)
5605 (setq res
5606 (apply 'encode-time
5607 (append (list 0 (* r (floor (+ .5 (/ (float (nth 1 time)) r)))))
5608 (nthcdr 2 time))))
5609 (if (and past (< (org-float-time (time-subtract (current-time) res)) 0))
5610 (seconds-to-time (- (org-float-time res) (* r 60)))
5611 res))))
5613 (defun org-today ()
5614 "Return today date, considering `org-extend-today-until'."
5615 (time-to-days
5616 (time-subtract (current-time)
5617 (list 0 (* 3600 org-extend-today-until) 0))))
5619 ;;;; Font-Lock stuff, including the activators
5621 (defvar org-mouse-map (make-sparse-keymap))
5622 (org-defkey org-mouse-map [mouse-2] 'org-open-at-mouse)
5623 (org-defkey org-mouse-map [mouse-3] 'org-find-file-at-mouse)
5624 (when org-mouse-1-follows-link
5625 (org-defkey org-mouse-map [follow-link] 'mouse-face))
5626 (when org-tab-follows-link
5627 (org-defkey org-mouse-map [(tab)] 'org-open-at-point)
5628 (org-defkey org-mouse-map "\C-i" 'org-open-at-point))
5630 (require 'font-lock)
5632 (defconst org-non-link-chars "]\t\n\r<>")
5633 (defvar org-link-types '("http" "https" "ftp" "mailto" "file" "file+emacs"
5634 "file+sys" "news" "shell" "elisp" "doi" "message"
5635 "help"))
5636 (defvar org-link-types-re nil
5637 "Matches a link that has a url-like prefix like \"http:\"")
5638 (defvar org-link-re-with-space nil
5639 "Matches a link with spaces, optional angular brackets around it.")
5640 (defvar org-link-re-with-space2 nil
5641 "Matches a link with spaces, optional angular brackets around it.")
5642 (defvar org-link-re-with-space3 nil
5643 "Matches a link with spaces, only for internal part in bracket links.")
5644 (defvar org-angle-link-re nil
5645 "Matches link with angular brackets, spaces are allowed.")
5646 (defvar org-plain-link-re nil
5647 "Matches plain link, without spaces.")
5648 (defvar org-bracket-link-regexp nil
5649 "Matches a link in double brackets.")
5650 (defvar org-bracket-link-analytic-regexp nil
5651 "Regular expression used to analyze links.
5652 Here is what the match groups contain after a match:
5653 1: http:
5654 2: http
5655 3: path
5656 4: [desc]
5657 5: desc")
5658 (defvar org-bracket-link-analytic-regexp++ nil
5659 "Like `org-bracket-link-analytic-regexp', but include coderef internal type.")
5660 (defvar org-any-link-re nil
5661 "Regular expression matching any link.")
5663 (defconst org-match-sexp-depth 3
5664 "Number of stacked braces for sub/superscript matching.")
5666 (defun org-create-multibrace-regexp (left right n)
5667 "Create a regular expression which will match a balanced sexp.
5668 Opening delimiter is LEFT, and closing delimiter is RIGHT, both given
5669 as single character strings.
5670 The regexp returned will match the entire expression including the
5671 delimiters. It will also define a single group which contains the
5672 match except for the outermost delimiters. The maximum depth of
5673 stacked delimiters is N. Escaping delimiters is not possible."
5674 (let* ((nothing (concat "[^" left right "]*?"))
5675 (or "\\|")
5676 (re nothing)
5677 (next (concat "\\(?:" nothing left nothing right "\\)+" nothing)))
5678 (while (> n 1)
5679 (setq n (1- n)
5680 re (concat re or next)
5681 next (concat "\\(?:" nothing left next right "\\)+" nothing)))
5682 (concat left "\\(" re "\\)" right)))
5684 (defconst org-match-substring-regexp
5685 (concat
5686 "\\(\\S-\\)\\([_^]\\)\\("
5687 "\\(?:" (org-create-multibrace-regexp "{" "}" org-match-sexp-depth) "\\)"
5688 "\\|"
5689 "\\(?:" (org-create-multibrace-regexp "(" ")" org-match-sexp-depth) "\\)"
5690 "\\|"
5691 "\\(?:\\*\\|[+-]?[[:alnum:].,\\]*[[:alnum:]]\\)\\)")
5692 "The regular expression matching a sub- or superscript.")
5694 (defconst org-match-substring-with-braces-regexp
5695 (concat
5696 "\\(\\S-\\)\\([_^]\\)"
5697 "\\(" (org-create-multibrace-regexp "{" "}" org-match-sexp-depth) "\\)")
5698 "The regular expression matching a sub- or superscript, forcing braces.")
5700 (defun org-make-link-regexps ()
5701 "Update the link regular expressions.
5702 This should be called after the variable `org-link-types' has changed."
5703 (let ((types-re (regexp-opt org-link-types t)))
5704 (setq org-link-types-re
5705 (concat "\\`" types-re ":")
5706 org-link-re-with-space
5707 (concat "<?" types-re ":"
5708 "\\([^" org-non-link-chars " ]"
5709 "[^" org-non-link-chars "]*"
5710 "[^" org-non-link-chars " ]\\)>?")
5711 org-link-re-with-space2
5712 (concat "<?" types-re ":"
5713 "\\([^" org-non-link-chars " ]"
5714 "[^\t\n\r]*"
5715 "[^" org-non-link-chars " ]\\)>?")
5716 org-link-re-with-space3
5717 (concat "<?" types-re ":"
5718 "\\([^" org-non-link-chars " ]"
5719 "[^\t\n\r]*\\)")
5720 org-angle-link-re
5721 (concat "<" types-re ":"
5722 "\\([^" org-non-link-chars " ]"
5723 "[^" org-non-link-chars "]*"
5724 "\\)>")
5725 org-plain-link-re
5726 (concat
5727 "\\<" types-re ":"
5728 (org-re "\\([^ \t\n()<>]+\\(?:([[:word:]0-9_]+)\\|\\([^[:punct:] \t\n]\\|/\\)\\)\\)"))
5729 ;; "\\([^]\t\n\r<>() ]+[^]\t\n\r<>,.;() ]\\)")
5730 org-bracket-link-regexp
5731 "\\[\\[\\([^][]+\\)\\]\\(\\[\\([^][]+\\)\\]\\)?\\]"
5732 org-bracket-link-analytic-regexp
5733 (concat
5734 "\\[\\["
5735 "\\(" types-re ":\\)?"
5736 "\\([^]]+\\)"
5737 "\\]"
5738 "\\(\\[" "\\([^]]+\\)" "\\]\\)?"
5739 "\\]")
5740 org-bracket-link-analytic-regexp++
5741 (concat
5742 "\\[\\["
5743 "\\(" (regexp-opt (cons "coderef" org-link-types) t) ":\\)?"
5744 "\\([^]]+\\)"
5745 "\\]"
5746 "\\(\\[" "\\([^]]+\\)" "\\]\\)?"
5747 "\\]")
5748 org-any-link-re
5749 (concat "\\(" org-bracket-link-regexp "\\)\\|\\("
5750 org-angle-link-re "\\)\\|\\("
5751 org-plain-link-re "\\)"))))
5753 (org-make-link-regexps)
5755 (defvar org-emph-face nil)
5757 (defun org-do-emphasis-faces (limit)
5758 "Run through the buffer and emphasize strings."
5759 (let (rtn a)
5760 (while (and (not rtn) (re-search-forward org-emph-re limit t))
5761 (let* ((border (char-after (match-beginning 3)))
5762 (bre (regexp-quote (char-to-string border))))
5763 (if (and (not (= border (char-after (match-beginning 4))))
5764 (not (save-match-data
5765 (string-match (concat bre ".*" bre)
5766 (replace-regexp-in-string
5767 "\n" " "
5768 (substring (match-string 2) 1 -1))))))
5769 (progn
5770 (setq rtn t)
5771 (setq a (assoc (match-string 3) org-emphasis-alist))
5772 (font-lock-prepend-text-property (match-beginning 2) (match-end 2)
5773 'face
5774 (nth 1 a))
5775 (and (nth 2 a)
5776 (org-remove-flyspell-overlays-in
5777 (match-beginning 0) (match-end 0)))
5778 (add-text-properties (match-beginning 2) (match-end 2)
5779 '(font-lock-multiline t org-emphasis t))
5780 (when org-hide-emphasis-markers
5781 (add-text-properties (match-end 4) (match-beginning 5)
5782 '(invisible org-link))
5783 (add-text-properties (match-beginning 3) (match-end 3)
5784 '(invisible org-link))))))
5785 (goto-char (1+ (match-beginning 0))))
5786 rtn))
5788 (defun org-emphasize (&optional char)
5789 "Insert or change an emphasis, i.e. a font like bold or italic.
5790 If there is an active region, change that region to a new emphasis.
5791 If there is no region, just insert the marker characters and position
5792 the cursor between them.
5793 CHAR should be the marker character. If it is a space, it means to
5794 remove the emphasis of the selected region.
5795 If CHAR is not given (for example in an interactive call) it will be
5796 prompted for."
5797 (interactive)
5798 (let ((erc org-emphasis-regexp-components)
5799 (prompt "")
5800 (string "") beg end move c s)
5801 (if (org-region-active-p)
5802 (setq beg (region-beginning) end (region-end)
5803 string (buffer-substring beg end))
5804 (setq move t))
5806 (unless char
5807 (message "Emphasis marker or tag: [%s]"
5808 (mapconcat (lambda(e) (car e)) org-emphasis-alist ""))
5809 (setq char (read-char-exclusive)))
5810 (if (equal char ?\ )
5811 (setq s "" move nil)
5812 (unless (assoc (char-to-string char) org-emphasis-alist)
5813 (user-error "No such emphasis marker: \"%c\"" char))
5814 (setq s (char-to-string char)))
5815 (while (and (> (length string) 1)
5816 (equal (substring string 0 1) (substring string -1))
5817 (assoc (substring string 0 1) org-emphasis-alist))
5818 (setq string (substring string 1 -1)))
5819 (setq string (concat s string s))
5820 (if beg (delete-region beg end))
5821 (unless (or (bolp)
5822 (string-match (concat "[" (nth 0 erc) "\n]")
5823 (char-to-string (char-before (point)))))
5824 (insert " "))
5825 (unless (or (eobp)
5826 (string-match (concat "[" (nth 1 erc) "\n]")
5827 (char-to-string (char-after (point)))))
5828 (insert " ") (backward-char 1))
5829 (insert string)
5830 (and move (backward-char 1))))
5832 (defconst org-nonsticky-props
5833 '(mouse-face highlight keymap invisible intangible help-echo org-linked-text htmlize-link))
5835 (defsubst org-rear-nonsticky-at (pos)
5836 (add-text-properties (1- pos) pos (list 'rear-nonsticky org-nonsticky-props)))
5838 (defun org-activate-plain-links (limit)
5839 "Run through the buffer and add overlays to links."
5840 (let (f hl)
5841 (when (and (re-search-forward (concat org-plain-link-re) limit t)
5842 (not (org-in-src-block-p)))
5843 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5844 (setq f (get-text-property (match-beginning 0) 'face))
5845 (setq hl (org-match-string-no-properties 0))
5846 (if (or (eq f 'org-tag)
5847 (and (listp f) (memq 'org-tag f)))
5849 (add-text-properties (match-beginning 0) (match-end 0)
5850 (list 'mouse-face 'highlight
5851 'face 'org-link
5852 'htmlize-link `(:uri ,hl)
5853 'keymap org-mouse-map))
5854 (org-rear-nonsticky-at (match-end 0)))
5855 t)))
5857 (defun org-activate-code (limit)
5858 (if (re-search-forward "^[ \t]*\\(:\\(?: .*\\|$\\)\n?\\)" limit t)
5859 (progn
5860 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5861 (remove-text-properties (match-beginning 0) (match-end 0)
5862 '(display t invisible t intangible t))
5863 t)))
5865 (defcustom org-src-fontify-natively t
5866 "When non-nil, fontify code in code blocks."
5867 :type 'boolean
5868 :version "24.4"
5869 :package-version '(Org . "8.3")
5870 :group 'org-appearance
5871 :group 'org-babel)
5873 (defcustom org-allow-promoting-top-level-subtree nil
5874 "When non-nil, allow promoting a top level subtree.
5875 The leading star of the top level headline will be replaced
5876 by a #."
5877 :type 'boolean
5878 :version "24.1"
5879 :group 'org-appearance)
5881 (defun org-fontify-meta-lines-and-blocks (limit)
5882 (condition-case nil
5883 (org-fontify-meta-lines-and-blocks-1 limit)
5884 (error (message "org-mode fontification error"))))
5886 (defun org-fontify-meta-lines-and-blocks-1 (limit)
5887 "Fontify #+ lines and blocks."
5888 (let ((case-fold-search t))
5889 (if (re-search-forward
5890 "^\\([ \t]*#\\(\\(\\+[a-zA-Z]+:?\\| \\|$\\)\\(_\\([a-zA-Z]+\\)\\)?\\)[ \t]*\\(\\([^ \t\n]*\\)[ \t]*\\(.*\\)\\)\\)"
5891 limit t)
5892 (let ((beg (match-beginning 0))
5893 (block-start (match-end 0))
5894 (block-end nil)
5895 (lang (match-string 7))
5896 (beg1 (line-beginning-position 2))
5897 (dc1 (downcase (match-string 2)))
5898 (dc3 (downcase (match-string 3)))
5899 end end1 quoting block-type ovl)
5900 (cond
5901 ((member dc1 '("+html:" "+ascii:" "+latex:"))
5902 ;; a single line of backend-specific content
5903 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5904 (remove-text-properties (match-beginning 0) (match-end 0)
5905 '(display t invisible t intangible t))
5906 (add-text-properties (match-beginning 1) (match-end 3)
5907 '(font-lock-fontified t face org-meta-line))
5908 (add-text-properties (match-beginning 6) (+ (match-end 6) 1)
5909 '(font-lock-fontified t face org-block))
5910 ; for backend-specific code
5912 ((and (match-end 4) (equal dc3 "+begin"))
5913 ;; Truly a block
5914 (setq block-type (downcase (match-string 5))
5915 quoting (member block-type org-protecting-blocks))
5916 (when (re-search-forward
5917 (concat "^[ \t]*#\\+end" (match-string 4) "\\>.*")
5918 nil t) ;; on purpose, we look further than LIMIT
5919 (setq end (min (point-max) (match-end 0))
5920 end1 (min (point-max) (1- (match-beginning 0))))
5921 (setq block-end (match-beginning 0))
5922 (when quoting
5923 (org-remove-flyspell-overlays-in beg1 end1)
5924 (remove-text-properties beg end
5925 '(display t invisible t intangible t)))
5926 (add-text-properties
5927 beg end '(font-lock-fontified t font-lock-multiline t))
5928 (add-text-properties beg beg1 '(face org-meta-line))
5929 (org-remove-flyspell-overlays-in beg beg1)
5930 (add-text-properties ; For end_src
5931 end1 (min (point-max) (1+ end)) '(face org-meta-line))
5932 (org-remove-flyspell-overlays-in end1 end)
5933 (cond
5934 ((and lang (not (string= lang "")) org-src-fontify-natively)
5935 (org-src-font-lock-fontify-block lang block-start block-end)
5936 ;; remove old background overlays
5937 (mapc (lambda (ov)
5938 (if (eq (overlay-get ov 'face) 'org-block-background)
5939 (delete-overlay ov)))
5940 (overlays-at (/ (+ beg1 block-end) 2)))
5941 ;; add a background overlay
5942 (setq ovl (make-overlay beg1 block-end))
5943 (overlay-put ovl 'face 'org-block-background)
5944 (overlay-put ovl 'evaporate t)) ; make it go away when empty
5945 (quoting
5946 (add-text-properties beg1 (min (point-max) (1+ end1))
5947 '(face org-block))) ; end of source block
5948 ((not org-fontify-quote-and-verse-blocks))
5949 ((string= block-type "quote")
5950 (add-text-properties beg1 (min (point-max) (1+ end1)) '(face org-quote)))
5951 ((string= block-type "verse")
5952 (add-text-properties beg1 (min (point-max) (1+ end1)) '(face org-verse))))
5953 (add-text-properties beg beg1 '(face org-block-begin-line))
5954 (add-text-properties (min (point-max) (1+ end)) (min (point-max) (1+ end1))
5955 '(face org-block-end-line))
5957 ((member dc1 '("+title:" "+author:" "+email:" "+date:"))
5958 (org-remove-flyspell-overlays-in
5959 (match-beginning 0)
5960 (if (equal "+title:" dc1) (match-end 2) (match-end 0)))
5961 (add-text-properties
5962 beg (match-end 3)
5963 (if (member (intern (substring dc1 0 -1)) org-hidden-keywords)
5964 '(font-lock-fontified t invisible t)
5965 '(font-lock-fontified t face org-document-info-keyword)))
5966 (add-text-properties
5967 (match-beginning 6) (min (point-max) (1+ (match-end 6)))
5968 (if (string-equal dc1 "+title:")
5969 '(font-lock-fontified t face org-document-title)
5970 '(font-lock-fontified t face org-document-info))))
5971 ((or (equal dc1 "+results")
5972 (member dc1 '("+begin:" "+end:" "+caption:" "+label:"
5973 "+orgtbl:" "+tblfm:" "+tblname:" "+results:"
5974 "+call:" "+header:" "+headers:" "+name:"))
5975 (and (match-end 4) (equal dc3 "+attr")))
5976 (org-remove-flyspell-overlays-in
5977 (match-beginning 0)
5978 (if (equal "+caption:" dc1) (match-end 2) (match-end 0)))
5979 (add-text-properties
5980 beg (match-end 0)
5981 '(font-lock-fontified t face org-meta-line))
5983 ((member dc3 '(" " ""))
5984 (org-remove-flyspell-overlays-in beg (match-end 0))
5985 (add-text-properties
5986 beg (match-end 0)
5987 '(font-lock-fontified t face font-lock-comment-face)))
5988 (t ;; just any other in-buffer setting, but not indented
5989 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5990 (add-text-properties
5991 beg (match-end 0)
5992 '(font-lock-fontified t face org-meta-line))
5993 t))))))
5995 (defun org-fontify-drawers (limit)
5996 "Fontify drawers."
5997 (when (re-search-forward org-drawer-regexp limit t)
5998 (add-text-properties
5999 (match-beginning 0) (match-end 0)
6000 '(font-lock-fontified t face org-special-keyword))
6001 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6004 (defun org-fontify-macros (limit)
6005 "Fontify macros."
6006 (when (re-search-forward "\\({{{\\).+?\\(}}}\\)" limit t)
6007 (add-text-properties
6008 (match-beginning 0) (match-end 0)
6009 '(font-lock-fontified t face org-macro))
6010 (when org-hide-macro-markers
6011 (add-text-properties (match-end 2) (match-beginning 2)
6012 '(invisible t))
6013 (add-text-properties (match-beginning 1) (match-end 1)
6014 '(invisible t)))
6015 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6018 (defun org-activate-angle-links (limit)
6019 "Run through the buffer and add overlays to links."
6020 (if (and (re-search-forward org-angle-link-re limit t)
6021 (not (org-in-src-block-p)))
6022 (progn
6023 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6024 (add-text-properties (match-beginning 0) (match-end 0)
6025 (list 'mouse-face 'highlight
6026 'keymap org-mouse-map))
6027 (org-rear-nonsticky-at (match-end 0))
6028 t)))
6030 (defun org-activate-footnote-links (limit)
6031 "Run through the buffer and add overlays to footnotes."
6032 (let ((fn (org-footnote-next-reference-or-definition limit)))
6033 (when fn
6034 (let* ((beg (nth 1 fn))
6035 (end (nth 2 fn))
6036 (label (car fn))
6037 (referencep (/= (line-beginning-position) beg)))
6038 (when (and referencep (nth 3 fn))
6039 (save-excursion
6040 (goto-char beg)
6041 (search-forward (or label "fn:"))
6042 (org-remove-flyspell-overlays-in beg (match-end 0))))
6043 (add-text-properties beg end
6044 (list 'mouse-face 'highlight
6045 'keymap org-mouse-map
6046 'help-echo
6047 (if referencep "Footnote reference"
6048 "Footnote definition")
6049 'font-lock-fontified t
6050 'font-lock-multiline t
6051 'face 'org-footnote))))))
6053 (defun org-activate-bracket-links (limit)
6054 "Run through the buffer and add overlays to bracketed links."
6055 (if (and (re-search-forward org-bracket-link-regexp limit t)
6056 (not (org-in-src-block-p)))
6057 (let* ((hl (org-match-string-no-properties 1))
6058 (help (concat "LINK: " (save-match-data (org-link-unescape hl))))
6059 (ip (org-maybe-intangible
6060 (list 'invisible 'org-link
6061 'keymap org-mouse-map 'mouse-face 'highlight
6062 'font-lock-multiline t 'help-echo help
6063 'htmlize-link `(:uri ,hl))))
6064 (vp (list 'keymap org-mouse-map 'mouse-face 'highlight
6065 'font-lock-multiline t 'help-echo help
6066 'htmlize-link `(:uri ,hl))))
6067 ;; We need to remove the invisible property here. Table narrowing
6068 ;; may have made some of this invisible.
6069 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6070 (remove-text-properties (match-beginning 0) (match-end 0)
6071 '(invisible nil))
6072 (if (match-end 3)
6073 (progn
6074 (add-text-properties (match-beginning 0) (match-beginning 3) ip)
6075 (org-rear-nonsticky-at (match-beginning 3))
6076 (add-text-properties (match-beginning 3) (match-end 3) vp)
6077 (org-rear-nonsticky-at (match-end 3))
6078 (add-text-properties (match-end 3) (match-end 0) ip)
6079 (org-rear-nonsticky-at (match-end 0)))
6080 (add-text-properties (match-beginning 0) (match-beginning 1) ip)
6081 (org-rear-nonsticky-at (match-beginning 1))
6082 (add-text-properties (match-beginning 1) (match-end 1) vp)
6083 (org-rear-nonsticky-at (match-end 1))
6084 (add-text-properties (match-end 1) (match-end 0) ip)
6085 (org-rear-nonsticky-at (match-end 0)))
6086 t)))
6088 (defun org-activate-dates (limit)
6089 "Run through the buffer and add overlays to dates."
6090 (if (and (re-search-forward org-tsr-regexp-both limit t)
6091 (not (equal (char-before (match-beginning 0)) 91)))
6092 (progn
6093 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6094 (add-text-properties (match-beginning 0) (match-end 0)
6095 (list 'mouse-face 'highlight
6096 'keymap org-mouse-map))
6097 (org-rear-nonsticky-at (match-end 0))
6098 (when org-display-custom-times
6099 (if (match-end 3)
6100 (org-display-custom-time (match-beginning 3) (match-end 3)))
6101 (org-display-custom-time (match-beginning 1) (match-end 1)))
6102 t)))
6104 (defvar org-target-link-regexp nil
6105 "Regular expression matching radio targets in plain text.")
6106 (make-variable-buffer-local 'org-target-link-regexp)
6108 (defconst org-target-regexp (let ((border "[^<>\n\r \t]"))
6109 (format "<<\\(%s\\|%s[^<>\n\r]*%s\\)>>"
6110 border border border))
6111 "Regular expression matching a link target.")
6113 (defconst org-radio-target-regexp (format "<%s>" org-target-regexp)
6114 "Regular expression matching a radio target.")
6116 (defconst org-any-target-regexp
6117 (format "%s\\|%s" org-radio-target-regexp org-target-regexp)
6118 "Regular expression matching any target.")
6120 (defun org-activate-target-links (limit)
6121 "Run through the buffer and add overlays to target matches."
6122 (when org-target-link-regexp
6123 (let ((case-fold-search t))
6124 (if (re-search-forward org-target-link-regexp limit t)
6125 (progn
6126 (org-remove-flyspell-overlays-in (match-beginning 1) (match-end 1))
6127 (add-text-properties (match-beginning 1) (match-end 1)
6128 (list 'mouse-face 'highlight
6129 'keymap org-mouse-map
6130 'help-echo "Radio target link"
6131 'org-linked-text t))
6132 (org-rear-nonsticky-at (match-end 1))
6133 t)))))
6135 (defun org-update-radio-target-regexp ()
6136 "Find all radio targets in this file and update the regular expression.
6137 Also refresh fontification if needed."
6138 (interactive)
6139 (let ((old-regexp org-target-link-regexp)
6140 (before-re "\\(?:^\\|[^[:alnum:]]\\)\\(")
6141 (after-re "\\)\\(?:$\\|[^[:alnum:]]\\)")
6142 (targets
6143 (org-with-wide-buffer
6144 (goto-char (point-min))
6145 (let (rtn)
6146 (while (re-search-forward org-radio-target-regexp nil t)
6147 ;; Make sure point is really within the object.
6148 (backward-char)
6149 (let ((obj (org-element-context)))
6150 (when (eq (org-element-type obj) 'radio-target)
6151 (add-to-list 'rtn (org-element-property :value obj)))))
6152 rtn))))
6153 (setq org-target-link-regexp
6154 (and targets
6155 (concat before-re
6156 (mapconcat
6157 (lambda (x)
6158 (replace-regexp-in-string
6159 " +" "\\s-+" (regexp-quote x) t t))
6160 targets
6161 "\\|")
6162 after-re)))
6163 (unless (equal old-regexp org-target-link-regexp)
6164 ;; Clean-up cache.
6165 (let ((regexp (cond ((not old-regexp) org-target-link-regexp)
6166 ((not org-target-link-regexp) old-regexp)
6168 (concat before-re
6169 (mapconcat
6170 (lambda (re)
6171 (substring re (length before-re)
6172 (- (length after-re))))
6173 (list old-regexp org-target-link-regexp)
6174 "\\|")
6175 after-re)))))
6176 (org-with-wide-buffer
6177 (goto-char (point-min))
6178 (while (re-search-forward regexp nil t)
6179 (org-element-cache-refresh (match-beginning 1)))))
6180 ;; Re fontify buffer.
6181 (when (memq 'radio org-highlight-links)
6182 (org-restart-font-lock)))))
6184 (defun org-hide-wide-columns (limit)
6185 (let (s e)
6186 (setq s (text-property-any (point) (or limit (point-max))
6187 'org-cwidth t))
6188 (when s
6189 (setq e (next-single-property-change s 'org-cwidth))
6190 (add-text-properties s e (org-maybe-intangible '(invisible org-cwidth)))
6191 (goto-char e)
6192 t)))
6194 (defvar org-latex-and-related-regexp nil
6195 "Regular expression for highlighting LaTeX, entities and sub/superscript.")
6197 (defun org-compute-latex-and-related-regexp ()
6198 "Compute regular expression for LaTeX, entities and sub/superscript.
6199 Result depends on variable `org-highlight-latex-and-related'."
6200 (org-set-local
6201 'org-latex-and-related-regexp
6202 (let* ((re-sub
6203 (cond ((not (memq 'script org-highlight-latex-and-related)) nil)
6204 ((eq org-use-sub-superscripts '{})
6205 (list org-match-substring-with-braces-regexp))
6206 (org-use-sub-superscripts (list org-match-substring-regexp))))
6207 (re-latex
6208 (when (memq 'latex org-highlight-latex-and-related)
6209 (let ((matchers (plist-get org-format-latex-options :matchers)))
6210 (delq nil
6211 (mapcar (lambda (x)
6212 (and (member (car x) matchers) (nth 1 x)))
6213 org-latex-regexps)))))
6214 (re-entities
6215 (when (memq 'entities org-highlight-latex-and-related)
6216 (list "\\\\\\(there4\\|sup[123]\\|frac[13][24]\\|[a-zA-Z]+\\)\\($\\|{}\\|[^[:alpha:]]\\)"))))
6217 (mapconcat 'identity (append re-latex re-entities re-sub) "\\|"))))
6219 (defun org-do-latex-and-related (limit)
6220 "Highlight LaTeX snippets and environments, entities and sub/superscript.
6221 LIMIT bounds the search for syntax to highlight. Stop at first
6222 highlighted object, if any. Return t if some highlighting was
6223 done, nil otherwise."
6224 (when (org-string-nw-p org-latex-and-related-regexp)
6225 (catch 'found
6226 (while (re-search-forward org-latex-and-related-regexp limit t)
6227 (unless (memq (car-safe (get-text-property (1+ (match-beginning 0))
6228 'face))
6229 '(org-code org-verbatim underline))
6230 (let ((offset (if (memq (char-after (1+ (match-beginning 0)))
6231 '(?_ ?^))
6233 0)))
6234 (font-lock-prepend-text-property
6235 (+ offset (match-beginning 0)) (match-end 0)
6236 'face 'org-latex-and-related)
6237 (add-text-properties (+ offset (match-beginning 0)) (match-end 0)
6238 '(font-lock-multiline t)))
6239 (throw 'found t)))
6240 nil)))
6242 (defun org-restart-font-lock ()
6243 "Restart `font-lock-mode', to force refontification."
6244 (when (and (boundp 'font-lock-mode) font-lock-mode)
6245 (font-lock-mode -1)
6246 (font-lock-mode 1)))
6248 (defun org-activate-tags (limit)
6249 (if (re-search-forward (org-re "^\\*+.*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \r\n]") limit t)
6250 (progn
6251 (org-remove-flyspell-overlays-in (match-beginning 1) (match-end 1))
6252 (add-text-properties (match-beginning 1) (match-end 1)
6253 (list 'mouse-face 'highlight
6254 'keymap org-mouse-map))
6255 (org-rear-nonsticky-at (match-end 1))
6256 t)))
6258 (defun org-outline-level ()
6259 "Compute the outline level of the heading at point.
6260 If this is called at a normal headline, the level is the number of stars.
6261 Use `org-reduced-level' to remove the effect of `org-odd-levels'."
6262 (save-excursion
6263 (if (not (ignore-errors (org-back-to-heading t)))
6265 (looking-at org-outline-regexp)
6266 (1- (- (match-end 0) (match-beginning 0))))))
6268 (defvar org-font-lock-keywords nil)
6270 (defsubst org-re-property (property &optional literal allow-null)
6271 "Return a regexp matching a PROPERTY line.
6272 Match group 3 will be set to the value if it exists."
6273 (concat "^\\(?4:[ \t]*\\)\\(?1::\\(?2:"
6274 (if literal property (regexp-quote property))
6275 "\\):\\)[ \t]+\\(?3:[^ \t\r\n]"
6276 (if allow-null "*")
6277 ".*?\\)\\(?5:[ \t]*\\)$"))
6279 (defconst org-property-re
6280 (org-re-property ".*?" 'literal t)
6281 "Regular expression matching a property line.
6282 There are four matching groups:
6283 1: :PROPKEY: including the leading and trailing colon,
6284 2: PROPKEY without the leading and trailing colon,
6285 3: PROPVAL without leading or trailing spaces,
6286 4: the indentation of the current line,
6287 5: trailing whitespace.")
6289 (defvar org-font-lock-hook nil
6290 "Functions to be called for special font lock stuff.")
6292 (defvar org-font-lock-set-keywords-hook nil
6293 "Functions that can manipulate `org-font-lock-extra-keywords'.
6294 This is called after `org-font-lock-extra-keywords' is defined, but before
6295 it is installed to be used by font lock. This can be useful if something
6296 needs to be inserted at a specific position in the font-lock sequence.")
6298 (defun org-font-lock-hook (limit)
6299 "Run `org-font-lock-hook' within LIMIT."
6300 (run-hook-with-args 'org-font-lock-hook limit))
6302 (defun org-set-font-lock-defaults ()
6303 "Set font lock defaults for the current buffer."
6304 (let* ((em org-fontify-emphasized-text)
6305 (lk org-highlight-links)
6306 (org-font-lock-extra-keywords
6307 (list
6308 ;; Call the hook
6309 '(org-font-lock-hook)
6310 ;; Headlines
6311 `(,(if org-fontify-whole-heading-line
6312 "^\\(\\**\\)\\(\\* \\)\\(.*\n?\\)"
6313 "^\\(\\**\\)\\(\\* \\)\\(.*\\)")
6314 (1 (org-get-level-face 1))
6315 (2 (org-get-level-face 2))
6316 (3 (org-get-level-face 3)))
6317 ;; Table lines
6318 '("^[ \t]*\\(\\(|\\|\\+-[-+]\\).*\\S-\\)"
6319 (1 'org-table t))
6320 ;; Table internals
6321 '("^[ \t]*|\\(?:.*?|\\)? *\\(:?=[^|\n]*\\)" (1 'org-formula t))
6322 '("^[ \t]*| *\\([#*]\\) *|" (1 'org-formula t))
6323 '("^[ \t]*|\\( *\\([$!_^/]\\) *|.*\\)|" (1 'org-formula t))
6324 '("| *\\(<[lrc]?[0-9]*>\\)" (1 'org-formula t))
6325 ;; Drawers
6326 '(org-fontify-drawers)
6327 ;; Properties
6328 (list org-property-re
6329 '(1 'org-special-keyword t)
6330 '(3 'org-property-value t))
6331 ;; Links
6332 (if (memq 'tag lk) '(org-activate-tags (1 'org-tag prepend)))
6333 (if (memq 'angle lk) '(org-activate-angle-links (0 'org-link t)))
6334 (if (memq 'plain lk) '(org-activate-plain-links (0 'org-link t)))
6335 (if (memq 'bracket lk) '(org-activate-bracket-links (0 'org-link t)))
6336 (if (memq 'radio lk) '(org-activate-target-links (1 'org-link t)))
6337 (if (memq 'date lk) '(org-activate-dates (0 'org-date t)))
6338 (if (memq 'footnote lk) '(org-activate-footnote-links))
6339 ;; Targets.
6340 (list org-any-target-regexp '(0 'org-target t))
6341 ;; Diary sexps.
6342 '("^&?%%(.*\\|<%%([^>\n]*?>" (0 'org-sexp-date t))
6343 ;; Macro
6344 '(org-fontify-macros)
6345 '(org-hide-wide-columns (0 nil append))
6346 ;; TODO keyword
6347 (list (format org-heading-keyword-regexp-format
6348 org-todo-regexp)
6349 '(2 (org-get-todo-face 2) t))
6350 ;; DONE
6351 (if org-fontify-done-headline
6352 (list (format org-heading-keyword-regexp-format
6353 (concat
6354 "\\(?:"
6355 (mapconcat 'regexp-quote org-done-keywords "\\|")
6356 "\\)"))
6357 '(2 'org-headline-done t))
6358 nil)
6359 ;; Priorities
6360 '(org-font-lock-add-priority-faces)
6361 ;; Tags
6362 '(org-font-lock-add-tag-faces)
6363 ;; Tags groups
6364 (if (and org-group-tags org-tag-groups-alist)
6365 (list (concat org-outline-regexp-bol ".+\\(:"
6366 (regexp-opt (mapcar 'car org-tag-groups-alist))
6367 ":\\).*$")
6368 '(1 'org-tag-group prepend)))
6369 ;; Special keywords
6370 (list (concat "\\<" org-deadline-string) '(0 'org-special-keyword t))
6371 (list (concat "\\<" org-scheduled-string) '(0 'org-special-keyword t))
6372 (list (concat "\\<" org-closed-string) '(0 'org-special-keyword t))
6373 (list (concat "\\<" org-clock-string) '(0 'org-special-keyword t))
6374 ;; Emphasis
6375 (if em
6376 (if (featurep 'xemacs)
6377 '(org-do-emphasis-faces (0 nil append))
6378 '(org-do-emphasis-faces)))
6379 ;; Checkboxes
6380 '("^[ \t]*\\(?:[-+*]\\|[0-9]+[.)]\\)[ \t]+\\(?:\\[@\\(?:start:\\)?[0-9]+\\][ \t]*\\)?\\(\\[[- X]\\]\\)"
6381 1 'org-checkbox prepend)
6382 (if (cdr (assq 'checkbox org-list-automatic-rules))
6383 '("\\[\\([0-9]*%\\)\\]\\|\\[\\([0-9]*\\)/\\([0-9]*\\)\\]"
6384 (0 (org-get-checkbox-statistics-face) t)))
6385 ;; Description list items
6386 '("^[ \t]*[-+*][ \t]+\\(.*?[ \t]+::\\)\\([ \t]+\\|$\\)"
6387 1 'org-list-dt prepend)
6388 ;; ARCHIVEd headings
6389 (list (concat
6390 org-outline-regexp-bol
6391 "\\(.*:" org-archive-tag ":.*\\)")
6392 '(1 'org-archived prepend))
6393 ;; Specials
6394 '(org-do-latex-and-related)
6395 '(org-fontify-entities)
6396 '(org-raise-scripts)
6397 ;; Code
6398 '(org-activate-code (1 'org-code t))
6399 ;; COMMENT
6400 (list (format
6401 "^\\*\\(?: +%s\\)?\\(?: +\\[#[A-Z0-9]\\]\\)? +\\(?9:%s\\)\\(?: \\|$\\)"
6402 org-todo-regexp
6403 org-comment-string)
6404 '(9 'org-special-keyword t))
6405 ;; Blocks and meta lines
6406 '(org-fontify-meta-lines-and-blocks))))
6407 (setq org-font-lock-extra-keywords (delq nil org-font-lock-extra-keywords))
6408 (run-hooks 'org-font-lock-set-keywords-hook)
6409 ;; Now set the full font-lock-keywords
6410 (org-set-local 'org-font-lock-keywords org-font-lock-extra-keywords)
6411 (org-set-local 'font-lock-defaults
6412 '(org-font-lock-keywords t nil nil backward-paragraph))
6413 (kill-local-variable 'font-lock-keywords) nil))
6415 (defun org-toggle-pretty-entities ()
6416 "Toggle the composition display of entities as UTF8 characters."
6417 (interactive)
6418 (org-set-local 'org-pretty-entities (not org-pretty-entities))
6419 (org-restart-font-lock)
6420 (if org-pretty-entities
6421 (message "Entities are now displayed as UTF8 characters")
6422 (save-restriction
6423 (widen)
6424 (org-decompose-region (point-min) (point-max))
6425 (message "Entities are now displayed as plain text"))))
6427 (defvar org-custom-properties-overlays nil
6428 "List of overlays used for custom properties.")
6429 (make-variable-buffer-local 'org-custom-properties-overlays)
6431 (defun org-toggle-custom-properties-visibility ()
6432 "Display or hide properties in `org-custom-properties'."
6433 (interactive)
6434 (if org-custom-properties-overlays
6435 (progn (mapc 'delete-overlay org-custom-properties-overlays)
6436 (setq org-custom-properties-overlays nil))
6437 (unless (not org-custom-properties)
6438 (save-excursion
6439 (save-restriction
6440 (widen)
6441 (goto-char (point-min))
6442 (while (re-search-forward org-property-re nil t)
6443 (mapc (lambda(p)
6444 (when (equal p (substring (match-string 1) 1 -1))
6445 (let ((o (make-overlay (match-beginning 0) (1+ (match-end 0)))))
6446 (overlay-put o 'invisible t)
6447 (overlay-put o 'org-custom-property t)
6448 (push o org-custom-properties-overlays))))
6449 org-custom-properties)))))))
6451 (defun org-fontify-entities (limit)
6452 "Find an entity to fontify."
6453 (let (ee)
6454 (when org-pretty-entities
6455 (catch 'match
6456 (while (re-search-forward
6457 "\\\\\\(there4\\|sup[123]\\|frac[13][24]\\|[a-zA-Z]+\\)\\($\\|{}\\|[^[:alpha:]\n]\\)"
6458 limit t)
6459 (if (and (not (org-at-comment-p))
6460 (setq ee (org-entity-get (match-string 1)))
6461 (= (length (nth 6 ee)) 1))
6462 (let*
6463 ((end (if (equal (match-string 2) "{}")
6464 (match-end 2)
6465 (match-end 1))))
6466 (add-text-properties
6467 (match-beginning 0) end
6468 (list 'font-lock-fontified t))
6469 (compose-region (match-beginning 0) end
6470 (nth 6 ee) nil)
6471 (backward-char 1)
6472 (throw 'match t))))
6473 nil))))
6475 (defun org-fontify-like-in-org-mode (s &optional odd-levels)
6476 "Fontify string S like in Org-mode."
6477 (with-temp-buffer
6478 (insert s)
6479 (let ((org-odd-levels-only odd-levels))
6480 (org-mode)
6481 (font-lock-ensure)
6482 (buffer-string))))
6484 (defvar org-m nil)
6485 (defvar org-l nil)
6486 (defvar org-f nil)
6487 (defun org-get-level-face (n)
6488 "Get the right face for match N in font-lock matching of headlines."
6489 (setq org-l (- (match-end 2) (match-beginning 1) 1))
6490 (if org-odd-levels-only (setq org-l (1+ (/ org-l 2))))
6491 (if org-cycle-level-faces
6492 (setq org-f (nth (% (1- org-l) org-n-level-faces) org-level-faces))
6493 (setq org-f (nth (1- (min org-l org-n-level-faces)) org-level-faces)))
6494 (cond
6495 ((eq n 1) (if org-hide-leading-stars 'org-hide org-f))
6496 ((eq n 2) org-f)
6497 (t (if org-level-color-stars-only nil org-f))))
6500 (defun org-get-todo-face (kwd)
6501 "Get the right face for a TODO keyword KWD.
6502 If KWD is a number, get the corresponding match group."
6503 (if (numberp kwd) (setq kwd (match-string kwd)))
6504 (or (org-face-from-face-or-color
6505 'todo 'org-todo (cdr (assoc kwd org-todo-keyword-faces)))
6506 (and (member kwd org-done-keywords) 'org-done)
6507 'org-todo))
6509 (defun org-face-from-face-or-color (context inherit face-or-color)
6510 "Create a face list that inherits INHERIT, but sets the foreground color.
6511 When FACE-OR-COLOR is not a string, just return it."
6512 (if (stringp face-or-color)
6513 (list :inherit inherit
6514 (cdr (assoc context org-faces-easy-properties))
6515 face-or-color)
6516 face-or-color))
6518 (defun org-font-lock-add-tag-faces (limit)
6519 "Add the special tag faces."
6520 (when (and org-tag-faces org-tags-special-faces-re)
6521 (while (re-search-forward org-tags-special-faces-re limit t)
6522 (add-text-properties (match-beginning 1) (match-end 1)
6523 (list 'face (org-get-tag-face 1)
6524 'font-lock-fontified t))
6525 (backward-char 1))))
6527 (defun org-font-lock-add-priority-faces (limit)
6528 "Add the special priority faces."
6529 (while (re-search-forward "\\[#\\([A-Z0-9]\\)\\]" limit t)
6530 (when (save-match-data (org-at-heading-p))
6531 (add-text-properties
6532 (match-beginning 0) (match-end 0)
6533 (list 'face (or (org-face-from-face-or-color
6534 'priority 'org-priority
6535 (cdr (assoc (char-after (match-beginning 1))
6536 org-priority-faces)))
6537 'org-priority)
6538 'font-lock-fontified t)))))
6540 (defun org-get-tag-face (kwd)
6541 "Get the right face for a TODO keyword KWD.
6542 If KWD is a number, get the corresponding match group."
6543 (if (numberp kwd) (setq kwd (match-string kwd)))
6544 (or (org-face-from-face-or-color
6545 'tag 'org-tag (cdr (assoc kwd org-tag-faces)))
6546 'org-tag))
6548 (defun org-unfontify-region (beg end &optional maybe_loudly)
6549 "Remove fontification and activation overlays from links."
6550 (font-lock-default-unfontify-region beg end)
6551 (let* ((buffer-undo-list t)
6552 (inhibit-read-only t) (inhibit-point-motion-hooks t)
6553 (inhibit-modification-hooks t)
6554 deactivate-mark buffer-file-name buffer-file-truename)
6555 (org-decompose-region beg end)
6556 (remove-text-properties beg end
6557 '(mouse-face t keymap t org-linked-text t
6558 invisible t intangible t
6559 org-emphasis t))
6560 (org-remove-font-lock-display-properties beg end)))
6562 (defconst org-script-display '(((raise -0.3) (height 0.7))
6563 ((raise 0.3) (height 0.7))
6564 ((raise -0.5))
6565 ((raise 0.5)))
6566 "Display properties for showing superscripts and subscripts.")
6568 (defun org-remove-font-lock-display-properties (beg end)
6569 "Remove specific display properties that have been added by font lock.
6570 The will remove the raise properties that are used to show superscripts
6571 and subscripts."
6572 (let (next prop)
6573 (while (< beg end)
6574 (setq next (next-single-property-change beg 'display nil end)
6575 prop (get-text-property beg 'display))
6576 (if (member prop org-script-display)
6577 (put-text-property beg next 'display nil))
6578 (setq beg next))))
6580 (defun org-raise-scripts (limit)
6581 "Add raise properties to sub/superscripts."
6582 (when (and org-pretty-entities org-pretty-entities-include-sub-superscripts)
6583 (if (re-search-forward
6584 (if (eq org-use-sub-superscripts t)
6585 org-match-substring-regexp
6586 org-match-substring-with-braces-regexp)
6587 limit t)
6588 (let* ((pos (point)) table-p comment-p
6589 (mpos (match-beginning 3))
6590 (emph-p (get-text-property mpos 'org-emphasis))
6591 (link-p (get-text-property mpos 'mouse-face))
6592 (keyw-p (eq 'org-special-keyword (get-text-property mpos 'face))))
6593 (goto-char (point-at-bol))
6594 (setq table-p (org-looking-at-p org-table-dataline-regexp)
6595 comment-p (org-looking-at-p "^[ \t]*#[ +]"))
6596 (goto-char pos)
6597 ;; Handle a_b^c
6598 (if (member (char-after) '(?_ ?^)) (goto-char (1- pos)))
6599 (if (or comment-p emph-p link-p keyw-p)
6601 (put-text-property (match-beginning 3) (match-end 0)
6602 'display
6603 (if (equal (char-after (match-beginning 2)) ?^)
6604 (nth (if table-p 3 1) org-script-display)
6605 (nth (if table-p 2 0) org-script-display)))
6606 (add-text-properties (match-beginning 2) (match-end 2)
6607 (list 'invisible t
6608 'org-dwidth t 'org-dwidth-n 1))
6609 (if (and (eq (char-after (match-beginning 3)) ?{)
6610 (eq (char-before (match-end 3)) ?}))
6611 (progn
6612 (add-text-properties
6613 (match-beginning 3) (1+ (match-beginning 3))
6614 (list 'invisible t 'org-dwidth t 'org-dwidth-n 1))
6615 (add-text-properties
6616 (1- (match-end 3)) (match-end 3)
6617 (list 'invisible t 'org-dwidth t 'org-dwidth-n 1))))
6618 t)))))
6620 ;;;; Visibility cycling, including org-goto and indirect buffer
6622 ;;; Cycling
6624 (defvar org-cycle-global-status nil)
6625 (make-variable-buffer-local 'org-cycle-global-status)
6626 (put 'org-cycle-global-status 'org-state t)
6627 (defvar org-cycle-subtree-status nil)
6628 (make-variable-buffer-local 'org-cycle-subtree-status)
6629 (put 'org-cycle-subtree-status 'org-state t)
6631 (defvar org-inlinetask-min-level)
6633 (defun org-unlogged-message (&rest args)
6634 "Display a message, but avoid logging it in the *Messages* buffer."
6635 (let ((message-log-max nil))
6636 (apply 'message args)))
6638 ;;;###autoload
6639 (defun org-cycle (&optional arg)
6640 "TAB-action and visibility cycling for Org-mode.
6642 This is the command invoked in Org-mode by the TAB key. Its main purpose
6643 is outline visibility cycling, but it also invokes other actions
6644 in special contexts.
6646 - When this function is called with a prefix argument, rotate the entire
6647 buffer through 3 states (global cycling)
6648 1. OVERVIEW: Show only top-level headlines.
6649 2. CONTENTS: Show all headlines of all levels, but no body text.
6650 3. SHOW ALL: Show everything.
6651 When called with two `C-u C-u' prefixes, switch to the startup visibility,
6652 determined by the variable `org-startup-folded', and by any VISIBILITY
6653 properties in the buffer.
6654 When called with three `C-u C-u C-u' prefixed, show the entire buffer,
6655 including any drawers.
6657 - When inside a table, re-align the table and move to the next field.
6659 - When point is at the beginning of a headline, rotate the subtree started
6660 by this line through 3 different states (local cycling)
6661 1. FOLDED: Only the main headline is shown.
6662 2. CHILDREN: The main headline and the direct children are shown.
6663 From this state, you can move to one of the children
6664 and zoom in further.
6665 3. SUBTREE: Show the entire subtree, including body text.
6666 If there is no subtree, switch directly from CHILDREN to FOLDED.
6668 - When point is at the beginning of an empty headline and the variable
6669 `org-cycle-level-after-item/entry-creation' is set, cycle the level
6670 of the headline by demoting and promoting it to likely levels. This
6671 speeds up creation document structure by pressing TAB once or several
6672 times right after creating a new headline.
6674 - When there is a numeric prefix, go up to a heading with level ARG, do
6675 a `show-subtree' and return to the previous cursor position. If ARG
6676 is negative, go up that many levels.
6678 - When point is not at the beginning of a headline, execute the global
6679 binding for TAB, which is re-indenting the line. See the option
6680 `org-cycle-emulate-tab' for details.
6682 - Special case: if point is at the beginning of the buffer and there is
6683 no headline in line 1, this function will act as if called with prefix arg
6684 (C-u TAB, same as S-TAB) also when called without prefix arg.
6685 But only if also the variable `org-cycle-global-at-bob' is t."
6686 (interactive "P")
6687 (org-load-modules-maybe)
6688 (unless (or (run-hook-with-args-until-success 'org-tab-first-hook)
6689 (and org-cycle-level-after-item/entry-creation
6690 (or (org-cycle-level)
6691 (org-cycle-item-indentation))))
6692 (let* ((limit-level
6693 (or org-cycle-max-level
6694 (and (boundp 'org-inlinetask-min-level)
6695 org-inlinetask-min-level
6696 (1- org-inlinetask-min-level))))
6697 (nstars (and limit-level
6698 (if org-odd-levels-only
6699 (and limit-level (1- (* limit-level 2)))
6700 limit-level)))
6701 (org-outline-regexp
6702 (if (not (derived-mode-p 'org-mode))
6703 outline-regexp
6704 (concat "\\*" (if nstars (format "\\{1,%d\\} " nstars) "+ "))))
6705 (bob-special (and org-cycle-global-at-bob (not arg) (bobp)
6706 (not (looking-at org-outline-regexp))))
6707 (org-cycle-hook
6708 (if bob-special
6709 (delq 'org-optimize-window-after-visibility-change
6710 (copy-sequence org-cycle-hook))
6711 org-cycle-hook))
6712 (pos (point)))
6714 (if (or bob-special (equal arg '(4)))
6715 ;; special case: use global cycling
6716 (setq arg t))
6718 (cond
6720 ((equal arg '(16))
6721 (setq last-command 'dummy)
6722 (org-set-startup-visibility)
6723 (org-unlogged-message "Startup visibility, plus VISIBILITY properties"))
6725 ((equal arg '(64))
6726 (show-all)
6727 (org-unlogged-message "Entire buffer visible, including drawers"))
6729 ;; Try cdlatex TAB completion
6730 ((org-try-cdlatex-tab))
6732 ;; Table: enter it or move to the next field.
6733 ((org-at-table-p 'any)
6734 (if (org-at-table.el-p)
6735 (message "Use C-c ' to edit table.el tables")
6736 (if arg (org-table-edit-field t)
6737 (org-table-justify-field-maybe)
6738 (call-interactively 'org-table-next-field))))
6740 ((run-hook-with-args-until-success
6741 'org-tab-after-check-for-table-hook))
6743 ;; Global cycling: delegate to `org-cycle-internal-global'.
6744 ((eq arg t) (org-cycle-internal-global))
6746 ;; Drawers: delegate to `org-flag-drawer'.
6747 ((save-excursion
6748 (beginning-of-line 1)
6749 (looking-at org-drawer-regexp))
6750 (org-flag-drawer ; toggle block visibility
6751 (not (get-char-property (match-end 0) 'invisible))))
6753 ;; Show-subtree, ARG levels up from here.
6754 ((integerp arg)
6755 (save-excursion
6756 (org-back-to-heading)
6757 (outline-up-heading (if (< arg 0) (- arg)
6758 (- (funcall outline-level) arg)))
6759 (org-show-subtree)))
6761 ;; Inline task: delegate to `org-inlinetask-toggle-visibility'.
6762 ((and (featurep 'org-inlinetask)
6763 (org-inlinetask-at-task-p)
6764 (or (bolp) (not (eq org-cycle-emulate-tab 'exc-hl-bol))))
6765 (org-inlinetask-toggle-visibility))
6767 ;; At an item/headline: delegate to `org-cycle-internal-local'.
6768 ((and (or (and org-cycle-include-plain-lists (org-at-item-p))
6769 (save-excursion (beginning-of-line 1)
6770 (looking-at org-outline-regexp)))
6771 (or (bolp) (not (eq org-cycle-emulate-tab 'exc-hl-bol))))
6772 (org-cycle-internal-local))
6774 ;; From there: TAB emulation and template completion.
6775 (buffer-read-only (org-back-to-heading))
6777 ((run-hook-with-args-until-success
6778 'org-tab-after-check-for-cycling-hook))
6780 ((org-try-structure-completion))
6782 ((run-hook-with-args-until-success
6783 'org-tab-before-tab-emulation-hook))
6785 ((and (eq org-cycle-emulate-tab 'exc-hl-bol)
6786 (or (not (bolp))
6787 (not (looking-at org-outline-regexp))))
6788 (call-interactively (global-key-binding "\t")))
6790 ((if (and (memq org-cycle-emulate-tab '(white whitestart))
6791 (save-excursion (beginning-of-line 1) (looking-at "[ \t]*"))
6792 (or (and (eq org-cycle-emulate-tab 'white)
6793 (= (match-end 0) (point-at-eol)))
6794 (and (eq org-cycle-emulate-tab 'whitestart)
6795 (>= (match-end 0) pos))))
6797 (eq org-cycle-emulate-tab t))
6798 (call-interactively (global-key-binding "\t")))
6800 (t (save-excursion
6801 (org-back-to-heading)
6802 (org-cycle)))))))
6804 (defun org-cycle-internal-global ()
6805 "Do the global cycling action."
6806 ;; Hack to avoid display of messages for .org attachments in Gnus
6807 (let ((ga (string-match "\\*fontification" (buffer-name))))
6808 (cond
6809 ((and (eq last-command this-command)
6810 (eq org-cycle-global-status 'overview))
6811 ;; We just created the overview - now do table of contents
6812 ;; This can be slow in very large buffers, so indicate action
6813 (run-hook-with-args 'org-pre-cycle-hook 'contents)
6814 (unless ga (org-unlogged-message "CONTENTS..."))
6815 (org-content)
6816 (unless ga (org-unlogged-message "CONTENTS...done"))
6817 (setq org-cycle-global-status 'contents)
6818 (run-hook-with-args 'org-cycle-hook 'contents))
6820 ((and (eq last-command this-command)
6821 (eq org-cycle-global-status 'contents))
6822 ;; We just showed the table of contents - now show everything
6823 (run-hook-with-args 'org-pre-cycle-hook 'all)
6824 (show-all)
6825 (unless ga (org-unlogged-message "SHOW ALL"))
6826 (setq org-cycle-global-status 'all)
6827 (run-hook-with-args 'org-cycle-hook 'all))
6830 ;; Default action: go to overview
6831 (run-hook-with-args 'org-pre-cycle-hook 'overview)
6832 (org-overview)
6833 (unless ga (org-unlogged-message "OVERVIEW"))
6834 (setq org-cycle-global-status 'overview)
6835 (run-hook-with-args 'org-cycle-hook 'overview)))))
6837 (defvar org-called-with-limited-levels);Dyn-bound in ̀org-with-limited-levels'.
6839 (defun org-cycle-internal-local ()
6840 "Do the local cycling action."
6841 (let ((goal-column 0) eoh eol eos has-children children-skipped struct)
6842 ;; First, determine end of headline (EOH), end of subtree or item
6843 ;; (EOS), and if item or heading has children (HAS-CHILDREN).
6844 (save-excursion
6845 (if (org-at-item-p)
6846 (progn
6847 (beginning-of-line)
6848 (setq struct (org-list-struct))
6849 (setq eoh (point-at-eol))
6850 (setq eos (org-list-get-item-end-before-blank (point) struct))
6851 (setq has-children (org-list-has-child-p (point) struct)))
6852 (org-back-to-heading)
6853 (setq eoh (save-excursion (outline-end-of-heading) (point)))
6854 (setq eos (save-excursion (org-end-of-subtree t t)
6855 (when (bolp) (backward-char)) (point)))
6856 (setq has-children
6857 (or (save-excursion
6858 (let ((level (funcall outline-level)))
6859 (outline-next-heading)
6860 (and (org-at-heading-p t)
6861 (> (funcall outline-level) level))))
6862 (save-excursion
6863 (org-list-search-forward (org-item-beginning-re) eos t)))))
6864 ;; Determine end invisible part of buffer (EOL)
6865 (beginning-of-line 2)
6866 ;; XEmacs doesn't have `next-single-char-property-change'
6867 (if (featurep 'xemacs)
6868 (while (and (not (eobp)) ;; this is like `next-line'
6869 (get-char-property (1- (point)) 'invisible))
6870 (beginning-of-line 2))
6871 (while (and (not (eobp)) ;; this is like `next-line'
6872 (get-char-property (1- (point)) 'invisible))
6873 (goto-char (next-single-char-property-change (point) 'invisible))
6874 (and (eolp) (beginning-of-line 2))))
6875 (setq eol (point)))
6876 ;; Find out what to do next and set `this-command'
6877 (cond
6878 ((= eos eoh)
6879 ;; Nothing is hidden behind this heading
6880 (unless (org-before-first-heading-p)
6881 (run-hook-with-args 'org-pre-cycle-hook 'empty))
6882 (org-unlogged-message "EMPTY ENTRY")
6883 (setq org-cycle-subtree-status nil)
6884 (save-excursion
6885 (goto-char eos)
6886 (outline-next-heading)
6887 (if (outline-invisible-p) (org-flag-heading nil))))
6888 ((and (or (>= eol eos)
6889 (not (string-match "\\S-" (buffer-substring eol eos))))
6890 (or has-children
6891 (not (setq children-skipped
6892 org-cycle-skip-children-state-if-no-children))))
6893 ;; Entire subtree is hidden in one line: children view
6894 (unless (org-before-first-heading-p)
6895 (run-hook-with-args 'org-pre-cycle-hook 'children))
6896 (if (org-at-item-p)
6897 (org-list-set-item-visibility (point-at-bol) struct 'children)
6898 (org-show-entry)
6899 (org-with-limited-levels (show-children))
6900 ;; FIXME: This slows down the func way too much.
6901 ;; How keep drawers hidden in subtree anyway?
6902 ;; (when (memq 'org-cycle-hide-drawers org-cycle-hook)
6903 ;; (org-cycle-hide-drawers 'subtree))
6905 ;; Fold every list in subtree to top-level items.
6906 (when (eq org-cycle-include-plain-lists 'integrate)
6907 (save-excursion
6908 (org-back-to-heading)
6909 (while (org-list-search-forward (org-item-beginning-re) eos t)
6910 (beginning-of-line 1)
6911 (let* ((struct (org-list-struct))
6912 (prevs (org-list-prevs-alist struct))
6913 (end (org-list-get-bottom-point struct)))
6914 (mapc (lambda (e) (org-list-set-item-visibility e struct 'folded))
6915 (org-list-get-all-items (point) struct prevs))
6916 (goto-char (if (< end eos) end eos)))))))
6917 (org-unlogged-message "CHILDREN")
6918 (save-excursion
6919 (goto-char eos)
6920 (outline-next-heading)
6921 (if (outline-invisible-p) (org-flag-heading nil)))
6922 (setq org-cycle-subtree-status 'children)
6923 (unless (org-before-first-heading-p)
6924 (run-hook-with-args 'org-cycle-hook 'children)))
6925 ((or children-skipped
6926 (and (eq last-command this-command)
6927 (eq org-cycle-subtree-status 'children)))
6928 ;; We just showed the children, or no children are there,
6929 ;; now show everything.
6930 (unless (org-before-first-heading-p)
6931 (run-hook-with-args 'org-pre-cycle-hook 'subtree))
6932 (outline-flag-region eoh eos nil)
6933 (org-unlogged-message
6934 (if children-skipped "SUBTREE (NO CHILDREN)" "SUBTREE"))
6935 (setq org-cycle-subtree-status 'subtree)
6936 (unless (org-before-first-heading-p)
6937 (run-hook-with-args 'org-cycle-hook 'subtree)))
6939 ;; Default action: hide the subtree.
6940 (run-hook-with-args 'org-pre-cycle-hook 'folded)
6941 (outline-flag-region eoh eos t)
6942 (org-unlogged-message "FOLDED")
6943 (setq org-cycle-subtree-status 'folded)
6944 (unless (org-before-first-heading-p)
6945 (run-hook-with-args 'org-cycle-hook 'folded))))))
6947 ;;;###autoload
6948 (defun org-global-cycle (&optional arg)
6949 "Cycle the global visibility. For details see `org-cycle'.
6950 With \\[universal-argument] prefix arg, switch to startup visibility.
6951 With a numeric prefix, show all headlines up to that level."
6952 (interactive "P")
6953 (let ((org-cycle-include-plain-lists
6954 (if (derived-mode-p 'org-mode) org-cycle-include-plain-lists nil)))
6955 (cond
6956 ((integerp arg)
6957 (show-all)
6958 (hide-sublevels arg)
6959 (setq org-cycle-global-status 'contents))
6960 ((equal arg '(4))
6961 (org-set-startup-visibility)
6962 (org-unlogged-message "Startup visibility, plus VISIBILITY properties."))
6964 (org-cycle '(4))))))
6966 (defun org-set-startup-visibility ()
6967 "Set the visibility required by startup options and properties."
6968 (cond
6969 ((eq org-startup-folded t)
6970 (org-overview))
6971 ((eq org-startup-folded 'content)
6972 (org-content))
6973 ((or (eq org-startup-folded 'showeverything)
6974 (eq org-startup-folded nil))
6975 (show-all)))
6976 (unless (eq org-startup-folded 'showeverything)
6977 (if org-hide-block-startup (org-hide-block-all))
6978 (org-set-visibility-according-to-property 'no-cleanup)
6979 (org-cycle-hide-archived-subtrees 'all)
6980 (org-cycle-hide-drawers 'all)
6981 (org-cycle-show-empty-lines t)))
6983 (defun org-set-visibility-according-to-property (&optional no-cleanup)
6984 "Switch subtree visibilities according to :VISIBILITY: property."
6985 (interactive)
6986 (let (org-show-entry-below state)
6987 (save-excursion
6988 (goto-char (point-min))
6989 (while (re-search-forward
6990 "^[ \t]*:VISIBILITY:[ \t]+\\([a-z]+\\)"
6991 nil t)
6992 (setq state (match-string 1))
6993 (save-excursion
6994 (org-back-to-heading t)
6995 (hide-subtree)
6996 (org-reveal)
6997 (cond
6998 ((equal state '("fold" "folded"))
6999 (hide-subtree))
7000 ((equal state "children")
7001 (org-show-hidden-entry)
7002 (show-children))
7003 ((equal state "content")
7004 (save-excursion
7005 (save-restriction
7006 (org-narrow-to-subtree)
7007 (org-content))))
7008 ((member state '("all" "showall"))
7009 (show-subtree)))))
7010 (unless no-cleanup
7011 (org-cycle-hide-archived-subtrees 'all)
7012 (org-cycle-hide-drawers 'all)
7013 (org-cycle-show-empty-lines 'all)))))
7015 ;; This function uses outline-regexp instead of the more fundamental
7016 ;; org-outline-regexp so that org-cycle-global works outside of Org
7017 ;; buffers, where outline-regexp is needed.
7018 (defun org-overview ()
7019 "Switch to overview mode, showing only top-level headlines.
7020 This shows all headlines with a level equal or greater than the level
7021 of the first headline in the buffer. This is important, because if the
7022 first headline is not level one, then (hide-sublevels 1) gives confusing
7023 results."
7024 (interactive)
7025 (save-excursion
7026 (let ((level
7027 (save-excursion
7028 (goto-char (point-min))
7029 (if (re-search-forward (concat "^" outline-regexp) nil t)
7030 (progn
7031 (goto-char (match-beginning 0))
7032 (funcall outline-level))))))
7033 (and level (hide-sublevels level)))))
7035 (defun org-content (&optional arg)
7036 "Show all headlines in the buffer, like a table of contents.
7037 With numerical argument N, show content up to level N."
7038 (interactive "P")
7039 (org-overview)
7040 (save-excursion
7041 ;; Visit all headings and show their offspring
7042 (and (integerp arg) (org-overview))
7043 (goto-char (point-max))
7044 (catch 'exit
7045 (while (and (progn (condition-case nil
7046 (outline-previous-visible-heading 1)
7047 (error (goto-char (point-min))))
7049 (looking-at org-outline-regexp))
7050 (if (integerp arg)
7051 (show-children (1- arg))
7052 (show-branches))
7053 (if (bobp) (throw 'exit nil))))))
7055 (defun org-optimize-window-after-visibility-change (state)
7056 "Adjust the window after a change in outline visibility.
7057 This function is the default value of the hook `org-cycle-hook'."
7058 (when (get-buffer-window (current-buffer))
7059 (cond
7060 ((eq state 'content) nil)
7061 ((eq state 'all) nil)
7062 ((eq state 'folded) nil)
7063 ((eq state 'children) (or (org-subtree-end-visible-p) (recenter 1)))
7064 ((eq state 'subtree) (or (org-subtree-end-visible-p) (recenter 1))))))
7066 (defun org-remove-empty-overlays-at (pos)
7067 "Remove outline overlays that do not contain non-white stuff."
7068 (mapc
7069 (lambda (o)
7070 (and (eq 'outline (overlay-get o 'invisible))
7071 (not (string-match "\\S-" (buffer-substring (overlay-start o)
7072 (overlay-end o))))
7073 (delete-overlay o)))
7074 (overlays-at pos)))
7076 (defun org-clean-visibility-after-subtree-move ()
7077 "Fix visibility issues after moving a subtree."
7078 ;; First, find a reasonable region to look at:
7079 ;; Start two siblings above, end three below
7080 (let* ((beg (save-excursion
7081 (and (org-get-last-sibling)
7082 (org-get-last-sibling))
7083 (point)))
7084 (end (save-excursion
7085 (and (org-get-next-sibling)
7086 (org-get-next-sibling)
7087 (org-get-next-sibling))
7088 (if (org-at-heading-p)
7089 (point-at-eol)
7090 (point))))
7091 (level (looking-at "\\*+"))
7092 (re (if level (concat "^" (regexp-quote (match-string 0)) " "))))
7093 (save-excursion
7094 (save-restriction
7095 (narrow-to-region beg end)
7096 (when re
7097 ;; Properly fold already folded siblings
7098 (goto-char (point-min))
7099 (while (re-search-forward re nil t)
7100 (if (and (not (outline-invisible-p))
7101 (save-excursion
7102 (goto-char (point-at-eol)) (outline-invisible-p)))
7103 (hide-entry))))
7104 (org-cycle-show-empty-lines 'overview)
7105 (org-cycle-hide-drawers 'overview)))))
7107 (defun org-cycle-show-empty-lines (state)
7108 "Show empty lines above all visible headlines.
7109 The region to be covered depends on STATE when called through
7110 `org-cycle-hook'. Lisp program can use t for STATE to get the
7111 entire buffer covered. Note that an empty line is only shown if there
7112 are at least `org-cycle-separator-lines' empty lines before the headline."
7113 (when (not (= org-cycle-separator-lines 0))
7114 (save-excursion
7115 (let* ((n (abs org-cycle-separator-lines))
7116 (re (cond
7117 ((= n 1) "\\(\n[ \t]*\n\\*+\\) ")
7118 ((= n 2) "^[ \t]*\\(\n[ \t]*\n\\*+\\) ")
7119 (t (let ((ns (number-to-string (- n 2))))
7120 (concat "^\\(?:[ \t]*\n\\)\\{" ns "," ns "\\}"
7121 "[ \t]*\\(\n[ \t]*\n\\*+\\) ")))))
7122 beg end b e)
7123 (cond
7124 ((memq state '(overview contents t))
7125 (setq beg (point-min) end (point-max)))
7126 ((memq state '(children folded))
7127 (setq beg (point) end (progn (org-end-of-subtree t t)
7128 (beginning-of-line 2)
7129 (point)))))
7130 (when beg
7131 (goto-char beg)
7132 (while (re-search-forward re end t)
7133 (unless (get-char-property (match-end 1) 'invisible)
7134 (setq e (match-end 1))
7135 (if (< org-cycle-separator-lines 0)
7136 (setq b (save-excursion
7137 (goto-char (match-beginning 0))
7138 (org-back-over-empty-lines)
7139 (if (save-excursion
7140 (goto-char (max (point-min) (1- (point))))
7141 (org-at-heading-p))
7142 (1- (point))
7143 (point))))
7144 (setq b (match-beginning 1)))
7145 (outline-flag-region b e nil)))))))
7146 ;; Never hide empty lines at the end of the file.
7147 (save-excursion
7148 (goto-char (point-max))
7149 (outline-previous-heading)
7150 (outline-end-of-heading)
7151 (if (and (looking-at "[ \t\n]+")
7152 (= (match-end 0) (point-max)))
7153 (outline-flag-region (point) (match-end 0) nil))))
7155 (defun org-show-empty-lines-in-parent ()
7156 "Move to the parent and re-show empty lines before visible headlines."
7157 (save-excursion
7158 (let ((context (if (org-up-heading-safe) 'children 'overview)))
7159 (org-cycle-show-empty-lines context))))
7161 (defun org-files-list ()
7162 "Return `org-agenda-files' list, plus all open org-mode files.
7163 This is useful for operations that need to scan all of a user's
7164 open and agenda-wise Org files."
7165 (let ((files (mapcar 'expand-file-name (org-agenda-files))))
7166 (dolist (buf (buffer-list))
7167 (with-current-buffer buf
7168 (if (and (derived-mode-p 'org-mode) (buffer-file-name))
7169 (let ((file (expand-file-name (buffer-file-name))))
7170 (unless (member file files)
7171 (push file files))))))
7172 files))
7174 (defsubst org-entry-beginning-position ()
7175 "Return the beginning position of the current entry."
7176 (save-excursion (outline-back-to-heading t) (point)))
7178 (defsubst org-entry-end-position ()
7179 "Return the end position of the current entry."
7180 (save-excursion (outline-next-heading) (point)))
7182 (defun org-cycle-hide-drawers (state &optional exceptions)
7183 "Re-hide all drawers after a visibility state change.
7184 When non-nil, optional argument EXCEPTIONS is a list of strings
7185 specifying which drawers should not be hidden."
7186 (when (and (derived-mode-p 'org-mode)
7187 (not (memq state '(overview folded contents))))
7188 (save-excursion
7189 (let* ((globalp (memq state '(contents all)))
7190 (beg (if globalp (point-min) (point)))
7191 (end (if globalp (point-max)
7192 (if (eq state 'children)
7193 (save-excursion (outline-next-heading) (point))
7194 (org-end-of-subtree t)))))
7195 (goto-char beg)
7196 (while (re-search-forward org-drawer-regexp (max end (point)) t)
7197 (unless (member-ignore-case (match-string 1) exceptions)
7198 (let ((drawer (org-element-at-point)))
7199 (when (memq (org-element-type drawer) '(drawer property-drawer))
7200 (org-flag-drawer t drawer)
7201 ;; Make sure to skip drawer entirely or we might flag
7202 ;; it another time when matching its ending line with
7203 ;; `org-drawer-regexp'.
7204 (goto-char (org-element-property :end drawer))))))))))
7206 (defun org-cycle-hide-inline-tasks (state)
7207 "Re-hide inline tasks when switching to 'contents or 'children
7208 visibility state."
7209 (case state
7210 (contents
7211 (when (org-bound-and-true-p org-inlinetask-min-level)
7212 (hide-sublevels (1- org-inlinetask-min-level))))
7213 (children
7214 (when (featurep 'org-inlinetask)
7215 (save-excursion
7216 (while (and (outline-next-heading)
7217 (org-inlinetask-at-task-p))
7218 (org-inlinetask-toggle-visibility)
7219 (org-inlinetask-goto-end)))))))
7221 (defun org-flag-drawer (flag &optional element)
7222 "When FLAG is non-nil, hide the drawer we are at.
7223 Otherwise make it visible. When optional argument ELEMENT is
7224 a parsed drawer, as returned by `org-element-at-point', hide or
7225 show that drawer instead."
7226 (when (save-excursion
7227 (beginning-of-line)
7228 (org-looking-at-p org-drawer-regexp))
7229 (let ((drawer (or element (org-element-at-point))))
7230 (when (memq (org-element-type drawer) '(drawer property-drawer))
7231 (let ((post (org-element-property :post-affiliated drawer)))
7232 (save-excursion
7233 (outline-flag-region
7234 (progn (goto-char post) (line-end-position))
7235 (progn (goto-char (org-element-property :end drawer))
7236 (skip-chars-backward " \r\t\n")
7237 (line-end-position))
7238 flag))
7239 ;; When the drawer is hidden away, make sure point lies in
7240 ;; a visible part of the buffer.
7241 (when (and flag (> (line-beginning-position) post))
7242 (goto-char post)))))))
7244 (defun org-subtree-end-visible-p ()
7245 "Is the end of the current subtree visible?"
7246 (pos-visible-in-window-p
7247 (save-excursion (org-end-of-subtree t) (point))))
7249 (defun org-first-headline-recenter ()
7250 "Move cursor to the first headline and recenter the headline."
7251 (goto-char (point-min))
7252 (when (re-search-forward (concat "^\\(" org-outline-regexp "\\)") nil t)
7253 (set-window-start (selected-window) (point-at-bol))))
7255 ;;; Saving and restoring visibility
7257 (defun org-outline-overlay-data (&optional use-markers)
7258 "Return a list of the locations of all outline overlays.
7259 These are overlays with the `invisible' property value `outline'.
7260 The return value is a list of cons cells, with start and stop
7261 positions for each overlay.
7262 If USE-MARKERS is set, return the positions as markers."
7263 (let (beg end)
7264 (save-excursion
7265 (save-restriction
7266 (widen)
7267 (delq nil
7268 (mapcar (lambda (o)
7269 (when (eq (overlay-get o 'invisible) 'outline)
7270 (setq beg (overlay-start o)
7271 end (overlay-end o))
7272 (and beg end (> end beg)
7273 (if use-markers
7274 (cons (copy-marker beg)
7275 (copy-marker end t))
7276 (cons beg end)))))
7277 (overlays-in (point-min) (point-max))))))))
7279 (defun org-set-outline-overlay-data (data)
7280 "Create visibility overlays for all positions in DATA.
7281 DATA should have been made by `org-outline-overlay-data'."
7282 (let (o)
7283 (save-excursion
7284 (save-restriction
7285 (widen)
7286 (show-all)
7287 (mapc (lambda (c)
7288 (outline-flag-region (car c) (cdr c) t))
7289 data)))))
7291 ;;; Folding of blocks
7293 (defvar org-hide-block-overlays nil
7294 "Overlays hiding blocks.")
7295 (make-variable-buffer-local 'org-hide-block-overlays)
7297 (defun org-block-map (function &optional start end)
7298 "Call FUNCTION at the head of all source blocks in the current buffer.
7299 Optional arguments START and END can be used to limit the range."
7300 (let ((start (or start (point-min)))
7301 (end (or end (point-max))))
7302 (save-excursion
7303 (goto-char start)
7304 (while (and (< (point) end) (re-search-forward org-block-regexp end t))
7305 (save-excursion
7306 (save-match-data
7307 (goto-char (match-beginning 0))
7308 (funcall function)))))))
7310 (defun org-hide-block-toggle-all ()
7311 "Toggle the visibility of all blocks in the current buffer."
7312 (org-block-map 'org-hide-block-toggle))
7314 (defun org-hide-block-all ()
7315 "Fold all blocks in the current buffer."
7316 (interactive)
7317 (org-show-block-all)
7318 (org-block-map 'org-hide-block-toggle-maybe))
7320 (defun org-show-block-all ()
7321 "Unfold all blocks in the current buffer."
7322 (interactive)
7323 (mapc 'delete-overlay org-hide-block-overlays)
7324 (setq org-hide-block-overlays nil))
7326 (defun org-hide-block-toggle-maybe ()
7327 "Toggle visibility of block at point."
7328 (interactive)
7329 (let ((case-fold-search t))
7330 (if (save-excursion
7331 (beginning-of-line 1)
7332 (looking-at org-block-regexp))
7333 (progn (org-hide-block-toggle)
7334 t) ;; to signal that we took action
7335 nil))) ;; to signal that we did not
7337 (defun org-hide-block-toggle (&optional force)
7338 "Toggle the visibility of the current block."
7339 (interactive)
7340 (save-excursion
7341 (beginning-of-line)
7342 (if (re-search-forward org-block-regexp nil t)
7343 (let ((start (- (match-beginning 4) 1)) ;; beginning of body
7344 (end (match-end 0)) ;; end of entire body
7346 (if (memq t (mapcar (lambda (overlay)
7347 (eq (overlay-get overlay 'invisible)
7348 'org-hide-block))
7349 (overlays-at start)))
7350 (if (or (not force) (eq force 'off))
7351 (mapc (lambda (ov)
7352 (when (member ov org-hide-block-overlays)
7353 (setq org-hide-block-overlays
7354 (delq ov org-hide-block-overlays)))
7355 (when (eq (overlay-get ov 'invisible)
7356 'org-hide-block)
7357 (delete-overlay ov)))
7358 (overlays-at start)))
7359 (setq ov (make-overlay start end))
7360 (overlay-put ov 'invisible 'org-hide-block)
7361 ;; make the block accessible to isearch
7362 (overlay-put
7363 ov 'isearch-open-invisible
7364 (lambda (ov)
7365 (when (member ov org-hide-block-overlays)
7366 (setq org-hide-block-overlays
7367 (delq ov org-hide-block-overlays)))
7368 (when (eq (overlay-get ov 'invisible)
7369 'org-hide-block)
7370 (delete-overlay ov))))
7371 (push ov org-hide-block-overlays)))
7372 (user-error "Not looking at a source block"))))
7374 ;; org-tab-after-check-for-cycling-hook
7375 (add-hook 'org-tab-first-hook 'org-hide-block-toggle-maybe)
7376 ;; Remove overlays when changing major mode
7377 (add-hook 'org-mode-hook
7378 (lambda () (org-add-hook 'change-major-mode-hook
7379 'org-show-block-all 'append 'local)))
7381 ;;; Org-goto
7383 (defvar org-goto-window-configuration nil)
7384 (defvar org-goto-marker nil)
7385 (defvar org-goto-map)
7386 (defun org-goto-map ()
7387 "Set the keymap `org-goto'."
7388 (setq org-goto-map
7389 (let ((map (make-sparse-keymap)))
7390 (let ((cmds '(isearch-forward isearch-backward kill-ring-save set-mark-command
7391 mouse-drag-region universal-argument org-occur))
7392 cmd)
7393 (while (setq cmd (pop cmds))
7394 (substitute-key-definition cmd cmd map global-map)))
7395 (suppress-keymap map)
7396 (org-defkey map "\C-m" 'org-goto-ret)
7397 (org-defkey map [(return)] 'org-goto-ret)
7398 (org-defkey map [(left)] 'org-goto-left)
7399 (org-defkey map [(right)] 'org-goto-right)
7400 (org-defkey map [(control ?g)] 'org-goto-quit)
7401 (org-defkey map "\C-i" 'org-cycle)
7402 (org-defkey map [(tab)] 'org-cycle)
7403 (org-defkey map [(down)] 'outline-next-visible-heading)
7404 (org-defkey map [(up)] 'outline-previous-visible-heading)
7405 (if org-goto-auto-isearch
7406 (if (fboundp 'define-key-after)
7407 (define-key-after map [t] 'org-goto-local-auto-isearch)
7408 nil)
7409 (org-defkey map "q" 'org-goto-quit)
7410 (org-defkey map "n" 'outline-next-visible-heading)
7411 (org-defkey map "p" 'outline-previous-visible-heading)
7412 (org-defkey map "f" 'outline-forward-same-level)
7413 (org-defkey map "b" 'outline-backward-same-level)
7414 (org-defkey map "u" 'outline-up-heading))
7415 (org-defkey map "/" 'org-occur)
7416 (org-defkey map "\C-c\C-n" 'outline-next-visible-heading)
7417 (org-defkey map "\C-c\C-p" 'outline-previous-visible-heading)
7418 (org-defkey map "\C-c\C-f" 'outline-forward-same-level)
7419 (org-defkey map "\C-c\C-b" 'outline-backward-same-level)
7420 (org-defkey map "\C-c\C-u" 'outline-up-heading)
7421 map)))
7423 (defconst org-goto-help
7424 "Browse buffer copy, to find location or copy text.%s
7425 RET=jump to location C-g=quit and return to previous location
7426 \[Up]/[Down]=next/prev headline TAB=cycle visibility [/] org-occur")
7428 (defvar org-goto-start-pos) ; dynamically scoped parameter
7430 (defun org-goto (&optional alternative-interface)
7431 "Look up a different location in the current file, keeping current visibility.
7433 When you want look-up or go to a different location in a
7434 document, the fastest way is often to fold the entire buffer and
7435 then dive into the tree. This method has the disadvantage, that
7436 the previous location will be folded, which may not be what you
7437 want.
7439 This command works around this by showing a copy of the current
7440 buffer in an indirect buffer, in overview mode. You can dive
7441 into the tree in that copy, use org-occur and incremental search
7442 to find a location. When pressing RET or `Q', the command
7443 returns to the original buffer in which the visibility is still
7444 unchanged. After RET it will also jump to the location selected
7445 in the indirect buffer and expose the headline hierarchy above.
7447 With a prefix argument, use the alternative interface: e.g. if
7448 `org-goto-interface' is 'outline use 'outline-path-completion."
7449 (interactive "P")
7450 (org-goto-map)
7451 (let* ((org-refile-targets `((nil . (:maxlevel . ,org-goto-max-level))))
7452 (org-refile-use-outline-path t)
7453 (org-refile-target-verify-function nil)
7454 (interface
7455 (if (not alternative-interface)
7456 org-goto-interface
7457 (if (eq org-goto-interface 'outline)
7458 'outline-path-completion
7459 'outline)))
7460 (org-goto-start-pos (point))
7461 (selected-point
7462 (if (eq interface 'outline)
7463 (car (org-get-location (current-buffer) org-goto-help))
7464 (let ((pa (org-refile-get-location "Goto" nil nil t)))
7465 (org-refile-check-position pa)
7466 (nth 3 pa)))))
7467 (if selected-point
7468 (progn
7469 (org-mark-ring-push org-goto-start-pos)
7470 (goto-char selected-point)
7471 (if (or (outline-invisible-p) (org-invisible-p2))
7472 (org-show-context 'org-goto)))
7473 (message "Quit"))))
7475 (defvar org-goto-selected-point nil) ; dynamically scoped parameter
7476 (defvar org-goto-exit-command nil) ; dynamically scoped parameter
7477 (defvar org-goto-local-auto-isearch-map) ; defined below
7479 (defun org-get-location (buf help)
7480 "Let the user select a location in the Org-mode buffer BUF.
7481 This function uses a recursive edit. It returns the selected position
7482 or nil."
7483 (org-no-popups
7484 (let ((isearch-mode-map org-goto-local-auto-isearch-map)
7485 (isearch-hide-immediately nil)
7486 (isearch-search-fun-function
7487 (lambda () 'org-goto-local-search-headings))
7488 (org-goto-selected-point org-goto-exit-command))
7489 (save-excursion
7490 (save-window-excursion
7491 (delete-other-windows)
7492 (and (get-buffer "*org-goto*") (kill-buffer "*org-goto*"))
7493 (org-pop-to-buffer-same-window
7494 (condition-case nil
7495 (make-indirect-buffer (current-buffer) "*org-goto*")
7496 (error (make-indirect-buffer (current-buffer) "*org-goto*"))))
7497 (with-output-to-temp-buffer "*Org Help*"
7498 (princ (format help (if org-goto-auto-isearch
7499 " Just type for auto-isearch."
7500 " n/p/f/b/u to navigate, q to quit."))))
7501 (org-fit-window-to-buffer (get-buffer-window "*Org Help*"))
7502 (setq buffer-read-only nil)
7503 (let ((org-startup-truncated t)
7504 (org-startup-folded nil)
7505 (org-startup-align-all-tables nil))
7506 (org-mode)
7507 (org-overview))
7508 (setq buffer-read-only t)
7509 (if (and (boundp 'org-goto-start-pos)
7510 (integer-or-marker-p org-goto-start-pos))
7511 (let ((org-show-hierarchy-above t)
7512 (org-show-siblings t)
7513 (org-show-following-heading t))
7514 (goto-char org-goto-start-pos)
7515 (and (outline-invisible-p) (org-show-context)))
7516 (goto-char (point-min)))
7517 (let (org-special-ctrl-a/e) (org-beginning-of-line))
7518 (message "Select location and press RET")
7519 (use-local-map org-goto-map)
7520 (recursive-edit)))
7521 (kill-buffer "*org-goto*")
7522 (cons org-goto-selected-point org-goto-exit-command))))
7524 (defvar org-goto-local-auto-isearch-map (make-sparse-keymap))
7525 (set-keymap-parent org-goto-local-auto-isearch-map isearch-mode-map)
7526 (define-key org-goto-local-auto-isearch-map "\C-i" 'isearch-other-control-char)
7527 (define-key org-goto-local-auto-isearch-map "\C-m" 'isearch-other-control-char)
7529 (defun org-goto-local-search-headings (string bound noerror)
7530 "Search and make sure that any matches are in headlines."
7531 (catch 'return
7532 (while (if isearch-forward
7533 (search-forward string bound noerror)
7534 (search-backward string bound noerror))
7535 (when (let ((context (mapcar 'car (save-match-data (org-context)))))
7536 (and (member :headline context)
7537 (not (member :tags context))))
7538 (throw 'return (point))))))
7540 (defun org-goto-local-auto-isearch ()
7541 "Start isearch."
7542 (interactive)
7543 (goto-char (point-min))
7544 (let ((keys (this-command-keys)))
7545 (when (eq (lookup-key isearch-mode-map keys) 'isearch-printing-char)
7546 (isearch-mode t)
7547 (isearch-process-search-char (string-to-char keys)))))
7549 (defun org-goto-ret (&optional arg)
7550 "Finish `org-goto' by going to the new location."
7551 (interactive "P")
7552 (setq org-goto-selected-point (point)
7553 org-goto-exit-command 'return)
7554 (throw 'exit nil))
7556 (defun org-goto-left ()
7557 "Finish `org-goto' by going to the new location."
7558 (interactive)
7559 (if (org-at-heading-p)
7560 (progn
7561 (beginning-of-line 1)
7562 (setq org-goto-selected-point (point)
7563 org-goto-exit-command 'left)
7564 (throw 'exit nil))
7565 (user-error "Not on a heading")))
7567 (defun org-goto-right ()
7568 "Finish `org-goto' by going to the new location."
7569 (interactive)
7570 (if (org-at-heading-p)
7571 (progn
7572 (setq org-goto-selected-point (point)
7573 org-goto-exit-command 'right)
7574 (throw 'exit nil))
7575 (user-error "Not on a heading")))
7577 (defun org-goto-quit ()
7578 "Finish `org-goto' without cursor motion."
7579 (interactive)
7580 (setq org-goto-selected-point nil)
7581 (setq org-goto-exit-command 'quit)
7582 (throw 'exit nil))
7584 ;;; Indirect buffer display of subtrees
7586 (defvar org-indirect-dedicated-frame nil
7587 "This is the frame being used for indirect tree display.")
7588 (defvar org-last-indirect-buffer nil)
7590 (defun org-tree-to-indirect-buffer (&optional arg)
7591 "Create indirect buffer and narrow it to current subtree.
7592 With a numerical prefix ARG, go up to this level and then take that tree.
7593 If ARG is negative, go up that many levels.
7595 If `org-indirect-buffer-display' is not `new-frame', the command removes the
7596 indirect buffer previously made with this command, to avoid proliferation of
7597 indirect buffers. However, when you call the command with a \
7598 \\[universal-argument] prefix, or
7599 when `org-indirect-buffer-display' is `new-frame', the last buffer
7600 is kept so that you can work with several indirect buffers at the same time.
7601 If `org-indirect-buffer-display' is `dedicated-frame', the \
7602 \\[universal-argument] prefix also
7603 requests that a new frame be made for the new buffer, so that the dedicated
7604 frame is not changed."
7605 (interactive "P")
7606 (let ((cbuf (current-buffer))
7607 (cwin (selected-window))
7608 (pos (point))
7609 beg end level heading ibuf)
7610 (save-excursion
7611 (org-back-to-heading t)
7612 (when (numberp arg)
7613 (setq level (org-outline-level))
7614 (if (< arg 0) (setq arg (+ level arg)))
7615 (while (> (setq level (org-outline-level)) arg)
7616 (org-up-heading-safe)))
7617 (setq beg (point)
7618 heading (org-get-heading))
7619 (org-end-of-subtree t t)
7620 (if (org-at-heading-p) (backward-char 1))
7621 (setq end (point)))
7622 (if (and (buffer-live-p org-last-indirect-buffer)
7623 (not (eq org-indirect-buffer-display 'new-frame))
7624 (not arg))
7625 (kill-buffer org-last-indirect-buffer))
7626 (setq ibuf (org-get-indirect-buffer cbuf heading)
7627 org-last-indirect-buffer ibuf)
7628 (cond
7629 ((or (eq org-indirect-buffer-display 'new-frame)
7630 (and arg (eq org-indirect-buffer-display 'dedicated-frame)))
7631 (select-frame (make-frame))
7632 (delete-other-windows)
7633 (org-pop-to-buffer-same-window ibuf)
7634 (org-set-frame-title heading))
7635 ((eq org-indirect-buffer-display 'dedicated-frame)
7636 (raise-frame
7637 (select-frame (or (and org-indirect-dedicated-frame
7638 (frame-live-p org-indirect-dedicated-frame)
7639 org-indirect-dedicated-frame)
7640 (setq org-indirect-dedicated-frame (make-frame)))))
7641 (delete-other-windows)
7642 (org-pop-to-buffer-same-window ibuf)
7643 (org-set-frame-title (concat "Indirect: " heading)))
7644 ((eq org-indirect-buffer-display 'current-window)
7645 (org-pop-to-buffer-same-window ibuf))
7646 ((eq org-indirect-buffer-display 'other-window)
7647 (pop-to-buffer ibuf))
7648 (t (error "Invalid value")))
7649 (if (featurep 'xemacs)
7650 (save-excursion (org-mode) (turn-on-font-lock)))
7651 (narrow-to-region beg end)
7652 (show-all)
7653 (goto-char pos)
7654 (run-hook-with-args 'org-cycle-hook 'all)
7655 (and (window-live-p cwin) (select-window cwin))))
7657 (defun org-get-indirect-buffer (&optional buffer heading)
7658 (setq buffer (or buffer (current-buffer)))
7659 (let ((n 1) (base (buffer-name buffer)) bname)
7660 (while (buffer-live-p
7661 (get-buffer
7662 (setq bname
7663 (concat base "-"
7664 (if heading (concat heading "-" (number-to-string n))
7665 (number-to-string n))))))
7666 (setq n (1+ n)))
7667 (condition-case nil
7668 (make-indirect-buffer buffer bname 'clone)
7669 (error (make-indirect-buffer buffer bname)))))
7671 (defun org-set-frame-title (title)
7672 "Set the title of the current frame to the string TITLE."
7673 ;; FIXME: how to name a single frame in XEmacs???
7674 (unless (featurep 'xemacs)
7675 (modify-frame-parameters (selected-frame) (list (cons 'name title)))))
7677 ;;;; Structure editing
7679 ;;; Inserting headlines
7681 (defun org-previous-line-empty-p (&optional next)
7682 "Is the previous line a blank line?
7683 When NEXT is non-nil, check the next line instead."
7684 (save-excursion
7685 (and (not (bobp))
7686 (or (beginning-of-line (if next 2 0)) t)
7687 (save-match-data
7688 (looking-at "[ \t]*$")))))
7690 (defun org-insert-heading (&optional arg invisible-ok)
7691 "Insert a new heading or an item with the same depth at point.
7693 If point is at the beginning of a heading or a list item, insert
7694 a new heading or a new item above the current one. If point is
7695 at the beginning of a normal line, turn the line into a heading.
7697 If point is in the middle of a headline or a list item, split the
7698 headline or the item and create a new headline/item with the text
7699 in the current line after point \(see `org-M-RET-may-split-line'
7700 on how to modify this behavior).
7702 With one universal prefirx argument, set the user option
7703 `org-insert-heading-respect-content' to t for the duration of
7704 the command. This modifies the behavior described above in this
7705 ways: on list items and at the beginning of normal lines, force
7706 the insertion of a heading after the current subtree.
7708 With two universal prefix arguments, insert the heading at the
7709 end of the grandparent subtree. For example, if point is within
7710 a 2nd-level heading, then it will insert a 2nd-level heading at
7711 the end of the 1st-level parent heading.
7713 If point is at the beginning of a headline, insert a sibling
7714 before the current headline. If point is not at the beginning,
7715 split the line and create a new headline with the text in the
7716 current line after point \(see `org-M-RET-may-split-line' on how
7717 to modify this behavior).
7719 If point is at the beginning of a normal line, turn this line
7720 into a heading.
7722 When INVISIBLE-OK is set, stop at invisible headlines when going
7723 back. This is important for non-interactive uses of the
7724 command."
7725 (interactive "P")
7726 (if (org-called-interactively-p 'any) (org-reveal))
7727 (let ((itemp (org-in-item-p))
7728 (may-split (org-get-alist-option org-M-RET-may-split-line 'headline))
7729 (respect-content (or org-insert-heading-respect-content
7730 (equal arg '(4))))
7731 (initial-content "")
7732 (adjust-empty-lines t))
7734 (cond
7736 ((or (= (buffer-size) 0)
7737 (and (not (save-excursion
7738 (and (ignore-errors (org-back-to-heading invisible-ok))
7739 (org-at-heading-p))))
7740 (or arg (not itemp))))
7741 ;; At beginning of buffer or so high up that only a heading
7742 ;; makes sense.
7743 (cond ((and (bolp) (not respect-content)) (insert "* "))
7744 ((not respect-content)
7745 (unless may-split (end-of-line))
7746 (insert "\n* "))
7747 ((re-search-forward org-outline-regexp-bol nil t)
7748 (beginning-of-line)
7749 (insert "* \n")
7750 (backward-char))
7751 (t (goto-char (point-max))
7752 (insert "\n* ")))
7753 (run-hooks 'org-insert-heading-hook))
7755 ((and itemp (not (member arg '((4) (16)))))
7756 ;; Insert an item
7757 (org-insert-item))
7760 ;; Maybe move at the end of the subtree
7761 (when (equal arg '(16))
7762 (org-up-heading-safe)
7763 (org-end-of-subtree t))
7764 ;; Insert a heading
7765 (save-restriction
7766 (widen)
7767 (let* ((level nil)
7768 (on-heading (org-at-heading-p))
7769 (empty-line-p (if on-heading
7770 (org-previous-line-empty-p)
7771 ;; We will decide later
7772 nil))
7773 ;; Get a level string to fall back on
7774 (fix-level
7775 (if (org-before-first-heading-p) "*"
7776 (save-excursion
7777 (org-back-to-heading t)
7778 (if (org-previous-line-empty-p) (setq empty-line-p t))
7779 (looking-at org-outline-regexp)
7780 (make-string (1- (length (match-string 0))) ?*))))
7781 (stars
7782 (save-excursion
7783 (condition-case nil
7784 (progn
7785 (org-back-to-heading invisible-ok)
7786 (when (and (not on-heading)
7787 (featurep 'org-inlinetask)
7788 (integerp org-inlinetask-min-level)
7789 (>= (length (match-string 0))
7790 org-inlinetask-min-level))
7791 ;; Find a heading level before the inline task
7792 (while (and (setq level (org-up-heading-safe))
7793 (>= level org-inlinetask-min-level)))
7794 (if (org-at-heading-p)
7795 (org-back-to-heading invisible-ok)
7796 (error "This should not happen")))
7797 (unless (and (save-excursion
7798 (save-match-data
7799 (org-backward-heading-same-level
7800 1 invisible-ok))
7801 (= (point) (match-beginning 0)))
7802 (not (org-previous-line-empty-p t)))
7803 (setq empty-line-p (or empty-line-p
7804 (org-previous-line-empty-p))))
7805 (match-string 0))
7806 (error (or fix-level "* ")))))
7807 (blank-a (cdr (assq 'heading org-blank-before-new-entry)))
7808 (blank (if (eq blank-a 'auto) empty-line-p blank-a))
7809 pos hide-previous previous-pos)
7811 ;; If we insert after content, move there and clean up whitespace
7812 (when (and respect-content
7813 (not (org-looking-at-p org-outline-regexp-bol)))
7814 (if (not (org-before-first-heading-p))
7815 (org-end-of-subtree nil t)
7816 (re-search-forward org-outline-regexp-bol)
7817 (beginning-of-line 0))
7818 (skip-chars-backward " \r\n")
7819 (and (not (looking-back "^\\*+"))
7820 (looking-at "[ \t]+") (replace-match ""))
7821 (unless (eobp) (forward-char 1))
7822 (when (looking-at "^\\*")
7823 (unless (bobp) (backward-char 1))
7824 (insert "\n")))
7826 ;; If we are splitting, grab the text that should be moved to the new headline
7827 (when may-split
7828 (if (org-on-heading-p)
7829 ;; This is a heading, we split intelligently (keeping tags)
7830 (let ((pos (point)))
7831 (goto-char (point-at-bol))
7832 (unless (looking-at org-complex-heading-regexp)
7833 (error "This should not happen"))
7834 (when (and (match-beginning 4)
7835 (> pos (match-beginning 4))
7836 (< pos (match-end 4)))
7837 (setq initial-content (buffer-substring pos (match-end 4)))
7838 (goto-char pos)
7839 (delete-region (point) (match-end 4))
7840 (if (looking-at "[ \t]*$")
7841 (replace-match "")
7842 (insert (make-string (length initial-content) ?\ )))
7843 (setq initial-content (org-trim initial-content)))
7844 (goto-char pos))
7845 ;; a normal line
7846 (setq initial-content
7847 (org-trim (buffer-substring (point) (point-at-eol))))
7848 (delete-region (point) (point-at-eol))))
7850 ;; If we are at the beginning of the line, insert before it. Else after
7851 (cond
7852 ((and (bolp) (looking-at "[ \t]*$")))
7853 ((and (bolp) (not (looking-at "[ \t]*$")))
7854 (open-line 1))
7856 (goto-char (point-at-eol))
7857 (insert "\n")))
7859 ;; Insert the new heading
7860 (insert stars)
7861 (just-one-space)
7862 (insert initial-content)
7863 (when adjust-empty-lines
7864 (if (or (not blank)
7865 (and blank (not (org-previous-line-empty-p))))
7866 (org-N-empty-lines-before-current (if blank 1 0))))
7867 (run-hooks 'org-insert-heading-hook)))))))
7869 (defun org-N-empty-lines-before-current (N)
7870 "Make the number of empty lines before current exactly N.
7871 So this will delete or add empty lines."
7872 (save-excursion
7873 (goto-char (point-at-bol))
7874 (if (looking-back "\\s-+" nil 'greedy)
7875 (replace-match ""))
7876 (or (bobp) (insert "\n"))
7877 (while (> N 0)
7878 (insert "\n")
7879 (setq N (1- N)))))
7881 (defun org-get-heading (&optional no-tags no-todo)
7882 "Return the heading of the current entry, without the stars.
7883 When NO-TAGS is non-nil, don't include tags.
7884 When NO-TODO is non-nil, don't include TODO keywords."
7885 (save-excursion
7886 (org-back-to-heading t)
7887 (cond
7888 ((and no-tags no-todo)
7889 (looking-at org-complex-heading-regexp)
7890 (match-string 4))
7891 (no-tags
7892 (looking-at (concat org-outline-regexp
7893 "\\(.*?\\)"
7894 "\\(?:[ \t]+:[[:alnum:]:_@#%]+:\\)?[ \t]*$"))
7895 (match-string 1))
7896 (no-todo
7897 (looking-at org-todo-line-regexp)
7898 (match-string 3))
7899 (t (looking-at org-heading-regexp)
7900 (match-string 2)))))
7902 (defvar orgstruct-mode) ; defined below
7904 (defun org-heading-components ()
7905 "Return the components of the current heading.
7906 This is a list with the following elements:
7907 - the level as an integer
7908 - the reduced level, different if `org-odd-levels-only' is set.
7909 - the TODO keyword, or nil
7910 - the priority character, like ?A, or nil if no priority is given
7911 - the headline text itself, or the tags string if no headline text
7912 - the tags string, or nil."
7913 (save-excursion
7914 (org-back-to-heading t)
7915 (if (let (case-fold-search)
7916 (looking-at
7917 (if orgstruct-mode
7918 org-heading-regexp
7919 org-complex-heading-regexp)))
7920 (if orgstruct-mode
7921 (list (length (match-string 1))
7922 (org-reduced-level (length (match-string 1)))
7925 (match-string 2)
7926 nil)
7927 (list (length (match-string 1))
7928 (org-reduced-level (length (match-string 1)))
7929 (org-match-string-no-properties 2)
7930 (and (match-end 3) (aref (match-string 3) 2))
7931 (org-match-string-no-properties 4)
7932 (org-match-string-no-properties 5))))))
7934 (defun org-get-entry ()
7935 "Get the entry text, after heading, entire subtree."
7936 (save-excursion
7937 (org-back-to-heading t)
7938 (buffer-substring (point-at-bol 2) (org-end-of-subtree t))))
7940 (defun org-insert-heading-after-current ()
7941 "Insert a new heading with same level as current, after current subtree."
7942 (interactive)
7943 (org-back-to-heading)
7944 (org-insert-heading)
7945 (org-move-subtree-down)
7946 (end-of-line 1))
7948 (defun org-insert-heading-respect-content (&optional invisible-ok)
7949 "Insert heading with `org-insert-heading-respect-content' set to t."
7950 (interactive)
7951 (org-insert-heading '(4) invisible-ok))
7953 (defun org-insert-todo-heading-respect-content (&optional force-state)
7954 "Insert TODO heading with `org-insert-heading-respect-content' set to t."
7955 (interactive)
7956 (org-insert-todo-heading force-state '(4)))
7958 (defun org-insert-todo-heading (arg &optional force-heading)
7959 "Insert a new heading with the same level and TODO state as current heading.
7960 If the heading has no TODO state, or if the state is DONE, use the first
7961 state (TODO by default). Also with one prefix arg, force first state. With
7962 two prefix args, force inserting at the end of the parent subtree."
7963 (interactive "P")
7964 (when (or force-heading (not (org-insert-item 'checkbox)))
7965 (org-insert-heading (or (and (equal arg '(16)) '(16))
7966 force-heading))
7967 (save-excursion
7968 (org-back-to-heading)
7969 (outline-previous-heading)
7970 (looking-at org-todo-line-regexp))
7971 (let*
7972 ((new-mark-x
7973 (if (or (equal arg '(4))
7974 (not (match-beginning 2))
7975 (member (match-string 2) org-done-keywords))
7976 (car org-todo-keywords-1)
7977 (match-string 2)))
7978 (new-mark
7980 (run-hook-with-args-until-success
7981 'org-todo-get-default-hook new-mark-x nil)
7982 new-mark-x)))
7983 (beginning-of-line 1)
7984 (and (looking-at org-outline-regexp) (goto-char (match-end 0))
7985 (if org-treat-insert-todo-heading-as-state-change
7986 (org-todo new-mark)
7987 (insert new-mark " "))))
7988 (when org-provide-todo-statistics
7989 (org-update-parent-todo-statistics))))
7991 (defun org-insert-subheading (arg)
7992 "Insert a new subheading and demote it.
7993 Works for outline headings and for plain lists alike."
7994 (interactive "P")
7995 (org-insert-heading arg)
7996 (cond
7997 ((org-at-heading-p) (org-do-demote))
7998 ((org-at-item-p) (org-indent-item))))
8000 (defun org-insert-todo-subheading (arg)
8001 "Insert a new subheading with TODO keyword or checkbox and demote it.
8002 Works for outline headings and for plain lists alike."
8003 (interactive "P")
8004 (org-insert-todo-heading arg)
8005 (cond
8006 ((org-at-heading-p) (org-do-demote))
8007 ((org-at-item-p) (org-indent-item))))
8009 ;;; Promotion and Demotion
8011 (defvar org-after-demote-entry-hook nil
8012 "Hook run after an entry has been demoted.
8013 The cursor will be at the beginning of the entry.
8014 When a subtree is being demoted, the hook will be called for each node.")
8016 (defvar org-after-promote-entry-hook nil
8017 "Hook run after an entry has been promoted.
8018 The cursor will be at the beginning of the entry.
8019 When a subtree is being promoted, the hook will be called for each node.")
8021 (defun org-promote-subtree ()
8022 "Promote the entire subtree.
8023 See also `org-promote'."
8024 (interactive)
8025 (save-excursion
8026 (org-with-limited-levels (org-map-tree 'org-promote)))
8027 (org-fix-position-after-promote))
8029 (defun org-demote-subtree ()
8030 "Demote the entire subtree. See `org-demote'.
8031 See also `org-promote'."
8032 (interactive)
8033 (save-excursion
8034 (org-with-limited-levels (org-map-tree 'org-demote)))
8035 (org-fix-position-after-promote))
8038 (defun org-do-promote ()
8039 "Promote the current heading higher up the tree.
8040 If the region is active in `transient-mark-mode', promote all headings
8041 in the region."
8042 (interactive)
8043 (save-excursion
8044 (if (org-region-active-p)
8045 (org-map-region 'org-promote (region-beginning) (region-end))
8046 (org-promote)))
8047 (org-fix-position-after-promote))
8049 (defun org-do-demote ()
8050 "Demote the current heading lower down the tree.
8051 If the region is active in `transient-mark-mode', demote all headings
8052 in the region."
8053 (interactive)
8054 (save-excursion
8055 (if (org-region-active-p)
8056 (org-map-region 'org-demote (region-beginning) (region-end))
8057 (org-demote)))
8058 (org-fix-position-after-promote))
8060 (defun org-fix-position-after-promote ()
8061 "Make sure that after pro/demotion cursor position is right."
8062 (let ((pos (point)))
8063 (when (save-excursion
8064 (beginning-of-line 1)
8065 (looking-at org-todo-line-regexp)
8066 (or (equal pos (match-end 1)) (equal pos (match-end 2))))
8067 (cond ((eobp) (insert " "))
8068 ((eolp) (insert " "))
8069 ((equal (char-after) ?\ ) (forward-char 1))))))
8071 (defun org-current-level ()
8072 "Return the level of the current entry, or nil if before the first headline.
8073 The level is the number of stars at the beginning of the headline."
8074 (save-excursion
8075 (org-with-limited-levels
8076 (if (ignore-errors (org-back-to-heading t))
8077 (funcall outline-level)))))
8079 (defun org-get-previous-line-level ()
8080 "Return the outline depth of the last headline before the current line.
8081 Returns 0 for the first headline in the buffer, and nil if before the
8082 first headline."
8083 (and (org-current-level)
8084 (or (and (/= (line-beginning-position) (point-min))
8085 (save-excursion (beginning-of-line 0) (org-current-level)))
8086 0)))
8088 (defun org-reduced-level (l)
8089 "Compute the effective level of a heading.
8090 This takes into account the setting of `org-odd-levels-only'."
8091 (cond
8092 ((zerop l) 0)
8093 (org-odd-levels-only (1+ (floor (/ l 2))))
8094 (t l)))
8096 (defun org-level-increment ()
8097 "Return the number of stars that will be added or removed at a
8098 time to headlines when structure editing, based on the value of
8099 `org-odd-levels-only'."
8100 (if org-odd-levels-only 2 1))
8102 (defun org-get-valid-level (level &optional change)
8103 "Rectify a level change under the influence of `org-odd-levels-only'
8104 LEVEL is a current level, CHANGE is by how much the level should be
8105 modified. Even if CHANGE is nil, LEVEL may be returned modified because
8106 even level numbers will become the next higher odd number."
8107 (if org-odd-levels-only
8108 (cond ((or (not change) (= 0 change)) (1+ (* 2 (/ level 2))))
8109 ((> change 0) (1+ (* 2 (/ (+ level (* 2 change)) 2))))
8110 ((< change 0) (max 1 (1+ (* 2 (/ (+ level (* 2 change)) 2))))))
8111 (max 1 (+ level (or change 0)))))
8113 (if (boundp 'define-obsolete-function-alias)
8114 (if (or (featurep 'xemacs) (< emacs-major-version 23))
8115 (define-obsolete-function-alias 'org-get-legal-level
8116 'org-get-valid-level)
8117 (define-obsolete-function-alias 'org-get-legal-level
8118 'org-get-valid-level "23.1")))
8120 (defun org-promote ()
8121 "Promote the current heading higher up the tree.
8122 If the region is active in `transient-mark-mode', promote all headings
8123 in the region."
8124 (org-back-to-heading t)
8125 (let* ((level (save-match-data (funcall outline-level)))
8126 (after-change-functions (remove 'flyspell-after-change-function
8127 after-change-functions))
8128 (up-head (concat (make-string (org-get-valid-level level -1) ?*) " "))
8129 (diff (abs (- level (length up-head) -1))))
8130 (cond ((and (= level 1) org-called-with-limited-levels
8131 org-allow-promoting-top-level-subtree)
8132 (replace-match "# " nil t))
8133 ((= level 1)
8134 (user-error "Cannot promote to level 0. UNDO to recover if necessary"))
8135 (t (replace-match up-head nil t)))
8136 ;; Fixup tag positioning
8137 (unless (= level 1)
8138 (and org-auto-align-tags (org-set-tags nil 'ignore-column))
8139 (if org-adapt-indentation (org-fixup-indentation (- diff))))
8140 (run-hooks 'org-after-promote-entry-hook)))
8142 (defun org-demote ()
8143 "Demote the current heading lower down the tree.
8144 If the region is active in `transient-mark-mode', demote all headings
8145 in the region."
8146 (org-back-to-heading t)
8147 (let* ((level (save-match-data (funcall outline-level)))
8148 (after-change-functions (remove 'flyspell-after-change-function
8149 after-change-functions))
8150 (down-head (concat (make-string (org-get-valid-level level 1) ?*) " "))
8151 (diff (abs (- level (length down-head) -1))))
8152 (replace-match down-head nil t)
8153 ;; Fixup tag positioning
8154 (and org-auto-align-tags (org-set-tags nil 'ignore-column))
8155 (if org-adapt-indentation (org-fixup-indentation diff))
8156 (run-hooks 'org-after-demote-entry-hook)))
8158 (defun org-cycle-level ()
8159 "Cycle the level of an empty headline through possible states.
8160 This goes first to child, then to parent, level, then up the hierarchy.
8161 After top level, it switches back to sibling level."
8162 (interactive)
8163 (let ((org-adapt-indentation nil))
8164 (when (org-point-at-end-of-empty-headline)
8165 (setq this-command 'org-cycle-level) ; Only needed for caching
8166 (let ((cur-level (org-current-level))
8167 (prev-level (org-get-previous-line-level)))
8168 (cond
8169 ;; If first headline in file, promote to top-level.
8170 ((= prev-level 0)
8171 (loop repeat (/ (- cur-level 1) (org-level-increment))
8172 do (org-do-promote)))
8173 ;; If same level as prev, demote one.
8174 ((= prev-level cur-level)
8175 (org-do-demote))
8176 ;; If parent is top-level, promote to top level if not already.
8177 ((= prev-level 1)
8178 (loop repeat (/ (- cur-level 1) (org-level-increment))
8179 do (org-do-promote)))
8180 ;; If top-level, return to prev-level.
8181 ((= cur-level 1)
8182 (loop repeat (/ (- prev-level 1) (org-level-increment))
8183 do (org-do-demote)))
8184 ;; If less than prev-level, promote one.
8185 ((< cur-level prev-level)
8186 (org-do-promote))
8187 ;; If deeper than prev-level, promote until higher than
8188 ;; prev-level.
8189 ((> cur-level prev-level)
8190 (loop repeat (+ 1 (/ (- cur-level prev-level) (org-level-increment)))
8191 do (org-do-promote))))
8192 t))))
8194 (defun org-map-tree (fun)
8195 "Call FUN for every heading underneath the current one."
8196 (org-back-to-heading)
8197 (let ((level (funcall outline-level)))
8198 (save-excursion
8199 (funcall fun)
8200 (while (and (progn
8201 (outline-next-heading)
8202 (> (funcall outline-level) level))
8203 (not (eobp)))
8204 (funcall fun)))))
8206 (defun org-map-region (fun beg end)
8207 "Call FUN for every heading between BEG and END."
8208 (let ((org-ignore-region t))
8209 (save-excursion
8210 (setq end (copy-marker end))
8211 (goto-char beg)
8212 (if (and (re-search-forward org-outline-regexp-bol nil t)
8213 (< (point) end))
8214 (funcall fun))
8215 (while (and (progn
8216 (outline-next-heading)
8217 (< (point) end))
8218 (not (eobp)))
8219 (funcall fun)))))
8221 (defvar org-property-end-re) ; silence byte-compiler
8222 (defun org-fixup-indentation (diff)
8223 "Change the indentation in the current entry by DIFF.
8224 However, if any line in the current entry has no indentation, or if it
8225 would end up with no indentation after the change, nothing at all is done."
8226 (save-excursion
8227 (let ((end (save-excursion (outline-next-heading)
8228 (point-marker)))
8229 (prohibit (if (> diff 0)
8230 "^\\S-"
8231 (concat "^ \\{0," (int-to-string (- diff)) "\\}\\S-")))
8232 col)
8233 (unless (save-excursion (end-of-line 1)
8234 (re-search-forward prohibit end t))
8235 (while (and (< (point) end)
8236 (re-search-forward "^[ \t]+" end t))
8237 (goto-char (match-end 0))
8238 (setq col (current-column))
8239 (if (< diff 0) (replace-match ""))
8240 (org-indent-to-column (+ diff col))))
8241 (move-marker end nil))))
8243 (defun org-convert-to-odd-levels ()
8244 "Convert an org-mode file with all levels allowed to one with odd levels.
8245 This will leave level 1 alone, convert level 2 to level 3, level 3 to
8246 level 5 etc."
8247 (interactive)
8248 (when (yes-or-no-p "Are you sure you want to globally change levels to odd? ")
8249 (let ((outline-level 'org-outline-level)
8250 (org-odd-levels-only nil) n)
8251 (save-excursion
8252 (goto-char (point-min))
8253 (while (re-search-forward "^\\*\\*+ " nil t)
8254 (setq n (- (length (match-string 0)) 2))
8255 (while (>= (setq n (1- n)) 0)
8256 (org-demote))
8257 (end-of-line 1))))))
8259 (defun org-convert-to-oddeven-levels ()
8260 "Convert an org-mode file with only odd levels to one with odd/even levels.
8261 This promotes level 3 to level 2, level 5 to level 3 etc. If the
8262 file contains a section with an even level, conversion would
8263 destroy the structure of the file. An error is signaled in this
8264 case."
8265 (interactive)
8266 (goto-char (point-min))
8267 ;; First check if there are no even levels
8268 (when (re-search-forward "^\\(\\*\\*\\)+ " nil t)
8269 (org-show-context t)
8270 (error "Not all levels are odd in this file. Conversion not possible"))
8271 (when (yes-or-no-p "Are you sure you want to globally change levels to odd-even? ")
8272 (let ((outline-regexp org-outline-regexp)
8273 (outline-level 'org-outline-level)
8274 (org-odd-levels-only nil) n)
8275 (save-excursion
8276 (goto-char (point-min))
8277 (while (re-search-forward "^\\*\\*+ " nil t)
8278 (setq n (/ (1- (length (match-string 0))) 2))
8279 (while (>= (setq n (1- n)) 0)
8280 (org-promote))
8281 (end-of-line 1))))))
8283 (defun org-tr-level (n)
8284 "Make N odd if required."
8285 (if org-odd-levels-only (1+ (/ n 2)) n))
8287 ;;; Vertical tree motion, cutting and pasting of subtrees
8289 (defun org-move-subtree-up (&optional arg)
8290 "Move the current subtree up past ARG headlines of the same level."
8291 (interactive "p")
8292 (org-move-subtree-down (- (prefix-numeric-value arg))))
8294 (defun org-move-subtree-down (&optional arg)
8295 "Move the current subtree down past ARG headlines of the same level."
8296 (interactive "p")
8297 (setq arg (prefix-numeric-value arg))
8298 (let ((movfunc (if (> arg 0) 'org-get-next-sibling
8299 'org-get-last-sibling))
8300 (ins-point (make-marker))
8301 (cnt (abs arg))
8302 (col (current-column))
8303 beg beg0 end txt folded ne-beg ne-end ne-ins ins-end)
8304 ;; Select the tree
8305 (org-back-to-heading)
8306 (setq beg0 (point))
8307 (save-excursion
8308 (setq ne-beg (org-back-over-empty-lines))
8309 (setq beg (point)))
8310 (save-match-data
8311 (save-excursion (outline-end-of-heading)
8312 (setq folded (outline-invisible-p)))
8313 (progn (org-end-of-subtree nil t)
8314 (unless (eobp) (backward-char))))
8315 (outline-next-heading)
8316 (setq ne-end (org-back-over-empty-lines))
8317 (setq end (point))
8318 (goto-char beg0)
8319 (when (and (> arg 0) (org-first-sibling-p) (< ne-end ne-beg))
8320 ;; include less whitespace
8321 (save-excursion
8322 (goto-char beg)
8323 (forward-line (- ne-beg ne-end))
8324 (setq beg (point))))
8325 ;; Find insertion point, with error handling
8326 (while (> cnt 0)
8327 (or (and (funcall movfunc) (looking-at org-outline-regexp))
8328 (progn (goto-char beg0)
8329 (user-error "Cannot move past superior level or buffer limit")))
8330 (setq cnt (1- cnt)))
8331 (if (> arg 0)
8332 ;; Moving forward - still need to move over subtree
8333 (progn (org-end-of-subtree t t)
8334 (save-excursion
8335 (org-back-over-empty-lines)
8336 (or (bolp) (newline)))))
8337 (setq ne-ins (org-back-over-empty-lines))
8338 (move-marker ins-point (point))
8339 (setq txt (buffer-substring beg end))
8340 (org-save-markers-in-region beg end)
8341 (delete-region beg end)
8342 (org-remove-empty-overlays-at beg)
8343 (or (= beg (point-min)) (outline-flag-region (1- beg) beg nil))
8344 (or (bobp) (outline-flag-region (1- (point)) (point) nil))
8345 (and (not (bolp)) (looking-at "\n") (forward-char 1))
8346 (let ((bbb (point)))
8347 (insert-before-markers txt)
8348 (org-reinstall-markers-in-region bbb)
8349 (move-marker ins-point bbb))
8350 (or (bolp) (insert "\n"))
8351 (setq ins-end (point))
8352 (goto-char ins-point)
8353 (org-skip-whitespace)
8354 (when (and (< arg 0)
8355 (org-first-sibling-p)
8356 (> ne-ins ne-beg))
8357 ;; Move whitespace back to beginning
8358 (save-excursion
8359 (goto-char ins-end)
8360 (let ((kill-whole-line t))
8361 (kill-line (- ne-ins ne-beg)) (point)))
8362 (insert (make-string (- ne-ins ne-beg) ?\n)))
8363 (move-marker ins-point nil)
8364 (if folded
8365 (hide-subtree)
8366 (org-show-entry)
8367 (show-children)
8368 (org-cycle-hide-drawers 'children))
8369 (org-clean-visibility-after-subtree-move)
8370 ;; move back to the initial column we were at
8371 (move-to-column col)))
8373 (defvar org-subtree-clip ""
8374 "Clipboard for cut and paste of subtrees.
8375 This is actually only a copy of the kill, because we use the normal kill
8376 ring. We need it to check if the kill was created by `org-copy-subtree'.")
8378 (defvar org-subtree-clip-folded nil
8379 "Was the last copied subtree folded?
8380 This is used to fold the tree back after pasting.")
8382 (defun org-cut-subtree (&optional n)
8383 "Cut the current subtree into the clipboard.
8384 With prefix arg N, cut this many sequential subtrees.
8385 This is a short-hand for marking the subtree and then cutting it."
8386 (interactive "p")
8387 (org-copy-subtree n 'cut))
8389 (defun org-copy-subtree (&optional n cut force-store-markers nosubtrees)
8390 "Copy the current subtree it in the clipboard.
8391 With prefix arg N, copy this many sequential subtrees.
8392 This is a short-hand for marking the subtree and then copying it.
8393 If CUT is non-nil, actually cut the subtree.
8394 If FORCE-STORE-MARKERS is non-nil, store the relative locations
8395 of some markers in the region, even if CUT is non-nil. This is
8396 useful if the caller implements cut-and-paste as copy-then-paste-then-cut."
8397 (interactive "p")
8398 (let (beg end folded (beg0 (point)))
8399 (if (org-called-interactively-p 'any)
8400 (org-back-to-heading nil) ; take what looks like a subtree
8401 (org-back-to-heading t)) ; take what is really there
8402 (setq beg (point))
8403 (skip-chars-forward " \t\r\n")
8404 (save-match-data
8405 (if nosubtrees
8406 (outline-next-heading)
8407 (save-excursion (outline-end-of-heading)
8408 (setq folded (outline-invisible-p)))
8409 (ignore-errors (org-forward-heading-same-level (1- n) t))
8410 (org-end-of-subtree t t)))
8411 (setq end (point))
8412 (goto-char beg0)
8413 (when (> end beg)
8414 (setq org-subtree-clip-folded folded)
8415 (when (or cut force-store-markers)
8416 (org-save-markers-in-region beg end))
8417 (if cut (kill-region beg end) (copy-region-as-kill beg end))
8418 (setq org-subtree-clip (current-kill 0))
8419 (message "%s: Subtree(s) with %d characters"
8420 (if cut "Cut" "Copied")
8421 (length org-subtree-clip)))))
8423 (defun org-paste-subtree (&optional level tree for-yank)
8424 "Paste the clipboard as a subtree, with modification of headline level.
8425 The entire subtree is promoted or demoted in order to match a new headline
8426 level.
8428 If the cursor is at the beginning of a headline, the same level as
8429 that headline is used to paste the tree.
8431 If not, the new level is derived from the *visible* headings
8432 before and after the insertion point, and taken to be the inferior headline
8433 level of the two. So if the previous visible heading is level 3 and the
8434 next is level 4 (or vice versa), level 4 will be used for insertion.
8435 This makes sure that the subtree remains an independent subtree and does
8436 not swallow low level entries.
8438 You can also force a different level, either by using a numeric prefix
8439 argument, or by inserting the heading marker by hand. For example, if the
8440 cursor is after \"*****\", then the tree will be shifted to level 5.
8442 If optional TREE is given, use this text instead of the kill ring.
8444 When FOR-YANK is set, this is called by `org-yank'. In this case, do not
8445 move back over whitespace before inserting, and move point to the end of
8446 the inserted text when done."
8447 (interactive "P")
8448 (setq tree (or tree (and kill-ring (current-kill 0))))
8449 (unless (org-kill-is-subtree-p tree)
8450 (user-error "%s"
8451 (substitute-command-keys
8452 "The kill is not a (set of) tree(s) - please use \\[yank] to yank anyway")))
8453 (org-with-limited-levels
8454 (let* ((visp (not (outline-invisible-p)))
8455 (txt tree)
8456 (^re_ "\\(\\*+\\)[ \t]*")
8457 (old-level (if (string-match org-outline-regexp-bol txt)
8458 (- (match-end 0) (match-beginning 0) 1)
8459 -1))
8460 (force-level (cond (level (prefix-numeric-value level))
8461 ((and (looking-at "[ \t]*$")
8462 (string-match
8463 "^\\*+$" (buffer-substring
8464 (point-at-bol) (point))))
8465 (- (match-end 1) (match-beginning 1)))
8466 ((and (bolp)
8467 (looking-at org-outline-regexp))
8468 (- (match-end 0) (point) 1))))
8469 (previous-level (save-excursion
8470 (condition-case nil
8471 (progn
8472 (outline-previous-visible-heading 1)
8473 (if (looking-at ^re_)
8474 (- (match-end 0) (match-beginning 0) 1)
8476 (error 1))))
8477 (next-level (save-excursion
8478 (condition-case nil
8479 (progn
8480 (or (looking-at org-outline-regexp)
8481 (outline-next-visible-heading 1))
8482 (if (looking-at ^re_)
8483 (- (match-end 0) (match-beginning 0) 1)
8485 (error 1))))
8486 (new-level (or force-level (max previous-level next-level)))
8487 (shift (if (or (= old-level -1)
8488 (= new-level -1)
8489 (= old-level new-level))
8491 (- new-level old-level)))
8492 (delta (if (> shift 0) -1 1))
8493 (func (if (> shift 0) 'org-demote 'org-promote))
8494 (org-odd-levels-only nil)
8495 beg end newend)
8496 ;; Remove the forced level indicator
8497 (if force-level
8498 (delete-region (point-at-bol) (point)))
8499 ;; Paste
8500 (beginning-of-line (if (bolp) 1 2))
8501 (setq beg (point))
8502 (and (fboundp 'org-id-paste-tracker) (org-id-paste-tracker txt))
8503 (insert-before-markers txt)
8504 (unless (string-match "\n\\'" txt) (insert "\n"))
8505 (setq newend (point))
8506 (org-reinstall-markers-in-region beg)
8507 (setq end (point))
8508 (goto-char beg)
8509 (skip-chars-forward " \t\n\r")
8510 (setq beg (point))
8511 (if (and (outline-invisible-p) visp)
8512 (save-excursion (outline-show-heading)))
8513 ;; Shift if necessary
8514 (unless (= shift 0)
8515 (save-restriction
8516 (narrow-to-region beg end)
8517 (while (not (= shift 0))
8518 (org-map-region func (point-min) (point-max))
8519 (setq shift (+ delta shift)))
8520 (goto-char (point-min))
8521 (setq newend (point-max))))
8522 (when (or (org-called-interactively-p 'interactive) for-yank)
8523 (message "Clipboard pasted as level %d subtree" new-level))
8524 (if (and (not for-yank) ; in this case, org-yank will decide about folding
8525 kill-ring
8526 (eq org-subtree-clip (current-kill 0))
8527 org-subtree-clip-folded)
8528 ;; The tree was folded before it was killed/copied
8529 (hide-subtree))
8530 (and for-yank (goto-char newend)))))
8532 (defun org-kill-is-subtree-p (&optional txt)
8533 "Check if the current kill is an outline subtree, or a set of trees.
8534 Returns nil if kill does not start with a headline, or if the first
8535 headline level is not the largest headline level in the tree.
8536 So this will actually accept several entries of equal levels as well,
8537 which is OK for `org-paste-subtree'.
8538 If optional TXT is given, check this string instead of the current kill."
8539 (let* ((kill (or txt (and kill-ring (current-kill 0)) ""))
8540 (re (org-get-limited-outline-regexp))
8541 (^re (concat "^" re))
8542 (start-level (and kill
8543 (string-match
8544 (concat "\\`\\([ \t\n\r]*?\n\\)?\\(" re "\\)")
8545 kill)
8546 (- (match-end 2) (match-beginning 2) 1)))
8547 (start (1+ (or (match-beginning 2) -1))))
8548 (if (not start-level)
8549 (progn
8550 nil) ;; does not even start with a heading
8551 (catch 'exit
8552 (while (setq start (string-match ^re kill (1+ start)))
8553 (when (< (- (match-end 0) (match-beginning 0) 1) start-level)
8554 (throw 'exit nil)))
8555 t))))
8557 (defvar org-markers-to-move nil
8558 "Markers that should be moved with a cut-and-paste operation.
8559 Those markers are stored together with their positions relative to
8560 the start of the region.")
8562 (defun org-save-markers-in-region (beg end)
8563 "Check markers in region.
8564 If these markers are between BEG and END, record their position relative
8565 to BEG, so that after moving the block of text, we can put the markers back
8566 into place.
8567 This function gets called just before an entry or tree gets cut from the
8568 buffer. After re-insertion, `org-reinstall-markers-in-region' must be
8569 called immediately, to move the markers with the entries."
8570 (setq org-markers-to-move nil)
8571 (when (featurep 'org-clock)
8572 (org-clock-save-markers-for-cut-and-paste beg end))
8573 (when (featurep 'org-agenda)
8574 (org-agenda-save-markers-for-cut-and-paste beg end)))
8576 (defun org-check-and-save-marker (marker beg end)
8577 "Check if MARKER is between BEG and END.
8578 If yes, remember the marker and the distance to BEG."
8579 (when (and (marker-buffer marker)
8580 (equal (marker-buffer marker) (current-buffer)))
8581 (if (and (>= marker beg) (< marker end))
8582 (push (cons marker (- marker beg)) org-markers-to-move))))
8584 (defun org-reinstall-markers-in-region (beg)
8585 "Move all remembered markers to their position relative to BEG."
8586 (mapc (lambda (x)
8587 (move-marker (car x) (+ beg (cdr x))))
8588 org-markers-to-move)
8589 (setq org-markers-to-move nil))
8591 (defun org-narrow-to-subtree ()
8592 "Narrow buffer to the current subtree."
8593 (interactive)
8594 (save-excursion
8595 (save-match-data
8596 (org-with-limited-levels
8597 (narrow-to-region
8598 (progn (org-back-to-heading t) (point))
8599 (progn (org-end-of-subtree t t)
8600 (if (and (org-at-heading-p) (not (eobp))) (backward-char 1))
8601 (point)))))))
8603 (defun org-narrow-to-block ()
8604 "Narrow buffer to the current block."
8605 (interactive)
8606 (let* ((case-fold-search t)
8607 (blockp (org-between-regexps-p "^[ \t]*#\\+begin_.*"
8608 "^[ \t]*#\\+end_.*")))
8609 (if blockp
8610 (narrow-to-region (car blockp) (cdr blockp))
8611 (user-error "Not in a block"))))
8613 (eval-when-compile
8614 (defvar org-property-drawer-re))
8616 (defvar org-property-start-re) ;; defined below
8617 (defun org-clone-subtree-with-time-shift (n &optional shift)
8618 "Clone the task (subtree) at point N times.
8619 The clones will be inserted as siblings.
8621 In interactive use, the user will be prompted for the number of
8622 clones to be produced. If the entry has a timestamp, the user
8623 will also be prompted for a time shift, which may be a repeater
8624 as used in time stamps, for example `+3d'. To disable this,
8625 you can call the function with a universal prefix argument.
8627 When a valid repeater is given and the entry contains any time
8628 stamps, the clones will become a sequence in time, with time
8629 stamps in the subtree shifted for each clone produced. If SHIFT
8630 is nil or the empty string, time stamps will be left alone. The
8631 ID property of the original subtree is removed.
8633 If the original subtree did contain time stamps with a repeater,
8634 the following will happen:
8635 - the repeater will be removed in each clone
8636 - an additional clone will be produced, with the current, unshifted
8637 date(s) in the entry.
8638 - the original entry will be placed *after* all the clones, with
8639 repeater intact.
8640 - the start days in the repeater in the original entry will be shifted
8641 to past the last clone.
8642 In this way you can spell out a number of instances of a repeating task,
8643 and still retain the repeater to cover future instances of the task."
8644 (interactive "nNumber of clones to produce: ")
8645 (let ((shift
8646 (or shift
8647 (if (and (not (equal current-prefix-arg '(4)))
8648 (save-excursion
8649 (re-search-forward org-ts-regexp-both
8650 (save-excursion
8651 (org-end-of-subtree t)
8652 (point)) t)))
8653 (read-from-minibuffer
8654 "Date shift per clone (e.g. +1w, empty to copy unchanged): ")
8655 ""))) ;; No time shift
8656 (n-no-remove -1)
8657 (drawer-re org-drawer-regexp)
8658 beg end template task idprop
8659 shift-n shift-what doshift nmin nmax)
8660 (if (not (and (integerp n) (> n 0)))
8661 (user-error "Invalid number of replications %s" n))
8662 (if (and (setq doshift (and (stringp shift) (string-match "\\S-" shift)))
8663 (not (string-match "\\`[ \t]*\\+?\\([0-9]+\\)\\([hdwmy]\\)[ \t]*\\'"
8664 shift)))
8665 (user-error "Invalid shift specification %s" shift))
8666 (when doshift
8667 (setq shift-n (string-to-number (match-string 1 shift))
8668 shift-what (cdr (assoc (match-string 2 shift)
8669 '(("d" . day) ("w" . week)
8670 ("m" . month) ("y" . year))))))
8671 (if (eq shift-what 'week) (setq shift-n (* 7 shift-n) shift-what 'day))
8672 (setq nmin 1 nmax n)
8673 (org-back-to-heading t)
8674 (setq beg (point))
8675 (setq idprop (org-entry-get nil "ID"))
8676 (org-end-of-subtree t t)
8677 (or (bolp) (insert "\n"))
8678 (setq end (point))
8679 (setq template (buffer-substring beg end))
8680 (when (and doshift
8681 (string-match "<[^<>\n]+ [.+]?\\+[0-9]+[hdwmy][^<>\n]*>" template))
8682 (delete-region beg end)
8683 (setq end beg)
8684 (setq nmin 0 nmax (1+ nmax) n-no-remove nmax))
8685 (goto-char end)
8686 (loop for n from nmin to nmax do
8687 ;; prepare clone
8688 (with-temp-buffer
8689 (insert template)
8690 (org-mode)
8691 (goto-char (point-min))
8692 (org-show-subtree)
8693 (and idprop (if org-clone-delete-id
8694 (org-entry-delete nil "ID")
8695 (org-id-get-create t)))
8696 (unless (= n 0)
8697 (while (re-search-forward "^[ \t]*CLOCK:.*$" nil t)
8698 (kill-whole-line))
8699 (goto-char (point-min))
8700 (while (re-search-forward drawer-re nil t)
8701 (org-remove-empty-drawer-at (point))))
8702 (goto-char (point-min))
8703 (when doshift
8704 (while (re-search-forward org-ts-regexp-both nil t)
8705 (org-timestamp-change (* n shift-n) shift-what))
8706 (unless (= n n-no-remove)
8707 (goto-char (point-min))
8708 (while (re-search-forward org-ts-regexp nil t)
8709 (save-excursion
8710 (goto-char (match-beginning 0))
8711 (if (looking-at "<[^<>\n]+\\( +[.+]?\\+[0-9]+[hdwmy]\\)")
8712 (delete-region (match-beginning 1) (match-end 1)))))))
8713 (setq task (buffer-string)))
8714 (insert task))
8715 (goto-char beg)))
8717 ;;; Outline Sorting
8719 (defun org-sort (with-case)
8720 "Call `org-sort-entries', `org-table-sort-lines' or `org-sort-list'.
8721 Optional argument WITH-CASE means sort case-sensitively."
8722 (interactive "P")
8723 (cond
8724 ((org-at-table-p) (org-call-with-arg 'org-table-sort-lines with-case))
8725 ((org-at-item-p) (org-call-with-arg 'org-sort-list with-case))
8727 (org-call-with-arg 'org-sort-entries with-case))))
8729 (defun org-sort-remove-invisible (s)
8730 "Remove invisible links from string S."
8731 (remove-text-properties 0 (length s) org-rm-props s)
8732 (while (string-match org-bracket-link-regexp s)
8733 (setq s (replace-match (if (match-end 2)
8734 (match-string 3 s)
8735 (match-string 1 s)) t t s)))
8736 (let ((st (format " %s " s)))
8737 (while (string-match org-emph-re st)
8738 (setq st (replace-match (format " %s " (match-string 4 st)) t t st)))
8739 (setq s (substring st 1 -1)))
8742 (defvar org-priority-regexp) ; defined later in the file
8744 (defvar org-after-sorting-entries-or-items-hook nil
8745 "Hook that is run after a bunch of entries or items have been sorted.
8746 When children are sorted, the cursor is in the parent line when this
8747 hook gets called. When a region or a plain list is sorted, the cursor
8748 will be in the first entry of the sorted region/list.")
8750 (defun org-sort-entries
8751 (&optional with-case sorting-type getkey-func compare-func property)
8752 "Sort entries on a certain level of an outline tree.
8753 If there is an active region, the entries in the region are sorted.
8754 Else, if the cursor is before the first entry, sort the top-level items.
8755 Else, the children of the entry at point are sorted.
8757 Sorting can be alphabetically, numerically, by date/time as given by
8758 a time stamp, by a property, by priority order, or by a custom function.
8760 The command prompts for the sorting type unless it has been given to the
8761 function through the SORTING-TYPE argument, which needs to be a character,
8762 \(?n ?N ?a ?A ?t ?T ?s ?S ?d ?D ?p ?P ?o ?O ?r ?R ?f ?F ?k ?K). Here is
8763 the precise meaning of each character:
8765 a Alphabetically, ignoring the TODO keyword and the priority, if any.
8766 c By creation time, which is assumed to be the first inactive time stamp
8767 at the beginning of a line.
8768 d By deadline date/time.
8769 k By clocking time.
8770 n Numerically, by converting the beginning of the entry/item to a number.
8771 o By order of TODO keywords.
8772 p By priority according to the cookie.
8773 r By the value of a property.
8774 s By scheduled date/time.
8775 t By date/time, either the first active time stamp in the entry, or, if
8776 none exist, by the first inactive one.
8778 Capital letters will reverse the sort order.
8780 If the SORTING-TYPE is ?f or ?F, then GETKEY-FUNC specifies a function to be
8781 called with point at the beginning of the record. It must return either
8782 a string or a number that should serve as the sorting key for that record.
8784 Comparing entries ignores case by default. However, with an optional argument
8785 WITH-CASE, the sorting considers case as well.
8787 Sorting is done against the visible part of the headlines, it ignores hidden
8788 links.
8790 When sorting is done, call `org-after-sorting-entries-or-items-hook'."
8791 (interactive "P")
8792 (let ((case-func (if with-case 'identity 'downcase))
8793 (cmstr
8794 ;; The clock marker is lost when using `sort-subr', let's
8795 ;; store the clocking string.
8796 (when (equal (marker-buffer org-clock-marker) (current-buffer))
8797 (save-excursion
8798 (goto-char org-clock-marker)
8799 (looking-back "^.*") (match-string-no-properties 0))))
8800 start beg end stars re re2
8801 txt what tmp)
8802 ;; Find beginning and end of region to sort
8803 (cond
8804 ((org-region-active-p)
8805 ;; we will sort the region
8806 (setq end (region-end)
8807 what "region")
8808 (goto-char (region-beginning))
8809 (if (not (org-at-heading-p)) (outline-next-heading))
8810 (setq start (point)))
8811 ((or (org-at-heading-p)
8812 (ignore-errors (progn (org-back-to-heading) t)))
8813 ;; we will sort the children of the current headline
8814 (org-back-to-heading)
8815 (setq start (point)
8816 end (progn (org-end-of-subtree t t)
8817 (or (bolp) (insert "\n"))
8818 (when (>= (org-back-over-empty-lines) 1)
8819 (forward-line 1))
8820 (point))
8821 what "children")
8822 (goto-char start)
8823 (show-subtree)
8824 (outline-next-heading))
8826 ;; we will sort the top-level entries in this file
8827 (goto-char (point-min))
8828 (or (org-at-heading-p) (outline-next-heading))
8829 (setq start (point))
8830 (goto-char (point-max))
8831 (beginning-of-line 1)
8832 (when (looking-at ".*?\\S-")
8833 ;; File ends in a non-white line
8834 (end-of-line 1)
8835 (insert "\n"))
8836 (setq end (point-max))
8837 (setq what "top-level")
8838 (goto-char start)
8839 (show-all)))
8841 (setq beg (point))
8842 (when (>= beg end) (goto-char start) (user-error "Nothing to sort"))
8844 (looking-at "\\(\\*+\\)")
8845 (setq stars (match-string 1)
8846 re (concat "^" (regexp-quote stars) " +")
8847 re2 (concat "^" (regexp-quote (substring stars 0 -1)) "[ \t\n]")
8848 txt (buffer-substring beg end))
8849 (if (not (equal (substring txt -1) "\n")) (setq txt (concat txt "\n")))
8850 (if (and (not (equal stars "*")) (string-match re2 txt))
8851 (user-error "Region to sort contains a level above the first entry"))
8853 (unless sorting-type
8854 (message
8855 "Sort %s: [a]lpha [n]umeric [p]riority p[r]operty todo[o]rder [f]unc
8856 [t]ime [s]cheduled [d]eadline [c]reated cloc[k]ing
8857 A/N/P/R/O/F/T/S/D/C/K means reversed:"
8858 what)
8859 (setq sorting-type (read-char-exclusive))
8861 (unless getkey-func
8862 (and (= (downcase sorting-type) ?f)
8863 (setq getkey-func
8864 (org-icompleting-read "Sort using function: "
8865 obarray 'fboundp t nil nil))
8866 (setq getkey-func (intern getkey-func))))
8868 (and (= (downcase sorting-type) ?r)
8869 (not property)
8870 (setq property
8871 (org-icompleting-read "Property: "
8872 (mapcar 'list (org-buffer-property-keys t))
8873 nil t))))
8875 (when (member sorting-type '(?k ?K)) (org-clock-sum))
8876 (message "Sorting entries...")
8878 (save-restriction
8879 (narrow-to-region start end)
8880 (let ((dcst (downcase sorting-type))
8881 (case-fold-search nil)
8882 (now (current-time)))
8883 (sort-subr
8884 (/= dcst sorting-type)
8885 ;; This function moves to the beginning character of the "record" to
8886 ;; be sorted.
8887 (lambda nil
8888 (if (re-search-forward re nil t)
8889 (goto-char (match-beginning 0))
8890 (goto-char (point-max))))
8891 ;; This function moves to the last character of the "record" being
8892 ;; sorted.
8893 (lambda nil
8894 (save-match-data
8895 (condition-case nil
8896 (outline-forward-same-level 1)
8897 (error
8898 (goto-char (point-max))))))
8899 ;; This function returns the value that gets sorted against.
8900 (lambda nil
8901 (cond
8902 ((= dcst ?n)
8903 (if (looking-at org-complex-heading-regexp)
8904 (string-to-number (org-sort-remove-invisible (match-string 4)))
8905 nil))
8906 ((= dcst ?a)
8907 (if (looking-at org-complex-heading-regexp)
8908 (funcall case-func (org-sort-remove-invisible (match-string 4)))
8909 nil))
8910 ((= dcst ?k)
8911 (or (get-text-property (point) :org-clock-minutes) 0))
8912 ((= dcst ?t)
8913 (let ((end (save-excursion (outline-next-heading) (point))))
8914 (if (or (re-search-forward org-ts-regexp end t)
8915 (re-search-forward org-ts-regexp-both end t))
8916 (org-time-string-to-seconds (match-string 0))
8917 (org-float-time now))))
8918 ((= dcst ?c)
8919 (let ((end (save-excursion (outline-next-heading) (point))))
8920 (if (re-search-forward
8921 (concat "^[ \t]*\\[" org-ts-regexp1 "\\]")
8922 end t)
8923 (org-time-string-to-seconds (match-string 0))
8924 (org-float-time now))))
8925 ((= dcst ?s)
8926 (let ((end (save-excursion (outline-next-heading) (point))))
8927 (if (re-search-forward org-scheduled-time-regexp end t)
8928 (org-time-string-to-seconds (match-string 1))
8929 (org-float-time now))))
8930 ((= dcst ?d)
8931 (let ((end (save-excursion (outline-next-heading) (point))))
8932 (if (re-search-forward org-deadline-time-regexp end t)
8933 (org-time-string-to-seconds (match-string 1))
8934 (org-float-time now))))
8935 ((= dcst ?p)
8936 (if (re-search-forward org-priority-regexp (point-at-eol) t)
8937 (string-to-char (match-string 2))
8938 org-default-priority))
8939 ((= dcst ?r)
8940 (or (org-entry-get nil property) ""))
8941 ((= dcst ?o)
8942 (if (looking-at org-complex-heading-regexp)
8943 (let* ((m (match-string 2))
8944 (s (if (member m org-done-keywords) '- '+)))
8945 (- 99 (funcall s (length (member m org-todo-keywords-1)))))))
8946 ((= dcst ?f)
8947 (if getkey-func
8948 (progn
8949 (setq tmp (funcall getkey-func))
8950 (if (stringp tmp) (setq tmp (funcall case-func tmp)))
8951 tmp)
8952 (error "Invalid key function `%s'" getkey-func)))
8953 (t (error "Invalid sorting type `%c'" sorting-type))))
8955 (cond
8956 ((= dcst ?a) 'string<)
8957 ((= dcst ?f) compare-func)
8958 ((member dcst '(?p ?t ?s ?d ?c ?k)) '<)))))
8959 (run-hooks 'org-after-sorting-entries-or-items-hook)
8960 ;; Reset the clock marker if needed
8961 (when cmstr
8962 (save-excursion
8963 (goto-char start)
8964 (search-forward cmstr nil t)
8965 (move-marker org-clock-marker (point))))
8966 (message "Sorting entries...done")))
8968 (defun org-do-sort (table what &optional with-case sorting-type)
8969 "Sort TABLE of WHAT according to SORTING-TYPE.
8970 The user will be prompted for the SORTING-TYPE if the call to this
8971 function does not specify it.
8972 WHAT is only for the prompt, to indicate what is being sorted.
8973 The sorting key will be extracted from the car of the elements of
8974 the table.
8975 If WITH-CASE is non-nil, the sorting will be case-sensitive."
8976 (unless sorting-type
8977 (message
8978 "Sort %s: [a]lphabetic, [n]umeric, [t]ime. A/N/T means reversed:"
8979 what)
8980 (setq sorting-type (read-char-exclusive)))
8981 (let ((dcst (downcase sorting-type))
8982 extractfun comparefun)
8983 ;; Define the appropriate functions
8984 (cond
8985 ((= dcst ?n)
8986 (setq extractfun 'string-to-number
8987 comparefun (if (= dcst sorting-type) '< '>)))
8988 ((= dcst ?a)
8989 (setq extractfun (if with-case (lambda(x) (org-sort-remove-invisible x))
8990 (lambda(x) (downcase (org-sort-remove-invisible x))))
8991 comparefun (if (= dcst sorting-type)
8992 'string<
8993 (lambda (a b) (and (not (string< a b))
8994 (not (string= a b)))))))
8995 ((= dcst ?t)
8996 (setq extractfun
8997 (lambda (x)
8998 (cond ((or (string-match org-ts-regexp x)
8999 (string-match org-ts-regexp-both x))
9000 (org-float-time
9001 (org-time-string-to-time (match-string 0 x))))
9002 ((string-match "[0-9]\\{1,2\\}:[0-9]\\{2\\}" x)
9003 (org-hh:mm-string-to-minutes x))
9004 (t 0)))
9005 comparefun (if (= dcst sorting-type) '< '>)))
9006 (t (error "Invalid sorting type `%c'" sorting-type)))
9008 (sort (mapcar (lambda (x) (cons (funcall extractfun (car x)) (cdr x)))
9009 table)
9010 (lambda (a b) (funcall comparefun (car a) (car b))))))
9013 ;;; The orgstruct minor mode
9015 ;; Define a minor mode which can be used in other modes in order to
9016 ;; integrate the org-mode structure editing commands.
9018 ;; This is really a hack, because the org-mode structure commands use
9019 ;; keys which normally belong to the major mode. Here is how it
9020 ;; works: The minor mode defines all the keys necessary to operate the
9021 ;; structure commands, but wraps the commands into a function which
9022 ;; tests if the cursor is currently at a headline or a plain list
9023 ;; item. If that is the case, the structure command is used,
9024 ;; temporarily setting many Org-mode variables like regular
9025 ;; expressions for filling etc. However, when any of those keys is
9026 ;; used at a different location, function uses `key-binding' to look
9027 ;; up if the key has an associated command in another currently active
9028 ;; keymap (minor modes, major mode, global), and executes that
9029 ;; command. There might be problems if any of the keys is otherwise
9030 ;; used as a prefix key.
9032 (defcustom orgstruct-heading-prefix-regexp ""
9033 "Regexp that matches the custom prefix of Org headlines in
9034 orgstruct(++)-mode."
9035 :group 'org
9036 :version "24.4"
9037 :package-version '(Org . "8.3")
9038 :type 'regexp)
9039 ;;;###autoload(put 'orgstruct-heading-prefix-regexp 'safe-local-variable 'stringp)
9041 (defcustom orgstruct-setup-hook nil
9042 "Hook run after orgstruct-mode-map is filled."
9043 :group 'org
9044 :version "24.4"
9045 :package-version '(Org . "8.0")
9046 :type 'hook)
9048 (defvar orgstruct-initialized nil)
9050 (defvar org-local-vars nil
9051 "List of local variables, for use by `orgstruct-mode'.")
9053 ;;;###autoload
9054 (define-minor-mode orgstruct-mode
9055 "Toggle the minor mode `orgstruct-mode'.
9056 This mode is for using Org-mode structure commands in other
9057 modes. The following keys behave as if Org-mode were active, if
9058 the cursor is on a headline, or on a plain list item (both as
9059 defined by Org-mode)."
9060 nil " OrgStruct" (make-sparse-keymap)
9061 (funcall (if orgstruct-mode
9062 'add-to-invisibility-spec
9063 'remove-from-invisibility-spec)
9064 '(outline . t))
9065 (when orgstruct-mode
9066 (org-load-modules-maybe)
9067 (unless orgstruct-initialized
9068 (orgstruct-setup)
9069 (setq orgstruct-initialized t))))
9071 ;;;###autoload
9072 (defun turn-on-orgstruct ()
9073 "Unconditionally turn on `orgstruct-mode'."
9074 (orgstruct-mode 1))
9076 (defvar org-fb-vars nil)
9077 (make-variable-buffer-local 'org-fb-vars)
9078 (defun orgstruct++-mode (&optional arg)
9079 "Toggle `orgstruct-mode', the enhanced version of it.
9080 In addition to setting orgstruct-mode, this also exports all
9081 indentation and autofilling variables from org-mode into the
9082 buffer. It will also recognize item context in multiline items."
9083 (interactive "P")
9084 (setq arg (prefix-numeric-value (or arg (if orgstruct-mode -1 1))))
9085 (if (< arg 1)
9086 (progn (orgstruct-mode -1)
9087 (mapc (lambda(v)
9088 (org-set-local (car v)
9089 (if (eq (car-safe (cadr v)) 'quote) (cadadr v) (cadr v))))
9090 org-fb-vars))
9091 (orgstruct-mode 1)
9092 (setq org-fb-vars nil)
9093 (unless org-local-vars
9094 (setq org-local-vars (org-get-local-variables)))
9095 (let (var val)
9096 (mapc
9097 (lambda (x)
9098 (when (string-match
9099 "^\\(paragraph-\\|auto-fill\\|normal-auto-fill\\|fill-paragraph\\|fill-prefix\\|indent-\\)"
9100 (symbol-name (car x)))
9101 (setq var (car x) val (nth 1 x))
9102 (push (list var `(quote ,(eval var))) org-fb-vars)
9103 (org-set-local var (if (eq (car-safe val) 'quote) (nth 1 val) val))))
9104 org-local-vars)
9105 (org-set-local 'orgstruct-is-++ t))))
9107 (defvar orgstruct-is-++ nil
9108 "Is `orgstruct-mode' in ++ version in the current-buffer?")
9109 (make-variable-buffer-local 'orgstruct-is-++)
9111 ;;;###autoload
9112 (defun turn-on-orgstruct++ ()
9113 "Unconditionally turn on `orgstruct++-mode'."
9114 (orgstruct++-mode 1))
9116 (defun orgstruct-error ()
9117 "Error when there is no default binding for a structure key."
9118 (interactive)
9119 (funcall (if (fboundp 'user-error)
9120 'user-error
9121 'error)
9122 "This key has no function outside structure elements"))
9124 (defun orgstruct-setup ()
9125 "Setup orgstruct keymap."
9126 (dolist (cell '((org-demote . t)
9127 (org-metaleft . t)
9128 (org-metaright . t)
9129 (org-promote . t)
9130 (org-shiftmetaleft . t)
9131 (org-shiftmetaright . t)
9132 org-backward-element
9133 org-backward-heading-same-level
9134 org-ctrl-c-ret
9135 org-ctrl-c-minus
9136 org-ctrl-c-star
9137 org-cycle
9138 org-forward-heading-same-level
9139 org-insert-heading
9140 org-insert-heading-respect-content
9141 org-kill-note-or-show-branches
9142 org-mark-subtree
9143 org-meta-return
9144 org-metadown
9145 org-metaup
9146 org-narrow-to-subtree
9147 org-promote-subtree
9148 org-reveal
9149 org-shiftdown
9150 org-shiftleft
9151 org-shiftmetadown
9152 org-shiftmetaup
9153 org-shiftright
9154 org-shifttab
9155 org-shifttab
9156 org-shiftup
9157 org-show-subtree
9158 org-sort
9159 org-up-element
9160 outline-demote
9161 outline-next-visible-heading
9162 outline-previous-visible-heading
9163 outline-promote
9164 outline-up-heading
9165 show-children))
9166 (let ((f (or (car-safe cell) cell))
9167 (disable-when-heading-prefix (cdr-safe cell)))
9168 (when (fboundp f)
9169 (let ((new-bindings))
9170 (dolist (binding (nconc (where-is-internal f org-mode-map)
9171 (where-is-internal f outline-mode-map)))
9172 (push binding new-bindings)
9173 ;; TODO use local-function-key-map
9174 (dolist (rep '(("<tab>" . "TAB")
9175 ("<return>" . "RET")
9176 ("<escape>" . "ESC")
9177 ("<delete>" . "DEL")))
9178 (setq binding (read-kbd-macro
9179 (let ((case-fold-search))
9180 (replace-regexp-in-string
9181 (regexp-quote (cdr rep))
9182 (car rep)
9183 (key-description binding)))))
9184 (pushnew binding new-bindings :test 'equal)))
9185 (dolist (binding new-bindings)
9186 (let ((key (lookup-key orgstruct-mode-map binding)))
9187 (when (or (not key) (numberp key))
9188 (ignore-errors
9189 (org-defkey orgstruct-mode-map
9190 binding
9191 (orgstruct-make-binding
9192 f binding disable-when-heading-prefix))))))))))
9193 (run-hooks 'orgstruct-setup-hook))
9195 (defun orgstruct-make-binding (fun key disable-when-heading-prefix)
9196 "Create a function for binding in the structure minor mode.
9197 FUN is the command to call inside a table. KEY is the key that
9198 should be checked in for a command to execute outside of tables.
9199 Non-nil `disable-when-heading-prefix' means to disable the command
9200 if `orgstruct-heading-prefix-regexp' is not empty."
9201 (let ((name (concat "orgstruct-hijacker-" (symbol-name fun))))
9202 (let ((nname name)
9203 (i 0))
9204 (while (fboundp (intern nname))
9205 (setq nname (format "%s-%d" name (setq i (1+ i)))))
9206 (setq name (intern nname)))
9207 (eval
9208 (let ((bindings '((org-heading-regexp
9209 (concat "^"
9210 orgstruct-heading-prefix-regexp
9211 "\\(\\*+\\)\\(?: +\\(.*?\\)\\)?[ ]*$"))
9212 (org-outline-regexp
9213 (concat orgstruct-heading-prefix-regexp "\\*+ "))
9214 (org-outline-regexp-bol
9215 (concat "^" org-outline-regexp))
9216 (outline-regexp org-outline-regexp)
9217 (outline-heading-end-regexp "\n")
9218 (outline-level 'org-outline-level)
9219 (outline-heading-alist))))
9220 `(defun ,name (arg)
9221 ,(concat "In Structure, run `" (symbol-name fun) "'.\n"
9222 "Outside of structure, run the binding of `"
9223 (key-description key) "'."
9224 (when disable-when-heading-prefix
9225 (concat
9226 "\nIf `orgstruct-heading-prefix-regexp' is not empty, this command will always fall\n"
9227 "back to the default binding due to limitations of Org's implementation of\n"
9228 "`" (symbol-name fun) "'.")))
9229 (interactive "p")
9230 (let* ((disable
9231 ,(and disable-when-heading-prefix
9232 '(not (string= orgstruct-heading-prefix-regexp ""))))
9233 (fallback
9234 (or disable
9235 (not
9236 (let* ,bindings
9237 (org-context-p 'headline 'item
9238 ,(when (memq fun
9239 '(org-insert-heading
9240 org-insert-heading-respect-content
9241 org-meta-return))
9242 '(when orgstruct-is-++
9243 'item-body))))))))
9244 (if fallback
9245 (let* ((orgstruct-mode)
9246 (binding
9247 (loop with key = ,key
9248 for rep in
9249 '(nil
9250 ("<\\([^>]*\\)tab>" . "\\1TAB")
9251 ("<\\([^>]*\\)return>" . "\\1RET")
9252 ("<\\([^>]*\\)escape>" . "\\1ESC")
9253 ("<\\([^>]*\\)delete>" . "\\1DEL"))
9255 (when rep
9256 (setq key (read-kbd-macro
9257 (let ((case-fold-search))
9258 (replace-regexp-in-string
9259 (car rep)
9260 (cdr rep)
9261 (key-description key))))))
9262 thereis (key-binding key))))
9263 (if (keymapp binding)
9264 (org-set-transient-map binding)
9265 (let ((func (or binding
9266 (unless disable
9267 'orgstruct-error))))
9268 (when func
9269 (call-interactively func)))))
9270 (org-run-like-in-org-mode
9271 (lambda ()
9272 (interactive)
9273 (let* ,bindings
9274 (call-interactively ',fun)))))))))
9275 name))
9277 (defun org-contextualize-keys (alist contexts)
9278 "Return valid elements in ALIST depending on CONTEXTS.
9280 `org-agenda-custom-commands' or `org-capture-templates' are the
9281 values used for ALIST, and `org-agenda-custom-commands-contexts'
9282 or `org-capture-templates-contexts' are the associated contexts
9283 definitions."
9284 (let ((contexts
9285 ;; normalize contexts
9286 (mapcar
9287 (lambda(c) (cond ((listp (cadr c))
9288 (list (car c) (car c) (cadr c)))
9289 ((string= "" (cadr c))
9290 (list (car c) (car c) (caddr c)))
9291 (t c))) contexts))
9292 (a alist) c r s)
9293 ;; loop over all commands or templates
9294 (while (setq c (pop a))
9295 (let (vrules repl)
9296 (cond
9297 ((not (assoc (car c) contexts))
9298 (push c r))
9299 ((and (assoc (car c) contexts)
9300 (setq vrules (org-contextualize-validate-key
9301 (car c) contexts)))
9302 (mapc (lambda (vr)
9303 (when (not (equal (car vr) (cadr vr)))
9304 (setq repl vr))) vrules)
9305 (if (not repl) (push c r)
9306 (push (cadr repl) s)
9307 (push
9308 (cons (car c)
9309 (cdr (or (assoc (cadr repl) alist)
9310 (error "Undefined key `%s' as contextual replacement for `%s'"
9311 (cadr repl) (car c)))))
9312 r))))))
9313 ;; Return limited ALIST, possibly with keys modified, and deduplicated
9314 (delq
9316 (delete-dups
9317 (mapcar (lambda (x)
9318 (let ((tpl (car x)))
9319 (when (not (delq
9321 (mapcar (lambda(y)
9322 (equal y tpl)) s))) x)))
9323 (reverse r))))))
9325 (defun org-contextualize-validate-key (key contexts)
9326 "Check CONTEXTS for agenda or capture KEY."
9327 (let (r rr res)
9328 (while (setq r (pop contexts))
9329 (mapc
9330 (lambda (rr)
9331 (when
9332 (and (equal key (car r))
9333 (if (functionp rr) (funcall rr)
9334 (or (and (eq (car rr) 'in-file)
9335 (buffer-file-name)
9336 (string-match (cdr rr) (buffer-file-name)))
9337 (and (eq (car rr) 'in-mode)
9338 (string-match (cdr rr) (symbol-name major-mode)))
9339 (and (eq (car rr) 'in-buffer)
9340 (string-match (cdr rr) (buffer-name)))
9341 (when (and (eq (car rr) 'not-in-file)
9342 (buffer-file-name))
9343 (not (string-match (cdr rr) (buffer-file-name))))
9344 (when (eq (car rr) 'not-in-mode)
9345 (not (string-match (cdr rr) (symbol-name major-mode))))
9346 (when (eq (car rr) 'not-in-buffer)
9347 (not (string-match (cdr rr) (buffer-name)))))))
9348 (push r res)))
9349 (car (last r))))
9350 (delete-dups (delq nil res))))
9352 (defun org-context-p (&rest contexts)
9353 "Check if local context is any of CONTEXTS.
9354 Possible values in the list of contexts are `table', `headline', and `item'."
9355 (let ((pos (point)))
9356 (goto-char (point-at-bol))
9357 (prog1 (or (and (memq 'table contexts)
9358 (looking-at "[ \t]*|"))
9359 (and (memq 'headline contexts)
9360 (looking-at org-outline-regexp))
9361 (and (memq 'item contexts)
9362 (looking-at "[ \t]*\\([-+*] \\|[0-9]+[.)] \\)"))
9363 (and (memq 'item-body contexts)
9364 (org-in-item-p)))
9365 (goto-char pos))))
9367 (defun org-get-local-variables ()
9368 "Return a list of all local variables in an Org mode buffer."
9369 (let (varlist)
9370 (with-current-buffer (get-buffer-create "*Org tmp*")
9371 (erase-buffer)
9372 (org-mode)
9373 (setq varlist (buffer-local-variables)))
9374 (kill-buffer "*Org tmp*")
9375 (delq nil
9376 (mapcar
9377 (lambda (x)
9378 (setq x
9379 (if (symbolp x)
9380 (list x)
9381 (list (car x) (cdr x))))
9382 (if (and (not (get (car x) 'org-state))
9383 (string-match
9384 "^\\(org-\\|orgtbl-\\|outline-\\|comment-\\|paragraph-\\|auto-fill\\|normal-auto-fill\\|fill-paragraph\\|indent-\\)"
9385 (symbol-name (car x))))
9386 x nil))
9387 varlist))))
9389 (defun org-clone-local-variables (from-buffer &optional regexp)
9390 "Clone local variables from FROM-BUFFER.
9391 Optional argument REGEXP selects variables to clone."
9392 (mapc
9393 (lambda (pair)
9394 (and (symbolp (car pair))
9395 (or (null regexp)
9396 (string-match regexp (symbol-name (car pair))))
9397 (set (make-local-variable (car pair))
9398 (cdr pair))))
9399 (buffer-local-variables from-buffer)))
9401 ;;;###autoload
9402 (defun org-run-like-in-org-mode (cmd)
9403 "Run a command, pretending that the current buffer is in Org-mode.
9404 This will temporarily bind local variables that are typically bound in
9405 Org-mode to the values they have in Org-mode, and then interactively
9406 call CMD."
9407 (org-load-modules-maybe)
9408 (unless org-local-vars
9409 (setq org-local-vars (org-get-local-variables)))
9410 (let (binds)
9411 (dolist (var org-local-vars)
9412 (when (or (not (boundp (car var)))
9413 (eq (symbol-value (car var))
9414 (default-value (car var))))
9415 (push (list (car var) `(quote ,(cadr var))) binds)))
9416 (eval `(let ,binds
9417 (call-interactively (quote ,cmd))))))
9419 (defun org-get-category (&optional pos force-refresh)
9420 "Get the category applying to position POS."
9421 (save-match-data
9422 (if force-refresh (org-refresh-category-properties))
9423 (let ((pos (or pos (point))))
9424 (or (get-text-property pos 'org-category)
9425 (progn (org-refresh-category-properties)
9426 (get-text-property pos 'org-category))))))
9428 ;;; Refresh properties
9430 (defun org-refresh-properties (dprop tprop)
9431 "Refresh buffer text properties.
9432 DPROP is the drawer property and TPROP is either the
9433 corresponding text property to set, or an alist with each element
9434 being a text property (as a symbol) and a function to apply to
9435 the value of the drawer property."
9436 (let ((case-fold-search t)
9437 (inhibit-read-only t))
9438 (org-with-silent-modifications
9439 (save-excursion
9440 (save-restriction
9441 (widen)
9442 (goto-char (point-min))
9443 (while (re-search-forward (concat "^[ \t]*:" dprop ": +\\(.*\\)[ \t]*$") nil t)
9444 (org-refresh-property tprop (org-match-string-no-properties 1))))))))
9446 (defun org-refresh-property (tprop p)
9447 "Refresh the buffer text property TPROP from the drawer property P.
9448 The refresh happens only for the current tree (not subtree)."
9449 (save-excursion
9450 (org-back-to-heading t)
9451 ;; tprop is a text property symbol
9452 (if (symbolp tprop)
9453 (put-text-property
9454 (point) (or (outline-next-heading) (point-max)) tprop p)
9455 ;; tprop is an alist with (properties . function) elements
9456 (mapc (lambda(al)
9457 (save-excursion
9458 (put-text-property
9459 (point-at-bol) (or (outline-next-heading) (point-max))
9460 (car al)
9461 (funcall (cdr al) p))))
9462 tprop))))
9464 (defun org-refresh-category-properties ()
9465 "Refresh category text properties in the buffer."
9466 (let ((case-fold-search t)
9467 (inhibit-read-only t)
9468 (def-cat (cond
9469 ((null org-category)
9470 (if buffer-file-name
9471 (file-name-sans-extension
9472 (file-name-nondirectory buffer-file-name))
9473 "???"))
9474 ((symbolp org-category) (symbol-name org-category))
9475 (t org-category)))
9476 beg end cat pos optionp)
9477 (org-with-silent-modifications
9478 (save-excursion
9479 (save-restriction
9480 (widen)
9481 (goto-char (point-min))
9482 (put-text-property (point) (point-max) 'org-category def-cat)
9483 (while (re-search-forward
9484 "^[ \t]*\\(#\\+CATEGORY:\\|[ \t]*:CATEGORY:\\)\\(.*\\)" nil t)
9485 (setq pos (match-end 0)
9486 optionp (equal (char-after (match-beginning 0)) ?#)
9487 cat (org-trim (match-string 2)))
9488 (if optionp
9489 (setq beg (point-at-bol) end (point-max))
9490 (org-back-to-heading t)
9491 (setq beg (point) end (org-end-of-subtree t t)))
9492 (put-text-property beg end 'org-category cat)
9493 (goto-char pos)))))))
9495 (defun org-refresh-stats-properties ()
9496 "Refresh stats text properties in the buffer."
9497 (let (stats)
9498 (org-with-silent-modifications
9499 (save-excursion
9500 (save-restriction
9501 (widen)
9502 (goto-char (point-min))
9503 (while (re-search-forward
9504 (concat org-outline-regexp-bol ".*"
9505 "\\(?:\\[\\([0-9]+\\)%\\|\\([0-9]+\\)/\\([0-9]+\\)\\]\\)")
9506 nil t)
9507 (setq stats (cond ((equal (match-string 3) "0") 0)
9508 ((match-string 2)
9509 (/ (* (string-to-number (match-string 2)) 100)
9510 (string-to-number (match-string 3))))
9511 (t (string-to-number (match-string 1)))))
9512 (org-back-to-heading t)
9513 (put-text-property (point) (progn (org-end-of-subtree t t) (point))
9514 'org-stats stats)))))))
9516 (defun org-refresh-effort-properties ()
9517 "Refresh effort properties"
9518 (org-refresh-properties
9519 org-effort-property
9520 '((effort . identity)
9521 (effort-minutes . org-duration-string-to-minutes))))
9523 ;;;; Link Stuff
9525 ;;; Link abbreviations
9527 (defun org-link-expand-abbrev (link)
9528 "Apply replacements as defined in `org-link-abbrev-alist'."
9529 (if (string-match "^\\([^:]*\\)\\(::?\\(.*\\)\\)?$" link)
9530 (let* ((key (match-string 1 link))
9531 (as (or (assoc key org-link-abbrev-alist-local)
9532 (assoc key org-link-abbrev-alist)))
9533 (tag (and (match-end 2) (match-string 3 link)))
9534 rpl)
9535 (if (not as)
9536 link
9537 (setq rpl (cdr as))
9538 (cond
9539 ((symbolp rpl) (funcall rpl tag))
9540 ((string-match "%(\\([^)]+\\))" rpl)
9541 (replace-match
9542 (save-match-data
9543 (funcall (intern-soft (match-string 1 rpl)) tag)) t t rpl))
9544 ((string-match "%s" rpl) (replace-match (or tag "") t t rpl))
9545 ((string-match "%h" rpl)
9546 (replace-match (url-hexify-string (or tag "")) t t rpl))
9547 (t (concat rpl tag)))))
9548 link))
9550 ;;; Storing and inserting links
9552 (defvar org-insert-link-history nil
9553 "Minibuffer history for links inserted with `org-insert-link'.")
9555 (defvar org-stored-links nil
9556 "Contains the links stored with `org-store-link'.")
9558 (defvar org-store-link-plist nil
9559 "Plist with info about the most recently link created with `org-store-link'.")
9561 (defvar org-link-protocols nil
9562 "Link protocols added to Org-mode using `org-add-link-type'.")
9564 (defvar org-store-link-functions nil
9565 "List of functions that are called to create and store a link.
9566 Each function will be called in turn until one returns a non-nil
9567 value. Each function should check if it is responsible for creating
9568 this link (for example by looking at the major mode).
9569 If not, it must exit and return nil.
9570 If yes, it should return a non-nil value after a calling
9571 `org-store-link-props' with a list of properties and values.
9572 Special properties are:
9574 :type The link prefix, like \"http\". This must be given.
9575 :link The link, like \"http://www.astro.uva.nl/~dominik\".
9576 This is obligatory as well.
9577 :description Optional default description for the second pair
9578 of brackets in an Org-mode link. The user can still change
9579 this when inserting this link into an Org-mode buffer.
9581 In addition to these, any additional properties can be specified
9582 and then used in capture templates.")
9584 (defun org-add-link-type (type &optional follow export)
9585 "Add TYPE to the list of `org-link-types'.
9586 Re-compute all regular expressions depending on `org-link-types'
9588 FOLLOW and EXPORT are two functions.
9590 FOLLOW should take the link path as the single argument and do whatever
9591 is necessary to follow the link, for example find a file or display
9592 a mail message.
9594 EXPORT should format the link path for export to one of the export formats.
9595 It should be a function accepting three arguments:
9597 path the path of the link, the text after the prefix (like \"http:\")
9598 desc the description of the link, if any, or a description added by
9599 org-export-normalize-links if there is none
9600 format the export format, a symbol like `html' or `latex' or `ascii'..
9602 The function may use the FORMAT information to return different values
9603 depending on the format. The return value will be put literally into
9604 the exported file. If the return value is nil, this means Org should
9605 do what it normally does with links which do not have EXPORT defined.
9607 Org-mode has a built-in default for exporting links. If you are happy with
9608 this default, there is no need to define an export function for the link
9609 type. For a simple example of an export function, see `org-bbdb.el'."
9610 (add-to-list 'org-link-types type t)
9611 (org-make-link-regexps)
9612 (if (assoc type org-link-protocols)
9613 (setcdr (assoc type org-link-protocols) (list follow export))
9614 (push (list type follow export) org-link-protocols)))
9616 (defvar org-agenda-buffer-name) ; Defined in org-agenda.el
9617 (defvar org-id-link-to-org-use-id) ; Defined in org-id.el
9619 ;;;###autoload
9620 (defun org-store-link (arg)
9621 "\\<org-mode-map>Store an org-link to the current location.
9622 This link is added to `org-stored-links' and can later be inserted
9623 into an org-buffer with \\[org-insert-link].
9625 For some link types, a prefix arg is interpreted.
9626 For links to Usenet articles, arg negates `org-gnus-prefer-web-links'.
9627 For file links, arg negates `org-context-in-file-links'.
9629 A double prefix arg force skipping storing functions that are not
9630 part of Org's core.
9632 A triple prefix arg force storing a link for each line in the
9633 active region."
9634 (interactive "P")
9635 (org-load-modules-maybe)
9636 (if (and (equal arg '(64)) (org-region-active-p))
9637 (save-excursion
9638 (let ((end (region-end)))
9639 (goto-char (region-beginning))
9640 (set-mark (point))
9641 (while (< (point-at-eol) end)
9642 (move-end-of-line 1) (activate-mark)
9643 (let (current-prefix-arg)
9644 (call-interactively 'org-store-link))
9645 (move-beginning-of-line 2)
9646 (set-mark (point)))))
9647 (org-with-limited-levels
9648 (setq org-store-link-plist nil)
9649 (let (link cpltxt desc description search
9650 txt custom-id agenda-link sfuns sfunsn)
9651 (cond
9653 ;; Store a link using an external link type
9654 ((and (not (equal arg '(16)))
9655 (setq sfuns
9656 (delq
9657 nil (mapcar (lambda (f)
9658 (let (fs) (if (funcall f) (push f fs))))
9659 org-store-link-functions))
9660 sfunsn (mapcar (lambda (fu) (symbol-name (car fu))) sfuns))
9661 (or (and (cdr sfuns)
9662 (funcall (intern
9663 (completing-read
9664 "Which function for creating the link? "
9665 sfunsn nil t (car sfunsn)))))
9666 (funcall (caar sfuns)))
9667 (setq link (plist-get org-store-link-plist :link)
9668 desc (or (plist-get org-store-link-plist
9669 :description) link))))
9671 ;; Store a link from a source code buffer
9672 ((org-src-edit-buffer-p)
9673 (let (label gc)
9674 (while (or (not label)
9675 (save-excursion
9676 (save-restriction
9677 (widen)
9678 (goto-char (point-min))
9679 (re-search-forward
9680 (regexp-quote (format org-coderef-label-format label))
9681 nil t))))
9682 (when label (message "Label exists already") (sit-for 2))
9683 (setq label (read-string "Code line label: " label)))
9684 (end-of-line 1)
9685 (setq link (format org-coderef-label-format label))
9686 (setq gc (- 79 (length link)))
9687 (if (< (current-column) gc) (org-move-to-column gc t) (insert " "))
9688 (insert link)
9689 (setq link (concat "(" label ")") desc nil)))
9691 ;; We are in the agenda, link to referenced location
9692 ((equal (org-bound-and-true-p org-agenda-buffer-name) (buffer-name))
9693 (let ((m (or (get-text-property (point) 'org-hd-marker)
9694 (get-text-property (point) 'org-marker))))
9695 (when m
9696 (org-with-point-at m
9697 (setq agenda-link
9698 (if (org-called-interactively-p 'any)
9699 (call-interactively 'org-store-link)
9700 (org-store-link nil)))))))
9702 ((eq major-mode 'calendar-mode)
9703 (let ((cd (calendar-cursor-to-date)))
9704 (setq link
9705 (format-time-string
9706 (car org-time-stamp-formats)
9707 (apply 'encode-time
9708 (list 0 0 0 (nth 1 cd) (nth 0 cd) (nth 2 cd)
9709 nil nil nil))))
9710 (org-store-link-props :type "calendar" :date cd)))
9712 ((eq major-mode 'help-mode)
9713 (setq link (concat "help:" (save-excursion
9714 (goto-char (point-min))
9715 (looking-at "^[^ ]+")
9716 (match-string 0))))
9717 (org-store-link-props :type "help"))
9719 ((eq major-mode 'w3-mode)
9720 (setq cpltxt (if (and (buffer-name)
9721 (not (string-match "Untitled" (buffer-name))))
9722 (buffer-name)
9723 (url-view-url t))
9724 link (url-view-url t))
9725 (org-store-link-props :type "w3" :url (url-view-url t)))
9727 ((eq major-mode 'image-mode)
9728 (setq cpltxt (concat "file:"
9729 (abbreviate-file-name buffer-file-name))
9730 link cpltxt)
9731 (org-store-link-props :type "image" :file buffer-file-name))
9733 ;; In dired, store a link to the file of the current line
9734 ((derived-mode-p 'dired-mode)
9735 (let ((file (dired-get-filename nil t)))
9736 (setq file (if file
9737 (abbreviate-file-name
9738 (expand-file-name (dired-get-filename nil t)))
9739 ;; otherwise, no file so use current directory.
9740 default-directory))
9741 (setq cpltxt (concat "file:" file)
9742 link cpltxt)))
9744 ((setq search (run-hook-with-args-until-success
9745 'org-create-file-search-functions))
9746 (setq link (concat "file:" (abbreviate-file-name buffer-file-name)
9747 "::" search))
9748 (setq cpltxt (or description link)))
9750 ((and (buffer-file-name (buffer-base-buffer)) (derived-mode-p 'org-mode))
9751 (setq custom-id (org-entry-get nil "CUSTOM_ID"))
9752 (cond
9753 ;; Store a link using the target at point
9754 ((org-in-regexp "[^<]<<\\([^<>]+\\)>>[^>]" 1)
9755 (setq cpltxt
9756 (concat "file:"
9757 (abbreviate-file-name
9758 (buffer-file-name (buffer-base-buffer)))
9759 "::" (match-string 1))
9760 link cpltxt))
9761 ((and (featurep 'org-id)
9762 (or (eq org-id-link-to-org-use-id t)
9763 (and (org-called-interactively-p 'any)
9764 (or (eq org-id-link-to-org-use-id 'create-if-interactive)
9765 (and (eq org-id-link-to-org-use-id
9766 'create-if-interactive-and-no-custom-id)
9767 (not custom-id))))
9768 (and org-id-link-to-org-use-id (org-entry-get nil "ID"))))
9769 ;; Store a link using the ID at point
9770 (setq link (condition-case nil
9771 (prog1 (org-id-store-link)
9772 (setq desc (or (plist-get org-store-link-plist
9773 :description)
9774 "")))
9775 (error
9776 ;; Probably before first headline, link only to file
9777 (concat "file:"
9778 (abbreviate-file-name
9779 (buffer-file-name (buffer-base-buffer))))))))
9781 ;; Just link to current headline
9782 (setq cpltxt (concat "file:"
9783 (abbreviate-file-name
9784 (buffer-file-name (buffer-base-buffer)))))
9785 ;; Add a context search string
9786 (when (org-xor org-context-in-file-links arg)
9787 (let* ((ee (org-element-at-point))
9788 (et (org-element-type ee))
9789 (ev (plist-get (cadr ee) :value))
9790 (ek (plist-get (cadr ee) :key))
9791 (eok (and (stringp ek) (string-match "name" ek))))
9792 (setq txt (cond
9793 ((org-at-heading-p) nil)
9794 ((and (eq et 'keyword) eok) ev)
9795 ((org-region-active-p)
9796 (buffer-substring (region-beginning) (region-end)))))
9797 (when (or (null txt) (string-match "\\S-" txt))
9798 (setq cpltxt
9799 (concat cpltxt "::"
9800 (condition-case nil
9801 (org-make-org-heading-search-string txt)
9802 (error "")))
9803 desc (or (and (eq et 'keyword) eok ev)
9804 (nth 4 (ignore-errors (org-heading-components)))
9805 "NONE")))))
9806 (if (string-match "::\\'" cpltxt)
9807 (setq cpltxt (substring cpltxt 0 -2)))
9808 (setq link cpltxt))))
9810 ((buffer-file-name (buffer-base-buffer))
9811 ;; Just link to this file here.
9812 (setq cpltxt (concat "file:"
9813 (abbreviate-file-name
9814 (buffer-file-name (buffer-base-buffer)))))
9815 ;; Add a context string.
9816 (when (org-xor org-context-in-file-links arg)
9817 (setq txt (if (org-region-active-p)
9818 (buffer-substring (region-beginning) (region-end))
9819 (buffer-substring (point-at-bol) (point-at-eol))))
9820 ;; Only use search option if there is some text.
9821 (when (string-match "\\S-" txt)
9822 (setq cpltxt
9823 (concat cpltxt "::" (org-make-org-heading-search-string txt))
9824 desc "NONE")))
9825 (setq link cpltxt))
9827 ((org-called-interactively-p 'interactive)
9828 (user-error "No method for storing a link from this buffer"))
9830 (t (setq link nil)))
9832 ;; We're done setting link and desc, clean up
9833 (if (consp link) (setq cpltxt (car link) link (cdr link)))
9834 (setq link (or link cpltxt)
9835 desc (or desc cpltxt))
9836 (cond ((equal desc "NONE") (setq desc nil))
9837 ((and desc (string-match org-bracket-link-analytic-regexp desc))
9838 (let ((d0 (match-string 3 desc))
9839 (p0 (match-string 5 desc)))
9840 (setq desc
9841 (replace-regexp-in-string
9842 org-bracket-link-regexp
9843 (concat (or p0 d0)
9844 (if (equal (length (match-string 0 desc))
9845 (length desc)) "*" "")) desc)))))
9847 ;; Return the link
9848 (if (not (and (or (org-called-interactively-p 'any)
9849 executing-kbd-macro) link))
9850 (or agenda-link (and link (org-make-link-string link desc)))
9851 (push (list link desc) org-stored-links)
9852 (message "Stored: %s" (or desc link))
9853 (when custom-id
9854 (setq link (concat "file:" (abbreviate-file-name
9855 (buffer-file-name)) "::#" custom-id))
9856 (push (list link desc) org-stored-links))
9857 (car org-stored-links))))))
9859 (defun org-store-link-props (&rest plist)
9860 "Store link properties, extract names and addresses."
9861 (let (x adr)
9862 (when (setq x (plist-get plist :from))
9863 (setq adr (mail-extract-address-components x))
9864 (setq plist (plist-put plist :fromname (car adr)))
9865 (setq plist (plist-put plist :fromaddress (nth 1 adr))))
9866 (when (setq x (plist-get plist :to))
9867 (setq adr (mail-extract-address-components x))
9868 (setq plist (plist-put plist :toname (car adr)))
9869 (setq plist (plist-put plist :toaddress (nth 1 adr)))))
9870 (let ((from (plist-get plist :from))
9871 (to (plist-get plist :to)))
9872 (when (and from to org-from-is-user-regexp)
9873 (setq plist
9874 (plist-put plist :fromto
9875 (if (string-match org-from-is-user-regexp from)
9876 (concat "to %t")
9877 (concat "from %f"))))))
9878 (setq org-store-link-plist plist))
9880 (defun org-add-link-props (&rest plist)
9881 "Add these properties to the link property list."
9882 (let (key value)
9883 (while plist
9884 (setq key (pop plist) value (pop plist))
9885 (setq org-store-link-plist
9886 (plist-put org-store-link-plist key value)))))
9888 (defun org-email-link-description (&optional fmt)
9889 "Return the description part of an email link.
9890 This takes information from `org-store-link-plist' and formats it
9891 according to FMT (default from `org-email-link-description-format')."
9892 (setq fmt (or fmt org-email-link-description-format))
9893 (let* ((p org-store-link-plist)
9894 (to (plist-get p :toaddress))
9895 (from (plist-get p :fromaddress))
9896 (table
9897 (list
9898 (cons "%c" (plist-get p :fromto))
9899 (cons "%F" (plist-get p :from))
9900 (cons "%f" (or (plist-get p :fromname) (plist-get p :fromaddress) "?"))
9901 (cons "%T" (plist-get p :to))
9902 (cons "%t" (or (plist-get p :toname) (plist-get p :toaddress) "?"))
9903 (cons "%s" (plist-get p :subject))
9904 (cons "%d" (plist-get p :date))
9905 (cons "%m" (plist-get p :message-id)))))
9906 (when (string-match "%c" fmt)
9907 ;; Check if the user wrote this message
9908 (if (and org-from-is-user-regexp from to
9909 (save-match-data (string-match org-from-is-user-regexp from)))
9910 (setq fmt (replace-match "to %t" t t fmt))
9911 (setq fmt (replace-match "from %f" t t fmt))))
9912 (org-replace-escapes fmt table)))
9914 (defun org-make-org-heading-search-string (&optional string)
9915 "Make search string for the current headline or STRING."
9916 (let ((s (or string
9917 (and (derived-mode-p 'org-mode)
9918 (save-excursion
9919 (org-back-to-heading t)
9920 (org-element-property :raw-value (org-element-at-point))))))
9921 (lines org-context-in-file-links))
9922 (or string (setq s (concat "*" s))) ; Add * for headlines
9923 (setq s (replace-regexp-in-string "\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]" "" s))
9924 (when (and string (integerp lines) (> lines 0))
9925 (let ((slines (org-split-string s "\n")))
9926 (when (< lines (length slines))
9927 (setq s (mapconcat
9928 'identity
9929 (reverse (nthcdr (- (length slines) lines)
9930 (reverse slines))) "\n")))))
9931 (mapconcat 'identity (org-split-string s "[ \t]+") " ")))
9933 (defun org-make-link-string (link &optional description)
9934 "Make a link with brackets, consisting of LINK and DESCRIPTION."
9935 (unless (string-match "\\S-" link)
9936 (error "Empty link"))
9937 (when (and description
9938 (stringp description)
9939 (not (string-match "\\S-" description)))
9940 (setq description nil))
9941 (when (stringp description)
9942 ;; Remove brackets from the description, they are fatal.
9943 (while (string-match "\\[" description)
9944 (setq description (replace-match "{" t t description)))
9945 (while (string-match "\\]" description)
9946 (setq description (replace-match "}" t t description))))
9947 (when (equal link description)
9948 ;; No description needed, it is identical
9949 (setq description nil))
9950 (when (and (not description)
9951 (not (string-match (org-image-file-name-regexp) link))
9952 (not (equal link (org-link-escape link))))
9953 (setq description (org-extract-attributes link)))
9954 (setq link
9955 (cond ((string-match (org-image-file-name-regexp) link) link)
9956 ((string-match org-link-types-re link)
9957 (concat (match-string 1 link)
9958 (org-link-escape (substring link (match-end 1)))))
9959 (t (org-link-escape link))))
9960 (concat "[[" link "]"
9961 (if description (concat "[" description "]") "")
9962 "]"))
9964 (defconst org-link-escape-chars
9965 ;;%20 %5B %5D
9966 '(?\ ?\[ ?\])
9967 "List of characters that should be escaped in a link when stored to Org.
9968 This is the list that is used for internal purposes.")
9970 (defconst org-link-escape-chars-browser
9971 ;;%20 %22
9972 '(?\ ?\")
9973 "List of characters to be escaped before handing over to the browser.
9974 If you consider using this constant then you probably want to use
9975 the function `org-link-escape-browser' instead. See there why
9976 this constant is a candidate to be removed once Org drops support
9977 for Emacs 24.1 and 24.2.")
9979 (defun org-link-escape (text &optional table merge)
9980 "Return percent escaped representation of TEXT.
9981 TEXT is a string with the text to escape.
9982 Optional argument TABLE is a list with characters that should be
9983 escaped. When nil, `org-link-escape-chars' is used.
9984 If optional argument MERGE is set, merge TABLE into
9985 `org-link-escape-chars'."
9986 ;; Don't escape chars in internal links
9987 (if (string-match "^\\*[[:alnum:]]+" text)
9988 text
9989 (cond
9990 ((and table merge)
9991 (mapc (lambda (defchr)
9992 (unless (member defchr table)
9993 (setq table (cons defchr table))))
9994 org-link-escape-chars))
9995 ((null table)
9996 (setq table org-link-escape-chars)))
9997 (mapconcat
9998 (lambda (char)
9999 (if (or (member char table)
10000 (and (or (< char 32) (= char ?\%) (> char 126))
10001 org-url-hexify-p))
10002 (mapconcat (lambda (sequence-element)
10003 (format "%%%.2X" sequence-element))
10004 (or (encode-coding-char char 'utf-8)
10005 (error "Unable to percent escape character: %s"
10006 (char-to-string char))) "")
10007 (char-to-string char))) text "")))
10009 (defun org-link-escape-browser (text)
10010 "Escape some characters before handing over to the browser.
10011 This function is a candidate to be removed together with the
10012 constant `org-link-escape-chars-browser' once Org drops support
10013 for Emacs 24.1 and 24.2. All calls to this function will have to
10014 be replaced with `url-encode-url' which is available since Emacs
10015 24.3.1."
10016 ;; Example with the Org link
10017 ;; [[http://lists.gnu.org/archive/cgi-bin/namazu.cgi?idxname=emacs-orgmode&query=%252Bsubject:"Release+8.2"]]
10018 ;; to open the browser with +subject:"Release 8.2" filled into the
10019 ;; query field: In this case the variable TEXT contains the
10020 ;; unescaped [...]=%2Bsubject:"Release+8.2". Then `url-encode-url'
10021 ;; converts correctly to [...]=%2Bsubject:%22Release+8.2%22 or
10022 ;; `org-link-escape' with `org-link-escape-chars-browser' converts
10023 ;; wrongly to [...]=%252Bsubject:%22Release+8.2%22.
10024 (if (fboundp 'url-encode-url)
10025 (url-encode-url text)
10026 (if (org-string-match-p
10027 (concat "[[:nonascii:]" org-link-escape-chars-browser "]")
10028 text)
10029 (org-link-escape text org-link-escape-chars-browser)
10030 text)))
10032 (defun org-link-unescape (str)
10033 "Unhex hexified Unicode strings as returned from the JavaScript function
10034 encodeURIComponent. E.g. `%C3%B6' is the german o-Umlaut."
10035 (unless (and (null str) (string= "" str))
10036 (let ((pos 0) (case-fold-search t) unhexed)
10037 (while (setq pos (string-match "\\(%[0-9a-f][0-9a-f]\\)+" str pos))
10038 (setq unhexed (org-link-unescape-compound (match-string 0 str)))
10039 (setq str (replace-match unhexed t t str))
10040 (setq pos (+ pos (length unhexed))))))
10041 str)
10043 (defun org-link-unescape-compound (hex)
10044 "Unhexify Unicode hex-chars. E.g. `%C3%B6' is the German o-Umlaut.
10045 Note: this function also decodes single byte encodings like
10046 `%E1' (a-acute) if not followed by another `%[A-F0-9]{2}' group."
10047 (save-match-data
10048 (let* ((bytes (cdr (split-string hex "%")))
10049 (ret "")
10050 (eat 0)
10051 (sum 0))
10052 (while bytes
10053 (let* ((val (string-to-number (pop bytes) 16))
10054 (shift-xor
10055 (if (= 0 eat)
10056 (cond
10057 ((>= val 252) (cons 6 252))
10058 ((>= val 248) (cons 5 248))
10059 ((>= val 240) (cons 4 240))
10060 ((>= val 224) (cons 3 224))
10061 ((>= val 192) (cons 2 192))
10062 (t (cons 0 0)))
10063 (cons 6 128))))
10064 (if (>= val 192) (setq eat (car shift-xor)))
10065 (setq val (logxor val (cdr shift-xor)))
10066 (setq sum (+ (lsh sum (car shift-xor)) val))
10067 (if (> eat 0) (setq eat (- eat 1)))
10068 (cond
10069 ((= 0 eat) ;multi byte
10070 (setq ret (concat ret (org-char-to-string sum)))
10071 (setq sum 0))
10072 ((not bytes) ; single byte(s)
10073 (setq ret (org-link-unescape-single-byte-sequence hex))))))
10074 ret)))
10076 (defun org-link-unescape-single-byte-sequence (hex)
10077 "Unhexify hex-encoded single byte character sequences."
10078 (mapconcat (lambda (byte)
10079 (char-to-string (string-to-number byte 16)))
10080 (cdr (split-string hex "%")) ""))
10082 (defun org-xor (a b)
10083 "Exclusive or."
10084 (if a (not b) b))
10086 (defun org-fixup-message-id-for-http (s)
10087 "Replace special characters in a message id, so it can be used in an http query."
10088 (when (string-match "%" s)
10089 (setq s (mapconcat (lambda (c)
10090 (if (eq c ?%)
10091 "%25"
10092 (char-to-string c)))
10093 s "")))
10094 (while (string-match "<" s)
10095 (setq s (replace-match "%3C" t t s)))
10096 (while (string-match ">" s)
10097 (setq s (replace-match "%3E" t t s)))
10098 (while (string-match "@" s)
10099 (setq s (replace-match "%40" t t s)))
10102 (defun org-link-prettify (link)
10103 "Return a human-readable representation of LINK.
10104 The car of LINK must be a raw link.
10105 The cdr of LINK must be either a link description or nil."
10106 (let ((desc (or (cadr link) "<no description>")))
10107 (concat (format "%-45s" (substring desc 0 (min (length desc) 40)))
10108 "<" (car link) ">")))
10110 ;;;###autoload
10111 (defun org-insert-link-global ()
10112 "Insert a link like Org-mode does.
10113 This command can be called in any mode to insert a link in Org-mode syntax."
10114 (interactive)
10115 (org-load-modules-maybe)
10116 (org-run-like-in-org-mode 'org-insert-link))
10118 (defun org-insert-all-links (arg &optional pre post)
10119 "Insert all links in `org-stored-links'.
10120 When a universal prefix, do not delete the links from `org-stored-links'.
10121 When `ARG' is a number, insert the last N link(s).
10122 `PRE' and `POST' are optional arguments to define a string to
10123 prepend or to append."
10124 (interactive "P")
10125 (let ((org-keep-stored-link-after-insertion (equal arg '(4)))
10126 (links (copy-seq org-stored-links))
10127 (pr (or pre "- "))
10128 (po (or post "\n"))
10129 (cnt 1) l)
10130 (if (null org-stored-links)
10131 (message "No link to insert")
10132 (while (and (or (listp arg) (>= arg cnt))
10133 (setq l (if (listp arg)
10134 (pop links)
10135 (pop org-stored-links))))
10136 (setq cnt (1+ cnt))
10137 (insert pr)
10138 (org-insert-link nil (car l) (or (cadr l) "<no description>"))
10139 (insert po)))))
10141 (defun org-insert-last-stored-link (arg)
10142 "Insert the last link stored in `org-stored-links'."
10143 (interactive "p")
10144 (org-insert-all-links arg "" "\n"))
10146 (defun org-link-fontify-links-to-this-file ()
10147 "Fontify links to the current file in `org-stored-links'."
10148 (let ((f (buffer-file-name)) a b)
10149 (setq a (mapcar (lambda(l)
10150 (let ((ll (car l)))
10151 (when (and (string-match "^file:\\(.+\\)::" ll)
10152 (equal f (expand-file-name (match-string 1 ll))))
10153 ll)))
10154 org-stored-links))
10155 (when (featurep 'org-id)
10156 (setq b (mapcar (lambda(l)
10157 (let ((ll (car l)))
10158 (when (and (string-match "^id:\\(.+\\)$" ll)
10159 (equal f (expand-file-name
10160 (or (org-id-find-id-file
10161 (match-string 1 ll)) ""))))
10162 ll)))
10163 org-stored-links)))
10164 (mapcar (lambda(l)
10165 (put-text-property 0 (length l) 'face 'font-lock-comment-face l))
10166 (delq nil (append a b)))))
10168 (defvar org-link-links-in-this-file nil)
10169 (defun org-insert-link (&optional complete-file link-location default-description)
10170 "Insert a link. At the prompt, enter the link.
10172 Completion can be used to insert any of the link protocol prefixes like
10173 http or ftp in use.
10175 The history can be used to select a link previously stored with
10176 `org-store-link'. When the empty string is entered (i.e. if you just
10177 press RET at the prompt), the link defaults to the most recently
10178 stored link. As SPC triggers completion in the minibuffer, you need to
10179 use M-SPC or C-q SPC to force the insertion of a space character.
10181 You will also be prompted for a description, and if one is given, it will
10182 be displayed in the buffer instead of the link.
10184 If there is already a link at point, this command will allow you to edit link
10185 and description parts.
10187 With a \\[universal-argument] prefix, prompts for a file to link to. The file name can
10188 be selected using completion. The path to the file will be relative to the
10189 current directory if the file is in the current directory or a subdirectory.
10190 Otherwise, the link will be the absolute path as completed in the minibuffer
10191 \(i.e. normally ~/path/to/file). You can configure this behavior using the
10192 option `org-link-file-path-type'.
10194 With two \\[universal-argument] prefixes, enforce an absolute path even if the file is in
10195 the current directory or below.
10197 With three \\[universal-argument] prefixes, negate the meaning of
10198 `org-keep-stored-link-after-insertion'.
10200 If `org-make-link-description-function' is non-nil, this function will be
10201 called with the link target, and the result will be the default
10202 link description.
10204 If the LINK-LOCATION parameter is non-nil, this value will be
10205 used as the link location instead of reading one interactively.
10207 If the DEFAULT-DESCRIPTION parameter is non-nil, this value will
10208 be used as the default description."
10209 (interactive "P")
10210 (let* ((wcf (current-window-configuration))
10211 (origbuf (current-buffer))
10212 (region (if (org-region-active-p)
10213 (buffer-substring (region-beginning) (region-end))))
10214 (remove (and region (list (region-beginning) (region-end))))
10215 (desc region)
10216 tmphist ; byte-compile incorrectly complains about this
10217 (link link-location)
10218 (abbrevs org-link-abbrev-alist-local)
10219 entry file all-prefixes auto-desc)
10220 (cond
10221 (link-location) ; specified by arg, just use it.
10222 ((org-in-regexp org-bracket-link-regexp 1)
10223 ;; We do have a link at point, and we are going to edit it.
10224 (setq remove (list (match-beginning 0) (match-end 0)))
10225 (setq desc (if (match-end 3) (org-match-string-no-properties 3)))
10226 (setq link (read-string "Link: "
10227 (org-link-unescape
10228 (org-match-string-no-properties 1)))))
10229 ((or (org-in-regexp org-angle-link-re)
10230 (org-in-regexp org-plain-link-re))
10231 ;; Convert to bracket link
10232 (setq remove (list (match-beginning 0) (match-end 0))
10233 link (read-string "Link: "
10234 (org-remove-angle-brackets (match-string 0)))))
10235 ((member complete-file '((4) (16)))
10236 ;; Completing read for file names.
10237 (setq link (org-file-complete-link complete-file)))
10239 ;; Read link, with completion for stored links.
10240 (org-link-fontify-links-to-this-file)
10241 (org-switch-to-buffer-other-window "*Org Links*")
10242 (with-current-buffer "*Org Links*"
10243 (erase-buffer)
10244 (insert "Insert a link.
10245 Use TAB to complete link prefixes, then RET for type-specific completion support\n")
10246 (when org-stored-links
10247 (insert "\nStored links are available with <up>/<down> or M-p/n (most recent with RET):\n\n")
10248 (insert (mapconcat 'org-link-prettify
10249 (reverse org-stored-links) "\n")))
10250 (goto-char (point-min)))
10251 (let ((cw (selected-window)))
10252 (select-window (get-buffer-window "*Org Links*" 'visible))
10253 (with-current-buffer "*Org Links*" (setq truncate-lines t))
10254 (unless (pos-visible-in-window-p (point-max))
10255 (org-fit-window-to-buffer))
10256 (and (window-live-p cw) (select-window cw)))
10257 ;; Fake a link history, containing the stored links.
10258 (setq tmphist (append (mapcar 'car org-stored-links)
10259 org-insert-link-history))
10260 (setq all-prefixes (append (mapcar 'car abbrevs)
10261 (mapcar 'car org-link-abbrev-alist)
10262 org-link-types))
10263 (unwind-protect
10264 (progn
10265 (setq link
10266 (org-completing-read
10267 "Link: "
10268 (append
10269 (mapcar (lambda (x) (concat x ":"))
10270 all-prefixes)
10271 (mapcar 'car org-stored-links))
10272 nil nil nil
10273 'tmphist
10274 (caar org-stored-links)))
10275 (if (not (string-match "\\S-" link))
10276 (user-error "No link selected"))
10277 (mapc (lambda(l)
10278 (when (equal link (cadr l)) (setq link (car l) auto-desc t)))
10279 org-stored-links)
10280 (if (or (member link all-prefixes)
10281 (and (equal ":" (substring link -1))
10282 (member (substring link 0 -1) all-prefixes)
10283 (setq link (substring link 0 -1))))
10284 (setq link (with-current-buffer origbuf
10285 (org-link-try-special-completion link)))))
10286 (set-window-configuration wcf)
10287 (kill-buffer "*Org Links*"))
10288 (setq entry (assoc link org-stored-links))
10289 (or entry (push link org-insert-link-history))
10290 (setq desc (or desc (nth 1 entry)))))
10292 (if (funcall (if (equal complete-file '(64)) 'not 'identity)
10293 (not org-keep-stored-link-after-insertion))
10294 (setq org-stored-links (delq (assoc link org-stored-links)
10295 org-stored-links)))
10297 (if (and (string-match org-plain-link-re link)
10298 (not (string-match org-ts-regexp link)))
10299 ;; URL-like link, normalize the use of angular brackets.
10300 (setq link (org-remove-angle-brackets link)))
10302 ;; Check if we are linking to the current file with a search
10303 ;; option If yes, simplify the link by using only the search
10304 ;; option.
10305 (when (and buffer-file-name
10306 (string-match "^file:\\(.+?\\)::\\(.+\\)" link))
10307 (let* ((path (match-string 1 link))
10308 (case-fold-search nil)
10309 (search (match-string 2 link)))
10310 (save-match-data
10311 (if (equal (file-truename buffer-file-name) (file-truename path))
10312 ;; We are linking to this same file, with a search option
10313 (setq link search)))))
10315 ;; Check if we can/should use a relative path. If yes, simplify the link
10316 (when (string-match "^\\(file:\\|docview:\\)\\(.*\\)" link)
10317 (let* ((type (match-string 1 link))
10318 (path (match-string 2 link))
10319 (origpath path)
10320 (case-fold-search nil))
10321 (cond
10322 ((or (eq org-link-file-path-type 'absolute)
10323 (equal complete-file '(16)))
10324 (setq path (abbreviate-file-name (expand-file-name path))))
10325 ((eq org-link-file-path-type 'noabbrev)
10326 (setq path (expand-file-name path)))
10327 ((eq org-link-file-path-type 'relative)
10328 (setq path (file-relative-name path)))
10330 (save-match-data
10331 (if (string-match (concat "^" (regexp-quote
10332 (expand-file-name
10333 (file-name-as-directory
10334 default-directory))))
10335 (expand-file-name path))
10336 ;; We are linking a file with relative path name.
10337 (setq path (substring (expand-file-name path)
10338 (match-end 0)))
10339 (setq path (abbreviate-file-name (expand-file-name path)))))))
10340 (setq link (concat type path))
10341 (if (equal desc origpath)
10342 (setq desc path))))
10344 (if org-make-link-description-function
10345 (setq desc
10346 (or (condition-case nil
10347 (funcall org-make-link-description-function link desc)
10348 (error (progn (message "Can't get link description from `%s'"
10349 (symbol-name org-make-link-description-function))
10350 (sit-for 2) nil)))
10351 (read-string "Description: " default-description)))
10352 (if default-description (setq desc default-description)
10353 (setq desc (or (and auto-desc desc)
10354 (read-string "Description: " desc)))))
10356 (unless (string-match "\\S-" desc) (setq desc nil))
10357 (if remove (apply 'delete-region remove))
10358 (insert (org-make-link-string link desc))))
10360 (defun org-link-try-special-completion (type)
10361 "If there is completion support for link type TYPE, offer it."
10362 (let ((fun (intern (concat "org-" type "-complete-link"))))
10363 (if (functionp fun)
10364 (funcall fun)
10365 (read-string "Link (no completion support): " (concat type ":")))))
10367 (defun org-file-complete-link (&optional arg)
10368 "Create a file link using completion."
10369 (let (file link)
10370 (setq file (org-iread-file-name "File: "))
10371 (let ((pwd (file-name-as-directory (expand-file-name ".")))
10372 (pwd1 (file-name-as-directory (abbreviate-file-name
10373 (expand-file-name ".")))))
10374 (cond
10375 ((equal arg '(16))
10376 (setq link (concat
10377 "file:"
10378 (abbreviate-file-name (expand-file-name file)))))
10379 ((string-match (concat "^" (regexp-quote pwd1) "\\(.+\\)") file)
10380 (setq link (concat "file:" (match-string 1 file))))
10381 ((string-match (concat "^" (regexp-quote pwd) "\\(.+\\)")
10382 (expand-file-name file))
10383 (setq link (concat
10384 "file:" (match-string 1 (expand-file-name file)))))
10385 (t (setq link (concat "file:" file)))))
10386 link))
10388 (defun org-iread-file-name (&rest args)
10389 "Read-file-name using `ido-mode' speedup if available.
10390 ARGS are arguments that may be passed to `ido-read-file-name' or `read-file-name'.
10391 See `read-file-name' for a description of parameters."
10392 (org-without-partial-completion
10393 (if (and org-completion-use-ido
10394 (fboundp 'ido-read-file-name)
10395 (boundp 'ido-mode) ido-mode
10396 (listp (second args)))
10397 (let ((ido-enter-matching-directory nil))
10398 (apply 'ido-read-file-name args))
10399 (apply 'read-file-name args))))
10401 (defun org-completing-read (&rest args)
10402 "Completing-read with SPACE being a normal character."
10403 (let ((enable-recursive-minibuffers t)
10404 (minibuffer-local-completion-map
10405 (copy-keymap minibuffer-local-completion-map)))
10406 (org-defkey minibuffer-local-completion-map " " 'self-insert-command)
10407 (org-defkey minibuffer-local-completion-map "?" 'self-insert-command)
10408 (org-defkey minibuffer-local-completion-map (kbd "C-c !") 'org-time-stamp-inactive)
10409 (apply 'org-icompleting-read args)))
10411 (defun org-completing-read-no-i (&rest args)
10412 (let (org-completion-use-ido org-completion-use-iswitchb)
10413 (apply 'org-completing-read args)))
10415 (defun org-iswitchb-completing-read (prompt choices &rest args)
10416 "Use iswitch as a completing-read replacement to choose from choices.
10417 PROMPT is a string to prompt with. CHOICES is a list of strings to choose
10418 from."
10419 (let* ((iswitchb-use-virtual-buffers nil)
10420 (iswitchb-make-buflist-hook
10421 (lambda ()
10422 (setq iswitchb-temp-buflist choices))))
10423 (iswitchb-read-buffer prompt)))
10425 (defun org-icompleting-read (&rest args)
10426 "Completing-read using `ido-mode' or `iswitchb' speedups if available."
10427 (org-without-partial-completion
10428 (if (and org-completion-use-ido
10429 (fboundp 'ido-completing-read)
10430 (boundp 'ido-mode) ido-mode
10431 (listp (second args)))
10432 (let ((ido-enter-matching-directory nil))
10433 (apply 'ido-completing-read (concat (car args))
10434 (if (consp (car (nth 1 args)))
10435 (mapcar 'car (nth 1 args))
10436 (nth 1 args))
10437 (cddr args)))
10438 (if (and org-completion-use-iswitchb
10439 (boundp 'iswitchb-mode) iswitchb-mode
10440 (listp (second args)))
10441 (apply 'org-iswitchb-completing-read (concat (car args))
10442 (if (consp (car (nth 1 args)))
10443 (mapcar 'car (nth 1 args))
10444 (nth 1 args))
10445 (cddr args))
10446 (apply 'completing-read args)))))
10448 (defun org-extract-attributes (s)
10449 "Extract the attributes cookie from a string and set as text property."
10450 (let (a attr (start 0) key value)
10451 (save-match-data
10452 (when (string-match "{{\\([^}]+\\)}}$" s)
10453 (setq a (match-string 1 s) s (substring s 0 (match-beginning 0)))
10454 (while (string-match "\\([a-zA-Z]+\\)=\"\\([^\"]*\\)\"" a start)
10455 (setq key (match-string 1 a) value (match-string 2 a)
10456 start (match-end 0)
10457 attr (plist-put attr (intern key) value))))
10458 (org-add-props s nil 'org-attr attr))
10461 ;;; Opening/following a link
10463 (defvar org-link-search-failed nil)
10465 (defvar org-open-link-functions nil
10466 "Hook for functions finding a plain text link.
10467 These functions must take a single argument, the link content.
10468 They will be called for links that look like [[link text][description]]
10469 when LINK TEXT does not have a protocol like \"http:\" and does not look
10470 like a filename (e.g. \"./blue.png\").
10472 These functions will be called *before* Org attempts to resolve the
10473 link by doing text searches in the current buffer - so if you want a
10474 link \"[[target]]\" to still find \"<<target>>\", your function should
10475 handle this as a special case.
10477 When the function does handle the link, it must return a non-nil value.
10478 If it decides that it is not responsible for this link, it must return
10479 nil to indicate that that Org-mode can continue with other options
10480 like exact and fuzzy text search.")
10482 (defun org-next-link (&optional search-backward)
10483 "Move forward to the next link.
10484 If the link is in hidden text, expose it."
10485 (interactive "P")
10486 (when (and org-link-search-failed (eq this-command last-command))
10487 (goto-char (point-min))
10488 (message "Link search wrapped back to beginning of buffer"))
10489 (setq org-link-search-failed nil)
10490 (let* ((pos (point))
10491 (ct (org-context))
10492 (a (assoc :link ct))
10493 (srch-fun (if search-backward 're-search-backward 're-search-forward)))
10494 (cond (a (goto-char (nth (if search-backward 1 2) a)))
10495 ((looking-at org-any-link-re)
10496 ;; Don't stay stuck at link without an org-link face
10497 (forward-char (if search-backward -1 1))))
10498 (if (funcall srch-fun org-any-link-re nil t)
10499 (progn
10500 (goto-char (match-beginning 0))
10501 (if (outline-invisible-p) (org-show-context)))
10502 (goto-char pos)
10503 (setq org-link-search-failed t)
10504 (message "No further link found"))))
10506 (defun org-previous-link ()
10507 "Move backward to the previous link.
10508 If the link is in hidden text, expose it."
10509 (interactive)
10510 (funcall 'org-next-link t))
10512 (defun org-translate-link (s)
10513 "Translate a link string if a translation function has been defined."
10514 (if (and org-link-translation-function
10515 (fboundp org-link-translation-function)
10516 (string-match "\\([a-zA-Z0-9]+\\):\\(.*\\)" s))
10517 (progn
10518 (setq s (funcall org-link-translation-function
10519 (match-string 1 s) (match-string 2 s)))
10520 (concat (car s) ":" (cdr s)))
10523 (defun org-translate-link-from-planner (type path)
10524 "Translate a link from Emacs Planner syntax so that Org can follow it.
10525 This is still an experimental function, your mileage may vary."
10526 (cond
10527 ((member type '("http" "https" "news" "ftp"))
10528 ;; standard Internet links are the same.
10529 nil)
10530 ((and (equal type "irc") (string-match "^//" path))
10531 ;; Planner has two / at the beginning of an irc link, we have 1.
10532 ;; We should have zero, actually....
10533 (setq path (substring path 1)))
10534 ((and (equal type "lisp") (string-match "^/" path))
10535 ;; Planner has a slash, we do not.
10536 (setq type "elisp" path (substring path 1)))
10537 ((string-match "^//\\(.?*\\)/\\(<.*>\\)$" path)
10538 ;; A typical message link. Planner has the id after the final slash,
10539 ;; we separate it with a hash mark
10540 (setq path (concat (match-string 1 path) "#"
10541 (org-remove-angle-brackets (match-string 2 path))))))
10542 (cons type path))
10544 (defun org-find-file-at-mouse (ev)
10545 "Open file link or URL at mouse."
10546 (interactive "e")
10547 (mouse-set-point ev)
10548 (org-open-at-point 'in-emacs))
10550 (defun org-open-at-mouse (ev)
10551 "Open file link or URL at mouse.
10552 See the docstring of `org-open-file' for details."
10553 (interactive "e")
10554 (mouse-set-point ev)
10555 (if (eq major-mode 'org-agenda-mode)
10556 (org-agenda-copy-local-variable 'org-link-abbrev-alist-local))
10557 (org-open-at-point))
10559 (defvar org-window-config-before-follow-link nil
10560 "The window configuration before following a link.
10561 This is saved in case the need arises to restore it.")
10563 (defvar org-open-link-marker (make-marker)
10564 "Marker pointing to the location where `org-open-at-point' was called.")
10566 ;;;###autoload
10567 (defun org-open-at-point-global ()
10568 "Follow a link like Org-mode does.
10569 This command can be called in any mode to follow a link that has
10570 Org-mode syntax."
10571 (interactive)
10572 (org-run-like-in-org-mode 'org-open-at-point))
10574 ;;;###autoload
10575 (defun org-open-link-from-string (s &optional arg reference-buffer)
10576 "Open a link in the string S, as if it was in Org-mode."
10577 (interactive "sLink: \nP")
10578 (let ((reference-buffer (or reference-buffer (current-buffer))))
10579 (with-temp-buffer
10580 (let ((org-inhibit-startup (not reference-buffer)))
10581 (org-mode)
10582 (insert s)
10583 (goto-char (point-min))
10584 (when reference-buffer
10585 (setq org-link-abbrev-alist-local
10586 (with-current-buffer reference-buffer
10587 org-link-abbrev-alist-local)))
10588 (org-open-at-point arg reference-buffer)))))
10590 (defvar org-open-at-point-functions nil
10591 "Hook that is run when following a link at point.
10593 Functions in this hook must return t if they identify and follow
10594 a link at point. If they don't find anything interesting at point,
10595 they must return nil.")
10597 (defvar org-link-search-inhibit-query nil) ;; dynamically scoped
10598 (defvar clean-buffer-list-kill-buffer-names) ; Defined in midnight.el
10599 (defun org-open-at-point (&optional arg reference-buffer)
10600 "Open link, timestamp, footnote or tags at point.
10602 When point is on a link, follow it. Normally, files will be
10603 opened by an appropriate application. If the optional prefix
10604 argument ARG is non-nil, Emacs will visit the file. With
10605 a double prefix argument, try to open outside of Emacs, in the
10606 application the system uses for this file type.
10608 When point is on a timestamp, open the agenda at the day
10609 specified.
10611 When point is a footnote definition, move to the first reference
10612 found. If it is on a reference, move to the associated
10613 definition.
10615 When point is on a headline, display a list of every link in the
10616 entry, so it is possible to pick one, or all, of them. If point
10617 is on a tag, call `org-tags-view' instead.
10619 When optional argument REFERENCE-BUFFER is non-nil, it should
10620 specify a buffer from where the link search should happen. This
10621 is used internally by `org-open-link-from-string'.
10623 On top of syntactically correct links, this function will open
10624 the link at point in comments and the first link in a property
10625 drawer line."
10626 (interactive "P")
10627 ;; On a code block, open block's results.
10628 (unless (call-interactively 'org-babel-open-src-block-result)
10629 (org-load-modules-maybe)
10630 (move-marker org-open-link-marker (point))
10631 (setq org-window-config-before-follow-link (current-window-configuration))
10632 (org-remove-occur-highlights nil nil t)
10633 (unless (run-hook-with-args-until-success 'org-open-at-point-functions)
10634 (let* ((context (org-element-context)) type value)
10635 ;; On an unsupported type, check if point is contained within
10636 ;; a support one.
10637 (while (and (not (memq (setq type (org-element-type context))
10638 '(comment headline inlinetask link
10639 footnote-definition footnote-reference
10640 node-property timestamp)))
10641 (setq context (org-element-property :parent context))))
10642 (setq value (org-element-property :value context))
10643 (cond
10644 ;; Blank lines at the beginning of buffer: bail out.
10645 ((not context) (user-error "No link found"))
10646 ;; Exception n°1: links in property drawers
10647 ((eq type 'node-property)
10648 (org-open-link-from-string
10649 (and (string-match org-any-link-re value)
10650 (match-string-no-properties 0 value))))
10651 ;; Exception n°2: links in comments.
10652 ((eq type 'comment)
10653 (let ((string-rear (replace-regexp-in-string
10654 "^[ \t]*# [ \t]*" ""
10655 (buffer-substring (point) (line-beginning-position))))
10656 (string-front (buffer-substring (point) (line-end-position))))
10657 (with-temp-buffer
10658 (let ((org-inhibit-startup t)) (org-mode))
10659 (insert value)
10660 (goto-char (point-min))
10661 (when (and (search-forward string-rear nil t)
10662 (search-forward string-front (line-end-position) t))
10663 (goto-char (match-beginning 0))
10664 (org-open-at-point)
10665 (when (string= string-rear "") (forward-char))))))
10666 ;; On a headline or an inlinetask, but not on a timestamp,
10667 ;; a link, a footnote reference or on tags.
10668 ((and (memq type '(headline inlinetask))
10669 ;; Not on tags.
10670 (progn (save-excursion (beginning-of-line)
10671 (looking-at org-complex-heading-regexp))
10672 (or (not (match-beginning 5))
10673 (< (point) (match-beginning 5)))))
10674 (let* ((data (org-offer-links-in-entry (current-buffer) (point) arg))
10675 (links (car data))
10676 (links-end (cdr data)))
10677 (if links
10678 (dolist (link (if (stringp links) (list links) links))
10679 (search-forward link nil links-end)
10680 (goto-char (match-beginning 0))
10681 (org-open-at-point))
10682 (require 'org-attach)
10683 (org-attach-reveal 'if-exists))))
10684 ;; Do nothing on white spaces after an object, unless point
10685 ;; is right after it.
10686 ((> (point)
10687 (save-excursion
10688 (goto-char (org-element-property :end context))
10689 (skip-chars-backward " \t")
10690 (point)))
10691 (user-error "No link found"))
10692 ((eq type 'timestamp) (org-follow-timestamp-link))
10693 ;; On tags within a headline or an inlinetask.
10694 ((and (memq type '(headline inlinetask))
10695 (progn (save-excursion (beginning-of-line)
10696 (looking-at org-complex-heading-regexp))
10697 (and (match-beginning 5)
10698 (>= (point) (match-beginning 5)))))
10699 (org-tags-view arg (substring (match-string 5) 0 -1)))
10700 ((eq type 'link)
10701 (let ((type (org-element-property :type context))
10702 (path (org-link-unescape (org-element-property :path context))))
10703 ;; Switch back to REFERENCE-BUFFER needed when called in
10704 ;; a temporary buffer through `org-open-link-from-string'.
10705 (with-current-buffer (or reference-buffer (current-buffer))
10706 (cond
10707 ((equal type "file")
10708 (if (string-match "[*?{]" (file-name-nondirectory path))
10709 (dired path)
10710 ;; Look into `org-link-protocols' in order to find
10711 ;; a DEDICATED-FUNCTION to open file. The function
10712 ;; will be applied on raw link instead of parsed
10713 ;; link due to the limitation in `org-add-link-type'
10714 ;; ("open" function called with a single argument).
10715 ;; If no such function is found, fallback to
10716 ;; `org-open-file'.
10718 ;; Note : "file+emacs" and "file+sys" types are
10719 ;; hard-coded in order to escape the previous
10720 ;; limitation.
10721 (let* ((option (org-element-property :search-option context))
10722 (app (org-element-property :application context))
10723 (dedicated-function
10724 (nth 1 (assoc app org-link-protocols))))
10725 (if dedicated-function
10726 (funcall dedicated-function
10727 (concat path
10728 (and option (concat "::" option))))
10729 (apply 'org-open-file
10730 path
10731 (cond (arg)
10732 ((equal app "emacs") 'emacs)
10733 ((equal app "sys") 'system))
10734 (cond ((not option) nil)
10735 ((org-string-match-p "\\`[0-9]+\\'" option)
10736 (list (string-to-number option)))
10737 (t (list nil
10738 (org-link-unescape option)))))))))
10739 ((assoc type org-link-protocols)
10740 (funcall (nth 1 (assoc type org-link-protocols)) path))
10741 ((equal type "help")
10742 (let ((f-or-v (intern path)))
10743 (cond ((fboundp f-or-v) (describe-function f-or-v))
10744 ((boundp f-or-v) (describe-variable f-or-v))
10745 (t (error "Not a known function or variable")))))
10746 ((member type '("http" "https" "ftp" "mailto" "news"))
10747 (browse-url (org-link-escape-browser (concat type ":" path))))
10748 ((equal type "doi")
10749 (browse-url
10750 (org-link-escape-browser (concat org-doi-server-url path))))
10751 ((equal type "message") (browse-url (concat type ":" path)))
10752 ((equal type "shell")
10753 (let ((buf (generate-new-buffer "*Org Shell Output*"))
10754 (cmd path))
10755 (if (or (and (org-string-nw-p
10756 org-confirm-shell-link-not-regexp)
10757 (string-match
10758 org-confirm-shell-link-not-regexp cmd))
10759 (not org-confirm-shell-link-function)
10760 (funcall org-confirm-shell-link-function
10761 (format "Execute \"%s\" in shell? "
10762 (org-add-props cmd nil
10763 'face 'org-warning))))
10764 (progn
10765 (message "Executing %s" cmd)
10766 (shell-command cmd buf)
10767 (when (featurep 'midnight)
10768 (setq clean-buffer-list-kill-buffer-names
10769 (cons buf
10770 clean-buffer-list-kill-buffer-names))))
10771 (user-error "Abort"))))
10772 ((equal type "elisp")
10773 (let ((cmd path))
10774 (if (or (and (org-string-nw-p
10775 org-confirm-elisp-link-not-regexp)
10776 (org-string-match-p
10777 org-confirm-elisp-link-not-regexp cmd))
10778 (not org-confirm-elisp-link-function)
10779 (funcall org-confirm-elisp-link-function
10780 (format "Execute \"%s\" as elisp? "
10781 (org-add-props cmd nil
10782 'face 'org-warning))))
10783 (message "%s => %s" cmd
10784 (if (eq (string-to-char cmd) ?\()
10785 (eval (read cmd))
10786 (call-interactively (read cmd))))
10787 (user-error "Abort"))))
10788 ((equal type "id")
10789 (require 'ord-id)
10790 (funcall (nth 1 (assoc "id" org-link-protocols)) path))
10791 ((member type '("coderef" "custom-id" "fuzzy" "radio"))
10792 (unless (run-hook-with-args-until-success
10793 'org-open-link-functions path)
10794 (if (not arg) (org-mark-ring-push)
10795 (switch-to-buffer-other-window
10796 (org-get-buffer-for-internal-link (current-buffer))))
10797 (let ((cmd `(org-link-search
10798 ,(if (member type '("custom-id" "coderef"))
10799 (org-element-property :raw-link context)
10800 path)
10801 ,(cond ((equal arg '(4)) 'occur)
10802 ((equal arg '(16)) 'org-occur))
10803 ,(org-element-property :begin context))))
10804 (condition-case nil
10805 (let ((org-link-search-inhibit-query t))
10806 (eval cmd))
10807 (error (progn (widen) (eval cmd)))))))
10808 (t (browse-url-at-point))))))
10809 ;; On a footnote reference or at a footnote definition's label.
10810 ((or (eq type 'footnote-reference)
10811 (and (eq type 'footnote-definition)
10812 (save-excursion
10813 ;; Do not validate action when point is on the
10814 ;; spaces right after the footnote label, in
10815 ;; order to be on par with behaviour on links.
10816 (skip-chars-forward " \t")
10817 (let ((begin
10818 (org-element-property :contents-begin context)))
10819 (if begin (< (point) begin)
10820 (= (org-element-property :post-affiliated context)
10821 (line-beginning-position)))))))
10822 (org-footnote-action))
10823 (t (user-error "No link found")))))
10824 (move-marker org-open-link-marker nil)
10825 (run-hook-with-args 'org-follow-link-hook)))
10827 (defun org-offer-links-in-entry (buffer marker &optional nth zero)
10828 "Offer links in the current entry and return the selected link.
10829 If there is only one link, return it.
10830 If NTH is an integer, return the NTH link found.
10831 If ZERO is a string, check also this string for a link, and if
10832 there is one, return it."
10833 (with-current-buffer buffer
10834 (save-excursion
10835 (save-restriction
10836 (widen)
10837 (goto-char marker)
10838 (let ((cnt ?0)
10839 (in-emacs (if (integerp nth) nil nth))
10840 have-zero end links link c)
10841 (when (and (stringp zero) (string-match org-bracket-link-regexp zero))
10842 (push (match-string 0 zero) links)
10843 (setq cnt (1- cnt) have-zero t))
10844 (save-excursion
10845 (org-back-to-heading t)
10846 (setq end (save-excursion (outline-next-heading) (point)))
10847 (while (re-search-forward org-any-link-re end t)
10848 (push (match-string 0) links))
10849 (setq links (org-uniquify (reverse links))))
10850 (cond
10851 ((null links)
10852 (message "No links"))
10853 ((equal (length links) 1)
10854 (setq link (car links)))
10855 ((and (integerp nth) (>= (length links) (if have-zero (1+ nth) nth)))
10856 (setq link (nth (if have-zero nth (1- nth)) links)))
10857 (t ; we have to select a link
10858 (save-excursion
10859 (save-window-excursion
10860 (delete-other-windows)
10861 (with-output-to-temp-buffer "*Select Link*"
10862 (mapc (lambda (l)
10863 (if (not (string-match org-bracket-link-regexp l))
10864 (princ (format "[%c] %s\n" (incf cnt)
10865 (org-remove-angle-brackets l)))
10866 (if (match-end 3)
10867 (princ (format "[%c] %s (%s)\n" (incf cnt)
10868 (match-string 3 l) (match-string 1 l)))
10869 (princ (format "[%c] %s\n" (incf cnt)
10870 (match-string 1 l))))))
10871 links))
10872 (org-fit-window-to-buffer (get-buffer-window "*Select Link*"))
10873 (message "Select link to open, RET to open all:")
10874 (setq c (read-char-exclusive))
10875 (and (get-buffer "*Select Link*") (kill-buffer "*Select Link*"))))
10876 (when (equal c ?q) (user-error "Abort"))
10877 (if (equal c ?\C-m)
10878 (setq link links)
10879 (setq nth (- c ?0))
10880 (if have-zero (setq nth (1+ nth)))
10881 (unless (and (integerp nth) (>= (length links) nth))
10882 (user-error "Invalid link selection"))
10883 (setq link (nth (1- nth) links)))))
10884 (cons link end))))))
10886 ;; TODO: These functions are deprecated since `org-open-at-point'
10887 ;; hard-codes behaviour for "file+emacs" and "file+sys" types.
10888 (defun org-open-file-with-system (path)
10889 "Open file at PATH using the system way of opening it."
10890 (org-open-file path 'system))
10891 (defun org-open-file-with-emacs (path)
10892 "Open file at PATH in Emacs."
10893 (org-open-file path 'emacs))
10896 ;;; File search
10898 (defvar org-create-file-search-functions nil
10899 "List of functions to construct the right search string for a file link.
10900 These functions are called in turn with point at the location to
10901 which the link should point.
10903 A function in the hook should first test if it would like to
10904 handle this file type, for example by checking the `major-mode'
10905 or the file extension. If it decides not to handle this file, it
10906 should just return nil to give other functions a chance. If it
10907 does handle the file, it must return the search string to be used
10908 when following the link. The search string will be part of the
10909 file link, given after a double colon, and `org-open-at-point'
10910 will automatically search for it. If special measures must be
10911 taken to make the search successful, another function should be
10912 added to the companion hook `org-execute-file-search-functions',
10913 which see.
10915 A function in this hook may also use `setq' to set the variable
10916 `description' to provide a suggestion for the descriptive text to
10917 be used for this link when it gets inserted into an Org-mode
10918 buffer with \\[org-insert-link].")
10920 (defvar org-execute-file-search-functions nil
10921 "List of functions to execute a file search triggered by a link.
10923 Functions added to this hook must accept a single argument, the
10924 search string that was part of the file link, the part after the
10925 double colon. The function must first check if it would like to
10926 handle this search, for example by checking the `major-mode' or
10927 the file extension. If it decides not to handle this search, it
10928 should just return nil to give other functions a chance. If it
10929 does handle the search, it must return a non-nil value to keep
10930 other functions from trying.
10932 Each function can access the current prefix argument through the
10933 variable `current-prefix-arg'. Note that a single prefix is used
10934 to force opening a link in Emacs, so it may be good to only use a
10935 numeric or double prefix to guide the search function.
10937 In case this is needed, a function in this hook can also restore
10938 the window configuration before `org-open-at-point' was called using:
10940 (set-window-configuration org-window-config-before-follow-link)")
10942 (defun org-link-search (s &optional type avoid-pos stealth)
10943 "Search for a link search option.
10944 If S is surrounded by forward slashes, it is interpreted as a
10945 regular expression. In org-mode files, this will create an `org-occur'
10946 sparse tree. In ordinary files, `occur' will be used to list matches.
10947 If the current buffer is in `dired-mode', grep will be used to search
10948 in all files. If AVOID-POS is given, ignore matches near that position.
10950 When optional argument STEALTH is non-nil, do not modify
10951 visibility around point, thus ignoring
10952 `org-show-hierarchy-above', `org-show-following-heading' and
10953 `org-show-siblings' variables."
10954 (let ((case-fold-search t)
10955 (s0 (mapconcat 'identity (org-split-string s "[ \t\r\n]+") " "))
10956 (markers (concat "\\(?:" (mapconcat (lambda (x) (regexp-quote (car x)))
10957 (append '(("") (" ") ("\t") ("\n"))
10958 org-emphasis-alist)
10959 "\\|") "\\)"))
10960 (pos (point))
10961 (pre nil) (post nil)
10962 words re0 re1 re2 re3 re4_ re4 re5 re2a re2a_ reall)
10963 (cond
10964 ;; First check if there are any special search functions
10965 ((run-hook-with-args-until-success 'org-execute-file-search-functions s))
10966 ;; Now try the builtin stuff
10967 ((and (equal (string-to-char s0) ?#)
10968 (> (length s0) 1)
10969 (save-excursion
10970 (goto-char (point-min))
10971 (and
10972 (re-search-forward
10973 (concat "^[ \t]*:CUSTOM_ID:[ \t]+"
10974 (regexp-quote (substring s0 1)) "[ \t]*$") nil t)
10975 (setq type 'dedicated
10976 pos (match-beginning 0))))
10977 ;; There is an exact target for this
10978 (goto-char pos)
10979 (org-back-to-heading t)))
10980 ((save-excursion
10981 (goto-char (point-min))
10982 (and
10983 (re-search-forward
10984 (concat "<<" (regexp-quote s0) ">>") nil t)
10985 (setq type 'dedicated
10986 pos (match-beginning 0))))
10987 ;; There is an exact target for this
10988 (goto-char pos))
10989 ((save-excursion
10990 (goto-char (point-min))
10991 (and
10992 (re-search-forward
10993 (format "^[ \t]*#\\+NAME: %s" (regexp-quote s0)) nil t)
10994 (setq type 'dedicated pos (match-beginning 0))))
10995 ;; Found an element with a matching #+name affiliated keyword.
10996 (goto-char pos))
10997 ((and (string-match "^(\\(.*\\))$" s0)
10998 (save-excursion
10999 (goto-char (point-min))
11000 (and
11001 (re-search-forward
11002 (concat "[^[]" (regexp-quote
11003 (format org-coderef-label-format
11004 (match-string 1 s0))))
11005 nil t)
11006 (setq type 'dedicated
11007 pos (1+ (match-beginning 0))))))
11008 ;; There is a coderef target for this
11009 (goto-char pos))
11010 ((string-match "^/\\(.*\\)/$" s)
11011 ;; A regular expression
11012 (cond
11013 ((derived-mode-p 'org-mode)
11014 (org-occur (match-string 1 s)))
11015 (t (org-do-occur (match-string 1 s)))))
11016 ((and (derived-mode-p 'org-mode) org-link-search-must-match-exact-headline)
11017 (and (equal (string-to-char s) ?*) (setq s (substring s 1)))
11018 (goto-char (point-min))
11019 (cond
11020 ((let (case-fold-search)
11021 (re-search-forward (format org-complex-heading-regexp-format
11022 (regexp-quote s))
11023 nil t))
11024 ;; OK, found a match
11025 (setq type 'dedicated)
11026 (goto-char (match-beginning 0)))
11027 ((and (not org-link-search-inhibit-query)
11028 (eq org-link-search-must-match-exact-headline 'query-to-create)
11029 (y-or-n-p "No match - create this as a new heading? "))
11030 (goto-char (point-max))
11031 (or (bolp) (newline))
11032 (insert "* " s "\n")
11033 (beginning-of-line 0))
11035 (goto-char pos)
11036 (error "No match"))))
11038 ;; A normal search string
11039 (when (equal (string-to-char s) ?*)
11040 ;; Anchor on headlines, post may include tags.
11041 (setq pre "^\\*+[ \t]+\\(?:\\sw+\\)?[ \t]*"
11042 post (org-re "[ \t]*\\(?:[ \t]+:[[:alnum:]_@#%:+]:[ \t]*\\)?$")
11043 s (substring s 1)))
11044 (remove-text-properties
11045 0 (length s)
11046 '(face nil mouse-face nil keymap nil fontified nil) s)
11047 ;; Make a series of regular expressions to find a match
11048 (setq words (org-split-string s "[ \n\r\t]+")
11050 re0 (concat "\\(<<" (regexp-quote s0) ">>\\)")
11051 re2 (concat markers "\\(" (mapconcat 'downcase words "[ \t]+")
11052 "\\)" markers)
11053 re2a_ (concat "\\(" (mapconcat 'downcase words
11054 "[ \t\r\n]+") "\\)[ \t\r\n]")
11055 re2a (concat "[ \t\r\n]" re2a_)
11056 re4_ (concat "\\(" (mapconcat 'downcase words
11057 "[^a-zA-Z_\r\n]+") "\\)[^a-zA-Z_]")
11058 re4 (concat "[^a-zA-Z_]" re4_)
11060 re1 (concat pre re2 post)
11061 re3 (concat pre (if pre re4_ re4) post)
11062 re5 (concat pre ".*" re4)
11063 re2 (concat pre re2)
11064 re2a (concat pre (if pre re2a_ re2a))
11065 re4 (concat pre (if pre re4_ re4))
11066 reall (concat "\\(" re0 "\\)\\|\\(" re1 "\\)\\|\\(" re2
11067 "\\)\\|\\(" re3 "\\)\\|\\(" re4 "\\)\\|\\("
11068 re5 "\\)"))
11069 (cond
11070 ((eq type 'org-occur) (org-occur reall))
11071 ((eq type 'occur) (org-do-occur (downcase reall) 'cleanup))
11072 (t (goto-char (point-min))
11073 (setq type 'fuzzy)
11074 (if (or (and (org-search-not-self 1 re0 nil t)
11075 (setq type 'dedicated))
11076 (org-search-not-self 1 re1 nil t)
11077 (org-search-not-self 1 re2 nil t)
11078 (org-search-not-self 1 re2a nil t)
11079 (org-search-not-self 1 re3 nil t)
11080 (org-search-not-self 1 re4 nil t)
11081 (org-search-not-self 1 re5 nil t))
11082 (goto-char (match-beginning 1))
11083 (goto-char pos)
11084 (error "No match"))))))
11085 (and (derived-mode-p 'org-mode)
11086 (not stealth)
11087 (org-show-context 'link-search))
11088 type))
11090 (defun org-search-not-self (group &rest args)
11091 "Execute `re-search-forward', but only accept matches that do not
11092 enclose the position of `org-open-link-marker'."
11093 (let ((m org-open-link-marker))
11094 (catch 'exit
11095 (while (apply 're-search-forward args)
11096 (unless (get-text-property (match-end group) 'intangible) ; Emacs 21
11097 (goto-char (match-end group))
11098 (if (and (or (not (eq (marker-buffer m) (current-buffer)))
11099 (> (match-beginning 0) (marker-position m))
11100 (< (match-end 0) (marker-position m)))
11101 (save-match-data
11102 (or (not (org-in-regexp
11103 org-bracket-link-analytic-regexp 1))
11104 (not (match-end 4)) ; no description
11105 (and (<= (match-beginning 4) (point))
11106 (>= (match-end 4) (point))))))
11107 (throw 'exit (point))))))))
11109 (defun org-get-buffer-for-internal-link (buffer)
11110 "Return a buffer to be used for displaying the link target of internal links."
11111 (cond
11112 ((not org-display-internal-link-with-indirect-buffer)
11113 buffer)
11114 ((string-match "(Clone)$" (buffer-name buffer))
11115 (message "Buffer is already a clone, not making another one")
11116 ;; we also do not modify visibility in this case
11117 buffer)
11118 (t ; make a new indirect buffer for displaying the link
11119 (let* ((bn (buffer-name buffer))
11120 (ibn (concat bn "(Clone)"))
11121 (ib (or (get-buffer ibn) (make-indirect-buffer buffer ibn 'clone))))
11122 (with-current-buffer ib (org-overview))
11123 ib))))
11125 (defun org-do-occur (regexp &optional cleanup)
11126 "Call the Emacs command `occur'.
11127 If CLEANUP is non-nil, remove the printout of the regular expression
11128 in the *Occur* buffer. This is useful if the regex is long and not useful
11129 to read."
11130 (occur regexp)
11131 (when cleanup
11132 (let ((cwin (selected-window)) win beg end)
11133 (when (setq win (get-buffer-window "*Occur*"))
11134 (select-window win))
11135 (goto-char (point-min))
11136 (when (re-search-forward "match[a-z]+" nil t)
11137 (setq beg (match-end 0))
11138 (if (re-search-forward "^[ \t]*[0-9]+" nil t)
11139 (setq end (1- (match-beginning 0)))))
11140 (and beg end (let ((inhibit-read-only t)) (delete-region beg end)))
11141 (goto-char (point-min))
11142 (select-window cwin))))
11144 ;;; The mark ring for links jumps
11146 (defvar org-mark-ring nil
11147 "Mark ring for positions before jumps in Org-mode.")
11148 (defvar org-mark-ring-last-goto nil
11149 "Last position in the mark ring used to go back.")
11150 ;; Fill and close the ring
11151 (setq org-mark-ring nil org-mark-ring-last-goto nil) ;; in case file is reloaded
11152 (loop for i from 1 to org-mark-ring-length do
11153 (push (make-marker) org-mark-ring))
11154 (setcdr (nthcdr (1- org-mark-ring-length) org-mark-ring)
11155 org-mark-ring)
11157 (defun org-mark-ring-push (&optional pos buffer)
11158 "Put the current position or POS into the mark ring and rotate it."
11159 (interactive)
11160 (setq pos (or pos (point)))
11161 (setq org-mark-ring (nthcdr (1- org-mark-ring-length) org-mark-ring))
11162 (move-marker (car org-mark-ring)
11163 (or pos (point))
11164 (or buffer (current-buffer)))
11165 (message "%s"
11166 (substitute-command-keys
11167 "Position saved to mark ring, go back with \\[org-mark-ring-goto].")))
11169 (defun org-mark-ring-goto (&optional n)
11170 "Jump to the previous position in the mark ring.
11171 With prefix arg N, jump back that many stored positions. When
11172 called several times in succession, walk through the entire ring.
11173 Org-mode commands jumping to a different position in the current file,
11174 or to another Org-mode file, automatically push the old position
11175 onto the ring."
11176 (interactive "p")
11177 (let (p m)
11178 (if (eq last-command this-command)
11179 (setq p (nthcdr n (or org-mark-ring-last-goto org-mark-ring)))
11180 (setq p org-mark-ring))
11181 (setq org-mark-ring-last-goto p)
11182 (setq m (car p))
11183 (org-pop-to-buffer-same-window (marker-buffer m))
11184 (goto-char m)
11185 (if (or (outline-invisible-p) (org-invisible-p2)) (org-show-context 'mark-goto))))
11187 (defun org-remove-angle-brackets (s)
11188 (if (equal (substring s 0 1) "<") (setq s (substring s 1)))
11189 (if (equal (substring s -1) ">") (setq s (substring s 0 -1)))
11191 (defun org-add-angle-brackets (s)
11192 (if (equal (substring s 0 1) "<") nil (setq s (concat "<" s)))
11193 (if (equal (substring s -1) ">") nil (setq s (concat s ">")))
11195 (defun org-remove-double-quotes (s)
11196 (if (equal (substring s 0 1) "\"") (setq s (substring s 1)))
11197 (if (equal (substring s -1) "\"") (setq s (substring s 0 -1)))
11200 ;;; Following specific links
11202 (defun org-follow-timestamp-link ()
11203 "Open an agenda view for the time-stamp date/range at point."
11204 (cond
11205 ((org-at-date-range-p t)
11206 (let ((org-agenda-start-on-weekday)
11207 (t1 (match-string 1))
11208 (t2 (match-string 2)) tt1 tt2)
11209 (setq tt1 (time-to-days (org-time-string-to-time t1))
11210 tt2 (time-to-days (org-time-string-to-time t2)))
11211 (let ((org-agenda-buffer-tmp-name
11212 (format "*Org Agenda(a:%s)"
11213 (concat (substring t1 0 10) "--" (substring t2 0 10)))))
11214 (org-agenda-list nil tt1 (1+ (- tt2 tt1))))))
11215 ((org-at-timestamp-p t)
11216 (let ((org-agenda-buffer-tmp-name
11217 (format "*Org Agenda(a:%s)" (substring (match-string 1) 0 10))))
11218 (org-agenda-list nil (time-to-days (org-time-string-to-time
11219 (substring (match-string 1) 0 10)))
11220 1)))
11221 (t (error "This should not happen"))))
11224 ;;; Following file links
11225 (declare-function mailcap-parse-mailcaps "mailcap" (&optional path force))
11226 (declare-function mailcap-extension-to-mime "mailcap" (extn))
11227 (declare-function mailcap-mime-info
11228 "mailcap" (string &optional request no-decode))
11229 (defvar org-wait nil)
11230 (defun org-open-file (path &optional in-emacs line search)
11231 "Open the file at PATH.
11232 First, this expands any special file name abbreviations. Then the
11233 configuration variable `org-file-apps' is checked if it contains an
11234 entry for this file type, and if yes, the corresponding command is launched.
11236 If no application is found, Emacs simply visits the file.
11238 With optional prefix argument IN-EMACS, Emacs will visit the file.
11239 With a double \\[universal-argument] \\[universal-argument] \
11240 prefix arg, Org tries to avoid opening in Emacs
11241 and to use an external application to visit the file.
11243 Optional LINE specifies a line to go to, optional SEARCH a string
11244 to search for. If LINE or SEARCH is given, the file will be
11245 opened in Emacs, unless an entry from org-file-apps that makes
11246 use of groups in a regexp matches.
11248 If you want to change the way frames are used when following a
11249 link, please customize `org-link-frame-setup'.
11251 If the file does not exist, an error is thrown."
11252 (let* ((file (if (equal path "")
11253 buffer-file-name
11254 (substitute-in-file-name (expand-file-name path))))
11255 (file-apps (append org-file-apps (org-default-apps)))
11256 (apps (org-remove-if
11257 'org-file-apps-entry-match-against-dlink-p file-apps))
11258 (apps-dlink (org-remove-if-not
11259 'org-file-apps-entry-match-against-dlink-p file-apps))
11260 (remp (and (assq 'remote apps) (org-file-remote-p file)))
11261 (dirp (if remp nil (file-directory-p file)))
11262 (file (if (and dirp org-open-directory-means-index-dot-org)
11263 (concat (file-name-as-directory file) "index.org")
11264 file))
11265 (a-m-a-p (assq 'auto-mode apps))
11266 (dfile (downcase file))
11267 ;; reconstruct the original file: link from the PATH, LINE and SEARCH args
11268 (link (cond ((and (eq line nil)
11269 (eq search nil))
11270 file)
11271 (line
11272 (concat file "::" (number-to-string line)))
11273 (search
11274 (concat file "::" search))))
11275 (dlink (downcase link))
11276 (old-buffer (current-buffer))
11277 (old-pos (point))
11278 (old-mode major-mode)
11279 ext cmd link-match-data)
11280 (if (string-match "^.*\\.\\([a-zA-Z0-9]+\\.gz\\)$" dfile)
11281 (setq ext (match-string 1 dfile))
11282 (if (string-match "^.*\\.\\([a-zA-Z0-9]+\\)$" dfile)
11283 (setq ext (match-string 1 dfile))))
11284 (cond
11285 ((member in-emacs '((16) system))
11286 (setq cmd (cdr (assoc 'system apps))))
11287 (in-emacs (setq cmd 'emacs))
11289 (setq cmd (or (and remp (cdr (assoc 'remote apps)))
11290 (and dirp (cdr (assoc 'directory apps)))
11291 ; first, try matching against apps-dlink
11292 ; if we get a match here, store the match data for later
11293 (let ((match (assoc-default dlink apps-dlink
11294 'string-match)))
11295 (if match
11296 (progn (setq link-match-data (match-data))
11297 match)
11298 (progn (setq in-emacs (or in-emacs line search))
11299 nil))) ; if we have no match in apps-dlink,
11300 ; always open the file in emacs if line or search
11301 ; is given (for backwards compatibility)
11302 (assoc-default dfile (org-apps-regexp-alist apps a-m-a-p)
11303 'string-match)
11304 (cdr (assoc ext apps))
11305 (cdr (assoc t apps))))))
11306 (when (eq cmd 'system)
11307 (setq cmd (cdr (assoc 'system apps))))
11308 (when (eq cmd 'default)
11309 (setq cmd (cdr (assoc t apps))))
11310 (when (eq cmd 'mailcap)
11311 (require 'mailcap)
11312 (mailcap-parse-mailcaps)
11313 (let* ((mime-type (mailcap-extension-to-mime (or ext "")))
11314 (command (mailcap-mime-info mime-type)))
11315 (if (stringp command)
11316 (setq cmd command)
11317 (setq cmd 'emacs))))
11318 (if (and (not (eq cmd 'emacs)) ; Emacs has no problems with non-ex files
11319 (not (file-exists-p file))
11320 (not org-open-non-existing-files))
11321 (user-error "No such file: %s" file))
11322 (cond
11323 ((and (stringp cmd) (not (string-match "^\\s-*$" cmd)))
11324 ;; Remove quotes around the file name - we'll use shell-quote-argument.
11325 (while (string-match "['\"]%s['\"]" cmd)
11326 (setq cmd (replace-match "%s" t t cmd)))
11327 (while (string-match "%s" cmd)
11328 (setq cmd (replace-match
11329 (save-match-data
11330 (shell-quote-argument
11331 (convert-standard-filename file)))
11332 t t cmd)))
11334 ;; Replace "%1", "%2" etc. in command with group matches from regex
11335 (save-match-data
11336 (let ((match-index 1)
11337 (number-of-groups (- (/ (length link-match-data) 2) 1)))
11338 (set-match-data link-match-data)
11339 (while (<= match-index number-of-groups)
11340 (let ((regex (concat "%" (number-to-string match-index)))
11341 (replace-with (match-string match-index dlink)))
11342 (while (string-match regex cmd)
11343 (setq cmd (replace-match replace-with t t cmd))))
11344 (setq match-index (+ match-index 1)))))
11346 (save-window-excursion
11347 (message "Running %s...done" cmd)
11348 (start-process-shell-command cmd nil cmd)
11349 (and (boundp 'org-wait) (numberp org-wait) (sit-for org-wait))))
11350 ((or (stringp cmd)
11351 (eq cmd 'emacs))
11352 (funcall (cdr (assq 'file org-link-frame-setup)) file)
11353 (widen)
11354 (if line (progn (org-goto-line line)
11355 (if (derived-mode-p 'org-mode)
11356 (org-reveal)))
11357 (if search (org-link-search search))))
11358 ((consp cmd)
11359 (let ((file (convert-standard-filename file)))
11360 (save-match-data
11361 (set-match-data link-match-data)
11362 (eval cmd))))
11363 (t (funcall (cdr (assq 'file org-link-frame-setup)) file)))
11364 (and (derived-mode-p 'org-mode) (eq old-mode 'org-mode)
11365 (or (not (equal old-buffer (current-buffer)))
11366 (not (equal old-pos (point))))
11367 (org-mark-ring-push old-pos old-buffer))))
11369 (defun org-file-apps-entry-match-against-dlink-p (entry)
11370 "This function returns non-nil if `entry' uses a regular
11371 expression which should be matched against the whole link by
11372 org-open-file.
11374 It assumes that is the case when the entry uses a regular
11375 expression which has at least one grouping construct and the
11376 action is either a lisp form or a command string containing
11377 '%1', i.e. using at least one subexpression match as a
11378 parameter."
11379 (let ((selector (car entry))
11380 (action (cdr entry)))
11381 (if (stringp selector)
11382 (and (> (regexp-opt-depth selector) 0)
11383 (or (and (stringp action)
11384 (string-match "%[0-9]" action))
11385 (consp action)))
11386 nil)))
11388 (defun org-default-apps ()
11389 "Return the default applications for this operating system."
11390 (cond
11391 ((eq system-type 'darwin)
11392 org-file-apps-defaults-macosx)
11393 ((eq system-type 'windows-nt)
11394 org-file-apps-defaults-windowsnt)
11395 (t org-file-apps-defaults-gnu)))
11397 (defun org-apps-regexp-alist (list &optional add-auto-mode)
11398 "Convert extensions to regular expressions in the cars of LIST.
11399 Also, weed out any non-string entries, because the return value is used
11400 only for regexp matching.
11401 When ADD-AUTO-MODE is set, make all matches in `auto-mode-alist'
11402 point to the symbol `emacs', indicating that the file should
11403 be opened in Emacs."
11404 (append
11405 (delq nil
11406 (mapcar (lambda (x)
11407 (if (not (stringp (car x)))
11409 (if (string-match "\\W" (car x))
11411 (cons (concat "\\." (car x) "\\'") (cdr x)))))
11412 list))
11413 (if add-auto-mode
11414 (mapcar (lambda (x) (cons (car x) 'emacs)) auto-mode-alist))))
11416 (defvar ange-ftp-name-format) ; to silence the XEmacs compiler.
11417 (defun org-file-remote-p (file)
11418 "Test whether FILE specifies a location on a remote system.
11419 Return non-nil if the location is indeed remote.
11421 For example, the filename \"/user@host:/foo\" specifies a location
11422 on the system \"/user@host:\"."
11423 (cond ((fboundp 'file-remote-p)
11424 (file-remote-p file))
11425 ((fboundp 'tramp-handle-file-remote-p)
11426 (tramp-handle-file-remote-p file))
11427 ((and (boundp 'ange-ftp-name-format)
11428 (string-match (car ange-ftp-name-format) file))
11429 t)))
11432 ;;;; Refiling
11434 (defun org-get-org-file ()
11435 "Read a filename, with default directory `org-directory'."
11436 (let ((default (or org-default-notes-file remember-data-file)))
11437 (read-file-name (format "File name [%s]: " default)
11438 (file-name-as-directory org-directory)
11439 default)))
11441 (defun org-notes-order-reversed-p ()
11442 "Check if the current file should receive notes in reversed order."
11443 (cond
11444 ((not org-reverse-note-order) nil)
11445 ((eq t org-reverse-note-order) t)
11446 ((not (listp org-reverse-note-order)) nil)
11447 (t (catch 'exit
11448 (let ((all org-reverse-note-order)
11449 entry)
11450 (while (setq entry (pop all))
11451 (if (string-match (car entry) buffer-file-name)
11452 (throw 'exit (cdr entry))))
11453 nil)))))
11455 (defvar org-refile-target-table nil
11456 "The list of refile targets, created by `org-refile'.")
11458 (defvar org-agenda-new-buffers nil
11459 "Buffers created to visit agenda files.")
11461 (defvar org-refile-cache nil
11462 "Cache for refile targets.")
11464 (defvar org-refile-markers nil
11465 "All the markers used for caching refile locations.")
11467 (defun org-refile-marker (pos)
11468 "Get a new refile marker, but only if caching is in use."
11469 (if (not org-refile-use-cache)
11471 (let ((m (make-marker)))
11472 (move-marker m pos)
11473 (push m org-refile-markers)
11474 m)))
11476 (defun org-refile-cache-clear ()
11477 "Clear the refile cache and disable all the markers."
11478 (mapc (lambda (m) (move-marker m nil)) org-refile-markers)
11479 (setq org-refile-markers nil)
11480 (setq org-refile-cache nil)
11481 (message "Refile cache has been cleared"))
11483 (defun org-refile-cache-check-set (set)
11484 "Check if all the markers in the cache still have live buffers."
11485 (let (marker)
11486 (catch 'exit
11487 (while (and set (setq marker (nth 3 (pop set))))
11488 ;; If `org-refile-use-outline-path' is 'file, marker may be nil
11489 (when (and marker (null (marker-buffer marker)))
11490 (message "Please regenerate the refile cache with `C-0 C-c C-w'")
11491 (sit-for 3)
11492 (throw 'exit nil)))
11493 t)))
11495 (defun org-refile-cache-put (set &rest identifiers)
11496 "Push the refile targets SET into the cache, under IDENTIFIERS."
11497 (let* ((key (sha1 (prin1-to-string identifiers)))
11498 (entry (assoc key org-refile-cache)))
11499 (if entry
11500 (setcdr entry set)
11501 (push (cons key set) org-refile-cache))))
11503 (defun org-refile-cache-get (&rest identifiers)
11504 "Retrieve the cached value for refile targets given by IDENTIFIERS."
11505 (cond
11506 ((not org-refile-cache) nil)
11507 ((not org-refile-use-cache) (org-refile-cache-clear) nil)
11509 (let ((set (cdr (assoc (sha1 (prin1-to-string identifiers))
11510 org-refile-cache))))
11511 (and set (org-refile-cache-check-set set) set)))))
11513 (defun org-refile-get-targets (&optional default-buffer excluded-entries)
11514 "Produce a table with refile targets."
11515 (let ((case-fold-search nil)
11516 ;; otherwise org confuses "TODO" as a kw and "Todo" as a word
11517 (entries (or org-refile-targets '((nil . (:level . 1)))))
11518 targets tgs txt re files f desc descre fast-path-p level pos0)
11519 (message "Getting targets...")
11520 (with-current-buffer (or default-buffer (current-buffer))
11521 (while (setq entry (pop entries))
11522 (setq files (car entry) desc (cdr entry))
11523 (setq fast-path-p nil)
11524 (cond
11525 ((null files) (setq files (list (current-buffer))))
11526 ((eq files 'org-agenda-files)
11527 (setq files (org-agenda-files 'unrestricted)))
11528 ((and (symbolp files) (fboundp files))
11529 (setq files (funcall files)))
11530 ((and (symbolp files) (boundp files))
11531 (setq files (symbol-value files))))
11532 (if (stringp files) (setq files (list files)))
11533 (cond
11534 ((eq (car desc) :tag)
11535 (setq descre (concat "^\\*+[ \t]+.*?:" (regexp-quote (cdr desc)) ":")))
11536 ((eq (car desc) :todo)
11537 (setq descre (concat "^\\*+[ \t]+" (regexp-quote (cdr desc)) "[ \t]")))
11538 ((eq (car desc) :regexp)
11539 (setq descre (cdr desc)))
11540 ((eq (car desc) :level)
11541 (setq descre (concat "^\\*\\{" (number-to-string
11542 (if org-odd-levels-only
11543 (1- (* 2 (cdr desc)))
11544 (cdr desc)))
11545 "\\}[ \t]")))
11546 ((eq (car desc) :maxlevel)
11547 (setq fast-path-p t)
11548 (setq descre (concat "^\\*\\{1," (number-to-string
11549 (if org-odd-levels-only
11550 (1- (* 2 (cdr desc)))
11551 (cdr desc)))
11552 "\\}[ \t]")))
11553 (t (error "Bad refiling target description %s" desc)))
11554 (while (setq f (pop files))
11555 (with-current-buffer
11556 (if (bufferp f) f (org-get-agenda-file-buffer f))
11558 (setq tgs (org-refile-cache-get (buffer-file-name) descre))
11559 (progn
11560 (if (bufferp f) (setq f (buffer-file-name
11561 (buffer-base-buffer f))))
11562 (setq f (and f (expand-file-name f)))
11563 (if (eq org-refile-use-outline-path 'file)
11564 (push (list (file-name-nondirectory f) f nil nil) tgs))
11565 (save-excursion
11566 (save-restriction
11567 (widen)
11568 (goto-char (point-min))
11569 (while (re-search-forward descre nil t)
11570 (goto-char (setq pos0 (point-at-bol)))
11571 (catch 'next
11572 (when org-refile-target-verify-function
11573 (save-match-data
11574 (or (funcall org-refile-target-verify-function)
11575 (throw 'next t))))
11576 (when (and (looking-at org-complex-heading-regexp)
11577 (not (member (match-string 4) excluded-entries))
11578 (match-string 4))
11579 (setq level (org-reduced-level
11580 (- (match-end 1) (match-beginning 1)))
11581 txt (org-link-display-format (match-string 4))
11582 txt (replace-regexp-in-string "\\( *\[[0-9]+/?[0-9]*%?\]\\)+$" "" txt)
11583 re (format org-complex-heading-regexp-format
11584 (regexp-quote (match-string 4))))
11585 (when org-refile-use-outline-path
11586 (setq txt (mapconcat
11587 'org-protect-slash
11588 (append
11589 (if (eq org-refile-use-outline-path
11590 'file)
11591 (list (file-name-nondirectory
11592 (buffer-file-name
11593 (buffer-base-buffer))))
11594 (if (eq org-refile-use-outline-path
11595 'full-file-path)
11596 (list (buffer-file-name
11597 (buffer-base-buffer)))))
11598 (org-get-outline-path fast-path-p
11599 level txt)
11600 (list txt))
11601 "/")))
11602 (push (list txt f re (org-refile-marker (point)))
11603 tgs)))
11604 (when (= (point) pos0)
11605 ;; verification function has not moved point
11606 (goto-char (point-at-eol))))))))
11607 (when org-refile-use-cache
11608 (org-refile-cache-put tgs (buffer-file-name) descre))
11609 (setq targets (append tgs targets))))))
11610 (message "Getting targets...done")
11611 (nreverse targets)))
11613 (defun org-protect-slash (s)
11614 (while (string-match "/" s)
11615 (setq s (replace-match "\\" t t s)))
11618 (defvar org-olpa (make-vector 20 nil))
11620 (defun org-get-outline-path (&optional fastp level heading)
11621 "Return the outline path to the current entry, as a list.
11623 The parameters FASTP, LEVEL, and HEADING are for use by a scanner
11624 routine which makes outline path derivations for an entire file,
11625 avoiding backtracing. Refile target collection makes use of that."
11626 (if fastp
11627 (progn
11628 (if (> level 19)
11629 (error "Outline path failure, more than 19 levels"))
11630 (loop for i from level upto 19 do
11631 (aset org-olpa i nil))
11632 (prog1
11633 (delq nil (append org-olpa nil))
11634 (aset org-olpa level heading)))
11635 (let (rtn case-fold-search)
11636 (save-excursion
11637 (save-restriction
11638 (widen)
11639 (while (org-up-heading-safe)
11640 (when (looking-at org-complex-heading-regexp)
11641 (push (org-trim
11642 (replace-regexp-in-string
11643 ;; Remove statistical/checkboxes cookies
11644 "\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]" ""
11645 (org-match-string-no-properties 4)))
11646 rtn)))
11647 rtn)))))
11649 (defun org-format-outline-path (path &optional width prefix separator)
11650 "Format the outline path PATH for display.
11651 WIDTH is the maximum number of characters that is available.
11652 PREFIX is a prefix to be included in the returned string,
11653 such as the file name.
11654 SEPARATOR is inserted between the different parts of the path,
11655 the default is \"/\"."
11656 (setq width (or width 79))
11657 (if prefix (setq width (- width (length prefix))))
11658 (if (not path)
11659 (or prefix "")
11660 (let* ((nsteps (length path))
11661 (total-width (+ nsteps (apply '+ (mapcar 'length path))))
11662 (maxwidth (if (<= total-width width)
11663 10000 ;; everything fits
11664 ;; we need to shorten the level headings
11665 (/ (- width nsteps) nsteps)))
11666 (org-odd-levels-only nil)
11667 (n 0)
11668 (total (1+ (length prefix))))
11669 (setq maxwidth (max maxwidth 10))
11670 (concat prefix
11671 (if prefix (or separator "/"))
11672 (mapconcat
11673 (lambda (h)
11674 (setq n (1+ n))
11675 (if (and (= n nsteps) (< maxwidth 10000))
11676 (setq maxwidth (- total-width total)))
11677 (if (< (length h) maxwidth)
11678 (progn (setq total (+ total (length h) 1)) h)
11679 (setq h (substring h 0 (- maxwidth 2))
11680 total (+ total maxwidth 1))
11681 (if (string-match "[ \t]+\\'" h)
11682 (setq h (substring h 0 (match-beginning 0))))
11683 (setq h (concat h "..")))
11684 (org-add-props h nil 'face
11685 (nth (% (1- n) org-n-level-faces)
11686 org-level-faces))
11688 path (or separator "/"))))))
11690 (defun org-display-outline-path (&optional file current separator just-return-string)
11691 "Display the current outline path in the echo area.
11693 If FILE is non-nil, prepend the output with the file name.
11694 If CURRENT is non-nil, append the current heading to the output.
11695 SEPARATOR is passed through to `org-format-outline-path'. It separates
11696 the different parts of the path and defaults to \"/\".
11697 If JUST-RETURN-STRING is non-nil, return a string, don't display a message."
11698 (interactive "P")
11699 (let* (case-fold-search
11700 (bfn (buffer-file-name (buffer-base-buffer)))
11701 (path (and (derived-mode-p 'org-mode) (org-get-outline-path)))
11702 res)
11703 (if current (setq path (append path
11704 (save-excursion
11705 (org-back-to-heading t)
11706 (if (looking-at org-complex-heading-regexp)
11707 (list (match-string 4)))))))
11708 (setq res
11709 (org-format-outline-path
11710 path
11711 (1- (frame-width))
11712 (and file bfn (concat (file-name-nondirectory bfn) separator))
11713 separator))
11714 (if just-return-string
11715 (org-no-properties res)
11716 (org-unlogged-message "%s" res))))
11718 (defvar org-refile-history nil
11719 "History for refiling operations.")
11721 (defvar org-after-refile-insert-hook nil
11722 "Hook run after `org-refile' has inserted its stuff at the new location.
11723 Note that this is still *before* the stuff will be removed from
11724 the *old* location.")
11726 (defvar org-capture-last-stored-marker)
11727 (defvar org-refile-keep nil
11728 "Non-nil means `org-refile' will copy instead of refile.")
11730 (defun org-copy ()
11731 "Like `org-refile', but copy."
11732 (interactive)
11733 (let ((org-refile-keep t))
11734 (funcall 'org-refile nil nil nil "Copy")))
11736 (defun org-refile (&optional arg default-buffer rfloc msg)
11737 "Move the entry or entries at point to another heading.
11738 The list of target headings is compiled using the information in
11739 `org-refile-targets', which see.
11741 At the target location, the entry is filed as a subitem of the
11742 target heading. Depending on `org-reverse-note-order', the new
11743 subitem will either be the first or the last subitem.
11745 If there is an active region, all entries in that region will be
11746 refiled. However, the region must fulfill the requirement that
11747 the first heading sets the top-level of the moved text.
11749 With prefix arg ARG, the command will only visit the target
11750 location and not actually move anything.
11752 With a double prefix arg \\[universal-argument] \\[universal-argument], go to the location where the last
11753 refiling operation has put the subtree.
11755 With a numeric prefix argument of `2', refile to the running clock.
11757 With a numeric prefix argument of `3', emulate `org-refile-keep'
11758 being set to `t' and copy to the target location, don't move it.
11759 Beware that keeping refiled entries may result in duplicated ID
11760 properties.
11762 RFLOC can be a refile location obtained in a different way.
11764 MSG is a string to replace \"Refile\" in the default prompt with
11765 another verb. E.g. `org-copy' sets this parameter to \"Copy\".
11767 See also `org-refile-use-outline-path' and `org-completion-use-ido'.
11769 If you are using target caching (see `org-refile-use-cache'), you
11770 have to clear the target cache in order to find new targets.
11771 This can be done with a 0 prefix (`C-0 C-c C-w') or a triple
11772 prefix argument (`C-u C-u C-u C-c C-w')."
11773 (interactive "P")
11774 (if (member arg '(0 (64)))
11775 (org-refile-cache-clear)
11776 (let* ((actionmsg (cond (msg msg)
11777 ((equal arg 3) "Refile (and keep)")
11778 (t "Refile")))
11779 (cbuf (current-buffer))
11780 (regionp (org-region-active-p))
11781 (region-start (and regionp (region-beginning)))
11782 (region-end (and regionp (region-end)))
11783 (filename (buffer-file-name (buffer-base-buffer cbuf)))
11784 (org-refile-keep (if (equal arg 3) t org-refile-keep))
11785 pos it nbuf file re level reversed)
11786 (setq last-command nil)
11787 (when regionp
11788 (goto-char region-start)
11789 (or (bolp) (goto-char (point-at-bol)))
11790 (setq region-start (point))
11791 (unless (or (org-kill-is-subtree-p
11792 (buffer-substring region-start region-end))
11793 (prog1 org-refile-active-region-within-subtree
11794 (let ((s (point-at-eol)))
11795 (org-toggle-heading)
11796 (setq region-end (+ (- (point-at-eol) s) region-end)))))
11797 (user-error "The region is not a (sequence of) subtree(s)")))
11798 (if (equal arg '(16))
11799 (org-refile-goto-last-stored)
11800 (when (or
11801 (and (equal arg 2)
11802 org-clock-hd-marker (marker-buffer org-clock-hd-marker)
11803 (prog1
11804 (setq it (list (or org-clock-heading "running clock")
11805 (buffer-file-name
11806 (marker-buffer org-clock-hd-marker))
11808 (marker-position org-clock-hd-marker)))
11809 (setq arg nil)))
11810 (setq it (or rfloc
11811 (let (heading-text)
11812 (save-excursion
11813 (unless (and arg (listp arg))
11814 (org-back-to-heading t)
11815 (setq heading-text
11816 (replace-regexp-in-string
11817 org-bracket-link-regexp
11818 "\\3"
11819 (nth 4 (org-heading-components)))))
11820 (org-refile-get-location
11821 (cond ((and arg (listp arg)) "Goto")
11822 (regionp (concat actionmsg " region to"))
11823 (t (concat actionmsg " subtree \""
11824 heading-text "\" to")))
11825 default-buffer
11826 (and (not (equal '(4) arg))
11827 org-refile-allow-creating-parent-nodes)
11828 arg))))))
11829 (setq file (nth 1 it)
11830 re (nth 2 it)
11831 pos (nth 3 it))
11832 (if (and (not arg)
11834 (equal (buffer-file-name) file)
11835 (if regionp
11836 (and (>= pos region-start)
11837 (<= pos region-end))
11838 (and (>= pos (point))
11839 (< pos (save-excursion
11840 (org-end-of-subtree t t))))))
11841 (error "Cannot refile to position inside the tree or region"))
11842 (setq nbuf (or (find-buffer-visiting file)
11843 (find-file-noselect file)))
11844 (if (and arg (not (equal arg 3)))
11845 (progn
11846 (org-pop-to-buffer-same-window nbuf)
11847 (goto-char pos)
11848 (org-show-context 'org-goto))
11849 (if regionp
11850 (progn
11851 (org-kill-new (buffer-substring region-start region-end))
11852 (org-save-markers-in-region region-start region-end))
11853 (org-copy-subtree 1 nil t))
11854 (with-current-buffer (setq nbuf (or (find-buffer-visiting file)
11855 (find-file-noselect file)))
11856 (setq reversed (org-notes-order-reversed-p))
11857 (save-excursion
11858 (save-restriction
11859 (widen)
11860 (if pos
11861 (progn
11862 (goto-char pos)
11863 (looking-at org-outline-regexp)
11864 (setq level (org-get-valid-level (funcall outline-level) 1))
11865 (goto-char
11866 (if reversed
11867 (or (outline-next-heading) (point-max))
11868 (or (save-excursion (org-get-next-sibling))
11869 (org-end-of-subtree t t)
11870 (point-max)))))
11871 (setq level 1)
11872 (if (not reversed)
11873 (goto-char (point-max))
11874 (goto-char (point-min))
11875 (or (outline-next-heading) (goto-char (point-max)))))
11876 (if (not (bolp)) (newline))
11877 (org-paste-subtree level)
11878 (when org-log-refile
11879 (org-add-log-setup 'refile nil nil 'findpos org-log-refile)
11880 (unless (eq org-log-refile 'note)
11881 (save-excursion (org-add-log-note))))
11882 (and org-auto-align-tags
11883 (let ((org-loop-over-headlines-in-active-region nil))
11884 (org-set-tags nil t)))
11885 (let ((bookmark-name (plist-get org-bookmark-names-plist
11886 :last-refile)))
11887 (when bookmark-name
11888 (with-demoted-errors
11889 (bookmark-set bookmark-name))))
11890 ;; If we are refiling for capture, make sure that the
11891 ;; last-capture pointers point here
11892 (when (org-bound-and-true-p org-refile-for-capture)
11893 (let ((bookmark-name (plist-get org-bookmark-names-plist
11894 :last-capture-marker)))
11895 (when bookmark-name
11896 (with-demoted-errors
11897 (bookmark-set bookmark-name))))
11898 (move-marker org-capture-last-stored-marker (point)))
11899 (if (fboundp 'deactivate-mark) (deactivate-mark))
11900 (run-hooks 'org-after-refile-insert-hook))))
11901 (unless org-refile-keep
11902 (if regionp
11903 (delete-region (point) (+ (point) (- region-end region-start)))
11904 (delete-region
11905 (and (org-back-to-heading t) (point))
11906 (min (1+ (buffer-size)) (org-end-of-subtree t t) (point)))))
11907 (when (featurep 'org-inlinetask)
11908 (org-inlinetask-remove-END-maybe))
11909 (setq org-markers-to-move nil)
11910 (message (concat actionmsg " to \"%s\" in file %s: done") (car it) file)))))))
11912 (defun org-refile-goto-last-stored ()
11913 "Go to the location where the last refile was stored."
11914 (interactive)
11915 (bookmark-jump (plist-get org-bookmark-names-plist :last-refile))
11916 (message "This is the location of the last refile"))
11918 (defun org-refile--get-location (refloc tbl)
11919 "When user refile to REFLOC, find the associated target in TBL.
11920 Also check `org-refile-target-table'."
11921 (car (delq
11923 (mapcar
11924 (lambda (r) (or (assoc r tbl)
11925 (assoc r org-refile-target-table)))
11926 (list (replace-regexp-in-string "/$" "" refloc)
11927 (replace-regexp-in-string "\\([^/]\\)$" "\\1/" refloc))))))
11929 (defun org-refile-get-location (&optional prompt default-buffer new-nodes
11930 no-exclude)
11931 "Prompt the user for a refile location, using PROMPT.
11932 PROMPT should not be suffixed with a colon and a space, because
11933 this function appends the default value from
11934 `org-refile-history' automatically, if that is not empty.
11935 When NO-EXCLUDE is set, do not exclude headlines in the current subtree,
11936 this is used for the GOTO interface."
11937 (let ((org-refile-targets org-refile-targets)
11938 (org-refile-use-outline-path org-refile-use-outline-path)
11939 excluded-entries)
11940 (when (and (derived-mode-p 'org-mode)
11941 (not org-refile-use-cache)
11942 (not no-exclude))
11943 (org-map-tree
11944 (lambda()
11945 (setq excluded-entries
11946 (append excluded-entries (list (org-get-heading t t)))))))
11947 (setq org-refile-target-table
11948 (org-refile-get-targets default-buffer excluded-entries)))
11949 (unless org-refile-target-table
11950 (user-error "No refile targets"))
11951 (let* ((cbuf (current-buffer))
11952 (partial-completion-mode nil)
11953 (cfn (buffer-file-name (buffer-base-buffer cbuf)))
11954 (cfunc (if (and org-refile-use-outline-path
11955 org-outline-path-complete-in-steps)
11956 'org-olpath-completing-read
11957 'org-icompleting-read))
11958 (extra (if org-refile-use-outline-path "/" ""))
11959 (cbnex (concat (buffer-name) extra))
11960 (filename (and cfn (expand-file-name cfn)))
11961 (tbl (mapcar
11962 (lambda (x)
11963 (if (and (not (member org-refile-use-outline-path
11964 '(file full-file-path)))
11965 (not (equal filename (nth 1 x))))
11966 (cons (concat (car x) extra " ("
11967 (file-name-nondirectory (nth 1 x)) ")")
11968 (cdr x))
11969 (cons (concat (car x) extra) (cdr x))))
11970 org-refile-target-table))
11971 (completion-ignore-case t)
11972 cdef
11973 (prompt (concat prompt
11974 (or (and (car org-refile-history)
11975 (concat " (default " (car org-refile-history) ")"))
11976 (and (assoc cbnex tbl) (setq cdef cbnex)
11977 (concat " (default " cbnex ")"))) ": "))
11978 pa answ parent-target child parent old-hist)
11979 (setq old-hist org-refile-history)
11980 (setq answ (funcall cfunc prompt tbl nil (not new-nodes)
11981 nil 'org-refile-history (or cdef (car org-refile-history))))
11982 (if (setq pa (org-refile--get-location answ tbl))
11983 (progn
11984 (org-refile-check-position pa)
11985 (when (or (not org-refile-history)
11986 (not (eq old-hist org-refile-history))
11987 (not (equal (car pa) (car org-refile-history))))
11988 (setq org-refile-history
11989 (cons (car pa) (if (assoc (car org-refile-history) tbl)
11990 org-refile-history
11991 (cdr org-refile-history))))
11992 (if (equal (car org-refile-history) (nth 1 org-refile-history))
11993 (pop org-refile-history)))
11995 (if (string-match "\\`\\(.*\\)/\\([^/]+\\)\\'" answ)
11996 (progn
11997 (setq parent (match-string 1 answ)
11998 child (match-string 2 answ))
11999 (setq parent-target (org-refile--get-location parent tbl))
12000 (when (and parent-target
12001 (or (eq new-nodes t)
12002 (and (eq new-nodes 'confirm)
12003 (y-or-n-p (format "Create new node \"%s\"? "
12004 child)))))
12005 (org-refile-new-child parent-target child)))
12006 (user-error "Invalid target location")))))
12008 (declare-function org-string-nw-p "org-macs" (s))
12009 (defun org-refile-check-position (refile-pointer)
12010 "Check if the refile pointer matches the headline to which it points."
12011 (let* ((file (nth 1 refile-pointer))
12012 (re (nth 2 refile-pointer))
12013 (pos (nth 3 refile-pointer))
12014 buffer)
12015 (if (and (not (markerp pos)) (not file))
12016 (user-error "Please indicate a target file in the refile path")
12017 (when (org-string-nw-p re)
12018 (setq buffer (if (markerp pos)
12019 (marker-buffer pos)
12020 (or (find-buffer-visiting file)
12021 (find-file-noselect file))))
12022 (with-current-buffer buffer
12023 (save-excursion
12024 (save-restriction
12025 (widen)
12026 (goto-char pos)
12027 (beginning-of-line 1)
12028 (unless (org-looking-at-p re)
12029 (user-error "Invalid refile position, please clear the cache with `C-0 C-c C-w' before refiling")))))))))
12031 (defun org-refile-new-child (parent-target child)
12032 "Use refile target PARENT-TARGET to add new CHILD below it."
12033 (unless parent-target
12034 (error "Cannot find parent for new node"))
12035 (let ((file (nth 1 parent-target))
12036 (pos (nth 3 parent-target))
12037 level)
12038 (with-current-buffer (or (find-buffer-visiting file)
12039 (find-file-noselect file))
12040 (save-excursion
12041 (save-restriction
12042 (widen)
12043 (if pos
12044 (goto-char pos)
12045 (goto-char (point-max))
12046 (if (not (bolp)) (newline)))
12047 (when (looking-at org-outline-regexp)
12048 (setq level (funcall outline-level))
12049 (org-end-of-subtree t t))
12050 (org-back-over-empty-lines)
12051 (insert "\n" (make-string
12052 (if pos (org-get-valid-level level 1) 1) ?*)
12053 " " child "\n")
12054 (beginning-of-line 0)
12055 (list (concat (car parent-target) "/" child) file "" (point)))))))
12057 (defun org-olpath-completing-read (prompt collection &rest args)
12058 "Read an outline path like a file name."
12059 (let ((thetable collection)
12060 (org-completion-use-ido nil) ; does not work with ido.
12061 (org-completion-use-iswitchb nil)) ; or iswitchb
12062 (apply
12063 'org-icompleting-read prompt
12064 (lambda (string predicate &optional flag)
12065 (let (rtn r f (l (length string)))
12066 (cond
12067 ((eq flag nil)
12068 ;; try completion
12069 (try-completion string thetable))
12070 ((eq flag t)
12071 ;; all-completions
12072 (setq rtn (all-completions string thetable predicate))
12073 (mapcar
12074 (lambda (x)
12075 (setq r (substring x l))
12076 (if (string-match " ([^)]*)$" x)
12077 (setq f (match-string 0 x))
12078 (setq f ""))
12079 (if (string-match "/" r)
12080 (concat string (substring r 0 (match-end 0)) f)
12082 rtn))
12083 ((eq flag 'lambda)
12084 ;; exact match?
12085 (assoc string thetable)))))
12086 args)))
12088 ;;;; Dynamic blocks
12090 (defun org-find-dblock (name)
12091 "Find the first dynamic block with name NAME in the buffer.
12092 If not found, stay at current position and return nil."
12093 (let ((case-fold-search t) pos)
12094 (save-excursion
12095 (goto-char (point-min))
12096 (setq pos (and (re-search-forward
12097 (concat "^[ \t]*#\\+\\(?:BEGIN\\|begin\\):[ \t]+" name "\\>") nil t)
12098 (match-beginning 0))))
12099 (if pos (goto-char pos))
12100 pos))
12102 (defun org-create-dblock (plist)
12103 "Create a dynamic block section, with parameters taken from PLIST.
12104 PLIST must contain a :name entry which is used as the name of the block."
12105 (when (string-match "\\S-" (buffer-substring (point-at-bol) (point-at-eol)))
12106 (end-of-line 1)
12107 (newline))
12108 (let ((col (current-column))
12109 (name (plist-get plist :name)))
12110 (insert "#+BEGIN: " name)
12111 (while plist
12112 (if (eq (car plist) :name)
12113 (setq plist (cddr plist))
12114 (insert " " (prin1-to-string (pop plist)))))
12115 (insert "\n\n" (make-string col ?\ ) "#+END:\n")
12116 (beginning-of-line -2)))
12118 (defun org-prepare-dblock ()
12119 "Prepare dynamic block for refresh.
12120 This empties the block, puts the cursor at the insert position and returns
12121 the property list including an extra property :name with the block name."
12122 (unless (looking-at org-dblock-start-re)
12123 (user-error "Not at a dynamic block"))
12124 (let* ((begdel (1+ (match-end 0)))
12125 (name (org-no-properties (match-string 1)))
12126 (params (append (list :name name)
12127 (read (concat "(" (match-string 3) ")")))))
12128 (save-excursion
12129 (beginning-of-line 1)
12130 (skip-chars-forward " \t")
12131 (setq params (plist-put params :indentation-column (current-column))))
12132 (unless (re-search-forward org-dblock-end-re nil t)
12133 (error "Dynamic block not terminated"))
12134 (setq params
12135 (append params
12136 (list :content (buffer-substring
12137 begdel (match-beginning 0)))))
12138 (delete-region begdel (match-beginning 0))
12139 (goto-char begdel)
12140 (open-line 1)
12141 params))
12143 (defun org-map-dblocks (&optional command)
12144 "Apply COMMAND to all dynamic blocks in the current buffer.
12145 If COMMAND is not given, use `org-update-dblock'."
12146 (let ((cmd (or command 'org-update-dblock)))
12147 (save-excursion
12148 (goto-char (point-min))
12149 (while (re-search-forward org-dblock-start-re nil t)
12150 (goto-char (match-beginning 0))
12151 (save-excursion
12152 (condition-case nil
12153 (funcall cmd)
12154 (error (message "Error during update of dynamic block"))))
12155 (unless (re-search-forward org-dblock-end-re nil t)
12156 (error "Dynamic block not terminated"))))))
12158 (defun org-dblock-update (&optional arg)
12159 "User command for updating dynamic blocks.
12160 Update the dynamic block at point. With prefix ARG, update all dynamic
12161 blocks in the buffer."
12162 (interactive "P")
12163 (if arg
12164 (org-update-all-dblocks)
12165 (or (looking-at org-dblock-start-re)
12166 (org-beginning-of-dblock))
12167 (org-update-dblock)))
12169 (defun org-update-dblock ()
12170 "Update the dynamic block at point.
12171 This means to empty the block, parse for parameters and then call
12172 the correct writing function."
12173 (interactive)
12174 (save-excursion
12175 (let* ((win (selected-window))
12176 (pos (point))
12177 (line (org-current-line))
12178 (params (org-prepare-dblock))
12179 (name (plist-get params :name))
12180 (indent (plist-get params :indentation-column))
12181 (cmd (intern (concat "org-dblock-write:" name))))
12182 (message "Updating dynamic block `%s' at line %d..." name line)
12183 (funcall cmd params)
12184 (message "Updating dynamic block `%s' at line %d...done" name line)
12185 (goto-char pos)
12186 (when (and indent (> indent 0))
12187 (setq indent (make-string indent ?\ ))
12188 (save-excursion
12189 (select-window win)
12190 (org-beginning-of-dblock)
12191 (forward-line 1)
12192 (while (not (looking-at org-dblock-end-re))
12193 (insert indent)
12194 (beginning-of-line 2))
12195 (when (looking-at org-dblock-end-re)
12196 (and (looking-at "[ \t]+")
12197 (replace-match ""))
12198 (insert indent)))))))
12200 (defun org-beginning-of-dblock ()
12201 "Find the beginning of the dynamic block at point.
12202 Error if there is no such block at point."
12203 (let ((pos (point))
12204 beg)
12205 (end-of-line 1)
12206 (if (and (re-search-backward org-dblock-start-re nil t)
12207 (setq beg (match-beginning 0))
12208 (re-search-forward org-dblock-end-re nil t)
12209 (> (match-end 0) pos))
12210 (goto-char beg)
12211 (goto-char pos)
12212 (error "Not in a dynamic block"))))
12214 (defun org-update-all-dblocks ()
12215 "Update all dynamic blocks in the buffer.
12216 This function can be used in a hook."
12217 (interactive)
12218 (when (derived-mode-p 'org-mode)
12219 (org-map-dblocks 'org-update-dblock)))
12222 ;;;; Completion
12224 (declare-function org-export-backend-name "org-export" (cl-x))
12225 (declare-function org-export-backend-options "org-export" (cl-x))
12226 (defun org-get-export-keywords ()
12227 "Return a list of all currently understood export keywords.
12228 Export keywords include options, block names, attributes and
12229 keywords relative to each registered export back-end."
12230 (let (keywords)
12231 (dolist (backend
12232 (org-bound-and-true-p org-export--registered-backends)
12233 (delq nil keywords))
12234 ;; Back-end name (for keywords, like #+LATEX:)
12235 (push (upcase (symbol-name (org-export-backend-name backend))) keywords)
12236 (dolist (option-entry (org-export-backend-options backend))
12237 ;; Back-end options.
12238 (push (nth 1 option-entry) keywords)))))
12240 (defconst org-options-keywords
12241 '("ARCHIVE:" "AUTHOR:" "BIND:" "CATEGORY:" "COLUMNS:" "CREATOR:" "DATE:"
12242 "DESCRIPTION:" "DRAWERS:" "EMAIL:" "EXCLUDE_TAGS:" "FILETAGS:" "INCLUDE:"
12243 "INDEX:" "KEYWORDS:" "LANGUAGE:" "MACRO:" "OPTIONS:" "PROPERTY:"
12244 "PRIORITIES:" "SELECT_TAGS:" "SEQ_TODO:" "SETUPFILE:" "STARTUP:" "TAGS:"
12245 "TITLE:" "TODO:" "TYP_TODO:" "SELECT_TAGS:" "EXCLUDE_TAGS:"))
12247 (defcustom org-structure-template-alist
12248 '(("s" "#+BEGIN_SRC ?\n\n#+END_SRC" "<src lang=\"?\">\n\n</src>")
12249 ("e" "#+BEGIN_EXAMPLE\n?\n#+END_EXAMPLE" "<example>\n?\n</example>")
12250 ("q" "#+BEGIN_QUOTE\n?\n#+END_QUOTE" "<quote>\n?\n</quote>")
12251 ("v" "#+BEGIN_VERSE\n?\n#+END_VERSE" "<verse>\n?\n</verse>")
12252 ("V" "#+BEGIN_VERBATIM\n?\n#+END_VERBATIM" "<verbatim>\n?\n</verbatim>")
12253 ("c" "#+BEGIN_CENTER\n?\n#+END_CENTER" "<center>\n?\n</center>")
12254 ("l" "#+BEGIN_LaTeX\n?\n#+END_LaTeX"
12255 "<literal style=\"latex\">\n?\n</literal>")
12256 ("L" "#+LaTeX: " "<literal style=\"latex\">?</literal>")
12257 ("h" "#+BEGIN_HTML\n?\n#+END_HTML"
12258 "<literal style=\"html\">\n?\n</literal>")
12259 ("H" "#+HTML: " "<literal style=\"html\">?</literal>")
12260 ("a" "#+BEGIN_ASCII\n?\n#+END_ASCII" "")
12261 ("A" "#+ASCII: " "")
12262 ("i" "#+INDEX: ?" "#+INDEX: ?")
12263 ("I" "#+INCLUDE: %file ?"
12264 "<include file=%file markup=\"?\">"))
12265 "Structure completion elements.
12266 This is a list of abbreviation keys and values. The value gets inserted
12267 if you type `<' followed by the key and then press the completion key,
12268 usually `M-TAB'. %file will be replaced by a file name after prompting
12269 for the file using completion. The cursor will be placed at the position
12270 of the `?` in the template.
12271 There are two templates for each key, the first uses the original Org syntax,
12272 the second uses Emacs Muse-like syntax tags. These Muse-like tags become
12273 the default when the /org-mtags.el/ module has been loaded. See also the
12274 variable `org-mtags-prefer-muse-templates'."
12275 :group 'org-completion
12276 :type '(repeat
12277 (list
12278 (string :tag "Key")
12279 (string :tag "Template")
12280 (string :tag "Muse Template"))))
12282 (defun org-try-structure-completion ()
12283 "Try to complete a structure template before point.
12284 This looks for strings like \"<e\" on an otherwise empty line and
12285 expands them."
12286 (let ((l (buffer-substring (point-at-bol) (point)))
12288 (when (and (looking-at "[ \t]*$")
12289 (string-match "^[ \t]*<\\([a-zA-Z]+\\)$" l)
12290 (setq a (assoc (match-string 1 l) org-structure-template-alist)))
12291 (org-complete-expand-structure-template (+ -1 (point-at-bol)
12292 (match-beginning 1)) a)
12293 t)))
12295 (defun org-complete-expand-structure-template (start cell)
12296 "Expand a structure template."
12297 (let* ((musep (org-bound-and-true-p org-mtags-prefer-muse-templates))
12298 (rpl (nth (if musep 2 1) cell))
12299 (ind ""))
12300 (delete-region start (point))
12301 (when (string-match "\\`[ \t]*#\\+" rpl)
12302 (cond
12303 ((bolp))
12304 ((not (string-match "\\S-" (buffer-substring (point-at-bol) (point))))
12305 (setq ind (buffer-substring (point-at-bol) (point))))
12306 (t (newline))))
12307 (setq start (point))
12308 (if (string-match "%file" rpl)
12309 (setq rpl (replace-match
12310 (concat
12311 "\""
12312 (save-match-data
12313 (abbreviate-file-name (read-file-name "Include file: ")))
12314 "\"")
12315 t t rpl)))
12316 (setq rpl (mapconcat 'identity (split-string rpl "\n")
12317 (concat "\n" ind)))
12318 (insert rpl)
12319 (if (re-search-backward "\\?" start t) (delete-char 1))))
12321 ;;;; TODO, DEADLINE, Comments
12323 (defun org-toggle-comment ()
12324 "Change the COMMENT state of an entry."
12325 (interactive)
12326 (save-excursion
12327 (org-back-to-heading)
12328 (looking-at org-complex-heading-regexp)
12329 (goto-char (or (match-end 3) (match-end 2) (match-end 1)))
12330 (skip-chars-forward " \t")
12331 (unless (memq (char-before) '(?\s ?\t)) (insert " "))
12332 (if (org-in-commented-heading-p t)
12333 (delete-region (point)
12334 (progn (search-forward " " (line-end-position) 'move)
12335 (skip-chars-forward " \t")
12336 (point)))
12337 (insert org-comment-string)
12338 (unless (eolp) (insert " ")))))
12340 (defvar org-last-todo-state-is-todo nil
12341 "This is non-nil when the last TODO state change led to a TODO state.
12342 If the last change removed the TODO tag or switched to DONE, then
12343 this is nil.")
12345 (defvar org-setting-tags nil) ; dynamically skipped
12347 (defvar org-todo-setup-filter-hook nil
12348 "Hook for functions that pre-filter todo specs.
12349 Each function takes a todo spec and returns either nil or the spec
12350 transformed into canonical form." )
12352 (defvar org-todo-get-default-hook nil
12353 "Hook for functions that get a default item for todo.
12354 Each function takes arguments (NEW-MARK OLD-MARK) and returns either
12355 nil or a string to be used for the todo mark." )
12357 (defvar org-agenda-headline-snapshot-before-repeat)
12359 (defun org-current-effective-time ()
12360 "Return current time adjusted for `org-extend-today-until' variable."
12361 (let* ((ct (org-current-time))
12362 (dct (decode-time ct))
12363 (ct1
12364 (cond
12365 (org-use-last-clock-out-time-as-effective-time
12366 (or (org-clock-get-last-clock-out-time) ct))
12367 ((and org-use-effective-time (< (nth 2 dct) org-extend-today-until))
12368 (encode-time 0 59 23 (1- (nth 3 dct)) (nth 4 dct) (nth 5 dct)))
12369 (t ct))))
12370 ct1))
12372 (defun org-todo-yesterday (&optional arg)
12373 "Like `org-todo' but the time of change will be 23:59 of yesterday."
12374 (interactive "P")
12375 (if (eq major-mode 'org-agenda-mode)
12376 (apply 'org-agenda-todo-yesterday arg)
12377 (let* ((hour (third (decode-time
12378 (org-current-time))))
12379 (org-extend-today-until (1+ hour)))
12380 (org-todo arg))))
12382 (defvar org-block-entry-blocking ""
12383 "First entry preventing the TODO state change.")
12385 (defun org-cancel-repeater ()
12386 "Cancel a repeater by setting its numeric value to zero."
12387 (interactive)
12388 (save-excursion
12389 (org-back-to-heading t)
12390 (let ((bound1 (point))
12391 (bound0 (save-excursion (outline-next-heading) (point))))
12392 (when (re-search-forward
12393 (concat "\\(" org-scheduled-time-regexp "\\)\\|\\("
12394 org-deadline-time-regexp "\\)\\|\\("
12395 org-ts-regexp "\\)")
12396 bound0 t)
12397 (if (re-search-backward "[ \t]+\\(?:[.+]\\)?\\+\\([0-9]+\\)[hdwmy]" bound1 t)
12398 (replace-match "0" t nil nil 1))))))
12400 (defun org-todo (&optional arg)
12401 "Change the TODO state of an item.
12402 The state of an item is given by a keyword at the start of the heading,
12403 like
12404 *** TODO Write paper
12405 *** DONE Call mom
12407 The different keywords are specified in the variable `org-todo-keywords'.
12408 By default the available states are \"TODO\" and \"DONE\".
12409 So for this example: when the item starts with TODO, it is changed to DONE.
12410 When it starts with DONE, the DONE is removed. And when neither TODO nor
12411 DONE are present, add TODO at the beginning of the heading.
12413 With \\[universal-argument] prefix arg, use completion to determine the new \
12414 state.
12415 With numeric prefix arg, switch to that state.
12416 With a double \\[universal-argument] prefix, switch to the next set of TODO \
12417 keywords (nextset).
12418 With a triple \\[universal-argument] prefix, circumvent any state blocking.
12419 With a numeric prefix arg of 0, inhibit note taking for the change.
12420 With a numeric prefix arg of -1, cancel repeater to allow marking as DONE.
12422 When called through ELisp, arg is also interpreted in the following way:
12423 'none -> empty state
12424 \"\"(empty string) -> switch to empty state
12425 'done -> switch to DONE
12426 'nextset -> switch to the next set of keywords
12427 'previousset -> switch to the previous set of keywords
12428 \"WAITING\" -> switch to the specified keyword, but only if it
12429 really is a member of `org-todo-keywords'."
12430 (interactive "P")
12431 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
12432 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
12433 'region-start-level 'region))
12434 org-loop-over-headlines-in-active-region)
12435 (org-map-entries
12436 `(org-todo ,arg)
12437 org-loop-over-headlines-in-active-region
12438 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
12439 (if (equal arg '(16)) (setq arg 'nextset))
12440 (when (equal arg -1) (org-cancel-repeater) (setq arg nil))
12441 (let ((org-blocker-hook org-blocker-hook)
12442 commentp
12443 case-fold-search)
12444 (when (equal arg '(64))
12445 (setq arg nil org-blocker-hook nil))
12446 (when (and org-blocker-hook
12447 (or org-inhibit-blocking
12448 (org-entry-get nil "NOBLOCKING")))
12449 (setq org-blocker-hook nil))
12450 (save-excursion
12451 (catch 'exit
12452 (org-back-to-heading t)
12453 (when (org-in-commented-heading-p t)
12454 (org-toggle-comment)
12455 (setq commentp t))
12456 (if (looking-at org-outline-regexp) (goto-char (1- (match-end 0))))
12457 (or (looking-at (concat " +" org-todo-regexp "\\( +\\|[ \t]*$\\)"))
12458 (looking-at "\\(?: *\\|[ \t]*$\\)"))
12459 (let* ((match-data (match-data))
12460 (startpos (point-at-bol))
12461 (logging (save-match-data (org-entry-get nil "LOGGING" t t)))
12462 (org-log-done org-log-done)
12463 (org-log-repeat org-log-repeat)
12464 (org-todo-log-states org-todo-log-states)
12465 (org-inhibit-logging
12466 (if (equal arg 0)
12467 (progn (setq arg nil) 'note) org-inhibit-logging))
12468 (this (match-string 1))
12469 (hl-pos (match-beginning 0))
12470 (head (org-get-todo-sequence-head this))
12471 (ass (assoc head org-todo-kwd-alist))
12472 (interpret (nth 1 ass))
12473 (done-word (nth 3 ass))
12474 (final-done-word (nth 4 ass))
12475 (org-last-state (or this ""))
12476 (completion-ignore-case t)
12477 (member (member this org-todo-keywords-1))
12478 (tail (cdr member))
12479 (org-state (cond
12480 ((and org-todo-key-trigger
12481 (or (and (equal arg '(4))
12482 (eq org-use-fast-todo-selection 'prefix))
12483 (and (not arg) org-use-fast-todo-selection
12484 (not (eq org-use-fast-todo-selection
12485 'prefix)))))
12486 ;; Use fast selection
12487 (org-fast-todo-selection))
12488 ((and (equal arg '(4))
12489 (or (not org-use-fast-todo-selection)
12490 (not org-todo-key-trigger)))
12491 ;; Read a state with completion
12492 (org-icompleting-read
12493 "State: " (mapcar 'list org-todo-keywords-1)
12494 nil t))
12495 ((eq arg 'right)
12496 (if this
12497 (if tail (car tail) nil)
12498 (car org-todo-keywords-1)))
12499 ((eq arg 'left)
12500 (if (equal member org-todo-keywords-1)
12502 (if this
12503 (nth (- (length org-todo-keywords-1)
12504 (length tail) 2)
12505 org-todo-keywords-1)
12506 (org-last org-todo-keywords-1))))
12507 ((and (eq org-use-fast-todo-selection t) (equal arg '(4))
12508 (setq arg nil))) ; hack to fall back to cycling
12509 (arg
12510 ;; user or caller requests a specific state
12511 (cond
12512 ((equal arg "") nil)
12513 ((eq arg 'none) nil)
12514 ((eq arg 'done) (or done-word (car org-done-keywords)))
12515 ((eq arg 'nextset)
12516 (or (car (cdr (member head org-todo-heads)))
12517 (car org-todo-heads)))
12518 ((eq arg 'previousset)
12519 (let ((org-todo-heads (reverse org-todo-heads)))
12520 (or (car (cdr (member head org-todo-heads)))
12521 (car org-todo-heads))))
12522 ((car (member arg org-todo-keywords-1)))
12523 ((stringp arg)
12524 (user-error "State `%s' not valid in this file" arg))
12525 ((nth (1- (prefix-numeric-value arg))
12526 org-todo-keywords-1))))
12527 ((null member) (or head (car org-todo-keywords-1)))
12528 ((equal this final-done-word) nil) ;; -> make empty
12529 ((null tail) nil) ;; -> first entry
12530 ((memq interpret '(type priority))
12531 (if (eq this-command last-command)
12532 (car tail)
12533 (if (> (length tail) 0)
12534 (or done-word (car org-done-keywords))
12535 nil)))
12537 (car tail))))
12538 (org-state (or
12539 (run-hook-with-args-until-success
12540 'org-todo-get-default-hook org-state org-last-state)
12541 org-state))
12542 (next (if org-state (concat " " org-state " ") " "))
12543 (change-plist (list :type 'todo-state-change :from this :to org-state
12544 :position startpos))
12545 dolog now-done-p)
12546 (when org-blocker-hook
12547 (setq org-last-todo-state-is-todo
12548 (not (member this org-done-keywords)))
12549 (unless (save-excursion
12550 (save-match-data
12551 (org-with-wide-buffer
12552 (run-hook-with-args-until-failure
12553 'org-blocker-hook change-plist))))
12554 (if (org-called-interactively-p 'interactive)
12555 (user-error "TODO state change from %s to %s blocked (by \"%s\")"
12556 this org-state org-block-entry-blocking)
12557 ;; fail silently
12558 (message "TODO state change from %s to %s blocked (by \"%s\")"
12559 this org-state org-block-entry-blocking)
12560 (throw 'exit nil))))
12561 (store-match-data match-data)
12562 (replace-match next t t)
12563 (cond ((equal this org-state)
12564 (message "TODO state was already %s" (org-trim next)))
12565 ((pos-visible-in-window-p hl-pos)
12566 (message "TODO state changed to %s" (org-trim next))))
12567 (unless head
12568 (setq head (org-get-todo-sequence-head org-state)
12569 ass (assoc head org-todo-kwd-alist)
12570 interpret (nth 1 ass)
12571 done-word (nth 3 ass)
12572 final-done-word (nth 4 ass)))
12573 (when (memq arg '(nextset previousset))
12574 (message "Keyword-Set %d/%d: %s"
12575 (- (length org-todo-sets) -1
12576 (length (memq (assoc org-state org-todo-sets) org-todo-sets)))
12577 (length org-todo-sets)
12578 (mapconcat 'identity (assoc org-state org-todo-sets) " ")))
12579 (setq org-last-todo-state-is-todo
12580 (not (member org-state org-done-keywords)))
12581 (setq now-done-p (and (member org-state org-done-keywords)
12582 (not (member this org-done-keywords))))
12583 (and logging (org-local-logging logging))
12584 (when (and (or org-todo-log-states org-log-done)
12585 (not (eq org-inhibit-logging t))
12586 (not (memq arg '(nextset previousset))))
12587 ;; we need to look at recording a time and note
12588 (setq dolog (or (nth 1 (assoc org-state org-todo-log-states))
12589 (nth 2 (assoc this org-todo-log-states))))
12590 (if (and (eq dolog 'note) (eq org-inhibit-logging 'note))
12591 (setq dolog 'time))
12592 (when (or (and (not org-state) (not org-closed-keep-when-no-todo))
12593 (and org-state
12594 (member org-state org-not-done-keywords)
12595 (not (member this org-not-done-keywords))))
12596 ;; This is now a todo state and was not one before
12597 ;; If there was a CLOSED time stamp, get rid of it.
12598 (org-add-planning-info nil nil 'closed))
12599 (when (and now-done-p org-log-done)
12600 ;; It is now done, and it was not done before
12601 (org-add-planning-info 'closed (org-current-effective-time))
12602 (if (and (not dolog) (eq 'note org-log-done))
12603 (org-add-log-setup 'done org-state this 'findpos 'note)))
12604 (when (and org-state dolog)
12605 ;; This is a non-nil state, and we need to log it
12606 (org-add-log-setup 'state org-state this 'findpos dolog)))
12607 ;; Fixup tag positioning
12608 (org-todo-trigger-tag-changes org-state)
12609 (and org-auto-align-tags (not org-setting-tags) (org-set-tags nil t))
12610 (when org-provide-todo-statistics
12611 (org-update-parent-todo-statistics))
12612 (run-hooks 'org-after-todo-state-change-hook)
12613 (if (and arg (not (member org-state org-done-keywords)))
12614 (setq head (org-get-todo-sequence-head org-state)))
12615 (put-text-property (point-at-bol) (point-at-eol) 'org-todo-head head)
12616 ;; Do we need to trigger a repeat?
12617 (when now-done-p
12618 (when (boundp 'org-agenda-headline-snapshot-before-repeat)
12619 ;; This is for the agenda, take a snapshot of the headline.
12620 (save-match-data
12621 (setq org-agenda-headline-snapshot-before-repeat
12622 (org-get-heading))))
12623 (org-auto-repeat-maybe org-state))
12624 ;; Fixup cursor location if close to the keyword
12625 (if (and (outline-on-heading-p)
12626 (not (bolp))
12627 (save-excursion (beginning-of-line 1)
12628 (looking-at org-todo-line-regexp))
12629 (< (point) (+ 2 (or (match-end 2) (match-end 1)))))
12630 (progn
12631 (goto-char (or (match-end 2) (match-end 1)))
12632 (and (looking-at " ") (just-one-space))))
12633 (when org-trigger-hook
12634 (save-excursion
12635 (run-hook-with-args 'org-trigger-hook change-plist)))
12636 (when commentp (org-toggle-comment))))))))
12638 (defun org-block-todo-from-children-or-siblings-or-parent (change-plist)
12639 "Block turning an entry into a TODO, using the hierarchy.
12640 This checks whether the current task should be blocked from state
12641 changes. Such blocking occurs when:
12643 1. The task has children which are not all in a completed state.
12645 2. A task has a parent with the property :ORDERED:, and there
12646 are siblings prior to the current task with incomplete
12647 status.
12649 3. The parent of the task is blocked because it has siblings that should
12650 be done first, or is child of a block grandparent TODO entry."
12652 (if (not org-enforce-todo-dependencies)
12653 t ; if locally turned off don't block
12654 (catch 'dont-block
12655 ;; If this is not a todo state change, or if this entry is already DONE,
12656 ;; do not block
12657 (when (or (not (eq (plist-get change-plist :type) 'todo-state-change))
12658 (member (plist-get change-plist :from)
12659 (cons 'done org-done-keywords))
12660 (member (plist-get change-plist :to)
12661 (cons 'todo org-not-done-keywords))
12662 (not (plist-get change-plist :to)))
12663 (throw 'dont-block t))
12664 ;; If this task has children, and any are undone, it's blocked
12665 (save-excursion
12666 (org-back-to-heading t)
12667 (let ((this-level (funcall outline-level)))
12668 (outline-next-heading)
12669 (let ((child-level (funcall outline-level)))
12670 (while (and (not (eobp))
12671 (> child-level this-level))
12672 ;; this todo has children, check whether they are all
12673 ;; completed
12674 (if (and (not (org-entry-is-done-p))
12675 (org-entry-is-todo-p))
12676 (progn (setq org-block-entry-blocking (org-get-heading))
12677 (throw 'dont-block nil)))
12678 (outline-next-heading)
12679 (setq child-level (funcall outline-level))))))
12680 ;; Otherwise, if the task's parent has the :ORDERED: property, and
12681 ;; any previous siblings are undone, it's blocked
12682 (save-excursion
12683 (org-back-to-heading t)
12684 (let* ((pos (point))
12685 (parent-pos (and (org-up-heading-safe) (point))))
12686 (if (not parent-pos) (throw 'dont-block t)) ; no parent
12687 (when (and (org-not-nil (org-entry-get (point) "ORDERED"))
12688 (forward-line 1)
12689 (re-search-forward org-not-done-heading-regexp pos t))
12690 (setq org-block-entry-blocking (match-string 0))
12691 (throw 'dont-block nil)) ; block, there is an older sibling not done.
12692 ;; Search further up the hierarchy, to see if an ancestor is blocked
12693 (while t
12694 (goto-char parent-pos)
12695 (if (not (looking-at org-not-done-heading-regexp))
12696 (throw 'dont-block t)) ; do not block, parent is not a TODO
12697 (setq pos (point))
12698 (setq parent-pos (and (org-up-heading-safe) (point)))
12699 (if (not parent-pos) (throw 'dont-block t)) ; no parent
12700 (when (and (org-not-nil (org-entry-get (point) "ORDERED"))
12701 (forward-line 1)
12702 (re-search-forward org-not-done-heading-regexp pos t)
12703 (setq org-block-entry-blocking (org-get-heading)))
12704 (throw 'dont-block nil)))))))) ; block, older sibling not done.
12706 (defcustom org-track-ordered-property-with-tag nil
12707 "Should the ORDERED property also be shown as a tag?
12708 The ORDERED property decides if an entry should require subtasks to be
12709 completed in sequence. Since a property is not very visible, setting
12710 this option means that toggling the ORDERED property with the command
12711 `org-toggle-ordered-property' will also toggle a tag ORDERED. That tag is
12712 not relevant for the behavior, but it makes things more visible.
12714 Note that toggling the tag with tags commands will not change the property
12715 and therefore not influence behavior!
12717 This can be t, meaning the tag ORDERED should be used, It can also be a
12718 string to select a different tag for this task."
12719 :group 'org-todo
12720 :type '(choice
12721 (const :tag "No tracking" nil)
12722 (const :tag "Track with ORDERED tag" t)
12723 (string :tag "Use other tag")))
12725 (defun org-toggle-ordered-property ()
12726 "Toggle the ORDERED property of the current entry.
12727 For better visibility, you can track the value of this property with a tag.
12728 See variable `org-track-ordered-property-with-tag'."
12729 (interactive)
12730 (let* ((t1 org-track-ordered-property-with-tag)
12731 (tag (and t1 (if (stringp t1) t1 "ORDERED"))))
12732 (save-excursion
12733 (org-back-to-heading)
12734 (if (org-entry-get nil "ORDERED")
12735 (progn
12736 (org-delete-property "ORDERED")
12737 (and tag (org-toggle-tag tag 'off))
12738 (message "Subtasks can be completed in arbitrary order"))
12739 (org-entry-put nil "ORDERED" "t")
12740 (and tag (org-toggle-tag tag 'on))
12741 (message "Subtasks must be completed in sequence")))))
12743 (defvar org-blocked-by-checkboxes) ; dynamically scoped
12744 (defun org-block-todo-from-checkboxes (change-plist)
12745 "Block turning an entry into a TODO, using checkboxes.
12746 This checks whether the current task should be blocked from state
12747 changes because there are unchecked boxes in this entry."
12748 (if (not org-enforce-todo-checkbox-dependencies)
12749 t ; if locally turned off don't block
12750 (catch 'dont-block
12751 ;; If this is not a todo state change, or if this entry is already DONE,
12752 ;; do not block
12753 (when (or (not (eq (plist-get change-plist :type) 'todo-state-change))
12754 (member (plist-get change-plist :from)
12755 (cons 'done org-done-keywords))
12756 (member (plist-get change-plist :to)
12757 (cons 'todo org-not-done-keywords))
12758 (not (plist-get change-plist :to)))
12759 (throw 'dont-block t))
12760 ;; If this task has checkboxes that are not checked, it's blocked
12761 (save-excursion
12762 (org-back-to-heading t)
12763 (let ((beg (point)) end)
12764 (outline-next-heading)
12765 (setq end (point))
12766 (goto-char beg)
12767 (if (org-list-search-forward
12768 (concat (org-item-beginning-re)
12769 "\\(?:\\[@\\(?:start:\\)?\\([0-9]+\\|[A-Za-z]\\)\\][ \t]*\\)?"
12770 "\\[[- ]\\]")
12771 end t)
12772 (progn
12773 (if (boundp 'org-blocked-by-checkboxes)
12774 (setq org-blocked-by-checkboxes t))
12775 (throw 'dont-block nil)))))
12776 t))) ; do not block
12778 (defun org-entry-blocked-p ()
12779 "Is the current entry blocked?"
12780 (org-with-silent-modifications
12781 (if (org-entry-get nil "NOBLOCKING")
12782 nil ;; Never block this entry
12783 (not (run-hook-with-args-until-failure
12784 'org-blocker-hook
12785 (list :type 'todo-state-change
12786 :position (point)
12787 :from 'todo
12788 :to 'done))))))
12790 (defun org-update-statistics-cookies (all)
12791 "Update the statistics cookie, either from TODO or from checkboxes.
12792 This should be called with the cursor in a line with a statistics cookie."
12793 (interactive "P")
12794 (if all
12795 (progn
12796 (org-update-checkbox-count 'all)
12797 (org-map-entries 'org-update-parent-todo-statistics))
12798 (if (not (org-at-heading-p))
12799 (org-update-checkbox-count)
12800 (let ((pos (point-marker))
12801 end l1 l2)
12802 (ignore-errors (org-back-to-heading t))
12803 (if (not (org-at-heading-p))
12804 (org-update-checkbox-count)
12805 (setq l1 (org-outline-level))
12806 (setq end (save-excursion
12807 (outline-next-heading)
12808 (if (org-at-heading-p) (setq l2 (org-outline-level)))
12809 (point)))
12810 (if (and (save-excursion
12811 (re-search-forward
12812 "^[ \t]*\\([-+*]\\|[0-9]+[.)]\\) \\[[- X]\\]" end t))
12813 (not (save-excursion (re-search-forward
12814 ":COOKIE_DATA:.*\\<todo\\>" end t))))
12815 (org-update-checkbox-count)
12816 (if (and l2 (> l2 l1))
12817 (progn
12818 (goto-char end)
12819 (org-update-parent-todo-statistics))
12820 (goto-char pos)
12821 (beginning-of-line 1)
12822 (while (re-search-forward
12823 "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)"
12824 (point-at-eol) t)
12825 (replace-match (if (match-end 2) "[100%]" "[0/0]") t t)))))
12826 (goto-char pos)
12827 (move-marker pos nil)))))
12829 (defvar org-entry-property-inherited-from) ;; defined below
12830 (defun org-update-parent-todo-statistics ()
12831 "Update any statistics cookie in the parent of the current headline.
12832 When `org-hierarchical-todo-statistics' is nil, statistics will cover
12833 the entire subtree and this will travel up the hierarchy and update
12834 statistics everywhere."
12835 (let* ((prop (save-excursion (org-up-heading-safe)
12836 (org-entry-get nil "COOKIE_DATA" 'inherit)))
12837 (recursive (or (not org-hierarchical-todo-statistics)
12838 (and prop (string-match "\\<recursive\\>" prop))))
12839 (lim (or (and prop (marker-position org-entry-property-inherited-from))
12841 (first t)
12842 (box-re "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)")
12843 level ltoggle l1 new ndel
12844 (cnt-all 0) (cnt-done 0) is-percent kwd
12845 checkbox-beg ov ovs ove cookie-present)
12846 (catch 'exit
12847 (save-excursion
12848 (beginning-of-line 1)
12849 (setq ltoggle (funcall outline-level))
12850 ;; Three situations are to consider:
12852 ;; 1. if `org-hierarchical-todo-statistics' is nil, repeat up
12853 ;; to the top-level ancestor on the headline;
12855 ;; 2. If parent has "recursive" property, repeat up to the
12856 ;; headline setting that property, taking inheritance into
12857 ;; account;
12859 ;; 3. Else, move up to direct parent and proceed only once.
12860 (while (and (setq level (org-up-heading-safe))
12861 (or recursive first)
12862 (>= (point) lim))
12863 (setq first nil cookie-present nil)
12864 (unless (and level
12865 (not (string-match
12866 "\\<checkbox\\>"
12867 (downcase (or (org-entry-get nil "COOKIE_DATA")
12868 "")))))
12869 (throw 'exit nil))
12870 (while (re-search-forward box-re (point-at-eol) t)
12871 (setq cnt-all 0 cnt-done 0 cookie-present t)
12872 (setq is-percent (match-end 2) checkbox-beg (match-beginning 0))
12873 (save-match-data
12874 (unless (outline-next-heading) (throw 'exit nil))
12875 (while (and (looking-at org-complex-heading-regexp)
12876 (> (setq l1 (length (match-string 1))) level))
12877 (setq kwd (and (or recursive (= l1 ltoggle))
12878 (match-string 2)))
12879 (if (or (eq org-provide-todo-statistics 'all-headlines)
12880 (and (eq org-provide-todo-statistics t)
12881 (or (member kwd org-done-keywords)))
12882 (and (listp org-provide-todo-statistics)
12883 (stringp (car org-provide-todo-statistics))
12884 (or (member kwd org-provide-todo-statistics)
12885 (member kwd org-done-keywords)))
12886 (and (listp org-provide-todo-statistics)
12887 (listp (car org-provide-todo-statistics))
12888 (or (member kwd (car org-provide-todo-statistics))
12889 (and (member kwd org-done-keywords)
12890 (member kwd (cadr org-provide-todo-statistics))))))
12891 (setq cnt-all (1+ cnt-all))
12892 (if (eq org-provide-todo-statistics t)
12893 (and kwd (setq cnt-all (1+ cnt-all)))))
12894 (when (or (and (member org-provide-todo-statistics '(t all-headlines))
12895 (member kwd org-done-keywords))
12896 (and (listp org-provide-todo-statistics)
12897 (listp (car org-provide-todo-statistics))
12898 (member kwd org-done-keywords)
12899 (member kwd (cadr org-provide-todo-statistics)))
12900 (and (listp org-provide-todo-statistics)
12901 (stringp (car org-provide-todo-statistics))
12902 (member kwd org-done-keywords)))
12903 (setq cnt-done (1+ cnt-done)))
12904 (outline-next-heading)))
12905 (setq new
12906 (if is-percent
12907 (format "[%d%%]" (/ (* 100 cnt-done) (max 1 cnt-all)))
12908 (format "[%d/%d]" cnt-done cnt-all))
12909 ndel (- (match-end 0) checkbox-beg))
12910 ;; handle overlays when updating cookie from column view
12911 (when (setq ov (car (overlays-at checkbox-beg)))
12912 (setq ovs (overlay-start ov) ove (overlay-end ov))
12913 (delete-overlay ov))
12914 (goto-char checkbox-beg)
12915 (insert new)
12916 (delete-region (point) (+ (point) ndel))
12917 (when org-auto-align-tags (org-fix-tags-on-the-fly))
12918 (when ov (move-overlay ov ovs ove)))
12919 (when cookie-present
12920 (run-hook-with-args 'org-after-todo-statistics-hook
12921 cnt-done (- cnt-all cnt-done))))))
12922 (run-hooks 'org-todo-statistics-hook)))
12924 (defvar org-after-todo-statistics-hook nil
12925 "Hook that is called after a TODO statistics cookie has been updated.
12926 Each function is called with two arguments: the number of not-done entries
12927 and the number of done entries.
12929 For example, the following function, when added to this hook, will switch
12930 an entry to DONE when all children are done, and back to TODO when new
12931 entries are set to a TODO status. Note that this hook is only called
12932 when there is a statistics cookie in the headline!
12934 (defun org-summary-todo (n-done n-not-done)
12935 \"Switch entry to DONE when all subentries are done, to TODO otherwise.\"
12936 (let (org-log-done org-log-states) ; turn off logging
12937 (org-todo (if (= n-not-done 0) \"DONE\" \"TODO\"))))
12940 (defvar org-todo-statistics-hook nil
12941 "Hook that is run whenever Org thinks TODO statistics should be updated.
12942 This hook runs even if there is no statistics cookie present, in which case
12943 `org-after-todo-statistics-hook' would not run.")
12945 (defun org-todo-trigger-tag-changes (state)
12946 "Apply the changes defined in `org-todo-state-tags-triggers'."
12947 (let ((l org-todo-state-tags-triggers)
12948 changes)
12949 (when (or (not state) (equal state ""))
12950 (setq changes (append changes (cdr (assoc "" l)))))
12951 (when (and (stringp state) (> (length state) 0))
12952 (setq changes (append changes (cdr (assoc state l)))))
12953 (when (member state org-not-done-keywords)
12954 (setq changes (append changes (cdr (assoc 'todo l)))))
12955 (when (member state org-done-keywords)
12956 (setq changes (append changes (cdr (assoc 'done l)))))
12957 (dolist (c changes)
12958 (org-toggle-tag (car c) (if (cdr c) 'on 'off)))))
12960 (defun org-local-logging (value)
12961 "Get logging settings from a property VALUE."
12962 (let* (words w a)
12963 ;; directly set the variables, they are already local.
12964 (setq org-log-done nil
12965 org-log-repeat nil
12966 org-todo-log-states nil)
12967 (setq words (org-split-string value))
12968 (while (setq w (pop words))
12969 (cond
12970 ((setq a (assoc w org-startup-options))
12971 (and (member (nth 1 a) '(org-log-done org-log-repeat))
12972 (set (nth 1 a) (nth 2 a))))
12973 ((setq a (org-extract-log-state-settings w))
12974 (and (member (car a) org-todo-keywords-1)
12975 (push a org-todo-log-states)))))))
12977 (defun org-get-todo-sequence-head (kwd)
12978 "Return the head of the TODO sequence to which KWD belongs.
12979 If KWD is not set, check if there is a text property remembering the
12980 right sequence."
12981 (let (p)
12982 (cond
12983 ((not kwd)
12984 (or (get-text-property (point-at-bol) 'org-todo-head)
12985 (progn
12986 (setq p (next-single-property-change (point-at-bol) 'org-todo-head
12987 nil (point-at-eol)))
12988 (get-text-property p 'org-todo-head))))
12989 ((not (member kwd org-todo-keywords-1))
12990 (car org-todo-keywords-1))
12991 (t (nth 2 (assoc kwd org-todo-kwd-alist))))))
12993 (defun org-fast-todo-selection ()
12994 "Fast TODO keyword selection with single keys.
12995 Returns the new TODO keyword, or nil if no state change should occur."
12996 (let* ((fulltable org-todo-key-alist)
12997 (done-keywords org-done-keywords) ;; needed for the faces.
12998 (maxlen (apply 'max (mapcar
12999 (lambda (x)
13000 (if (stringp (car x)) (string-width (car x)) 0))
13001 fulltable)))
13002 (expert nil)
13003 (fwidth (+ maxlen 3 1 3))
13004 (ncol (/ (- (window-width) 4) fwidth))
13005 tg cnt e c tbl
13006 groups ingroup)
13007 (save-excursion
13008 (save-window-excursion
13009 (if expert
13010 (set-buffer (get-buffer-create " *Org todo*"))
13011 (org-switch-to-buffer-other-window (get-buffer-create " *Org todo*")))
13012 (erase-buffer)
13013 (org-set-local 'org-done-keywords done-keywords)
13014 (setq tbl fulltable cnt 0)
13015 (while (setq e (pop tbl))
13016 (cond
13017 ((equal e '(:startgroup))
13018 (push '() groups) (setq ingroup t)
13019 (when (not (= cnt 0))
13020 (setq cnt 0)
13021 (insert "\n"))
13022 (insert "{ "))
13023 ((equal e '(:endgroup))
13024 (setq ingroup nil cnt 0)
13025 (insert "}\n"))
13026 ((equal e '(:newline))
13027 (when (not (= cnt 0))
13028 (setq cnt 0)
13029 (insert "\n")
13030 (setq e (car tbl))
13031 (while (equal (car tbl) '(:newline))
13032 (insert "\n")
13033 (setq tbl (cdr tbl)))))
13035 (setq tg (car e) c (cdr e))
13036 (if ingroup (push tg (car groups)))
13037 (setq tg (org-add-props tg nil 'face
13038 (org-get-todo-face tg)))
13039 (if (and (= cnt 0) (not ingroup)) (insert " "))
13040 (insert "[" c "] " tg (make-string
13041 (- fwidth 4 (length tg)) ?\ ))
13042 (when (= (setq cnt (1+ cnt)) ncol)
13043 (insert "\n")
13044 (if ingroup (insert " "))
13045 (setq cnt 0)))))
13046 (insert "\n")
13047 (goto-char (point-min))
13048 (if (not expert) (org-fit-window-to-buffer))
13049 (message "[a-z..]:Set [SPC]:clear")
13050 (setq c (let ((inhibit-quit t)) (read-char-exclusive)))
13051 (cond
13052 ((or (= c ?\C-g)
13053 (and (= c ?q) (not (rassoc c fulltable))))
13054 (setq quit-flag t))
13055 ((= c ?\ ) nil)
13056 ((setq e (rassoc c fulltable) tg (car e))
13058 (t (setq quit-flag t)))))))
13060 (defun org-entry-is-todo-p ()
13061 (member (org-get-todo-state) org-not-done-keywords))
13063 (defun org-entry-is-done-p ()
13064 (member (org-get-todo-state) org-done-keywords))
13066 (defun org-get-todo-state ()
13067 "Return the TODO keyword of the current subtree."
13068 (save-excursion
13069 (org-back-to-heading t)
13070 (and (looking-at org-todo-line-regexp)
13071 (match-end 2)
13072 (match-string 2))))
13074 (defun org-at-date-range-p (&optional inactive-ok)
13075 "Is the cursor inside a date range?"
13076 (interactive)
13077 (save-excursion
13078 (catch 'exit
13079 (let ((pos (point)))
13080 (skip-chars-backward "^[<\r\n")
13081 (skip-chars-backward "<[")
13082 (and (looking-at (if inactive-ok org-tr-regexp-both org-tr-regexp))
13083 (>= (match-end 0) pos)
13084 (throw 'exit t))
13085 (skip-chars-backward "^<[\r\n")
13086 (skip-chars-backward "<[")
13087 (and (looking-at (if inactive-ok org-tr-regexp-both org-tr-regexp))
13088 (>= (match-end 0) pos)
13089 (throw 'exit t)))
13090 nil)))
13092 (defun org-get-repeat (&optional tagline)
13093 "Check if there is a deadline/schedule with repeater in this entry."
13094 (save-match-data
13095 (save-excursion
13096 (org-back-to-heading t)
13097 (and (re-search-forward (if tagline
13098 (concat tagline "\\s-*" org-repeat-re)
13099 org-repeat-re)
13100 (org-entry-end-position) t)
13101 (match-string-no-properties 1)))))
13103 (defvar org-last-changed-timestamp)
13104 (defvar org-last-inserted-timestamp)
13105 (defvar org-log-post-message)
13106 (defvar org-log-note-purpose)
13107 (defvar org-log-note-how)
13108 (defvar org-log-note-extra)
13109 (defun org-auto-repeat-maybe (done-word)
13110 "Check if the current headline contains a repeated deadline/schedule.
13111 If yes, set TODO state back to what it was and change the base date
13112 of repeating deadline/scheduled time stamps to new date.
13113 This function is run automatically after each state change to a DONE state."
13114 ;; last-state is dynamically scoped into this function
13115 (let* ((repeat (org-get-repeat))
13116 (aa (assoc org-last-state org-todo-kwd-alist))
13117 (interpret (nth 1 aa))
13118 (head (nth 2 aa))
13119 (whata '(("h" . hour) ("d" . day) ("m" . month) ("y" . year)))
13120 (msg "Entry repeats: ")
13121 (org-log-done nil)
13122 (org-todo-log-states nil)
13123 re type n what ts time to-state)
13124 (when (and repeat (not (zerop (string-to-number (substring repeat 1)))))
13125 (if (eq org-log-repeat t) (setq org-log-repeat 'state))
13126 (setq to-state (or (org-entry-get nil "REPEAT_TO_STATE")
13127 org-todo-repeat-to-state))
13128 (unless (and to-state (member to-state org-todo-keywords-1))
13129 (setq to-state (if (eq interpret 'type) org-last-state head)))
13130 (org-todo to-state)
13131 (when (or org-log-repeat (org-entry-get nil "CLOCK"))
13132 (org-entry-put nil "LAST_REPEAT" (format-time-string
13133 (org-time-stamp-format t t))))
13134 (when org-log-repeat
13135 (if (or (memq 'org-add-log-note (default-value 'post-command-hook))
13136 (memq 'org-add-log-note post-command-hook))
13137 ;; OK, we are already setup for some record
13138 (if (eq org-log-repeat 'note)
13139 ;; make sure we take a note, not only a time stamp
13140 (setq org-log-note-how 'note))
13141 ;; Set up for taking a record
13142 (org-add-log-setup 'state (or done-word (car org-done-keywords))
13143 org-last-state
13144 'findpos org-log-repeat)))
13145 (org-back-to-heading t)
13146 (org-add-planning-info nil nil 'closed)
13147 (setq re (concat "\\(" org-scheduled-time-regexp "\\)\\|\\("
13148 org-deadline-time-regexp "\\)\\|\\("
13149 org-ts-regexp "\\)"))
13150 (while (re-search-forward
13151 re (save-excursion (outline-next-heading) (point)) t)
13152 (setq type (if (match-end 1) org-scheduled-string
13153 (if (match-end 3) org-deadline-string "Plain:"))
13154 ts (match-string (if (match-end 2) 2 (if (match-end 4) 4 0))))
13155 (when (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([hdwmy]\\)" ts)
13156 (setq n (string-to-number (match-string 2 ts))
13157 what (match-string 3 ts))
13158 (if (equal what "w") (setq n (* n 7) what "d"))
13159 (if (and (equal what "h") (not (string-match "[0-9]\\{1,2\\}:[0-9]\\{2\\}" ts)))
13160 (user-error "Cannot repeat in Repeat in %d hour(s) because no hour has been set" n))
13161 ;; Preparation, see if we need to modify the start date for the change
13162 (when (match-end 1)
13163 (setq time (save-match-data (org-time-string-to-time ts)))
13164 (cond
13165 ((equal (match-string 1 ts) ".")
13166 ;; Shift starting date to today
13167 (org-timestamp-change
13168 (- (org-today) (time-to-days time))
13169 'day))
13170 ((equal (match-string 1 ts) "+")
13171 (let ((nshiftmax 10) (nshift 0))
13172 (while (or (= nshift 0)
13173 (<= (time-to-days time)
13174 (time-to-days (current-time))))
13175 (when (= (incf nshift) nshiftmax)
13176 (or (y-or-n-p (message "%d repeater intervals were not enough to shift date past today. Continue? " nshift))
13177 (user-error "Abort")))
13178 (org-timestamp-change n (cdr (assoc what whata)))
13179 (org-at-timestamp-p t)
13180 (setq ts (match-string 1))
13181 (setq time (save-match-data (org-time-string-to-time ts)))))
13182 (org-timestamp-change (- n) (cdr (assoc what whata)))
13183 ;; rematch, so that we have everything in place for the real shift
13184 (org-at-timestamp-p t)
13185 (setq ts (match-string 1))
13186 (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([hdwmy]\\)" ts))))
13187 (save-excursion (org-timestamp-change n (cdr (assoc what whata)) nil t))
13188 (setq msg (concat msg type " " org-last-changed-timestamp " "))))
13189 (setq org-log-post-message msg)
13190 (message "%s" msg))))
13192 (defun org-show-todo-tree (arg)
13193 "Make a compact tree which shows all headlines marked with TODO.
13194 The tree will show the lines where the regexp matches, and all higher
13195 headlines above the match.
13196 With a \\[universal-argument] prefix, prompt for a regexp to match.
13197 With a numeric prefix N, construct a sparse tree for the Nth element
13198 of `org-todo-keywords-1'."
13199 (interactive "P")
13200 (let ((case-fold-search nil)
13201 (kwd-re
13202 (cond ((null arg) org-not-done-regexp)
13203 ((equal arg '(4))
13204 (let ((kwd (org-icompleting-read "Keyword (or KWD1|KWD2|...): "
13205 (mapcar 'list org-todo-keywords-1))))
13206 (concat "\\("
13207 (mapconcat 'identity (org-split-string kwd "|") "\\|")
13208 "\\)\\>")))
13209 ((<= (prefix-numeric-value arg) (length org-todo-keywords-1))
13210 (regexp-quote (nth (1- (prefix-numeric-value arg))
13211 org-todo-keywords-1)))
13212 (t (user-error "Invalid prefix argument: %s" arg)))))
13213 (message "%d TODO entries found"
13214 (org-occur (concat "^" org-outline-regexp " *" kwd-re )))))
13216 (defun org-deadline (arg &optional time)
13217 "Insert the \"DEADLINE:\" string with a timestamp to make a deadline.
13218 With one universal prefix argument, remove any deadline from the item.
13219 With two universal prefix arguments, prompt for a warning delay.
13220 With argument TIME, set the deadline at the corresponding date. TIME
13221 can either be an Org date like \"2011-07-24\" or a delta like \"+2d\"."
13222 (interactive "P")
13223 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
13224 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
13225 'region-start-level 'region))
13226 org-loop-over-headlines-in-active-region)
13227 (org-map-entries
13228 `(org-deadline ',arg ,time)
13229 org-loop-over-headlines-in-active-region
13230 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
13231 (let* ((old-date (org-entry-get nil "DEADLINE"))
13232 (old-date-time (if old-date (org-time-string-to-time old-date)))
13233 (repeater (and old-date
13234 (string-match
13235 "\\([.+-]+[0-9]+[hdwmy]\\(?:[/ ][-+]?[0-9]+[hdwmy]\\)?\\) ?"
13236 old-date)
13237 (match-string 1 old-date))))
13238 (cond
13239 ((equal arg '(4))
13240 (when (and old-date org-log-redeadline)
13241 (org-add-log-setup 'deldeadline nil old-date 'findpos
13242 org-log-redeadline))
13243 (org-remove-timestamp-with-keyword org-deadline-string)
13244 (message "Item no longer has a deadline."))
13245 ((equal arg '(16))
13246 (save-excursion
13247 (org-back-to-heading t)
13248 (if (re-search-forward
13249 org-deadline-time-regexp
13250 (save-excursion (outline-next-heading) (point)) t)
13251 (let* ((rpl0 (match-string 1))
13252 (rpl (replace-regexp-in-string " -[0-9]+[hdwmy]" "" rpl0)))
13253 (replace-match
13254 (concat org-deadline-string
13255 " <" rpl
13256 (format " -%dd"
13257 (abs
13258 (- (time-to-days
13259 (save-match-data
13260 (org-read-date nil t nil "Warn starting from" old-date-time)))
13261 (time-to-days old-date-time))))
13262 ">") t t))
13263 (user-error "No deadline information to update"))))
13265 (org-add-planning-info 'deadline time 'closed)
13266 (when (and old-date org-log-redeadline
13267 (not (equal old-date
13268 (substring org-last-inserted-timestamp 1 -1))))
13269 (org-add-log-setup 'redeadline nil old-date 'findpos
13270 org-log-redeadline))
13271 (when repeater
13272 (save-excursion
13273 (org-back-to-heading t)
13274 (when (re-search-forward (concat org-deadline-string " "
13275 org-last-inserted-timestamp)
13276 (save-excursion
13277 (outline-next-heading) (point)) t)
13278 (goto-char (1- (match-end 0)))
13279 (insert " " repeater)
13280 (setq org-last-inserted-timestamp
13281 (concat (substring org-last-inserted-timestamp 0 -1)
13282 " " repeater
13283 (substring org-last-inserted-timestamp -1))))))
13284 (message "Deadline on %s" org-last-inserted-timestamp))))))
13286 (defun org-schedule (arg &optional time)
13287 "Insert the SCHEDULED: string with a timestamp to schedule a TODO item.
13288 With one universal prefix argument, remove any scheduling date from the item.
13289 With two universal prefix arguments, prompt for a delay cookie.
13290 With argument TIME, scheduled at the corresponding date. TIME can
13291 either be an Org date like \"2011-07-24\" or a delta like \"+2d\"."
13292 (interactive "P")
13293 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
13294 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
13295 'region-start-level 'region))
13296 org-loop-over-headlines-in-active-region)
13297 (org-map-entries
13298 `(org-schedule ',arg ,time)
13299 org-loop-over-headlines-in-active-region
13300 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
13301 (let* ((old-date (org-entry-get nil "SCHEDULED"))
13302 (old-date-time (if old-date (org-time-string-to-time old-date)))
13303 (repeater (and old-date
13304 (string-match
13305 "\\([.+-]+[0-9]+[hdwmy]\\(?:[/ ][-+]?[0-9]+[hdwmy]\\)?\\) ?"
13306 old-date)
13307 (match-string 1 old-date))))
13308 (cond
13309 ((equal arg '(4))
13310 (progn
13311 (when (and old-date org-log-reschedule)
13312 (org-add-log-setup 'delschedule nil old-date 'findpos
13313 org-log-reschedule))
13314 (org-remove-timestamp-with-keyword org-scheduled-string)
13315 (message "Item is no longer scheduled.")))
13316 ((equal arg '(16))
13317 (save-excursion
13318 (org-back-to-heading t)
13319 (if (re-search-forward
13320 org-scheduled-time-regexp
13321 (save-excursion (outline-next-heading) (point)) t)
13322 (let* ((rpl0 (match-string 1))
13323 (rpl (replace-regexp-in-string " -[0-9]+[hdwmy]" "" rpl0)))
13324 (replace-match
13325 (concat org-scheduled-string
13326 " <" rpl
13327 (format " -%dd"
13328 (abs
13329 (- (time-to-days
13330 (save-match-data
13331 (org-read-date nil t nil "Delay until" old-date-time)))
13332 (time-to-days old-date-time))))
13333 ">") t t))
13334 (user-error "No scheduled information to update"))))
13336 (org-add-planning-info 'scheduled time 'closed)
13337 (when (and old-date org-log-reschedule
13338 (not (equal old-date
13339 (substring org-last-inserted-timestamp 1 -1))))
13340 (org-add-log-setup 'reschedule nil old-date 'findpos
13341 org-log-reschedule))
13342 (when repeater
13343 (save-excursion
13344 (org-back-to-heading t)
13345 (when (re-search-forward (concat org-scheduled-string " "
13346 org-last-inserted-timestamp)
13347 (save-excursion
13348 (outline-next-heading) (point)) t)
13349 (goto-char (1- (match-end 0)))
13350 (insert " " repeater)
13351 (setq org-last-inserted-timestamp
13352 (concat (substring org-last-inserted-timestamp 0 -1)
13353 " " repeater
13354 (substring org-last-inserted-timestamp -1))))))
13355 (message "Scheduled to %s" org-last-inserted-timestamp))))))
13357 (defun org-get-scheduled-time (pom &optional inherit)
13358 "Get the scheduled time as a time tuple, of a format suitable
13359 for calling org-schedule with, or if there is no scheduling,
13360 returns nil."
13361 (let ((time (org-entry-get pom "SCHEDULED" inherit)))
13362 (when time
13363 (apply 'encode-time (org-parse-time-string time)))))
13365 (defun org-get-deadline-time (pom &optional inherit)
13366 "Get the deadline as a time tuple, of a format suitable for
13367 calling org-deadline with, or if there is no scheduling, returns
13368 nil."
13369 (let ((time (org-entry-get pom "DEADLINE" inherit)))
13370 (when time
13371 (apply 'encode-time (org-parse-time-string time)))))
13373 (defun org-remove-timestamp-with-keyword (keyword)
13374 "Remove all time stamps with KEYWORD in the current entry."
13375 (let ((re (concat "\\<" (regexp-quote keyword) " +<[^>\n]+>[ \t]*"))
13376 beg)
13377 (save-excursion
13378 (org-back-to-heading t)
13379 (setq beg (point))
13380 (outline-next-heading)
13381 (while (re-search-backward re beg t)
13382 (replace-match "")
13383 (if (and (string-match "\\S-" (buffer-substring (point-at-bol) (point)))
13384 (equal (char-before) ?\ ))
13385 (backward-delete-char 1)
13386 (if (string-match "^[ \t]*$" (buffer-substring
13387 (point-at-bol) (point-at-eol)))
13388 (delete-region (point-at-bol)
13389 (min (point-max) (1+ (point-at-eol))))))))))
13391 (defvar org-time-was-given) ; dynamically scoped parameter
13392 (defvar org-end-time-was-given) ; dynamically scoped parameter
13394 (defun org-add-planning-info (what &optional time &rest remove)
13395 "Insert new timestamp with keyword in the line directly after the headline.
13396 WHAT indicates what kind of time stamp to add. TIME indicates the time to use.
13397 If non is given, the user is prompted for a date.
13398 REMOVE indicates what kind of entries to remove. An old WHAT entry will also
13399 be removed."
13400 (interactive)
13401 (let (org-time-was-given org-end-time-was-given ts
13402 end default-time default-input)
13404 (catch 'exit
13405 (when (and (memq what '(scheduled deadline))
13406 (or (not time)
13407 (and (stringp time)
13408 (string-match "^[-+]+[0-9]" time))))
13409 ;; Try to get a default date/time from existing timestamp
13410 (save-excursion
13411 (org-back-to-heading t)
13412 (setq end (save-excursion (outline-next-heading) (point)))
13413 (when (re-search-forward (if (eq what 'scheduled)
13414 org-scheduled-time-regexp
13415 org-deadline-time-regexp)
13416 end t)
13417 (setq ts (match-string 1)
13418 default-time
13419 (apply 'encode-time (org-parse-time-string ts))
13420 default-input (and ts (org-get-compact-tod ts))))))
13421 (when what
13422 (setq time
13423 (if (stringp time)
13424 ;; This is a string (relative or absolute), set proper date
13425 (apply 'encode-time
13426 (org-read-date-analyze
13427 time default-time (decode-time default-time)))
13428 ;; If necessary, get the time from the user
13429 (or time (org-read-date nil 'to-time nil nil
13430 default-time default-input)))))
13432 (when (and org-insert-labeled-timestamps-at-point
13433 (member what '(scheduled deadline)))
13434 (insert
13435 (if (eq what 'scheduled) org-scheduled-string org-deadline-string) " ")
13436 (org-insert-time-stamp time org-time-was-given
13437 nil nil nil (list org-end-time-was-given))
13438 (setq what nil))
13439 (save-excursion
13440 (save-restriction
13441 (let (col list elt ts buffer-invisibility-spec)
13442 (org-back-to-heading t)
13443 (looking-at (concat org-outline-regexp "\\( *\\)[^\r\n]*"))
13444 (goto-char (match-end 1))
13445 (setq col (current-column))
13446 (goto-char (match-end 0))
13447 (if (eobp) (insert "\n") (forward-char 1))
13448 (when (and (not what)
13449 (not (looking-at
13450 (concat "[ \t]*"
13451 org-keyword-time-not-clock-regexp))))
13452 ;; Nothing to add, nothing to remove...... :-)
13453 (throw 'exit nil))
13454 (if (and (not (looking-at org-outline-regexp))
13455 (looking-at (concat "[^\r\n]*?" org-keyword-time-regexp
13456 "[^\r\n]*"))
13457 (not (equal (match-string 1) org-clock-string)))
13458 (narrow-to-region (match-beginning 0) (match-end 0))
13459 (insert-before-markers "\n")
13460 (backward-char 1)
13461 (narrow-to-region (point) (point))
13462 (and org-adapt-indentation (org-indent-to-column col)))
13463 ;; Check if we have to remove something.
13464 (setq list (cons what remove))
13465 (while list
13466 (setq elt (pop list))
13467 (when (or (and (eq elt 'scheduled)
13468 (re-search-forward org-scheduled-time-regexp nil t))
13469 (and (eq elt 'deadline)
13470 (re-search-forward org-deadline-time-regexp nil t))
13471 (and (eq elt 'closed)
13472 (re-search-forward org-closed-time-regexp nil t)))
13473 (replace-match "")
13474 (if (looking-at "--+<[^>]+>") (replace-match ""))))
13475 (and (looking-at "[ \t]+") (replace-match ""))
13476 (and org-adapt-indentation (bolp) (org-indent-to-column col))
13477 (when what
13478 (insert
13479 (if (not (or (bolp) (eq (char-before) ?\ ))) " " "")
13480 (cond ((eq what 'scheduled) org-scheduled-string)
13481 ((eq what 'deadline) org-deadline-string)
13482 ((eq what 'closed) org-closed-string))
13483 " ")
13484 (setq ts (org-insert-time-stamp
13485 time
13486 (or org-time-was-given
13487 (and (eq what 'closed) org-log-done-with-time))
13488 (eq what 'closed)
13489 nil nil (list org-end-time-was-given)))
13490 (insert
13491 (if (not (or (bolp) (eq (char-before) ?\ )
13492 (memq (char-after) '(32 10))
13493 (eobp))) " " ""))
13494 (end-of-line 1))
13495 (goto-char (point-min))
13496 (widen)
13497 (if (and (looking-at "[ \t]*\n")
13498 (equal (char-before) ?\n))
13499 (delete-region (1- (point)) (point-at-eol)))
13500 ts))))))
13502 (defvar org-log-note-marker (make-marker))
13503 (defvar org-log-note-purpose nil)
13504 (defvar org-log-note-state nil)
13505 (defvar org-log-note-previous-state nil)
13506 (defvar org-log-note-how nil)
13507 (defvar org-log-note-extra nil)
13508 (defvar org-log-note-window-configuration nil)
13509 (defvar org-log-note-return-to (make-marker))
13510 (defvar org-log-note-effective-time nil
13511 "Remembered current time so that dynamically scoped
13512 `org-extend-today-until' affects tha timestamps in state change
13513 log")
13515 (defvar org-log-post-message nil
13516 "Message to be displayed after a log note has been stored.
13517 The auto-repeater uses this.")
13519 (defun org-add-note ()
13520 "Add a note to the current entry.
13521 This is done in the same way as adding a state change note."
13522 (interactive)
13523 (org-add-log-setup 'note nil nil 'findpos nil))
13525 (defvar org-property-end-re)
13526 (defun org-add-log-setup (&optional purpose state prev-state
13527 findpos how extra)
13528 "Set up the post command hook to take a note.
13529 If this is about to TODO state change, the new state is expected in STATE.
13530 When FINDPOS is non-nil, find the correct position for the note in
13531 the current entry. If not, assume that it can be inserted at point.
13532 HOW is an indicator what kind of note should be created.
13533 EXTRA is additional text that will be inserted into the notes buffer."
13534 (let* ((org-log-into-drawer (org-log-into-drawer))
13535 (drawer (cond ((stringp org-log-into-drawer)
13536 org-log-into-drawer)
13537 (org-log-into-drawer "LOGBOOK"))))
13538 (save-restriction
13539 (save-excursion
13540 (when findpos
13541 (org-back-to-heading t)
13542 (narrow-to-region (point) (save-excursion
13543 (outline-next-heading) (point)))
13544 (looking-at (concat org-outline-regexp "\\( *\\)[^\r\n]*"
13545 "\\(\n[^\r\n]*?" org-keyword-time-not-clock-regexp
13546 "[^\r\n]*\\)?"))
13547 (goto-char (match-end 0))
13548 (cond
13549 (drawer
13550 (if (re-search-forward (concat "^[ \t]*:" drawer ":[ \t]*$")
13551 nil t)
13552 (progn
13553 (goto-char (match-end 0))
13554 (or org-log-states-order-reversed
13555 (and (re-search-forward org-property-end-re nil t)
13556 (goto-char (1- (match-beginning 0))))))
13557 (insert "\n:" drawer ":\n:END:")
13558 (beginning-of-line 0)
13559 (org-indent-line)
13560 (beginning-of-line 2)
13561 (org-indent-line)
13562 (end-of-line 0)))
13563 ((and org-log-state-notes-insert-after-drawers
13564 (save-excursion
13565 (forward-line) (looking-at org-drawer-regexp)))
13566 (forward-line)
13567 (while (looking-at org-drawer-regexp)
13568 (goto-char (match-end 0))
13569 (re-search-forward org-property-end-re (point-max) t)
13570 (forward-line))
13571 (forward-line -1)))
13572 (unless org-log-states-order-reversed
13573 (and (= (char-after) ?\n) (forward-char 1))
13574 (org-skip-over-state-notes)
13575 (skip-chars-backward " \t\n\r")))
13576 (move-marker org-log-note-marker (point))
13577 (setq org-log-note-purpose purpose
13578 org-log-note-state state
13579 org-log-note-previous-state prev-state
13580 org-log-note-how how
13581 org-log-note-extra extra
13582 org-log-note-effective-time (org-current-effective-time))
13583 (add-hook 'post-command-hook 'org-add-log-note 'append)))))
13585 (defun org-skip-over-state-notes ()
13586 "Skip past the list of State notes in an entry."
13587 (if (looking-at "\n[ \t]*- State") (forward-char 1))
13588 (when (ignore-errors (goto-char (org-in-item-p)))
13589 (let* ((struct (org-list-struct))
13590 (prevs (org-list-prevs-alist struct)))
13591 (while (looking-at "[ \t]*- State")
13592 (goto-char (or (org-list-get-next-item (point) struct prevs)
13593 (org-list-get-item-end (point) struct)))))))
13595 (defun org-add-log-note (&optional purpose)
13596 "Pop up a window for taking a note, and add this note later at point."
13597 (remove-hook 'post-command-hook 'org-add-log-note)
13598 (setq org-log-note-window-configuration (current-window-configuration))
13599 (delete-other-windows)
13600 (move-marker org-log-note-return-to (point))
13601 (org-pop-to-buffer-same-window (marker-buffer org-log-note-marker))
13602 (goto-char org-log-note-marker)
13603 (org-switch-to-buffer-other-window "*Org Note*")
13604 (erase-buffer)
13605 (if (memq org-log-note-how '(time state))
13606 (let (current-prefix-arg) (org-store-log-note))
13607 (let ((org-inhibit-startup t)) (org-mode))
13608 (insert (format "# Insert note for %s.
13609 # Finish with C-c C-c, or cancel with C-c C-k.\n\n"
13610 (cond
13611 ((eq org-log-note-purpose 'clock-out) "stopped clock")
13612 ((eq org-log-note-purpose 'done) "closed todo item")
13613 ((eq org-log-note-purpose 'state)
13614 (format "state change from \"%s\" to \"%s\""
13615 (or org-log-note-previous-state "")
13616 (or org-log-note-state "")))
13617 ((eq org-log-note-purpose 'reschedule)
13618 "rescheduling")
13619 ((eq org-log-note-purpose 'delschedule)
13620 "no longer scheduled")
13621 ((eq org-log-note-purpose 'redeadline)
13622 "changing deadline")
13623 ((eq org-log-note-purpose 'deldeadline)
13624 "removing deadline")
13625 ((eq org-log-note-purpose 'refile)
13626 "refiling")
13627 ((eq org-log-note-purpose 'note)
13628 "this entry")
13629 (t (error "This should not happen")))))
13630 (if org-log-note-extra (insert org-log-note-extra))
13631 (org-set-local 'org-finish-function 'org-store-log-note)
13632 (run-hooks 'org-log-buffer-setup-hook)))
13634 (defvar org-note-abort nil) ; dynamically scoped
13635 (defun org-store-log-note ()
13636 "Finish taking a log note, and insert it to where it belongs."
13637 (let ((txt (buffer-string)))
13638 (kill-buffer (current-buffer))
13639 (let ((note (cdr (assq org-log-note-purpose org-log-note-headings)))
13640 lines ind bul)
13641 (while (string-match "\\`# .*\n[ \t\n]*" txt)
13642 (setq txt (replace-match "" t t txt)))
13643 (if (string-match "\\s-+\\'" txt)
13644 (setq txt (replace-match "" t t txt)))
13645 (setq lines (org-split-string txt "\n"))
13646 (when (and note (string-match "\\S-" note))
13647 (setq note
13648 (org-replace-escapes
13649 note
13650 (list (cons "%u" (user-login-name))
13651 (cons "%U" user-full-name)
13652 (cons "%t" (format-time-string
13653 (org-time-stamp-format 'long 'inactive)
13654 org-log-note-effective-time))
13655 (cons "%T" (format-time-string
13656 (org-time-stamp-format 'long nil)
13657 org-log-note-effective-time))
13658 (cons "%d" (format-time-string
13659 (org-time-stamp-format nil 'inactive)
13660 org-log-note-effective-time))
13661 (cons "%D" (format-time-string
13662 (org-time-stamp-format nil nil)
13663 org-log-note-effective-time))
13664 (cons "%s" (if org-log-note-state
13665 (concat "\"" org-log-note-state "\"")
13666 ""))
13667 (cons "%S" (if org-log-note-previous-state
13668 (concat "\"" org-log-note-previous-state "\"")
13669 "\"\"")))))
13670 (if lines (setq note (concat note " \\\\")))
13671 (push note lines))
13672 (when (or current-prefix-arg org-note-abort)
13673 (when org-log-into-drawer
13674 (org-remove-empty-drawer-at org-log-note-marker))
13675 (setq lines nil))
13676 (when lines
13677 (with-current-buffer (marker-buffer org-log-note-marker)
13678 (save-excursion
13679 (goto-char org-log-note-marker)
13680 (move-marker org-log-note-marker nil)
13681 (end-of-line 1)
13682 (if (not (bolp)) (let ((inhibit-read-only t)) (insert "\n")))
13683 (setq ind (save-excursion
13684 (if (ignore-errors (goto-char (org-in-item-p)))
13685 (let ((struct (org-list-struct)))
13686 (org-list-get-ind
13687 (org-list-get-top-point struct) struct))
13688 (skip-chars-backward " \r\t\n")
13689 (cond
13690 ((and (org-at-heading-p)
13691 org-adapt-indentation)
13692 (1+ (org-current-level)))
13693 ((org-at-heading-p) 0)
13694 (t (org-get-indentation))))))
13695 (setq bul (org-list-bullet-string "-"))
13696 (org-indent-line-to ind)
13697 (insert bul (pop lines))
13698 (let ((ind-body (+ (length bul) ind)))
13699 (while lines
13700 (insert "\n")
13701 (org-indent-line-to ind-body)
13702 (insert (pop lines))))
13703 (message "Note stored")
13704 (org-back-to-heading t)
13705 (org-cycle-hide-drawers 'children))
13706 ;; Fix `buffer-undo-list' when `org-store-log-note' is called
13707 ;; from within `org-add-log-note' because `buffer-undo-list'
13708 ;; is then modified outside of `org-with-remote-undo'.
13709 (when (eq this-command 'org-agenda-todo)
13710 (setcdr buffer-undo-list (cddr buffer-undo-list)))))))
13711 ;; Don't add undo information when called from `org-agenda-todo'
13712 (let ((buffer-undo-list (eq this-command 'org-agenda-todo)))
13713 (set-window-configuration org-log-note-window-configuration)
13714 (with-current-buffer (marker-buffer org-log-note-return-to)
13715 (goto-char org-log-note-return-to))
13716 (move-marker org-log-note-return-to nil)
13717 (and org-log-post-message (message "%s" org-log-post-message))))
13719 (defun org-remove-empty-drawer-at (pos)
13720 "Remove an empty drawer at position POS.
13721 POS may also be a marker."
13722 (with-current-buffer (if (markerp pos) (marker-buffer pos) (current-buffer))
13723 (org-with-wide-buffer
13724 (goto-char pos)
13725 (let ((drawer (org-element-at-point)))
13726 (when (and (memq (org-element-type drawer) '(drawer property-drawer))
13727 (not (org-element-property :contents-begin drawer)))
13728 (delete-region (org-element-property :begin drawer)
13729 (progn (goto-char (org-element-property :end drawer))
13730 (skip-chars-backward " \r\t\n")
13731 (forward-line)
13732 (point))))))))
13734 (defvar org-ts-type nil)
13735 (defun org-sparse-tree (&optional arg type)
13736 "Create a sparse tree, prompt for the details.
13737 This command can create sparse trees. You first need to select the type
13738 of match used to create the tree:
13740 t Show all TODO entries.
13741 T Show entries with a specific TODO keyword.
13742 m Show entries selected by a tags/property match.
13743 p Enter a property name and its value (both with completion on existing
13744 names/values) and show entries with that property.
13745 r Show entries matching a regular expression (`/' can be used as well).
13746 b Show deadlines and scheduled items before a date.
13747 a Show deadlines and scheduled items after a date.
13748 d Show deadlines due within `org-deadline-warning-days'.
13749 D Show deadlines and scheduled items between a date range."
13750 (interactive "P")
13751 (setq type (or type org-sparse-tree-default-date-type))
13752 (setq org-ts-type type)
13753 (message "Sparse tree: [/]regexp [t]odo [T]odo-kwd [m]atch [p]roperty
13754 [d]eadlines [b]efore-date [a]fter-date [D]ates range
13755 [c]ycle through date types: %s"
13756 (case type
13757 (all "all timestamps")
13758 (scheduled "only scheduled")
13759 (deadline "only deadline")
13760 (active "only active timestamps")
13761 (inactive "only inactive timestamps")
13762 (scheduled-or-deadline "scheduled/deadline")
13763 (closed "with a closed time-stamp")
13764 (otherwise "scheduled/deadline")))
13765 (let ((answer (read-char-exclusive)))
13766 (case answer
13768 (org-sparse-tree
13770 (cadr (memq type '(scheduled-or-deadline all scheduled deadline active
13771 inactive closed)))))
13772 (?d (call-interactively 'org-check-deadlines))
13773 (?b (call-interactively 'org-check-before-date))
13774 (?a (call-interactively 'org-check-after-date))
13775 (?D (call-interactively 'org-check-dates-range))
13776 (?t (call-interactively 'org-show-todo-tree))
13777 (?T (org-show-todo-tree '(4)))
13778 (?m (call-interactively 'org-match-sparse-tree))
13779 ((?p ?P)
13780 (let* ((kwd (org-icompleting-read
13781 "Property: " (mapcar 'list (org-buffer-property-keys))))
13782 (value (org-icompleting-read
13783 "Value: " (mapcar 'list (org-property-values kwd)))))
13784 (unless (string-match "\\`{.*}\\'" value)
13785 (setq value (concat "\"" value "\"")))
13786 (org-match-sparse-tree arg (concat kwd "=" value))))
13787 ((?r ?R ?/) (call-interactively 'org-occur))
13788 (otherwise (user-error "No such sparse tree command \"%c\"" answer)))))
13790 (defvar org-occur-highlights nil
13791 "List of overlays used for occur matches.")
13792 (make-variable-buffer-local 'org-occur-highlights)
13793 (defvar org-occur-parameters nil
13794 "Parameters of the active org-occur calls.
13795 This is a list, each call to org-occur pushes as cons cell,
13796 containing the regular expression and the callback, onto the list.
13797 The list can contain several entries if `org-occur' has been called
13798 several time with the KEEP-PREVIOUS argument. Otherwise, this list
13799 will only contain one set of parameters. When the highlights are
13800 removed (for example with `C-c C-c', or with the next edit (depending
13801 on `org-remove-highlights-with-change'), this variable is emptied
13802 as well.")
13803 (make-variable-buffer-local 'org-occur-parameters)
13805 (defun org-occur (regexp &optional keep-previous callback)
13806 "Make a compact tree which shows all matches of REGEXP.
13807 The tree will show the lines where the regexp matches, and all higher
13808 headlines above the match. It will also show the heading after the match,
13809 to make sure editing the matching entry is easy.
13810 If KEEP-PREVIOUS is non-nil, highlighting and exposing done by a previous
13811 call to `org-occur' will be kept, to allow stacking of calls to this
13812 command.
13813 If CALLBACK is non-nil, it is a function which is called to confirm
13814 that the match should indeed be shown."
13815 (interactive "sRegexp: \nP")
13816 (when (equal regexp "")
13817 (user-error "Regexp cannot be empty"))
13818 (unless keep-previous
13819 (org-remove-occur-highlights nil nil t))
13820 (push (cons regexp callback) org-occur-parameters)
13821 (let ((cnt 0))
13822 (save-excursion
13823 (goto-char (point-min))
13824 (if (or (not keep-previous) ; do not want to keep
13825 (not org-occur-highlights)) ; no previous matches
13826 ;; hide everything
13827 (org-overview))
13828 (while (re-search-forward regexp nil t)
13829 (when (or (not callback)
13830 (save-match-data (funcall callback)))
13831 (setq cnt (1+ cnt))
13832 (when org-highlight-sparse-tree-matches
13833 (org-highlight-new-match (match-beginning 0) (match-end 0)))
13834 (org-show-context 'occur-tree))))
13835 (when org-remove-highlights-with-change
13836 (org-add-hook 'before-change-functions 'org-remove-occur-highlights
13837 nil 'local))
13838 (unless org-sparse-tree-open-archived-trees
13839 (org-hide-archived-subtrees (point-min) (point-max)))
13840 (run-hooks 'org-occur-hook)
13841 (if (org-called-interactively-p 'interactive)
13842 (message "%d match(es) for regexp %s" cnt regexp))
13843 cnt))
13845 (defun org-occur-next-match (&optional n reset)
13846 "Function for `next-error-function' to find sparse tree matches.
13847 N is the number of matches to move, when negative move backwards.
13848 RESET is entirely ignored - this function always goes back to the
13849 starting point when no match is found."
13850 (let* ((limit (if (< n 0) (point-min) (point-max)))
13851 (search-func (if (< n 0)
13852 'previous-single-char-property-change
13853 'next-single-char-property-change))
13854 (n (abs n))
13855 (pos (point))
13857 (catch 'exit
13858 (while (setq p1 (funcall search-func (point) 'org-type))
13859 (when (equal p1 limit)
13860 (goto-char pos)
13861 (user-error "No more matches"))
13862 (when (equal (get-char-property p1 'org-type) 'org-occur)
13863 (setq n (1- n))
13864 (when (= n 0)
13865 (goto-char p1)
13866 (throw 'exit (point))))
13867 (goto-char p1))
13868 (goto-char p1)
13869 (user-error "No more matches"))))
13871 (defun org-show-context (&optional key)
13872 "Make sure point and context are visible.
13873 How much context is shown depends upon the variables
13874 `org-show-hierarchy-above', `org-show-following-heading',
13875 `org-show-entry-below' and `org-show-siblings'."
13876 (let ((heading-p (org-at-heading-p t))
13877 (hierarchy-p (org-get-alist-option org-show-hierarchy-above key))
13878 (following-p (org-get-alist-option org-show-following-heading key))
13879 (entry-p (org-get-alist-option org-show-entry-below key))
13880 (siblings-p (org-get-alist-option org-show-siblings key)))
13881 ;; Show heading or entry text
13882 (if (and heading-p (not entry-p))
13883 (org-flag-heading nil) ; only show the heading
13884 (and (or entry-p (outline-invisible-p) (org-invisible-p2))
13885 (org-show-hidden-entry))) ; show entire entry
13886 (when following-p
13887 ;; Show next sibling, or heading below text
13888 (save-excursion
13889 (and (if heading-p (org-goto-sibling) (outline-next-heading))
13890 (org-flag-heading nil))))
13891 (when siblings-p (org-show-siblings))
13892 (when hierarchy-p
13893 ;; show all higher headings, possibly with siblings
13894 (save-excursion
13895 (while (and (ignore-errors (progn (org-up-heading-all 1) t))
13896 (not (bobp)))
13897 (org-flag-heading nil)
13898 (when siblings-p (org-show-siblings)))))
13899 (unless (eq key 'agenda) (org-fix-ellipsis-at-bol))))
13901 (defvar org-reveal-start-hook nil
13902 "Hook run before revealing a location.")
13904 (defun org-reveal (&optional siblings)
13905 "Show current entry, hierarchy above it, and the following headline.
13906 This can be used to show a consistent set of context around locations
13907 exposed with `org-show-hierarchy-above' or `org-show-following-heading'
13908 not t for the search context.
13910 With optional argument SIBLINGS, on each level of the hierarchy all
13911 siblings are shown. This repairs the tree structure to what it would
13912 look like when opened with hierarchical calls to `org-cycle'.
13913 With double optional argument \\[universal-argument] \\[universal-argument], \
13914 go to the parent and show the
13915 entire tree."
13916 (interactive "P")
13917 (run-hooks 'org-reveal-start-hook)
13918 (let ((org-show-hierarchy-above t)
13919 (org-show-following-heading t)
13920 (org-show-siblings (if siblings t org-show-siblings)))
13921 (org-show-context nil))
13922 (when (equal siblings '(16))
13923 (save-excursion
13924 (when (org-up-heading-safe)
13925 (org-show-subtree)
13926 (run-hook-with-args 'org-cycle-hook 'subtree)))))
13928 (defun org-highlight-new-match (beg end)
13929 "Highlight from BEG to END and mark the highlight is an occur headline."
13930 (let ((ov (make-overlay beg end)))
13931 (overlay-put ov 'face 'secondary-selection)
13932 (overlay-put ov 'org-type 'org-occur)
13933 (push ov org-occur-highlights)))
13935 (defun org-remove-occur-highlights (&optional beg end noremove)
13936 "Remove the occur highlights from the buffer.
13937 BEG and END are ignored. If NOREMOVE is nil, remove this function
13938 from the `before-change-functions' in the current buffer."
13939 (interactive)
13940 (unless org-inhibit-highlight-removal
13941 (mapc 'delete-overlay org-occur-highlights)
13942 (setq org-occur-highlights nil)
13943 (setq org-occur-parameters nil)
13944 (unless noremove
13945 (remove-hook 'before-change-functions
13946 'org-remove-occur-highlights 'local))))
13948 ;;;; Priorities
13950 (defvar org-priority-regexp ".*?\\(\\[#\\([A-Z0-9]\\)\\] ?\\)"
13951 "Regular expression matching the priority indicator.")
13953 (defvar org-remove-priority-next-time nil)
13955 (defun org-priority-up ()
13956 "Increase the priority of the current item."
13957 (interactive)
13958 (org-priority 'up))
13960 (defun org-priority-down ()
13961 "Decrease the priority of the current item."
13962 (interactive)
13963 (org-priority 'down))
13965 (defun org-priority (&optional action show)
13966 "Change the priority of an item.
13967 ACTION can be `set', `up', `down', or a character."
13968 (interactive "P")
13969 (if (equal action '(4))
13970 (org-show-priority)
13971 (unless org-enable-priority-commands
13972 (user-error "Priority commands are disabled"))
13973 (setq action (or action 'set))
13974 (let (current new news have remove)
13975 (save-excursion
13976 (org-back-to-heading t)
13977 (if (looking-at org-priority-regexp)
13978 (setq current (string-to-char (match-string 2))
13979 have t))
13980 (cond
13981 ((eq action 'remove)
13982 (setq remove t new ?\ ))
13983 ((or (eq action 'set)
13984 (if (featurep 'xemacs) (characterp action) (integerp action)))
13985 (if (not (eq action 'set))
13986 (setq new action)
13987 (message "Priority %c-%c, SPC to remove: "
13988 org-highest-priority org-lowest-priority)
13989 (save-match-data
13990 (setq new (read-char-exclusive))))
13991 (if (and (= (upcase org-highest-priority) org-highest-priority)
13992 (= (upcase org-lowest-priority) org-lowest-priority))
13993 (setq new (upcase new)))
13994 (cond ((equal new ?\ ) (setq remove t))
13995 ((or (< (upcase new) org-highest-priority) (> (upcase new) org-lowest-priority))
13996 (user-error "Priority must be between `%c' and `%c'"
13997 org-highest-priority org-lowest-priority))))
13998 ((eq action 'up)
13999 (setq new (if have
14000 (1- current) ; normal cycling
14001 ;; last priority was empty
14002 (if (eq last-command this-command)
14003 org-lowest-priority ; wrap around empty to lowest
14004 ;; default
14005 (if org-priority-start-cycle-with-default
14006 org-default-priority
14007 (1- org-default-priority))))))
14008 ((eq action 'down)
14009 (setq new (if have
14010 (1+ current) ; normal cycling
14011 ;; last priority was empty
14012 (if (eq last-command this-command)
14013 org-highest-priority ; wrap around empty to highest
14014 ;; default
14015 (if org-priority-start-cycle-with-default
14016 org-default-priority
14017 (1+ org-default-priority))))))
14018 (t (user-error "Invalid action")))
14019 (if (or (< (upcase new) org-highest-priority)
14020 (> (upcase new) org-lowest-priority))
14021 (if (and (memq action '(up down))
14022 (not have) (not (eq last-command this-command)))
14023 ;; `new' is from default priority
14024 (error
14025 "The default can not be set, see `org-default-priority' why")
14026 ;; normal cycling: `new' is beyond highest/lowest priority
14027 ;; and is wrapped around to the empty priority
14028 (setq remove t)))
14029 (setq news (format "%c" new))
14030 (if have
14031 (if remove
14032 (replace-match "" t t nil 1)
14033 (replace-match news t t nil 2))
14034 (if remove
14035 (user-error "No priority cookie found in line")
14036 (let ((case-fold-search nil))
14037 (looking-at org-todo-line-regexp))
14038 (if (match-end 2)
14039 (progn
14040 (goto-char (match-end 2))
14041 (insert " [#" news "]"))
14042 (goto-char (match-beginning 3))
14043 (insert "[#" news "] "))))
14044 (org-set-tags nil 'align))
14045 (if remove
14046 (message "Priority removed")
14047 (message "Priority of current item set to %s" news)))))
14049 (defun org-show-priority ()
14050 "Show the priority of the current item.
14051 This priority is composed of the main priority given with the [#A] cookies,
14052 and by additional input from the age of a schedules or deadline entry."
14053 (interactive)
14054 (let ((pri (if (eq major-mode 'org-agenda-mode)
14055 (org-get-at-bol 'priority)
14056 (save-excursion
14057 (save-match-data
14058 (beginning-of-line)
14059 (and (looking-at org-heading-regexp)
14060 (org-get-priority (match-string 0))))))))
14061 (message "Priority is %d" (if pri pri -1000))))
14063 (defun org-get-priority (s)
14064 "Find priority cookie and return priority."
14065 (save-match-data
14066 (if (functionp org-get-priority-function)
14067 (funcall org-get-priority-function)
14068 (if (not (string-match org-priority-regexp s))
14069 (* 1000 (- org-lowest-priority org-default-priority))
14070 (* 1000 (- org-lowest-priority
14071 (string-to-char (match-string 2 s))))))))
14073 ;;;; Tags
14075 (defvar org-agenda-archives-mode)
14076 (defvar org-map-continue-from nil
14077 "Position from where mapping should continue.
14078 Can be set by the action argument to `org-scan-tags' and `org-map-entries'.")
14080 (defvar org-scanner-tags nil
14081 "The current tag list while the tags scanner is running.")
14082 (defvar org-trust-scanner-tags nil
14083 "Should `org-get-tags-at' use the tags for the scanner.
14084 This is for internal dynamical scoping only.
14085 When this is non-nil, the function `org-get-tags-at' will return the value
14086 of `org-scanner-tags' instead of building the list by itself. This
14087 can lead to large speed-ups when the tags scanner is used in a file with
14088 many entries, and when the list of tags is retrieved, for example to
14089 obtain a list of properties. Building the tags list for each entry in such
14090 a file becomes an N^2 operation - but with this variable set, it scales
14091 as N.")
14093 (defun org-scan-tags (action matcher todo-only &optional start-level)
14094 "Scan headline tags with inheritance and produce output ACTION.
14096 ACTION can be `sparse-tree' to produce a sparse tree in the current buffer,
14097 or `agenda' to produce an entry list for an agenda view. It can also be
14098 a Lisp form or a function that should be called at each matched headline, in
14099 this case the return value is a list of all return values from these calls.
14101 MATCHER is a Lisp form to be evaluated, testing if a given set of tags
14102 qualifies a headline for inclusion. When TODO-ONLY is non-nil,
14103 only lines with a not-done TODO keyword are included in the output.
14104 This should be the same variable that was scoped into
14105 and set by `org-make-tags-matcher' when it constructed MATCHER.
14107 START-LEVEL can be a string with asterisks, reducing the scope to
14108 headlines matching this string."
14109 (require 'org-agenda)
14110 (let* ((re (concat "^"
14111 (if start-level
14112 ;; Get the correct level to match
14113 (concat "\\*\\{" (number-to-string start-level) "\\} ")
14114 org-outline-regexp)
14115 " *\\(\\<\\("
14116 (mapconcat 'regexp-quote org-todo-keywords-1 "\\|")
14117 (org-re "\\)\\>\\)? *\\(.*?\\)\\(:[[:alnum:]_@#%:]+:\\)?[ \t]*$")))
14118 (props (list 'face 'default
14119 'done-face 'org-agenda-done
14120 'undone-face 'default
14121 'mouse-face 'highlight
14122 'org-not-done-regexp org-not-done-regexp
14123 'org-todo-regexp org-todo-regexp
14124 'org-complex-heading-regexp org-complex-heading-regexp
14125 'help-echo
14126 (format "mouse-2 or RET jump to org file %s"
14127 (abbreviate-file-name
14128 (or (buffer-file-name (buffer-base-buffer))
14129 (buffer-name (buffer-base-buffer)))))))
14130 (org-map-continue-from nil)
14131 lspos tags tags-list
14132 (tags-alist (list (cons 0 org-file-tags)))
14133 (llast 0) rtn rtn1 level category i txt
14134 todo marker entry priority)
14135 (when (not (or (member action '(agenda sparse-tree)) (functionp action)))
14136 (setq action (list 'lambda nil action)))
14137 (save-excursion
14138 (goto-char (point-min))
14139 (when (eq action 'sparse-tree)
14140 (org-overview)
14141 (org-remove-occur-highlights))
14142 (while (let (case-fold-search)
14143 (re-search-forward re nil t))
14144 (setq org-map-continue-from nil)
14145 (catch :skip
14146 (setq todo (if (match-end 1) (org-match-string-no-properties 2))
14147 tags (if (match-end 4) (org-match-string-no-properties 4)))
14148 (goto-char (setq lspos (match-beginning 0)))
14149 (setq level (org-reduced-level (org-outline-level))
14150 category (org-get-category))
14151 (setq i llast llast level)
14152 ;; remove tag lists from same and sublevels
14153 (while (>= i level)
14154 (when (setq entry (assoc i tags-alist))
14155 (setq tags-alist (delete entry tags-alist)))
14156 (setq i (1- i)))
14157 ;; add the next tags
14158 (when tags
14159 (setq tags (org-split-string tags ":")
14160 tags-alist
14161 (cons (cons level tags) tags-alist)))
14162 ;; compile tags for current headline
14163 (setq tags-list
14164 (if org-use-tag-inheritance
14165 (apply 'append (mapcar 'cdr (reverse tags-alist)))
14166 tags)
14167 org-scanner-tags tags-list)
14168 (when org-use-tag-inheritance
14169 (setcdr (car tags-alist)
14170 (mapcar (lambda (x)
14171 (setq x (copy-sequence x))
14172 (org-add-prop-inherited x))
14173 (cdar tags-alist))))
14174 (when (and tags org-use-tag-inheritance
14175 (or (not (eq t org-use-tag-inheritance))
14176 org-tags-exclude-from-inheritance))
14177 ;; selective inheritance, remove uninherited ones
14178 (setcdr (car tags-alist)
14179 (org-remove-uninherited-tags (cdar tags-alist))))
14180 (when (and
14182 ;; eval matcher only when the todo condition is OK
14183 (and (or (not todo-only) (member todo org-not-done-keywords))
14184 (let ((case-fold-search t) (org-trust-scanner-tags t))
14185 (eval matcher)))
14187 ;; Call the skipper, but return t if it does not skip,
14188 ;; so that the `and' form continues evaluating
14189 (progn
14190 (unless (eq action 'sparse-tree) (org-agenda-skip))
14193 ;; Check if timestamps are deselecting this entry
14194 (or (not todo-only)
14195 (and (member todo org-not-done-keywords)
14196 (or (not org-agenda-tags-todo-honor-ignore-options)
14197 (not (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item))))))
14199 ;; select this headline
14200 (cond
14201 ((eq action 'sparse-tree)
14202 (and org-highlight-sparse-tree-matches
14203 (org-get-heading) (match-end 0)
14204 (org-highlight-new-match
14205 (match-beginning 1) (match-end 1)))
14206 (org-show-context 'tags-tree))
14207 ((eq action 'agenda)
14208 (setq txt (org-agenda-format-item
14210 (concat
14211 (if (eq org-tags-match-list-sublevels 'indented)
14212 (make-string (1- level) ?.) "")
14213 (org-get-heading))
14214 level category
14215 tags-list)
14216 priority (org-get-priority txt))
14217 (goto-char lspos)
14218 (setq marker (org-agenda-new-marker))
14219 (org-add-props txt props
14220 'org-marker marker 'org-hd-marker marker 'org-category category
14221 'todo-state todo
14222 'priority priority 'type "tagsmatch")
14223 (push txt rtn))
14224 ((functionp action)
14225 (setq org-map-continue-from nil)
14226 (save-excursion
14227 (setq rtn1 (funcall action))
14228 (push rtn1 rtn)))
14229 (t (user-error "Invalid action")))
14231 ;; if we are to skip sublevels, jump to end of subtree
14232 (unless org-tags-match-list-sublevels
14233 (org-end-of-subtree t)
14234 (backward-char 1))))
14235 ;; Get the correct position from where to continue
14236 (if org-map-continue-from
14237 (goto-char org-map-continue-from)
14238 (and (= (point) lspos) (end-of-line 1)))))
14239 (when (and (eq action 'sparse-tree)
14240 (not org-sparse-tree-open-archived-trees))
14241 (org-hide-archived-subtrees (point-min) (point-max)))
14242 (nreverse rtn)))
14244 (defun org-remove-uninherited-tags (tags)
14245 "Remove all tags that are not inherited from the list TAGS."
14246 (cond
14247 ((eq org-use-tag-inheritance t)
14248 (if org-tags-exclude-from-inheritance
14249 (org-delete-all org-tags-exclude-from-inheritance tags)
14250 tags))
14251 ((not org-use-tag-inheritance) nil)
14252 ((stringp org-use-tag-inheritance)
14253 (delq nil (mapcar
14254 (lambda (x)
14255 (if (and (string-match org-use-tag-inheritance x)
14256 (not (member x org-tags-exclude-from-inheritance)))
14257 x nil))
14258 tags)))
14259 ((listp org-use-tag-inheritance)
14260 (delq nil (mapcar
14261 (lambda (x)
14262 (if (member x org-use-tag-inheritance) x nil))
14263 tags)))))
14265 (defun org-match-sparse-tree (&optional todo-only match)
14266 "Create a sparse tree according to tags string MATCH.
14267 MATCH can contain positive and negative selection of tags, like
14268 \"+WORK+URGENT-WITHBOSS\".
14269 If optional argument TODO-ONLY is non-nil, only select lines that are
14270 also TODO lines."
14271 (interactive "P")
14272 (org-agenda-prepare-buffers (list (current-buffer)))
14273 (org-scan-tags 'sparse-tree (cdr (org-make-tags-matcher match)) todo-only))
14275 (defalias 'org-tags-sparse-tree 'org-match-sparse-tree)
14277 (defvar org-cached-props nil)
14278 (defun org-cached-entry-get (pom property)
14279 (if (or (eq t org-use-property-inheritance)
14280 (and (stringp org-use-property-inheritance)
14281 (string-match org-use-property-inheritance property))
14282 (and (listp org-use-property-inheritance)
14283 (member property org-use-property-inheritance)))
14284 ;; Caching is not possible, check it directly
14285 (org-entry-get pom property 'inherit)
14286 ;; Get all properties, so that we can do complicated checks easily
14287 (cdr (assoc property (or org-cached-props
14288 (setq org-cached-props
14289 (org-entry-properties pom)))))))
14291 (defun org-global-tags-completion-table (&optional files)
14292 "Return the list of all tags in all agenda buffer/files.
14293 Optional FILES argument is a list of files which can be used
14294 instead of the agenda files."
14295 (save-excursion
14296 (org-uniquify
14297 (delq nil
14298 (apply 'append
14299 (mapcar
14300 (lambda (file)
14301 (set-buffer (find-file-noselect file))
14302 (append (org-get-buffer-tags)
14303 (mapcar (lambda (x) (if (stringp (car-safe x))
14304 (list (car-safe x)) nil))
14305 org-tag-alist)))
14306 (if (and files (car files))
14307 files
14308 (org-agenda-files))))))))
14310 (defun org-make-tags-matcher (match)
14311 "Create the TAGS/TODO matcher form for the selection string MATCH.
14313 The variable `todo-only' is scoped dynamically into this function.
14314 It will be set to t if the matcher restricts matching to TODO entries,
14315 otherwise will not be touched.
14317 Returns a cons of the selection string MATCH and the constructed
14318 lisp form implementing the matcher. The matcher is to be evaluated
14319 at an Org entry, with point on the headline, and returns t if the
14320 entry matches the selection string MATCH. The returned lisp form
14321 references two variables with information about the entry, which
14322 must be bound around the form's evaluation: todo, the TODO keyword
14323 at the entry (or nil of none); and tags-list, the list of all tags
14324 at the entry including inherited ones. Additionally, the category
14325 of the entry (if any) must be specified as the text property
14326 'org-category on the headline.
14328 See also `org-scan-tags'.
14330 (declare (special todo-only))
14331 (unless (boundp 'todo-only)
14332 (error "`org-make-tags-matcher' expects todo-only to be scoped in"))
14333 (unless match
14334 ;; Get a new match request, with completion against the global
14335 ;; tags table and the local tags in current buffer
14336 (let ((org-last-tags-completion-table
14337 (org-uniquify
14338 (delq nil (append (org-get-buffer-tags)
14339 (org-global-tags-completion-table))))))
14340 (setq match (org-completing-read-no-i
14341 "Match: " 'org-tags-completion-function nil nil nil
14342 'org-tags-history))))
14344 ;; Parse the string and create a lisp form
14345 (let ((match0 match)
14346 (re (org-re "^&?\\([-+:]\\)?\\({[^}]+}\\|LEVEL\\([<=>]\\{1,2\\}\\)\\([0-9]+\\)\\|\\(\\(?:[[:alnum:]_]+\\(?:\\\\-\\)*\\)+\\)\\([<>=]\\{1,2\\}\\)\\({[^}]+}\\|\"[^\"]*\"\\|-?[.0-9]+\\(?:[eE][-+]?[0-9]+\\)?\\)\\|[[:alnum:]_@#%]+\\)"))
14347 minus tag mm
14348 tagsmatch todomatch tagsmatcher todomatcher kwd matcher
14349 orterms term orlist re-p str-p level-p level-op time-p
14350 prop-p pn pv po gv rest (start 0) (ss 0))
14351 ;; Expand group tags
14352 (setq match (org-tags-expand match))
14354 ;; Check if there is a TODO part of this match, which would be the
14355 ;; part after a "/". TO make sure that this slash is not part of
14356 ;; a property value to be matched against, we also check that there
14357 ;; is no " after that slash.
14358 ;; First, find the last slash
14359 (while (string-match "/+" match ss)
14360 (setq start (match-beginning 0) ss (match-end 0)))
14361 (if (and (string-match "/+" match start)
14362 (not (save-match-data (string-match "\"" match start))))
14363 ;; match contains also a todo-matching request
14364 (progn
14365 (setq tagsmatch (substring match 0 (match-beginning 0))
14366 todomatch (substring match (match-end 0)))
14367 (if (string-match "^!" todomatch)
14368 (setq todo-only t todomatch (substring todomatch 1)))
14369 (if (string-match "^\\s-*$" todomatch)
14370 (setq todomatch nil)))
14371 ;; only matching tags
14372 (setq tagsmatch match todomatch nil))
14374 ;; Make the tags matcher
14375 (if (or (not tagsmatch) (not (string-match "\\S-" tagsmatch)))
14376 (setq tagsmatcher t)
14377 (setq orterms (org-split-string tagsmatch "|") orlist nil)
14378 (while (setq term (pop orterms))
14379 (while (and (equal (substring term -1) "\\") orterms)
14380 (setq term (concat term "|" (pop orterms)))) ; repair bad split
14381 (while (string-match re term)
14382 (setq rest (substring term (match-end 0))
14383 minus (and (match-end 1)
14384 (equal (match-string 1 term) "-"))
14385 tag (save-match-data (replace-regexp-in-string
14386 "\\\\-" "-"
14387 (match-string 2 term)))
14388 re-p (equal (string-to-char tag) ?{)
14389 level-p (match-end 4)
14390 prop-p (match-end 5)
14391 mm (cond
14392 (re-p `(org-match-any-p ,(substring tag 1 -1) tags-list))
14393 (level-p
14394 (setq level-op (org-op-to-function (match-string 3 term)))
14395 `(,level-op level ,(string-to-number
14396 (match-string 4 term))))
14397 (prop-p
14398 (setq pn (match-string 5 term)
14399 po (match-string 6 term)
14400 pv (match-string 7 term)
14401 re-p (equal (string-to-char pv) ?{)
14402 str-p (equal (string-to-char pv) ?\")
14403 time-p (save-match-data
14404 (string-match "^\"[[<].*[]>]\"$" pv))
14405 pv (if (or re-p str-p) (substring pv 1 -1) pv))
14406 (if time-p (setq pv (org-matcher-time pv)))
14407 (setq po (org-op-to-function po (if time-p 'time str-p)))
14408 (cond
14409 ((equal pn "CATEGORY")
14410 (setq gv '(get-text-property (point) 'org-category)))
14411 ((equal pn "TODO")
14412 (setq gv 'todo))
14414 (setq gv `(org-cached-entry-get nil ,pn))))
14415 (if re-p
14416 (if (eq po 'org<>)
14417 `(not (string-match ,pv (or ,gv "")))
14418 `(string-match ,pv (or ,gv "")))
14419 (if str-p
14420 `(,po (or ,gv "") ,pv)
14421 `(,po (string-to-number (or ,gv ""))
14422 ,(string-to-number pv) ))))
14423 (t `(member ,tag tags-list)))
14424 mm (if minus (list 'not mm) mm)
14425 term rest)
14426 (push mm tagsmatcher))
14427 (push (if (> (length tagsmatcher) 1)
14428 (cons 'and tagsmatcher)
14429 (car tagsmatcher))
14430 orlist)
14431 (setq tagsmatcher nil))
14432 (setq tagsmatcher (if (> (length orlist) 1) (cons 'or orlist) (car orlist)))
14433 (setq tagsmatcher
14434 (list 'progn '(setq org-cached-props nil) tagsmatcher)))
14435 ;; Make the todo matcher
14436 (if (or (not todomatch) (not (string-match "\\S-" todomatch)))
14437 (setq todomatcher t)
14438 (setq orterms (org-split-string todomatch "|") orlist nil)
14439 (while (setq term (pop orterms))
14440 (while (string-match re term)
14441 (setq minus (and (match-end 1)
14442 (equal (match-string 1 term) "-"))
14443 kwd (match-string 2 term)
14444 re-p (equal (string-to-char kwd) ?{)
14445 term (substring term (match-end 0))
14446 mm (if re-p
14447 `(string-match ,(substring kwd 1 -1) todo)
14448 (list 'equal 'todo kwd))
14449 mm (if minus (list 'not mm) mm))
14450 (push mm todomatcher))
14451 (push (if (> (length todomatcher) 1)
14452 (cons 'and todomatcher)
14453 (car todomatcher))
14454 orlist)
14455 (setq todomatcher nil))
14456 (setq todomatcher (if (> (length orlist) 1)
14457 (cons 'or orlist) (car orlist))))
14459 ;; Return the string and lisp forms of the matcher
14460 (setq matcher (if todomatcher
14461 (list 'and tagsmatcher todomatcher)
14462 tagsmatcher))
14463 (when todo-only
14464 (setq matcher (list 'and '(member todo org-not-done-keywords)
14465 matcher)))
14466 (cons match0 matcher)))
14468 (defun org-tags-expand (match &optional single-as-list downcased)
14469 "Expand group tags in MATCH.
14471 This replaces every group tag in MATCH with a regexp tag search.
14472 For example, a group tag \"Work\" defined as { Work : Lab Conf }
14473 will be replaced like this:
14475 Work => {\\(?:Work\\|Lab\\|Conf\\)}
14476 +Work => +{\\(?:Work\\|Lab\\|Conf\\)}
14477 -Work => -{\\(?:Work\\|Lab\\|Conf\\)}
14479 Replacing by a regexp preserves the structure of the match.
14480 E.g., this expansion
14482 Work|Home => {\\(?:Work\\|Lab\\|Conf\\}|Home
14484 will match anything tagged with \"Lab\" and \"Home\", or tagged
14485 with \"Conf\" and \"Home\" or tagged with \"Work\" and \"home\".
14487 When the optional argument SINGLE-AS-LIST is non-nil, MATCH is
14488 assumed to be a single group tag, and the function will return
14489 the list of tags in this group.
14491 When DOWNCASE is non-nil, expand downcased TAGS."
14492 (if org-group-tags
14493 (let* ((case-fold-search t)
14494 (stable org-mode-syntax-table)
14495 (tal (or org-tag-groups-alist-for-agenda
14496 org-tag-groups-alist))
14497 (tal (if downcased
14498 (mapcar (lambda(tg) (mapcar 'downcase tg)) tal) tal))
14499 (tml (mapcar 'car tal))
14500 (rtnmatch match) rpl)
14501 ;; @ and _ are allowed as word-components in tags
14502 (modify-syntax-entry ?@ "w" stable)
14503 (modify-syntax-entry ?_ "w" stable)
14504 (while (and tml
14505 (with-syntax-table stable
14506 (string-match
14507 (concat "\\(?1:[+-]?\\)\\(?2:\\<"
14508 (regexp-opt tml) "\\>\\)") rtnmatch)))
14509 (let* ((dir (match-string 1 rtnmatch))
14510 (tag (match-string 2 rtnmatch))
14511 (tag (if downcased (downcase tag) tag)))
14512 (setq tml (delete tag tml))
14513 (when (not (get-text-property 0 'grouptag (match-string 2 rtnmatch)))
14514 (setq rpl (append (org-uniquify rpl) (assoc tag tal)))
14515 (setq rpl (concat dir "{\\<" (regexp-opt rpl) "\\>}"))
14516 (if (stringp rpl) (org-add-props rpl '(grouptag t)))
14517 (setq rtnmatch (replace-match rpl t t rtnmatch)))))
14518 (if single-as-list
14519 (or (reverse rpl) (list rtnmatch))
14520 rtnmatch))
14521 (if single-as-list (list (if downcased (downcase match) match))
14522 match)))
14524 (defun org-op-to-function (op &optional stringp)
14525 "Turn an operator into the appropriate function."
14526 (setq op
14527 (cond
14528 ((equal op "<" ) '(< string< org-time<))
14529 ((equal op ">" ) '(> org-string> org-time>))
14530 ((member op '("<=" "=<")) '(<= org-string<= org-time<=))
14531 ((member op '(">=" "=>")) '(>= org-string>= org-time>=))
14532 ((member op '("=" "==")) '(= string= org-time=))
14533 ((member op '("<>" "!=")) '(org<> org-string<> org-time<>))))
14534 (nth (if (eq stringp 'time) 2 (if stringp 1 0)) op))
14536 (defun org<> (a b) (not (= a b)))
14537 (defun org-string<= (a b) (or (string= a b) (string< a b)))
14538 (defun org-string>= (a b) (not (string< a b)))
14539 (defun org-string> (a b) (and (not (string= a b)) (not (string< a b))))
14540 (defun org-string<> (a b) (not (string= a b)))
14541 (defun org-time= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (= a b)))
14542 (defun org-time< (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (< a b)))
14543 (defun org-time<= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (<= a b)))
14544 (defun org-time> (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (> a b)))
14545 (defun org-time>= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (>= a b)))
14546 (defun org-time<> (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (org<> a b)))
14547 (defun org-2ft (s)
14548 "Convert S to a floating point time.
14549 If S is already a number, just return it. If it is a string, parse
14550 it as a time string and apply `float-time' to it. If S is nil, just return 0."
14551 (cond
14552 ((numberp s) s)
14553 ((stringp s)
14554 (condition-case nil
14555 (float-time (apply 'encode-time (org-parse-time-string s)))
14556 (error 0.)))
14557 (t 0.)))
14559 (defun org-time-today ()
14560 "Time in seconds today at 0:00.
14561 Returns the float number of seconds since the beginning of the
14562 epoch to the beginning of today (00:00)."
14563 (float-time (apply 'encode-time
14564 (append '(0 0 0) (nthcdr 3 (decode-time))))))
14566 (defun org-matcher-time (s)
14567 "Interpret a time comparison value."
14568 (save-match-data
14569 (cond
14570 ((string= s "<now>") (float-time))
14571 ((string= s "<today>") (org-time-today))
14572 ((string= s "<tomorrow>") (+ 86400.0 (org-time-today)))
14573 ((string= s "<yesterday>") (- (org-time-today) 86400.0))
14574 ((string-match "^<\\([-+][0-9]+\\)\\([hdwmy]\\)>$" s)
14575 (+ (org-time-today)
14576 (* (string-to-number (match-string 1 s))
14577 (cdr (assoc (match-string 2 s)
14578 '(("d" . 86400.0) ("w" . 604800.0)
14579 ("m" . 2678400.0) ("y" . 31557600.0)))))))
14580 (t (org-2ft s)))))
14582 (defun org-match-any-p (re list)
14583 "Does re match any element of list?"
14584 (setq list (mapcar (lambda (x) (string-match re x)) list))
14585 (delq nil list))
14587 (defvar org-add-colon-after-tag-completion nil) ;; dynamically scoped param
14588 (defvar org-tags-overlay (make-overlay 1 1))
14589 (org-detach-overlay org-tags-overlay)
14591 (defun org-get-local-tags-at (&optional pos)
14592 "Get a list of tags defined in the current headline."
14593 (org-get-tags-at pos 'local))
14595 (defun org-get-local-tags ()
14596 "Get a list of tags defined in the current headline."
14597 (org-get-tags-at nil 'local))
14599 (defun org-get-tags-at (&optional pos local)
14600 "Get a list of all headline tags applicable at POS.
14601 POS defaults to point. If tags are inherited, the list contains
14602 the targets in the same sequence as the headlines appear, i.e.
14603 the tags of the current headline come last.
14604 When LOCAL is non-nil, only return tags from the current headline,
14605 ignore inherited ones."
14606 (interactive)
14607 (if (and org-trust-scanner-tags
14608 (or (not pos) (equal pos (point)))
14609 (not local))
14610 org-scanner-tags
14611 (let (tags ltags lastpos parent)
14612 (save-excursion
14613 (save-restriction
14614 (widen)
14615 (goto-char (or pos (point)))
14616 (save-match-data
14617 (catch 'done
14618 (condition-case nil
14619 (progn
14620 (org-back-to-heading t)
14621 (while (not (equal lastpos (point)))
14622 (setq lastpos (point))
14623 (when (looking-at
14624 (org-re "[^\r\n]+?:\\([[:alnum:]_@#%:]+\\):[ \t]*$"))
14625 (setq ltags (org-split-string
14626 (org-match-string-no-properties 1) ":"))
14627 (when parent
14628 (setq ltags (mapcar 'org-add-prop-inherited ltags)))
14629 (setq tags (append
14630 (if parent
14631 (org-remove-uninherited-tags ltags)
14632 ltags)
14633 tags)))
14634 (or org-use-tag-inheritance (throw 'done t))
14635 (if local (throw 'done t))
14636 (or (org-up-heading-safe) (error nil))
14637 (setq parent t)))
14638 (error nil)))))
14639 (if local
14640 tags
14641 (reverse (delete-dups
14642 (reverse (append
14643 (org-remove-uninherited-tags
14644 org-file-tags) tags)))))))))
14646 (defun org-add-prop-inherited (s)
14647 (add-text-properties 0 (length s) '(inherited t) s)
14650 (defun org-toggle-tag (tag &optional onoff)
14651 "Toggle the tag TAG for the current line.
14652 If ONOFF is `on' or `off', don't toggle but set to this state."
14653 (let (res current)
14654 (save-excursion
14655 (org-back-to-heading t)
14656 (if (re-search-forward (org-re "[ \t]:\\([[:alnum:]_@#%:]+\\):[ \t]*$")
14657 (point-at-eol) t)
14658 (progn
14659 (setq current (match-string 1))
14660 (replace-match ""))
14661 (setq current ""))
14662 (setq current (nreverse (org-split-string current ":")))
14663 (cond
14664 ((eq onoff 'on)
14665 (setq res t)
14666 (or (member tag current) (push tag current)))
14667 ((eq onoff 'off)
14668 (or (not (member tag current)) (setq current (delete tag current))))
14669 (t (if (member tag current)
14670 (setq current (delete tag current))
14671 (setq res t)
14672 (push tag current))))
14673 (end-of-line 1)
14674 (if current
14675 (progn
14676 (insert " :" (mapconcat 'identity (nreverse current) ":") ":")
14677 (org-set-tags nil t))
14678 (delete-horizontal-space))
14679 (run-hooks 'org-after-tags-change-hook))
14680 res))
14682 (defun org-align-tags-here (to-col)
14683 ;; Assumes that this is a headline
14684 "Align tags on the current headline to TO-COL."
14685 (let ((pos (point)) (col (current-column)) ncol tags-l p)
14686 (beginning-of-line 1)
14687 (if (and (looking-at (org-re ".*?\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
14688 (< pos (match-beginning 2)))
14689 (progn
14690 (setq tags-l (- (match-end 2) (match-beginning 2)))
14691 (goto-char (match-beginning 1))
14692 (insert " ")
14693 (delete-region (point) (1+ (match-beginning 2)))
14694 (setq ncol (max (current-column)
14695 (1+ col)
14696 (if (> to-col 0)
14697 to-col
14698 (- (abs to-col) tags-l))))
14699 (setq p (point))
14700 (insert (make-string (- ncol (current-column)) ?\ ))
14701 (setq ncol (current-column))
14702 (when indent-tabs-mode (tabify p (point-at-eol)))
14703 (org-move-to-column (min ncol col)))
14704 (goto-char pos))))
14706 (defun org-set-tags-command (&optional arg just-align)
14707 "Call the set-tags command for the current entry."
14708 (interactive "P")
14709 (if (or (org-at-heading-p) (and arg (org-before-first-heading-p)))
14710 (org-set-tags arg just-align)
14711 (save-excursion
14712 (unless (and (org-region-active-p)
14713 org-loop-over-headlines-in-active-region)
14714 (org-back-to-heading t))
14715 (org-set-tags arg just-align))))
14717 (defun org-set-tags-to (data)
14718 "Set the tags of the current entry to DATA, replacing the current tags.
14719 DATA may be a tags string like :aa:bb:cc:, or a list of tags.
14720 If DATA is nil or the empty string, any tags will be removed."
14721 (interactive "sTags: ")
14722 (setq data
14723 (cond
14724 ((eq data nil) "")
14725 ((equal data "") "")
14726 ((stringp data)
14727 (concat ":" (mapconcat 'identity (org-split-string data ":+") ":")
14728 ":"))
14729 ((listp data)
14730 (concat ":" (mapconcat 'identity data ":") ":"))))
14731 (when data
14732 (save-excursion
14733 (org-back-to-heading t)
14734 (when (looking-at org-complex-heading-regexp)
14735 (if (match-end 5)
14736 (progn
14737 (goto-char (match-beginning 5))
14738 (insert data)
14739 (delete-region (point) (point-at-eol))
14740 (org-set-tags nil 'align))
14741 (goto-char (point-at-eol))
14742 (insert " " data)
14743 (org-set-tags nil 'align)))
14744 (beginning-of-line 1)
14745 (if (looking-at ".*?\\([ \t]+\\)$")
14746 (delete-region (match-beginning 1) (match-end 1))))))
14748 (defun org-align-all-tags ()
14749 "Align the tags i all headings."
14750 (interactive)
14751 (save-excursion
14752 (or (ignore-errors (org-back-to-heading t))
14753 (outline-next-heading))
14754 (if (org-at-heading-p)
14755 (org-set-tags t)
14756 (message "No headings"))))
14758 (defvar org-indent-indentation-per-level)
14759 (defun org-set-tags (&optional arg just-align)
14760 "Set the tags for the current headline.
14761 With prefix ARG, realign all tags in headings in the current buffer.
14762 When JUST-ALIGN is non-nil, only align tags."
14763 (interactive "P")
14764 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
14765 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
14766 'region-start-level 'region))
14767 org-loop-over-headlines-in-active-region)
14768 (org-map-entries
14769 ;; We don't use ARG and JUST-ALIGN here because these args
14770 ;; are not useful when looping over headlines.
14771 `(org-set-tags)
14772 org-loop-over-headlines-in-active-region
14773 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
14774 (let* ((re org-outline-regexp-bol)
14775 (current (unless arg (org-get-tags-string)))
14776 (col (current-column))
14777 (org-setting-tags t)
14778 table current-tags inherited-tags ; computed below when needed
14779 tags p0 c0 c1 rpl di tc level)
14780 (if arg
14781 (save-excursion
14782 (goto-char (point-min))
14783 (let ((buffer-invisibility-spec (org-inhibit-invisibility)))
14784 (while (re-search-forward re nil t)
14785 (org-set-tags nil t)
14786 (end-of-line 1)))
14787 (message "All tags realigned to column %d" org-tags-column))
14788 (if just-align
14789 (setq tags current)
14790 ;; Get a new set of tags from the user
14791 (save-excursion
14792 (setq table (append org-tag-persistent-alist
14793 (or org-tag-alist (org-get-buffer-tags))
14794 (and
14795 org-complete-tags-always-offer-all-agenda-tags
14796 (org-global-tags-completion-table
14797 (org-agenda-files))))
14798 org-last-tags-completion-table table
14799 current-tags (org-split-string current ":")
14800 inherited-tags (nreverse
14801 (nthcdr (length current-tags)
14802 (nreverse (org-get-tags-at))))
14803 tags
14804 (if (or (eq t org-use-fast-tag-selection)
14805 (and org-use-fast-tag-selection
14806 (delq nil (mapcar 'cdr table))))
14807 (org-fast-tag-selection
14808 current-tags inherited-tags table
14809 (if org-fast-tag-selection-include-todo
14810 org-todo-key-alist))
14811 (let ((org-add-colon-after-tag-completion (< 1 (length table))))
14812 (org-trim
14813 (org-icompleting-read "Tags: "
14814 'org-tags-completion-function
14815 nil nil current 'org-tags-history))))))
14816 (while (string-match "[-+&]+" tags)
14817 ;; No boolean logic, just a list
14818 (setq tags (replace-match ":" t t tags))))
14820 (setq tags (replace-regexp-in-string "[,]" ":" tags))
14822 (if org-tags-sort-function
14823 (setq tags (mapconcat 'identity
14824 (sort (org-split-string
14825 tags (org-re "[^[:alnum:]_@#%]+"))
14826 org-tags-sort-function) ":")))
14828 (if (string-match "\\`[\t ]*\\'" tags)
14829 (setq tags "")
14830 (unless (string-match ":$" tags) (setq tags (concat tags ":")))
14831 (unless (string-match "^:" tags) (setq tags (concat ":" tags))))
14833 ;; Insert new tags at the correct column
14834 (beginning-of-line 1)
14835 (setq level (or (and (looking-at org-outline-regexp)
14836 (- (match-end 0) (point) 1))
14838 (cond
14839 ((and (equal current "") (equal tags "")))
14840 ((re-search-forward
14841 (concat "\\([ \t]*" (regexp-quote current) "\\)[ \t]*$")
14842 (point-at-eol) t)
14843 (if (equal tags "")
14844 (setq rpl "")
14845 (goto-char (match-beginning 0))
14846 (setq c0 (current-column)
14847 ;; compute offset for the case of org-indent-mode active
14848 di (if (org-bound-and-true-p org-indent-mode)
14849 (* (1- org-indent-indentation-per-level) (1- level))
14851 p0 (if (equal (char-before) ?*) (1+ (point)) (point))
14852 tc (+ org-tags-column (if (> org-tags-column 0) (- di) di))
14853 c1 (max (1+ c0) (if (> tc 0) tc (- (- tc) (string-width tags))))
14854 rpl (concat (make-string (max 0 (- c1 c0)) ?\ ) tags)))
14855 (replace-match rpl t t)
14856 (and (not (featurep 'xemacs)) c0 indent-tabs-mode (tabify p0 (point)))
14857 tags)
14858 (t (error "Tags alignment failed")))
14859 (org-move-to-column col)
14860 (unless just-align
14861 (run-hooks 'org-after-tags-change-hook))))))
14863 (defun org-change-tag-in-region (beg end tag off)
14864 "Add or remove TAG for each entry in the region.
14865 This works in the agenda, and also in an org-mode buffer."
14866 (interactive
14867 (list (region-beginning) (region-end)
14868 (let ((org-last-tags-completion-table
14869 (if (derived-mode-p 'org-mode)
14870 (org-uniquify
14871 (delq nil (append (org-get-buffer-tags)
14872 (org-global-tags-completion-table))))
14873 (org-global-tags-completion-table))))
14874 (org-icompleting-read
14875 "Tag: " 'org-tags-completion-function nil nil nil
14876 'org-tags-history))
14877 (progn
14878 (message "[s]et or [r]emove? ")
14879 (equal (read-char-exclusive) ?r))))
14880 (if (fboundp 'deactivate-mark) (deactivate-mark))
14881 (let ((agendap (equal major-mode 'org-agenda-mode))
14882 l1 l2 m buf pos newhead (cnt 0))
14883 (goto-char end)
14884 (setq l2 (1- (org-current-line)))
14885 (goto-char beg)
14886 (setq l1 (org-current-line))
14887 (loop for l from l1 to l2 do
14888 (org-goto-line l)
14889 (setq m (get-text-property (point) 'org-hd-marker))
14890 (when (or (and (derived-mode-p 'org-mode) (org-at-heading-p))
14891 (and agendap m))
14892 (setq buf (if agendap (marker-buffer m) (current-buffer))
14893 pos (if agendap m (point)))
14894 (with-current-buffer buf
14895 (save-excursion
14896 (save-restriction
14897 (goto-char pos)
14898 (setq cnt (1+ cnt))
14899 (org-toggle-tag tag (if off 'off 'on))
14900 (setq newhead (org-get-heading)))))
14901 (and agendap (org-agenda-change-all-lines newhead m))))
14902 (message "Tag :%s: %s in %d headings" tag (if off "removed" "set") cnt)))
14904 (defun org-tags-completion-function (string predicate &optional flag)
14905 (let (s1 s2 rtn (ctable org-last-tags-completion-table)
14906 (confirm (lambda (x) (stringp (car x)))))
14907 (if (string-match "^\\(.*[-+:&,|]\\)\\([^-+:&,|]*\\)$" string)
14908 (setq s1 (match-string 1 string)
14909 s2 (match-string 2 string))
14910 (setq s1 "" s2 string))
14911 (cond
14912 ((eq flag nil)
14913 ;; try completion
14914 (setq rtn (try-completion s2 ctable confirm))
14915 (if (stringp rtn)
14916 (setq rtn
14917 (concat s1 s2 (substring rtn (length s2))
14918 (if (and org-add-colon-after-tag-completion
14919 (assoc rtn ctable))
14920 ":" ""))))
14921 rtn)
14922 ((eq flag t)
14923 ;; all-completions
14924 (all-completions s2 ctable confirm))
14925 ((eq flag 'lambda)
14926 ;; exact match?
14927 (assoc s2 ctable)))))
14929 (defun org-fast-tag-insert (kwd tags face &optional end)
14930 "Insert KDW, and the TAGS, the latter with face FACE.
14931 Also insert END."
14932 (insert (format "%-12s" (concat kwd ":"))
14933 (org-add-props (mapconcat 'identity tags " ") nil 'face face)
14934 (or end "")))
14936 (defun org-fast-tag-show-exit (flag)
14937 (save-excursion
14938 (org-goto-line 3)
14939 (if (re-search-forward "[ \t]+Next change exits" (point-at-eol) t)
14940 (replace-match ""))
14941 (when flag
14942 (end-of-line 1)
14943 (org-move-to-column (- (window-width) 19) t)
14944 (insert (org-add-props " Next change exits" nil 'face 'org-warning)))))
14946 (defun org-set-current-tags-overlay (current prefix)
14947 "Add an overlay to CURRENT tag with PREFIX."
14948 (let ((s (concat ":" (mapconcat 'identity current ":") ":")))
14949 (if (featurep 'xemacs)
14950 (org-overlay-display org-tags-overlay (concat prefix s)
14951 'secondary-selection)
14952 (put-text-property 0 (length s) 'face '(secondary-selection org-tag) s)
14953 (org-overlay-display org-tags-overlay (concat prefix s)))))
14955 (defvar org-last-tag-selection-key nil)
14956 (defun org-fast-tag-selection (current inherited table &optional todo-table)
14957 "Fast tag selection with single keys.
14958 CURRENT is the current list of tags in the headline, INHERITED is the
14959 list of inherited tags, and TABLE is an alist of tags and corresponding keys,
14960 possibly with grouping information. TODO-TABLE is a similar table with
14961 TODO keywords, should these have keys assigned to them.
14962 If the keys are nil, a-z are automatically assigned.
14963 Returns the new tags string, or nil to not change the current settings."
14964 (let* ((fulltable (append table todo-table))
14965 (maxlen (apply 'max (mapcar
14966 (lambda (x)
14967 (if (stringp (car x)) (string-width (car x)) 0))
14968 fulltable)))
14969 (buf (current-buffer))
14970 (expert (eq org-fast-tag-selection-single-key 'expert))
14971 (buffer-tags nil)
14972 (fwidth (+ maxlen 3 1 3))
14973 (ncol (/ (- (window-width) 4) fwidth))
14974 (i-face 'org-done)
14975 (c-face 'org-todo)
14976 tg cnt e c char c1 c2 ntable tbl rtn
14977 ov-start ov-end ov-prefix
14978 (exit-after-next org-fast-tag-selection-single-key)
14979 (done-keywords org-done-keywords)
14980 groups ingroup)
14981 (save-excursion
14982 (beginning-of-line 1)
14983 (if (looking-at
14984 (org-re ".*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
14985 (setq ov-start (match-beginning 1)
14986 ov-end (match-end 1)
14987 ov-prefix "")
14988 (setq ov-start (1- (point-at-eol))
14989 ov-end (1+ ov-start))
14990 (skip-chars-forward "^\n\r")
14991 (setq ov-prefix
14992 (concat
14993 (buffer-substring (1- (point)) (point))
14994 (if (> (current-column) org-tags-column)
14996 (make-string (- org-tags-column (current-column)) ?\ ))))))
14997 (move-overlay org-tags-overlay ov-start ov-end)
14998 (save-window-excursion
14999 (if expert
15000 (set-buffer (get-buffer-create " *Org tags*"))
15001 (delete-other-windows)
15002 (set-window-buffer (split-window-vertically) (get-buffer-create " *Org tags*"))
15003 (org-switch-to-buffer-other-window " *Org tags*"))
15004 (erase-buffer)
15005 (org-set-local 'org-done-keywords done-keywords)
15006 (org-fast-tag-insert "Inherited" inherited i-face "\n")
15007 (org-fast-tag-insert "Current" current c-face "\n\n")
15008 (org-fast-tag-show-exit exit-after-next)
15009 (org-set-current-tags-overlay current ov-prefix)
15010 (setq tbl fulltable char ?a cnt 0)
15011 (while (setq e (pop tbl))
15012 (cond
15013 ((equal (car e) :startgroup)
15014 (push '() groups) (setq ingroup t)
15015 (when (not (= cnt 0))
15016 (setq cnt 0)
15017 (insert "\n"))
15018 (insert (if (cdr e) (format "%s: " (cdr e)) "") "{ "))
15019 ((equal (car e) :endgroup)
15020 (setq ingroup nil cnt 0)
15021 (insert "}" (if (cdr e) (format " (%s) " (cdr e)) "") "\n"))
15022 ((equal e '(:newline))
15023 (when (not (= cnt 0))
15024 (setq cnt 0)
15025 (insert "\n")
15026 (setq e (car tbl))
15027 (while (equal (car tbl) '(:newline))
15028 (insert "\n")
15029 (setq tbl (cdr tbl)))))
15030 ((equal e '(:grouptags)) nil)
15032 (setq tg (copy-sequence (car e)) c2 nil)
15033 (if (cdr e)
15034 (setq c (cdr e))
15035 ;; automatically assign a character.
15036 (setq c1 (string-to-char
15037 (downcase (substring
15038 tg (if (= (string-to-char tg) ?@) 1 0)))))
15039 (if (or (rassoc c1 ntable) (rassoc c1 table))
15040 (while (or (rassoc char ntable) (rassoc char table))
15041 (setq char (1+ char)))
15042 (setq c2 c1))
15043 (setq c (or c2 char)))
15044 (if ingroup (push tg (car groups)))
15045 (setq tg (org-add-props tg nil 'face
15046 (cond
15047 ((not (assoc tg table))
15048 (org-get-todo-face tg))
15049 ((member tg current) c-face)
15050 ((member tg inherited) i-face))))
15051 (if (equal (caar tbl) :grouptags)
15052 (org-add-props tg nil 'face 'org-tag-group))
15053 (if (and (= cnt 0) (not ingroup)) (insert " "))
15054 (insert "[" c "] " tg (make-string
15055 (- fwidth 4 (length tg)) ?\ ))
15056 (push (cons tg c) ntable)
15057 (when (= (setq cnt (1+ cnt)) ncol)
15058 (insert "\n")
15059 (if ingroup (insert " "))
15060 (setq cnt 0)))))
15061 (setq ntable (nreverse ntable))
15062 (insert "\n")
15063 (goto-char (point-min))
15064 (if (not expert) (org-fit-window-to-buffer))
15065 (setq rtn
15066 (catch 'exit
15067 (while t
15068 (message "[a-z..]:Toggle [SPC]:clear [RET]:accept [TAB]:free [!] %sgroups%s"
15069 (if (not groups) "no " "")
15070 (if expert " [C-c]:window" (if exit-after-next " [C-c]:single" " [C-c]:multi")))
15071 (setq c (let ((inhibit-quit t)) (read-char-exclusive)))
15072 (setq org-last-tag-selection-key c)
15073 (cond
15074 ((= c ?\r) (throw 'exit t))
15075 ((= c ?!)
15076 (setq groups (not groups))
15077 (goto-char (point-min))
15078 (while (re-search-forward "[{}]" nil t) (replace-match " ")))
15079 ((= c ?\C-c)
15080 (if (not expert)
15081 (org-fast-tag-show-exit
15082 (setq exit-after-next (not exit-after-next)))
15083 (setq expert nil)
15084 (delete-other-windows)
15085 (set-window-buffer (split-window-vertically) " *Org tags*")
15086 (org-switch-to-buffer-other-window " *Org tags*")
15087 (org-fit-window-to-buffer)))
15088 ((or (= c ?\C-g)
15089 (and (= c ?q) (not (rassoc c ntable))))
15090 (org-detach-overlay org-tags-overlay)
15091 (setq quit-flag t))
15092 ((= c ?\ )
15093 (setq current nil)
15094 (if exit-after-next (setq exit-after-next 'now)))
15095 ((= c ?\t)
15096 (condition-case nil
15097 (setq tg (org-icompleting-read
15098 "Tag: "
15099 (or buffer-tags
15100 (with-current-buffer buf
15101 (org-get-buffer-tags)))))
15102 (quit (setq tg "")))
15103 (when (string-match "\\S-" tg)
15104 (add-to-list 'buffer-tags (list tg))
15105 (if (member tg current)
15106 (setq current (delete tg current))
15107 (push tg current)))
15108 (if exit-after-next (setq exit-after-next 'now)))
15109 ((setq e (rassoc c todo-table) tg (car e))
15110 (with-current-buffer buf
15111 (save-excursion (org-todo tg)))
15112 (if exit-after-next (setq exit-after-next 'now)))
15113 ((setq e (rassoc c ntable) tg (car e))
15114 (if (member tg current)
15115 (setq current (delete tg current))
15116 (loop for g in groups do
15117 (if (member tg g)
15118 (mapc (lambda (x)
15119 (setq current (delete x current)))
15120 g)))
15121 (push tg current))
15122 (if exit-after-next (setq exit-after-next 'now))))
15124 ;; Create a sorted list
15125 (setq current
15126 (sort current
15127 (lambda (a b)
15128 (assoc b (cdr (memq (assoc a ntable) ntable))))))
15129 (if (eq exit-after-next 'now) (throw 'exit t))
15130 (goto-char (point-min))
15131 (beginning-of-line 2)
15132 (delete-region (point) (point-at-eol))
15133 (org-fast-tag-insert "Current" current c-face)
15134 (org-set-current-tags-overlay current ov-prefix)
15135 (while (re-search-forward
15136 (org-re "\\[.\\] \\([[:alnum:]_@#%]+\\)") nil t)
15137 (setq tg (match-string 1))
15138 (add-text-properties
15139 (match-beginning 1) (match-end 1)
15140 (list 'face
15141 (cond
15142 ((member tg current) c-face)
15143 ((member tg inherited) i-face)
15144 (t (get-text-property (match-beginning 1) 'face))))))
15145 (goto-char (point-min)))))
15146 (org-detach-overlay org-tags-overlay)
15147 (if rtn
15148 (mapconcat 'identity current ":")
15149 nil))))
15151 (defun org-get-tags-string ()
15152 "Get the TAGS string in the current headline."
15153 (unless (org-at-heading-p t)
15154 (user-error "Not on a heading"))
15155 (save-excursion
15156 (beginning-of-line 1)
15157 (if (looking-at (org-re ".*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
15158 (org-match-string-no-properties 1)
15159 "")))
15161 (defun org-get-tags ()
15162 "Get the list of tags specified in the current headline."
15163 (org-split-string (org-get-tags-string) ":"))
15165 (defun org-get-buffer-tags ()
15166 "Get a table of all tags used in the buffer, for completion."
15167 (let (tags)
15168 (save-excursion
15169 (goto-char (point-min))
15170 (while (re-search-forward
15171 (org-re "[ \t]:\\([[:alnum:]_@#%:]+\\):[ \t\r\n]") nil t)
15172 (when (equal (char-after (point-at-bol 0)) ?*)
15173 (mapc (lambda (x) (add-to-list 'tags x))
15174 (org-split-string (org-match-string-no-properties 1) ":")))))
15175 (mapc (lambda (s) (add-to-list 'tags s)) org-file-tags)
15176 (mapcar 'list tags)))
15178 ;;;; The mapping API
15180 (defun org-map-entries (func &optional match scope &rest skip)
15181 "Call FUNC at each headline selected by MATCH in SCOPE.
15183 FUNC is a function or a lisp form. The function will be called without
15184 arguments, with the cursor positioned at the beginning of the headline.
15185 The return values of all calls to the function will be collected and
15186 returned as a list.
15188 The call to FUNC will be wrapped into a save-excursion form, so FUNC
15189 does not need to preserve point. After evaluation, the cursor will be
15190 moved to the end of the line (presumably of the headline of the
15191 processed entry) and search continues from there. Under some
15192 circumstances, this may not produce the wanted results. For example,
15193 if you have removed (e.g. archived) the current (sub)tree it could
15194 mean that the next entry will be skipped entirely. In such cases, you
15195 can specify the position from where search should continue by making
15196 FUNC set the variable `org-map-continue-from' to the desired buffer
15197 position.
15199 MATCH is a tags/property/todo match as it is used in the agenda tags view.
15200 Only headlines that are matched by this query will be considered during
15201 the iteration. When MATCH is nil or t, all headlines will be
15202 visited by the iteration.
15204 SCOPE determines the scope of this command. It can be any of:
15206 nil The current buffer, respecting the restriction if any
15207 tree The subtree started with the entry at point
15208 region The entries within the active region, if any
15209 region-start-level
15210 The entries within the active region, but only those at
15211 the same level than the first one.
15212 file The current buffer, without restriction
15213 file-with-archives
15214 The current buffer, and any archives associated with it
15215 agenda All agenda files
15216 agenda-with-archives
15217 All agenda files with any archive files associated with them
15218 \(file1 file2 ...)
15219 If this is a list, all files in the list will be scanned
15221 The remaining args are treated as settings for the skipping facilities of
15222 the scanner. The following items can be given here:
15224 archive skip trees with the archive tag
15225 comment skip trees with the COMMENT keyword
15226 function or Emacs Lisp form:
15227 will be used as value for `org-agenda-skip-function', so
15228 whenever the function returns a position, FUNC will not be
15229 called for that entry and search will continue from the
15230 position returned
15232 If your function needs to retrieve the tags including inherited tags
15233 at the *current* entry, you can use the value of the variable
15234 `org-scanner-tags' which will be much faster than getting the value
15235 with `org-get-tags-at'. If your function gets properties with
15236 `org-entry-properties' at the *current* entry, bind `org-trust-scanner-tags'
15237 to t around the call to `org-entry-properties' to get the same speedup.
15238 Note that if your function moves around to retrieve tags and properties at
15239 a *different* entry, you cannot use these techniques."
15240 (unless (and (or (eq scope 'region) (eq scope 'region-start-level))
15241 (not (org-region-active-p)))
15242 (let* ((org-agenda-archives-mode nil) ; just to make sure
15243 (org-agenda-skip-archived-trees (memq 'archive skip))
15244 (org-agenda-skip-comment-trees (memq 'comment skip))
15245 (org-agenda-skip-function
15246 (car (org-delete-all '(comment archive) skip)))
15247 (org-tags-match-list-sublevels t)
15248 (start-level (eq scope 'region-start-level))
15249 matcher file res
15250 org-todo-keywords-for-agenda
15251 org-done-keywords-for-agenda
15252 org-todo-keyword-alist-for-agenda
15253 org-tag-alist-for-agenda
15254 todo-only)
15256 (cond
15257 ((eq match t) (setq matcher t))
15258 ((eq match nil) (setq matcher t))
15259 (t (setq matcher (if match (cdr (org-make-tags-matcher match)) t))))
15261 (save-excursion
15262 (save-restriction
15263 (cond ((eq scope 'tree)
15264 (org-back-to-heading t)
15265 (org-narrow-to-subtree)
15266 (setq scope nil))
15267 ((and (or (eq scope 'region) (eq scope 'region-start-level))
15268 (org-region-active-p))
15269 ;; If needed, set start-level to a string like "2"
15270 (when start-level
15271 (save-excursion
15272 (goto-char (region-beginning))
15273 (unless (org-at-heading-p) (outline-next-heading))
15274 (setq start-level (org-current-level))))
15275 (narrow-to-region (region-beginning)
15276 (save-excursion
15277 (goto-char (region-end))
15278 (unless (and (bolp) (org-at-heading-p))
15279 (outline-next-heading))
15280 (point)))
15281 (setq scope nil)))
15283 (if (not scope)
15284 (progn
15285 (org-agenda-prepare-buffers
15286 (list (buffer-file-name (current-buffer))))
15287 (setq res (org-scan-tags func matcher todo-only start-level)))
15288 ;; Get the right scope
15289 (cond
15290 ((and scope (listp scope) (symbolp (car scope)))
15291 (setq scope (eval scope)))
15292 ((eq scope 'agenda)
15293 (setq scope (org-agenda-files t)))
15294 ((eq scope 'agenda-with-archives)
15295 (setq scope (org-agenda-files t))
15296 (setq scope (org-add-archive-files scope)))
15297 ((eq scope 'file)
15298 (setq scope (list (buffer-file-name))))
15299 ((eq scope 'file-with-archives)
15300 (setq scope (org-add-archive-files (list (buffer-file-name))))))
15301 (org-agenda-prepare-buffers scope)
15302 (while (setq file (pop scope))
15303 (with-current-buffer (org-find-base-buffer-visiting file)
15304 (save-excursion
15305 (save-restriction
15306 (widen)
15307 (goto-char (point-min))
15308 (setq res (append res (org-scan-tags func matcher todo-only))))))))))
15309 res)))
15311 ;;;; Properties
15313 ;;; Setting and retrieving properties
15315 (defconst org-special-properties
15316 '("TODO" "TAGS" "ALLTAGS" "DEADLINE" "SCHEDULED" "CLOCK" "CLOSED" "PRIORITY"
15317 "TIMESTAMP" "TIMESTAMP_IA" "BLOCKED" "FILE" "CLOCKSUM" "CLOCKSUM_T")
15318 "The special properties valid in Org-mode.
15320 These are properties that are not defined in the property drawer,
15321 but in some other way.")
15323 (defconst org-default-properties
15324 '("ARCHIVE" "CATEGORY" "SUMMARY" "DESCRIPTION" "CUSTOM_ID"
15325 "LOCATION" "LOGGING" "COLUMNS" "VISIBILITY"
15326 "TABLE_EXPORT_FORMAT" "TABLE_EXPORT_FILE"
15327 "EXPORT_OPTIONS" "EXPORT_TEXT" "EXPORT_FILE_NAME"
15328 "EXPORT_TITLE" "EXPORT_AUTHOR" "EXPORT_DATE"
15329 "ORDERED" "NOBLOCKING" "COOKIE_DATA" "LOG_INTO_DRAWER" "REPEAT_TO_STATE"
15330 "CLOCK_MODELINE_TOTAL" "STYLE" "HTML_CONTAINER_CLASS")
15331 "Some properties that are used by Org-mode for various purposes.
15332 Being in this list makes sure that they are offered for completion.")
15334 (defun org-property-action ()
15335 "Do an action on properties."
15336 (interactive)
15337 (let (c)
15338 (org-at-property-p)
15339 (message "Property Action: [s]et [d]elete [D]elete globally [c]ompute")
15340 (setq c (read-char-exclusive))
15341 (cond
15342 ((equal c ?s)
15343 (call-interactively 'org-set-property))
15344 ((equal c ?d)
15345 (call-interactively 'org-delete-property))
15346 ((equal c ?D)
15347 (call-interactively 'org-delete-property-globally))
15348 ((equal c ?c)
15349 (call-interactively 'org-compute-property-at-point))
15350 (t (user-error "No such property action %c" c)))))
15352 (defun org-inc-effort ()
15353 "Increment the value of the effort property in the current entry."
15354 (interactive)
15355 (org-set-effort nil t))
15357 (defvar org-clock-effort) ;; Defined in org-clock.el
15358 (defvar org-clock-current-task) ;; Defined in org-clock.el
15359 (defun org-set-effort (&optional value increment)
15360 "Set the effort property of the current entry.
15361 With numerical prefix arg, use the nth allowed value, 0 stands for the
15362 10th allowed value.
15364 When INCREMENT is non-nil, set the property to the next allowed value."
15365 (interactive "P")
15366 (if (equal value 0) (setq value 10))
15367 (let* ((completion-ignore-case t)
15368 (prop org-effort-property)
15369 (cur (org-entry-get nil prop))
15370 (allowed (org-property-get-allowed-values nil prop 'table))
15371 (existing (mapcar 'list (org-property-values prop)))
15372 (heading (nth 4 (org-heading-components)))
15374 (val (cond
15375 ((stringp value) value)
15376 ((and allowed (integerp value))
15377 (or (car (nth (1- value) allowed))
15378 (car (org-last allowed))))
15379 ((and allowed increment)
15380 (or (caadr (member (list cur) allowed))
15381 (user-error "Allowed effort values are not set")))
15382 (allowed
15383 (message "Select 1-9,0, [RET%s]: %s"
15384 (if cur (concat "=" cur) "")
15385 (mapconcat 'car allowed " "))
15386 (setq rpl (read-char-exclusive))
15387 (if (equal rpl ?\r)
15389 (setq rpl (- rpl ?0))
15390 (if (equal rpl 0) (setq rpl 10))
15391 (if (and (> rpl 0) (<= rpl (length allowed)))
15392 (car (nth (1- rpl) allowed))
15393 (org-completing-read "Effort: " allowed nil))))
15395 (let (org-completion-use-ido org-completion-use-iswitchb)
15396 (org-completing-read
15397 (concat "Effort " (if (and cur (string-match "\\S-" cur))
15398 (concat "[" cur "]") "")
15399 ": ")
15400 existing nil nil "" nil cur))))))
15401 (unless (equal (org-entry-get nil prop) val)
15402 (org-entry-put nil prop val))
15403 (org-refresh-property
15404 '((effort . identity)
15405 (effort-minutes . org-duration-string-to-minutes))
15406 val)
15407 (when (string= heading org-clock-current-task)
15408 (setq org-clock-effort (get-text-property (point-at-bol) 'effort))
15409 (org-clock-update-mode-line))
15410 (message "%s is now %s" prop val)))
15412 (defun org-at-property-p ()
15413 "Non-nil when point is inside a property drawer.
15414 See `org-property-re' for match data, if applicable."
15415 (when (eq (org-element-type (org-element-at-point)) 'node-property)
15416 (save-excursion
15417 (beginning-of-line)
15418 (looking-at org-property-re))))
15420 (defun org-get-property-block (&optional beg end force)
15421 "Return the (beg . end) range of the body of the property drawer.
15422 BEG and END are the beginning and end of the current subtree, or of
15423 the part before the first headline. If they are not given, they will
15424 be found. If the drawer does not exist and FORCE is non-nil, create
15425 the drawer."
15426 (catch 'exit
15427 (save-excursion
15428 (let* ((beg (or beg (and (org-before-first-heading-p) (point-min))
15429 (progn (org-back-to-heading t) (point))))
15430 (end (or end (and (not (outline-next-heading)) (point-max))
15431 (point))))
15432 (goto-char beg)
15433 (if (re-search-forward org-property-start-re end t)
15434 (setq beg (1+ (match-end 0)))
15435 (if force
15436 (save-excursion
15437 (org-insert-property-drawer)
15438 (setq end (progn (outline-next-heading) (point))))
15439 (throw 'exit nil))
15440 (goto-char beg)
15441 (if (re-search-forward org-property-start-re end t)
15442 (setq beg (1+ (match-end 0)))))
15443 (if (re-search-forward org-property-end-re end t)
15444 (setq end (match-beginning 0))
15445 (or force (throw 'exit nil))
15446 (goto-char beg)
15447 (setq end beg)
15448 (org-indent-line)
15449 (insert ":END:\n"))
15450 (cons beg end)))))
15452 (defun org-entry-properties (&optional pom which specific)
15453 "Get all properties of the entry at point-or-marker POM.
15454 This includes the TODO keyword, the tags, time strings for deadline,
15455 scheduled, and clocking, and any additional properties defined in the
15456 entry. The return value is an alist, keys may occur multiple times
15457 if the property key was used several times.
15458 POM may also be nil, in which case the current entry is used.
15459 If WHICH is nil or `all', get all properties. If WHICH is
15460 `special' or `standard', only get that subclass. If WHICH
15461 is a string only get exactly this property. SPECIFIC can be a string, the
15462 specific property we are interested in. Specifying it can speed
15463 things up because then unnecessary parsing is avoided."
15464 (setq which (or which 'all))
15465 (org-with-wide-buffer
15466 (org-with-point-at pom
15467 (let ((clockstr (substring org-clock-string 0 -1))
15468 (excluded '("TODO" "TAGS" "ALLTAGS" "PRIORITY" "BLOCKED"))
15469 (case-fold-search nil)
15470 beg end range props sum-props key key1 value string clocksum clocksumt)
15471 (when (and (derived-mode-p 'org-mode)
15472 (ignore-errors (org-back-to-heading t)))
15473 (setq beg (point))
15474 (setq sum-props (get-text-property (point) 'org-summaries))
15475 (setq clocksum (get-text-property (point) :org-clock-minutes)
15476 clocksumt (get-text-property (point) :org-clock-minutes-today))
15477 (outline-next-heading)
15478 (setq end (point))
15479 (when (memq which '(all special))
15480 ;; Get the special properties, like TODO and tags
15481 (goto-char beg)
15482 (when (and (or (not specific) (string= specific "TODO"))
15483 (looking-at org-todo-line-regexp) (match-end 2))
15484 (push (cons "TODO" (org-match-string-no-properties 2)) props))
15485 (when (and (or (not specific) (string= specific "PRIORITY"))
15486 (looking-at org-priority-regexp))
15487 (push (cons "PRIORITY" (org-match-string-no-properties 2)) props))
15488 (when (or (not specific) (string= specific "FILE"))
15489 (push (cons "FILE" buffer-file-name) props))
15490 (when (and (or (not specific) (string= specific "TAGS"))
15491 (setq value (org-get-tags-string))
15492 (string-match "\\S-" value))
15493 (push (cons "TAGS" value) props))
15494 (when (and (or (not specific) (string= specific "ALLTAGS"))
15495 (setq value (org-get-tags-at)))
15496 (push (cons "ALLTAGS" (concat ":" (mapconcat 'identity value ":")
15497 ":"))
15498 props))
15499 (when (or (not specific) (string= specific "BLOCKED"))
15500 (push (cons "BLOCKED" (if (org-entry-blocked-p) "t" "")) props))
15501 (when (or (not specific)
15502 (member specific
15503 '("SCHEDULED" "DEADLINE" "CLOCK" "CLOSED"
15504 "TIMESTAMP" "TIMESTAMP_IA")))
15505 (catch 'match
15506 (while (and (re-search-forward org-maybe-keyword-time-regexp end t)
15507 (not (text-property-any 0 (length (match-string 0))
15508 'face 'font-lock-comment-face
15509 (match-string 0))))
15510 (setq key (if (match-end 1)
15511 (substring (org-match-string-no-properties 1)
15512 0 -1))
15513 string (if (equal key clockstr)
15514 (org-trim
15515 (buffer-substring-no-properties
15516 (match-beginning 3) (goto-char
15517 (point-at-eol))))
15518 (substring (org-match-string-no-properties 3)
15519 1 -1)))
15520 ;; Get the correct property name from the key. This is
15521 ;; necessary if the user has configured time keywords.
15522 (setq key1 (concat key ":"))
15523 (cond
15524 ((not key)
15525 (setq key
15526 (if (= (char-after (match-beginning 3)) ?\[)
15527 "TIMESTAMP_IA" "TIMESTAMP")))
15528 ((equal key1 org-scheduled-string) (setq key "SCHEDULED"))
15529 ((equal key1 org-deadline-string) (setq key "DEADLINE"))
15530 ((equal key1 org-closed-string) (setq key "CLOSED"))
15531 ((equal key1 org-clock-string) (setq key "CLOCK")))
15532 (if (and specific (equal key specific) (not (equal key "CLOCK")))
15533 (progn
15534 (push (cons key string) props)
15535 ;; no need to search further if match is found
15536 (throw 'match t))
15537 (when (or (equal key "CLOCK") (not (assoc key props)))
15538 (push (cons key string) props)))))))
15540 (when (memq which '(all standard))
15541 ;; Get the standard properties, like :PROP: ...
15542 (setq range (org-get-property-block beg end))
15543 (when range
15544 (goto-char (car range))
15545 (while (re-search-forward org-property-re
15546 (cdr range) t)
15547 (setq key (org-match-string-no-properties 2)
15548 value (org-trim (or (org-match-string-no-properties 3) "")))
15549 (unless (member key excluded)
15550 (push (cons key (or value "")) props)))))
15551 (if clocksum
15552 (push (cons "CLOCKSUM"
15553 (org-columns-number-to-string (/ (float clocksum) 60.)
15554 'add_times))
15555 props))
15556 (if clocksumt
15557 (push (cons "CLOCKSUM_T"
15558 (org-columns-number-to-string (/ (float clocksumt) 60.)
15559 'add_times))
15560 props))
15561 (unless (assoc "CATEGORY" props)
15562 (push (cons "CATEGORY" (org-get-category)) props))
15563 (append sum-props (nreverse props)))))))
15565 (defun org-entry-get (pom property &optional inherit literal-nil)
15566 "Get value of PROPERTY for entry or content at point-or-marker POM.
15567 If INHERIT is non-nil and the entry does not have the property,
15568 then also check higher levels of the hierarchy.
15569 If INHERIT is the symbol `selective', use inheritance only if the setting
15570 in `org-use-property-inheritance' selects PROPERTY for inheritance.
15571 If the property is present but empty, the return value is the empty string.
15572 If the property is not present at all, nil is returned.
15574 Return the value as a string.
15576 If LITERAL-NIL is set, return the string value \"nil\" as a string,
15577 do not interpret it as the list atom nil. This is used for inheritance
15578 when a \"nil\" value can supersede a non-nil value higher up the hierarchy."
15579 (org-with-point-at pom
15580 (if (and inherit (if (eq inherit 'selective)
15581 (org-property-inherit-p property)
15583 (org-entry-get-with-inheritance property literal-nil)
15584 (if (member property org-special-properties)
15585 ;; We need a special property. Use `org-entry-properties'
15586 ;; to retrieve it, but specify the wanted property
15587 (cdr (assoc property (org-entry-properties nil 'special property)))
15588 (org-with-wide-buffer
15589 (let ((range (org-get-property-block)))
15590 (when (and range (not (eq (car range) (cdr range)))
15591 (save-excursion
15592 (goto-char (car range))
15593 (re-search-forward
15594 (concat (org-re-property property) "\\|"
15595 (org-re-property (concat property "+")))
15596 (cdr range) t)))
15597 (let* ((props
15598 (list (or (assoc property org-file-properties)
15599 (assoc property org-global-properties)
15600 (assoc property org-global-properties-fixed))))
15601 (ap (lambda (key)
15602 (when (re-search-forward
15603 (org-re-property key) (cdr range) t)
15604 (setq props
15605 (org-update-property-plist
15607 (if (match-end 3)
15608 (org-match-string-no-properties 3) "")
15609 props)))))
15610 val)
15611 (goto-char (car range))
15612 (funcall ap property)
15613 (goto-char (car range))
15614 (while (funcall ap (concat property "+")))
15615 (setq val (cdr (assoc property props)))
15616 (when val (if literal-nil val (org-not-nil val)))))))))))
15618 (defun org-property-or-variable-value (var &optional inherit)
15619 "Check if there is a property fixing the value of VAR.
15620 If yes, return this value. If not, return the current value of the variable."
15621 (let ((prop (org-entry-get nil (symbol-name var) inherit)))
15622 (if (and prop (stringp prop) (string-match "\\S-" prop))
15623 (read prop)
15624 (symbol-value var))))
15626 (defun org-entry-delete (pom property)
15627 "Delete the property PROPERTY from entry at point-or-marker POM."
15628 (unless (member property org-special-properties)
15629 (org-with-point-at pom
15630 (let ((range (org-get-property-block)))
15631 (if (and range
15632 (goto-char (car range))
15633 (re-search-forward
15634 (org-re-property property nil t)
15635 (cdr range) t))
15636 (progn
15637 (delete-region (match-beginning 0) (1+ (point-at-eol)))
15638 (org-remove-empty-drawer-at (car range))
15640 nil)))))
15642 ;; Multi-values properties are properties that contain multiple values
15643 ;; These values are assumed to be single words, separated by whitespace.
15644 (defun org-entry-add-to-multivalued-property (pom property value)
15645 "Add VALUE to the 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 (unless (member value values)
15650 (setq values (append values (list value)))
15651 (org-entry-put pom property
15652 (mapconcat 'identity values " ")))))
15654 (defun org-entry-remove-from-multivalued-property (pom property value)
15655 "Remove VALUE from 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 (when (member value values)
15660 (setq values (delete value values))
15661 (org-entry-put pom property
15662 (mapconcat 'identity values " ")))))
15664 (defun org-entry-member-in-multivalued-property (pom property value)
15665 "Is VALUE one of the words in the PROPERTY in entry at point-or-marker POM?"
15666 (let* ((old (org-entry-get pom property))
15667 (values (and old (org-split-string old "[ \t]"))))
15668 (setq value (org-entry-protect-space value))
15669 (member value values)))
15671 (defun org-entry-get-multivalued-property (pom property)
15672 "Return a list of values in a multivalued property."
15673 (let* ((value (org-entry-get pom property))
15674 (values (and value (org-split-string value "[ \t]"))))
15675 (mapcar 'org-entry-restore-space values)))
15677 (defun org-entry-put-multivalued-property (pom property &rest values)
15678 "Set multivalued PROPERTY at point-or-marker POM to VALUES.
15679 VALUES should be a list of strings. Spaces will be protected."
15680 (org-entry-put pom property
15681 (mapconcat 'org-entry-protect-space values " "))
15682 (let* ((value (org-entry-get pom property))
15683 (values (and value (org-split-string value "[ \t]"))))
15684 (mapcar 'org-entry-restore-space values)))
15686 (defun org-entry-protect-space (s)
15687 "Protect spaces and newline in string S."
15688 (while (string-match " " s)
15689 (setq s (replace-match "%20" t t s)))
15690 (while (string-match "\n" s)
15691 (setq s (replace-match "%0A" t t s)))
15694 (defun org-entry-restore-space (s)
15695 "Restore spaces and newline in string S."
15696 (while (string-match "%20" s)
15697 (setq s (replace-match " " t t s)))
15698 (while (string-match "%0A" s)
15699 (setq s (replace-match "\n" t t s)))
15702 (defvar org-entry-property-inherited-from (make-marker)
15703 "Marker pointing to the entry from where a property was inherited.
15704 Each call to `org-entry-get-with-inheritance' will set this marker to the
15705 location of the entry where the inheritance search matched. If there was
15706 no match, the marker will point nowhere.
15707 Note that also `org-entry-get' calls this function, if the INHERIT flag
15708 is set.")
15710 (defun org-entry-get-with-inheritance (property &optional literal-nil)
15711 "Get PROPERTY of entry or content at point, search higher levels if needed.
15712 The search will stop at the first ancestor which has the property defined.
15713 If the value found is \"nil\", return nil to show that the property
15714 should be considered as undefined (this is the meaning of nil here).
15715 However, if LITERAL-NIL is set, return the string value \"nil\" instead."
15716 (move-marker org-entry-property-inherited-from nil)
15717 (let (tmp)
15718 (save-excursion
15719 (save-restriction
15720 (widen)
15721 (catch 'ex
15722 (while t
15723 (when (setq tmp (org-entry-get nil property nil literal-nil))
15724 (or (ignore-errors (org-back-to-heading t))
15725 (goto-char (point-min)))
15726 (move-marker org-entry-property-inherited-from (point))
15727 (throw 'ex tmp))
15728 (or (ignore-errors (org-up-heading-safe))
15729 (throw 'ex nil))))))
15730 (setq tmp (or tmp
15731 (cdr (assoc property org-file-properties))
15732 (cdr (assoc property org-global-properties))
15733 (cdr (assoc property org-global-properties-fixed))))
15734 (if literal-nil tmp (org-not-nil tmp))))
15736 (defvar org-property-changed-functions nil
15737 "Hook called when the value of a property has changed.
15738 Each hook function should accept two arguments, the name of the property
15739 and the new value.")
15741 (defun org-entry-put (pom property value)
15742 "Set PROPERTY to VALUE for entry at point-or-marker POM.
15743 If the value is `nil', it is converted to the empty string.
15744 If it is not a string, an error is raised."
15745 (cond ((null value) (setq value ""))
15746 ((not (stringp value))
15747 (error "Properties values should be strings.")))
15748 (org-with-point-at pom
15749 (org-back-to-heading t)
15750 (let ((beg (point)) (end (save-excursion (outline-next-heading) (point)))
15751 range)
15752 (cond
15753 ((equal property "TODO")
15754 (when (and (string-match "\\S-" value)
15755 (not (member value org-todo-keywords-1)))
15756 (user-error "\"%s\" is not a valid TODO state" value))
15757 (if (or (not value)
15758 (not (string-match "\\S-" value)))
15759 (setq value 'none))
15760 (org-todo value)
15761 (org-set-tags nil 'align))
15762 ((equal property "PRIORITY")
15763 (org-priority (if (and value (string-match "\\S-" value))
15764 (string-to-char value) ?\ ))
15765 (org-set-tags nil 'align))
15766 ((equal property "CLOCKSUM")
15767 (if (not (re-search-forward
15768 (concat org-clock-string ".*\\]--\\(\\[[^]]+\\]\\)") nil t))
15769 (error "Cannot find a clock log")
15770 (goto-char (- (match-end 1) 2))
15771 (cond
15772 ((eq value 'earlier) (org-timestamp-down))
15773 ((eq value 'later) (org-timestamp-up)))
15774 (org-clock-sum-current-item)))
15775 ((equal property "SCHEDULED")
15776 (if (re-search-forward org-scheduled-time-regexp end t)
15777 (cond
15778 ((eq value 'earlier) (org-timestamp-change -1 'day))
15779 ((eq value 'later) (org-timestamp-change 1 'day))
15780 (t (call-interactively 'org-schedule)))
15781 (call-interactively 'org-schedule)))
15782 ((equal property "DEADLINE")
15783 (if (re-search-forward org-deadline-time-regexp end t)
15784 (cond
15785 ((eq value 'earlier) (org-timestamp-change -1 'day))
15786 ((eq value 'later) (org-timestamp-change 1 'day))
15787 (t (call-interactively 'org-deadline)))
15788 (call-interactively 'org-deadline)))
15789 ((member property org-special-properties)
15790 (error "The %s property can not yet be set with `org-entry-put'"
15791 property))
15792 (t ; a non-special property
15793 (let ((buffer-invisibility-spec (org-inhibit-invisibility))) ; Emacs 21
15794 (setq range (org-get-property-block beg end 'force))
15795 (goto-char (car range))
15796 (if (re-search-forward
15797 (org-re-property property nil t) (cdr range) t)
15798 (progn
15799 (delete-region (match-beginning 0) (match-end 0))
15800 (goto-char (match-beginning 0)))
15801 (goto-char (cdr range))
15802 (insert "\n")
15803 (backward-char 1)
15804 (org-indent-line))
15805 (insert ":" property ":")
15806 (and value (insert " " value))
15807 (org-indent-line)))))
15808 (run-hook-with-args 'org-property-changed-functions property value)))
15810 (defun org-buffer-property-keys (&optional include-specials include-defaults include-columns)
15811 "Get all property keys in the current buffer.
15812 With INCLUDE-SPECIALS, also list the special properties that reflect things
15813 like tags and TODO state.
15814 With INCLUDE-DEFAULTS, also include properties that has special meaning
15815 internally: ARCHIVE, CATEGORY, SUMMARY, DESCRIPTION, LOCATION, and LOGGING
15816 and others.
15817 With INCLUDE-COLUMNS, also include property names given in COLUMN
15818 formats in the current buffer."
15819 (let (rtn range cfmt s p)
15820 (save-excursion
15821 (save-restriction
15822 (widen)
15823 (goto-char (point-min))
15824 (while (re-search-forward org-property-start-re nil t)
15825 (catch 'cont
15826 (setq range (or (org-get-property-block)
15827 (if (y-or-n-p
15828 (format "Malformed drawer at %d, repair?" (point)))
15829 (org-get-property-block nil nil t)
15830 (throw 'cont nil))))
15831 (goto-char (car range))
15832 (while (re-search-forward org-property-re
15833 (cdr range) t)
15834 (add-to-list 'rtn (org-match-string-no-properties 2)))
15835 (outline-next-heading)))))
15837 (when include-specials
15838 (setq rtn (append org-special-properties rtn)))
15840 (when include-defaults
15841 (mapc (lambda (x) (add-to-list 'rtn x)) org-default-properties)
15842 (add-to-list 'rtn org-effort-property))
15844 (when include-columns
15845 (save-excursion
15846 (save-restriction
15847 (widen)
15848 (goto-char (point-min))
15849 (while (re-search-forward
15850 "^[ \t]*\\(#\\+COLUMNS:\\|[ \t]*:COLUMNS:\\)[ \t]*\\(.*\\)"
15851 nil t)
15852 (setq cfmt (match-string 2) s 0)
15853 (while (string-match (org-re "%[0-9]*\\([-[:alnum:]_]+\\)")
15854 cfmt s)
15855 (setq s (match-end 0)
15856 p (match-string 1 cfmt))
15857 (unless (or (equal p "ITEM")
15858 (member p org-special-properties))
15859 (add-to-list 'rtn (match-string 1 cfmt))))))))
15861 (sort rtn (lambda (a b) (string< (upcase a) (upcase b))))))
15863 (defun org-property-values (key)
15864 "Return a list of all values of property KEY in the current buffer."
15865 (save-excursion
15866 (save-restriction
15867 (widen)
15868 (goto-char (point-min))
15869 (let ((re (org-re-property key))
15870 values)
15871 (while (re-search-forward re nil t)
15872 (add-to-list 'values (org-trim (match-string 3))))
15873 (delete "" values)))))
15875 (defun org-insert-property-drawer ()
15876 "Insert a property drawer into the current entry."
15877 (org-back-to-heading t)
15878 (looking-at org-outline-regexp)
15879 (let ((indent (if org-adapt-indentation
15880 (- (match-end 0) (match-beginning 0))
15882 (beg (point))
15883 (re (concat "^[ \t]*" org-keyword-time-regexp))
15884 end hiddenp)
15885 (outline-next-heading)
15886 (setq end (point))
15887 (goto-char beg)
15888 (while (re-search-forward re end t))
15889 (setq hiddenp (outline-invisible-p))
15890 (end-of-line 1)
15891 (and (equal (char-after) ?\n) (forward-char 1))
15892 (while (looking-at "^[ \t]*\\(:CLOCK:\\|:LOGBOOK:\\|CLOCK:\\|:END:\\)")
15893 (if (member (match-string 1) '("CLOCK:" ":END:"))
15894 ;; just skip this line
15895 (beginning-of-line 2)
15896 ;; Drawer start, find the end
15897 (re-search-forward "^\\*+ \\|^[ \t]*:END:" nil t)
15898 (beginning-of-line 1)))
15899 (org-skip-over-state-notes)
15900 (skip-chars-backward " \t\n\r")
15901 (if (and (eq (char-before) ?*) (not (eq (char-after) ?\n)))
15902 (forward-char 1))
15903 (goto-char (point-at-eol))
15904 (let ((inhibit-read-only t)) (insert "\n:PROPERTIES:\n:END:"))
15905 (beginning-of-line 0)
15906 (org-indent-to-column indent)
15907 (beginning-of-line 2)
15908 (org-indent-to-column indent)
15909 (beginning-of-line 0)
15910 (if hiddenp
15911 (save-excursion
15912 (org-back-to-heading t)
15913 (hide-entry))
15914 (org-flag-drawer t))))
15916 (defun org-insert-drawer (&optional arg drawer)
15917 "Insert a drawer at point.
15919 Optional argument DRAWER, when non-nil, is a string representing
15920 drawer's name. Otherwise, the user is prompted for a name.
15922 If a region is active, insert the drawer around that region
15923 instead.
15925 Point is left between drawer's boundaries."
15926 (interactive "P")
15927 (let* ((drawer (if arg "PROPERTIES"
15928 (or drawer (read-from-minibuffer "Drawer: ")))))
15929 (cond
15930 ;; With C-u, fall back on `org-insert-property-drawer'
15931 (arg (org-insert-property-drawer))
15933 ((not (org-string-match-p org-drawer-regexp (format ":%s:" drawer)))
15934 (user-error "Invalid drawer name"))
15935 ;; With an active region, insert a drawer at point.
15936 ((not (org-region-active-p))
15937 (progn
15938 (unless (bolp) (insert "\n"))
15939 (insert (format ":%s:\n\n:END:\n" drawer))
15940 (forward-line -2)))
15941 ;; Otherwise, insert the drawer at point
15943 (let ((rbeg (region-beginning))
15944 (rend (copy-marker (region-end))))
15945 (unwind-protect
15946 (progn
15947 (goto-char rbeg)
15948 (beginning-of-line)
15949 (when (save-excursion
15950 (re-search-forward org-outline-regexp-bol rend t))
15951 (user-error "Drawers cannot contain headlines"))
15952 ;; Position point at the beginning of the first
15953 ;; non-blank line in region. Insert drawer's opening
15954 ;; there, then indent it.
15955 (org-skip-whitespace)
15956 (beginning-of-line)
15957 (insert ":" drawer ":\n")
15958 (forward-line -1)
15959 (indent-for-tab-command)
15960 ;; Move point to the beginning of the first blank line
15961 ;; after the last non-blank line in region. Insert
15962 ;; drawer's closing, then indent it.
15963 (goto-char rend)
15964 (skip-chars-backward " \r\t\n")
15965 (insert "\n:END:")
15966 (deactivate-mark t)
15967 (indent-for-tab-command)
15968 (unless (eolp) (insert "\n")))
15969 ;; Clear marker, whatever the outcome of insertion is.
15970 (set-marker rend nil)))))))
15972 (defvar org-property-set-functions-alist nil
15973 "Property set function alist.
15974 Each entry should have the following format:
15976 (PROPERTY . READ-FUNCTION)
15978 The read function will be called with the same argument as
15979 `org-completing-read'.")
15981 (defun org-set-property-function (property)
15982 "Get the function that should be used to set PROPERTY.
15983 This is computed according to `org-property-set-functions-alist'."
15984 (or (cdr (assoc property org-property-set-functions-alist))
15985 'org-completing-read))
15987 (defun org-read-property-value (property)
15988 "Read PROPERTY value from user."
15989 (let* ((completion-ignore-case t)
15990 (allowed (org-property-get-allowed-values nil property 'table))
15991 (cur (org-entry-get nil property))
15992 (prompt (concat property " value"
15993 (if (and cur (string-match "\\S-" cur))
15994 (concat " [" cur "]") "") ": "))
15995 (set-function (org-set-property-function property))
15996 (val (if allowed
15997 (funcall set-function prompt allowed nil
15998 (not (get-text-property 0 'org-unrestricted
15999 (caar allowed))))
16000 (let (org-completion-use-ido org-completion-use-iswitchb)
16001 (funcall set-function prompt
16002 (mapcar 'list (org-property-values property))
16003 nil nil "" nil cur)))))
16004 (org-trim val)))
16006 (defvar org-last-set-property nil)
16007 (defvar org-last-set-property-value nil)
16008 (defun org-read-property-name ()
16009 "Read a property name."
16010 (let* ((completion-ignore-case t)
16011 (keys (org-buffer-property-keys nil t t))
16012 (default-prop (or (save-excursion
16013 (save-match-data
16014 (beginning-of-line)
16015 (and (looking-at "^\\s-*:\\([^:\n]+\\):")
16016 (null (string= (match-string 1) "END"))
16017 (match-string 1))))
16018 org-last-set-property))
16019 (property (org-icompleting-read
16020 (concat "Property"
16021 (if default-prop (concat " [" default-prop "]") "")
16022 ": ")
16023 (mapcar 'list keys)
16024 nil nil nil nil
16025 default-prop)))
16026 (if (member property keys)
16027 property
16028 (or (cdr (assoc (downcase property)
16029 (mapcar (lambda (x) (cons (downcase x) x))
16030 keys)))
16031 property))))
16033 (defun org-set-property-and-value (use-last)
16034 "Allow to set [PROPERTY]: [value] direction from prompt.
16035 When use-default, don't even ask, just use the last
16036 \"[PROPERTY]: [value]\" string from the history."
16037 (interactive "P")
16038 (let* ((completion-ignore-case t)
16039 (pv (or (and use-last org-last-set-property-value)
16040 (org-completing-read
16041 "Enter a \"[Property]: [value]\" pair: "
16042 nil nil nil nil nil
16043 org-last-set-property-value)))
16044 prop val)
16045 (when (string-match "^[ \t]*\\([^:]+\\):[ \t]*\\(.*\\)[ \t]*$" pv)
16046 (setq prop (match-string 1 pv)
16047 val (match-string 2 pv))
16048 (org-set-property prop val))))
16050 (defun org-set-property (property value)
16051 "In the current entry, set PROPERTY to VALUE.
16052 When called interactively, this will prompt for a property name, offering
16053 completion on existing and default properties. And then it will prompt
16054 for a value, offering completion either on allowed values (via an inherited
16055 xxx_ALL property) or on existing values in other instances of this property
16056 in the current file."
16057 (interactive (list nil nil))
16058 (let* ((property (or property (org-read-property-name)))
16059 (value (or value (org-read-property-value property)))
16060 (fn (cdr (assoc property org-properties-postprocess-alist))))
16061 (setq org-last-set-property property)
16062 (setq org-last-set-property-value (concat property ": " value))
16063 ;; Possibly postprocess the inserted value:
16064 (when fn (setq value (funcall fn value)))
16065 (unless (equal (org-entry-get nil property) value)
16066 (org-entry-put nil property value))))
16068 (defun org-delete-property (property)
16069 "In the current entry, delete PROPERTY."
16070 (interactive
16071 (let* ((completion-ignore-case t)
16072 (cat (org-entry-get (point) "CATEGORY"))
16073 (props0 (org-entry-properties nil 'standard))
16074 (props (if cat props0
16075 (delete `("CATEGORY" . ,(org-get-category)) props0)))
16076 (prop (if (< 1 (length props))
16077 (org-icompleting-read "Property: " props nil t)
16078 (caar props))))
16079 (list prop)))
16080 (if (not property)
16081 (message "No property to delete in this entry")
16082 (org-entry-delete nil property)
16083 (message "Property \"%s\" deleted" property)))
16085 (defun org-delete-property-globally (property)
16086 "Remove PROPERTY globally, from all entries."
16087 (interactive
16088 (let* ((completion-ignore-case t)
16089 (prop (org-icompleting-read
16090 "Globally remove property: "
16091 (mapcar 'list (org-buffer-property-keys)))))
16092 (list prop)))
16093 (save-excursion
16094 (save-restriction
16095 (widen)
16096 (goto-char (point-min))
16097 (let ((cnt 0))
16098 (while (re-search-forward
16099 (org-re-property property)
16100 nil t)
16101 (setq cnt (1+ cnt))
16102 (delete-region (match-beginning 0) (1+ (point-at-eol))))
16103 (message "Property \"%s\" removed from %d entries" property cnt)))))
16105 (defvar org-columns-current-fmt-compiled) ; defined in org-colview.el
16107 (defun org-compute-property-at-point ()
16108 "Compute the property at point.
16109 This looks for an enclosing column format, extracts the operator and
16110 then applies it to the property in the column format's scope."
16111 (interactive)
16112 (unless (org-at-property-p)
16113 (user-error "Not at a property"))
16114 (let ((prop (org-match-string-no-properties 2)))
16115 (org-columns-get-format-and-top-level)
16116 (unless (nth 3 (assoc prop org-columns-current-fmt-compiled))
16117 (user-error "No operator defined for property %s" prop))
16118 (org-columns-compute prop)))
16120 (defvar org-property-allowed-value-functions nil
16121 "Hook for functions supplying allowed values for a specific property.
16122 The functions must take a single argument, the name of the property, and
16123 return a flat list of allowed values. If \":ETC\" is one of
16124 the values, this means that these values are intended as defaults for
16125 completion, but that other values should be allowed too.
16126 The functions must return nil if they are not responsible for this
16127 property.")
16129 (defun org-property-get-allowed-values (pom property &optional table)
16130 "Get allowed values for the property PROPERTY.
16131 When TABLE is non-nil, return an alist that can directly be used for
16132 completion."
16133 (let (vals)
16134 (cond
16135 ((equal property "TODO")
16136 (setq vals (org-with-point-at pom
16137 (append org-todo-keywords-1 '("")))))
16138 ((equal property "PRIORITY")
16139 (let ((n org-lowest-priority))
16140 (while (>= n org-highest-priority)
16141 (push (char-to-string n) vals)
16142 (setq n (1- n)))))
16143 ((member property org-special-properties))
16144 ((setq vals (run-hook-with-args-until-success
16145 'org-property-allowed-value-functions property)))
16147 (setq vals (org-entry-get pom (concat property "_ALL") 'inherit))
16148 (when (and vals (string-match "\\S-" vals))
16149 (setq vals (car (read-from-string (concat "(" vals ")"))))
16150 (setq vals (mapcar (lambda (x)
16151 (cond ((stringp x) x)
16152 ((numberp x) (number-to-string x))
16153 ((symbolp x) (symbol-name x))
16154 (t "???")))
16155 vals)))))
16156 (when (member ":ETC" vals)
16157 (setq vals (remove ":ETC" vals))
16158 (org-add-props (car vals) '(org-unrestricted t)))
16159 (if table (mapcar 'list vals) vals)))
16161 (defun org-property-previous-allowed-value (&optional previous)
16162 "Switch to the next allowed value for this property."
16163 (interactive)
16164 (org-property-next-allowed-value t))
16166 (defun org-property-next-allowed-value (&optional previous)
16167 "Switch to the next allowed value for this property."
16168 (interactive)
16169 (unless (org-at-property-p)
16170 (user-error "Not at a property"))
16171 (let* ((prop (car (save-match-data (org-split-string (match-string 1) ":"))))
16172 (key (match-string 2))
16173 (value (match-string 3))
16174 (allowed (or (org-property-get-allowed-values (point) key)
16175 (and (member value '("[ ]" "[-]" "[X]"))
16176 '("[ ]" "[X]"))))
16177 (heading (save-match-data (nth 4 (org-heading-components))))
16178 nval)
16179 (unless allowed
16180 (user-error "Allowed values for this property have not been defined"))
16181 (if previous (setq allowed (reverse allowed)))
16182 (if (member value allowed)
16183 (setq nval (car (cdr (member value allowed)))))
16184 (setq nval (or nval (car allowed)))
16185 (if (equal nval value)
16186 (user-error "Only one allowed value for this property"))
16187 (org-at-property-p)
16188 (replace-match (concat " :" key ": " nval) t t)
16189 (org-indent-line)
16190 (beginning-of-line 1)
16191 (skip-chars-forward " \t")
16192 (when (equal prop org-effort-property)
16193 (org-refresh-property
16194 '((effort . identity)
16195 (effort-minutes . org-duration-string-to-minutes))
16196 nval)
16197 (when (string= org-clock-current-task heading)
16198 (setq org-clock-effort nval)
16199 (org-clock-update-mode-line)))
16200 (run-hook-with-args 'org-property-changed-functions key nval)))
16202 (defun org-find-olp (path &optional this-buffer)
16203 "Return a marker pointing to the entry at outline path OLP.
16204 If anything goes wrong, throw an error.
16205 You can wrap this call to catch the error like this:
16207 (condition-case msg
16208 (org-mobile-locate-entry (match-string 4))
16209 (error (nth 1 msg)))
16211 The return value will then be either a string with the error message,
16212 or a marker if everything is OK.
16214 If THIS-BUFFER is set, the outline path does not contain a file,
16215 only headings."
16216 (let* ((file (if this-buffer buffer-file-name (pop path)))
16217 (buffer (if this-buffer (current-buffer) (find-file-noselect file)))
16218 (level 1)
16219 (lmin 1)
16220 (lmax 1)
16221 limit re end found pos heading cnt flevel)
16222 (unless buffer (error "File not found :%s" file))
16223 (with-current-buffer buffer
16224 (save-excursion
16225 (save-restriction
16226 (widen)
16227 (setq limit (point-max))
16228 (goto-char (point-min))
16229 (while (setq heading (pop path))
16230 (setq re (format org-complex-heading-regexp-format
16231 (regexp-quote heading)))
16232 (setq cnt 0 pos (point))
16233 (while (re-search-forward re end t)
16234 (setq level (- (match-end 1) (match-beginning 1)))
16235 (if (and (>= level lmin) (<= level lmax))
16236 (setq found (match-beginning 0) flevel level cnt (1+ cnt))))
16237 (when (= cnt 0) (error "Heading not found on level %d: %s"
16238 lmax heading))
16239 (when (> cnt 1) (error "Heading not unique on level %d: %s"
16240 lmax heading))
16241 (goto-char found)
16242 (setq lmin (1+ flevel) lmax (+ lmin (if org-odd-levels-only 1 0)))
16243 (setq end (save-excursion (org-end-of-subtree t t))))
16244 (when (org-at-heading-p)
16245 (point-marker)))))))
16247 (defun org-find-exact-headline-in-buffer (heading &optional buffer pos-only)
16248 "Find node HEADING in BUFFER.
16249 Return a marker to the heading if it was found, or nil if not.
16250 If POS-ONLY is set, return just the position instead of a marker.
16252 The heading text must match exact, but it may have a TODO keyword,
16253 a priority cookie and tags in the standard locations."
16254 (with-current-buffer (or buffer (current-buffer))
16255 (save-excursion
16256 (save-restriction
16257 (widen)
16258 (goto-char (point-min))
16259 (let (case-fold-search)
16260 (if (re-search-forward
16261 (format org-complex-heading-regexp-format
16262 (regexp-quote heading)) nil t)
16263 (if pos-only
16264 (match-beginning 0)
16265 (move-marker (make-marker) (match-beginning 0)))))))))
16267 (defun org-find-exact-heading-in-directory (heading &optional dir)
16268 "Find Org node headline HEADING in all .org files in directory DIR.
16269 When the target headline is found, return a marker to this location."
16270 (let ((files (directory-files (or dir default-directory)
16271 t "\\`[^.#].*\\.org\\'"))
16272 file visiting m buffer)
16273 (catch 'found
16274 (while (setq file (pop files))
16275 (message "trying %s" file)
16276 (setq visiting (org-find-base-buffer-visiting file))
16277 (setq buffer (or visiting (find-file-noselect file)))
16278 (setq m (org-find-exact-headline-in-buffer
16279 heading buffer))
16280 (when (and (not m) (not visiting)) (kill-buffer buffer))
16281 (and m (throw 'found m))))))
16283 (defun org-find-entry-with-id (ident)
16284 "Locate the entry that contains the ID property with exact value IDENT.
16285 IDENT can be a string, a symbol or a number, this function will search for
16286 the string representation of it.
16287 Return the position where this entry starts, or nil if there is no such entry."
16288 (interactive "sID: ")
16289 (let ((id (cond
16290 ((stringp ident) ident)
16291 ((symbol-name ident) (symbol-name ident))
16292 ((numberp ident) (number-to-string ident))
16293 (t (error "IDENT %s must be a string, symbol or number" ident))))
16294 (case-fold-search nil))
16295 (save-excursion
16296 (save-restriction
16297 (widen)
16298 (goto-char (point-min))
16299 (when (re-search-forward
16300 (concat "^[ \t]*:ID:[ \t]+" (regexp-quote id) "[ \t]*$")
16301 nil t)
16302 (org-back-to-heading t)
16303 (point))))))
16305 ;;;; Timestamps
16307 (defvar org-last-changed-timestamp nil)
16308 (defvar org-last-inserted-timestamp nil
16309 "The last time stamp inserted with `org-insert-time-stamp'.")
16310 (defvar org-ts-what) ; dynamically scoped parameter
16312 (defun org-time-stamp (arg &optional inactive)
16313 "Prompt for a date/time and insert a time stamp.
16314 If the user specifies a time like HH:MM or if this command is
16315 called with at least one prefix argument, the time stamp contains
16316 the date and the time. Otherwise, only the date is be included.
16318 All parts of a date not specified by the user is filled in from
16319 the current date/time. So if you just press return without
16320 typing anything, the time stamp will represent the current
16321 date/time.
16323 If there is already a timestamp at the cursor, it will be
16324 modified.
16326 With two universal prefix arguments, insert an active timestamp
16327 with the current time without prompting the user.
16329 When called from lisp, the timestamp is inactive if INACTIVE is
16330 non-nil."
16331 (interactive "P")
16332 (let* ((ts nil)
16333 (default-time
16334 ;; Default time is either today, or, when entering a range,
16335 ;; the range start.
16336 (if (or (and (org-at-timestamp-p t) (setq ts (match-string 0)))
16337 (save-excursion
16338 (re-search-backward
16339 (concat org-ts-regexp "--?-?\\=") ; 1-3 minuses
16340 (- (point) 20) t)))
16341 (apply 'encode-time (org-parse-time-string (match-string 1)))
16342 (current-time)))
16343 (default-input (and ts (org-get-compact-tod ts)))
16344 (repeater (save-excursion
16345 (save-match-data
16346 (beginning-of-line)
16347 (when (re-search-forward
16348 "\\([.+-]+[0-9]+[hdwmy] ?\\)+" ;;\\(?:[/ ][-+]?[0-9]+[hdwmy]\\)?\\) ?"
16349 (save-excursion (progn (end-of-line) (point))) t)
16350 (match-string 0)))))
16351 org-time-was-given org-end-time-was-given time)
16352 (cond
16353 ((and (org-at-timestamp-p t)
16354 (memq last-command '(org-time-stamp org-time-stamp-inactive))
16355 (memq this-command '(org-time-stamp org-time-stamp-inactive)))
16356 (insert "--")
16357 (setq time (let ((this-command this-command))
16358 (org-read-date arg 'totime nil nil
16359 default-time default-input inactive)))
16360 (org-insert-time-stamp time (or org-time-was-given arg) inactive))
16361 ((org-at-timestamp-p t)
16362 (setq time (let ((this-command this-command))
16363 (org-read-date arg 'totime nil nil default-time default-input inactive)))
16364 (when (org-at-timestamp-p t) ; just to get the match data
16365 ; (setq inactive (eq (char-after (match-beginning 0)) ?\[))
16366 (replace-match "")
16367 (setq org-last-changed-timestamp
16368 (org-insert-time-stamp
16369 time (or org-time-was-given arg)
16370 inactive nil nil (list org-end-time-was-given)))
16371 (when repeater (goto-char (1- (point))) (insert " " repeater)
16372 (setq org-last-changed-timestamp
16373 (concat (substring org-last-inserted-timestamp 0 -1)
16374 " " repeater ">"))))
16375 (message "Timestamp updated"))
16376 ((equal arg '(16))
16377 (org-insert-time-stamp (current-time) t inactive))
16379 (setq time (let ((this-command this-command))
16380 (org-read-date arg 'totime nil nil default-time default-input inactive)))
16381 (org-insert-time-stamp time (or org-time-was-given arg) inactive
16382 nil nil (list org-end-time-was-given))))))
16384 ;; FIXME: can we use this for something else, like computing time differences?
16385 (defun org-get-compact-tod (s)
16386 (when (string-match "\\(\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)\\(-\\(\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)\\)?" s)
16387 (let* ((t1 (match-string 1 s))
16388 (h1 (string-to-number (match-string 2 s)))
16389 (m1 (string-to-number (match-string 3 s)))
16390 (t2 (and (match-end 4) (match-string 5 s)))
16391 (h2 (and t2 (string-to-number (match-string 6 s))))
16392 (m2 (and t2 (string-to-number (match-string 7 s))))
16393 dh dm)
16394 (if (not t2)
16396 (setq dh (- h2 h1) dm (- m2 m1))
16397 (if (< dm 0) (setq dm (+ dm 60) dh (1- dh)))
16398 (concat t1 "+" (number-to-string dh)
16399 (and (/= 0 dm) (format ":%02d" dm)))))))
16401 (defun org-time-stamp-inactive (&optional arg)
16402 "Insert an inactive time stamp.
16403 An inactive time stamp is enclosed in square brackets instead of angle
16404 brackets. It is inactive in the sense that it does not trigger agenda entries,
16405 does not link to the calendar and cannot be changed with the S-cursor keys.
16406 So these are more for recording a certain time/date."
16407 (interactive "P")
16408 (org-time-stamp arg 'inactive))
16410 (defvar org-date-ovl (make-overlay 1 1))
16411 (overlay-put org-date-ovl 'face 'org-date-selected)
16412 (org-detach-overlay org-date-ovl)
16414 (defvar org-ans1) ; dynamically scoped parameter
16415 (defvar org-ans2) ; dynamically scoped parameter
16417 (defvar org-plain-time-of-day-regexp) ; defined below
16419 (defvar org-overriding-default-time nil) ; dynamically scoped
16420 (defvar org-read-date-overlay nil)
16421 (defvar org-dcst nil) ; dynamically scoped
16422 (defvar org-read-date-history nil)
16423 (defvar org-read-date-final-answer nil)
16424 (defvar org-read-date-analyze-futurep nil)
16425 (defvar org-read-date-analyze-forced-year nil)
16426 (defvar org-read-date-inactive)
16428 (defvar org-read-date-minibuffer-local-map
16429 (let* ((org-replace-disputed-keys nil)
16430 (map (make-sparse-keymap)))
16431 (set-keymap-parent map minibuffer-local-map)
16432 (org-defkey map (kbd ".")
16433 (lambda () (interactive)
16434 ;; Are we at the beginning of the prompt?
16435 (if (looking-back "^[^:]+: ")
16436 (org-eval-in-calendar '(calendar-goto-today))
16437 (insert "."))))
16438 (org-defkey map (kbd "C-.")
16439 (lambda () (interactive)
16440 (org-eval-in-calendar '(calendar-goto-today))))
16441 (org-defkey map [(meta shift left)]
16442 (lambda () (interactive)
16443 (org-eval-in-calendar '(calendar-backward-month 1))))
16444 (org-defkey map [(meta shift right)]
16445 (lambda () (interactive)
16446 (org-eval-in-calendar '(calendar-forward-month 1))))
16447 (org-defkey map [(meta shift up)]
16448 (lambda () (interactive)
16449 (org-eval-in-calendar '(calendar-backward-year 1))))
16450 (org-defkey map [(meta shift down)]
16451 (lambda () (interactive)
16452 (org-eval-in-calendar '(calendar-forward-year 1))))
16453 (org-defkey map [?\e (shift left)]
16454 (lambda () (interactive)
16455 (org-eval-in-calendar '(calendar-backward-month 1))))
16456 (org-defkey map [?\e (shift right)]
16457 (lambda () (interactive)
16458 (org-eval-in-calendar '(calendar-forward-month 1))))
16459 (org-defkey map [?\e (shift up)]
16460 (lambda () (interactive)
16461 (org-eval-in-calendar '(calendar-backward-year 1))))
16462 (org-defkey map [?\e (shift down)]
16463 (lambda () (interactive)
16464 (org-eval-in-calendar '(calendar-forward-year 1))))
16465 (org-defkey map [(shift up)]
16466 (lambda () (interactive)
16467 (org-eval-in-calendar '(calendar-backward-week 1))))
16468 (org-defkey map [(shift down)]
16469 (lambda () (interactive)
16470 (org-eval-in-calendar '(calendar-forward-week 1))))
16471 (org-defkey map [(shift left)]
16472 (lambda () (interactive)
16473 (org-eval-in-calendar '(calendar-backward-day 1))))
16474 (org-defkey map [(shift right)]
16475 (lambda () (interactive)
16476 (org-eval-in-calendar '(calendar-forward-day 1))))
16477 (org-defkey map "!"
16478 (lambda () (interactive)
16479 (org-eval-in-calendar '(diary-view-entries))
16480 (message "")))
16481 (org-defkey map ">"
16482 (lambda () (interactive)
16483 (org-eval-in-calendar '(scroll-calendar-left 1))))
16484 (org-defkey map "<"
16485 (lambda () (interactive)
16486 (org-eval-in-calendar '(scroll-calendar-right 1))))
16487 (org-defkey map "\C-v"
16488 (lambda () (interactive)
16489 (org-eval-in-calendar
16490 '(calendar-scroll-left-three-months 1))))
16491 (org-defkey map "\M-v"
16492 (lambda () (interactive)
16493 (org-eval-in-calendar
16494 '(calendar-scroll-right-three-months 1))))
16495 map)
16496 "Keymap for minibuffer commands when using `org-read-date'.")
16498 (defvar org-def)
16499 (defvar org-defdecode)
16500 (defvar org-with-time)
16502 (defun org-read-date (&optional org-with-time to-time from-string prompt
16503 default-time default-input inactive)
16504 "Read a date, possibly a time, and make things smooth for the user.
16505 The prompt will suggest to enter an ISO date, but you can also enter anything
16506 which will at least partially be understood by `parse-time-string'.
16507 Unrecognized parts of the date will default to the current day, month, year,
16508 hour and minute. If this command is called to replace a timestamp at point,
16509 or to enter the second timestamp of a range, the default time is taken
16510 from the existing stamp. Furthermore, the command prefers the future,
16511 so if you are giving a date where the year is not given, and the day-month
16512 combination is already past in the current year, it will assume you
16513 mean next year. For details, see the manual. A few examples:
16515 3-2-5 --> 2003-02-05
16516 feb 15 --> currentyear-02-15
16517 2/15 --> currentyear-02-15
16518 sep 12 9 --> 2009-09-12
16519 12:45 --> today 12:45
16520 22 sept 0:34 --> currentyear-09-22 0:34
16521 12 --> currentyear-currentmonth-12
16522 Fri --> nearest Friday after today
16523 -Tue --> last Tuesday
16524 etc.
16526 Furthermore you can specify a relative date by giving, as the *first* thing
16527 in the input: a plus/minus sign, a number and a letter [hdwmy] to indicate
16528 change in days weeks, months, years.
16529 With a single plus or minus, the date is relative to today. With a double
16530 plus or minus, it is relative to the date in DEFAULT-TIME. E.g.
16531 +4d --> four days from today
16532 +4 --> same as above
16533 +2w --> two weeks from today
16534 ++5 --> five days from default date
16536 The function understands only English month and weekday abbreviations.
16538 While prompting, a calendar is popped up - you can also select the
16539 date with the mouse (button 1). The calendar shows a period of three
16540 months. To scroll it to other months, use the keys `>' and `<'.
16541 If you don't like the calendar, turn it off with
16542 \(setq org-read-date-popup-calendar nil)
16544 With optional argument TO-TIME, the date will immediately be converted
16545 to an internal time.
16546 With an optional argument ORG-WITH-TIME, the prompt will suggest to
16547 also insert a time. Note that when ORG-WITH-TIME is not set, you can
16548 still enter a time, and this function will inform the calling routine
16549 about this change. The calling routine may then choose to change the
16550 format used to insert the time stamp into the buffer to include the time.
16551 With optional argument FROM-STRING, read from this string instead from
16552 the user. PROMPT can overwrite the default prompt. DEFAULT-TIME is
16553 the time/date that is used for everything that is not specified by the
16554 user."
16555 (require 'parse-time)
16556 (let* ((org-time-stamp-rounding-minutes
16557 (if (equal org-with-time '(16)) '(0 0) org-time-stamp-rounding-minutes))
16558 (org-dcst org-display-custom-times)
16559 (ct (org-current-time))
16560 (org-def (or org-overriding-default-time default-time ct))
16561 (org-defdecode (decode-time org-def))
16562 (dummy (progn
16563 (when (< (nth 2 org-defdecode) org-extend-today-until)
16564 (setcar (nthcdr 2 org-defdecode) -1)
16565 (setcar (nthcdr 1 org-defdecode) 59)
16566 (setq org-def (apply 'encode-time org-defdecode)
16567 org-defdecode (decode-time org-def)))))
16568 (mouse-autoselect-window nil) ; Don't let the mouse jump
16569 (calendar-frame-setup nil)
16570 (calendar-setup nil)
16571 (calendar-move-hook nil)
16572 (calendar-view-diary-initially-flag nil)
16573 (calendar-view-holidays-initially-flag nil)
16574 (timestr (format-time-string
16575 (if org-with-time "%Y-%m-%d %H:%M" "%Y-%m-%d") org-def))
16576 (prompt (concat (if prompt (concat prompt " ") "")
16577 (format "Date+time [%s]: " timestr)))
16578 ans (org-ans0 "") org-ans1 org-ans2 final)
16580 (cond
16581 (from-string (setq ans from-string))
16582 (org-read-date-popup-calendar
16583 (save-excursion
16584 (save-window-excursion
16585 (calendar)
16586 (org-eval-in-calendar '(setq cursor-type nil) t)
16587 (unwind-protect
16588 (progn
16589 (calendar-forward-day (- (time-to-days org-def)
16590 (calendar-absolute-from-gregorian
16591 (calendar-current-date))))
16592 (org-eval-in-calendar nil t)
16593 (let* ((old-map (current-local-map))
16594 (map (copy-keymap calendar-mode-map))
16595 (minibuffer-local-map
16596 (copy-keymap org-read-date-minibuffer-local-map)))
16597 (org-defkey map (kbd "RET") 'org-calendar-select)
16598 (org-defkey map [mouse-1] 'org-calendar-select-mouse)
16599 (org-defkey map [mouse-2] 'org-calendar-select-mouse)
16600 (unwind-protect
16601 (progn
16602 (use-local-map map)
16603 (setq org-read-date-inactive inactive)
16604 (add-hook 'post-command-hook 'org-read-date-display)
16605 (setq org-ans0 (read-string prompt default-input
16606 'org-read-date-history nil))
16607 ;; org-ans0: from prompt
16608 ;; org-ans1: from mouse click
16609 ;; org-ans2: from calendar motion
16610 (setq ans (concat org-ans0 " " (or org-ans1 org-ans2))))
16611 (remove-hook 'post-command-hook 'org-read-date-display)
16612 (use-local-map old-map)
16613 (when org-read-date-overlay
16614 (delete-overlay org-read-date-overlay)
16615 (setq org-read-date-overlay nil)))))
16616 (bury-buffer "*Calendar*")))))
16618 (t ; Naked prompt only
16619 (unwind-protect
16620 (setq ans (read-string prompt default-input
16621 'org-read-date-history timestr))
16622 (when org-read-date-overlay
16623 (delete-overlay org-read-date-overlay)
16624 (setq org-read-date-overlay nil)))))
16626 (setq final (org-read-date-analyze ans org-def org-defdecode))
16628 (when org-read-date-analyze-forced-year
16629 (message "Year was forced into %s"
16630 (if org-read-date-force-compatible-dates
16631 "compatible range (1970-2037)"
16632 "range representable on this machine"))
16633 (ding))
16635 ;; One round trip to get rid of 34th of August and stuff like that....
16636 (setq final (decode-time (apply 'encode-time final)))
16638 (setq org-read-date-final-answer ans)
16640 (if to-time
16641 (apply 'encode-time final)
16642 (if (and (boundp 'org-time-was-given) org-time-was-given)
16643 (format "%04d-%02d-%02d %02d:%02d"
16644 (nth 5 final) (nth 4 final) (nth 3 final)
16645 (nth 2 final) (nth 1 final))
16646 (format "%04d-%02d-%02d" (nth 5 final) (nth 4 final) (nth 3 final))))))
16648 (defun org-read-date-display ()
16649 "Display the current date prompt interpretation in the minibuffer."
16650 (when org-read-date-display-live
16651 (when org-read-date-overlay
16652 (delete-overlay org-read-date-overlay))
16653 (when (minibufferp (current-buffer))
16654 (save-excursion
16655 (end-of-line 1)
16656 (while (not (equal (buffer-substring
16657 (max (point-min) (- (point) 4)) (point))
16658 " "))
16659 (insert " ")))
16660 (let* ((ans (concat (buffer-substring (point-at-bol) (point-max))
16661 " " (or org-ans1 org-ans2)))
16662 (org-end-time-was-given nil)
16663 (f (org-read-date-analyze ans org-def org-defdecode))
16664 (fmts (if org-dcst
16665 org-time-stamp-custom-formats
16666 org-time-stamp-formats))
16667 (fmt (if (or org-with-time
16668 (and (boundp 'org-time-was-given) org-time-was-given))
16669 (cdr fmts)
16670 (car fmts)))
16671 (txt (format-time-string fmt (apply 'encode-time f)))
16672 (txt (if org-read-date-inactive (concat "[" (substring txt 1 -1) "]") txt))
16673 (txt (concat "=> " txt)))
16674 (when (and org-end-time-was-given
16675 (string-match org-plain-time-of-day-regexp txt))
16676 (setq txt (concat (substring txt 0 (match-end 0)) "-"
16677 org-end-time-was-given
16678 (substring txt (match-end 0)))))
16679 (when org-read-date-analyze-futurep
16680 (setq txt (concat txt " (=>F)")))
16681 (setq org-read-date-overlay
16682 (make-overlay (1- (point-at-eol)) (point-at-eol)))
16683 (org-overlay-display org-read-date-overlay txt 'secondary-selection)))))
16685 (defun org-read-date-analyze (ans org-def org-defdecode)
16686 "Analyze the combined answer of the date prompt."
16687 ;; FIXME: cleanup and comment
16688 (let ((nowdecode (decode-time (current-time)))
16689 delta deltan deltaw deltadef year month day
16690 hour minute second wday pm h2 m2 tl wday1
16691 iso-year iso-weekday iso-week iso-year iso-date futurep kill-year)
16692 (setq org-read-date-analyze-futurep nil
16693 org-read-date-analyze-forced-year nil)
16694 (when (string-match "\\`[ \t]*\\.[ \t]*\\'" ans)
16695 (setq ans "+0"))
16697 (when (setq delta (org-read-date-get-relative ans (current-time) org-def))
16698 (setq ans (replace-match "" t t ans)
16699 deltan (car delta)
16700 deltaw (nth 1 delta)
16701 deltadef (nth 2 delta)))
16703 ;; Check if there is an iso week date in there. If yes, store the
16704 ;; info and postpone interpreting it until the rest of the parsing
16705 ;; is done.
16706 (when (string-match "\\<\\(?:\\([0-9]+\\)-\\)?[wW]\\([0-9]\\{1,2\\}\\)\\(?:-\\([0-6]\\)\\)?\\([ \t]\\|$\\)" ans)
16707 (setq iso-year (if (match-end 1)
16708 (org-small-year-to-year
16709 (string-to-number (match-string 1 ans))))
16710 iso-weekday (if (match-end 3)
16711 (string-to-number (match-string 3 ans)))
16712 iso-week (string-to-number (match-string 2 ans)))
16713 (setq ans (replace-match "" t t ans)))
16715 ;; Help matching ISO dates with single digit month or day, like 2006-8-11.
16716 (when (string-match
16717 "^ *\\(\\([0-9]+\\)-\\)?\\([0-1]?[0-9]\\)-\\([0-3]?[0-9]\\)\\([^-0-9]\\|$\\)" ans)
16718 (setq year (if (match-end 2)
16719 (string-to-number (match-string 2 ans))
16720 (progn (setq kill-year t)
16721 (string-to-number (format-time-string "%Y"))))
16722 month (string-to-number (match-string 3 ans))
16723 day (string-to-number (match-string 4 ans)))
16724 (if (< year 100) (setq year (+ 2000 year)))
16725 (setq ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
16726 t nil ans)))
16728 ;; Help matching dotted european dates
16729 (when (string-match
16730 "^ *\\(3[01]\\|0?[1-9]\\|[12][0-9]\\)\\. ?\\(0?[1-9]\\|1[012]\\)\\.\\( ?[1-9][0-9]\\{3\\}\\)?" ans)
16731 (setq year (if (match-end 3) (string-to-number (match-string 3 ans))
16732 (setq kill-year t)
16733 (string-to-number (format-time-string "%Y")))
16734 day (string-to-number (match-string 1 ans))
16735 month (string-to-number (match-string 2 ans))
16736 ans (replace-match (format "%04d-%02d-%02d" year month day)
16737 t nil ans)))
16739 ;; Help matching american dates, like 5/30 or 5/30/7
16740 (when (string-match
16741 "^ *\\(0?[1-9]\\|1[012]\\)/\\(0?[1-9]\\|[12][0-9]\\|3[01]\\)\\(/\\([0-9]+\\)\\)?\\([^/0-9]\\|$\\)" ans)
16742 (setq year (if (match-end 4)
16743 (string-to-number (match-string 4 ans))
16744 (progn (setq kill-year t)
16745 (string-to-number (format-time-string "%Y"))))
16746 month (string-to-number (match-string 1 ans))
16747 day (string-to-number (match-string 2 ans)))
16748 (if (< year 100) (setq year (+ 2000 year)))
16749 (setq ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
16750 t nil ans)))
16751 ;; Help matching am/pm times, because `parse-time-string' does not do that.
16752 ;; If there is a time with am/pm, and *no* time without it, we convert
16753 ;; so that matching will be successful.
16754 (loop for i from 1 to 2 do ; twice, for end time as well
16755 (when (and (not (string-match "\\(\\`\\|[^+]\\)[012]?[0-9]:[0-9][0-9]\\([ \t\n]\\|$\\)" ans))
16756 (string-match "\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\(am\\|AM\\|pm\\|PM\\)\\>" ans))
16757 (setq hour (string-to-number (match-string 1 ans))
16758 minute (if (match-end 3)
16759 (string-to-number (match-string 3 ans))
16761 pm (equal ?p
16762 (string-to-char (downcase (match-string 4 ans)))))
16763 (if (and (= hour 12) (not pm))
16764 (setq hour 0)
16765 (if (and pm (< hour 12)) (setq hour (+ 12 hour))))
16766 (setq ans (replace-match (format "%02d:%02d" hour minute)
16767 t t ans))))
16769 ;; Check if a time range is given as a duration
16770 (when (string-match "\\([012]?[0-9]\\):\\([0-6][0-9]\\)\\+\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?" ans)
16771 (setq hour (string-to-number (match-string 1 ans))
16772 h2 (+ hour (string-to-number (match-string 3 ans)))
16773 minute (string-to-number (match-string 2 ans))
16774 m2 (+ minute (if (match-end 5) (string-to-number
16775 (match-string 5 ans))0)))
16776 (if (>= m2 60) (setq h2 (1+ h2) m2 (- m2 60)))
16777 (setq ans (replace-match (format "%02d:%02d-%02d:%02d" hour minute h2 m2)
16778 t t ans)))
16780 ;; Check if there is a time range
16781 (when (boundp 'org-end-time-was-given)
16782 (setq org-time-was-given nil)
16783 (when (and (string-match org-plain-time-of-day-regexp ans)
16784 (match-end 8))
16785 (setq org-end-time-was-given (match-string 8 ans))
16786 (setq ans (concat (substring ans 0 (match-beginning 7))
16787 (substring ans (match-end 7))))))
16789 (setq tl (parse-time-string ans)
16790 day (or (nth 3 tl) (nth 3 org-defdecode))
16791 month (or (nth 4 tl)
16792 (if (and org-read-date-prefer-future
16793 (nth 3 tl) (< (nth 3 tl) (nth 3 nowdecode)))
16794 (prog1 (1+ (nth 4 nowdecode)) (setq futurep t))
16795 (nth 4 org-defdecode)))
16796 year (or (and (not kill-year) (nth 5 tl))
16797 (if (and org-read-date-prefer-future
16798 (nth 4 tl) (< (nth 4 tl) (nth 4 nowdecode)))
16799 (prog1 (1+ (nth 5 nowdecode)) (setq futurep t))
16800 (nth 5 org-defdecode)))
16801 hour (or (nth 2 tl) (nth 2 org-defdecode))
16802 minute (or (nth 1 tl) (nth 1 org-defdecode))
16803 second (or (nth 0 tl) 0)
16804 wday (nth 6 tl))
16806 (when (and (eq org-read-date-prefer-future 'time)
16807 (not (nth 3 tl)) (not (nth 4 tl)) (not (nth 5 tl))
16808 (equal day (nth 3 nowdecode))
16809 (equal month (nth 4 nowdecode))
16810 (equal year (nth 5 nowdecode))
16811 (nth 2 tl)
16812 (or (< (nth 2 tl) (nth 2 nowdecode))
16813 (and (= (nth 2 tl) (nth 2 nowdecode))
16814 (nth 1 tl)
16815 (< (nth 1 tl) (nth 1 nowdecode)))))
16816 (setq day (1+ day)
16817 futurep t))
16819 ;; Special date definitions below
16820 (cond
16821 (iso-week
16822 ;; There was an iso week
16823 (require 'cal-iso)
16824 (setq futurep nil)
16825 (setq year (or iso-year year)
16826 day (or iso-weekday wday 1)
16827 wday nil ; to make sure that the trigger below does not match
16828 iso-date (calendar-gregorian-from-absolute
16829 (calendar-absolute-from-iso
16830 (list iso-week day year))))
16831 ; FIXME: Should we also push ISO weeks into the future?
16832 ; (when (and org-read-date-prefer-future
16833 ; (not iso-year)
16834 ; (< (calendar-absolute-from-gregorian iso-date)
16835 ; (time-to-days (current-time))))
16836 ; (setq year (1+ year)
16837 ; iso-date (calendar-gregorian-from-absolute
16838 ; (calendar-absolute-from-iso
16839 ; (list iso-week day year)))))
16840 (setq month (car iso-date)
16841 year (nth 2 iso-date)
16842 day (nth 1 iso-date)))
16843 (deltan
16844 (setq futurep nil)
16845 (unless deltadef
16846 (let ((now (decode-time (current-time))))
16847 (setq day (nth 3 now) month (nth 4 now) year (nth 5 now))))
16848 (cond ((member deltaw '("d" "")) (setq day (+ day deltan)))
16849 ((equal deltaw "w") (setq day (+ day (* 7 deltan))))
16850 ((equal deltaw "m") (setq month (+ month deltan)))
16851 ((equal deltaw "y") (setq year (+ year deltan)))))
16852 ((and wday (not (nth 3 tl)))
16853 ;; Weekday was given, but no day, so pick that day in the week
16854 ;; on or after the derived date.
16855 (setq wday1 (nth 6 (decode-time (encode-time 0 0 0 day month year))))
16856 (unless (equal wday wday1)
16857 (setq day (+ day (% (- wday wday1 -7) 7))))))
16858 (if (and (boundp 'org-time-was-given)
16859 (nth 2 tl))
16860 (setq org-time-was-given t))
16861 (if (< year 100) (setq year (+ 2000 year)))
16862 ;; Check of the date is representable
16863 (if org-read-date-force-compatible-dates
16864 (progn
16865 (if (< year 1970)
16866 (setq year 1970 org-read-date-analyze-forced-year t))
16867 (if (> year 2037)
16868 (setq year 2037 org-read-date-analyze-forced-year t)))
16869 (condition-case nil
16870 (ignore (encode-time second minute hour day month year))
16871 (error
16872 (setq year (nth 5 org-defdecode))
16873 (setq org-read-date-analyze-forced-year t))))
16874 (setq org-read-date-analyze-futurep futurep)
16875 (list second minute hour day month year)))
16877 (defvar parse-time-weekdays)
16878 (defun org-read-date-get-relative (s today default)
16879 "Check string S for special relative date string.
16880 TODAY and DEFAULT are internal times, for today and for a default.
16881 Return shift list (N what def-flag)
16882 WHAT is \"d\", \"w\", \"m\", or \"y\" for day, week, month, year.
16883 N is the number of WHATs to shift.
16884 DEF-FLAG is t when a double ++ or -- indicates shift relative to
16885 the DEFAULT date rather than TODAY."
16886 (require 'parse-time)
16887 (when (and
16888 (string-match
16889 (concat
16890 "\\`[ \t]*\\([-+]\\{0,2\\}\\)"
16891 "\\([0-9]+\\)?"
16892 "\\([hdwmy]\\|\\(" (mapconcat 'car parse-time-weekdays "\\|") "\\)\\)?"
16893 "\\([ \t]\\|$\\)") s)
16894 (or (> (match-end 1) (match-beginning 1)) (match-end 4)))
16895 (let* ((dir (if (> (match-end 1) (match-beginning 1))
16896 (string-to-char (substring (match-string 1 s) -1))
16897 ?+))
16898 (rel (and (match-end 1) (= 2 (- (match-end 1) (match-beginning 1)))))
16899 (n (if (match-end 2) (string-to-number (match-string 2 s)) 1))
16900 (what (if (match-end 3) (match-string 3 s) "d"))
16901 (wday1 (cdr (assoc (downcase what) parse-time-weekdays)))
16902 (date (if rel default today))
16903 (wday (nth 6 (decode-time date)))
16904 delta)
16905 (if wday1
16906 (progn
16907 (setq delta (mod (+ 7 (- wday1 wday)) 7))
16908 (if (= delta 0) (setq delta 7))
16909 (if (= dir ?-)
16910 (progn
16911 (setq delta (- delta 7))
16912 (if (= delta 0) (setq delta -7))))
16913 (if (> n 1) (setq delta (+ delta (* (1- n) (if (= dir ?-) -7 7)))))
16914 (list delta "d" rel))
16915 (list (* n (if (= dir ?-) -1 1)) what rel)))))
16917 (defun org-order-calendar-date-args (arg1 arg2 arg3)
16918 "Turn a user-specified date into the internal representation.
16919 The internal representation needed by the calendar is (month day year).
16920 This is a wrapper to handle the brain-dead convention in calendar that
16921 user function argument order change dependent on argument order."
16922 (if (boundp 'calendar-date-style)
16923 (cond
16924 ((eq calendar-date-style 'american)
16925 (list arg1 arg2 arg3))
16926 ((eq calendar-date-style 'european)
16927 (list arg2 arg1 arg3))
16928 ((eq calendar-date-style 'iso)
16929 (list arg2 arg3 arg1)))
16930 (org-no-warnings ;; european-calendar-style is obsolete as of version 23.1
16931 (if (org-bound-and-true-p european-calendar-style)
16932 (list arg2 arg1 arg3)
16933 (list arg1 arg2 arg3)))))
16935 (defun org-eval-in-calendar (form &optional keepdate)
16936 "Eval FORM in the calendar window and return to current window.
16937 When KEEPDATE is non-nil, update `org-ans2' from the cursor date,
16938 otherwise stick to the current value of `org-ans2'."
16939 (let ((sf (selected-frame))
16940 (sw (selected-window)))
16941 (select-window (get-buffer-window "*Calendar*" t))
16942 (eval form)
16943 (when (and (not keepdate) (calendar-cursor-to-date))
16944 (let* ((date (calendar-cursor-to-date))
16945 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
16946 (setq org-ans2 (format-time-string "%Y-%m-%d" time))))
16947 (move-overlay org-date-ovl (1- (point)) (1+ (point)) (current-buffer))
16948 (select-window sw)
16949 (org-select-frame-set-input-focus sf)))
16951 (defun org-calendar-select ()
16952 "Return to `org-read-date' with the date currently selected.
16953 This is used by `org-read-date' in a temporary keymap for the calendar buffer."
16954 (interactive)
16955 (when (calendar-cursor-to-date)
16956 (let* ((date (calendar-cursor-to-date))
16957 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
16958 (setq org-ans1 (format-time-string "%Y-%m-%d" time)))
16959 (if (active-minibuffer-window) (exit-minibuffer))))
16961 (defun org-insert-time-stamp (time &optional with-hm inactive pre post extra)
16962 "Insert a date stamp for the date given by the internal TIME.
16963 WITH-HM means use the stamp format that includes the time of the day.
16964 INACTIVE means use square brackets instead of angular ones, so that the
16965 stamp will not contribute to the agenda.
16966 PRE and POST are optional strings to be inserted before and after the
16967 stamp.
16968 The command returns the inserted time stamp."
16969 (let ((fmt (funcall (if with-hm 'cdr 'car) org-time-stamp-formats))
16970 stamp)
16971 (if inactive (setq fmt (concat "[" (substring fmt 1 -1) "]")))
16972 (insert-before-markers (or pre ""))
16973 (when (listp extra)
16974 (setq extra (car extra))
16975 (if (and (stringp extra)
16976 (string-match "\\([0-9]+\\):\\([0-9]+\\)" extra))
16977 (setq extra (format "-%02d:%02d"
16978 (string-to-number (match-string 1 extra))
16979 (string-to-number (match-string 2 extra))))
16980 (setq extra nil)))
16981 (when extra
16982 (setq fmt (concat (substring fmt 0 -1) extra (substring fmt -1))))
16983 (insert-before-markers (setq stamp (format-time-string fmt time)))
16984 (insert-before-markers (or post ""))
16985 (setq org-last-inserted-timestamp stamp)))
16987 (defun org-toggle-time-stamp-overlays ()
16988 "Toggle the use of custom time stamp formats."
16989 (interactive)
16990 (setq org-display-custom-times (not org-display-custom-times))
16991 (unless org-display-custom-times
16992 (let ((p (point-min)) (bmp (buffer-modified-p)))
16993 (while (setq p (next-single-property-change p 'display))
16994 (if (and (get-text-property p 'display)
16995 (eq (get-text-property p 'face) 'org-date))
16996 (remove-text-properties
16997 p (setq p (next-single-property-change p 'display))
16998 '(display t))))
16999 (set-buffer-modified-p bmp)))
17000 (if (featurep 'xemacs)
17001 (remove-text-properties (point-min) (point-max) '(end-glyph t)))
17002 (org-restart-font-lock)
17003 (setq org-table-may-need-update t)
17004 (if org-display-custom-times
17005 (message "Time stamps are overlaid with custom format")
17006 (message "Time stamp overlays removed")))
17008 (defun org-display-custom-time (beg end)
17009 "Overlay modified time stamp format over timestamp between BEG and END."
17010 (let* ((ts (buffer-substring beg end))
17011 t1 w1 with-hm tf time str w2 (off 0))
17012 (save-match-data
17013 (setq t1 (org-parse-time-string ts t))
17014 (if (string-match "\\(-[0-9]+:[0-9]+\\)?\\( [.+]?\\+[0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)?\\'" ts)
17015 (setq off (- (match-end 0) (match-beginning 0)))))
17016 (setq end (- end off))
17017 (setq w1 (- end beg)
17018 with-hm (and (nth 1 t1) (nth 2 t1))
17019 tf (funcall (if with-hm 'cdr 'car) org-time-stamp-custom-formats)
17020 time (org-fix-decoded-time t1)
17021 str (org-add-props
17022 (format-time-string
17023 (substring tf 1 -1) (apply 'encode-time time))
17024 nil 'mouse-face 'highlight)
17025 w2 (length str))
17026 (if (not (= w2 w1))
17027 (add-text-properties (1+ beg) (+ 2 beg)
17028 (list 'org-dwidth t 'org-dwidth-n (- w1 w2))))
17029 (if (featurep 'xemacs)
17030 (progn
17031 (put-text-property beg end 'invisible t)
17032 (put-text-property beg end 'end-glyph (make-glyph str)))
17033 (put-text-property beg end 'display str))))
17035 (defun org-translate-time (string)
17036 "Translate all timestamps in STRING to custom format.
17037 But do this only if the variable `org-display-custom-times' is set."
17038 (when org-display-custom-times
17039 (save-match-data
17040 (let* ((start 0)
17041 (re org-ts-regexp-both)
17042 t1 with-hm inactive tf time str beg end)
17043 (while (setq start (string-match re string start))
17044 (setq beg (match-beginning 0)
17045 end (match-end 0)
17046 t1 (save-match-data
17047 (org-parse-time-string (substring string beg end) t))
17048 with-hm (and (nth 1 t1) (nth 2 t1))
17049 inactive (equal (substring string beg (1+ beg)) "[")
17050 tf (funcall (if with-hm 'cdr 'car)
17051 org-time-stamp-custom-formats)
17052 time (org-fix-decoded-time t1)
17053 str (format-time-string
17054 (concat
17055 (if inactive "[" "<") (substring tf 1 -1)
17056 (if inactive "]" ">"))
17057 (apply 'encode-time time))
17058 string (replace-match str t t string)
17059 start (+ start (length str)))))))
17060 string)
17062 (defun org-fix-decoded-time (time)
17063 "Set 0 instead of nil for the first 6 elements of time.
17064 Don't touch the rest."
17065 (let ((n 0))
17066 (mapcar (lambda (x) (if (< (setq n (1+ n)) 7) (or x 0) x)) time)))
17068 (define-obsolete-function-alias 'org-days-to-time 'org-time-stamp-to-now "24.4")
17070 (defun org-time-stamp-to-now (timestamp-string &optional seconds)
17071 "Difference between TIMESTAMP-STRING and now in days.
17072 If SECONDS is non-nil, return the difference in seconds."
17073 (let ((fdiff (if seconds 'org-float-time 'time-to-days)))
17074 (- (funcall fdiff (org-time-string-to-time timestamp-string))
17075 (funcall fdiff (current-time)))))
17077 (defun org-deadline-close (timestamp-string &optional ndays)
17078 "Is the time in TIMESTAMP-STRING close to the current date?"
17079 (setq ndays (or ndays (org-get-wdays timestamp-string)))
17080 (and (< (org-time-stamp-to-now timestamp-string) ndays)
17081 (not (org-entry-is-done-p))))
17083 (defun org-get-wdays (ts &optional delay zero-delay)
17084 "Get the deadline lead time appropriate for timestring TS.
17085 When DELAY is non-nil, get the delay time for scheduled items
17086 instead of the deadline lead time. When ZERO-DELAY is non-nil
17087 and `org-scheduled-delay-days' is 0, enforce 0 as the delay,
17088 don't try to find the delay cookie in the scheduled timestamp."
17089 (let ((tv (if delay org-scheduled-delay-days
17090 org-deadline-warning-days)))
17091 (cond
17092 ((or (and delay (< tv 0))
17093 (and delay zero-delay (<= tv 0))
17094 (and (not delay) (<= tv 0)))
17095 ;; Enforce this value no matter what
17096 (- tv))
17097 ((string-match "-\\([0-9]+\\)\\([hdwmy]\\)\\(\\'\\|>\\| \\)" ts)
17098 ;; lead time is specified.
17099 (floor (* (string-to-number (match-string 1 ts))
17100 (cdr (assoc (match-string 2 ts)
17101 '(("d" . 1) ("w" . 7)
17102 ("m" . 30.4) ("y" . 365.25)
17103 ("h" . 0.041667)))))))
17104 ;; go for the default.
17105 (t tv))))
17107 (defun org-calendar-select-mouse (ev)
17108 "Return to `org-read-date' with the date currently selected.
17109 This is used by `org-read-date' in a temporary keymap for the calendar buffer."
17110 (interactive "e")
17111 (mouse-set-point ev)
17112 (when (calendar-cursor-to-date)
17113 (let* ((date (calendar-cursor-to-date))
17114 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
17115 (setq org-ans1 (format-time-string "%Y-%m-%d" time)))
17116 (if (active-minibuffer-window) (exit-minibuffer))))
17118 (defun org-check-deadlines (ndays)
17119 "Check if there are any deadlines due or past due.
17120 A deadline is considered due if it happens within `org-deadline-warning-days'
17121 days from today's date. If the deadline appears in an entry marked DONE,
17122 it is not shown. The prefix arg NDAYS can be used to test that many
17123 days. If the prefix is a raw \\[universal-argument] prefix, all deadlines are shown."
17124 (interactive "P")
17125 (let* ((org-warn-days
17126 (cond
17127 ((equal ndays '(4)) 100000)
17128 (ndays (prefix-numeric-value ndays))
17129 (t (abs org-deadline-warning-days))))
17130 (case-fold-search nil)
17131 (regexp (concat "\\<" org-deadline-string " *<\\([^>]+\\)>"))
17132 (callback
17133 (lambda () (org-deadline-close (match-string 1) org-warn-days))))
17135 (message "%d deadlines past-due or due within %d days"
17136 (org-occur regexp nil callback)
17137 org-warn-days)))
17139 (defsubst org-re-timestamp (type)
17140 "Return a regexp for timestamp TYPE.
17141 Allowed values for TYPE are:
17143 all: all timestamps
17144 active: only active timestamps (<...>)
17145 inactive: only inactive timestamps ([...])
17146 scheduled: only scheduled timestamps
17147 deadline: only deadline timestamps
17148 closed: only closed time-stamps
17150 When TYPE is nil, fall back on returning a regexp that matches
17151 both scheduled and deadline timestamps."
17152 (cond ((eq type 'all) "\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\}\\(?: +[^]+0-9> \n -]+\\)?\\(?: +[0-9]\\{1,2\\}:[0-9]\\{2\\}\\)?\\)")
17153 ((eq type 'active) org-ts-regexp)
17154 ((eq type 'inactive) "\\[\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^ \n>]*?\\)\\]")
17155 ((eq type 'scheduled) (concat "\\<" org-scheduled-string " *<\\([^>]+\\)>"))
17156 ((eq type 'deadline) (concat "\\<" org-deadline-string " *<\\([^>]+\\)>"))
17157 ((eq type 'closed) (concat org-closed-string " \\[\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^ \n>]*?\\)\\]"))
17158 ((eq type 'scheduled-or-deadline)
17159 (concat "\\<\\(?:" org-deadline-string "\\|" org-scheduled-string "\\) *<\\([^>]+\\)>"))))
17161 (defun org-check-before-date (date)
17162 "Check if there are deadlines or scheduled entries before DATE."
17163 (interactive (list (org-read-date)))
17164 (let ((case-fold-search nil)
17165 (regexp (org-re-timestamp org-ts-type))
17166 (callback
17167 (lambda () (time-less-p
17168 (org-time-string-to-time (match-string 1))
17169 (org-time-string-to-time date)))))
17170 (message "%d entries before %s"
17171 (org-occur regexp nil callback) date)))
17173 (defun org-check-after-date (date)
17174 "Check if there are deadlines or scheduled entries after DATE."
17175 (interactive (list (org-read-date)))
17176 (let ((case-fold-search nil)
17177 (regexp (org-re-timestamp org-ts-type))
17178 (callback
17179 (lambda () (not
17180 (time-less-p
17181 (org-time-string-to-time (match-string 1))
17182 (org-time-string-to-time date))))))
17183 (message "%d entries after %s"
17184 (org-occur regexp nil callback) date)))
17186 (defun org-check-dates-range (start-date end-date)
17187 "Check for deadlines/scheduled entries between START-DATE and END-DATE."
17188 (interactive (list (org-read-date nil nil nil "Range starts")
17189 (org-read-date nil nil nil "Range end")))
17190 (let ((case-fold-search nil)
17191 (regexp (org-re-timestamp org-ts-type))
17192 (callback
17193 (lambda ()
17194 (let ((match (match-string 1)))
17195 (and
17196 (not (time-less-p
17197 (org-time-string-to-time match)
17198 (org-time-string-to-time start-date)))
17199 (time-less-p
17200 (org-time-string-to-time match)
17201 (org-time-string-to-time end-date)))))))
17202 (message "%d entries between %s and %s"
17203 (org-occur regexp nil callback) start-date end-date)))
17205 (defun org-evaluate-time-range (&optional to-buffer)
17206 "Evaluate a time range by computing the difference between start and end.
17207 Normally the result is just printed in the echo area, but with prefix arg
17208 TO-BUFFER, the result is inserted just after the date stamp into the buffer.
17209 If the time range is actually in a table, the result is inserted into the
17210 next column.
17211 For time difference computation, a year is assumed to be exactly 365
17212 days in order to avoid rounding problems."
17213 (interactive "P")
17215 (org-clock-update-time-maybe)
17216 (save-excursion
17217 (unless (org-at-date-range-p t)
17218 (goto-char (point-at-bol))
17219 (re-search-forward org-tr-regexp-both (point-at-eol) t))
17220 (if (not (org-at-date-range-p t))
17221 (user-error "Not at a time-stamp range, and none found in current line")))
17222 (let* ((ts1 (match-string 1))
17223 (ts2 (match-string 2))
17224 (havetime (or (> (length ts1) 15) (> (length ts2) 15)))
17225 (match-end (match-end 0))
17226 (time1 (org-time-string-to-time ts1))
17227 (time2 (org-time-string-to-time ts2))
17228 (t1 (org-float-time time1))
17229 (t2 (org-float-time time2))
17230 (diff (abs (- t2 t1)))
17231 (negative (< (- t2 t1) 0))
17232 ;; (ys (floor (* 365 24 60 60)))
17233 (ds (* 24 60 60))
17234 (hs (* 60 60))
17235 (fy "%dy %dd %02d:%02d")
17236 (fy1 "%dy %dd")
17237 (fd "%dd %02d:%02d")
17238 (fd1 "%dd")
17239 (fh "%02d:%02d")
17240 y d h m align)
17241 (if havetime
17242 (setq ; y (floor (/ diff ys)) diff (mod diff ys)
17244 d (floor (/ diff ds)) diff (mod diff ds)
17245 h (floor (/ diff hs)) diff (mod diff hs)
17246 m (floor (/ diff 60)))
17247 (setq ; y (floor (/ diff ys)) diff (mod diff ys)
17249 d (floor (+ (/ diff ds) 0.5))
17250 h 0 m 0))
17251 (if (not to-buffer)
17252 (message "%s" (org-make-tdiff-string y d h m))
17253 (if (org-at-table-p)
17254 (progn
17255 (goto-char match-end)
17256 (setq align t)
17257 (and (looking-at " *|") (goto-char (match-end 0))))
17258 (goto-char match-end))
17259 (if (looking-at
17260 "\\( *-? *[0-9]+y\\)?\\( *[0-9]+d\\)? *[0-9][0-9]:[0-9][0-9]")
17261 (replace-match ""))
17262 (if negative (insert " -"))
17263 (if (> y 0) (insert " " (format (if havetime fy fy1) y d h m))
17264 (if (> d 0) (insert " " (format (if havetime fd fd1) d h m))
17265 (insert " " (format fh h m))))
17266 (if align (org-table-align))
17267 (message "Time difference inserted")))))
17269 (defun org-make-tdiff-string (y d h m)
17270 (let ((fmt "")
17271 (l nil))
17272 (if (> y 0) (setq fmt (concat fmt "%d year" (if (> y 1) "s" "") " ")
17273 l (push y l)))
17274 (if (> d 0) (setq fmt (concat fmt "%d day" (if (> d 1) "s" "") " ")
17275 l (push d l)))
17276 (if (> h 0) (setq fmt (concat fmt "%d hour" (if (> h 1) "s" "") " ")
17277 l (push h l)))
17278 (if (> m 0) (setq fmt (concat fmt "%d minute" (if (> m 1) "s" "") " ")
17279 l (push m l)))
17280 (apply 'format fmt (nreverse l))))
17282 (defun org-time-string-to-time (s &optional buffer pos)
17283 "Convert a timestamp string into internal time."
17284 (condition-case errdata
17285 (apply 'encode-time (org-parse-time-string s))
17286 (error (error "Bad timestamp `%s'%s\nError was: %s"
17287 s (if (not (and buffer pos))
17289 (format " at %d in buffer `%s'" pos buffer))
17290 (cdr errdata)))))
17292 (defun org-time-string-to-seconds (s)
17293 "Convert a timestamp string to a number of seconds."
17294 (org-float-time (org-time-string-to-time s)))
17296 (defun org-time-string-to-absolute (s &optional daynr prefer show-all buffer pos)
17297 "Convert a time stamp to an absolute day number.
17298 If there is a specifier for a cyclic time stamp, get the closest
17299 date to DAYNR.
17300 PREFER and SHOW-ALL are passed through to `org-closest-date'.
17301 The variable `date' is bound by the calendar when this is called."
17302 (cond
17303 ((and daynr (string-match "\\`%%\\((.*)\\)" s))
17304 (if (org-diary-sexp-entry (match-string 1 s) "" date)
17305 daynr
17306 (+ daynr 1000)))
17307 ((and daynr (string-match "\\+[0-9]+[hdwmy]" s))
17308 (org-closest-date s (if (and (boundp 'daynr) (integerp daynr)) daynr
17309 (time-to-days (current-time))) (match-string 0 s)
17310 prefer show-all))
17311 (t (time-to-days
17312 (condition-case errdata
17313 (apply 'encode-time (org-parse-time-string s))
17314 (error (error "Bad timestamp `%s'%s\nError was: %s"
17315 s (if (not (and buffer pos))
17317 (format " at %d in buffer `%s'" pos buffer))
17318 (cdr errdata))))))))
17320 (defun org-days-to-iso-week (days)
17321 "Return the iso week number."
17322 (require 'cal-iso)
17323 (car (calendar-iso-from-absolute days)))
17325 (defun org-small-year-to-year (year)
17326 "Convert 2-digit years into 4-digit years.
17327 38-99 are mapped into 1938-1999. 1-37 are mapped into 2001-2037.
17328 The year 2000 cannot be abbreviated. Any year larger than 99
17329 is returned unchanged."
17330 (if (< year 38)
17331 (setq year (+ 2000 year))
17332 (if (< year 100)
17333 (setq year (+ 1900 year))))
17334 year)
17336 (defun org-time-from-absolute (d)
17337 "Return the time corresponding to date D.
17338 D may be an absolute day number, or a calendar-type list (month day year)."
17339 (if (numberp d) (setq d (calendar-gregorian-from-absolute d)))
17340 (encode-time 0 0 0 (nth 1 d) (car d) (nth 2 d)))
17342 (defun org-calendar-holiday ()
17343 "List of holidays, for Diary display in Org-mode."
17344 (require 'holidays)
17345 (let ((hl (funcall
17346 (if (fboundp 'calendar-check-holidays)
17347 'calendar-check-holidays 'check-calendar-holidays) date)))
17348 (if hl (mapconcat 'identity hl "; "))))
17350 (defun org-diary-sexp-entry (sexp entry date)
17351 "Process a SEXP diary ENTRY for DATE."
17352 (require 'diary-lib)
17353 (let ((result (if calendar-debug-sexp
17354 (let ((stack-trace-on-error t))
17355 (eval (car (read-from-string sexp))))
17356 (condition-case nil
17357 (eval (car (read-from-string sexp)))
17358 (error
17359 (beep)
17360 (message "Bad sexp at line %d in %s: %s"
17361 (org-current-line)
17362 (buffer-file-name) sexp)
17363 (sleep-for 2))))))
17364 (cond ((stringp result) (split-string result "; "))
17365 ((and (consp result)
17366 (not (consp (cdr result)))
17367 (stringp (cdr result))) (cdr result))
17368 ((and (consp result)
17369 (stringp (car result))) result)
17370 (result entry))))
17372 (defun org-diary-to-ical-string (frombuf)
17373 "Get iCalendar entries from diary entries in buffer FROMBUF.
17374 This uses the icalendar.el library."
17375 (let* ((tmpdir (if (featurep 'xemacs)
17376 (temp-directory)
17377 temporary-file-directory))
17378 (tmpfile (make-temp-name
17379 (expand-file-name "orgics" tmpdir)))
17380 buf rtn b e)
17381 (with-current-buffer frombuf
17382 (icalendar-export-region (point-min) (point-max) tmpfile)
17383 (setq buf (find-buffer-visiting tmpfile))
17384 (set-buffer buf)
17385 (goto-char (point-min))
17386 (if (re-search-forward "^BEGIN:VEVENT" nil t)
17387 (setq b (match-beginning 0)))
17388 (goto-char (point-max))
17389 (if (re-search-backward "^END:VEVENT" nil t)
17390 (setq e (match-end 0)))
17391 (setq rtn (if (and b e) (concat (buffer-substring b e) "\n") "")))
17392 (kill-buffer buf)
17393 (delete-file tmpfile)
17394 rtn))
17396 (defun org-closest-date (start current change prefer show-all)
17397 "Find the date closest to CURRENT that is consistent with START and CHANGE.
17398 When PREFER is `past', return a date that is either CURRENT or past.
17399 When PREFER is `future', return a date that is either CURRENT or future.
17400 When SHOW-ALL is nil, only return the current occurrence of a time stamp."
17401 ;; Make the proper lists from the dates
17402 (catch 'exit
17403 (let ((a1 '(("h" . hour)
17404 ("d" . day)
17405 ("w" . week)
17406 ("m" . month)
17407 ("y" . year)))
17408 (shour (nth 2 (org-parse-time-string start)))
17409 dn dw sday cday n1 n2 n0
17410 d m y y1 y2 date1 date2 nmonths nm ny m2)
17412 (setq start (org-date-to-gregorian start)
17413 current (org-date-to-gregorian
17414 (if show-all
17415 current
17416 (time-to-days (current-time))))
17417 sday (calendar-absolute-from-gregorian start)
17418 cday (calendar-absolute-from-gregorian current))
17420 (if (<= cday sday) (throw 'exit sday))
17422 (if (string-match "\\(\\+[0-9]+\\)\\([hdwmy]\\)" change)
17423 (setq dn (string-to-number (match-string 1 change))
17424 dw (cdr (assoc (match-string 2 change) a1)))
17425 (user-error "Invalid change specifier: %s" change))
17426 (if (eq dw 'week) (setq dw 'day dn (* 7 dn)))
17427 (cond
17428 ((eq dw 'hour)
17429 (let ((missing-hours
17430 (mod (+ (- (* 24 (- cday sday)) shour) org-extend-today-until)
17431 dn)))
17432 (setq n1 (if (zerop missing-hours) cday
17433 (- cday (1+ (floor (/ missing-hours 24)))))
17434 n2 (+ cday (floor (/ (- dn missing-hours) 24))))))
17435 ((eq dw 'day)
17436 (setq n1 (+ sday (* dn (floor (/ (- cday sday) dn))))
17437 n2 (+ n1 dn)))
17438 ((eq dw 'year)
17439 (setq d (nth 1 start) m (car start) y1 (nth 2 start) y2 (nth 2 current))
17440 (setq y1 (+ (* (floor (/ (- y2 y1) dn)) dn) y1))
17441 (setq date1 (list m d y1)
17442 n1 (calendar-absolute-from-gregorian date1)
17443 date2 (list m d (+ y1 (* (if (< n1 cday) 1 -1) dn)))
17444 n2 (calendar-absolute-from-gregorian date2)))
17445 ((eq dw 'month)
17446 ;; approx number of month between the two dates
17447 (setq nmonths (floor (/ (- cday sday) 30.436875)))
17448 ;; How often does dn fit in there?
17449 (setq d (nth 1 start) m (car start) y (nth 2 start)
17450 nm (* dn (max 0 (1- (floor (/ nmonths dn)))))
17451 m (+ m nm)
17452 ny (floor (/ m 12))
17453 y (+ y ny)
17454 m (- m (* ny 12)))
17455 (while (> m 12) (setq m (- m 12) y (1+ y)))
17456 (setq n1 (calendar-absolute-from-gregorian (list m d y)))
17457 (setq m2 (+ m dn) y2 y)
17458 (if (> m2 12) (setq y2 (1+ y2) m2 (- m2 12)))
17459 (setq n2 (calendar-absolute-from-gregorian (list m2 d y2)))
17460 (while (<= n2 cday)
17461 (setq n1 n2 m m2 y y2)
17462 (setq m2 (+ m dn) y2 y)
17463 (if (> m2 12) (setq y2 (1+ y2) m2 (- m2 12)))
17464 (setq n2 (calendar-absolute-from-gregorian (list m2 d y2))))))
17465 ;; Make sure n1 is the earlier date
17466 (setq n0 n1 n1 (min n1 n2) n2 (max n0 n2))
17467 (if show-all
17468 (cond
17469 ((eq prefer 'past) (if (= cday n2) n2 n1))
17470 ((eq prefer 'future) (if (= cday n1) n1 n2))
17471 (t (if (> (abs (- cday n1)) (abs (- cday n2))) n2 n1)))
17472 (cond
17473 ((eq prefer 'past) (if (= cday n2) n2 n1))
17474 ((eq prefer 'future) (if (= cday n1) n1 n2))
17475 (t (if (= cday n1) n1 n2)))))))
17477 (defun org-date-to-gregorian (date)
17478 "Turn any specification of DATE into a Gregorian date for the calendar."
17479 (cond ((integerp date) (calendar-gregorian-from-absolute date))
17480 ((and (listp date) (= (length date) 3)) date)
17481 ((stringp date)
17482 (setq date (org-parse-time-string date))
17483 (list (nth 4 date) (nth 3 date) (nth 5 date)))
17484 ((listp date)
17485 (list (nth 4 date) (nth 3 date) (nth 5 date)))))
17487 (defun org-parse-time-string (s &optional nodefault)
17488 "Parse the standard Org-mode time string.
17489 This should be a lot faster than the normal `parse-time-string'.
17490 If time is not given, defaults to 0:00. However, with optional NODEFAULT,
17491 hour and minute fields will be nil if not given."
17492 (cond ((string-match org-ts-regexp0 s)
17493 (list 0
17494 (if (or (match-beginning 8) (not nodefault))
17495 (string-to-number (or (match-string 8 s) "0")))
17496 (if (or (match-beginning 7) (not nodefault))
17497 (string-to-number (or (match-string 7 s) "0")))
17498 (string-to-number (match-string 4 s))
17499 (string-to-number (match-string 3 s))
17500 (string-to-number (match-string 2 s))
17501 nil nil nil))
17502 ((string-match "^<[^>]+>$" s)
17503 (decode-time (seconds-to-time (org-matcher-time s))))
17504 (t (error "Not a standard Org-mode time string: %s" s))))
17506 (defun org-timestamp-up (&optional arg)
17507 "Increase the date item at the cursor by one.
17508 If the cursor is on the year, change the year. If it is on the month,
17509 the day or the time, change that.
17510 With prefix ARG, change by that many units."
17511 (interactive "p")
17512 (org-timestamp-change (prefix-numeric-value arg) nil 'updown))
17514 (defun org-timestamp-down (&optional arg)
17515 "Decrease the date item at the cursor by one.
17516 If the cursor is on the year, change the year. If it is on the month,
17517 the day or the time, change that.
17518 With prefix ARG, change by that many units."
17519 (interactive "p")
17520 (org-timestamp-change (- (prefix-numeric-value arg)) nil 'updown))
17522 (defun org-timestamp-up-day (&optional arg)
17523 "Increase the date in the time stamp by one day.
17524 With prefix ARG, change that many days."
17525 (interactive "p")
17526 (if (and (not (org-at-timestamp-p t))
17527 (org-at-heading-p))
17528 (org-todo 'up)
17529 (org-timestamp-change (prefix-numeric-value arg) 'day 'updown)))
17531 (defun org-timestamp-down-day (&optional arg)
17532 "Decrease the date in the time stamp by one day.
17533 With prefix ARG, change that many days."
17534 (interactive "p")
17535 (if (and (not (org-at-timestamp-p t))
17536 (org-at-heading-p))
17537 (org-todo 'down)
17538 (org-timestamp-change (- (prefix-numeric-value arg)) 'day) 'updown))
17540 (defun org-at-timestamp-p (&optional inactive-ok)
17541 "Determine if the cursor is in or at a timestamp."
17542 (interactive)
17543 (let* ((tsr (if inactive-ok org-ts-regexp3 org-ts-regexp2))
17544 (pos (point))
17545 (ans (or (looking-at tsr)
17546 (save-excursion
17547 (skip-chars-backward "^[<\n\r\t")
17548 (if (> (point) (point-min)) (backward-char 1))
17549 (and (looking-at tsr)
17550 (> (- (match-end 0) pos) -1))))))
17551 (and ans
17552 (boundp 'org-ts-what)
17553 (setq org-ts-what
17554 (cond
17555 ((= pos (match-beginning 0)) 'bracket)
17556 ;; Point is considered to be "on the bracket" whether
17557 ;; it's really on it or right after it.
17558 ((= pos (1- (match-end 0))) 'bracket)
17559 ((= pos (match-end 0)) 'after)
17560 ((org-pos-in-match-range pos 2) 'year)
17561 ((org-pos-in-match-range pos 3) 'month)
17562 ((org-pos-in-match-range pos 7) 'hour)
17563 ((org-pos-in-match-range pos 8) 'minute)
17564 ((or (org-pos-in-match-range pos 4)
17565 (org-pos-in-match-range pos 5)) 'day)
17566 ((and (> pos (or (match-end 8) (match-end 5)))
17567 (< pos (match-end 0)))
17568 (- pos (or (match-end 8) (match-end 5))))
17569 (t 'day))))
17570 ans))
17572 (defun org-toggle-timestamp-type ()
17573 "Toggle the type (<active> or [inactive]) of a time stamp."
17574 (interactive)
17575 (when (org-at-timestamp-p t)
17576 (let ((beg (match-beginning 0)) (end (match-end 0))
17577 (map '((?\[ . "<") (?\] . ">") (?< . "[") (?> . "]"))))
17578 (save-excursion
17579 (goto-char beg)
17580 (while (re-search-forward "[][<>]" end t)
17581 (replace-match (cdr (assoc (char-after (match-beginning 0)) map))
17582 t t)))
17583 (message "Timestamp is now %sactive"
17584 (if (equal (char-after beg) ?<) "" "in")))))
17586 (defun org-at-clock-log-p nil
17587 "Is the cursor on the clock log line?"
17588 (save-excursion
17589 (move-beginning-of-line 1)
17590 (looking-at "^[ \t]*CLOCK:")))
17592 (defvar org-clock-history) ; defined in org-clock.el
17593 (defvar org-clock-adjust-closest nil) ; defined in org-clock.el
17594 (defun org-timestamp-change (n &optional what updown suppress-tmp-delay)
17595 "Change the date in the time stamp at point.
17596 The date will be changed by N times WHAT. WHAT can be `day', `month',
17597 `year', `minute', `second'. If WHAT is not given, the cursor position
17598 in the timestamp determines what will be changed.
17599 When SUPPRESS-TMP-DELAY is non-nil, suppress delays like \"--2d\"."
17600 (let ((origin (point)) origin-cat
17601 with-hm inactive
17602 (dm (max (nth 1 org-time-stamp-rounding-minutes) 1))
17603 org-ts-what
17604 extra rem
17605 ts time time0 fixnext clrgx)
17606 (if (not (org-at-timestamp-p t))
17607 (user-error "Not at a timestamp"))
17608 (if (and (not what) (eq org-ts-what 'bracket))
17609 (org-toggle-timestamp-type)
17610 ;; Point isn't on brackets. Remember the part of the time-stamp
17611 ;; the point was in. Indeed, size of time-stamps may change,
17612 ;; but point must be kept in the same category nonetheless.
17613 (setq origin-cat org-ts-what)
17614 (if (and (not what) (not (eq org-ts-what 'day))
17615 org-display-custom-times
17616 (get-text-property (point) 'display)
17617 (not (get-text-property (1- (point)) 'display)))
17618 (setq org-ts-what 'day))
17619 (setq org-ts-what (or what org-ts-what)
17620 inactive (= (char-after (match-beginning 0)) ?\[)
17621 ts (match-string 0))
17622 (replace-match "")
17623 (when (string-match
17624 "\\(\\(-[012][0-9]:[0-5][0-9]\\)?\\( +[.+]?-?[-+][0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)*\\)[]>]"
17626 (setq extra (match-string 1 ts))
17627 (if suppress-tmp-delay
17628 (setq extra (replace-regexp-in-string " --[0-9]+[hdwmy]" "" extra))))
17629 (if (string-match "^.\\{10\\}.*?[0-9]+:[0-9][0-9]" ts)
17630 (setq with-hm t))
17631 (setq time0 (org-parse-time-string ts))
17632 (when (and updown
17633 (eq org-ts-what 'minute)
17634 (not current-prefix-arg))
17635 ;; This looks like s-up and s-down. Change by one rounding step.
17636 (setq n (* dm (cond ((> n 0) 1) ((< n 0) -1) (t 0))))
17637 (when (not (= 0 (setq rem (% (nth 1 time0) dm))))
17638 (setcar (cdr time0) (+ (nth 1 time0)
17639 (if (> n 0) (- rem) (- dm rem))))))
17640 (setq time
17641 (encode-time (or (car time0) 0)
17642 (+ (if (eq org-ts-what 'minute) n 0) (nth 1 time0))
17643 (+ (if (eq org-ts-what 'hour) n 0) (nth 2 time0))
17644 (+ (if (eq org-ts-what 'day) n 0) (nth 3 time0))
17645 (+ (if (eq org-ts-what 'month) n 0) (nth 4 time0))
17646 (+ (if (eq org-ts-what 'year) n 0) (nth 5 time0))
17647 (nthcdr 6 time0)))
17648 (when (and (member org-ts-what '(hour minute))
17649 extra
17650 (string-match "-\\([012][0-9]\\):\\([0-5][0-9]\\)" extra))
17651 (setq extra (org-modify-ts-extra
17652 extra
17653 (if (eq org-ts-what 'hour) 2 5)
17654 n dm)))
17655 (when (integerp org-ts-what)
17656 (setq extra (org-modify-ts-extra extra org-ts-what n dm)))
17657 (if (eq what 'calendar)
17658 (let ((cal-date (org-get-date-from-calendar)))
17659 (setcar (nthcdr 4 time0) (nth 0 cal-date)) ; month
17660 (setcar (nthcdr 3 time0) (nth 1 cal-date)) ; day
17661 (setcar (nthcdr 5 time0) (nth 2 cal-date)) ; year
17662 (setcar time0 (or (car time0) 0))
17663 (setcar (nthcdr 1 time0) (or (nth 1 time0) 0))
17664 (setcar (nthcdr 2 time0) (or (nth 2 time0) 0))
17665 (setq time (apply 'encode-time time0))))
17666 ;; Insert the new time-stamp, and ensure point stays in the same
17667 ;; category as before (i.e. not after the last position in that
17668 ;; category).
17669 (let ((pos (point)))
17670 ;; Stay before inserted string. `save-excursion' is of no use.
17671 (setq org-last-changed-timestamp
17672 (org-insert-time-stamp time with-hm inactive nil nil extra))
17673 (goto-char pos))
17674 (save-match-data
17675 (looking-at org-ts-regexp3)
17676 (goto-char (cond
17677 ;; `day' category ends before `hour' if any, or at
17678 ;; the end of the day name.
17679 ((eq origin-cat 'day)
17680 (min (or (match-beginning 7) (1- (match-end 5))) origin))
17681 ((eq origin-cat 'hour) (min (match-end 7) origin))
17682 ((eq origin-cat 'minute) (min (1- (match-end 8)) origin))
17683 ((integerp origin-cat) (min (1- (match-end 0)) origin))
17684 ;; `year' and `month' have both fixed size: point
17685 ;; couldn't have moved into another part.
17686 (t origin))))
17687 ;; Update clock if on a CLOCK line.
17688 (org-clock-update-time-maybe)
17689 ;; Maybe adjust the closest clock in `org-clock-history'
17690 (when org-clock-adjust-closest
17691 (if (not (and (org-at-clock-log-p)
17692 (< 1 (length (delq nil (mapcar 'marker-position
17693 org-clock-history))))))
17694 (message "No clock to adjust")
17695 (cond ((save-excursion ; fix previous clock?
17696 (re-search-backward org-ts-regexp0 nil t)
17697 (org-looking-back (concat org-clock-string " \\[")))
17698 (setq fixnext 1 clrgx (concat org-ts-regexp0 "\\] =>.*$")))
17699 ((save-excursion ; fix next clock?
17700 (re-search-backward org-ts-regexp0 nil t)
17701 (looking-at (concat org-ts-regexp0 "\\] =>")))
17702 (setq fixnext -1 clrgx (concat org-clock-string " \\[" org-ts-regexp0))))
17703 (save-window-excursion
17704 ;; Find closest clock to point, adjust the previous/next one in history
17705 (let* ((p (save-excursion (org-back-to-heading t)))
17706 (cl (mapcar (lambda(c) (abs (- (marker-position c) p))) org-clock-history))
17707 (clfixnth
17708 (+ fixnext (- (length cl) (or (length (member (apply 'min cl) cl)) 100))))
17709 (clfixpos (if (> 0 clfixnth) nil (nth clfixnth org-clock-history))))
17710 (if (not clfixpos)
17711 (message "No clock to adjust")
17712 (save-excursion
17713 (org-goto-marker-or-bmk clfixpos)
17714 (org-show-subtree)
17715 (when (re-search-forward clrgx nil t)
17716 (goto-char (match-beginning 1))
17717 (let (org-clock-adjust-closest)
17718 (org-timestamp-change n org-ts-what updown))
17719 (message "Clock adjusted in %s for heading: %s"
17720 (file-name-nondirectory (buffer-file-name))
17721 (org-get-heading t t)))))))))
17722 ;; Try to recenter the calendar window, if any.
17723 (if (and org-calendar-follow-timestamp-change
17724 (get-buffer-window "*Calendar*" t)
17725 (memq org-ts-what '(day month year)))
17726 (org-recenter-calendar (time-to-days time))))))
17728 (defun org-modify-ts-extra (s pos n dm)
17729 "Change the different parts of the lead-time and repeat fields in timestamp."
17730 (let ((idx '(("d" . 0) ("w" . 1) ("m" . 2) ("y" . 3) ("d" . -1) ("y" . 4)))
17731 ng h m new rem)
17732 (when (string-match "\\(-\\([012][0-9]\\):\\([0-5][0-9]\\)\\)?\\( +\\+\\([0-9]+\\)\\([dmwy]\\)\\)?\\( +-\\([0-9]+\\)\\([dmwy]\\)\\)?" s)
17733 (cond
17734 ((or (org-pos-in-match-range pos 2)
17735 (org-pos-in-match-range pos 3))
17736 (setq m (string-to-number (match-string 3 s))
17737 h (string-to-number (match-string 2 s)))
17738 (if (org-pos-in-match-range pos 2)
17739 (setq h (+ h n))
17740 (setq n (* dm (org-no-warnings (signum n))))
17741 (when (not (= 0 (setq rem (% m dm))))
17742 (setq m (+ m (if (> n 0) (- rem) (- dm rem)))))
17743 (setq m (+ m n)))
17744 (if (< m 0) (setq m (+ m 60) h (1- h)))
17745 (if (> m 59) (setq m (- m 60) h (1+ h)))
17746 (setq h (min 24 (max 0 h)))
17747 (setq ng 1 new (format "-%02d:%02d" h m)))
17748 ((org-pos-in-match-range pos 6)
17749 (setq ng 6 new (car (rassoc (+ n (cdr (assoc (match-string 6 s) idx))) idx))))
17750 ((org-pos-in-match-range pos 5)
17751 (setq ng 5 new (format "%d" (max 1 (+ n (string-to-number (match-string 5 s)))))))
17753 ((org-pos-in-match-range pos 9)
17754 (setq ng 9 new (car (rassoc (+ n (cdr (assoc (match-string 9 s) idx))) idx))))
17755 ((org-pos-in-match-range pos 8)
17756 (setq ng 8 new (format "%d" (max 0 (+ n (string-to-number (match-string 8 s))))))))
17758 (when ng
17759 (setq s (concat
17760 (substring s 0 (match-beginning ng))
17762 (substring s (match-end ng))))))
17765 (defun org-recenter-calendar (date)
17766 "If the calendar is visible, recenter it to DATE."
17767 (let ((cwin (get-buffer-window "*Calendar*" t)))
17768 (when cwin
17769 (let ((calendar-move-hook nil))
17770 (with-selected-window cwin
17771 (calendar-goto-date (if (listp date) date
17772 (calendar-gregorian-from-absolute date))))))))
17774 (defun org-goto-calendar (&optional arg)
17775 "Go to the Emacs calendar at the current date.
17776 If there is a time stamp in the current line, go to that date.
17777 A prefix ARG can be used to force the current date."
17778 (interactive "P")
17779 (let ((tsr org-ts-regexp) diff
17780 (calendar-move-hook nil)
17781 (calendar-view-holidays-initially-flag nil)
17782 (calendar-view-diary-initially-flag nil))
17783 (if (or (org-at-timestamp-p)
17784 (save-excursion
17785 (beginning-of-line 1)
17786 (looking-at (concat ".*" tsr))))
17787 (let ((d1 (time-to-days (current-time)))
17788 (d2 (time-to-days
17789 (org-time-string-to-time (match-string 1)))))
17790 (setq diff (- d2 d1))))
17791 (calendar)
17792 (calendar-goto-today)
17793 (if (and diff (not arg)) (calendar-forward-day diff))))
17795 (defun org-get-date-from-calendar ()
17796 "Return a list (month day year) of date at point in calendar."
17797 (with-current-buffer "*Calendar*"
17798 (save-match-data
17799 (calendar-cursor-to-date))))
17801 (defun org-date-from-calendar ()
17802 "Insert time stamp corresponding to cursor date in *Calendar* buffer.
17803 If there is already a time stamp at the cursor position, update it."
17804 (interactive)
17805 (if (org-at-timestamp-p t)
17806 (org-timestamp-change 0 'calendar)
17807 (let ((cal-date (org-get-date-from-calendar)))
17808 (org-insert-time-stamp
17809 (encode-time 0 0 0 (nth 1 cal-date) (car cal-date) (nth 2 cal-date))))))
17811 (defcustom org-effort-durations
17812 `(("h" . 60)
17813 ("d" . ,(* 60 8))
17814 ("w" . ,(* 60 8 5))
17815 ("m" . ,(* 60 8 5 4))
17816 ("y" . ,(* 60 8 5 40)))
17817 "Conversion factor to minutes for an effort modifier.
17819 Each entry has the form (MODIFIER . MINUTES).
17821 In an effort string, a number followed by MODIFIER is multiplied
17822 by the specified number of MINUTES to obtain an effort in
17823 minutes.
17825 For example, if the value of this variable is ((\"hours\" . 60)), then an
17826 effort string \"2hours\" is equivalent to 120 minutes."
17827 :group 'org-agenda
17828 :version "24.1"
17829 :type '(alist :key-type (string :tag "Modifier")
17830 :value-type (number :tag "Minutes")))
17832 (defun org-minutes-to-clocksum-string (m)
17833 "Format number of minutes as a clocksum string.
17834 The format is determined by `org-time-clocksum-format',
17835 `org-time-clocksum-use-fractional' and
17836 `org-time-clocksum-fractional-format' and
17837 `org-time-clocksum-use-effort-durations'."
17838 (let ((clocksum "")
17839 (m (round m)) ; Don't allow fractions of minutes
17840 h d w mo y fmt n)
17841 (setq h (if org-time-clocksum-use-effort-durations
17842 (cdr (assoc "h" org-effort-durations)) 60)
17843 d (if org-time-clocksum-use-effort-durations
17844 (/ (cdr (assoc "d" org-effort-durations)) h) 24)
17845 w (if org-time-clocksum-use-effort-durations
17846 (/ (cdr (assoc "w" org-effort-durations)) (* d h)) 7)
17847 mo (if org-time-clocksum-use-effort-durations
17848 (/ (cdr (assoc "m" org-effort-durations)) (* d h)) 30)
17849 y (if org-time-clocksum-use-effort-durations
17850 (/ (cdr (assoc "y" org-effort-durations)) (* d h)) 365))
17851 ;; fractional format
17852 (if org-time-clocksum-use-fractional
17853 (cond
17854 ;; single format string
17855 ((stringp org-time-clocksum-fractional-format)
17856 (format org-time-clocksum-fractional-format (/ m (float h))))
17857 ;; choice of fractional formats for different time units
17858 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :years))
17859 (> (/ (truncate m) (* y d h)) 0))
17860 (format fmt (/ m (* y d (float h)))))
17861 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :months))
17862 (> (/ (truncate m) (* mo d h)) 0))
17863 (format fmt (/ m (* mo d (float h)))))
17864 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :weeks))
17865 (> (/ (truncate m) (* w d h)) 0))
17866 (format fmt (/ m (* w d (float h)))))
17867 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :days))
17868 (> (/ (truncate m) (* d h)) 0))
17869 (format fmt (/ m (* d (float h)))))
17870 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :hours))
17871 (> (/ (truncate m) h) 0))
17872 (format fmt (/ m (float h))))
17873 ((setq fmt (plist-get org-time-clocksum-fractional-format :minutes))
17874 (format fmt m))
17875 ;; fall back to smallest time unit with a format
17876 ((setq fmt (plist-get org-time-clocksum-fractional-format :hours))
17877 (format fmt (/ m (float h))))
17878 ((setq fmt (plist-get org-time-clocksum-fractional-format :days))
17879 (format fmt (/ m (* d (float h)))))
17880 ((setq fmt (plist-get org-time-clocksum-fractional-format :weeks))
17881 (format fmt (/ m (* w d (float h)))))
17882 ((setq fmt (plist-get org-time-clocksum-fractional-format :months))
17883 (format fmt (/ m (* mo d (float h)))))
17884 ((setq fmt (plist-get org-time-clocksum-fractional-format :years))
17885 (format fmt (/ m (* y d (float h))))))
17886 ;; standard (non-fractional) format, with single format string
17887 (if (stringp org-time-clocksum-format)
17888 (format org-time-clocksum-format (setq n (/ m h)) (- m (* h n)))
17889 ;; separate formats components
17890 (and (setq fmt (plist-get org-time-clocksum-format :years))
17891 (or (> (setq n (/ (truncate m) (* y d h))) 0)
17892 (plist-get org-time-clocksum-format :require-years))
17893 (setq clocksum (concat clocksum (format fmt n))
17894 m (- m (* n y d h))))
17895 (and (setq fmt (plist-get org-time-clocksum-format :months))
17896 (or (> (setq n (/ (truncate m) (* mo d h))) 0)
17897 (plist-get org-time-clocksum-format :require-months))
17898 (setq clocksum (concat clocksum (format fmt n))
17899 m (- m (* n mo d h))))
17900 (and (setq fmt (plist-get org-time-clocksum-format :weeks))
17901 (or (> (setq n (/ (truncate m) (* w d h))) 0)
17902 (plist-get org-time-clocksum-format :require-weeks))
17903 (setq clocksum (concat clocksum (format fmt n))
17904 m (- m (* n w d h))))
17905 (and (setq fmt (plist-get org-time-clocksum-format :days))
17906 (or (> (setq n (/ (truncate m) (* d h))) 0)
17907 (plist-get org-time-clocksum-format :require-days))
17908 (setq clocksum (concat clocksum (format fmt n))
17909 m (- m (* n d h))))
17910 (and (setq fmt (plist-get org-time-clocksum-format :hours))
17911 (or (> (setq n (/ (truncate m) h)) 0)
17912 (plist-get org-time-clocksum-format :require-hours))
17913 (setq clocksum (concat clocksum (format fmt n))
17914 m (- m (* n h))))
17915 (and (setq fmt (plist-get org-time-clocksum-format :minutes))
17916 (or (> m 0) (plist-get org-time-clocksum-format :require-minutes))
17917 (setq clocksum (concat clocksum (format fmt m))))
17918 ;; return formatted time duration
17919 clocksum))))
17921 (defalias 'org-minutes-to-hh:mm-string 'org-minutes-to-clocksum-string)
17922 (make-obsolete 'org-minutes-to-hh:mm-string 'org-minutes-to-clocksum-string
17923 "Org mode version 8.0")
17925 (defun org-hours-to-clocksum-string (n)
17926 (org-minutes-to-clocksum-string (* n 60)))
17928 (defun org-hh:mm-string-to-minutes (s)
17929 "Convert a string H:MM to a number of minutes.
17930 If the string is just a number, interpret it as minutes.
17931 In fact, the first hh:mm or number in the string will be taken,
17932 there can be extra stuff in the string.
17933 If no number is found, the return value is 0."
17934 (cond
17935 ((integerp s) s)
17936 ((string-match "\\([0-9]+\\):\\([0-9]+\\)" s)
17937 (+ (* (string-to-number (match-string 1 s)) 60)
17938 (string-to-number (match-string 2 s))))
17939 ((string-match "\\([0-9]+\\)" s)
17940 (string-to-number (match-string 1 s)))
17941 (t 0)))
17943 (defcustom org-image-actual-width t
17944 "Should we use the actual width of images when inlining them?
17946 When set to `t', always use the image width.
17948 When set to a number, use imagemagick (when available) to set
17949 the image's width to this value.
17951 When set to a number in a list, try to get the width from any
17952 #+ATTR.* keyword if it matches a width specification like
17954 #+ATTR_HTML: :width 300px
17956 and fall back on that number if none is found.
17958 When set to nil, try to get the width from an #+ATTR.* keyword
17959 and fall back on the original width if none is found.
17961 This requires Emacs >= 24.1, build with imagemagick support."
17962 :group 'org-appearance
17963 :version "24.4"
17964 :package-version '(Org . "8.0")
17965 :type '(choice
17966 (const :tag "Use the image width" t)
17967 (integer :tag "Use a number of pixels")
17968 (list :tag "Use #+ATTR* or a number of pixels" (integer))
17969 (const :tag "Use #+ATTR* or don't resize" nil)))
17971 (defcustom org-agenda-inhibit-startup nil
17972 "Inhibit startup when preparing agenda buffers.
17973 When this variable is `t' (the default), the initialization of
17974 the Org agenda buffers is inhibited: e.g. the visibility state
17975 is not set, the tables are not re-aligned, etc."
17976 :type 'boolean
17977 :version "24.3"
17978 :group 'org-agenda)
17980 (define-obsolete-variable-alias
17981 'org-agenda-ignore-drawer-properties
17982 'org-agenda-ignore-properties "24.5")
17984 (defcustom org-agenda-ignore-properties nil
17985 "Avoid updating text properties when building the agenda.
17986 Properties are used to prepare buffers for effort estimates,
17987 appointments, statistics and subtree-local categories.
17988 If you don't use these in the agenda, you can add them to this
17989 list and agenda building will be a bit faster.
17990 The value is a list, with zero or more of the symbols `effort', `appt',
17991 `stats' or `category'."
17992 :type '(set :greedy t
17993 (const effort)
17994 (const appt)
17995 (const stats)
17996 (const category))
17997 :version "24.5"
17998 :package-version '(Org . "8.3")
17999 :group 'org-agenda)
18001 (defun org-duration-string-to-minutes (s &optional output-to-string)
18002 "Convert a duration string S to minutes.
18004 A bare number is interpreted as minutes, modifiers can be set by
18005 customizing `org-effort-durations' (which see).
18007 Entries containing a colon are interpreted as H:MM by
18008 `org-hh:mm-string-to-minutes'."
18009 (let ((result 0)
18010 (re (concat "\\([0-9.]+\\) *\\("
18011 (regexp-opt (mapcar 'car org-effort-durations))
18012 "\\)")))
18013 (while (string-match re s)
18014 (incf result (* (cdr (assoc (match-string 2 s) org-effort-durations))
18015 (string-to-number (match-string 1 s))))
18016 (setq s (replace-match "" nil t s)))
18017 (setq result (floor result))
18018 (incf result (org-hh:mm-string-to-minutes s))
18019 (if output-to-string (number-to-string result) result)))
18021 ;;;; Files
18023 (defun org-save-all-org-buffers ()
18024 "Save all Org-mode buffers without user confirmation."
18025 (interactive)
18026 (message "Saving all Org-mode buffers...")
18027 (save-some-buffers t (lambda () (derived-mode-p 'org-mode)))
18028 (when (featurep 'org-id) (org-id-locations-save))
18029 (message "Saving all Org-mode buffers... done"))
18031 (defun org-revert-all-org-buffers ()
18032 "Revert all Org-mode buffers.
18033 Prompt for confirmation when there are unsaved changes.
18034 Be sure you know what you are doing before letting this function
18035 overwrite your changes.
18037 This function is useful in a setup where one tracks org files
18038 with a version control system, to revert on one machine after pulling
18039 changes from another. I believe the procedure must be like this:
18041 1. M-x org-save-all-org-buffers
18042 2. Pull changes from the other machine, resolve conflicts
18043 3. M-x org-revert-all-org-buffers"
18044 (interactive)
18045 (unless (yes-or-no-p "Revert all Org buffers from their files? ")
18046 (user-error "Abort"))
18047 (save-excursion
18048 (save-window-excursion
18049 (mapc
18050 (lambda (b)
18051 (when (and (with-current-buffer b (derived-mode-p 'org-mode))
18052 (with-current-buffer b buffer-file-name))
18053 (org-pop-to-buffer-same-window b)
18054 (revert-buffer t 'no-confirm)))
18055 (buffer-list))
18056 (when (and (featurep 'org-id) org-id-track-globally)
18057 (org-id-locations-load)))))
18059 ;;;; Agenda files
18061 ;;;###autoload
18062 (defun org-switchb (&optional arg)
18063 "Switch between Org buffers.
18064 With one prefix argument, restrict available buffers to files.
18065 With two prefix arguments, restrict available buffers to agenda files.
18067 Defaults to `iswitchb' for buffer name completion.
18068 Set `org-completion-use-ido' to make it use ido instead."
18069 (interactive "P")
18070 (let ((blist (cond ((equal arg '(4)) (org-buffer-list 'files))
18071 ((equal arg '(16)) (org-buffer-list 'agenda))
18072 (t (org-buffer-list))))
18073 (org-completion-use-iswitchb org-completion-use-iswitchb)
18074 (org-completion-use-ido org-completion-use-ido))
18075 (unless (or org-completion-use-ido org-completion-use-iswitchb)
18076 (setq org-completion-use-iswitchb t))
18077 (org-pop-to-buffer-same-window
18078 (org-icompleting-read "Org buffer: "
18079 (mapcar 'list (mapcar 'buffer-name blist))
18080 nil t))))
18082 ;;; Define some older names previously used for this functionality
18083 ;;;###autoload
18084 (defalias 'org-ido-switchb 'org-switchb)
18085 ;;;###autoload
18086 (defalias 'org-iswitchb 'org-switchb)
18088 (defun org-buffer-list (&optional predicate exclude-tmp)
18089 "Return a list of Org buffers.
18090 PREDICATE can be `export', `files' or `agenda'.
18092 export restrict the list to Export buffers.
18093 files restrict the list to buffers visiting Org files.
18094 agenda restrict the list to buffers visiting agenda files.
18096 If EXCLUDE-TMP is non-nil, ignore temporary buffers."
18097 (let* ((bfn nil)
18098 (agenda-files (and (eq predicate 'agenda)
18099 (mapcar 'file-truename (org-agenda-files t))))
18100 (filter
18101 (cond
18102 ((eq predicate 'files)
18103 (lambda (b) (with-current-buffer b (derived-mode-p 'org-mode))))
18104 ((eq predicate 'export)
18105 (lambda (b) (string-match "\*Org .*Export" (buffer-name b))))
18106 ((eq predicate 'agenda)
18107 (lambda (b)
18108 (with-current-buffer b
18109 (and (derived-mode-p 'org-mode)
18110 (setq bfn (buffer-file-name b))
18111 (member (file-truename bfn) agenda-files)))))
18112 (t (lambda (b) (with-current-buffer b
18113 (or (derived-mode-p 'org-mode)
18114 (string-match "\*Org .*Export"
18115 (buffer-name b)))))))))
18116 (delq nil
18117 (mapcar
18118 (lambda(b)
18119 (if (and (funcall filter b)
18120 (or (not exclude-tmp)
18121 (not (string-match "tmp" (buffer-name b)))))
18123 nil))
18124 (buffer-list)))))
18126 (defun org-agenda-files (&optional unrestricted archives)
18127 "Get the list of agenda files.
18128 Optional UNRESTRICTED means return the full list even if a restriction
18129 is currently in place.
18130 When ARCHIVES is t, include all archive files that are really being
18131 used by the agenda files. If ARCHIVE is `ifmode', do this only if
18132 `org-agenda-archives-mode' is t."
18133 (let ((files
18134 (cond
18135 ((and (not unrestricted) (get 'org-agenda-files 'org-restrict)))
18136 ((stringp org-agenda-files) (org-read-agenda-file-list))
18137 ((listp org-agenda-files) org-agenda-files)
18138 (t (error "Invalid value of `org-agenda-files'")))))
18139 (setq files (apply 'append
18140 (mapcar (lambda (f)
18141 (if (file-directory-p f)
18142 (directory-files
18143 f t org-agenda-file-regexp)
18144 (list f)))
18145 files)))
18146 (when org-agenda-skip-unavailable-files
18147 (setq files (delq nil
18148 (mapcar (function
18149 (lambda (file)
18150 (and (file-readable-p file) file)))
18151 files))))
18152 (when (or (eq archives t)
18153 (and (eq archives 'ifmode) (eq org-agenda-archives-mode t)))
18154 (setq files (org-add-archive-files files)))
18155 files))
18157 (defun org-agenda-file-p (&optional file)
18158 "Return non-nil, if FILE is an agenda file.
18159 If FILE is omitted, use the file associated with the current
18160 buffer."
18161 (member (or file (buffer-file-name))
18162 (org-agenda-files t)))
18164 (defun org-edit-agenda-file-list ()
18165 "Edit the list of agenda files.
18166 Depending on setup, this either uses customize to edit the variable
18167 `org-agenda-files', or it visits the file that is holding the list. In the
18168 latter case, the buffer is set up in a way that saving it automatically kills
18169 the buffer and restores the previous window configuration."
18170 (interactive)
18171 (if (stringp org-agenda-files)
18172 (let ((cw (current-window-configuration)))
18173 (find-file org-agenda-files)
18174 (org-set-local 'org-window-configuration cw)
18175 (org-add-hook 'after-save-hook
18176 (lambda ()
18177 (set-window-configuration
18178 (prog1 org-window-configuration
18179 (kill-buffer (current-buffer))))
18180 (org-install-agenda-files-menu)
18181 (message "New agenda file list installed"))
18182 nil 'local)
18183 (message "%s" (substitute-command-keys
18184 "Edit list and finish with \\[save-buffer]")))
18185 (customize-variable 'org-agenda-files)))
18187 (defun org-store-new-agenda-file-list (list)
18188 "Set new value for the agenda file list and save it correctly."
18189 (if (stringp org-agenda-files)
18190 (let ((fe (org-read-agenda-file-list t)) b u)
18191 (while (setq b (find-buffer-visiting org-agenda-files))
18192 (kill-buffer b))
18193 (with-temp-file org-agenda-files
18194 (insert
18195 (mapconcat
18196 (lambda (f) ;; Keep un-expanded entries.
18197 (if (setq u (assoc f fe))
18198 (cdr u)
18200 list "\n")
18201 "\n")))
18202 (let ((org-mode-hook nil) (org-inhibit-startup t)
18203 (org-insert-mode-line-in-empty-file nil))
18204 (setq org-agenda-files list)
18205 (customize-save-variable 'org-agenda-files org-agenda-files))))
18207 (defun org-read-agenda-file-list (&optional pair-with-expansion)
18208 "Read the list of agenda files from a file.
18209 If PAIR-WITH-EXPANSION is t return pairs with un-expanded
18210 filenames, used by `org-store-new-agenda-file-list' to write back
18211 un-expanded file names."
18212 (when (file-directory-p org-agenda-files)
18213 (error "`org-agenda-files' cannot be a single directory"))
18214 (when (stringp org-agenda-files)
18215 (with-temp-buffer
18216 (insert-file-contents org-agenda-files)
18217 (mapcar
18218 (lambda (f)
18219 (let ((e (expand-file-name (substitute-in-file-name f)
18220 org-directory)))
18221 (if pair-with-expansion
18222 (cons e f)
18223 e)))
18224 (org-split-string (buffer-string) "[ \t\r\n]*?[\r\n][ \t\r\n]*")))))
18226 ;;;###autoload
18227 (defun org-cycle-agenda-files ()
18228 "Cycle through the files in `org-agenda-files'.
18229 If the current buffer visits an agenda file, find the next one in the list.
18230 If the current buffer does not, find the first agenda file."
18231 (interactive)
18232 (let* ((fs (org-agenda-files t))
18233 (files (append fs (list (car fs))))
18234 (tcf (if buffer-file-name (file-truename buffer-file-name)))
18235 file)
18236 (unless files (user-error "No agenda files"))
18237 (catch 'exit
18238 (while (setq file (pop files))
18239 (if (equal (file-truename file) tcf)
18240 (when (car files)
18241 (find-file (car files))
18242 (throw 'exit t))))
18243 (find-file (car fs)))
18244 (if (buffer-base-buffer) (org-pop-to-buffer-same-window (buffer-base-buffer)))))
18246 (defun org-agenda-file-to-front (&optional to-end)
18247 "Move/add the current file to the top of the agenda file list.
18248 If the file is not present in the list, it is added to the front. If it is
18249 present, it is moved there. With optional argument TO-END, add/move to the
18250 end of the list."
18251 (interactive "P")
18252 (let ((org-agenda-skip-unavailable-files nil)
18253 (file-alist (mapcar (lambda (x)
18254 (cons (file-truename x) x))
18255 (org-agenda-files t)))
18256 (ctf (file-truename
18257 (or buffer-file-name
18258 (user-error "Please save the current buffer to a file"))))
18259 x had)
18260 (setq x (assoc ctf file-alist) had x)
18262 (if (not x) (setq x (cons ctf (abbreviate-file-name buffer-file-name))))
18263 (if to-end
18264 (setq file-alist (append (delq x file-alist) (list x)))
18265 (setq file-alist (cons x (delq x file-alist))))
18266 (org-store-new-agenda-file-list (mapcar 'cdr file-alist))
18267 (org-install-agenda-files-menu)
18268 (message "File %s to %s of agenda file list"
18269 (if had "moved" "added") (if to-end "end" "front"))))
18271 (defun org-remove-file (&optional file)
18272 "Remove current file from the list of files in variable `org-agenda-files'.
18273 These are the files which are being checked for agenda entries.
18274 Optional argument FILE means use this file instead of the current."
18275 (interactive)
18276 (let* ((org-agenda-skip-unavailable-files nil)
18277 (file (or file buffer-file-name
18278 (user-error "Current buffer does not visit a file")))
18279 (true-file (file-truename file))
18280 (afile (abbreviate-file-name file))
18281 (files (delq nil (mapcar
18282 (lambda (x)
18283 (if (equal true-file
18284 (file-truename x))
18285 nil x))
18286 (org-agenda-files t)))))
18287 (if (not (= (length files) (length (org-agenda-files t))))
18288 (progn
18289 (org-store-new-agenda-file-list files)
18290 (org-install-agenda-files-menu)
18291 (message "Removed file: %s" afile))
18292 (message "File was not in list: %s (not removed)" afile))))
18294 (defun org-file-menu-entry (file)
18295 (vector file (list 'find-file file) t))
18297 (defun org-check-agenda-file (file)
18298 "Make sure FILE exists. If not, ask user what to do."
18299 (when (not (file-exists-p file))
18300 (message "Non-existent agenda file %s. [R]emove from list or [A]bort?"
18301 (abbreviate-file-name file))
18302 (let ((r (downcase (read-char-exclusive))))
18303 (cond
18304 ((equal r ?r)
18305 (org-remove-file file)
18306 (throw 'nextfile t))
18307 (t (user-error "Abort"))))))
18309 (defun org-get-agenda-file-buffer (file)
18310 "Get an agenda buffer visiting FILE.
18311 If the buffer needs to be created, add it to the list of buffers
18312 which might be released later."
18313 (let ((buf (org-find-base-buffer-visiting file)))
18314 (if buf
18315 buf ; just return it
18316 ;; Make a new buffer and remember it
18317 (setq buf (find-file-noselect file))
18318 (if buf (push buf org-agenda-new-buffers))
18319 buf)))
18321 (defun org-release-buffers (blist)
18322 "Release all buffers in list, asking the user for confirmation when needed.
18323 When a buffer is unmodified, it is just killed. When modified, it is saved
18324 \(if the user agrees) and then killed."
18325 (let (buf file)
18326 (while (setq buf (pop blist))
18327 (setq file (buffer-file-name buf))
18328 (when (and (buffer-modified-p buf)
18329 file
18330 (y-or-n-p (format "Save file %s? " file)))
18331 (with-current-buffer buf (save-buffer)))
18332 (kill-buffer buf))))
18334 (defun org-agenda-prepare-buffers (files)
18335 "Create buffers for all agenda files, protect archived trees and comments."
18336 (interactive)
18337 (let ((pa '(:org-archived t))
18338 (pc '(:org-comment t))
18339 (pall '(:org-archived t :org-comment t))
18340 (inhibit-read-only t)
18341 (org-inhibit-startup org-agenda-inhibit-startup)
18342 (rea (concat ":" org-archive-tag ":"))
18343 file re pos)
18344 (setq org-tag-alist-for-agenda nil
18345 org-tag-groups-alist-for-agenda nil)
18346 (save-excursion
18347 (save-restriction
18348 (while (setq file (pop files))
18349 (catch 'nextfile
18350 (if (bufferp file)
18351 (set-buffer file)
18352 (org-check-agenda-file file)
18353 (set-buffer (org-get-agenda-file-buffer file)))
18354 (widen)
18355 (org-set-regexps-and-options-for-tags)
18356 (setq pos (point))
18357 (goto-char (point-min))
18358 (let ((case-fold-search t))
18359 (when (search-forward "#+setupfile" nil t)
18360 ;; Don't set all regexps and options systematically as
18361 ;; this is only run for setting agenda tags from setup
18362 ;; file
18363 (org-set-regexps-and-options)))
18364 (or (memq 'category org-agenda-ignore-properties)
18365 (org-refresh-category-properties))
18366 (or (memq 'stats org-agenda-ignore-properties)
18367 (org-refresh-stats-properties))
18368 (or (memq 'effort org-agenda-ignore-properties)
18369 (org-refresh-effort-properties))
18370 (or (memq 'appt org-agenda-ignore-properties)
18371 (org-refresh-properties "APPT_WARNTIME" 'org-appt-warntime))
18372 (setq org-todo-keywords-for-agenda
18373 (append org-todo-keywords-for-agenda org-todo-keywords-1))
18374 (setq org-done-keywords-for-agenda
18375 (append org-done-keywords-for-agenda org-done-keywords))
18376 (setq org-todo-keyword-alist-for-agenda
18377 (append org-todo-keyword-alist-for-agenda org-todo-key-alist))
18378 (setq org-tag-alist-for-agenda
18379 (org-uniquify
18380 (append org-tag-alist-for-agenda
18381 org-tag-alist
18382 org-tag-persistent-alist)))
18383 (if org-group-tags
18384 (setq org-tag-groups-alist-for-agenda
18385 (org-uniquify-alist
18386 (append org-tag-groups-alist-for-agenda org-tag-groups-alist))))
18387 (org-with-silent-modifications
18388 (save-excursion
18389 (remove-text-properties (point-min) (point-max) pall)
18390 (when org-agenda-skip-archived-trees
18391 (goto-char (point-min))
18392 (while (re-search-forward rea nil t)
18393 (if (org-at-heading-p t)
18394 (add-text-properties (point-at-bol) (org-end-of-subtree t) pa))))
18395 (goto-char (point-min))
18396 (setq re (format "^\\* .*\\<%s\\>" org-comment-string))
18397 (while (re-search-forward re nil t)
18398 (when (save-match-data (org-in-commented-heading-p t))
18399 (add-text-properties
18400 (match-beginning 0) (org-end-of-subtree t) pc)))))
18401 (goto-char pos)))))
18402 (setq org-todo-keywords-for-agenda
18403 (org-uniquify org-todo-keywords-for-agenda))
18404 (setq org-todo-keyword-alist-for-agenda
18405 (org-uniquify org-todo-keyword-alist-for-agenda))))
18408 ;;;; CDLaTeX minor mode
18410 (defvar org-cdlatex-mode-map (make-sparse-keymap)
18411 "Keymap for the minor `org-cdlatex-mode'.")
18413 (org-defkey org-cdlatex-mode-map "_" 'org-cdlatex-underscore-caret)
18414 (org-defkey org-cdlatex-mode-map "^" 'org-cdlatex-underscore-caret)
18415 (org-defkey org-cdlatex-mode-map "`" 'cdlatex-math-symbol)
18416 (org-defkey org-cdlatex-mode-map "'" 'org-cdlatex-math-modify)
18417 (org-defkey org-cdlatex-mode-map "\C-c{" 'cdlatex-environment)
18419 (defvar org-cdlatex-texmathp-advice-is-done nil
18420 "Flag remembering if we have applied the advice to texmathp already.")
18422 (define-minor-mode org-cdlatex-mode
18423 "Toggle the minor `org-cdlatex-mode'.
18424 This mode supports entering LaTeX environment and math in LaTeX fragments
18425 in Org-mode.
18426 \\{org-cdlatex-mode-map}"
18427 nil " OCDL" nil
18428 (when org-cdlatex-mode
18429 (require 'cdlatex)
18430 (run-hooks 'cdlatex-mode-hook)
18431 (cdlatex-compute-tables))
18432 (unless org-cdlatex-texmathp-advice-is-done
18433 (setq org-cdlatex-texmathp-advice-is-done t)
18434 (defadvice texmathp (around org-math-always-on activate)
18435 "Always return t in org-mode buffers.
18436 This is because we want to insert math symbols without dollars even outside
18437 the LaTeX math segments. If Orgmode thinks that point is actually inside
18438 an embedded LaTeX fragment, let texmathp do its job.
18439 \\[org-cdlatex-mode-map]"
18440 (interactive)
18441 (let (p)
18442 (cond
18443 ((not (derived-mode-p 'org-mode)) ad-do-it)
18444 ((eq this-command 'cdlatex-math-symbol)
18445 (setq ad-return-value t
18446 texmathp-why '("cdlatex-math-symbol in org-mode" . 0)))
18448 (let ((p (org-inside-LaTeX-fragment-p)))
18449 (if (and p (member (car p) (plist-get org-format-latex-options :matchers)))
18450 (setq ad-return-value t
18451 texmathp-why '("Org-mode embedded math" . 0))
18452 (if p ad-do-it)))))))))
18454 (defun turn-on-org-cdlatex ()
18455 "Unconditionally turn on `org-cdlatex-mode'."
18456 (org-cdlatex-mode 1))
18458 (defun org-try-cdlatex-tab ()
18459 "Check if it makes sense to execute `cdlatex-tab', and do it if yes.
18460 It makes sense to do so if `org-cdlatex-mode' is active and if the cursor is
18461 - inside a LaTeX fragment, or
18462 - after the first word in a line, where an abbreviation expansion could
18463 insert a LaTeX environment."
18464 (when org-cdlatex-mode
18465 (cond
18466 ;; Before any word on the line: No expansion possible.
18467 ((save-excursion (skip-chars-backward " \t") (bolp)) nil)
18468 ;; Just after first word on the line: Expand it. Make sure it
18469 ;; cannot happen on headlines, though.
18470 ((save-excursion
18471 (skip-chars-backward "a-zA-Z0-9*")
18472 (skip-chars-backward " \t")
18473 (and (bolp) (not (org-at-heading-p))))
18474 (cdlatex-tab) t)
18475 ((org-inside-LaTeX-fragment-p) (cdlatex-tab) t))))
18477 (defun org-cdlatex-underscore-caret (&optional arg)
18478 "Execute `cdlatex-sub-superscript' in LaTeX fragments.
18479 Revert to the normal definition outside of these fragments."
18480 (interactive "P")
18481 (if (org-inside-LaTeX-fragment-p)
18482 (call-interactively 'cdlatex-sub-superscript)
18483 (let (org-cdlatex-mode)
18484 (call-interactively (key-binding (vector last-input-event))))))
18486 (defun org-cdlatex-math-modify (&optional arg)
18487 "Execute `cdlatex-math-modify' in LaTeX fragments.
18488 Revert to the normal definition outside of these fragments."
18489 (interactive "P")
18490 (if (org-inside-LaTeX-fragment-p)
18491 (call-interactively 'cdlatex-math-modify)
18492 (let (org-cdlatex-mode)
18493 (call-interactively (key-binding (vector last-input-event))))))
18497 ;;;; LaTeX fragments
18499 (defun org-inside-LaTeX-fragment-p ()
18500 "Test if point is inside a LaTeX fragment.
18501 I.e. after a \\begin, \\(, \\[, $, or $$, without the corresponding closing
18502 sequence appearing also before point.
18503 Even though the matchers for math are configurable, this function assumes
18504 that \\begin, \\(, \\[, and $$ are always used. Only the single dollar
18505 delimiters are skipped when they have been removed by customization.
18506 The return value is nil, or a cons cell with the delimiter and the
18507 position of this delimiter.
18509 This function does a reasonably good job, but can locally be fooled by
18510 for example currency specifications. For example it will assume being in
18511 inline math after \"$22.34\". The LaTeX fragment formatter will only format
18512 fragments that are properly closed, but during editing, we have to live
18513 with the uncertainty caused by missing closing delimiters. This function
18514 looks only before point, not after."
18515 (catch 'exit
18516 (let ((pos (point))
18517 (dodollar (member "$" (plist-get org-format-latex-options :matchers)))
18518 (lim (progn
18519 (re-search-backward (concat "^\\(" paragraph-start "\\)") nil t)
18520 (point)))
18521 dd-on str (start 0) m re)
18522 (goto-char pos)
18523 (when dodollar
18524 (setq str (concat (buffer-substring lim (point)) "\000 X$.")
18525 re (nth 1 (assoc "$" org-latex-regexps)))
18526 (while (string-match re str start)
18527 (cond
18528 ((= (match-end 0) (length str))
18529 (throw 'exit (cons "$" (+ lim (match-beginning 0) 1))))
18530 ((= (match-end 0) (- (length str) 5))
18531 (throw 'exit nil))
18532 (t (setq start (match-end 0))))))
18533 (when (setq m (re-search-backward "\\(\\\\begin{[^}]*}\\|\\\\(\\|\\\\\\[\\)\\|\\(\\\\end{[^}]*}\\|\\\\)\\|\\\\\\]\\)\\|\\(\\$\\$\\)" lim t))
18534 (goto-char pos)
18535 (and (match-beginning 1) (throw 'exit (cons (match-string 1) m)))
18536 (and (match-beginning 2) (throw 'exit nil))
18537 ;; count $$
18538 (while (re-search-backward "\\$\\$" lim t)
18539 (setq dd-on (not dd-on)))
18540 (goto-char pos)
18541 (if dd-on (cons "$$" m))))))
18543 (defun org-inside-latex-macro-p ()
18544 "Is point inside a LaTeX macro or its arguments?"
18545 (save-match-data
18546 (org-in-regexp
18547 "\\\\[a-zA-Z]+\\*?\\(\\(\\[[^][\n{}]*\\]\\)\\|\\({[^{}\n]*}\\)\\)*")))
18549 (defvar org-latex-fragment-image-overlays nil
18550 "List of overlays carrying the images of latex fragments.")
18551 (make-variable-buffer-local 'org-latex-fragment-image-overlays)
18553 (defun org-remove-latex-fragment-image-overlays ()
18554 "Remove all overlays with LaTeX fragment images in current buffer."
18555 (mapc 'delete-overlay org-latex-fragment-image-overlays)
18556 (setq org-latex-fragment-image-overlays nil))
18558 (defun org-preview-latex-fragment (&optional subtree)
18559 "Preview the LaTeX fragment at point, or all locally or globally.
18560 If the cursor is in a LaTeX fragment, create the image and overlay
18561 it over the source code. If there is no fragment at point, display
18562 all fragments in the current text, from one headline to the next. With
18563 prefix SUBTREE, display all fragments in the current subtree. With a
18564 double prefix arg \\[universal-argument] \\[universal-argument], or when \
18565 the cursor is before the first headline,
18566 display all fragments in the buffer.
18567 The images can be removed again with \\[org-ctrl-c-ctrl-c]."
18568 (interactive "P")
18569 (unless buffer-file-name
18570 (user-error "Can't preview LaTeX fragment in a non-file buffer"))
18571 (when (display-graphic-p)
18572 (org-remove-latex-fragment-image-overlays)
18573 (save-excursion
18574 (save-restriction
18575 (let (beg end at msg)
18576 (cond
18577 ((or (equal subtree '(16))
18578 (not (save-excursion
18579 (re-search-backward org-outline-regexp-bol nil t))))
18580 (setq beg (point-min) end (point-max)
18581 msg "Creating images for buffer...%s"))
18582 ((equal subtree '(4))
18583 (org-back-to-heading)
18584 (setq beg (point) end (org-end-of-subtree t)
18585 msg "Creating images for subtree...%s"))
18587 (if (setq at (org-inside-LaTeX-fragment-p))
18588 (goto-char (max (point-min) (- (cdr at) 2)))
18589 (org-back-to-heading))
18590 (setq beg (point) end (progn (outline-next-heading) (point))
18591 msg (if at "Creating image...%s"
18592 "Creating images for entry...%s"))))
18593 (message msg "")
18594 (narrow-to-region beg end)
18595 (goto-char beg)
18596 (org-format-latex
18597 (concat org-latex-preview-ltxpng-directory (file-name-sans-extension
18598 (file-name-nondirectory
18599 buffer-file-name)))
18600 default-directory 'overlays msg at 'forbuffer
18601 org-latex-create-formula-image-program)
18602 (message msg "done. Use `C-c C-c' to remove images."))))))
18604 (defun org-format-latex (prefix &optional dir overlays msg at
18605 forbuffer processing-type)
18606 "Replace LaTeX fragments with links to an image, and produce images.
18607 Some of the options can be changed using the variable
18608 `org-format-latex-options'."
18609 (if (and overlays (fboundp 'clear-image-cache)) (clear-image-cache))
18610 (let* ((prefixnodir (file-name-nondirectory prefix))
18611 (absprefix (expand-file-name prefix dir))
18612 (todir (file-name-directory absprefix))
18613 (opt org-format-latex-options)
18614 (optnew org-format-latex-options)
18615 (matchers (plist-get opt :matchers))
18616 (re-list org-latex-regexps)
18617 (cnt 0) txt hash link beg end re e checkdir
18618 string
18619 m n block-type block linkfile movefile ov)
18620 ;; Check the different regular expressions
18621 (while (setq e (pop re-list))
18622 (setq m (car e) re (nth 1 e) n (nth 2 e) block-type (nth 3 e)
18623 block (if block-type "\n\n" ""))
18624 (when (member m matchers)
18625 (goto-char (point-min))
18626 (while (re-search-forward re nil t)
18627 (when (and (or (not at) (equal (cdr at) (match-beginning n)))
18628 (or (not overlays)
18629 (not (eq (get-char-property (match-beginning n)
18630 'org-overlay-type)
18631 'org-latex-overlay))))
18632 (cond
18633 ((eq processing-type 'verbatim))
18634 ((eq processing-type 'mathjax)
18635 ;; Prepare for MathJax processing.
18636 (setq string (match-string n))
18637 (when (member m '("$" "$1"))
18638 (save-excursion
18639 (delete-region (match-beginning n) (match-end n))
18640 (goto-char (match-beginning n))
18641 (insert (concat "\\(" (substring string 1 -1) "\\)")))))
18642 ((or (eq processing-type 'dvipng)
18643 (eq processing-type 'imagemagick))
18644 ;; Process to an image.
18645 (setq txt (match-string n)
18646 beg (match-beginning n) end (match-end n)
18647 cnt (1+ cnt))
18648 (let ((face (face-at-point))
18649 (fg (plist-get opt :foreground))
18650 (bg (plist-get opt :background))
18651 ;; Ensure full list is printed.
18652 print-length print-level)
18653 (when forbuffer
18654 ;; Get the colors from the face at point.
18655 (goto-char beg)
18656 (when (eq fg 'auto)
18657 (setq fg (face-attribute face :foreground nil 'default)))
18658 (when (eq bg 'auto)
18659 (setq bg (face-attribute face :background nil 'default)))
18660 (setq optnew (copy-sequence opt))
18661 (plist-put optnew :foreground fg)
18662 (plist-put optnew :background bg))
18663 (setq hash (sha1 (prin1-to-string
18664 (list org-format-latex-header
18665 org-latex-default-packages-alist
18666 org-latex-packages-alist
18667 org-format-latex-options
18668 forbuffer txt fg bg)))
18669 linkfile (format "%s_%s.png" prefix hash)
18670 movefile (format "%s_%s.png" absprefix hash)))
18671 (setq link (concat block "[[file:" linkfile "]]" block))
18672 (if msg (message msg cnt))
18673 (goto-char beg)
18674 (unless checkdir ; Ensure the directory exists.
18675 (setq checkdir t)
18676 (or (file-directory-p todir) (make-directory todir t)))
18677 (unless (file-exists-p movefile)
18678 (org-create-formula-image
18679 txt movefile optnew forbuffer processing-type))
18680 (if overlays
18681 (progn
18682 (mapc (lambda (o)
18683 (if (eq (overlay-get o 'org-overlay-type)
18684 'org-latex-overlay)
18685 (delete-overlay o)))
18686 (overlays-in beg end))
18687 (setq ov (make-overlay beg end))
18688 (overlay-put ov 'org-overlay-type 'org-latex-overlay)
18689 (if (featurep 'xemacs)
18690 (progn
18691 (overlay-put ov 'invisible t)
18692 (overlay-put
18693 ov 'end-glyph
18694 (make-glyph (vector 'png :file movefile))))
18695 (overlay-put
18696 ov 'display
18697 (list 'image :type 'png :file movefile :ascent 'center)))
18698 (push ov org-latex-fragment-image-overlays)
18699 (goto-char end))
18700 (delete-region beg end)
18701 (insert (org-add-props link
18702 (list 'org-latex-src
18703 (replace-regexp-in-string
18704 "\"" "" txt)
18705 'org-latex-src-embed-type
18706 (if block-type 'paragraph 'character))))))
18707 ((eq processing-type 'mathml)
18708 ;; Process to MathML
18709 (unless (save-match-data (org-format-latex-mathml-available-p))
18710 (user-error "LaTeX to MathML converter not configured"))
18711 (setq txt (match-string n)
18712 beg (match-beginning n) end (match-end n)
18713 cnt (1+ cnt))
18714 (if msg (message msg cnt))
18715 (goto-char beg)
18716 (delete-region beg end)
18717 (insert (org-format-latex-as-mathml
18718 txt block-type prefix dir)))
18720 (error "Unknown conversion type %s for LaTeX fragments"
18721 processing-type)))))))))
18723 (defun org-create-math-formula (latex-frag &optional mathml-file)
18724 "Convert LATEX-FRAG to MathML and store it in MATHML-FILE.
18725 Use `org-latex-to-mathml-convert-command'. If the conversion is
18726 sucessful, return the portion between \"<math...> </math>\"
18727 elements otherwise return nil. When MATHML-FILE is specified,
18728 write the results in to that file. When invoked as an
18729 interactive command, prompt for LATEX-FRAG, with initial value
18730 set to the current active region and echo the results for user
18731 inspection."
18732 (interactive (list (let ((frag (when (org-region-active-p)
18733 (buffer-substring-no-properties
18734 (region-beginning) (region-end)))))
18735 (read-string "LaTeX Fragment: " frag nil frag))))
18736 (unless latex-frag (user-error "Invalid LaTeX fragment"))
18737 (let* ((tmp-in-file (file-relative-name
18738 (make-temp-name (expand-file-name "ltxmathml-in"))))
18739 (ignore (write-region latex-frag nil tmp-in-file))
18740 (tmp-out-file (file-relative-name
18741 (make-temp-name (expand-file-name "ltxmathml-out"))))
18742 (cmd (format-spec
18743 org-latex-to-mathml-convert-command
18744 `((?j . ,(shell-quote-argument
18745 (expand-file-name org-latex-to-mathml-jar-file)))
18746 (?I . ,(shell-quote-argument tmp-in-file))
18747 (?o . ,(shell-quote-argument tmp-out-file)))))
18748 mathml shell-command-output)
18749 (when (org-called-interactively-p 'any)
18750 (unless (org-format-latex-mathml-available-p)
18751 (user-error "LaTeX to MathML converter not configured")))
18752 (message "Running %s" cmd)
18753 (setq shell-command-output (shell-command-to-string cmd))
18754 (setq mathml
18755 (when (file-readable-p tmp-out-file)
18756 (with-current-buffer (find-file-noselect tmp-out-file t)
18757 (goto-char (point-min))
18758 (when (re-search-forward
18759 (concat
18760 (regexp-quote
18761 "<math xmlns=\"http://www.w3.org/1998/Math/MathML\">")
18762 "\\(.\\|\n\\)*"
18763 (regexp-quote "</math>")) nil t)
18764 (prog1 (match-string 0) (kill-buffer))))))
18765 (cond
18766 (mathml
18767 (setq mathml
18768 (concat "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" mathml))
18769 (when mathml-file
18770 (write-region mathml nil mathml-file))
18771 (when (org-called-interactively-p 'any)
18772 (message mathml)))
18773 ((message "LaTeX to MathML conversion failed")
18774 (message shell-command-output)))
18775 (delete-file tmp-in-file)
18776 (when (file-exists-p tmp-out-file)
18777 (delete-file tmp-out-file))
18778 mathml))
18780 (defun org-format-latex-as-mathml (latex-frag latex-frag-type
18781 prefix &optional dir)
18782 "Use `org-create-math-formula' but check local cache first."
18783 (let* ((absprefix (expand-file-name prefix dir))
18784 (print-length nil) (print-level nil)
18785 (formula-id (concat
18786 "formula-"
18787 (sha1
18788 (prin1-to-string
18789 (list latex-frag
18790 org-latex-to-mathml-convert-command)))))
18791 (formula-cache (format "%s-%s.mathml" absprefix formula-id))
18792 (formula-cache-dir (file-name-directory formula-cache)))
18794 (unless (file-directory-p formula-cache-dir)
18795 (make-directory formula-cache-dir t))
18797 (unless (file-exists-p formula-cache)
18798 (org-create-math-formula latex-frag formula-cache))
18800 (if (file-exists-p formula-cache)
18801 ;; Successful conversion. Return the link to MathML file.
18802 (org-add-props
18803 (format "[[file:%s]]" (file-relative-name formula-cache dir))
18804 (list 'org-latex-src (replace-regexp-in-string "\"" "" latex-frag)
18805 'org-latex-src-embed-type (if latex-frag-type
18806 'paragraph 'character)))
18807 ;; Failed conversion. Return the LaTeX fragment verbatim
18808 latex-frag)))
18810 (defun org-create-formula-image (string tofile options buffer &optional type)
18811 "Create an image from LaTeX source using dvipng or convert.
18812 This function calls either `org-create-formula-image-with-dvipng'
18813 or `org-create-formula-image-with-imagemagick' depending on the
18814 value of `org-latex-create-formula-image-program' or on the value
18815 of the optional TYPE variable.
18817 Note: ultimately these two function should be combined as they
18818 share a good deal of logic."
18819 (org-check-external-command
18820 "latex" "needed to convert LaTeX fragments to images")
18821 (funcall
18822 (case (or type org-latex-create-formula-image-program)
18823 ('dvipng
18824 (org-check-external-command
18825 "dvipng" "needed to convert LaTeX fragments to images")
18826 'org-create-formula-image-with-dvipng)
18827 ('imagemagick
18828 (org-check-external-command
18829 "convert" "you need to install imagemagick")
18830 'org-create-formula-image-with-imagemagick)
18831 (t (error
18832 "Invalid value of `org-latex-create-formula-image-program'")))
18833 string tofile options buffer))
18835 (declare-function org-export-get-backend "ox" (name))
18836 (declare-function org-export--get-global-options "ox" (&optional backend))
18837 (declare-function org-export--get-inbuffer-options "ox" (&optional backend))
18838 (declare-function org-latex-guess-inputenc "ox-latex" (header))
18839 (declare-function org-latex-guess-babel-language "ox-latex" (header info))
18840 (defun org-create-formula--latex-header ()
18841 "Return LaTeX header appropriate for previewing a LaTeX snippet."
18842 (let ((info (org-combine-plists (org-export--get-global-options
18843 (org-export-get-backend 'latex))
18844 (org-export--get-inbuffer-options
18845 (org-export-get-backend 'latex)))))
18846 (org-latex-guess-babel-language
18847 (org-latex-guess-inputenc
18848 (org-splice-latex-header
18849 org-format-latex-header
18850 org-latex-default-packages-alist
18851 org-latex-packages-alist t
18852 (plist-get info :latex-header)))
18853 info)))
18855 ;; This function borrows from Ganesh Swami's latex2png.el
18856 (defun org-create-formula-image-with-dvipng (string tofile options buffer)
18857 "This calls dvipng."
18858 (require 'ox-latex)
18859 (let* ((tmpdir (if (featurep 'xemacs)
18860 (temp-directory)
18861 temporary-file-directory))
18862 (texfilebase (make-temp-name
18863 (expand-file-name "orgtex" tmpdir)))
18864 (texfile (concat texfilebase ".tex"))
18865 (dvifile (concat texfilebase ".dvi"))
18866 (pngfile (concat texfilebase ".png"))
18867 (fnh (if (featurep 'xemacs)
18868 (font-height (face-font 'default))
18869 (face-attribute 'default :height nil)))
18870 (scale (or (plist-get options (if buffer :scale :html-scale)) 1.0))
18871 (dpi (number-to-string (* scale (floor (* 0.9 (if buffer fnh 140.))))))
18872 (fg (or (plist-get options (if buffer :foreground :html-foreground))
18873 "Black"))
18874 (bg (or (plist-get options (if buffer :background :html-background))
18875 "Transparent")))
18876 (if (eq fg 'default) (setq fg (org-dvipng-color :foreground))
18877 (unless (string= fg "Transparent") (setq fg (org-dvipng-color-format fg))))
18878 (if (eq bg 'default) (setq bg (org-dvipng-color :background))
18879 (unless (string= bg "Transparent") (setq bg (org-dvipng-color-format bg))))
18880 (let ((latex-header (org-create-formula--latex-header)))
18881 (with-temp-file texfile
18882 (insert latex-header)
18883 (insert "\n\\begin{document}\n" string "\n\\end{document}\n")))
18884 (let ((dir default-directory))
18885 (ignore-errors
18886 (cd tmpdir)
18887 (call-process "latex" nil nil nil texfile))
18888 (cd dir))
18889 (if (not (file-exists-p dvifile))
18890 (progn (message "Failed to create dvi file from %s" texfile) nil)
18891 (ignore-errors
18892 (if (featurep 'xemacs)
18893 (call-process "dvipng" nil nil nil
18894 "-fg" fg "-bg" bg
18895 "-T" "tight"
18896 "-o" pngfile
18897 dvifile)
18898 (call-process "dvipng" nil nil nil
18899 "-fg" fg "-bg" bg
18900 "-D" dpi
18901 ;;"-x" scale "-y" scale
18902 "-T" "tight"
18903 "-o" pngfile
18904 dvifile)))
18905 (if (not (file-exists-p pngfile))
18906 (if org-format-latex-signal-error
18907 (error "Failed to create png file from %s" texfile)
18908 (message "Failed to create png file from %s" texfile)
18909 nil)
18910 ;; Use the requested file name and clean up
18911 (copy-file pngfile tofile 'replace)
18912 (loop for e in '(".dvi" ".tex" ".aux" ".log" ".png" ".out") do
18913 (if (file-exists-p (concat texfilebase e))
18914 (delete-file (concat texfilebase e))))
18915 pngfile))))
18917 (declare-function org-latex-compile "ox-latex" (texfile &optional snippet))
18918 (defun org-create-formula-image-with-imagemagick (string tofile options buffer)
18919 "This calls convert, which is included into imagemagick."
18920 (require 'ox-latex)
18921 (let* ((tmpdir (if (featurep 'xemacs)
18922 (temp-directory)
18923 temporary-file-directory))
18924 (texfilebase (make-temp-name
18925 (expand-file-name "orgtex" tmpdir)))
18926 (texfile (concat texfilebase ".tex"))
18927 (pdffile (concat texfilebase ".pdf"))
18928 (pngfile (concat texfilebase ".png"))
18929 (fnh (if (featurep 'xemacs)
18930 (font-height (face-font 'default))
18931 (face-attribute 'default :height nil)))
18932 (scale (or (plist-get options (if buffer :scale :html-scale)) 1.0))
18933 (dpi (number-to-string (* scale (floor (if buffer fnh 120.)))))
18934 (fg (or (plist-get options (if buffer :foreground :html-foreground))
18935 "black"))
18936 (bg (or (plist-get options (if buffer :background :html-background))
18937 "white")))
18938 (if (eq fg 'default) (setq fg (org-latex-color :foreground))
18939 (setq fg (org-latex-color-format fg)))
18940 (if (eq bg 'default) (setq bg (org-latex-color :background))
18941 (setq bg (org-latex-color-format
18942 (if (string= bg "Transparent") "white" bg))))
18943 (let ((latex-header (org-create-formula--latex-header)))
18944 (with-temp-file texfile
18945 (insert latex-header)
18946 (insert "\n\\begin{document}\n"
18947 "\\definecolor{fg}{rgb}{" fg "}\n"
18948 "\\definecolor{bg}{rgb}{" bg "}\n"
18949 "\n\\pagecolor{bg}\n"
18950 "\n{\\color{fg}\n"
18951 string
18952 "\n}\n"
18953 "\n\\end{document}\n")))
18954 (org-latex-compile texfile t)
18955 (if (not (file-exists-p pdffile))
18956 (progn (message "Failed to create pdf file from %s" texfile) nil)
18957 (ignore-errors
18958 (if (featurep 'xemacs)
18959 (call-process "convert" nil nil nil
18960 "-density" "96"
18961 "-trim"
18962 "-antialias"
18963 pdffile
18964 "-quality" "100"
18965 ;; "-sharpen" "0x1.0"
18966 pngfile)
18967 (call-process "convert" nil nil nil
18968 "-density" dpi
18969 "-trim"
18970 "-antialias"
18971 pdffile
18972 "-quality" "100"
18973 ;; "-sharpen" "0x1.0"
18974 pngfile)))
18975 (if (not (file-exists-p pngfile))
18976 (if org-format-latex-signal-error
18977 (error "Failed to create png file from %s" texfile)
18978 (message "Failed to create png file from %s" texfile)
18979 nil)
18980 ;; Use the requested file name and clean up
18981 (copy-file pngfile tofile 'replace)
18982 (loop for e in '(".pdf" ".tex" ".aux" ".log" ".png") do
18983 (if (file-exists-p (concat texfilebase e))
18984 (delete-file (concat texfilebase e))))
18985 pngfile))))
18987 (defun org-splice-latex-header (tpl def-pkg pkg snippets-p &optional extra)
18988 "Fill a LaTeX header template TPL.
18989 In the template, the following place holders will be recognized:
18991 [DEFAULT-PACKAGES] \\usepackage statements for DEF-PKG
18992 [NO-DEFAULT-PACKAGES] do not include DEF-PKG
18993 [PACKAGES] \\usepackage statements for PKG
18994 [NO-PACKAGES] do not include PKG
18995 [EXTRA] the string EXTRA
18996 [NO-EXTRA] do not include EXTRA
18998 For backward compatibility, if both the positive and the negative place
18999 holder is missing, the positive one (without the \"NO-\") will be
19000 assumed to be present at the end of the template.
19001 DEF-PKG and PKG are assumed to be alists of options/packagename lists.
19002 EXTRA is a string.
19003 SNIPPETS-P indicates if this is run to create snippet images for HTML."
19004 (let (rpl (end ""))
19005 (if (string-match "^[ \t]*\\[\\(NO-\\)?DEFAULT-PACKAGES\\][ \t]*\n?" tpl)
19006 (setq rpl (if (or (match-end 1) (not def-pkg))
19007 "" (org-latex-packages-to-string def-pkg snippets-p t))
19008 tpl (replace-match rpl t t tpl))
19009 (if def-pkg (setq end (org-latex-packages-to-string def-pkg snippets-p))))
19011 (if (string-match "\\[\\(NO-\\)?PACKAGES\\][ \t]*\n?" tpl)
19012 (setq rpl (if (or (match-end 1) (not pkg))
19013 "" (org-latex-packages-to-string pkg snippets-p t))
19014 tpl (replace-match rpl t t tpl))
19015 (if pkg (setq end
19016 (concat end "\n"
19017 (org-latex-packages-to-string pkg snippets-p)))))
19019 (if (string-match "\\[\\(NO-\\)?EXTRA\\][ \t]*\n?" tpl)
19020 (setq rpl (if (or (match-end 1) (not extra))
19021 "" (concat extra "\n"))
19022 tpl (replace-match rpl t t tpl))
19023 (if (and extra (string-match "\\S-" extra))
19024 (setq end (concat end "\n" extra))))
19026 (if (string-match "\\S-" end)
19027 (concat tpl "\n" end)
19028 tpl)))
19030 (defun org-latex-packages-to-string (pkg &optional snippets-p newline)
19031 "Turn an alist of packages into a string with the \\usepackage macros."
19032 (setq pkg (mapconcat (lambda(p)
19033 (cond
19034 ((stringp p) p)
19035 ((and snippets-p (>= (length p) 3) (not (nth 2 p)))
19036 (format "%% Package %s omitted" (cadr p)))
19037 ((equal "" (car p))
19038 (format "\\usepackage{%s}" (cadr p)))
19040 (format "\\usepackage[%s]{%s}"
19041 (car p) (cadr p)))))
19043 "\n"))
19044 (if newline (concat pkg "\n") pkg))
19046 (defun org-dvipng-color (attr)
19047 "Return a RGB color specification for dvipng."
19048 (apply 'format "rgb %s %s %s"
19049 (mapcar 'org-normalize-color
19050 (if (featurep 'xemacs)
19051 (color-rgb-components
19052 (face-property 'default
19053 (cond ((eq attr :foreground) 'foreground)
19054 ((eq attr :background) 'background))))
19055 (color-values (face-attribute 'default attr nil))))))
19057 (defun org-dvipng-color-format (color-name)
19058 "Convert COLOR-NAME to a RGB color value for dvipng."
19059 (apply 'format "rgb %s %s %s"
19060 (mapcar 'org-normalize-color
19061 (color-values color-name))))
19063 (defun org-latex-color (attr)
19064 "Return a RGB color for the LaTeX color package."
19065 (apply 'format "%s,%s,%s"
19066 (mapcar 'org-normalize-color
19067 (if (featurep 'xemacs)
19068 (color-rgb-components
19069 (face-property 'default
19070 (cond ((eq attr :foreground) 'foreground)
19071 ((eq attr :background) 'background))))
19072 (color-values (face-attribute 'default attr nil))))))
19074 (defun org-latex-color-format (color-name)
19075 "Convert COLOR-NAME to a RGB color value."
19076 (apply 'format "%s,%s,%s"
19077 (mapcar 'org-normalize-color
19078 (color-values color-name))))
19080 (defun org-normalize-color (value)
19081 "Return string to be used as color value for an RGB component."
19082 (format "%g" (/ value 65535.0)))
19086 ;; Image display
19088 (defvar org-inline-image-overlays nil)
19089 (make-variable-buffer-local 'org-inline-image-overlays)
19091 (defun org-toggle-inline-images (&optional include-linked)
19092 "Toggle the display of inline images.
19093 INCLUDE-LINKED is passed to `org-display-inline-images'."
19094 (interactive "P")
19095 (if org-inline-image-overlays
19096 (progn
19097 (org-remove-inline-images)
19098 (message "Inline image display turned off"))
19099 (org-display-inline-images include-linked)
19100 (if (and (org-called-interactively-p)
19101 org-inline-image-overlays)
19102 (message "%d images displayed inline"
19103 (length org-inline-image-overlays))
19104 (message "No images to display inline"))))
19106 (defun org-redisplay-inline-images ()
19107 "Refresh the display of inline images."
19108 (interactive)
19109 (if (not org-inline-image-overlays)
19110 (org-toggle-inline-images)
19111 (org-toggle-inline-images)
19112 (org-toggle-inline-images)))
19114 (defun org-display-inline-images (&optional include-linked refresh beg end)
19115 "Display inline images.
19117 An inline image is a link which follows either of these
19118 conventions:
19120 1. Its path is a file with an extension matching return value
19121 from `image-file-name-regexp' and it has no contents.
19123 2. Its description consists in a single link of the previous
19124 type.
19126 When optional argument INCLUDE-LINKED is non-nil, also links with
19127 a text description part will be inlined. This can be nice for
19128 a quick look at those images, but it does not reflect what
19129 exported files will look like.
19131 When optional argument REFRESH is non-nil, refresh existing
19132 images between BEG and END. This will create new image displays
19133 only if necessary. BEG and END default to the buffer
19134 boundaries."
19135 (interactive "P")
19136 (when (display-graphic-p)
19137 (unless refresh
19138 (org-remove-inline-images)
19139 (when (fboundp 'clear-image-cache) (clear-image-cache)))
19140 (org-with-wide-buffer
19141 (goto-char (or beg (point-min)))
19142 (let ((case-fold-search t)
19143 (file-extension-re (org-image-file-name-regexp)))
19144 (while (re-search-forward "[][]\\[\\(?:file\\|[./~]\\)" end t)
19145 (let ((link (save-match-data (org-element-context))))
19146 ;; Check if we're at an inline image.
19147 (when (and (equal (org-element-property :type link) "file")
19148 (or include-linked
19149 (not (org-element-property :contents-begin link)))
19150 (let ((parent (org-element-property :parent link)))
19151 (or (not (eq (org-element-type parent) 'link))
19152 (not (cdr (org-element-contents parent)))))
19153 (org-string-match-p file-extension-re
19154 (org-element-property :path link)))
19155 (let ((file (expand-file-name (org-element-property :path link))))
19156 (when (file-exists-p file)
19157 (let ((width
19158 ;; Apply `org-image-actual-width' specifications.
19159 (cond
19160 ((not (image-type-available-p 'imagemagick)) nil)
19161 ((eq org-image-actual-width t) nil)
19162 ((listp org-image-actual-width)
19164 ;; First try to find a width among
19165 ;; attributes associated to the paragraph
19166 ;; containing link.
19167 (let ((paragraph
19168 (let ((e link))
19169 (while (and (setq e (org-element-property
19170 :parent e))
19171 (not (eq (org-element-type e)
19172 'paragraph))))
19173 e)))
19174 (when paragraph
19175 (save-excursion
19176 (goto-char (org-element-property :begin paragraph))
19177 (when (save-match-data
19178 (re-search-forward
19179 "^[ \t]*#\\+attr_.*?: +.*?:width +\\(\\S-+\\)"
19180 (org-element-property
19181 :post-affiliated paragraph)
19183 (string-to-number (match-string 1))))))
19184 ;; Otherwise, fall-back to provided number.
19185 (car org-image-actual-width)))
19186 ((numberp org-image-actual-width)
19187 org-image-actual-width)))
19188 (old (get-char-property-and-overlay
19189 (org-element-property :begin link)
19190 'org-image-overlay)))
19191 (if (and (car-safe old) refresh)
19192 (image-refresh (overlay-get (cdr old) 'display))
19193 (let ((image (save-match-data
19194 (create-image file
19195 (and width 'imagemagick)
19197 :width width))))
19198 (when image
19199 (let* ((link
19200 ;; If inline image is the description
19201 ;; of another link, be sure to
19202 ;; consider the latter as the one to
19203 ;; apply the overlay on.
19204 (let ((parent
19205 (org-element-property :parent link)))
19206 (if (eq (org-element-type parent) 'link)
19207 parent
19208 link)))
19209 (ov (make-overlay
19210 (org-element-property :begin link)
19211 (progn
19212 (goto-char
19213 (org-element-property :end link))
19214 (skip-chars-backward " \t")
19215 (point)))))
19216 (overlay-put ov 'display image)
19217 (overlay-put ov 'face 'default)
19218 (overlay-put ov 'org-image-overlay t)
19219 (overlay-put
19220 ov 'modification-hooks
19221 (list 'org-display-inline-remove-overlay))
19222 (push ov org-inline-image-overlays)))))))))))))))
19224 (define-obsolete-function-alias
19225 'org-display-inline-modification-hook 'org-display-inline-remove-overlay "24.3")
19227 (defun org-display-inline-remove-overlay (ov after beg end &optional len)
19228 "Remove inline-display overlay if a corresponding region is modified."
19229 (let ((inhibit-modification-hooks t))
19230 (when (and ov after)
19231 (delete ov org-inline-image-overlays)
19232 (delete-overlay ov))))
19234 (defun org-remove-inline-images ()
19235 "Remove inline display of images."
19236 (interactive)
19237 (mapc 'delete-overlay org-inline-image-overlays)
19238 (setq org-inline-image-overlays nil))
19240 ;;;; Key bindings
19242 ;; Outline functions from `outline-mode-prefix-map'
19243 ;; that can be remapped in Org:
19244 (define-key org-mode-map [remap outline-mark-subtree] 'org-mark-subtree)
19245 (define-key org-mode-map [remap show-subtree] 'org-show-subtree)
19246 (define-key org-mode-map [remap outline-forward-same-level]
19247 'org-forward-heading-same-level)
19248 (define-key org-mode-map [remap outline-backward-same-level]
19249 'org-backward-heading-same-level)
19250 (define-key org-mode-map [remap show-branches]
19251 'org-kill-note-or-show-branches)
19252 (define-key org-mode-map [remap outline-promote] 'org-promote-subtree)
19253 (define-key org-mode-map [remap outline-demote] 'org-demote-subtree)
19254 (define-key org-mode-map [remap outline-insert-heading] 'org-ctrl-c-ret)
19256 ;; Outline functions from `outline-mode-prefix-map' that can not
19257 ;; be remapped in Org:
19259 ;; - the column "key binding" shows whether the Outline function is still
19260 ;; available in Org mode on the same key that it has been bound to in
19261 ;; Outline mode:
19262 ;; - "overridden": key used for a different functionality in Org mode
19263 ;; - else: key still bound to the same Outline function in Org mode
19265 ;; | Outline function | key binding | Org replacement |
19266 ;; |------------------------------------+-------------+-----------------------|
19267 ;; | `outline-next-visible-heading' | `C-c C-n' | still same function |
19268 ;; | `outline-previous-visible-heading' | `C-c C-p' | still same function |
19269 ;; | `outline-up-heading' | `C-c C-u' | still same function |
19270 ;; | `outline-move-subtree-up' | overridden | better: org-shiftup |
19271 ;; | `outline-move-subtree-down' | overridden | better: org-shiftdown |
19272 ;; | `show-entry' | overridden | no replacement |
19273 ;; | `show-children' | `C-c C-i' | visibility cycling |
19274 ;; | `show-branches' | `C-c C-k' | still same function |
19275 ;; | `show-subtree' | overridden | visibility cycling |
19276 ;; | `show-all' | overridden | no replacement |
19277 ;; | `hide-subtree' | overridden | visibility cycling |
19278 ;; | `hide-body' | overridden | no replacement |
19279 ;; | `hide-entry' | overridden | visibility cycling |
19280 ;; | `hide-leaves' | overridden | no replacement |
19281 ;; | `hide-sublevels' | overridden | no replacement |
19282 ;; | `hide-other' | overridden | no replacement |
19284 ;; Make `C-c C-x' a prefix key
19285 (org-defkey org-mode-map "\C-c\C-x" (make-sparse-keymap))
19287 ;; TAB key with modifiers
19288 (org-defkey org-mode-map "\C-i" 'org-cycle)
19289 (org-defkey org-mode-map [(tab)] 'org-cycle)
19290 (org-defkey org-mode-map [(control tab)] 'org-force-cycle-archived)
19291 (org-defkey org-mode-map "\M-\t" 'pcomplete)
19292 ;; The following line is necessary under Suse GNU/Linux
19293 (unless (featurep 'xemacs)
19294 (org-defkey org-mode-map [S-iso-lefttab] 'org-shifttab))
19295 (org-defkey org-mode-map [(shift tab)] 'org-shifttab)
19296 (define-key org-mode-map [backtab] 'org-shifttab)
19298 (org-defkey org-mode-map [(shift return)] 'org-table-copy-down)
19299 (org-defkey org-mode-map [(meta shift return)] 'org-insert-todo-heading)
19300 (org-defkey org-mode-map [(meta return)] 'org-meta-return)
19302 ;; Cursor keys with modifiers
19303 (org-defkey org-mode-map [(meta left)] 'org-metaleft)
19304 (org-defkey org-mode-map [(meta right)] 'org-metaright)
19305 (org-defkey org-mode-map [(meta up)] 'org-metaup)
19306 (org-defkey org-mode-map [(meta down)] 'org-metadown)
19308 (org-defkey org-mode-map [(control meta shift right)] 'org-increase-number-at-point)
19309 (org-defkey org-mode-map [(control meta shift left)] 'org-decrease-number-at-point)
19310 (org-defkey org-mode-map [(meta shift left)] 'org-shiftmetaleft)
19311 (org-defkey org-mode-map [(meta shift right)] 'org-shiftmetaright)
19312 (org-defkey org-mode-map [(meta shift up)] 'org-shiftmetaup)
19313 (org-defkey org-mode-map [(meta shift down)] 'org-shiftmetadown)
19315 (org-defkey org-mode-map [(shift up)] 'org-shiftup)
19316 (org-defkey org-mode-map [(shift down)] 'org-shiftdown)
19317 (org-defkey org-mode-map [(shift left)] 'org-shiftleft)
19318 (org-defkey org-mode-map [(shift right)] 'org-shiftright)
19320 (org-defkey org-mode-map [(control shift right)] 'org-shiftcontrolright)
19321 (org-defkey org-mode-map [(control shift left)] 'org-shiftcontrolleft)
19322 (org-defkey org-mode-map [(control shift up)] 'org-shiftcontrolup)
19323 (org-defkey org-mode-map [(control shift down)] 'org-shiftcontroldown)
19325 ;; Babel keys
19326 (define-key org-mode-map org-babel-key-prefix org-babel-map)
19327 (mapc (lambda (pair)
19328 (define-key org-babel-map (car pair) (cdr pair)))
19329 org-babel-key-bindings)
19331 ;;; Extra keys for tty access.
19332 ;; We only set them when really needed because otherwise the
19333 ;; menus don't show the simple keys
19335 (when (or org-use-extra-keys
19336 (featurep 'xemacs) ;; because XEmacs supports multi-device stuff
19337 (not window-system))
19338 (org-defkey org-mode-map "\C-c\C-xc" 'org-table-copy-down)
19339 (org-defkey org-mode-map "\C-c\C-xM" 'org-insert-todo-heading)
19340 (org-defkey org-mode-map "\C-c\C-xm" 'org-meta-return)
19341 (org-defkey org-mode-map [?\e (return)] 'org-meta-return)
19342 (org-defkey org-mode-map [?\e (left)] 'org-metaleft)
19343 (org-defkey org-mode-map "\C-c\C-xl" 'org-metaleft)
19344 (org-defkey org-mode-map [?\e (right)] 'org-metaright)
19345 (org-defkey org-mode-map "\C-c\C-xr" 'org-metaright)
19346 (org-defkey org-mode-map [?\e (up)] 'org-metaup)
19347 (org-defkey org-mode-map "\C-c\C-xu" 'org-metaup)
19348 (org-defkey org-mode-map [?\e (down)] 'org-metadown)
19349 (org-defkey org-mode-map "\C-c\C-xd" 'org-metadown)
19350 (org-defkey org-mode-map "\C-c\C-xL" 'org-shiftmetaleft)
19351 (org-defkey org-mode-map "\C-c\C-xR" 'org-shiftmetaright)
19352 (org-defkey org-mode-map "\C-c\C-xU" 'org-shiftmetaup)
19353 (org-defkey org-mode-map "\C-c\C-xD" 'org-shiftmetadown)
19354 (org-defkey org-mode-map [?\C-c (up)] 'org-shiftup)
19355 (org-defkey org-mode-map [?\C-c (down)] 'org-shiftdown)
19356 (org-defkey org-mode-map [?\C-c (left)] 'org-shiftleft)
19357 (org-defkey org-mode-map [?\C-c (right)] 'org-shiftright)
19358 (org-defkey org-mode-map [?\C-c ?\C-x (right)] 'org-shiftcontrolright)
19359 (org-defkey org-mode-map [?\C-c ?\C-x (left)] 'org-shiftcontrolleft)
19360 (org-defkey org-mode-map [?\e (tab)] 'pcomplete)
19361 (org-defkey org-mode-map [?\e (shift return)] 'org-insert-todo-heading)
19362 (org-defkey org-mode-map [?\e (shift left)] 'org-shiftmetaleft)
19363 (org-defkey org-mode-map [?\e (shift right)] 'org-shiftmetaright)
19364 (org-defkey org-mode-map [?\e (shift up)] 'org-shiftmetaup)
19365 (org-defkey org-mode-map [?\e (shift down)] 'org-shiftmetadown))
19367 ;; All the other keys
19369 (org-defkey org-mode-map "\C-c\C-a" 'show-all) ; in case allout messed up.
19370 (org-defkey org-mode-map "\C-c\C-r" 'org-reveal)
19371 (if (boundp 'narrow-map)
19372 (org-defkey narrow-map "s" 'org-narrow-to-subtree)
19373 (org-defkey org-mode-map "\C-xns" 'org-narrow-to-subtree))
19374 (if (boundp 'narrow-map)
19375 (org-defkey narrow-map "b" 'org-narrow-to-block)
19376 (org-defkey org-mode-map "\C-xnb" 'org-narrow-to-block))
19377 (if (boundp 'narrow-map)
19378 (org-defkey narrow-map "e" 'org-narrow-to-element)
19379 (org-defkey org-mode-map "\C-xne" 'org-narrow-to-element))
19380 (org-defkey org-mode-map "\C-\M-t" 'org-transpose-element)
19381 (org-defkey org-mode-map "\M-}" 'org-forward-element)
19382 (org-defkey org-mode-map "\M-{" 'org-backward-element)
19383 (org-defkey org-mode-map "\C-c\C-^" 'org-up-element)
19384 (org-defkey org-mode-map "\C-c\C-_" 'org-down-element)
19385 (org-defkey org-mode-map "\C-c\C-f" 'org-forward-heading-same-level)
19386 (org-defkey org-mode-map "\C-c\C-b" 'org-backward-heading-same-level)
19387 (org-defkey org-mode-map "\C-c\M-f" 'org-next-block)
19388 (org-defkey org-mode-map "\C-c\M-b" 'org-previous-block)
19389 (org-defkey org-mode-map "\C-c$" 'org-archive-subtree)
19390 (org-defkey org-mode-map "\C-c\C-x\C-s" 'org-advertized-archive-subtree)
19391 (org-defkey org-mode-map "\C-c\C-x\C-a" 'org-archive-subtree-default)
19392 (org-defkey org-mode-map "\C-c\C-xd" 'org-insert-drawer)
19393 (org-defkey org-mode-map "\C-c\C-xa" 'org-toggle-archive-tag)
19394 (org-defkey org-mode-map "\C-c\C-xA" 'org-archive-to-archive-sibling)
19395 (org-defkey org-mode-map "\C-c\C-xb" 'org-tree-to-indirect-buffer)
19396 (org-defkey org-mode-map "\C-c\C-xq" 'org-toggle-tags-groups)
19397 (org-defkey org-mode-map "\C-c\C-j" 'org-goto)
19398 (org-defkey org-mode-map "\C-c\C-t" 'org-todo)
19399 (org-defkey org-mode-map "\C-c\C-q" 'org-set-tags-command)
19400 (org-defkey org-mode-map "\C-c\C-s" 'org-schedule)
19401 (org-defkey org-mode-map "\C-c\C-d" 'org-deadline)
19402 (org-defkey org-mode-map "\C-c;" 'org-toggle-comment)
19403 (org-defkey org-mode-map "\C-c\C-w" 'org-refile)
19404 (org-defkey org-mode-map "\C-c\M-w" 'org-copy)
19405 (org-defkey org-mode-map "\C-c/" 'org-sparse-tree) ; Minor-mode reserved
19406 (org-defkey org-mode-map "\C-c\\" 'org-match-sparse-tree) ; Minor-mode res.
19407 (org-defkey org-mode-map "\C-c\C-m" 'org-ctrl-c-ret)
19408 (org-defkey org-mode-map "\M-\C-m" 'org-insert-heading)
19409 (org-defkey org-mode-map "\C-c\C-xc" 'org-clone-subtree-with-time-shift)
19410 (org-defkey org-mode-map "\C-c\C-xv" 'org-copy-visible)
19411 (org-defkey org-mode-map [(control return)] 'org-insert-heading-respect-content)
19412 (org-defkey org-mode-map [(shift control return)] 'org-insert-todo-heading-respect-content)
19413 (org-defkey org-mode-map "\C-c\C-x\C-n" 'org-next-link)
19414 (org-defkey org-mode-map "\C-c\C-x\C-p" 'org-previous-link)
19415 (org-defkey org-mode-map "\C-c\C-l" 'org-insert-link)
19416 (org-defkey org-mode-map "\C-c\M-l" 'org-insert-last-stored-link)
19417 (org-defkey org-mode-map "\C-c\C-\M-l" 'org-insert-all-links)
19418 (org-defkey org-mode-map "\C-c\C-o" 'org-open-at-point)
19419 (org-defkey org-mode-map "\C-c%" 'org-mark-ring-push)
19420 (org-defkey org-mode-map "\C-c&" 'org-mark-ring-goto)
19421 (org-defkey org-mode-map "\C-c\C-z" 'org-add-note) ; Alternative binding
19422 (org-defkey org-mode-map "\C-c." 'org-time-stamp) ; Minor-mode reserved
19423 (org-defkey org-mode-map "\C-c!" 'org-time-stamp-inactive) ; Minor-mode r.
19424 (org-defkey org-mode-map "\C-c," 'org-priority) ; Minor-mode reserved
19425 (org-defkey org-mode-map "\C-c\C-y" 'org-evaluate-time-range)
19426 (org-defkey org-mode-map "\C-c>" 'org-goto-calendar)
19427 (org-defkey org-mode-map "\C-c<" 'org-date-from-calendar)
19428 (org-defkey org-mode-map [(control ?,)] 'org-cycle-agenda-files)
19429 (org-defkey org-mode-map [(control ?\')] 'org-cycle-agenda-files)
19430 (org-defkey org-mode-map "\C-c[" 'org-agenda-file-to-front)
19431 (org-defkey org-mode-map "\C-c]" 'org-remove-file)
19432 (org-defkey org-mode-map "\C-c\C-x<" 'org-agenda-set-restriction-lock)
19433 (org-defkey org-mode-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
19434 (org-defkey org-mode-map "\C-c-" 'org-ctrl-c-minus)
19435 (org-defkey org-mode-map "\C-c*" 'org-ctrl-c-star)
19436 (org-defkey org-mode-map "\C-c^" 'org-sort)
19437 (org-defkey org-mode-map "\C-c\C-c" 'org-ctrl-c-ctrl-c)
19438 (org-defkey org-mode-map "\C-c\C-k" 'org-kill-note-or-show-branches)
19439 (org-defkey org-mode-map "\C-c#" 'org-update-statistics-cookies)
19440 (org-defkey org-mode-map [remap open-line] 'org-open-line)
19441 (org-defkey org-mode-map [remap comment-dwim] 'org-comment-dwim)
19442 (org-defkey org-mode-map [remap forward-paragraph] 'org-forward-paragraph)
19443 (org-defkey org-mode-map [remap backward-paragraph] 'org-backward-paragraph)
19444 (org-defkey org-mode-map "\C-m" 'org-return)
19445 (org-defkey org-mode-map "\C-j" 'org-return-indent)
19446 (org-defkey org-mode-map "\C-c?" 'org-table-field-info)
19447 (org-defkey org-mode-map "\C-c " 'org-table-blank-field)
19448 (org-defkey org-mode-map "\C-c+" 'org-table-sum)
19449 (org-defkey org-mode-map "\C-c=" 'org-table-eval-formula)
19450 (org-defkey org-mode-map "\C-c'" 'org-edit-special)
19451 (org-defkey org-mode-map "\C-c`" 'org-table-edit-field)
19452 (org-defkey org-mode-map "\C-c|" 'org-table-create-or-convert-from-region)
19453 (org-defkey org-mode-map [(control ?#)] 'org-table-rotate-recalc-marks)
19454 (org-defkey org-mode-map "\C-c~" 'org-table-create-with-table.el)
19455 (org-defkey org-mode-map "\C-c\C-a" 'org-attach)
19456 (org-defkey org-mode-map "\C-c}" 'org-table-toggle-coordinate-overlays)
19457 (org-defkey org-mode-map "\C-c{" 'org-table-toggle-formula-debugger)
19458 (org-defkey org-mode-map "\C-c\C-e" 'org-export-dispatch)
19459 (org-defkey org-mode-map "\C-c:" 'org-toggle-fixed-width)
19460 (org-defkey org-mode-map "\C-c\C-x\C-f" 'org-emphasize)
19461 (org-defkey org-mode-map "\C-c\C-xf" 'org-footnote-action)
19462 (org-defkey org-mode-map "\C-c\C-x\C-mg" 'org-mobile-pull)
19463 (org-defkey org-mode-map "\C-c\C-x\C-mp" 'org-mobile-push)
19464 (org-defkey org-mode-map "\C-c@" 'org-mark-subtree)
19465 (org-defkey org-mode-map "\M-h" 'org-mark-element)
19466 (org-defkey org-mode-map [?\C-c (control ?*)] 'org-list-make-subtree)
19467 ;;(org-defkey org-mode-map [?\C-c (control ?-)] 'org-list-make-list-from-subtree)
19469 (org-defkey org-mode-map "\C-c\C-x\C-w" 'org-cut-special)
19470 (org-defkey org-mode-map "\C-c\C-x\M-w" 'org-copy-special)
19471 (org-defkey org-mode-map "\C-c\C-x\C-y" 'org-paste-special)
19473 (org-defkey org-mode-map "\C-c\C-x\C-t" 'org-toggle-time-stamp-overlays)
19474 (org-defkey org-mode-map "\C-c\C-x\C-i" 'org-clock-in)
19475 (org-defkey org-mode-map "\C-c\C-x\C-x" 'org-clock-in-last)
19476 (org-defkey org-mode-map "\C-c\C-x\C-z" 'org-resolve-clocks)
19477 (org-defkey org-mode-map "\C-c\C-x\C-o" 'org-clock-out)
19478 (org-defkey org-mode-map "\C-c\C-x\C-j" 'org-clock-goto)
19479 (org-defkey org-mode-map "\C-c\C-x\C-q" 'org-clock-cancel)
19480 (org-defkey org-mode-map "\C-c\C-x\C-d" 'org-clock-display)
19481 (org-defkey org-mode-map "\C-c\C-x\C-r" 'org-clock-report)
19482 (org-defkey org-mode-map "\C-c\C-x\C-u" 'org-dblock-update)
19483 (org-defkey org-mode-map "\C-c\C-x\C-l" 'org-preview-latex-fragment)
19484 (org-defkey org-mode-map "\C-c\C-x\C-v" 'org-toggle-inline-images)
19485 (org-defkey org-mode-map "\C-c\C-x\C-\M-v" 'org-redisplay-inline-images)
19486 (org-defkey org-mode-map "\C-c\C-x\\" 'org-toggle-pretty-entities)
19487 (org-defkey org-mode-map "\C-c\C-x\C-b" 'org-toggle-checkbox)
19488 (org-defkey org-mode-map "\C-c\C-xp" 'org-set-property)
19489 (org-defkey org-mode-map "\C-c\C-xP" 'org-set-property-and-value)
19490 (org-defkey org-mode-map "\C-c\C-xe" 'org-set-effort)
19491 (org-defkey org-mode-map "\C-c\C-xE" 'org-inc-effort)
19492 (org-defkey org-mode-map "\C-c\C-xo" 'org-toggle-ordered-property)
19493 (org-defkey org-mode-map "\C-c\C-xi" 'org-insert-columns-dblock)
19494 (org-defkey org-mode-map [(control ?c) (control ?x) ?\;] 'org-timer-set-timer)
19495 (org-defkey org-mode-map [(control ?c) (control ?x) ?\:] 'org-timer-cancel-timer)
19497 (org-defkey org-mode-map "\C-c\C-x." 'org-timer)
19498 (org-defkey org-mode-map "\C-c\C-x-" 'org-timer-item)
19499 (org-defkey org-mode-map "\C-c\C-x0" 'org-timer-start)
19500 (org-defkey org-mode-map "\C-c\C-x_" 'org-timer-stop)
19501 (org-defkey org-mode-map "\C-c\C-x," 'org-timer-pause-or-continue)
19503 (define-key org-mode-map "\C-c\C-x\C-c" 'org-columns)
19505 (define-key org-mode-map "\C-c\C-x!" 'org-reload)
19507 (define-key org-mode-map "\C-c\C-xg" 'org-feed-update-all)
19508 (define-key org-mode-map "\C-c\C-xG" 'org-feed-goto-inbox)
19510 (define-key org-mode-map "\C-c\C-x[" 'org-reftex-citation)
19513 (when (featurep 'xemacs)
19514 (org-defkey org-mode-map 'button3 'popup-mode-menu))
19517 (defconst org-speed-commands-default
19519 ("Outline Navigation")
19520 ("n" . (org-speed-move-safe 'outline-next-visible-heading))
19521 ("p" . (org-speed-move-safe 'outline-previous-visible-heading))
19522 ("f" . (org-speed-move-safe 'org-forward-heading-same-level))
19523 ("b" . (org-speed-move-safe 'org-backward-heading-same-level))
19524 ("F" . org-next-block)
19525 ("B" . org-previous-block)
19526 ("u" . (org-speed-move-safe 'outline-up-heading))
19527 ("j" . org-goto)
19528 ("g" . (org-refile t))
19529 ("Outline Visibility")
19530 ("c" . org-cycle)
19531 ("C" . org-shifttab)
19532 (" " . org-display-outline-path)
19533 ("s" . org-narrow-to-subtree)
19534 ("=" . org-columns)
19535 ("Outline Structure Editing")
19536 ("U" . org-shiftmetaup)
19537 ("D" . org-shiftmetadown)
19538 ("r" . org-metaright)
19539 ("l" . org-metaleft)
19540 ("R" . org-shiftmetaright)
19541 ("L" . org-shiftmetaleft)
19542 ("i" . (progn (forward-char 1) (call-interactively
19543 'org-insert-heading-respect-content)))
19544 ("^" . org-sort)
19545 ("w" . org-refile)
19546 ("a" . org-archive-subtree-default-with-confirmation)
19547 ("@" . org-mark-subtree)
19548 ("#" . org-toggle-comment)
19549 ("Clock Commands")
19550 ("I" . org-clock-in)
19551 ("O" . org-clock-out)
19552 ("Meta Data Editing")
19553 ("t" . org-todo)
19554 ("," . (org-priority))
19555 ("0" . (org-priority ?\ ))
19556 ("1" . (org-priority ?A))
19557 ("2" . (org-priority ?B))
19558 ("3" . (org-priority ?C))
19559 (":" . org-set-tags-command)
19560 ("e" . org-set-effort)
19561 ("E" . org-inc-effort)
19562 ("W" . (lambda(m) (interactive "sMinutes before warning: ")
19563 (org-entry-put (point) "APPT_WARNTIME" m)))
19564 ("Agenda Views etc")
19565 ("v" . org-agenda)
19566 ("/" . org-sparse-tree)
19567 ("Misc")
19568 ("o" . org-open-at-point)
19569 ("?" . org-speed-command-help)
19570 ("<" . (org-agenda-set-restriction-lock 'subtree))
19571 (">" . (org-agenda-remove-restriction-lock))
19573 "The default speed commands.")
19575 (defun org-print-speed-command (e)
19576 (if (> (length (car e)) 1)
19577 (progn
19578 (princ "\n")
19579 (princ (car e))
19580 (princ "\n")
19581 (princ (make-string (length (car e)) ?-))
19582 (princ "\n"))
19583 (princ (car e))
19584 (princ " ")
19585 (if (symbolp (cdr e))
19586 (princ (symbol-name (cdr e)))
19587 (prin1 (cdr e)))
19588 (princ "\n")))
19590 (defun org-speed-command-help ()
19591 "Show the available speed commands."
19592 (interactive)
19593 (if (not org-use-speed-commands)
19594 (user-error "Speed commands are not activated, customize `org-use-speed-commands'")
19595 (with-output-to-temp-buffer "*Help*"
19596 (princ "User-defined Speed commands\n===========================\n")
19597 (mapc 'org-print-speed-command org-speed-commands-user)
19598 (princ "\n")
19599 (princ "Built-in Speed commands\n=======================\n")
19600 (mapc 'org-print-speed-command org-speed-commands-default))
19601 (with-current-buffer "*Help*"
19602 (setq truncate-lines t))))
19604 (defun org-speed-move-safe (cmd)
19605 "Execute CMD, but make sure that the cursor always ends up in a headline.
19606 If not, return to the original position and throw an error."
19607 (interactive)
19608 (let ((pos (point)))
19609 (call-interactively cmd)
19610 (unless (and (bolp) (org-at-heading-p))
19611 (goto-char pos)
19612 (error "Boundary reached while executing %s" cmd))))
19614 (defvar org-self-insert-command-undo-counter 0)
19616 (defvar org-table-auto-blank-field) ; defined in org-table.el
19617 (defvar org-speed-command nil)
19619 (define-obsolete-function-alias
19620 'org-speed-command-default-hook 'org-speed-command-activate "24.3")
19622 (defun org-speed-command-activate (keys)
19623 "Hook for activating single-letter speed commands.
19624 `org-speed-commands-default' specifies a minimal command set.
19625 Use `org-speed-commands-user' for further customization."
19626 (when (or (and (bolp) (looking-at org-outline-regexp))
19627 (and (functionp org-use-speed-commands)
19628 (funcall org-use-speed-commands)))
19629 (cdr (assoc keys (append org-speed-commands-user
19630 org-speed-commands-default)))))
19632 (define-obsolete-function-alias
19633 'org-babel-speed-command-hook 'org-babel-speed-command-activate "24.3")
19635 (defun org-babel-speed-command-activate (keys)
19636 "Hook for activating single-letter code block commands."
19637 (when (and (bolp) (looking-at org-babel-src-block-regexp))
19638 (cdr (assoc keys org-babel-key-bindings))))
19640 (defcustom org-speed-command-hook
19641 '(org-speed-command-default-hook org-babel-speed-command-hook)
19642 "Hook for activating speed commands at strategic locations.
19643 Hook functions are called in sequence until a valid handler is
19644 found.
19646 Each hook takes a single argument, a user-pressed command key
19647 which is also a `self-insert-command' from the global map.
19649 Within the hook, examine the cursor position and the command key
19650 and return nil or a valid handler as appropriate. Handler could
19651 be one of an interactive command, a function, or a form.
19653 Set `org-use-speed-commands' to non-nil value to enable this
19654 hook. The default setting is `org-speed-command-activate'."
19655 :group 'org-structure
19656 :version "24.1"
19657 :type 'hook)
19659 (defun org-self-insert-command (N)
19660 "Like `self-insert-command', use overwrite-mode for whitespace in tables.
19661 If the cursor is in a table looking at whitespace, the whitespace is
19662 overwritten, and the table is not marked as requiring realignment."
19663 (interactive "p")
19664 (org-check-before-invisible-edit 'insert)
19665 (cond
19666 ((and org-use-speed-commands
19667 (setq org-speed-command
19668 (run-hook-with-args-until-success
19669 'org-speed-command-hook (this-command-keys))))
19670 (cond
19671 ((commandp org-speed-command)
19672 (setq this-command org-speed-command)
19673 (call-interactively org-speed-command))
19674 ((functionp org-speed-command)
19675 (funcall org-speed-command))
19676 ((and org-speed-command (listp org-speed-command))
19677 (eval org-speed-command))
19678 (t (let (org-use-speed-commands)
19679 (call-interactively 'org-self-insert-command)))))
19680 ((and
19681 (org-table-p)
19682 (progn
19683 ;; check if we blank the field, and if that triggers align
19684 (and (featurep 'org-table) org-table-auto-blank-field
19685 (member last-command
19686 '(org-cycle org-return org-shifttab org-ctrl-c-ctrl-c yas/expand))
19687 (if (or (equal (char-after) ?\ ) (looking-at "[^|\n]* |"))
19688 ;; got extra space, this field does not determine column width
19689 (let (org-table-may-need-update) (org-table-blank-field))
19690 ;; no extra space, this field may determine column width
19691 (org-table-blank-field)))
19693 (eq N 1)
19694 (looking-at "[^|\n]* |"))
19695 (let (org-table-may-need-update)
19696 (goto-char (1- (match-end 0)))
19697 (backward-delete-char 1)
19698 (goto-char (match-beginning 0))
19699 (self-insert-command N)))
19701 (setq org-table-may-need-update t)
19702 (self-insert-command N)
19703 (org-fix-tags-on-the-fly)
19704 (if org-self-insert-cluster-for-undo
19705 (if (not (eq last-command 'org-self-insert-command))
19706 (setq org-self-insert-command-undo-counter 1)
19707 (if (>= org-self-insert-command-undo-counter 20)
19708 (setq org-self-insert-command-undo-counter 1)
19709 (and (> org-self-insert-command-undo-counter 0)
19710 buffer-undo-list (listp buffer-undo-list)
19711 (not (cadr buffer-undo-list)) ; remove nil entry
19712 (setcdr buffer-undo-list (cddr buffer-undo-list)))
19713 (setq org-self-insert-command-undo-counter
19714 (1+ org-self-insert-command-undo-counter))))))))
19716 (defun org-check-before-invisible-edit (kind)
19717 "Check is editing if kind KIND would be dangerous with invisible text around.
19718 The detailed reaction depends on the user option `org-catch-invisible-edits'."
19719 ;; First, try to get out of here as quickly as possible, to reduce overhead
19720 (if (and org-catch-invisible-edits
19721 (or (not (boundp 'visible-mode)) (not visible-mode))
19722 (or (get-char-property (point) 'invisible)
19723 (get-char-property (max (point-min) (1- (point))) 'invisible)))
19724 ;; OK, we need to take a closer look
19725 (let* ((invisible-at-point (get-char-property (point) 'invisible))
19726 (invisible-before-point (if (bobp) nil (get-char-property
19727 (1- (point)) 'invisible)))
19728 (border-and-ok-direction
19730 ;; Check if we are acting predictably before invisible text
19731 (and invisible-at-point (not invisible-before-point)
19732 (memq kind '(insert delete-backward)))
19733 ;; Check if we are acting predictably after invisible text
19734 ;; This works not well, and I have turned it off. It seems
19735 ;; better to always show and stop after invisible text.
19736 ;; (and (not invisible-at-point) invisible-before-point
19737 ;; (memq kind '(insert delete)))
19739 (when (or (memq invisible-at-point '(outline org-hide-block t))
19740 (memq invisible-before-point '(outline org-hide-block t)))
19741 (if (eq org-catch-invisible-edits 'error)
19742 (user-error "Editing in invisible areas is prohibited, make them visible first"))
19743 (if (and org-custom-properties-overlays
19744 (y-or-n-p "Display invisible properties in this buffer? "))
19745 (org-toggle-custom-properties-visibility)
19746 ;; Make the area visible
19747 (save-excursion
19748 (if invisible-before-point
19749 (goto-char (previous-single-char-property-change
19750 (point) 'invisible)))
19751 (show-subtree))
19752 (cond
19753 ((eq org-catch-invisible-edits 'show)
19754 ;; That's it, we do the edit after showing
19755 (message
19756 "Unfolding invisible region around point before editing")
19757 (sit-for 1))
19758 ((and (eq org-catch-invisible-edits 'smart)
19759 border-and-ok-direction)
19760 (message "Unfolding invisible region around point before editing"))
19762 ;; Don't do the edit, make the user repeat it in full visibility
19763 (user-error "Edit in invisible region aborted, repeat to confirm with text visible"))))))))
19765 (defun org-fix-tags-on-the-fly ()
19766 (when (and (equal (char-after (point-at-bol)) ?*)
19767 (org-at-heading-p))
19768 (org-align-tags-here org-tags-column)))
19770 (defun org-delete-backward-char (N)
19771 "Like `delete-backward-char', insert whitespace at field end in tables.
19772 When deleting backwards, in tables this function will insert whitespace in
19773 front of the next \"|\" separator, to keep the table aligned. The table will
19774 still be marked for re-alignment if the field did fill the entire column,
19775 because, in this case the deletion might narrow the column."
19776 (interactive "p")
19777 (save-match-data
19778 (org-check-before-invisible-edit 'delete-backward)
19779 (if (and (org-table-p)
19780 (eq N 1)
19781 (string-match "|" (buffer-substring (point-at-bol) (point)))
19782 (looking-at ".*?|"))
19783 (let ((pos (point))
19784 (noalign (looking-at "[^|\n\r]* |"))
19785 (c org-table-may-need-update))
19786 (backward-delete-char N)
19787 (if (not overwrite-mode)
19788 (progn
19789 (skip-chars-forward "^|")
19790 (insert " ")
19791 (goto-char (1- pos))))
19792 ;; noalign: if there were two spaces at the end, this field
19793 ;; does not determine the width of the column.
19794 (if noalign (setq org-table-may-need-update c)))
19795 (backward-delete-char N)
19796 (org-fix-tags-on-the-fly))))
19798 (defun org-delete-char (N)
19799 "Like `delete-char', but insert whitespace at field end in tables.
19800 When deleting characters, in tables this function will insert whitespace in
19801 front of the next \"|\" separator, to keep the table aligned. The table will
19802 still be marked for re-alignment if the field did fill the entire column,
19803 because, in this case the deletion might narrow the column."
19804 (interactive "p")
19805 (save-match-data
19806 (org-check-before-invisible-edit 'delete)
19807 (if (and (org-table-p)
19808 (not (bolp))
19809 (not (= (char-after) ?|))
19810 (eq N 1))
19811 (if (looking-at ".*?|")
19812 (let ((pos (point))
19813 (noalign (looking-at "[^|\n\r]* |"))
19814 (c org-table-may-need-update))
19815 (replace-match
19816 (concat (substring (match-string 0) 1 -1) " |") nil t)
19817 (goto-char pos)
19818 ;; noalign: if there were two spaces at the end, this field
19819 ;; does not determine the width of the column.
19820 (if noalign (setq org-table-may-need-update c)))
19821 (delete-char N))
19822 (delete-char N)
19823 (org-fix-tags-on-the-fly))))
19825 ;; Make `delete-selection-mode' work with org-mode and orgtbl-mode
19826 (put 'org-self-insert-command 'delete-selection
19827 (lambda ()
19828 (not (run-hook-with-args-until-success
19829 'self-insert-uses-region-functions))))
19830 (put 'orgtbl-self-insert-command 'delete-selection
19831 (lambda ()
19832 (not (run-hook-with-args-until-success
19833 'self-insert-uses-region-functions))))
19834 (put 'org-delete-char 'delete-selection 'supersede)
19835 (put 'org-delete-backward-char 'delete-selection 'supersede)
19836 (put 'org-yank 'delete-selection 'yank)
19838 ;; Make `flyspell-mode' delay after some commands
19839 (put 'org-self-insert-command 'flyspell-delayed t)
19840 (put 'orgtbl-self-insert-command 'flyspell-delayed t)
19841 (put 'org-delete-char 'flyspell-delayed t)
19842 (put 'org-delete-backward-char 'flyspell-delayed t)
19844 ;; Make pabbrev-mode expand after org-mode commands
19845 (put 'org-self-insert-command 'pabbrev-expand-after-command t)
19846 (put 'orgtbl-self-insert-command 'pabbrev-expand-after-command t)
19848 (defun org-remap (map &rest commands)
19849 "In MAP, remap the functions given in COMMANDS.
19850 COMMANDS is a list of alternating OLDDEF NEWDEF command names."
19851 (let (new old)
19852 (while commands
19853 (setq old (pop commands) new (pop commands))
19854 (if (fboundp 'command-remapping)
19855 (org-defkey map (vector 'remap old) new)
19856 (substitute-key-definition old new map global-map)))))
19858 (defun org-transpose-words ()
19859 "Transpose words for Org.
19860 This uses the `org-mode-transpose-word-syntax-table' syntax
19861 table, which interprets characters in `org-emphasis-alist' as
19862 word constituents."
19863 (interactive)
19864 (with-syntax-table org-mode-transpose-word-syntax-table
19865 (call-interactively 'transpose-words)))
19866 (org-remap org-mode-map 'transpose-words 'org-transpose-words)
19868 (when (eq org-enable-table-editor 'optimized)
19869 ;; If the user wants maximum table support, we need to hijack
19870 ;; some standard editing functions
19871 (org-remap org-mode-map
19872 'self-insert-command 'org-self-insert-command
19873 'delete-char 'org-delete-char
19874 'delete-backward-char 'org-delete-backward-char)
19875 (org-defkey org-mode-map "|" 'org-force-self-insert))
19877 (defvar org-ctrl-c-ctrl-c-hook nil
19878 "Hook for functions attaching themselves to `C-c C-c'.
19880 This can be used to add additional functionality to the C-c C-c
19881 key which executes context-dependent commands. This hook is run
19882 before any other test, while `org-ctrl-c-ctrl-c-final-hook' is
19883 run after the last test.
19885 Each function will be called with no arguments. The function
19886 must check if the context is appropriate for it to act. If yes,
19887 it should do its thing and then return a non-nil value. If the
19888 context is wrong, just do nothing and return nil.")
19890 (defvar org-ctrl-c-ctrl-c-final-hook nil
19891 "Hook for functions attaching themselves to `C-c C-c'.
19893 This can be used to add additional functionality to the C-c C-c
19894 key which executes context-dependent commands. This hook is run
19895 after any other test, while `org-ctrl-c-ctrl-c-hook' is run
19896 before the first test.
19898 Each function will be called with no arguments. The function
19899 must check if the context is appropriate for it to act. If yes,
19900 it should do its thing and then return a non-nil value. If the
19901 context is wrong, just do nothing and return nil.")
19903 (defvar org-tab-first-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 as the first action when TAB is pressed, even before
19907 `org-cycle' messes around with the `outline-regexp' to cater for
19908 inline tasks and plain list item folding.
19909 If any function in this hook returns t, any other actions that
19910 would have been caused by TAB (such as table field motion or visibility
19911 cycling) will not occur.")
19913 (defvar org-tab-after-check-for-table-hook nil
19914 "Hook for functions to attach themselves to TAB.
19915 See `org-ctrl-c-ctrl-c-hook' for more information.
19916 This hook runs after it has been established that the cursor is not in a
19917 table, but before checking if the cursor is in a headline or if global cycling
19918 should be done.
19919 If any function in this hook returns t, not other actions like visibility
19920 cycling will be done.")
19922 (defvar org-tab-after-check-for-cycling-hook nil
19923 "Hook for functions to attach themselves to TAB.
19924 See `org-ctrl-c-ctrl-c-hook' for more information.
19925 This hook runs after it has been established that not table field motion and
19926 not visibility should be done because of current context. This is probably
19927 the place where a package like yasnippets can hook in.")
19929 (defvar org-tab-before-tab-emulation-hook nil
19930 "Hook for functions to attach themselves to TAB.
19931 See `org-ctrl-c-ctrl-c-hook' for more information.
19932 This hook runs after every other options for TAB have been exhausted, but
19933 before indentation and \t insertion takes place.")
19935 (defvar org-metaleft-hook nil
19936 "Hook for functions attaching themselves to `M-left'.
19937 See `org-ctrl-c-ctrl-c-hook' for more information.")
19938 (defvar org-metaright-hook nil
19939 "Hook for functions attaching themselves to `M-right'.
19940 See `org-ctrl-c-ctrl-c-hook' for more information.")
19941 (defvar org-metaup-hook nil
19942 "Hook for functions attaching themselves to `M-up'.
19943 See `org-ctrl-c-ctrl-c-hook' for more information.")
19944 (defvar org-metadown-hook nil
19945 "Hook for functions attaching themselves to `M-down'.
19946 See `org-ctrl-c-ctrl-c-hook' for more information.")
19947 (defvar org-shiftmetaleft-hook nil
19948 "Hook for functions attaching themselves to `M-S-left'.
19949 See `org-ctrl-c-ctrl-c-hook' for more information.")
19950 (defvar org-shiftmetaright-hook nil
19951 "Hook for functions attaching themselves to `M-S-right'.
19952 See `org-ctrl-c-ctrl-c-hook' for more information.")
19953 (defvar org-shiftmetaup-hook nil
19954 "Hook for functions attaching themselves to `M-S-up'.
19955 See `org-ctrl-c-ctrl-c-hook' for more information.")
19956 (defvar org-shiftmetadown-hook nil
19957 "Hook for functions attaching themselves to `M-S-down'.
19958 See `org-ctrl-c-ctrl-c-hook' for more information.")
19959 (defvar org-metareturn-hook nil
19960 "Hook for functions attaching themselves to `M-RET'.
19961 See `org-ctrl-c-ctrl-c-hook' for more information.")
19962 (defvar org-shiftup-hook nil
19963 "Hook for functions attaching themselves to `S-up'.
19964 See `org-ctrl-c-ctrl-c-hook' for more information.")
19965 (defvar org-shiftup-final-hook nil
19966 "Hook for functions attaching themselves to `S-up'.
19967 This one runs after all other options except shift-select have been excluded.
19968 See `org-ctrl-c-ctrl-c-hook' for more information.")
19969 (defvar org-shiftdown-hook nil
19970 "Hook for functions attaching themselves to `S-down'.
19971 See `org-ctrl-c-ctrl-c-hook' for more information.")
19972 (defvar org-shiftdown-final-hook nil
19973 "Hook for functions attaching themselves to `S-down'.
19974 This one runs after all other options except shift-select have been excluded.
19975 See `org-ctrl-c-ctrl-c-hook' for more information.")
19976 (defvar org-shiftleft-hook nil
19977 "Hook for functions attaching themselves to `S-left'.
19978 See `org-ctrl-c-ctrl-c-hook' for more information.")
19979 (defvar org-shiftleft-final-hook nil
19980 "Hook for functions attaching themselves to `S-left'.
19981 This one runs after all other options except shift-select have been excluded.
19982 See `org-ctrl-c-ctrl-c-hook' for more information.")
19983 (defvar org-shiftright-hook nil
19984 "Hook for functions attaching themselves to `S-right'.
19985 See `org-ctrl-c-ctrl-c-hook' for more information.")
19986 (defvar org-shiftright-final-hook nil
19987 "Hook for functions attaching themselves to `S-right'.
19988 This one runs after all other options except shift-select have been excluded.
19989 See `org-ctrl-c-ctrl-c-hook' for more information.")
19991 (defun org-modifier-cursor-error ()
19992 "Throw an error, a modified cursor command was applied in wrong context."
19993 (user-error "This command is active in special context like tables, headlines or items"))
19995 (defun org-shiftselect-error ()
19996 "Throw an error because Shift-Cursor command was applied in wrong context."
19997 (if (and (boundp 'shift-select-mode) shift-select-mode)
19998 (user-error "To use shift-selection with Org-mode, customize `org-support-shift-select'")
19999 (user-error "This command works only in special context like headlines or timestamps")))
20001 (defun org-call-for-shift-select (cmd)
20002 (let ((this-command-keys-shift-translated t))
20003 (call-interactively cmd)))
20005 (defun org-shifttab (&optional arg)
20006 "Global visibility cycling or move to previous table field.
20007 Call `org-table-previous-field' within a table.
20008 When ARG is nil, cycle globally through visibility states.
20009 When ARG is a numeric prefix, show contents of this level."
20010 (interactive "P")
20011 (cond
20012 ((org-at-table-p) (call-interactively 'org-table-previous-field))
20013 ((integerp arg)
20014 (let ((arg2 (if org-odd-levels-only (1- (* 2 arg)) arg)))
20015 (message "Content view to level: %d" arg)
20016 (org-content (prefix-numeric-value arg2))
20017 (org-cycle-show-empty-lines t)
20018 (setq org-cycle-global-status 'overview)))
20019 (t (call-interactively 'org-global-cycle))))
20021 (defun org-shiftmetaleft ()
20022 "Promote subtree or delete table column.
20023 Calls `org-promote-subtree', `org-outdent-item-tree', or
20024 `org-table-delete-column', depending on context. See the
20025 individual commands for more information."
20026 (interactive)
20027 (cond
20028 ((run-hook-with-args-until-success 'org-shiftmetaleft-hook))
20029 ((org-at-table-p) (call-interactively 'org-table-delete-column))
20030 ((org-at-heading-p) (call-interactively 'org-promote-subtree))
20031 ((if (not (org-region-active-p)) (org-at-item-p)
20032 (save-excursion (goto-char (region-beginning))
20033 (org-at-item-p)))
20034 (call-interactively 'org-outdent-item-tree))
20035 (t (org-modifier-cursor-error))))
20037 (defun org-shiftmetaright ()
20038 "Demote subtree or insert table column.
20039 Calls `org-demote-subtree', `org-indent-item-tree', or
20040 `org-table-insert-column', depending on context. See the
20041 individual commands for more information."
20042 (interactive)
20043 (cond
20044 ((run-hook-with-args-until-success 'org-shiftmetaright-hook))
20045 ((org-at-table-p) (call-interactively 'org-table-insert-column))
20046 ((org-at-heading-p) (call-interactively 'org-demote-subtree))
20047 ((if (not (org-region-active-p)) (org-at-item-p)
20048 (save-excursion (goto-char (region-beginning))
20049 (org-at-item-p)))
20050 (call-interactively 'org-indent-item-tree))
20051 (t (org-modifier-cursor-error))))
20053 (defun org-shiftmetaup (&optional arg)
20054 "Drag the line at point up.
20055 In a table, kill the current row.
20056 On a clock timestamp, update the value of the timestamp like `S-<up>'
20057 but also adjust the previous clocked item in the clock history.
20058 Everywhere else, drag the line at point up."
20059 (interactive "P")
20060 (cond
20061 ((run-hook-with-args-until-success 'org-shiftmetaup-hook))
20062 ((org-at-table-p) (call-interactively 'org-table-kill-row))
20063 ((org-at-clock-log-p) (let ((org-clock-adjust-closest t))
20064 (call-interactively 'org-timestamp-up)))
20065 (t (call-interactively 'org-drag-line-backward))))
20067 (defun org-shiftmetadown (&optional arg)
20068 "Drag the line at point down.
20069 In a table, insert an empty row at the current line.
20070 On a clock timestamp, update the value of the timestamp like `S-<down>'
20071 but also adjust the previous clocked item in the clock history.
20072 Everywhere else, drag the line at point down."
20073 (interactive "P")
20074 (cond
20075 ((run-hook-with-args-until-success 'org-shiftmetadown-hook))
20076 ((org-at-table-p) (call-interactively 'org-table-insert-row))
20077 ((org-at-clock-log-p) (let ((org-clock-adjust-closest t))
20078 (call-interactively 'org-timestamp-down)))
20079 (t (call-interactively 'org-drag-line-forward))))
20081 (defsubst org-hidden-tree-error ()
20082 (user-error
20083 "Hidden subtree, open with TAB or use subtree command M-S-<left>/<right>"))
20085 (defun org-metaleft (&optional arg)
20086 "Promote heading or move table column to left.
20087 Calls `org-do-promote' or `org-table-move-column', depending on context.
20088 With no specific context, calls the Emacs default `backward-word'.
20089 See the individual commands for more information."
20090 (interactive "P")
20091 (cond
20092 ((run-hook-with-args-until-success 'org-metaleft-hook))
20093 ((org-at-table-p) (org-call-with-arg 'org-table-move-column 'left))
20094 ((org-with-limited-levels
20095 (or (org-at-heading-p)
20096 (and (org-region-active-p)
20097 (save-excursion
20098 (goto-char (region-beginning))
20099 (org-at-heading-p)))))
20100 (when (org-check-for-hidden 'headlines) (org-hidden-tree-error))
20101 (call-interactively 'org-do-promote))
20102 ;; At an inline task.
20103 ((org-at-heading-p)
20104 (call-interactively 'org-inlinetask-promote))
20105 ((or (org-at-item-p)
20106 (and (org-region-active-p)
20107 (save-excursion
20108 (goto-char (region-beginning))
20109 (org-at-item-p))))
20110 (when (org-check-for-hidden 'items) (org-hidden-tree-error))
20111 (call-interactively 'org-outdent-item))
20112 (t (call-interactively 'backward-word))))
20114 (defun org-metaright (&optional arg)
20115 "Demote a subtree, a list item or move table column to right.
20116 In front of a drawer or a block keyword, indent it correctly.
20117 With no specific context, calls the Emacs default `forward-word'.
20118 See the individual commands for more information."
20119 (interactive "P")
20120 (cond
20121 ((run-hook-with-args-until-success 'org-metaright-hook))
20122 ((org-at-table-p) (call-interactively 'org-table-move-column))
20123 ((org-at-drawer-p) (call-interactively 'org-indent-drawer))
20124 ((org-at-block-p) (call-interactively 'org-indent-block))
20125 ((org-with-limited-levels
20126 (or (org-at-heading-p)
20127 (and (org-region-active-p)
20128 (save-excursion
20129 (goto-char (region-beginning))
20130 (org-at-heading-p)))))
20131 (when (org-check-for-hidden 'headlines) (org-hidden-tree-error))
20132 (call-interactively 'org-do-demote))
20133 ;; At an inline task.
20134 ((org-at-heading-p)
20135 (call-interactively 'org-inlinetask-demote))
20136 ((or (org-at-item-p)
20137 (and (org-region-active-p)
20138 (save-excursion
20139 (goto-char (region-beginning))
20140 (org-at-item-p))))
20141 (when (org-check-for-hidden 'items) (org-hidden-tree-error))
20142 (call-interactively 'org-indent-item))
20143 (t (call-interactively 'forward-word))))
20145 (defun org-check-for-hidden (what)
20146 "Check if there are hidden headlines/items in the current visual line.
20147 WHAT can be either `headlines' or `items'. If the current line is
20148 an outline or item heading and it has a folded subtree below it,
20149 this function returns t, nil otherwise."
20150 (let ((re (cond
20151 ((eq what 'headlines) org-outline-regexp-bol)
20152 ((eq what 'items) (org-item-beginning-re))
20153 (t (error "This should not happen"))))
20154 beg end)
20155 (save-excursion
20156 (catch 'exit
20157 (unless (org-region-active-p)
20158 (setq beg (point-at-bol))
20159 (beginning-of-line 2)
20160 (while (and (not (eobp)) ;; this is like `next-line'
20161 (get-char-property (1- (point)) 'invisible))
20162 (beginning-of-line 2))
20163 (setq end (point))
20164 (goto-char beg)
20165 (goto-char (point-at-eol))
20166 (setq end (max end (point)))
20167 (while (re-search-forward re end t)
20168 (if (get-char-property (match-beginning 0) 'invisible)
20169 (throw 'exit t))))
20170 nil))))
20172 (defun org-metaup (&optional arg)
20173 "Move subtree up or move table row up.
20174 Calls `org-move-subtree-up' or `org-table-move-row' or
20175 `org-move-item-up', depending on context. See the individual commands
20176 for more information."
20177 (interactive "P")
20178 (cond
20179 ((run-hook-with-args-until-success 'org-metaup-hook))
20180 ((org-region-active-p)
20181 (let* ((a (min (region-beginning) (region-end)))
20182 (b (1- (max (region-beginning) (region-end))))
20183 (c (save-excursion (goto-char a)
20184 (move-beginning-of-line 0)))
20185 (d (save-excursion (goto-char a)
20186 (move-end-of-line 0) (point))))
20187 (transpose-regions a b c d)
20188 (goto-char c)))
20189 ((org-at-table-p) (org-call-with-arg 'org-table-move-row 'up))
20190 ((org-at-heading-p) (call-interactively 'org-move-subtree-up))
20191 ((org-at-item-p) (call-interactively 'org-move-item-up))
20192 (t (org-drag-element-backward))))
20194 (defun org-metadown (&optional arg)
20195 "Move subtree down or move table row down.
20196 Calls `org-move-subtree-down' or `org-table-move-row' or
20197 `org-move-item-down', depending on context. See the individual
20198 commands for more information."
20199 (interactive "P")
20200 (cond
20201 ((run-hook-with-args-until-success 'org-metadown-hook))
20202 ((org-region-active-p)
20203 (let* ((a (min (region-beginning) (region-end)))
20204 (b (max (region-beginning) (region-end)))
20205 (c (save-excursion (goto-char b)
20206 (move-beginning-of-line 1)))
20207 (d (save-excursion (goto-char b)
20208 (move-end-of-line 1) (1+ (point)))))
20209 (transpose-regions a b c d)
20210 (goto-char d)))
20211 ((org-at-table-p) (call-interactively 'org-table-move-row))
20212 ((org-at-heading-p) (call-interactively 'org-move-subtree-down))
20213 ((org-at-item-p) (call-interactively 'org-move-item-down))
20214 (t (org-drag-element-forward))))
20216 (defun org-shiftup (&optional arg)
20217 "Increase item in timestamp or increase priority of current headline.
20218 Calls `org-timestamp-up' or `org-priority-up', or `org-previous-item',
20219 depending on context. See the individual commands for more information."
20220 (interactive "P")
20221 (cond
20222 ((run-hook-with-args-until-success 'org-shiftup-hook))
20223 ((and org-support-shift-select (org-region-active-p))
20224 (org-call-for-shift-select 'previous-line))
20225 ((org-at-timestamp-p t)
20226 (call-interactively (if org-edit-timestamp-down-means-later
20227 'org-timestamp-down 'org-timestamp-up)))
20228 ((and (not (eq org-support-shift-select 'always))
20229 org-enable-priority-commands
20230 (org-at-heading-p))
20231 (call-interactively 'org-priority-up))
20232 ((and (not org-support-shift-select) (org-at-item-p))
20233 (call-interactively 'org-previous-item))
20234 ((org-clocktable-try-shift 'up arg))
20235 ((run-hook-with-args-until-success 'org-shiftup-final-hook))
20236 (org-support-shift-select
20237 (org-call-for-shift-select 'previous-line))
20238 (t (org-shiftselect-error))))
20240 (defun org-shiftdown (&optional arg)
20241 "Decrease item in timestamp or decrease priority of current headline.
20242 Calls `org-timestamp-down' or `org-priority-down', or `org-next-item'
20243 depending on context. See the individual commands for more information."
20244 (interactive "P")
20245 (cond
20246 ((run-hook-with-args-until-success 'org-shiftdown-hook))
20247 ((and org-support-shift-select (org-region-active-p))
20248 (org-call-for-shift-select 'next-line))
20249 ((org-at-timestamp-p t)
20250 (call-interactively (if org-edit-timestamp-down-means-later
20251 'org-timestamp-up 'org-timestamp-down)))
20252 ((and (not (eq org-support-shift-select 'always))
20253 org-enable-priority-commands
20254 (org-at-heading-p))
20255 (call-interactively 'org-priority-down))
20256 ((and (not org-support-shift-select) (org-at-item-p))
20257 (call-interactively 'org-next-item))
20258 ((org-clocktable-try-shift 'down arg))
20259 ((run-hook-with-args-until-success 'org-shiftdown-final-hook))
20260 (org-support-shift-select
20261 (org-call-for-shift-select 'next-line))
20262 (t (org-shiftselect-error))))
20264 (defun org-shiftright (&optional arg)
20265 "Cycle the thing at point or in the current line, depending on context.
20266 Depending on context, this does one of the following:
20268 - switch a timestamp at point one day into the future
20269 - on a headline, switch to the next TODO keyword.
20270 - on an item, switch entire list to the next bullet type
20271 - on a property line, switch to the next allowed value
20272 - on a clocktable definition line, move time block into the future"
20273 (interactive "P")
20274 (cond
20275 ((run-hook-with-args-until-success 'org-shiftright-hook))
20276 ((and org-support-shift-select (org-region-active-p))
20277 (org-call-for-shift-select 'forward-char))
20278 ((org-at-timestamp-p t) (call-interactively 'org-timestamp-up-day))
20279 ((and (not (eq org-support-shift-select 'always))
20280 (org-at-heading-p))
20281 (let ((org-inhibit-logging
20282 (not org-treat-S-cursor-todo-selection-as-state-change))
20283 (org-inhibit-blocking
20284 (not org-treat-S-cursor-todo-selection-as-state-change)))
20285 (org-call-with-arg 'org-todo 'right)))
20286 ((or (and org-support-shift-select
20287 (not (eq org-support-shift-select 'always))
20288 (org-at-item-bullet-p))
20289 (and (not org-support-shift-select) (org-at-item-p)))
20290 (org-call-with-arg 'org-cycle-list-bullet nil))
20291 ((and (not (eq org-support-shift-select 'always))
20292 (org-at-property-p))
20293 (call-interactively 'org-property-next-allowed-value))
20294 ((org-clocktable-try-shift 'right arg))
20295 ((run-hook-with-args-until-success 'org-shiftright-final-hook))
20296 (org-support-shift-select
20297 (org-call-for-shift-select 'forward-char))
20298 (t (org-shiftselect-error))))
20300 (defun org-shiftleft (&optional arg)
20301 "Cycle the thing at point or in the current line, depending on context.
20302 Depending on context, this does one of the following:
20304 - switch a timestamp at point one day into the past
20305 - on a headline, switch to the previous TODO keyword.
20306 - on an item, switch entire list to the previous bullet type
20307 - on a property line, switch to the previous allowed value
20308 - on a clocktable definition line, move time block into the past"
20309 (interactive "P")
20310 (cond
20311 ((run-hook-with-args-until-success 'org-shiftleft-hook))
20312 ((and org-support-shift-select (org-region-active-p))
20313 (org-call-for-shift-select 'backward-char))
20314 ((org-at-timestamp-p t) (call-interactively 'org-timestamp-down-day))
20315 ((and (not (eq org-support-shift-select 'always))
20316 (org-at-heading-p))
20317 (let ((org-inhibit-logging
20318 (not org-treat-S-cursor-todo-selection-as-state-change))
20319 (org-inhibit-blocking
20320 (not org-treat-S-cursor-todo-selection-as-state-change)))
20321 (org-call-with-arg 'org-todo 'left)))
20322 ((or (and org-support-shift-select
20323 (not (eq org-support-shift-select 'always))
20324 (org-at-item-bullet-p))
20325 (and (not org-support-shift-select) (org-at-item-p)))
20326 (org-call-with-arg 'org-cycle-list-bullet 'previous))
20327 ((and (not (eq org-support-shift-select 'always))
20328 (org-at-property-p))
20329 (call-interactively 'org-property-previous-allowed-value))
20330 ((org-clocktable-try-shift 'left arg))
20331 ((run-hook-with-args-until-success 'org-shiftleft-final-hook))
20332 (org-support-shift-select
20333 (org-call-for-shift-select 'backward-char))
20334 (t (org-shiftselect-error))))
20336 (defun org-shiftcontrolright ()
20337 "Switch to next TODO set."
20338 (interactive)
20339 (cond
20340 ((and org-support-shift-select (org-region-active-p))
20341 (org-call-for-shift-select 'forward-word))
20342 ((and (not (eq org-support-shift-select 'always))
20343 (org-at-heading-p))
20344 (org-call-with-arg 'org-todo 'nextset))
20345 (org-support-shift-select
20346 (org-call-for-shift-select 'forward-word))
20347 (t (org-shiftselect-error))))
20349 (defun org-shiftcontrolleft ()
20350 "Switch to previous TODO set."
20351 (interactive)
20352 (cond
20353 ((and org-support-shift-select (org-region-active-p))
20354 (org-call-for-shift-select 'backward-word))
20355 ((and (not (eq org-support-shift-select 'always))
20356 (org-at-heading-p))
20357 (org-call-with-arg 'org-todo 'previousset))
20358 (org-support-shift-select
20359 (org-call-for-shift-select 'backward-word))
20360 (t (org-shiftselect-error))))
20362 (defun org-shiftcontrolup (&optional n)
20363 "Change timestamps synchronously up in CLOCK log lines.
20364 Optional argument N tells to change by that many units."
20365 (interactive "P")
20366 (if (and (org-at-clock-log-p) (org-at-timestamp-p t))
20367 (let (org-support-shift-select)
20368 (org-clock-timestamps-up n))
20369 (user-error "Not at a clock log")))
20371 (defun org-shiftcontroldown (&optional n)
20372 "Change timestamps synchronously down in CLOCK log lines.
20373 Optional argument N tells to change by that many units."
20374 (interactive "P")
20375 (if (and (org-at-clock-log-p) (org-at-timestamp-p t))
20376 (let (org-support-shift-select)
20377 (org-clock-timestamps-down n))
20378 (user-error "Not at a clock log")))
20380 (defun org-increase-number-at-point (&optional inc)
20381 "Increment the number at point.
20382 With an optional prefix numeric argument INC, increment using
20383 this numeric value."
20384 (interactive "p")
20385 (if (not (number-at-point))
20386 (user-error "Not on a number")
20387 (unless inc (setq inc 1))
20388 (let ((pos (point))
20389 (beg (skip-chars-backward "-+^/*0-9eE."))
20390 (end (skip-chars-forward "-+^/*0-9eE^.")) nap)
20391 (setq nap (buffer-substring-no-properties
20392 (+ pos beg) (+ pos beg end)))
20393 (delete-region (+ pos beg) (+ pos beg end))
20394 (insert (calc-eval (concat (number-to-string inc) "+" nap))))
20395 (when (org-at-table-p)
20396 (org-table-align)
20397 (org-table-end-of-field 1))))
20399 (defun org-decrease-number-at-point (&optional inc)
20400 "Decrement the number at point.
20401 With an optional prefix numeric argument INC, decrement using
20402 this numeric value."
20403 (interactive "p")
20404 (org-increase-number-at-point (- inc)))
20406 (defun org-ctrl-c-ret ()
20407 "Call `org-table-hline-and-move' or `org-insert-heading' dep. on context."
20408 (interactive)
20409 (cond
20410 ((org-at-table-p) (call-interactively 'org-table-hline-and-move))
20411 (t (call-interactively 'org-insert-heading))))
20413 (defun org-find-visible ()
20414 (let ((s (point)))
20415 (while (and (not (= (point-max) (setq s (next-overlay-change s))))
20416 (get-char-property s 'invisible)))
20418 (defun org-find-invisible ()
20419 (let ((s (point)))
20420 (while (and (not (= (point-max) (setq s (next-overlay-change s))))
20421 (not (get-char-property s 'invisible))))
20424 (defun org-copy-visible (beg end)
20425 "Copy the visible parts of the region."
20426 (interactive "r")
20427 (let (snippets s)
20428 (save-excursion
20429 (save-restriction
20430 (narrow-to-region beg end)
20431 (setq s (goto-char (point-min)))
20432 (while (not (= (point) (point-max)))
20433 (goto-char (org-find-invisible))
20434 (push (buffer-substring s (point)) snippets)
20435 (setq s (goto-char (org-find-visible))))))
20436 (kill-new (apply 'concat (nreverse snippets)))))
20438 (defun org-copy-special ()
20439 "Copy region in table or copy current subtree.
20440 Calls `org-table-copy' or `org-copy-subtree', depending on context.
20441 See the individual commands for more information."
20442 (interactive)
20443 (call-interactively
20444 (if (org-at-table-p) 'org-table-copy-region 'org-copy-subtree)))
20446 (defun org-cut-special ()
20447 "Cut region in table or cut current subtree.
20448 Calls `org-table-copy' or `org-cut-subtree', depending on context.
20449 See the individual commands for more information."
20450 (interactive)
20451 (call-interactively
20452 (if (org-at-table-p) 'org-table-cut-region 'org-cut-subtree)))
20454 (defun org-paste-special (arg)
20455 "Paste rectangular region into table, or past subtree relative to level.
20456 Calls `org-table-paste-rectangle' or `org-paste-subtree', depending on context.
20457 See the individual commands for more information."
20458 (interactive "P")
20459 (if (org-at-table-p)
20460 (org-table-paste-rectangle)
20461 (org-paste-subtree arg)))
20463 (defsubst org-in-fixed-width-region-p ()
20464 "Is point in a fixed-width region?"
20465 (save-match-data
20466 (eq 'fixed-width (org-element-type (org-element-at-point)))))
20468 (defun org-edit-special (&optional arg)
20469 "Call a special editor for the element at point.
20470 When at a table, call the formula editor with `org-table-edit-formulas'.
20471 When in a source code block, call `org-edit-src-code'.
20472 When in a fixed-width region, call `org-edit-fixed-width-region'.
20473 When at an #+INCLUDE keyword, visit the included file.
20474 On a link, call `ffap' to visit the link at point.
20475 Otherwise, return a user error."
20476 (interactive "P")
20477 (let ((element (org-element-at-point)))
20478 (assert (not buffer-read-only) nil
20479 "Buffer is read-only: %s" (buffer-name))
20480 (case (org-element-type element)
20481 (src-block
20482 (if (not arg) (org-edit-src-code)
20483 (let* ((info (org-babel-get-src-block-info))
20484 (lang (nth 0 info))
20485 (params (nth 2 info))
20486 (session (cdr (assq :session params))))
20487 (if (not session) (org-edit-src-code)
20488 ;; At a src-block with a session and function called with
20489 ;; an ARG: switch to the buffer related to the inferior
20490 ;; process.
20491 (switch-to-buffer
20492 (funcall (intern (concat "org-babel-prep-session:" lang))
20493 session params))))))
20494 (keyword
20495 (if (member (org-element-property :key element) '("INCLUDE" "SETUPFILE"))
20496 (find-file-other-window
20497 (org-remove-double-quotes
20498 (car (org-split-string (org-element-property :value element)))))
20499 (user-error "No special environment to edit here")))
20500 (table
20501 (if (eq (org-element-property :type element) 'table.el)
20502 (org-edit-src-code)
20503 (call-interactively 'org-table-edit-formulas)))
20504 ;; Only Org tables contain `table-row' type elements.
20505 (table-row (call-interactively 'org-table-edit-formulas))
20506 ((example-block export-block) (org-edit-src-code))
20507 (fixed-width (org-edit-fixed-width-region))
20508 (otherwise
20509 ;; No notable element at point. Though, we may be at a link,
20510 ;; which is an object. Thus, scan deeper.
20511 (if (eq (org-element-type (org-element-context element)) 'link)
20512 (call-interactively 'ffap)
20513 (user-error "No special environment to edit here"))))))
20515 (defvar org-table-coordinate-overlays) ; defined in org-table.el
20516 (defun org-ctrl-c-ctrl-c (&optional arg)
20517 "Set tags in headline, or update according to changed information at point.
20519 This command does many different things, depending on context:
20521 - If a function in `org-ctrl-c-ctrl-c-hook' recognizes this location,
20522 this is what we do.
20524 - If the cursor is on a statistics cookie, update it.
20526 - If the cursor is in a headline, prompt for tags and insert them
20527 into the current line, aligned to `org-tags-column'. When called
20528 with prefix arg, realign all tags in the current buffer.
20530 - If the cursor is in one of the special #+KEYWORD lines, this
20531 triggers scanning the buffer for these lines and updating the
20532 information.
20534 - If the cursor is inside a table, realign the table. This command
20535 works even if the automatic table editor has been turned off.
20537 - If the cursor is on a #+TBLFM line, re-apply the formulas to
20538 the entire table.
20540 - If the cursor is at a footnote reference or definition, jump to
20541 the corresponding definition or references, respectively.
20543 - If the cursor is a the beginning of a dynamic block, update it.
20545 - If the current buffer is a capture buffer, close note and file it.
20547 - If the cursor is on a <<<target>>>, update radio targets and
20548 corresponding links in this buffer.
20550 - If the cursor is on a numbered item in a plain list, renumber the
20551 ordered list.
20553 - If the cursor is on a checkbox, toggle it.
20555 - If the cursor is on a code block, evaluate it. The variable
20556 `org-confirm-babel-evaluate' can be used to control prompting
20557 before code block evaluation, by default every code block
20558 evaluation requires confirmation. Code block evaluation can be
20559 inhibited by setting `org-babel-no-eval-on-ctrl-c-ctrl-c'."
20560 (interactive "P")
20561 (cond
20562 ((or (and (boundp 'org-clock-overlays) org-clock-overlays)
20563 org-occur-highlights
20564 org-latex-fragment-image-overlays)
20565 (and (boundp 'org-clock-overlays) (org-clock-remove-overlays))
20566 (org-remove-occur-highlights)
20567 (org-remove-latex-fragment-image-overlays)
20568 (message "Temporary highlights/overlays removed from current buffer"))
20569 ((and (local-variable-p 'org-finish-function (current-buffer))
20570 (fboundp org-finish-function))
20571 (funcall org-finish-function))
20572 ((run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-hook))
20574 (let* ((context (org-element-context)) (type (org-element-type context)))
20575 ;; Test if point is within a blank line.
20576 (if (save-excursion (beginning-of-line) (looking-at "[ \t]*$"))
20577 (or (run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-final-hook)
20578 (user-error "C-c C-c can do nothing useful at this location"))
20579 (case type
20580 ;; When at a link, act according to the parent instead.
20581 (link (setq context (org-element-property :parent context))
20582 (setq type (org-element-type context)))
20583 ;; Unsupported object types: refer to the first supported
20584 ;; element or object containing it.
20585 ((bold code entity export-snippet inline-babel-call inline-src-block
20586 italic latex-fragment line-break macro strike-through subscript
20587 superscript underline verbatim)
20588 (while (and (setq context (org-element-property :parent context))
20589 (not (memq (setq type (org-element-type context))
20590 '(radio-target paragraph verse-block
20591 table-cell)))))))
20592 ;; For convenience: at the first line of a paragraph on the
20593 ;; same line as an item, apply function on that item instead.
20594 (when (eq type 'paragraph)
20595 (let ((parent (org-element-property :parent context)))
20596 (when (and (eq (org-element-type parent) 'item)
20597 (= (point-at-bol) (org-element-property :begin parent)))
20598 (setq context parent type 'item))))
20599 ;; Act according to type of element or object at point.
20600 (case type
20601 (clock (org-clock-update-time-maybe))
20602 (dynamic-block
20603 (save-excursion
20604 (goto-char (org-element-property :post-affiliated context))
20605 (org-update-dblock)))
20606 (footnote-definition
20607 (goto-char (org-element-property :post-affiliated context))
20608 (call-interactively 'org-footnote-action))
20609 (footnote-reference (call-interactively 'org-footnote-action))
20610 ((headline inlinetask)
20611 (save-excursion (goto-char (org-element-property :begin context))
20612 (call-interactively 'org-set-tags)))
20613 (item
20614 ;; At an item: a double C-u set checkbox to "[-]"
20615 ;; unconditionally, whereas a single one will toggle its
20616 ;; presence. Without an universal argument, if the item
20617 ;; has a checkbox, toggle it. Otherwise repair the list.
20618 (let* ((box (org-element-property :checkbox context))
20619 (struct (org-element-property :structure context))
20620 (old-struct (copy-tree struct))
20621 (parents (org-list-parents-alist struct))
20622 (prevs (org-list-prevs-alist struct))
20623 (orderedp (org-not-nil (org-entry-get nil "ORDERED"))))
20624 (org-list-set-checkbox
20625 (org-element-property :begin context) struct
20626 (cond ((equal arg '(16)) "[-]")
20627 ((and (not box) (equal arg '(4))) "[ ]")
20628 ((or (not box) (equal arg '(4))) nil)
20629 ((eq box 'on) "[ ]")
20630 (t "[X]")))
20631 ;; Mimic `org-list-write-struct' but with grabbing
20632 ;; a return value from `org-list-struct-fix-box'.
20633 (org-list-struct-fix-ind struct parents 2)
20634 (org-list-struct-fix-item-end struct)
20635 (org-list-struct-fix-bul struct prevs)
20636 (org-list-struct-fix-ind struct parents)
20637 (let ((block-item
20638 (org-list-struct-fix-box struct parents prevs orderedp)))
20639 (if (and box (equal struct old-struct))
20640 (if (equal arg '(16))
20641 (message "Checkboxes already reset")
20642 (user-error "Cannot toggle this checkbox: %s"
20643 (if (eq box 'on)
20644 "all subitems checked"
20645 "unchecked subitems")))
20646 (org-list-struct-apply-struct struct old-struct)
20647 (org-update-checkbox-count-maybe))
20648 (when block-item
20649 (message "Checkboxes were removed due to empty box at line %d"
20650 (org-current-line block-item))))))
20651 (keyword
20652 (let ((org-inhibit-startup-visibility-stuff t)
20653 (org-startup-align-all-tables nil))
20654 (when (boundp 'org-table-coordinate-overlays)
20655 (mapc 'delete-overlay org-table-coordinate-overlays)
20656 (setq org-table-coordinate-overlays nil))
20657 (org-save-outline-visibility 'use-markers (org-mode-restart)))
20658 (message "Local setup has been refreshed"))
20659 (plain-list
20660 ;; At a plain list, with a double C-u argument, set
20661 ;; checkboxes of each item to "[-]", whereas a single one
20662 ;; will toggle their presence according to the state of the
20663 ;; first item in the list. Without an argument, repair the
20664 ;; list.
20665 (let* ((begin (org-element-property :contents-begin context))
20666 (beginm (move-marker (make-marker) begin))
20667 (struct (org-element-property :structure context))
20668 (old-struct (copy-tree struct))
20669 (first-box (save-excursion
20670 (goto-char begin)
20671 (looking-at org-list-full-item-re)
20672 (match-string-no-properties 3)))
20673 (new-box (cond ((equal arg '(16)) "[-]")
20674 ((equal arg '(4)) (unless first-box "[ ]"))
20675 ((equal first-box "[X]") "[ ]")
20676 (t "[X]"))))
20677 (cond
20678 (arg
20679 (mapc (lambda (pos) (org-list-set-checkbox pos struct new-box))
20680 (org-list-get-all-items
20681 begin struct (org-list-prevs-alist struct))))
20682 ((and first-box (eq (point) begin))
20683 ;; For convenience, when point is at bol on the first
20684 ;; item of the list and no argument is provided, simply
20685 ;; toggle checkbox of that item, if any.
20686 (org-list-set-checkbox begin struct new-box)))
20687 (org-list-write-struct
20688 struct (org-list-parents-alist struct) old-struct)
20689 (org-update-checkbox-count-maybe)
20690 (save-excursion (goto-char beginm) (org-list-send-list 'maybe))))
20691 ((property-drawer node-property)
20692 (call-interactively 'org-property-action))
20693 ((radio-target target)
20694 (call-interactively 'org-update-radio-target-regexp))
20695 (statistics-cookie
20696 (call-interactively 'org-update-statistics-cookies))
20697 ((table table-cell table-row)
20698 ;; At a table, recalculate every field and align it. Also
20699 ;; send the table if necessary. If the table has
20700 ;; a `table.el' type, just give up. At a table row or
20701 ;; cell, maybe recalculate line but always align table.
20702 (if (eq (org-element-property :type context) 'table.el)
20703 (message "Use C-c ' to edit table.el tables")
20704 (let ((org-enable-table-editor t))
20705 (if (or (eq type 'table)
20706 ;; Check if point is at a TBLFM line.
20707 (and (eq type 'table-row)
20708 (= (point) (org-element-property :end context))))
20709 (save-excursion
20710 (if (org-at-TBLFM-p)
20711 (progn (require 'org-table)
20712 (org-table-calc-current-TBLFM))
20713 (goto-char (org-element-property :contents-begin context))
20714 (org-call-with-arg 'org-table-recalculate (or arg t))
20715 (orgtbl-send-table 'maybe)))
20716 (org-table-maybe-eval-formula)
20717 (cond (arg (call-interactively 'org-table-recalculate))
20718 ((org-table-maybe-recalculate-line))
20719 (t (org-table-align)))))))
20720 (timestamp (org-timestamp-change 0 'day))
20721 (otherwise
20722 (or (run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-final-hook)
20723 (user-error
20724 "C-c C-c can do nothing useful at this location")))))))))
20726 (defun org-mode-restart ()
20727 (interactive)
20728 (let ((indent-status (org-bound-and-true-p org-indent-mode)))
20729 (funcall major-mode)
20730 (hack-local-variables)
20731 (when (and indent-status (not (org-bound-and-true-p org-indent-mode)))
20732 (org-indent-mode -1)))
20733 (message "%s restarted" major-mode))
20735 (defun org-kill-note-or-show-branches ()
20736 "If this is a Note buffer, abort storing the note. Else call `show-branches'."
20737 (interactive)
20738 (if (not org-finish-function)
20739 (progn
20740 (hide-subtree)
20741 (call-interactively 'show-branches))
20742 (let ((org-note-abort t))
20743 (funcall org-finish-function))))
20745 (defun org-open-line (n)
20746 "Insert a new row in tables, call `open-line' elsewhere.
20747 If `org-special-ctrl-o' is nil, just call `open-line' everywhere."
20748 (interactive "*p")
20749 (cond
20750 ((not org-special-ctrl-o)
20751 (open-line n))
20752 ((org-at-table-p)
20753 (org-table-insert-row))
20755 (open-line n))))
20757 (defun org-return (&optional indent)
20758 "Goto next table row or insert a newline.
20759 Calls `org-table-next-row' or `newline', depending on context.
20760 See the individual commands for more information."
20761 (interactive)
20762 (let (org-ts-what)
20763 (cond
20764 ((or (bobp) (org-in-src-block-p))
20765 (if indent (newline-and-indent) (newline)))
20766 ((org-at-table-p)
20767 (org-table-justify-field-maybe)
20768 (call-interactively 'org-table-next-row))
20769 ;; when `newline-and-indent' is called within a list, make sure
20770 ;; text moved stays inside the item.
20771 ((and (org-in-item-p) indent)
20772 (if (and (org-at-item-p) (>= (point) (match-end 0)))
20773 (progn
20774 (save-match-data (newline))
20775 (org-indent-line-to (length (match-string 0))))
20776 (let ((ind (org-get-indentation)))
20777 (newline)
20778 (if (org-looking-back org-list-end-re)
20779 (org-indent-line)
20780 (org-indent-line-to ind)))))
20781 ((and org-return-follows-link
20782 (org-at-timestamp-p t)
20783 (not (eq org-ts-what 'after)))
20784 (org-follow-timestamp-link))
20785 ((and org-return-follows-link
20786 (let ((tprop (get-text-property (point) 'face)))
20787 (or (eq tprop 'org-link)
20788 (and (listp tprop) (memq 'org-link tprop)))))
20789 (call-interactively 'org-open-at-point))
20790 ((and (org-at-heading-p)
20791 (looking-at
20792 (org-re "\\([ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)[ \t]*$")))
20793 (org-show-entry)
20794 (end-of-line 1)
20795 (newline))
20796 (t (if indent (newline-and-indent) (newline))))))
20798 (defun org-return-indent ()
20799 "Goto next table row or insert a newline and indent.
20800 Calls `org-table-next-row' or `newline-and-indent', depending on
20801 context. See the individual commands for more information."
20802 (interactive)
20803 (org-return t))
20805 (defun org-ctrl-c-star ()
20806 "Compute table, or change heading status of lines.
20807 Calls `org-table-recalculate' or `org-toggle-heading',
20808 depending on context."
20809 (interactive)
20810 (cond
20811 ((org-at-table-p)
20812 (call-interactively 'org-table-recalculate))
20814 ;; Convert all lines in region to list items
20815 (call-interactively 'org-toggle-heading))))
20817 (defun org-ctrl-c-minus ()
20818 "Insert separator line in table or modify bullet status of line.
20819 Also turns a plain line or a region of lines into list items.
20820 Calls `org-table-insert-hline', `org-toggle-item', or
20821 `org-cycle-list-bullet', depending on context."
20822 (interactive)
20823 (cond
20824 ((org-at-table-p)
20825 (call-interactively 'org-table-insert-hline))
20826 ((org-region-active-p)
20827 (call-interactively 'org-toggle-item))
20828 ((org-in-item-p)
20829 (call-interactively 'org-cycle-list-bullet))
20831 (call-interactively 'org-toggle-item))))
20833 (defun org-toggle-item (arg)
20834 "Convert headings or normal lines to items, items to normal lines.
20835 If there is no active region, only the current line is considered.
20837 If the first non blank line in the region is a headline, convert
20838 all headlines to items, shifting text accordingly.
20840 If it is an item, convert all items to normal lines.
20842 If it is normal text, change region into a list of items.
20843 With a prefix argument ARG, change the region in a single item."
20844 (interactive "P")
20845 (let ((shift-text
20846 (function
20847 ;; Shift text in current section to IND, from point to END.
20848 ;; The function leaves point to END line.
20849 (lambda (ind end)
20850 (let ((min-i 1000) (end (copy-marker end)))
20851 ;; First determine the minimum indentation (MIN-I) of
20852 ;; the text.
20853 (save-excursion
20854 (catch 'exit
20855 (while (< (point) end)
20856 (let ((i (org-get-indentation)))
20857 (cond
20858 ;; Skip blank lines and inline tasks.
20859 ((looking-at "^[ \t]*$"))
20860 ((looking-at org-outline-regexp-bol))
20861 ;; We can't find less than 0 indentation.
20862 ((zerop i) (throw 'exit (setq min-i 0)))
20863 ((< i min-i) (setq min-i i))))
20864 (forward-line))))
20865 ;; Then indent each line so that a line indented to
20866 ;; MIN-I becomes indented to IND. Ignore blank lines
20867 ;; and inline tasks in the process.
20868 (let ((delta (- ind min-i)))
20869 (while (< (point) end)
20870 (unless (or (looking-at "^[ \t]*$")
20871 (looking-at org-outline-regexp-bol))
20872 (org-indent-line-to (+ (org-get-indentation) delta)))
20873 (forward-line)))))))
20874 (skip-blanks
20875 (function
20876 ;; Return beginning of first non-blank line, starting from
20877 ;; line at POS.
20878 (lambda (pos)
20879 (save-excursion
20880 (goto-char pos)
20881 (skip-chars-forward " \r\t\n")
20882 (point-at-bol)))))
20883 beg end)
20884 ;; Determine boundaries of changes.
20885 (if (org-region-active-p)
20886 (setq beg (funcall skip-blanks (region-beginning))
20887 end (copy-marker (region-end)))
20888 (setq beg (funcall skip-blanks (point-at-bol))
20889 end (copy-marker (point-at-eol))))
20890 ;; Depending on the starting line, choose an action on the text
20891 ;; between BEG and END.
20892 (org-with-limited-levels
20893 (save-excursion
20894 (goto-char beg)
20895 (cond
20896 ;; Case 1. Start at an item: de-itemize. Note that it only
20897 ;; happens when a region is active: `org-ctrl-c-minus'
20898 ;; would call `org-cycle-list-bullet' otherwise.
20899 ((org-at-item-p)
20900 (while (< (point) end)
20901 (when (org-at-item-p)
20902 (skip-chars-forward " \t")
20903 (delete-region (point) (match-end 0)))
20904 (forward-line)))
20905 ;; Case 2. Start at an heading: convert to items.
20906 ((org-at-heading-p)
20907 (let* ((bul (org-list-bullet-string "-"))
20908 (bul-len (length bul))
20909 (done (org-entry-is-done-p))
20910 (todo (org-entry-is-todo-p))
20911 ;; Indentation of the first heading. It should be
20912 ;; relative to the indentation of its parent, if any.
20913 (start-ind (save-excursion
20914 (cond
20915 ((not org-adapt-indentation) 0)
20916 ((not (outline-previous-heading)) 0)
20917 (t (length (match-string 0))))))
20918 ;; Level of first heading. Further headings will be
20919 ;; compared to it to determine hierarchy in the list.
20920 (ref-level (org-reduced-level (org-outline-level))))
20921 (when (or done todo) (org-todo ""))
20922 (while (< (point) end)
20923 (let* ((level (org-reduced-level (org-outline-level)))
20924 (delta (max 0 (- level ref-level))))
20925 ;; If current headline is less indented than the first
20926 ;; one, set it as reference, in order to preserve
20927 ;; subtrees.
20928 (when (< level ref-level) (setq ref-level level))
20929 (replace-match bul t t)
20930 (org-indent-line-to (+ start-ind (* delta bul-len)))
20931 (when (or done todo)
20932 (let* ((struct (org-list-struct))
20933 (old (copy-tree struct)))
20934 (org-list-set-checkbox (line-beginning-position)
20935 struct
20936 (if done "[X]" "[ ]"))
20937 (org-list-write-struct struct
20938 (org-list-parents-alist struct)
20939 old)))
20940 ;; Ensure all text down to END (or SECTION-END) belongs
20941 ;; to the newly created item.
20942 (let ((section-end (save-excursion
20943 (or (outline-next-heading) (point)))))
20944 (forward-line)
20945 (funcall shift-text
20946 (+ start-ind (* (1+ delta) bul-len))
20947 (min end section-end)))))))
20948 ;; Case 3. Normal line with ARG: make the first line of region
20949 ;; an item, and shift indentation of others lines to
20950 ;; set them as item's body.
20951 (arg (let* ((bul (org-list-bullet-string "-"))
20952 (bul-len (length bul))
20953 (ref-ind (org-get-indentation)))
20954 (skip-chars-forward " \t")
20955 (insert bul)
20956 (forward-line)
20957 (while (< (point) end)
20958 ;; Ensure that lines less indented than first one
20959 ;; still get included in item body.
20960 (funcall shift-text
20961 (+ ref-ind bul-len)
20962 (min end (save-excursion (or (outline-next-heading)
20963 (point)))))
20964 (forward-line))))
20965 ;; Case 4. Normal line without ARG: turn each non-item line
20966 ;; into an item.
20968 (while (< (point) end)
20969 (unless (or (org-at-heading-p) (org-at-item-p))
20970 (if (looking-at "\\([ \t]*\\)\\(\\S-\\)")
20971 (replace-match
20972 (concat "\\1" (org-list-bullet-string "-") "\\2"))))
20973 (forward-line))))))))
20975 (defun org-toggle-heading (&optional nstars)
20976 "Convert headings to normal text, or items or text to headings.
20977 If there is no active region, only convert the current line.
20979 With a \\[universal-argument] prefix, convert the whole list at
20980 point into heading.
20982 In a region:
20984 - If the first non blank line is a headline, remove the stars
20985 from all headlines in the region.
20987 - If it is a normal line, turn each and every normal line (i.e.,
20988 not an heading or an item) in the region into headings. If you
20989 want to convert only the first line of this region, use one
20990 universal prefix argument.
20992 - If it is a plain list item, turn all plain list items into headings.
20994 When converting a line into a heading, the number of stars is chosen
20995 such that the lines become children of the current entry. However,
20996 when a numeric prefix argument is given, its value determines the
20997 number of stars to add."
20998 (interactive "P")
20999 (let ((skip-blanks
21000 (function
21001 ;; Return beginning of first non-blank line, starting from
21002 ;; line at POS.
21003 (lambda (pos)
21004 (save-excursion
21005 (goto-char pos)
21006 (while (org-at-comment-p) (forward-line))
21007 (skip-chars-forward " \r\t\n")
21008 (point-at-bol)))))
21009 beg end toggled)
21010 ;; Determine boundaries of changes. If a universal prefix has
21011 ;; been given, put the list in a region. If region ends at a bol,
21012 ;; do not consider the last line to be in the region.
21014 (when (and current-prefix-arg (org-at-item-p))
21015 (if (listp current-prefix-arg) (setq current-prefix-arg 1))
21016 (org-mark-element))
21018 (if (org-region-active-p)
21019 (setq beg (funcall skip-blanks (region-beginning))
21020 end (copy-marker (save-excursion
21021 (goto-char (region-end))
21022 (if (bolp) (point) (point-at-eol)))))
21023 (setq beg (funcall skip-blanks (point-at-bol))
21024 end (copy-marker (point-at-eol))))
21025 ;; Ensure inline tasks don't count as headings.
21026 (org-with-limited-levels
21027 (save-excursion
21028 (goto-char beg)
21029 (cond
21030 ;; Case 1. Started at an heading: de-star headings.
21031 ((org-at-heading-p)
21032 (while (< (point) end)
21033 (when (org-at-heading-p t)
21034 (looking-at org-outline-regexp) (replace-match "")
21035 (setq toggled t))
21036 (forward-line)))
21037 ;; Case 2. Started at an item: change items into headlines.
21038 ;; One star will be added by `org-list-to-subtree'.
21039 ((org-at-item-p)
21040 (let* ((stars (make-string
21041 ;; subtract the star that will be added again by
21042 ;; `org-list-to-subtree'
21043 (if (numberp nstars) (1- nstars)
21044 (or (org-current-level) 0))
21045 ?*))
21046 (add-stars
21047 (cond (nstars "") ; stars from prefix only
21048 ((equal stars "") "") ; before first heading
21049 (org-odd-levels-only "*") ; inside heading, odd
21050 (t "")))) ; inside heading, oddeven
21051 (while (< (point) end)
21052 (when (org-at-item-p)
21053 ;; Pay attention to cases when region ends before list.
21054 (let* ((struct (org-list-struct))
21055 (list-end (min (org-list-get-bottom-point struct) (1+ end))))
21056 (save-restriction
21057 (narrow-to-region (point) list-end)
21058 (insert
21059 (org-list-to-subtree
21060 (org-list-parse-list t)
21061 '(:istart (concat stars add-stars (funcall get-stars depth))
21062 :icount (concat stars add-stars (funcall get-stars depth)))))))
21063 (setq toggled t))
21064 (forward-line))))
21065 ;; Case 3. Started at normal text: make every line an heading,
21066 ;; skipping headlines and items.
21067 (t (let* ((stars
21068 (make-string
21069 (if (numberp nstars) nstars (or (org-current-level) 0)) ?*))
21070 (add-stars
21071 (cond (nstars "") ; stars from prefix only
21072 ((equal stars "") "*") ; before first heading
21073 (org-odd-levels-only "**") ; inside heading, odd
21074 (t "*"))) ; inside heading, oddeven
21075 (rpl (concat stars add-stars " "))
21076 (lend (if (listp nstars) (save-excursion (end-of-line) (point)))))
21077 (while (< (point) (if (equal nstars '(4)) lend end))
21078 (when (and (not (or (org-at-heading-p) (org-at-item-p) (org-at-comment-p)))
21079 (looking-at "\\([ \t]*\\)\\(\\S-\\)"))
21080 (replace-match (concat rpl (match-string 2))) (setq toggled t))
21081 (forward-line)))))))
21082 (unless toggled (message "Cannot toggle heading from here"))))
21084 (defun org-meta-return (&optional arg)
21085 "Insert a new heading or wrap a region in a table.
21086 Calls `org-insert-heading' or `org-table-wrap-region', depending
21087 on context. See the individual commands for more information."
21088 (interactive "P")
21089 (org-check-before-invisible-edit 'insert)
21090 (or (run-hook-with-args-until-success 'org-metareturn-hook)
21091 (let* ((element (org-element-at-point))
21092 (type (org-element-type element)))
21093 (when (eq type 'table-row)
21094 (setq element (org-element-property :parent element))
21095 (setq type 'table))
21096 (if (and (eq type 'table)
21097 (eq (org-element-property :type element) 'org)
21098 (>= (point) (org-element-property :contents-begin element))
21099 (< (point) (org-element-property :contents-end element)))
21100 (call-interactively 'org-table-wrap-region)
21101 (call-interactively 'org-insert-heading)))))
21103 ;;; Menu entries
21105 (defsubst org-in-subtree-not-table-p ()
21106 "Are we in a subtree and not in a table?"
21107 (and (not (org-before-first-heading-p))
21108 (not (org-at-table-p))))
21110 ;; Define the Org-mode menus
21111 (easy-menu-define org-tbl-menu org-mode-map "Tbl menu"
21112 '("Tbl"
21113 ["Align" org-ctrl-c-ctrl-c :active (org-at-table-p)]
21114 ["Next Field" org-cycle (org-at-table-p)]
21115 ["Previous Field" org-shifttab (org-at-table-p)]
21116 ["Next Row" org-return (org-at-table-p)]
21117 "--"
21118 ["Blank Field" org-table-blank-field (org-at-table-p)]
21119 ["Edit Field" org-table-edit-field (org-at-table-p)]
21120 ["Copy Field from Above" org-table-copy-down (org-at-table-p)]
21121 "--"
21122 ("Column"
21123 ["Move Column Left" org-metaleft (org-at-table-p)]
21124 ["Move Column Right" org-metaright (org-at-table-p)]
21125 ["Delete Column" org-shiftmetaleft (org-at-table-p)]
21126 ["Insert Column" org-shiftmetaright (org-at-table-p)])
21127 ("Row"
21128 ["Move Row Up" org-metaup (org-at-table-p)]
21129 ["Move Row Down" org-metadown (org-at-table-p)]
21130 ["Delete Row" org-shiftmetaup (org-at-table-p)]
21131 ["Insert Row" org-shiftmetadown (org-at-table-p)]
21132 ["Sort lines in region" org-table-sort-lines (org-at-table-p)]
21133 "--"
21134 ["Insert Hline" org-ctrl-c-minus (org-at-table-p)])
21135 ("Rectangle"
21136 ["Copy Rectangle" org-copy-special (org-at-table-p)]
21137 ["Cut Rectangle" org-cut-special (org-at-table-p)]
21138 ["Paste Rectangle" org-paste-special (org-at-table-p)]
21139 ["Fill Rectangle" org-table-wrap-region (org-at-table-p)])
21140 "--"
21141 ("Calculate"
21142 ["Set Column Formula" org-table-eval-formula (org-at-table-p)]
21143 ["Set Field Formula" (org-table-eval-formula '(4)) :active (org-at-table-p) :keys "C-u C-c ="]
21144 ["Edit Formulas" org-edit-special (org-at-table-p)]
21145 "--"
21146 ["Recalculate line" org-table-recalculate (org-at-table-p)]
21147 ["Recalculate all" (lambda () (interactive) (org-table-recalculate '(4))) :active (org-at-table-p) :keys "C-u C-c *"]
21148 ["Iterate all" (lambda () (interactive) (org-table-recalculate '(16))) :active (org-at-table-p) :keys "C-u C-u C-c *"]
21149 "--"
21150 ["Toggle Recalculate Mark" org-table-rotate-recalc-marks (org-at-table-p)]
21151 "--"
21152 ["Sum Column/Rectangle" org-table-sum
21153 (or (org-at-table-p) (org-region-active-p))]
21154 ["Which Column?" org-table-current-column (org-at-table-p)])
21155 ["Debug Formulas"
21156 org-table-toggle-formula-debugger
21157 :style toggle :selected (org-bound-and-true-p org-table-formula-debug)]
21158 ["Show Col/Row Numbers"
21159 org-table-toggle-coordinate-overlays
21160 :style toggle
21161 :selected (org-bound-and-true-p org-table-overlay-coordinates)]
21162 "--"
21163 ["Create" org-table-create (and (not (org-at-table-p))
21164 org-enable-table-editor)]
21165 ["Convert Region" org-table-convert-region (not (org-at-table-p 'any))]
21166 ["Import from File" org-table-import (not (org-at-table-p))]
21167 ["Export to File" org-table-export (org-at-table-p)]
21168 "--"
21169 ["Create/Convert from/to table.el" org-table-create-with-table.el t]))
21171 (easy-menu-define org-org-menu org-mode-map "Org menu"
21172 '("Org"
21173 ("Show/Hide"
21174 ["Cycle Visibility" org-cycle :active (or (bobp) (outline-on-heading-p))]
21175 ["Cycle Global Visibility" org-shifttab :active (not (org-at-table-p))]
21176 ["Sparse Tree..." org-sparse-tree t]
21177 ["Reveal Context" org-reveal t]
21178 ["Show All" show-all t]
21179 "--"
21180 ["Subtree to indirect buffer" org-tree-to-indirect-buffer t])
21181 "--"
21182 ["New Heading" org-insert-heading t]
21183 ("Navigate Headings"
21184 ["Up" outline-up-heading t]
21185 ["Next" outline-next-visible-heading t]
21186 ["Previous" outline-previous-visible-heading t]
21187 ["Next Same Level" outline-forward-same-level t]
21188 ["Previous Same Level" outline-backward-same-level t]
21189 "--"
21190 ["Jump" org-goto t])
21191 ("Edit Structure"
21192 ["Refile Subtree" org-refile (org-in-subtree-not-table-p)]
21193 "--"
21194 ["Move Subtree Up" org-shiftmetaup (org-in-subtree-not-table-p)]
21195 ["Move Subtree Down" org-shiftmetadown (org-in-subtree-not-table-p)]
21196 "--"
21197 ["Copy Subtree" org-copy-special (org-in-subtree-not-table-p)]
21198 ["Cut Subtree" org-cut-special (org-in-subtree-not-table-p)]
21199 ["Paste Subtree" org-paste-special (not (org-at-table-p))]
21200 "--"
21201 ["Clone subtree, shift time" org-clone-subtree-with-time-shift t]
21202 "--"
21203 ["Copy visible text" org-copy-visible t]
21204 "--"
21205 ["Promote Heading" org-metaleft (org-in-subtree-not-table-p)]
21206 ["Promote Subtree" org-shiftmetaleft (org-in-subtree-not-table-p)]
21207 ["Demote Heading" org-metaright (org-in-subtree-not-table-p)]
21208 ["Demote Subtree" org-shiftmetaright (org-in-subtree-not-table-p)]
21209 "--"
21210 ["Sort Region/Children" org-sort t]
21211 "--"
21212 ["Convert to odd levels" org-convert-to-odd-levels t]
21213 ["Convert to odd/even levels" org-convert-to-oddeven-levels t])
21214 ("Editing"
21215 ["Emphasis..." org-emphasize t]
21216 ["Edit Source Example" org-edit-special t]
21217 "--"
21218 ["Footnote new/jump" org-footnote-action t]
21219 ["Footnote extra" (org-footnote-action t) :active t :keys "C-u C-c C-x f"])
21220 ("Archive"
21221 ["Archive (default method)" org-archive-subtree-default (org-in-subtree-not-table-p)]
21222 "--"
21223 ["Move Subtree to Archive file" org-advertized-archive-subtree (org-in-subtree-not-table-p)]
21224 ["Toggle ARCHIVE tag" org-toggle-archive-tag (org-in-subtree-not-table-p)]
21225 ["Move subtree to Archive sibling" org-archive-to-archive-sibling (org-in-subtree-not-table-p)]
21227 "--"
21228 ("Hyperlinks"
21229 ["Store Link (Global)" org-store-link t]
21230 ["Find existing link to here" org-occur-link-in-agenda-files t]
21231 ["Insert Link" org-insert-link t]
21232 ["Follow Link" org-open-at-point t]
21233 "--"
21234 ["Next link" org-next-link t]
21235 ["Previous link" org-previous-link t]
21236 "--"
21237 ["Descriptive Links"
21238 org-toggle-link-display
21239 :style radio
21240 :selected org-descriptive-links
21242 ["Literal Links"
21243 org-toggle-link-display
21244 :style radio
21245 :selected (not org-descriptive-links)])
21246 "--"
21247 ("TODO Lists"
21248 ["TODO/DONE/-" org-todo t]
21249 ("Select keyword"
21250 ["Next keyword" org-shiftright (org-at-heading-p)]
21251 ["Previous keyword" org-shiftleft (org-at-heading-p)]
21252 ["Complete Keyword" pcomplete (assq :todo-keyword (org-context))]
21253 ["Next keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-at-heading-p))]
21254 ["Previous keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-at-heading-p))])
21255 ["Show TODO Tree" org-show-todo-tree :active t :keys "C-c / t"]
21256 ["Global TODO list" org-todo-list :active t :keys "C-c a t"]
21257 "--"
21258 ["Enforce dependencies" (customize-variable 'org-enforce-todo-dependencies)
21259 :selected org-enforce-todo-dependencies :style toggle :active t]
21260 "Settings for tree at point"
21261 ["Do Children sequentially" org-toggle-ordered-property :style radio
21262 :selected (org-entry-get nil "ORDERED")
21263 :active org-enforce-todo-dependencies :keys "C-c C-x o"]
21264 ["Do Children parallel" org-toggle-ordered-property :style radio
21265 :selected (not (org-entry-get nil "ORDERED"))
21266 :active org-enforce-todo-dependencies :keys "C-c C-x o"]
21267 "--"
21268 ["Set Priority" org-priority t]
21269 ["Priority Up" org-shiftup t]
21270 ["Priority Down" org-shiftdown t]
21271 "--"
21272 ["Get news from all feeds" org-feed-update-all t]
21273 ["Go to the inbox of a feed..." org-feed-goto-inbox t]
21274 ["Customize feeds" (customize-variable 'org-feed-alist) t])
21275 ("TAGS and Properties"
21276 ["Set Tags" org-set-tags-command (not (org-before-first-heading-p))]
21277 ["Change tag in region" org-change-tag-in-region (org-region-active-p)]
21278 "--"
21279 ["Set property" org-set-property (not (org-before-first-heading-p))]
21280 ["Column view of properties" org-columns t]
21281 ["Insert Column View DBlock" org-insert-columns-dblock t])
21282 ("Dates and Scheduling"
21283 ["Timestamp" org-time-stamp (not (org-before-first-heading-p))]
21284 ["Timestamp (inactive)" org-time-stamp-inactive (not (org-before-first-heading-p))]
21285 ("Change Date"
21286 ["1 Day Later" org-shiftright (org-at-timestamp-p)]
21287 ["1 Day Earlier" org-shiftleft (org-at-timestamp-p)]
21288 ["1 ... Later" org-shiftup (org-at-timestamp-p)]
21289 ["1 ... Earlier" org-shiftdown (org-at-timestamp-p)])
21290 ["Compute Time Range" org-evaluate-time-range t]
21291 ["Schedule Item" org-schedule (not (org-before-first-heading-p))]
21292 ["Deadline" org-deadline (not (org-before-first-heading-p))]
21293 "--"
21294 ["Custom time format" org-toggle-time-stamp-overlays
21295 :style radio :selected org-display-custom-times]
21296 "--"
21297 ["Goto Calendar" org-goto-calendar t]
21298 ["Date from Calendar" org-date-from-calendar t]
21299 "--"
21300 ["Start/Restart Timer" org-timer-start t]
21301 ["Pause/Continue Timer" org-timer-pause-or-continue t]
21302 ["Stop Timer" org-timer-pause-or-continue :active t :keys "C-u C-c C-x ,"]
21303 ["Insert Timer String" org-timer t]
21304 ["Insert Timer Item" org-timer-item t])
21305 ("Logging work"
21306 ["Clock in" org-clock-in :active t :keys "C-c C-x C-i"]
21307 ["Switch task" (lambda () (interactive) (org-clock-in '(4))) :active t :keys "C-u C-c C-x C-i"]
21308 ["Clock out" org-clock-out t]
21309 ["Clock cancel" org-clock-cancel t]
21310 "--"
21311 ["Mark as default task" org-clock-mark-default-task t]
21312 ["Clock in, mark as default" (lambda () (interactive) (org-clock-in '(16))) :active t :keys "C-u C-u C-c C-x C-i"]
21313 ["Goto running clock" org-clock-goto t]
21314 "--"
21315 ["Display times" org-clock-display t]
21316 ["Create clock table" org-clock-report t]
21317 "--"
21318 ["Record DONE time"
21319 (progn (setq org-log-done (not org-log-done))
21320 (message "Switching to %s will %s record a timestamp"
21321 (car org-done-keywords)
21322 (if org-log-done "automatically" "not")))
21323 :style toggle :selected org-log-done])
21324 "--"
21325 ["Agenda Command..." org-agenda t]
21326 ["Set Restriction Lock" org-agenda-set-restriction-lock t]
21327 ("File List for Agenda")
21328 ("Special views current file"
21329 ["TODO Tree" org-show-todo-tree t]
21330 ["Check Deadlines" org-check-deadlines t]
21331 ["Timeline" org-timeline t]
21332 ["Tags/Property tree" org-match-sparse-tree t])
21333 "--"
21334 ["Export/Publish..." org-export-dispatch t]
21335 ("LaTeX"
21336 ["Org CDLaTeX mode" org-cdlatex-mode :style toggle
21337 :selected org-cdlatex-mode]
21338 ["Insert Environment" cdlatex-environment (fboundp 'cdlatex-environment)]
21339 ["Insert math symbol" cdlatex-math-symbol (fboundp 'cdlatex-math-symbol)]
21340 ["Modify math symbol" org-cdlatex-math-modify
21341 (org-inside-LaTeX-fragment-p)]
21342 ["Insert citation" org-reftex-citation t]
21343 "--"
21344 ["Template for BEAMER" (org-beamer-insert-options-template) t])
21345 "--"
21346 ("MobileOrg"
21347 ["Push Files and Views" org-mobile-push t]
21348 ["Get Captured and Flagged" org-mobile-pull t]
21349 ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "C-c a ?"]
21350 "--"
21351 ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
21352 "--"
21353 ("Documentation"
21354 ["Show Version" org-version t]
21355 ["Info Documentation" org-info t])
21356 ("Customize"
21357 ["Browse Org Group" org-customize t]
21358 "--"
21359 ["Expand This Menu" org-create-customize-menu
21360 (fboundp 'customize-menu-create)])
21361 ["Send bug report" org-submit-bug-report t]
21362 "--"
21363 ("Refresh/Reload"
21364 ["Refresh setup current buffer" org-mode-restart t]
21365 ["Reload Org (after update)" org-reload t]
21366 ["Reload Org uncompiled" (org-reload t) :active t :keys "C-u C-c C-x !"])
21369 (defun org-info (&optional node)
21370 "Read documentation for Org-mode in the info system.
21371 With optional NODE, go directly to that node."
21372 (interactive)
21373 (info (format "(org)%s" (or node ""))))
21375 ;;;###autoload
21376 (defun org-submit-bug-report ()
21377 "Submit a bug report on Org-mode via mail.
21379 Don't hesitate to report any problems or inaccurate documentation.
21381 If you don't have setup sending mail from (X)Emacs, please copy the
21382 output buffer into your mail program, as it gives us important
21383 information about your Org-mode version and configuration."
21384 (interactive)
21385 (require 'reporter)
21386 (org-load-modules-maybe)
21387 (org-require-autoloaded-modules)
21388 (let ((reporter-prompt-for-summary-p "Bug report subject: "))
21389 (reporter-submit-bug-report
21390 "emacs-orgmode@gnu.org"
21391 (org-version nil 'full)
21392 (let (list)
21393 (save-window-excursion
21394 (org-pop-to-buffer-same-window (get-buffer-create "*Warn about privacy*"))
21395 (delete-other-windows)
21396 (erase-buffer)
21397 (insert "You are about to submit a bug report to the Org-mode mailing list.
21399 We would like to add your full Org-mode and Outline configuration to the
21400 bug report. This greatly simplifies the work of the maintainer and
21401 other experts on the mailing list.
21403 HOWEVER, some variables you have customized may contain private
21404 information. The names of customers, colleagues, or friends, might
21405 appear in the form of file names, tags, todo states, or search strings.
21406 If you answer yes to the prompt, you might want to check and remove
21407 such private information before sending the email.")
21408 (add-text-properties (point-min) (point-max) '(face org-warning))
21409 (when (yes-or-no-p "Include your Org-mode configuration ")
21410 (mapatoms
21411 (lambda (v)
21412 (and (boundp v)
21413 (string-match "\\`\\(org-\\|outline-\\)" (symbol-name v))
21414 (or (and (symbol-value v)
21415 (string-match "\\(-hook\\|-function\\)\\'" (symbol-name v)))
21416 (and
21417 (get v 'custom-type) (get v 'standard-value)
21418 (not (equal (symbol-value v) (eval (car (get v 'standard-value)))))))
21419 (push v list)))))
21420 (kill-buffer (get-buffer "*Warn about privacy*"))
21421 list))
21422 nil nil
21423 "Remember to cover the basics, that is, what you expected to happen and
21424 what in fact did happen. You don't know how to make a good report? See
21426 http://orgmode.org/manual/Feedback.html#Feedback
21428 Your bug report will be posted to the Org-mode mailing list.
21429 ------------------------------------------------------------------------")
21430 (save-excursion
21431 (if (re-search-backward "^\\(Subject: \\)Org-mode version \\(.*?\\);[ \t]*\\(.*\\)" nil t)
21432 (replace-match "\\1Bug: \\3 [\\2]")))))
21435 (defun org-install-agenda-files-menu ()
21436 (let ((bl (buffer-list)))
21437 (save-excursion
21438 (while bl
21439 (set-buffer (pop bl))
21440 (if (derived-mode-p 'org-mode) (setq bl nil)))
21441 (when (derived-mode-p 'org-mode)
21442 (easy-menu-change
21443 '("Org") "File List for Agenda"
21444 (append
21445 (list
21446 ["Edit File List" (org-edit-agenda-file-list) t]
21447 ["Add/Move Current File to Front of List" org-agenda-file-to-front t]
21448 ["Remove Current File from List" org-remove-file t]
21449 ["Cycle through agenda files" org-cycle-agenda-files t]
21450 ["Occur in all agenda files" org-occur-in-agenda-files t]
21451 "--")
21452 (mapcar 'org-file-menu-entry (org-agenda-files t))))))))
21454 ;;;; Documentation
21456 (defun org-require-autoloaded-modules ()
21457 (interactive)
21458 (mapc 'require
21459 '(org-agenda org-archive org-attach org-clock org-colview org-id
21460 org-table org-timer)))
21462 ;;;###autoload
21463 (defun org-reload (&optional uncompiled)
21464 "Reload all org lisp files.
21465 With prefix arg UNCOMPILED, load the uncompiled versions."
21466 (interactive "P")
21467 (require 'loadhist)
21468 (let* ((org-dir (org-find-library-dir "org"))
21469 (contrib-dir (or (org-find-library-dir "org-contribdir") org-dir))
21470 (feature-re "^\\(org\\|ob\\|ox\\)\\(-.*\\)?")
21471 (remove-re (mapconcat 'identity
21472 (mapcar (lambda (f) (concat "^" f "$"))
21473 (list (if (featurep 'xemacs)
21474 "org-colview"
21475 "org-colview-xemacs")
21476 "org" "org-loaddefs" "org-version"))
21477 "\\|"))
21478 (feats (delete-dups
21479 (mapcar 'file-name-sans-extension
21480 (mapcar 'file-name-nondirectory
21481 (delq nil
21482 (mapcar 'feature-file
21483 features))))))
21484 (lfeat (append
21485 (sort
21486 (setq feats
21487 (delq nil (mapcar
21488 (lambda (f)
21489 (if (and (string-match feature-re f)
21490 (not (string-match remove-re f)))
21491 f nil))
21492 feats)))
21493 'string-lessp)
21494 (list "org-version" "org")))
21495 (load-suffixes (when (boundp 'load-suffixes) load-suffixes))
21496 (load-suffixes (if uncompiled (reverse load-suffixes) load-suffixes))
21497 load-uncore load-misses)
21498 (setq load-misses
21499 (delq 't
21500 (mapcar (lambda (f)
21501 (or (org-load-noerror-mustsuffix (concat org-dir f))
21502 (and (string= org-dir contrib-dir)
21503 (org-load-noerror-mustsuffix (concat contrib-dir f)))
21504 (and (org-load-noerror-mustsuffix (concat (org-find-library-dir f) f))
21505 (add-to-list 'load-uncore f 'append)
21508 lfeat)))
21509 (if load-uncore
21510 (message "The following feature%s found in load-path, please check if that's correct:\n%s"
21511 (if (> (length load-uncore) 1) "s were" " was") load-uncore))
21512 (if load-misses
21513 (message "Some error occurred while reloading Org feature%s\n%s\nPlease check *Messages*!\n%s"
21514 (if (> (length load-misses) 1) "s" "") load-misses (org-version nil 'full))
21515 (message "Successfully reloaded Org\n%s" (org-version nil 'full)))))
21517 ;;;###autoload
21518 (defun org-customize ()
21519 "Call the customize function with org as argument."
21520 (interactive)
21521 (org-load-modules-maybe)
21522 (org-require-autoloaded-modules)
21523 (customize-browse 'org))
21525 (defun org-create-customize-menu ()
21526 "Create a full customization menu for Org-mode, insert it into the menu."
21527 (interactive)
21528 (org-load-modules-maybe)
21529 (org-require-autoloaded-modules)
21530 (if (fboundp 'customize-menu-create)
21531 (progn
21532 (easy-menu-change
21533 '("Org") "Customize"
21534 `(["Browse Org group" org-customize t]
21535 "--"
21536 ,(customize-menu-create 'org)
21537 ["Set" Custom-set t]
21538 ["Save" Custom-save t]
21539 ["Reset to Current" Custom-reset-current t]
21540 ["Reset to Saved" Custom-reset-saved t]
21541 ["Reset to Standard Settings" Custom-reset-standard t]))
21542 (message "\"Org\"-menu now contains full customization menu"))
21543 (error "Cannot expand menu (outdated version of cus-edit.el)")))
21545 ;;;; Miscellaneous stuff
21547 ;;; Generally useful functions
21549 (defsubst org-get-at-eol (property n)
21550 "Get text property PROPERTY at the end of line less N characters."
21551 (get-text-property (- (point-at-eol) n) property))
21553 (defun org-find-text-property-in-string (prop s)
21554 "Return the first non-nil value of property PROP in string S."
21555 (or (get-text-property 0 prop s)
21556 (get-text-property (or (next-single-property-change 0 prop s) 0)
21557 prop s)))
21559 (defun org-display-warning (message) ;; Copied from Emacs-Muse
21560 "Display the given MESSAGE as a warning."
21561 (if (fboundp 'display-warning)
21562 (display-warning 'org message
21563 (if (featurep 'xemacs) 'warning :warning))
21564 (let ((buf (get-buffer-create "*Org warnings*")))
21565 (with-current-buffer buf
21566 (goto-char (point-max))
21567 (insert "Warning (Org): " message)
21568 (unless (bolp)
21569 (newline)))
21570 (display-buffer buf)
21571 (sit-for 0))))
21573 (defun org-eval (form)
21574 "Eval FORM and return result."
21575 (condition-case error
21576 (eval form)
21577 (error (format "%%![Error: %s]" error))))
21579 (defun org-in-clocktable-p ()
21580 "Check if the cursor is in a clocktable."
21581 (let ((pos (point)) start)
21582 (save-excursion
21583 (end-of-line 1)
21584 (and (re-search-backward "^[ \t]*#\\+BEGIN:[ \t]+clocktable" nil t)
21585 (setq start (match-beginning 0))
21586 (re-search-forward "^[ \t]*#\\+END:.*" nil t)
21587 (>= (match-end 0) pos)
21588 start))))
21590 (defun org-in-verbatim-emphasis ()
21591 (save-match-data
21592 (and (org-in-regexp org-emph-re 2)
21593 (>= (point) (match-beginning 3))
21594 (<= (point) (match-end 4))
21595 (member (match-string 3) '("=" "~")))))
21597 (defun org-goto-marker-or-bmk (marker &optional bookmark)
21598 "Go to MARKER, widen if necessary. When marker is not live, try BOOKMARK."
21599 (if (and marker (marker-buffer marker)
21600 (buffer-live-p (marker-buffer marker)))
21601 (progn
21602 (org-pop-to-buffer-same-window (marker-buffer marker))
21603 (if (or (> marker (point-max)) (< marker (point-min)))
21604 (widen))
21605 (goto-char marker)
21606 (org-show-context 'org-goto))
21607 (if bookmark
21608 (bookmark-jump bookmark)
21609 (error "Cannot find location"))))
21611 (defun org-quote-csv-field (s)
21612 "Quote field for inclusion in CSV material."
21613 (if (string-match "[\",]" s)
21614 (concat "\"" (mapconcat 'identity (split-string s "\"") "\"\"") "\"")
21617 (defun org-force-self-insert (N)
21618 "Needed to enforce self-insert under remapping."
21619 (interactive "p")
21620 (self-insert-command N))
21622 (defun org-string-width (s)
21623 "Compute width of string, ignoring invisible characters.
21624 This ignores character with invisibility property `org-link', and also
21625 characters with property `org-cwidth', because these will become invisible
21626 upon the next fontification round."
21627 (let (b l)
21628 (when (or (eq t buffer-invisibility-spec)
21629 (assq 'org-link buffer-invisibility-spec))
21630 (while (setq b (text-property-any 0 (length s)
21631 'invisible 'org-link s))
21632 (setq s (concat (substring s 0 b)
21633 (substring s (or (next-single-property-change
21634 b 'invisible s) (length s)))))))
21635 (while (setq b (text-property-any 0 (length s) 'org-cwidth t s))
21636 (setq s (concat (substring s 0 b)
21637 (substring s (or (next-single-property-change
21638 b 'org-cwidth s) (length s))))))
21639 (setq l (string-width s) b -1)
21640 (while (setq b (text-property-any (1+ b) (length s) 'org-dwidth t s))
21641 (setq l (- l (get-text-property b 'org-dwidth-n s))))
21644 (defun org-shorten-string (s maxlength)
21645 "Shorten string S so tht it is no longer than MAXLENGTH characters.
21646 If the string is shorter or has length MAXLENGTH, just return the
21647 original string. If it is longer, the functions finds a space in the
21648 string, breaks this string off at that locations and adds three dots
21649 as ellipsis. Including the ellipsis, the string will not be longer
21650 than MAXLENGTH. If finding a good breaking point in the string does
21651 not work, the string is just chopped off in the middle of a word
21652 if necessary."
21653 (if (<= (length s) maxlength)
21655 (let* ((n (max (- maxlength 4) 1))
21656 (re (concat "\\`\\(.\\{1," (int-to-string n) "\\}[^ ]\\)\\([ ]\\|\\'\\)")))
21657 (if (string-match re s)
21658 (concat (match-string 1 s) "...")
21659 (concat (substring s 0 (max (- maxlength 3) 0)) "...")))))
21661 (defun org-get-indentation (&optional line)
21662 "Get the indentation of the current line, interpreting tabs.
21663 When LINE is given, assume it represents a line and compute its indentation."
21664 (if line
21665 (if (string-match "^ *" (org-remove-tabs line))
21666 (match-end 0))
21667 (save-excursion
21668 (beginning-of-line 1)
21669 (skip-chars-forward " \t")
21670 (current-column))))
21672 (defun org-get-string-indentation (s)
21673 "What indentation has S due to SPACE and TAB at the beginning of the string?"
21674 (let ((n -1) (i 0) (w tab-width) c)
21675 (catch 'exit
21676 (while (< (setq n (1+ n)) (length s))
21677 (setq c (aref s n))
21678 (cond ((= c ?\ ) (setq i (1+ i)))
21679 ((= c ?\t) (setq i (* (/ (+ w i) w) w)))
21680 (t (throw 'exit t)))))
21683 (defun org-remove-tabs (s &optional width)
21684 "Replace tabulators in S with spaces.
21685 Assumes that s is a single line, starting in column 0."
21686 (setq width (or width tab-width))
21687 (while (string-match "\t" s)
21688 (setq s (replace-match
21689 (make-string
21690 (- (* width (/ (+ (match-beginning 0) width) width))
21691 (match-beginning 0)) ?\ )
21692 t t s)))
21695 (defun org-fix-indentation (line ind)
21696 "Fix indentation in LINE.
21697 IND is a cons cell with target and minimum indentation.
21698 If the current indentation in LINE is smaller than the minimum,
21699 leave it alone. If it is larger than ind, set it to the target."
21700 (let* ((l (org-remove-tabs line))
21701 (i (org-get-indentation l))
21702 (i1 (car ind)) (i2 (cdr ind)))
21703 (if (>= i i2) (setq l (substring line i2)))
21704 (if (> i1 0)
21705 (concat (make-string i1 ?\ ) l)
21706 l)))
21708 (defun org-remove-indentation (code &optional n)
21709 "Remove the maximum common indentation from the lines in CODE.
21710 N may optionally be the number of spaces to remove."
21711 (with-temp-buffer
21712 (insert code)
21713 (org-do-remove-indentation n)
21714 (buffer-string)))
21716 (defun org-do-remove-indentation (&optional n)
21717 "Remove the maximum common indentation from the buffer."
21718 (untabify (point-min) (point-max))
21719 (let ((min 10000) re)
21720 (if n
21721 (setq min n)
21722 (goto-char (point-min))
21723 (while (re-search-forward "^ *[^ \n]" nil t)
21724 (setq min (min min (1- (- (match-end 0) (match-beginning 0)))))))
21725 (unless (or (= min 0) (= min 10000))
21726 (setq re (format "^ \\{%d\\}" min))
21727 (goto-char (point-min))
21728 (while (re-search-forward re nil t)
21729 (replace-match "")
21730 (end-of-line 1))
21731 min)))
21733 (defun org-fill-template (template alist)
21734 "Find each %key of ALIST in TEMPLATE and replace it."
21735 (let ((case-fold-search nil)
21736 entry key value)
21737 (setq alist (sort (copy-sequence alist)
21738 (lambda (a b) (< (length (car a)) (length (car b))))))
21739 (while (setq entry (pop alist))
21740 (setq template
21741 (replace-regexp-in-string
21742 (concat "%" (regexp-quote (car entry)))
21743 (or (cdr entry) "") template t t)))
21744 template))
21746 (defun org-base-buffer (buffer)
21747 "Return the base buffer of BUFFER, if it has one. Else return the buffer."
21748 (if (not buffer)
21749 buffer
21750 (or (buffer-base-buffer buffer)
21751 buffer)))
21753 (defun org-wrap (string &optional width lines)
21754 "Wrap string to either a number of lines, or a width in characters.
21755 If WIDTH is non-nil, the string is wrapped to that width, however many lines
21756 that costs. If there is a word longer than WIDTH, the text is actually
21757 wrapped to the length of that word.
21758 IF WIDTH is nil and LINES is non-nil, the string is forced into at most that
21759 many lines, whatever width that takes.
21760 The return value is a list of lines, without newlines at the end."
21761 (let* ((words (org-split-string string "[ \t\n]+"))
21762 (maxword (apply 'max (mapcar 'org-string-width words)))
21763 w ll)
21764 (cond (width
21765 (org-do-wrap words (max maxword width)))
21766 (lines
21767 (setq w maxword)
21768 (setq ll (org-do-wrap words maxword))
21769 (if (<= (length ll) lines)
21771 (setq ll words)
21772 (while (> (length ll) lines)
21773 (setq w (1+ w))
21774 (setq ll (org-do-wrap words w)))
21775 ll))
21776 (t (error "Cannot wrap this")))))
21778 (defun org-do-wrap (words width)
21779 "Create lines of maximum width WIDTH (in characters) from word list WORDS."
21780 (let (lines line)
21781 (while words
21782 (setq line (pop words))
21783 (while (and words (< (+ (length line) (length (car words))) width))
21784 (setq line (concat line " " (pop words))))
21785 (setq lines (push line lines)))
21786 (nreverse lines)))
21788 (defun org-split-string (string &optional separators)
21789 "Splits STRING into substrings at SEPARATORS.
21790 No empty strings are returned if there are matches at the beginning
21791 and end of string."
21792 (let ((rexp (or separators "[ \f\t\n\r\v]+"))
21793 (start 0)
21794 notfirst
21795 (list nil))
21796 (while (and (string-match rexp string
21797 (if (and notfirst
21798 (= start (match-beginning 0))
21799 (< start (length string)))
21800 (1+ start) start))
21801 (< (match-beginning 0) (length string)))
21802 (setq notfirst t)
21803 (or (eq (match-beginning 0) 0)
21804 (and (eq (match-beginning 0) (match-end 0))
21805 (eq (match-beginning 0) start))
21806 (setq list
21807 (cons (substring string start (match-beginning 0))
21808 list)))
21809 (setq start (match-end 0)))
21810 (or (eq start (length string))
21811 (setq list
21812 (cons (substring string start)
21813 list)))
21814 (nreverse list)))
21816 (defun org-quote-vert (s)
21817 "Replace \"|\" with \"\\vert\"."
21818 (while (string-match "|" s)
21819 (setq s (replace-match "\\vert" t t s)))
21822 (defun org-uuidgen-p (s)
21823 "Is S an ID created by UUIDGEN?"
21824 (string-match "\\`[0-9a-f]\\{8\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{12\\}\\'" (downcase s)))
21826 (defun org-in-src-block-p (&optional inside)
21827 "Whether point is in a code source block.
21828 When INSIDE is non-nil, don't consider we are within a src block
21829 when point is at #+BEGIN_SRC or #+END_SRC."
21830 (let ((case-fold-search t) ov)
21831 (or (and (setq ov (overlays-at (point)))
21832 (memq 'org-block-background
21833 (overlay-properties (car ov))))
21834 (and (not inside)
21835 (save-match-data
21836 (save-excursion
21837 (beginning-of-line)
21838 (looking-at ".*#\\+\\(begin\\|end\\)_src")))))))
21840 (defun org-context ()
21841 "Return a list of contexts of the current cursor position.
21842 If several contexts apply, all are returned.
21843 Each context entry is a list with a symbol naming the context, and
21844 two positions indicating start and end of the context. Possible
21845 contexts are:
21847 :headline anywhere in a headline
21848 :headline-stars on the leading stars in a headline
21849 :todo-keyword on a TODO keyword (including DONE) in a headline
21850 :tags on the TAGS in a headline
21851 :priority on the priority cookie in a headline
21852 :item on the first line of a plain list item
21853 :item-bullet on the bullet/number of a plain list item
21854 :checkbox on the checkbox in a plain list item
21855 :table in an org-mode table
21856 :table-special on a special filed in a table
21857 :table-table in a table.el table
21858 :clocktable in a clocktable
21859 :src-block in a source block
21860 :link on a hyperlink
21861 :keyword on a keyword: SCHEDULED, DEADLINE, CLOSE, COMMENT.
21862 :target on a <<target>>
21863 :radio-target on a <<<radio-target>>>
21864 :latex-fragment on a LaTeX fragment
21865 :latex-preview on a LaTeX fragment with overlaid preview image
21867 This function expects the position to be visible because it uses font-lock
21868 faces as a help to recognize the following contexts: :table-special, :link,
21869 and :keyword."
21870 (let* ((f (get-text-property (point) 'face))
21871 (faces (if (listp f) f (list f)))
21872 (case-fold-search t)
21873 (p (point)) clist o)
21874 ;; First the large context
21875 (cond
21876 ((org-at-heading-p t)
21877 (push (list :headline (point-at-bol) (point-at-eol)) clist)
21878 (when (progn
21879 (beginning-of-line 1)
21880 (looking-at org-todo-line-tags-regexp))
21881 (push (org-point-in-group p 1 :headline-stars) clist)
21882 (push (org-point-in-group p 2 :todo-keyword) clist)
21883 (push (org-point-in-group p 4 :tags) clist))
21884 (goto-char p)
21885 (skip-chars-backward "^[\n\r \t") (or (bobp) (backward-char 1))
21886 (if (looking-at "\\[#[A-Z0-9]\\]")
21887 (push (org-point-in-group p 0 :priority) clist)))
21889 ((org-at-item-p)
21890 (push (org-point-in-group p 2 :item-bullet) clist)
21891 (push (list :item (point-at-bol)
21892 (save-excursion (org-end-of-item) (point)))
21893 clist)
21894 (and (org-at-item-checkbox-p)
21895 (push (org-point-in-group p 0 :checkbox) clist)))
21897 ((org-at-table-p)
21898 (push (list :table (org-table-begin) (org-table-end)) clist)
21899 (if (memq 'org-formula faces)
21900 (push (list :table-special
21901 (previous-single-property-change p 'face)
21902 (next-single-property-change p 'face)) clist)))
21903 ((org-at-table-p 'any)
21904 (push (list :table-table) clist)))
21905 (goto-char p)
21907 (let ((case-fold-search t))
21908 ;; New the "medium" contexts: clocktables, source blocks
21909 (cond ((org-in-clocktable-p)
21910 (push (list :clocktable
21911 (and (or (looking-at "[ \t]*\\(#\\+BEGIN: clocktable\\)")
21912 (re-search-backward "[ \t]*\\(#+BEGIN: clocktable\\)" nil t))
21913 (match-beginning 1))
21914 (and (re-search-forward "[ \t]*#\\+END:?" nil t)
21915 (match-end 0))) clist))
21916 ((org-in-src-block-p)
21917 (push (list :src-block
21918 (and (or (looking-at "[ \t]*\\(#\\+BEGIN_SRC\\)")
21919 (re-search-backward "[ \t]*\\(#+BEGIN_SRC\\)" nil t))
21920 (match-beginning 1))
21921 (and (search-forward "#+END_SRC" nil t)
21922 (match-beginning 0))) clist))))
21923 (goto-char p)
21925 ;; Now the small context
21926 (cond
21927 ((org-at-timestamp-p)
21928 (push (org-point-in-group p 0 :timestamp) clist))
21929 ((memq 'org-link faces)
21930 (push (list :link
21931 (previous-single-property-change p 'face)
21932 (next-single-property-change p 'face)) clist))
21933 ((memq 'org-special-keyword faces)
21934 (push (list :keyword
21935 (previous-single-property-change p 'face)
21936 (next-single-property-change p 'face)) clist))
21937 ((org-at-target-p)
21938 (push (org-point-in-group p 0 :target) clist)
21939 (goto-char (1- (match-beginning 0)))
21940 (if (looking-at org-radio-target-regexp)
21941 (push (org-point-in-group p 0 :radio-target) clist))
21942 (goto-char p))
21943 ((setq o (car (delq nil
21944 (mapcar
21945 (lambda (x)
21946 (if (memq x org-latex-fragment-image-overlays) x))
21947 (overlays-at (point))))))
21948 (push (list :latex-fragment
21949 (overlay-start o) (overlay-end o)) clist)
21950 (push (list :latex-preview
21951 (overlay-start o) (overlay-end o)) clist))
21952 ((org-inside-LaTeX-fragment-p)
21953 ;; FIXME: positions wrong.
21954 (push (list :latex-fragment (point) (point)) clist)))
21956 (setq clist (nreverse (delq nil clist)))
21957 clist))
21959 ;; FIXME: Compare with at-regexp-p Do we need both?
21960 (defun org-in-regexp (re &optional nlines visually)
21961 "Check if point is inside a match of regexp.
21962 Normally only the current line is checked, but you can include NLINES extra
21963 lines both before and after point into the search.
21964 If VISUALLY is set, require that the cursor is not after the match but
21965 really on, so that the block visually is on the match."
21966 (catch 'exit
21967 (let ((pos (point))
21968 (eol (point-at-eol (+ 1 (or nlines 0))))
21969 (inc (if visually 1 0)))
21970 (save-excursion
21971 (beginning-of-line (- 1 (or nlines 0)))
21972 (while (re-search-forward re eol t)
21973 (if (and (<= (match-beginning 0) pos)
21974 (>= (+ inc (match-end 0)) pos))
21975 (throw 'exit (cons (match-beginning 0) (match-end 0)))))))))
21977 (defun org-at-regexp-p (regexp)
21978 "Is point inside a match of REGEXP in the current line?"
21979 (catch 'exit
21980 (save-excursion
21981 (let ((pos (point)) (end (point-at-eol)))
21982 (beginning-of-line 1)
21983 (while (re-search-forward regexp end t)
21984 (if (and (<= (match-beginning 0) pos)
21985 (>= (match-end 0) pos))
21986 (throw 'exit t)))
21987 nil))))
21989 (defun org-between-regexps-p (start-re end-re &optional lim-up lim-down)
21990 "Non-nil when point is between matches of START-RE and END-RE.
21992 Also return a non-nil value when point is on one of the matches.
21994 Optional arguments LIM-UP and LIM-DOWN bound the search; they are
21995 buffer positions. Default values are the positions of headlines
21996 surrounding the point.
21998 The functions returns a cons cell whose car (resp. cdr) is the
21999 position before START-RE (resp. after END-RE)."
22000 (save-match-data
22001 (let ((pos (point))
22002 (limit-up (or lim-up (save-excursion (outline-previous-heading))))
22003 (limit-down (or lim-down (save-excursion (outline-next-heading))))
22004 beg end)
22005 (save-excursion
22006 ;; Point is on a block when on START-RE or if START-RE can be
22007 ;; found before it...
22008 (and (or (org-at-regexp-p start-re)
22009 (re-search-backward start-re limit-up t))
22010 (setq beg (match-beginning 0))
22011 ;; ... and END-RE after it...
22012 (goto-char (match-end 0))
22013 (re-search-forward end-re limit-down t)
22014 (> (setq end (match-end 0)) pos)
22015 ;; ... without another START-RE in-between.
22016 (goto-char (match-beginning 0))
22017 (not (re-search-backward start-re (1+ beg) t))
22018 ;; Return value.
22019 (cons beg end))))))
22021 (defun org-in-block-p (names)
22022 "Non-nil when point belongs to a block whose name belongs to NAMES.
22024 NAMES is a list of strings containing names of blocks.
22026 Return first block name matched, or nil. Beware that in case of
22027 nested blocks, the returned name may not belong to the closest
22028 block from point."
22029 (save-match-data
22030 (catch 'exit
22031 (let ((case-fold-search t)
22032 (lim-up (save-excursion (outline-previous-heading)))
22033 (lim-down (save-excursion (outline-next-heading))))
22034 (mapc (lambda (name)
22035 (let ((n (regexp-quote name)))
22036 (when (org-between-regexps-p
22037 (concat "^[ \t]*#\\+begin_" n)
22038 (concat "^[ \t]*#\\+end_" n)
22039 lim-up lim-down)
22040 (throw 'exit n))))
22041 names))
22042 nil)))
22044 (defun org-in-drawer-p ()
22045 "Non-nil if point is within a drawer.
22046 If point is within a drawer, return it, as parsed data."
22047 (let ((element (save-match-data (org-element-at-point))))
22048 (while (and element (not (memq (org-element-type element)
22049 '(drawer property-drawer))))
22050 (setq element (org-element-property :parent element)))
22051 element))
22053 (defun org-occur-in-agenda-files (regexp &optional nlines)
22054 "Call `multi-occur' with buffers for all agenda files."
22055 (interactive "sOrg-files matching: \np")
22056 (let* ((files (org-agenda-files))
22057 (tnames (mapcar 'file-truename files))
22058 (extra org-agenda-text-search-extra-files)
22060 (when (eq (car extra) 'agenda-archives)
22061 (setq extra (cdr extra))
22062 (setq files (org-add-archive-files files)))
22063 (while (setq f (pop extra))
22064 (unless (member (file-truename f) tnames)
22065 (add-to-list 'files f 'append)
22066 (add-to-list 'tnames (file-truename f) 'append)))
22067 (multi-occur
22068 (mapcar (lambda (x)
22069 (with-current-buffer
22070 (or (get-file-buffer x) (find-file-noselect x))
22071 (widen)
22072 (current-buffer)))
22073 files)
22074 regexp)))
22076 (if (boundp 'occur-mode-find-occurrence-hook)
22077 ;; Emacs 23
22078 (add-hook 'occur-mode-find-occurrence-hook
22079 (lambda ()
22080 (when (derived-mode-p 'org-mode)
22081 (org-reveal))))
22082 ;; Emacs 22
22083 (defadvice occur-mode-goto-occurrence
22084 (after org-occur-reveal activate)
22085 (and (derived-mode-p 'org-mode) (org-reveal)))
22086 (defadvice occur-mode-goto-occurrence-other-window
22087 (after org-occur-reveal activate)
22088 (and (derived-mode-p 'org-mode) (org-reveal)))
22089 (defadvice occur-mode-display-occurrence
22090 (after org-occur-reveal activate)
22091 (when (derived-mode-p 'org-mode)
22092 (let ((pos (occur-mode-find-occurrence)))
22093 (with-current-buffer (marker-buffer pos)
22094 (save-excursion
22095 (goto-char pos)
22096 (org-reveal)))))))
22098 (defun org-occur-link-in-agenda-files ()
22099 "Create a link and search for it in the agendas.
22100 The link is not stored in `org-stored-links', it is just created
22101 for the search purpose."
22102 (interactive)
22103 (let ((link (condition-case nil
22104 (org-store-link nil)
22105 (error "Unable to create a link to here"))))
22106 (org-occur-in-agenda-files (regexp-quote link))))
22108 (defun org-reverse-string (string)
22109 "Return the reverse of STRING."
22110 (apply 'string (reverse (string-to-list string))))
22112 ;; defsubst org-uniquify must be defined before first use
22114 (defun org-uniquify-alist (alist)
22115 "Merge elements of ALIST with the same key.
22117 For example, in this alist:
22119 \(org-uniquify-alist '((a 1) (b 2) (a 3)))
22120 => '((a 1 3) (b 2))
22122 merge (a 1) and (a 3) into (a 1 3).
22124 The function returns the new ALIST."
22125 (let (rtn)
22126 (mapc
22127 (lambda (e)
22128 (let (n)
22129 (if (not (assoc (car e) rtn))
22130 (push e rtn)
22131 (setq n (cons (car e) (append (cdr (assoc (car e) rtn)) (cdr e))))
22132 (setq rtn (assq-delete-all (car e) rtn))
22133 (push n rtn))))
22134 alist)
22135 rtn))
22137 (defun org-delete-all (elts list)
22138 "Remove all elements in ELTS from LIST."
22139 (while elts
22140 (setq list (delete (pop elts) list)))
22141 list)
22143 (defun org-count (cl-item cl-seq)
22144 "Count the number of occurrences of ITEM in SEQ.
22145 Taken from `count' in cl-seq.el with all keyword arguments removed."
22146 (let ((cl-end (length cl-seq)) (cl-start 0) (cl-count 0) cl-x)
22147 (when (consp cl-seq) (setq cl-seq (nthcdr cl-start cl-seq)))
22148 (while (< cl-start cl-end)
22149 (setq cl-x (if (consp cl-seq) (pop cl-seq) (aref cl-seq cl-start)))
22150 (if (equal cl-item cl-x) (setq cl-count (1+ cl-count)))
22151 (setq cl-start (1+ cl-start)))
22152 cl-count))
22154 (defun org-remove-if (predicate seq)
22155 "Remove everything from SEQ that fulfills PREDICATE."
22156 (let (res e)
22157 (while seq
22158 (setq e (pop seq))
22159 (if (not (funcall predicate e)) (push e res)))
22160 (nreverse res)))
22162 (defun org-remove-if-not (predicate seq)
22163 "Remove everything from SEQ that does not fulfill PREDICATE."
22164 (let (res e)
22165 (while seq
22166 (setq e (pop seq))
22167 (if (funcall predicate e) (push e res)))
22168 (nreverse res)))
22170 (defun org-reduce (cl-func cl-seq &rest cl-keys)
22171 "Reduce two-argument FUNCTION across SEQ.
22172 Taken from `reduce' in cl-seq.el with all keyword arguments but
22173 \":initial-value\" removed."
22174 (let ((cl-accum (cond ((memq :initial-value cl-keys)
22175 (cadr (memq :initial-value cl-keys)))
22176 (cl-seq (pop cl-seq))
22177 (t (funcall cl-func)))))
22178 (while cl-seq
22179 (setq cl-accum (funcall cl-func cl-accum (pop cl-seq))))
22180 cl-accum))
22182 (defun org-every (pred seq)
22183 "Return true if PREDICATE is true of every element of SEQ.
22184 Adapted from `every' in cl.el."
22185 (catch 'org-every
22186 (mapc (lambda (e) (unless (funcall pred e) (throw 'org-every nil))) seq)
22189 (defun org-some (pred seq)
22190 "Return true if PREDICATE is true of any element of SEQ.
22191 Adapted from `some' in cl.el."
22192 (catch 'org-some
22193 (mapc (lambda (e) (when (funcall pred e) (throw 'org-some t))) seq)
22194 nil))
22196 (defun org-back-over-empty-lines ()
22197 "Move backwards over whitespace, to the beginning of the first empty line.
22198 Returns the number of empty lines passed."
22199 (let ((pos (point)))
22200 (if (cdr (assoc 'heading org-blank-before-new-entry))
22201 (skip-chars-backward " \t\n\r")
22202 (unless (eobp)
22203 (forward-line -1)))
22204 (beginning-of-line 2)
22205 (goto-char (min (point) pos))
22206 (count-lines (point) pos)))
22208 (defun org-skip-whitespace ()
22209 (skip-chars-forward " \t\n\r"))
22211 (defun org-point-in-group (point group &optional context)
22212 "Check if POINT is in match-group GROUP.
22213 If CONTEXT is non-nil, return a list with CONTEXT and the boundaries of the
22214 match. If the match group does not exist or point is not inside it,
22215 return nil."
22216 (and (match-beginning group)
22217 (>= point (match-beginning group))
22218 (<= point (match-end group))
22219 (if context
22220 (list context (match-beginning group) (match-end group))
22221 t)))
22223 (defun org-switch-to-buffer-other-window (&rest args)
22224 "Switch to buffer in a second window on the current frame.
22225 In particular, do not allow pop-up frames.
22226 Returns the newly created buffer."
22227 (org-no-popups
22228 (apply 'switch-to-buffer-other-window args)))
22230 (defun org-combine-plists (&rest plists)
22231 "Create a single property list from all plists in PLISTS.
22232 The process starts by copying the first list, and then setting properties
22233 from the other lists. Settings in the last list are the most significant
22234 ones and overrule settings in the other lists."
22235 (let ((rtn (copy-sequence (pop plists)))
22236 p v ls)
22237 (while plists
22238 (setq ls (pop plists))
22239 (while ls
22240 (setq p (pop ls) v (pop ls))
22241 (setq rtn (plist-put rtn p v))))
22242 rtn))
22244 (defun org-replace-escapes (string table)
22245 "Replace %-escapes in STRING with values in TABLE.
22246 TABLE is an association list with keys like \"%a\" and string values.
22247 The sequences in STRING may contain normal field width and padding information,
22248 for example \"%-5s\". Replacements happen in the sequence given by TABLE,
22249 so values can contain further %-escapes if they are define later in TABLE."
22250 (let ((tbl (copy-alist table))
22251 (case-fold-search nil)
22252 (pchg 0)
22253 e re rpl)
22254 (while (setq e (pop tbl))
22255 (setq re (concat "%-?[0-9.]*" (substring (car e) 1)))
22256 (when (and (cdr e) (string-match re (cdr e)))
22257 (let ((sref (substring (cdr e) (match-beginning 0) (match-end 0)))
22258 (safe "SREF"))
22259 (add-text-properties 0 3 (list 'sref sref) safe)
22260 (setcdr e (replace-match safe t t (cdr e)))))
22261 (while (string-match re string)
22262 (setq rpl (format (concat (substring (match-string 0 string) 0 -1) "s")
22263 (cdr e)))
22264 (setq string (replace-match rpl t t string))))
22265 (while (setq pchg (next-property-change pchg string))
22266 (let ((sref (get-text-property pchg 'sref string)))
22267 (when (and sref (string-match "SREF" string pchg))
22268 (setq string (replace-match sref t t string)))))
22269 string))
22271 (defun org-sublist (list start end)
22272 "Return a section of LIST, from START to END.
22273 Counting starts at 1."
22274 (let (rtn (c start))
22275 (setq list (nthcdr (1- start) list))
22276 (while (and list (<= c end))
22277 (push (pop list) rtn)
22278 (setq c (1+ c)))
22279 (nreverse rtn)))
22281 (defun org-find-base-buffer-visiting (file)
22282 "Like `find-buffer-visiting' but always return the base buffer and
22283 not an indirect buffer."
22284 (let ((buf (or (get-file-buffer file)
22285 (find-buffer-visiting file))))
22286 (if buf
22287 (or (buffer-base-buffer buf) buf)
22288 nil)))
22290 (defun org-image-file-name-regexp (&optional extensions)
22291 "Return regexp matching the file names of images.
22292 If EXTENSIONS is given, only match these."
22293 (if (and (not extensions) (fboundp 'image-file-name-regexp))
22294 (image-file-name-regexp)
22295 (let ((image-file-name-extensions
22296 (or extensions
22297 '("png" "jpeg" "jpg" "gif" "tiff" "tif"
22298 "xbm" "xpm" "pbm" "pgm" "ppm"))))
22299 (concat "\\."
22300 (regexp-opt (nconc (mapcar 'upcase
22301 image-file-name-extensions)
22302 image-file-name-extensions)
22304 "\\'"))))
22306 (defun org-file-image-p (file &optional extensions)
22307 "Return non-nil if FILE is an image."
22308 (save-match-data
22309 (string-match (org-image-file-name-regexp extensions) file)))
22311 (defun org-get-cursor-date (&optional with-time)
22312 "Return the date at cursor in as a time.
22313 This works in the calendar and in the agenda, anywhere else it just
22314 returns the current time.
22315 If WITH-TIME is non-nil, returns the time of the event at point (in
22316 the agenda) or the current time of the day."
22317 (let (date day defd tp tm hod mod)
22318 (when with-time
22319 (setq tp (get-text-property (point) 'time))
22320 (when (and tp (string-match "\\([0-9][0-9]\\):\\([0-9][0-9]\\)" tp))
22321 (setq hod (string-to-number (match-string 1 tp))
22322 mod (string-to-number (match-string 2 tp))))
22323 (or tp (setq hod (nth 2 (decode-time (current-time)))
22324 mod (nth 1 (decode-time (current-time))))))
22325 (cond
22326 ((eq major-mode 'calendar-mode)
22327 (setq date (calendar-cursor-to-date)
22328 defd (encode-time 0 (or mod 0) (or hod 0)
22329 (nth 1 date) (nth 0 date) (nth 2 date))))
22330 ((eq major-mode 'org-agenda-mode)
22331 (setq day (get-text-property (point) 'day))
22332 (if day
22333 (setq date (calendar-gregorian-from-absolute day)
22334 defd (encode-time 0 (or mod 0) (or hod 0)
22335 (nth 1 date) (nth 0 date) (nth 2 date))))))
22336 (or defd (current-time))))
22338 (defun org-mark-subtree (&optional up)
22339 "Mark the current subtree.
22340 This puts point at the start of the current subtree, and mark at
22341 the end. If a numeric prefix UP is given, move up into the
22342 hierarchy of headlines by UP levels before marking the subtree."
22343 (interactive "P")
22344 (org-with-limited-levels
22345 (cond ((org-at-heading-p) (beginning-of-line))
22346 ((org-before-first-heading-p) (user-error "Not in a subtree"))
22347 (t (outline-previous-visible-heading 1))))
22348 (when up (while (and (> up 0) (org-up-heading-safe)) (decf up)))
22349 (if (org-called-interactively-p 'any)
22350 (call-interactively 'org-mark-element)
22351 (org-mark-element)))
22354 ;;; Indentation
22356 (defun org--get-expected-indentation (element contentsp)
22357 "Expected indentation column for current line, according to ELEMENT.
22358 ELEMENT is an element containing point. CONTENTSP is non-nil
22359 when indentation is to be computed according to contents of
22360 ELEMENT."
22361 (let ((type (org-element-type element))
22362 (start (org-element-property :begin element)))
22363 (org-with-wide-buffer
22364 (cond
22365 (contentsp
22366 (case type
22367 (footnote-definition 0)
22368 ((headline inlinetask nil)
22369 (if (not org-adapt-indentation) 0
22370 (let ((level (org-current-level)))
22371 (if level (1+ level) 0))))
22372 ((item plain list)
22373 (org-list-item-body-column
22374 (or (org-element-property :post-affiliated element) start)))
22375 (otherwise
22376 (goto-char start)
22377 (org-get-indentation))))
22378 ((memq type '(headline inlinetask nil))
22379 (if (save-excursion (beginning-of-line) (looking-at "[ \t]*$"))
22380 (org--get-expected-indentation element t)
22382 ((eq type 'footnote-definition) 0)
22383 ;; First paragraph of a footnote definition or an item.
22384 ;; Indent like parent.
22385 ((< (line-beginning-position) start)
22386 (org--get-expected-indentation
22387 (org-element-property :parent element) t))
22388 ;; At first line: indent according to previous sibling, if any,
22389 ;; ignoring footnote definitions and inline tasks, or parent's
22390 ;; contents.
22391 ((= (line-beginning-position) start)
22392 (catch 'exit
22393 (while t
22394 (if (= (point-min) start) (throw 'exit 0)
22395 (goto-char (1- start))
22396 (let ((previous (org-element-at-point)))
22397 (while (let ((parent (org-element-property :parent previous)))
22398 (and parent
22399 (setq previous parent)
22400 (<= (org-element-property :end parent) start))))
22401 (cond ((or (not previous)
22402 (> (org-element-property :end previous) start))
22403 (throw 'exit (org--get-expected-indentation previous t)))
22404 ((memq (org-element-type previous)
22405 '(footnote-definition inlinetask))
22406 (setq start (org-element-property :begin previous)))
22407 (t (goto-char (org-element-property :begin previous))
22408 (throw 'exit (org-get-indentation)))))))))
22409 ;; Otherwise, move to the first non-blank line above.
22411 (beginning-of-line)
22412 (let ((pos (point)))
22413 (skip-chars-backward " \r\t\n")
22414 (cond
22415 ;; Two blank lines end a footnote definition or a plain
22416 ;; list. When we indent an empty line after them, the
22417 ;; containing list or footnote definition is over, so it
22418 ;; qualifies as a previous sibling. Therefore, we indent
22419 ;; like its first line.
22420 ((and (memq type '(footnote-definition plain-list))
22421 (> (count-lines (point) pos) 2))
22422 (goto-char start)
22423 (org-get-indentation))
22424 ;; Line above is the first one of a paragraph at the
22425 ;; beginning of an item or a footnote definition. Indent
22426 ;; like parent.
22427 ((< (line-beginning-position) start)
22428 (org--get-expected-indentation
22429 (org-element-property :parent element) t))
22430 ;; POS is after contents in a greater element. Indent like
22431 ;; the beginning of the element.
22433 ;; As a special case, if point is at the end of a footnote
22434 ;; definition or an item, indent like the very last element
22435 ;; within.
22436 ((let ((cend (org-element-property :contents-end element)))
22437 (and cend (<= cend pos)))
22438 (if (memq type '(footnote-definition item plain-list))
22439 (org--get-expected-indentation (org-element-at-point) nil)
22440 (goto-char start)
22441 (org-get-indentation)))
22442 ;; In any other case, indent like the current line.
22443 (t (org-get-indentation)))))))))
22445 (defun org--align-node-property ()
22446 "Align node property at point.
22447 Alignment is done according to `org-property-format', which see."
22448 (when (save-excursion
22449 (beginning-of-line)
22450 (looking-at org-property-re))
22451 (replace-match
22452 (concat (match-string 4)
22453 (format org-property-format (match-string 1) (match-string 3)))
22454 t t)))
22456 (defun org-indent-line ()
22457 "Indent line depending on context.
22459 Indentation is done according to the following rules:
22461 - Footnote definitions, headlines and inline tasks have to
22462 start at column 0.
22464 - On the very first line of an element, consider, in order, the
22465 next rules until one matches:
22467 1. If there's a sibling element before, ignoring footnote
22468 definitions and inline tasks, indent like its first line.
22470 2. If element has a parent, indent like its contents. More
22471 precisely, if parent is an item, indent after the
22472 description part, if any, or the bullet (see
22473 ``org-list-description-max-indent'). Else, indent like
22474 parent's first line.
22476 3. Otherwise, indent relatively to current level, if
22477 `org-adapt-indentation' is non-nil, or to left margin.
22479 - On a blank line at the end of a plain list, an item, or
22480 a footnote definition, indent like the very last element
22481 within.
22483 - In the code part of a source block, use language major mode
22484 to indent current line if `org-src-tab-acts-natively' is
22485 non-nil. If it is nil, do nothing.
22487 - Otherwise, indent like the first non-blank line above.
22489 The function doesn't indent an item as it could break the whole
22490 list structure. Instead, use \\<org-mode-map>\\[org-shiftmetaleft] or \
22491 \\[org-shiftmetaright].
22493 Also align node properties according to `org-property-format'."
22494 (interactive)
22495 (cond
22496 (orgstruct-is-++
22497 (let ((indent-line-function
22498 (cadadr (assq 'indent-line-function org-fb-vars))))
22499 (indent-according-to-mode)))
22500 ((org-at-heading-p) 'noindent)
22502 (let* ((element (save-excursion (beginning-of-line) (org-element-at-point)))
22503 (type (org-element-type element)))
22504 (cond ((and (memq type '(plain-list item))
22505 (= (line-beginning-position)
22506 (or (org-element-property :post-affiliated element)
22507 (org-element-property :begin element))))
22508 'noindent)
22509 ((and (eq type 'src-block)
22510 org-src-tab-acts-natively
22511 (> (line-beginning-position)
22512 (org-element-property :post-affiliated element))
22513 (< (line-beginning-position)
22514 (org-with-wide-buffer
22515 (goto-char (org-element-property :end element))
22516 (skip-chars-backward " \r\t\n")
22517 (line-beginning-position))))
22518 (let ((org-src-strip-leading-and-trailing-blank-lines nil))
22519 (org-babel-do-key-sequence-in-edit-buffer (kbd "TAB"))))
22521 (let ((column (org--get-expected-indentation element nil)))
22522 ;; Preserve current column.
22523 (if (<= (current-column) (current-indentation))
22524 (org-indent-line-to column)
22525 (save-excursion (org-indent-line-to column))))
22526 ;; Align node property. Also preserve current column.
22527 (when (eq type 'node-property)
22528 (let ((column (current-column)))
22529 (org--align-node-property)
22530 (org-move-to-column column)))))))))
22532 (defun org-indent-region (start end)
22533 "Indent each non-blank line in the region.
22534 Called from a program, START and END specify the region to
22535 indent. The function will not indent contents of example blocks,
22536 verse blocks and export blocks as leading white spaces are
22537 assumed to be significant there."
22538 (interactive "r")
22539 (save-excursion
22540 (goto-char start)
22541 (beginning-of-line)
22542 (let ((indent-to
22543 (lambda (ind pos)
22544 ;; Set IND as indentation for all lines between point and
22545 ;; POS or END, whichever comes first. Blank lines are
22546 ;; ignored. Leave point after POS once done.
22547 (let ((limit (copy-marker (min end pos))))
22548 (while (< (point) limit)
22549 (unless (org-looking-at-p "[ \t]*$") (org-indent-line-to ind))
22550 (forward-line))
22551 (set-marker limit nil))))
22552 (end (copy-marker end)))
22553 (while (< (point) end)
22554 (if (or (org-looking-at-p " \r\t\n") (org-at-heading-p)) (forward-line)
22555 (let* ((element (org-element-at-point))
22556 (type (org-element-type element))
22557 (element-end (copy-marker (org-element-property :end element)))
22558 (ind (org--get-expected-indentation element nil)))
22559 (if (or (memq type '(paragraph table table-row))
22560 (not (or (org-element-property :contents-begin element)
22561 (memq type
22562 '(example-block export-block src-block)))))
22563 ;; Elements here are indented as a single block. Also
22564 ;; align node properties.
22565 (progn
22566 (when (eq type 'node-property)
22567 (org--align-node-property)
22568 (beginning-of-line))
22569 (funcall indent-to ind element-end))
22570 ;; Elements in this category consist of three parts:
22571 ;; before the contents, the contents, and after the
22572 ;; contents. The contents are treated specially,
22573 ;; according to the element type, or not indented at
22574 ;; all. Other parts are indented as a single block.
22575 (let* ((post (copy-marker
22576 (or (org-element-property :post-affiliated element)
22577 (org-element-property :begin element))))
22578 (cbeg
22579 (copy-marker
22580 (cond
22581 ((not (org-element-property :contents-begin element))
22582 ;; Fake contents for source blocks.
22583 (org-with-wide-buffer
22584 (goto-char post)
22585 (forward-line)
22586 (point)))
22587 ((memq type '(footnote-definition item plain-list))
22588 ;; Contents in these elements could start on
22589 ;; the same line as the beginning of the
22590 ;; element. Make sure we start indenting
22591 ;; from the second line.
22592 (org-with-wide-buffer
22593 (goto-char post)
22594 (forward-line)
22595 (point)))
22596 (t (org-element-property :contents-begin element)))))
22597 (cend (copy-marker
22598 (or (org-element-property :contents-end element)
22599 ;; Fake contents for source blocks.
22600 (org-with-wide-buffer
22601 (goto-char element-end)
22602 (skip-chars-backward " \r\t\n")
22603 (line-beginning-position))))))
22604 (funcall indent-to ind cbeg)
22605 (when (< (point) end)
22606 (case type
22607 ((example-block export-block verse-block))
22608 (src-block
22609 ;; In a source block, indent source code according
22610 ;; to language major mode, but only if
22611 ;; `org-src-tab-acts-natively' is non-nil.
22612 (when (and (< (point) end) org-src-tab-acts-natively)
22613 (ignore-errors
22614 (let (org-src-strip-leading-and-trailing-blank-lines
22615 ;; Region boundaries in edit buffer.
22616 (start (1+ (- (point) cbeg)))
22617 (end (- (min cend end) cbeg)))
22618 (org-babel-do-in-edit-buffer
22619 (indent-region start end))))))
22620 (t (org-indent-region (point) (min cend end))))
22621 (goto-char (min cend end))
22622 (when (< (point) end) (funcall indent-to ind element-end)))
22623 (set-marker post nil)
22624 (set-marker cbeg nil)
22625 (set-marker cend nil)))
22626 (set-marker element-end nil))))
22627 (set-marker end nil))))
22629 (defun org-indent-drawer ()
22630 "Indent the drawer at point."
22631 (interactive)
22632 (unless (save-excursion
22633 (beginning-of-line)
22634 (org-looking-at-p org-drawer-regexp))
22635 (user-error "Not at a drawer"))
22636 (let ((element (org-element-at-point)))
22637 (unless (memq (org-element-type element) '(drawer property-drawer))
22638 (user-error "Not at a drawer"))
22639 (org-with-wide-buffer
22640 (org-indent-region (org-element-property :begin element)
22641 (org-element-property :end element))))
22642 (message "Drawer at point indented"))
22644 (defun org-indent-block ()
22645 "Indent the block at point."
22646 (interactive)
22647 (unless (save-excursion
22648 (beginning-of-line)
22649 (let ((case-fold-search t))
22650 (org-looking-at-p "[ \t]*#\\+\\(begin\\|end\\)_")))
22651 (user-error "Not at a block"))
22652 (let ((element (org-element-at-point)))
22653 (unless (memq (org-element-type element)
22654 '(comment-block center-block example-block export-block
22655 quote-block special-block src-block
22656 verse-block))
22657 (user-error "Not at a block"))
22658 (org-with-wide-buffer
22659 (org-indent-region (org-element-property :begin element)
22660 (org-element-property :end element))))
22661 (message "Block at point indented"))
22664 ;;; Filling
22666 ;; We use our own fill-paragraph and auto-fill functions.
22668 ;; `org-fill-paragraph' relies on adaptive filling and context
22669 ;; checking. Appropriate `fill-prefix' is computed with
22670 ;; `org-adaptive-fill-function'.
22672 ;; `org-auto-fill-function' takes care of auto-filling. It calls
22673 ;; `do-auto-fill' only on valid areas with `fill-prefix' shadowed with
22674 ;; `org-adaptive-fill-function' value. Internally,
22675 ;; `org-comment-line-break-function' breaks the line.
22677 ;; `org-setup-filling' installs filling and auto-filling related
22678 ;; variables during `org-mode' initialization.
22680 (defvar org-element-paragraph-separate) ; org-element.el
22681 (defun org-setup-filling ()
22682 (require 'org-element)
22683 ;; Prevent auto-fill from inserting unwanted new items.
22684 (when (boundp 'fill-nobreak-predicate)
22685 (org-set-local
22686 'fill-nobreak-predicate
22687 (org-uniquify
22688 (append fill-nobreak-predicate
22689 '(org-fill-line-break-nobreak-p
22690 org-fill-paragraph-with-timestamp-nobreak-p)))))
22691 (let ((paragraph-ending (substring org-element-paragraph-separate 1)))
22692 (org-set-local 'paragraph-start paragraph-ending)
22693 (org-set-local 'paragraph-separate paragraph-ending))
22694 (org-set-local 'fill-paragraph-function 'org-fill-paragraph)
22695 (org-set-local 'auto-fill-inhibit-regexp nil)
22696 (org-set-local 'adaptive-fill-function 'org-adaptive-fill-function)
22697 (org-set-local 'normal-auto-fill-function 'org-auto-fill-function)
22698 (org-set-local 'comment-line-break-function 'org-comment-line-break-function))
22700 (defun org-fill-line-break-nobreak-p ()
22701 "Non-nil when a new line at point would create an Org line break."
22702 (save-excursion
22703 (skip-chars-backward "[ \t]")
22704 (skip-chars-backward "\\\\")
22705 (looking-at "\\\\\\\\\\($\\|[^\\\\]\\)")))
22707 (defun org-fill-paragraph-with-timestamp-nobreak-p ()
22708 "Non-nil when a new line at point would split a timestamp."
22709 (and (org-at-timestamp-p t)
22710 (not (looking-at org-ts-regexp-both))))
22712 (declare-function message-in-body-p "message" ())
22713 (defvar orgtbl-line-start-regexp) ; From org-table.el
22714 (defun org-adaptive-fill-function ()
22715 "Compute a fill prefix for the current line.
22716 Return fill prefix, as a string, or nil if current line isn't
22717 meant to be filled. For convenience, if `adaptive-fill-regexp'
22718 matches in paragraphs or comments, use it."
22719 (catch 'exit
22720 (when (derived-mode-p 'message-mode)
22721 (save-excursion
22722 (beginning-of-line)
22723 (cond ((or (not (message-in-body-p))
22724 (looking-at orgtbl-line-start-regexp))
22725 (throw 'exit nil))
22726 ((looking-at message-cite-prefix-regexp)
22727 (throw 'exit (match-string-no-properties 0)))
22728 ((looking-at org-outline-regexp)
22729 (throw 'exit (make-string (length (match-string 0)) ?\s))))))
22730 (org-with-wide-buffer
22731 (unless (org-at-heading-p)
22732 (let* ((p (line-beginning-position))
22733 (element (save-excursion
22734 (beginning-of-line)
22735 (org-element-at-point)))
22736 (type (org-element-type element))
22737 (post-affiliated (org-element-property :post-affiliated element)))
22738 (unless (and post-affiliated (< p post-affiliated))
22739 (case type
22740 (comment
22741 (save-excursion
22742 (beginning-of-line)
22743 (looking-at "[ \t]*")
22744 (concat (match-string 0) "# ")))
22745 (footnote-definition "")
22746 ((item plain-list)
22747 (make-string (org-list-item-body-column
22748 (or post-affiliated
22749 (org-element-property :begin element)))
22750 ?\s))
22751 (paragraph
22752 ;; Fill prefix is usually the same as the current line,
22753 ;; unless the paragraph is at the beginning of an item.
22754 (let ((parent (org-element-property :parent element)))
22755 (save-excursion
22756 (beginning-of-line)
22757 (cond ((eq (org-element-type parent) 'item)
22758 (make-string (org-list-item-body-column
22759 (org-element-property :begin parent))
22760 ?\s))
22761 ((and adaptive-fill-regexp
22762 ;; Locally disable
22763 ;; `adaptive-fill-function' to let
22764 ;; `fill-context-prefix' handle
22765 ;; `adaptive-fill-regexp' variable.
22766 (let (adaptive-fill-function)
22767 (fill-context-prefix
22768 post-affiliated
22769 (org-element-property :end element)))))
22770 ((looking-at "[ \t]+") (match-string 0))
22771 (t "")))))
22772 (comment-block
22773 ;; Only fill contents if P is within block boundaries.
22774 (let* ((cbeg (save-excursion (goto-char post-affiliated)
22775 (forward-line)
22776 (point)))
22777 (cend (save-excursion
22778 (goto-char (org-element-property :end element))
22779 (skip-chars-backward " \r\t\n")
22780 (line-beginning-position))))
22781 (when (and (>= p cbeg) (< p cend))
22782 (if (save-excursion (beginning-of-line) (looking-at "[ \t]+"))
22783 (match-string 0)
22784 "")))))))))))
22786 (declare-function message-goto-body "message" ())
22787 (defvar message-cite-prefix-regexp) ; From message.el
22788 (defun org-fill-paragraph (&optional justify)
22789 "Fill element at point, when applicable.
22791 This function only applies to comment blocks, comments, example
22792 blocks and paragraphs. Also, as a special case, re-align table
22793 when point is at one.
22795 If JUSTIFY is non-nil (interactively, with prefix argument),
22796 justify as well. If `sentence-end-double-space' is non-nil, then
22797 period followed by one space does not end a sentence, so don't
22798 break a line there. The variable `fill-column' controls the
22799 width for filling.
22801 For convenience, when point is at a plain list, an item or
22802 a footnote definition, try to fill the first paragraph within."
22803 (interactive)
22804 (if (and (derived-mode-p 'message-mode)
22805 (or (not (message-in-body-p))
22806 (save-excursion (move-beginning-of-line 1)
22807 (looking-at message-cite-prefix-regexp))))
22808 ;; First ensure filling is correct in message-mode.
22809 (let ((fill-paragraph-function
22810 (cadadr (assoc 'fill-paragraph-function org-fb-vars)))
22811 (fill-prefix (cadadr (assoc 'fill-prefix org-fb-vars)))
22812 (paragraph-start (cadadr (assoc 'paragraph-start org-fb-vars)))
22813 (paragraph-separate
22814 (cadadr (assoc 'paragraph-separate org-fb-vars))))
22815 (fill-paragraph nil))
22816 (with-syntax-table org-mode-transpose-word-syntax-table
22817 ;; Move to end of line in order to get the first paragraph
22818 ;; within a plain list or a footnote definition.
22819 (let ((element (save-excursion
22820 (end-of-line)
22821 (or (ignore-errors (org-element-at-point))
22822 (user-error "An element cannot be parsed line %d"
22823 (line-number-at-pos (point)))))))
22824 ;; First check if point is in a blank line at the beginning of
22825 ;; the buffer. In that case, ignore filling.
22826 (case (org-element-type element)
22827 ;; Use major mode filling function is src blocks.
22828 (src-block (org-babel-do-key-sequence-in-edit-buffer (kbd "M-q")))
22829 ;; Align Org tables, leave table.el tables as-is.
22830 (table-row (org-table-align) t)
22831 (table
22832 (when (eq (org-element-property :type element) 'org)
22833 (save-excursion
22834 (goto-char (org-element-property :post-affiliated element))
22835 (org-table-align)))
22837 (paragraph
22838 ;; Paragraphs may contain `line-break' type objects.
22839 (let ((beg (max (point-min)
22840 (org-element-property :contents-begin element)))
22841 (end (min (point-max)
22842 (org-element-property :contents-end element))))
22843 ;; Do nothing if point is at an affiliated keyword.
22844 (if (< (line-end-position) beg) t
22845 (when (derived-mode-p 'message-mode)
22846 ;; In `message-mode', do not fill following citation
22847 ;; in current paragraph nor text before message body.
22848 (let ((body-start (save-excursion (message-goto-body))))
22849 (when body-start (setq beg (max body-start beg))))
22850 (when (save-excursion
22851 (re-search-forward
22852 (concat "^" message-cite-prefix-regexp) end t))
22853 (setq end (match-beginning 0))))
22854 ;; Fill paragraph, taking line breaks into account.
22855 ;; For that, slice the paragraph using line breaks as
22856 ;; separators, and fill the parts in reverse order to
22857 ;; avoid messing with markers.
22858 (save-excursion
22859 (goto-char end)
22860 (mapc
22861 (lambda (pos)
22862 (fill-region-as-paragraph pos (point) justify)
22863 (goto-char pos))
22864 ;; Find the list of ending positions for line breaks
22865 ;; in the current paragraph. Add paragraph
22866 ;; beginning to include first slice.
22867 (nreverse
22868 (cons beg
22869 (org-element-map
22870 (org-element--parse-objects
22871 beg end nil (org-element-restriction 'paragraph))
22872 'line-break
22873 (lambda (lb) (org-element-property :end lb)))))))
22874 t)))
22875 ;; Contents of `comment-block' type elements should be
22876 ;; filled as plain text, but only if point is within block
22877 ;; markers.
22878 (comment-block
22879 (let* ((case-fold-search t)
22880 (beg (save-excursion
22881 (goto-char (org-element-property :begin element))
22882 (re-search-forward "^[ \t]*#\\+begin_comment" nil t)
22883 (forward-line)
22884 (point)))
22885 (end (save-excursion
22886 (goto-char (org-element-property :end element))
22887 (re-search-backward "^[ \t]*#\\+end_comment" nil t)
22888 (line-beginning-position))))
22889 (if (or (< (point) beg) (> (point) end)) t
22890 (fill-region-as-paragraph
22891 (save-excursion (end-of-line)
22892 (re-search-backward "^[ \t]*$" beg 'move)
22893 (line-beginning-position))
22894 (save-excursion (beginning-of-line)
22895 (re-search-forward "^[ \t]*$" end 'move)
22896 (line-beginning-position))
22897 justify))))
22898 ;; Fill comments.
22899 (comment
22900 (let ((begin (org-element-property :post-affiliated element))
22901 (end (org-element-property :end element)))
22902 (when (and (>= (point) begin) (<= (point) end))
22903 (let ((begin (save-excursion
22904 (end-of-line)
22905 (if (re-search-backward "^[ \t]*#[ \t]*$" begin t)
22906 (progn (forward-line) (point))
22907 begin)))
22908 (end (save-excursion
22909 (end-of-line)
22910 (if (re-search-forward "^[ \t]*#[ \t]*$" end 'move)
22911 (1- (line-beginning-position))
22912 (skip-chars-backward " \r\t\n")
22913 (line-end-position)))))
22914 ;; Do not fill comments when at a blank line.
22915 (when (> end begin)
22916 (let ((fill-prefix
22917 (save-excursion
22918 (beginning-of-line)
22919 (looking-at "[ \t]*#")
22920 (let ((comment-prefix (match-string 0)))
22921 (goto-char (match-end 0))
22922 (if (looking-at adaptive-fill-regexp)
22923 (concat comment-prefix (match-string 0))
22924 (concat comment-prefix " "))))))
22925 (save-excursion
22926 (fill-region-as-paragraph begin end justify))))))
22928 ;; Ignore every other element.
22929 (otherwise t))))))
22931 (defun org-auto-fill-function ()
22932 "Auto-fill function."
22933 ;; Check if auto-filling is meaningful.
22934 (let ((fc (current-fill-column)))
22935 (when (and fc (> (current-column) fc))
22936 (let* ((fill-prefix (org-adaptive-fill-function))
22937 ;; Enforce empty fill prefix, if required. Otherwise, it
22938 ;; will be computed again.
22939 (adaptive-fill-mode (not (equal fill-prefix ""))))
22940 (when fill-prefix (do-auto-fill))))))
22942 (defun org-comment-line-break-function (&optional soft)
22943 "Break line at point and indent, continuing comment if within one.
22944 The inserted newline is marked hard if variable
22945 `use-hard-newlines' is true, unless optional argument SOFT is
22946 non-nil."
22947 (if soft (insert-and-inherit ?\n) (newline 1))
22948 (save-excursion (forward-char -1) (delete-horizontal-space))
22949 (delete-horizontal-space)
22950 (indent-to-left-margin)
22951 (insert-before-markers-and-inherit fill-prefix))
22954 ;;; Fixed Width Areas
22956 (defun org-toggle-fixed-width ()
22957 "Toggle fixed-width markup.
22959 Add or remove fixed-width markup on current line, whenever it
22960 makes sense. Return an error otherwise.
22962 If a region is active and if it contains only fixed-width areas
22963 or blank lines, remove all fixed-width markup in it. If the
22964 region contains anything else, convert all non-fixed-width lines
22965 to fixed-width ones.
22967 Blank lines at the end of the region are ignored unless the
22968 region only contains such lines."
22969 (interactive)
22970 (if (not (org-region-active-p))
22971 ;; No region:
22973 ;; Remove fixed width marker only in a fixed-with element.
22975 ;; Add fixed width maker in paragraphs, in blank lines after
22976 ;; elements or at the beginning of a headline or an inlinetask,
22977 ;; and before any one-line elements (e.g., a clock).
22978 (progn
22979 (beginning-of-line)
22980 (let* ((element (org-element-at-point))
22981 (type (org-element-type element)))
22982 (cond
22983 ((and (eq type 'fixed-width)
22984 (looking-at "[ \t]*\\(:\\(?: \\|$\\)\\)"))
22985 (replace-match
22986 "" nil nil nil (if (= (line-end-position) (match-end 0)) 0 1)))
22987 ((and (memq type '(babel-call clock comment diary-sexp headline
22988 horizontal-rule keyword paragraph
22989 planning))
22990 (or (not (org-element-property :post-affiliated element))
22991 (<= (org-element-property :post-affiliated element)
22992 (point))))
22993 (skip-chars-forward " \t")
22994 (insert ": "))
22995 ((and (org-looking-at-p "[ \t]*$")
22996 (or (eq type 'inlinetask)
22997 (save-excursion
22998 (skip-chars-forward " \r\t\n")
22999 (<= (org-element-property :end element) (point)))))
23000 (delete-region (point) (line-end-position))
23001 (org-indent-line)
23002 (insert ": "))
23003 (t (user-error "Cannot insert a fixed-width line here")))))
23004 ;; Region active.
23005 (let* ((begin (save-excursion
23006 (goto-char (region-beginning))
23007 (line-beginning-position)))
23008 (end (copy-marker
23009 (save-excursion
23010 (goto-char (region-end))
23011 (unless (eolp) (beginning-of-line))
23012 (if (save-excursion (re-search-backward "\\S-" begin t))
23013 (progn (skip-chars-backward " \r\t\n") (point))
23014 (point)))))
23015 (all-fixed-width-p
23016 (catch 'not-all-p
23017 (save-excursion
23018 (goto-char begin)
23019 (skip-chars-forward " \r\t\n")
23020 (when (eobp) (throw 'not-all-p nil))
23021 (while (< (point) end)
23022 (let ((element (org-element-at-point)))
23023 (if (eq (org-element-type element) 'fixed-width)
23024 (goto-char (org-element-property :end element))
23025 (throw 'not-all-p nil))))
23026 t))))
23027 (if all-fixed-width-p
23028 (save-excursion
23029 (goto-char begin)
23030 (while (< (point) end)
23031 (when (looking-at "[ \t]*\\(:\\(?: \\|$\\)\\)")
23032 (replace-match
23033 "" nil nil nil
23034 (if (= (line-end-position) (match-end 0)) 0 1)))
23035 (forward-line)))
23036 (let ((min-ind (point-max)))
23037 ;; Find minimum indentation across all lines.
23038 (save-excursion
23039 (goto-char begin)
23040 (if (not (save-excursion (re-search-forward "\\S-" end t)))
23041 (setq min-ind 0)
23042 (catch 'zerop
23043 (while (< (point) end)
23044 (unless (org-looking-at-p "[ \t]*$")
23045 (let ((ind (org-get-indentation)))
23046 (setq min-ind (min min-ind ind))
23047 (when (zerop ind) (throw 'zerop t))))
23048 (forward-line)))))
23049 ;; Loop over all lines and add fixed-width markup everywhere
23050 ;; but in fixed-width lines.
23051 (save-excursion
23052 (goto-char begin)
23053 (while (< (point) end)
23054 (cond
23055 ((org-at-heading-p)
23056 (insert ": ")
23057 (forward-line)
23058 (while (and (< (point) end) (org-looking-at-p "[ \t]*$"))
23059 (insert ":")
23060 (forward-line)))
23061 ((org-looking-at-p "[ \t]*:\\( \\|$\\)")
23062 (let* ((element (org-element-at-point))
23063 (element-end (org-element-property :end element)))
23064 (if (eq (org-element-type element) 'fixed-width)
23065 (progn (goto-char element-end)
23066 (skip-chars-backward " \r\t\n")
23067 (forward-line))
23068 (let ((limit (min end element-end)))
23069 (while (< (point) limit)
23070 (org-move-to-column min-ind t)
23071 (insert ": ")
23072 (forward-line))))))
23074 (org-move-to-column min-ind t)
23075 (insert ": ")
23076 (forward-line)))))))
23077 (set-marker end nil))))
23080 ;;; Comments
23082 ;; Org comments syntax is quite complex. It requires the entire line
23083 ;; to be just a comment. Also, even with the right syntax at the
23084 ;; beginning of line, some some elements (i.e. verse-block or
23085 ;; example-block) don't accept comments. Usual Emacs comment commands
23086 ;; cannot cope with those requirements. Therefore, Org replaces them.
23088 ;; Org still relies on `comment-dwim', but cannot trust
23089 ;; `comment-only-p'. So, `comment-region-function' and
23090 ;; `uncomment-region-function' both point
23091 ;; to`org-comment-or-uncomment-region'. Eventually,
23092 ;; `org-insert-comment' takes care of insertion of comments at the
23093 ;; beginning of line.
23095 ;; `org-setup-comments-handling' install comments related variables
23096 ;; during `org-mode' initialization.
23098 (defun org-setup-comments-handling ()
23099 (interactive)
23100 (org-set-local 'comment-use-syntax nil)
23101 (org-set-local 'comment-start "# ")
23102 (org-set-local 'comment-start-skip "^\\s-*#\\(?: \\|$\\)")
23103 (org-set-local 'comment-insert-comment-function 'org-insert-comment)
23104 (org-set-local 'comment-region-function 'org-comment-or-uncomment-region)
23105 (org-set-local 'uncomment-region-function 'org-comment-or-uncomment-region))
23107 (defun org-insert-comment ()
23108 "Insert an empty comment above current line.
23109 If the line is empty, insert comment at its beginning. When
23110 point is within a source block, comment according to the related
23111 major mode."
23112 (if (let ((element (org-element-at-point)))
23113 (and (eq (org-element-type element) 'src-block)
23114 (< (save-excursion
23115 (goto-char (org-element-property :post-affiliated element))
23116 (line-end-position))
23117 (point))
23118 (> (save-excursion
23119 (goto-char (org-element-property :end element))
23120 (skip-chars-backward " \r\t\n")
23121 (line-beginning-position))
23122 (point))))
23123 (org-babel-do-in-edit-buffer (call-interactively 'comment-dwim))
23124 (beginning-of-line)
23125 (if (looking-at "\\s-*$") (delete-region (point) (point-at-eol))
23126 (open-line 1))
23127 (org-indent-line)
23128 (insert "# ")))
23130 (defvar comment-empty-lines) ; From newcomment.el.
23131 (defun org-comment-or-uncomment-region (beg end &rest ignore)
23132 "Comment or uncomment each non-blank line in the region.
23133 Uncomment each non-blank line between BEG and END if it only
23134 contains commented lines. Otherwise, comment them. If region is
23135 strictly within a source block, use appropriate comment syntax."
23136 (if (let ((element (org-element-at-point)))
23137 (and (eq (org-element-type element) 'src-block)
23138 (< (save-excursion
23139 (goto-char (org-element-property :post-affiliated element))
23140 (line-end-position))
23141 beg)
23142 (>= (save-excursion
23143 (goto-char (org-element-property :end element))
23144 (skip-chars-backward " \r\t\n")
23145 (line-beginning-position))
23146 end)))
23147 (org-babel-do-in-edit-buffer (call-interactively 'comment-dwim))
23148 (save-restriction
23149 ;; Restrict region
23150 (narrow-to-region (save-excursion (goto-char beg)
23151 (skip-chars-forward " \r\t\n" end)
23152 (line-beginning-position))
23153 (save-excursion (goto-char end)
23154 (skip-chars-backward " \r\t\n" beg)
23155 (line-end-position)))
23156 (let ((uncommentp
23157 ;; UNCOMMENTP is non-nil when every non blank line between
23158 ;; BEG and END is a comment.
23159 (save-excursion
23160 (goto-char (point-min))
23161 (while (and (not (eobp))
23162 (let ((element (org-element-at-point)))
23163 (and (eq (org-element-type element) 'comment)
23164 (goto-char (min (point-max)
23165 (org-element-property
23166 :end element)))))))
23167 (eobp))))
23168 (if uncommentp
23169 ;; Only blank lines and comments in region: uncomment it.
23170 (save-excursion
23171 (goto-char (point-min))
23172 (while (not (eobp))
23173 (when (looking-at "[ \t]*\\(#\\(?: \\|$\\)\\)")
23174 (replace-match "" nil nil nil 1))
23175 (forward-line)))
23176 ;; Comment each line in region.
23177 (let ((min-indent (point-max)))
23178 ;; First find the minimum indentation across all lines.
23179 (save-excursion
23180 (goto-char (point-min))
23181 (while (and (not (eobp)) (not (zerop min-indent)))
23182 (unless (looking-at "[ \t]*$")
23183 (setq min-indent (min min-indent (current-indentation))))
23184 (forward-line)))
23185 ;; Then loop over all lines.
23186 (save-excursion
23187 (goto-char (point-min))
23188 (while (not (eobp))
23189 (unless (and (not comment-empty-lines) (looking-at "[ \t]*$"))
23190 ;; Don't get fooled by invisible text (e.g. link path)
23191 ;; when moving to column MIN-INDENT.
23192 (let ((buffer-invisibility-spec nil))
23193 (org-move-to-column min-indent t))
23194 (insert comment-start))
23195 (forward-line)))))))))
23197 (defun org-comment-dwim (arg)
23198 (interactive "*P")
23199 "Call `comment-dwim' within a source edit buffer if needed."
23200 (if (org-in-src-block-p)
23201 (org-babel-do-in-edit-buffer (call-interactively 'comment-dwim))
23202 (call-interactively 'comment-dwim)))
23205 ;;; Planning
23207 ;; This section contains tools to operate on timestamp objects, as
23208 ;; returned by, e.g. `org-element-context'.
23210 (defun org-timestamp-has-time-p (timestamp)
23211 "Non-nil when TIMESTAMP has a time specified."
23212 (org-element-property :hour-start timestamp))
23214 (defun org-timestamp-format (timestamp format &optional end utc)
23215 "Format a TIMESTAMP element into a string.
23217 FORMAT is a format specifier to be passed to
23218 `format-time-string'.
23220 When optional argument END is non-nil, use end of date-range or
23221 time-range, if possible.
23223 When optional argument UTC is non-nil, time will be expressed as
23224 Universal Time."
23225 (format-time-string
23226 format
23227 (apply 'encode-time
23228 (cons 0
23229 (mapcar
23230 (lambda (prop) (or (org-element-property prop timestamp) 0))
23231 (if end '(:minute-end :hour-end :day-end :month-end :year-end)
23232 '(:minute-start :hour-start :day-start :month-start
23233 :year-start)))))
23234 utc))
23236 (defun org-timestamp-split-range (timestamp &optional end)
23237 "Extract a timestamp object from a date or time range.
23239 TIMESTAMP is a timestamp object. END, when non-nil, means extract
23240 the end of the range. Otherwise, extract its start.
23242 Return a new timestamp object sharing the same parent as
23243 TIMESTAMP."
23244 (let ((type (org-element-property :type timestamp)))
23245 (if (memq type '(active inactive diary)) timestamp
23246 (let ((split-ts (list 'timestamp (copy-sequence (nth 1 timestamp)))))
23247 ;; Set new type.
23248 (org-element-put-property
23249 split-ts :type (if (eq type 'active-range) 'active 'inactive))
23250 ;; Copy start properties over end properties if END is
23251 ;; non-nil. Otherwise, copy end properties over `start' ones.
23252 (let ((p-alist '((:minute-start . :minute-end)
23253 (:hour-start . :hour-end)
23254 (:day-start . :day-end)
23255 (:month-start . :month-end)
23256 (:year-start . :year-end))))
23257 (dolist (p-cell p-alist)
23258 (org-element-put-property
23259 split-ts
23260 (funcall (if end 'car 'cdr) p-cell)
23261 (org-element-property
23262 (funcall (if end 'cdr 'car) p-cell) split-ts)))
23263 ;; Eventually refresh `:raw-value'.
23264 (org-element-put-property split-ts :raw-value nil)
23265 (org-element-put-property
23266 split-ts :raw-value (org-element-interpret-data split-ts)))))))
23268 (defun org-timestamp-translate (timestamp &optional boundary)
23269 "Apply `org-translate-time' on a TIMESTAMP object.
23270 When optional argument BOUNDARY is non-nil, it is either the
23271 symbol `start' or `end'. In this case, only translate the
23272 starting or ending part of TIMESTAMP if it is a date or time
23273 range. Otherwise, translate both parts."
23274 (if (and (not boundary)
23275 (memq (org-element-property :type timestamp)
23276 '(active-range inactive-range)))
23277 (concat
23278 (org-translate-time
23279 (org-element-property :raw-value
23280 (org-timestamp-split-range timestamp)))
23281 "--"
23282 (org-translate-time
23283 (org-element-property :raw-value
23284 (org-timestamp-split-range timestamp t))))
23285 (org-translate-time
23286 (org-element-property
23287 :raw-value
23288 (if (not boundary) timestamp
23289 (org-timestamp-split-range timestamp (eq boundary 'end)))))))
23293 ;;; Other stuff.
23295 (defun org-reftex-citation ()
23296 "Use reftex-citation to insert a citation into the buffer.
23297 This looks for a line like
23299 #+BIBLIOGRAPHY: foo plain option:-d
23301 and derives from it that foo.bib is the bibliography file relevant
23302 for this document. It then installs the necessary environment for RefTeX
23303 to work in this buffer and calls `reftex-citation' to insert a citation
23304 into the buffer.
23306 Export of such citations to both LaTeX and HTML is handled by the contributed
23307 package ox-bibtex by Taru Karttunen."
23308 (interactive)
23309 (let ((reftex-docstruct-symbol 'rds)
23310 (reftex-cite-format "\\cite{%l}")
23311 rds bib)
23312 (save-excursion
23313 (save-restriction
23314 (widen)
23315 (let ((case-fold-search t)
23316 (re "^[ \t]*#\\+BIBLIOGRAPHY:[ \t]+\\([^ \t\n]+\\)"))
23317 (if (not (save-excursion
23318 (or (re-search-forward re nil t)
23319 (re-search-backward re nil t))))
23320 (user-error "No bibliography defined in file")
23321 (setq bib (concat (match-string 1) ".bib")
23322 rds (list (list 'bib bib)))))))
23323 (call-interactively 'reftex-citation)))
23325 ;;;; Functions extending outline functionality
23327 (defun org-beginning-of-line (&optional arg)
23328 "Go to the beginning of the current line. If that is invisible, continue
23329 to a visible line beginning. This makes the function of C-a more intuitive.
23330 If this is a headline, and `org-special-ctrl-a/e' is set, ignore tags on the
23331 first attempt, and only move to after the tags when the cursor is already
23332 beyond the end of the headline."
23333 (interactive "P")
23334 (let ((pos (point))
23335 (special (if (consp org-special-ctrl-a/e)
23336 (car org-special-ctrl-a/e)
23337 org-special-ctrl-a/e))
23338 deactivate-mark refpos)
23339 (if (org-bound-and-true-p visual-line-mode)
23340 (beginning-of-visual-line 1)
23341 (beginning-of-line 1))
23342 (if (and arg (fboundp 'move-beginning-of-line))
23343 (call-interactively 'move-beginning-of-line)
23344 (if (bobp)
23346 (backward-char 1)
23347 (if (org-truely-invisible-p)
23348 (while (and (not (bobp)) (org-truely-invisible-p))
23349 (backward-char 1)
23350 (beginning-of-line 1))
23351 (forward-char 1))))
23352 (when special
23353 (cond
23354 ((and (looking-at org-complex-heading-regexp)
23355 (= (char-after (match-end 1)) ?\ ))
23356 (setq refpos (min (1+ (or (match-end 3) (match-end 2) (match-end 1)))
23357 (point-at-eol)))
23358 (goto-char
23359 (if (eq special t)
23360 (cond ((> pos refpos) refpos)
23361 ((= pos (point)) refpos)
23362 (t (point)))
23363 (cond ((> pos (point)) (point))
23364 ((not (eq last-command this-command)) (point))
23365 (t refpos)))))
23366 ((org-at-item-p)
23367 ;; Being at an item and not looking at an the item means point
23368 ;; was previously moved to beginning of a visual line, which
23369 ;; doesn't contain the item. Therefore, do nothing special,
23370 ;; just stay here.
23371 (when (looking-at org-list-full-item-re)
23372 ;; Set special position at first white space character after
23373 ;; bullet, and check-box, if any.
23374 (let ((after-bullet
23375 (let ((box (match-end 3)))
23376 (if (not box) (match-end 1)
23377 (let ((after (char-after box)))
23378 (if (and after (= after ? )) (1+ box) box))))))
23379 ;; Special case: Move point to special position when
23380 ;; currently after it or at beginning of line.
23381 (if (eq special t)
23382 (when (or (> pos after-bullet) (= (point) pos))
23383 (goto-char after-bullet))
23384 ;; Reversed case: Move point to special position when
23385 ;; point was already at beginning of line and command is
23386 ;; repeated.
23387 (when (and (= (point) pos) (eq last-command this-command))
23388 (goto-char after-bullet))))))))
23389 (org-no-warnings
23390 (and (featurep 'xemacs) (setq zmacs-region-stays t))))
23391 (setq disable-point-adjustment
23392 (or (not (invisible-p (point)))
23393 (not (invisible-p (max (point-min) (1- (point))))))))
23395 (defun org-end-of-line (&optional arg)
23396 "Go to the end of the line.
23397 If this is a headline, and `org-special-ctrl-a/e' is set, ignore
23398 tags on the first attempt, and only move to after the tags when
23399 the cursor is already beyond the end of the headline."
23400 (interactive "P")
23401 (let ((special (if (consp org-special-ctrl-a/e) (cdr org-special-ctrl-a/e)
23402 org-special-ctrl-a/e))
23403 (move-fun (cond ((org-bound-and-true-p visual-line-mode)
23404 'end-of-visual-line)
23405 ((fboundp 'move-end-of-line) 'move-end-of-line)
23406 (t 'end-of-line)))
23407 deactivate-mark)
23408 (if (or (not special) arg) (call-interactively move-fun)
23409 (let* ((element (save-excursion (beginning-of-line)
23410 (org-element-at-point)))
23411 (type (org-element-type element)))
23412 (cond
23413 ((memq type '(headline inlinetask))
23414 (let ((pos (point)))
23415 (beginning-of-line 1)
23416 (if (looking-at (org-re ".*?\\(?:\\([ \t]*\\)\\(:[[:alnum:]_@#%:]+:\\)?[ \t]*\\)?$"))
23417 (if (eq special t)
23418 (if (or (< pos (match-beginning 1)) (= pos (match-end 0)))
23419 (goto-char (match-beginning 1))
23420 (goto-char (match-end 0)))
23421 (if (or (< pos (match-end 0))
23422 (not (eq this-command last-command)))
23423 (goto-char (match-end 0))
23424 (goto-char (match-beginning 1))))
23425 (call-interactively move-fun))))
23426 ((outline-invisible-p (line-end-position))
23427 ;; If element is hidden, `move-end-of-line' would put point
23428 ;; after it. Use `end-of-line' to stay on current line.
23429 (call-interactively 'end-of-line))
23430 (t (call-interactively move-fun)))))
23431 (org-no-warnings (and (featurep 'xemacs) (setq zmacs-region-stays t))))
23432 (setq disable-point-adjustment
23433 (or (not (invisible-p (point)))
23434 (not (invisible-p (max (point-min) (1- (point))))))))
23436 (define-key org-mode-map "\C-a" 'org-beginning-of-line)
23437 (define-key org-mode-map "\C-e" 'org-end-of-line)
23439 (defun org-backward-sentence (&optional arg)
23440 "Go to beginning of sentence, or beginning of table field.
23441 This will call `backward-sentence' or `org-table-beginning-of-field',
23442 depending on context."
23443 (interactive "P")
23444 (cond
23445 ((org-at-table-p) (call-interactively 'org-table-beginning-of-field))
23446 (t (call-interactively 'backward-sentence))))
23448 (defun org-forward-sentence (&optional arg)
23449 "Go to end of sentence, or end of table field.
23450 This will call `forward-sentence' or `org-table-end-of-field',
23451 depending on context."
23452 (interactive "P")
23453 (cond
23454 ((org-at-table-p) (call-interactively 'org-table-end-of-field))
23455 (t (call-interactively 'forward-sentence))))
23457 (define-key org-mode-map "\M-a" 'org-backward-sentence)
23458 (define-key org-mode-map "\M-e" 'org-forward-sentence)
23460 (defun org-kill-line (&optional arg)
23461 "Kill line, to tags or end of line."
23462 (interactive "P")
23463 (cond
23464 ((or (not org-special-ctrl-k)
23465 (bolp)
23466 (not (org-at-heading-p)))
23467 (if (and (get-char-property (min (point-max) (point-at-eol)) 'invisible)
23468 org-ctrl-k-protect-subtree)
23469 (if (or (eq org-ctrl-k-protect-subtree 'error)
23470 (not (y-or-n-p "Kill hidden subtree along with headline? ")))
23471 (user-error "C-k aborted as it would kill a hidden subtree")))
23472 (call-interactively
23473 (if (org-bound-and-true-p visual-line-mode) 'kill-visual-line 'kill-line)))
23474 ((looking-at (org-re ".*?\\S-\\([ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)[ \t]*$"))
23475 (kill-region (point) (match-beginning 1))
23476 (org-set-tags nil t))
23477 (t (kill-region (point) (point-at-eol)))))
23479 (define-key org-mode-map "\C-k" 'org-kill-line)
23481 (defun org-yank (&optional arg)
23482 "Yank. If the kill is a subtree, treat it specially.
23483 This command will look at the current kill and check if is a single
23484 subtree, or a series of subtrees[1]. If it passes the test, and if the
23485 cursor is at the beginning of a line or after the stars of a currently
23486 empty headline, then the yank is handled specially. How exactly depends
23487 on the value of the following variables, both set by default.
23489 org-yank-folded-subtrees
23490 When set, the subtree(s) will be folded after insertion, but only
23491 if doing so would now swallow text after the yanked text.
23493 org-yank-adjusted-subtrees
23494 When set, the subtree will be promoted or demoted in order to
23495 fit into the local outline tree structure, which means that the level
23496 will be adjusted so that it becomes the smaller one of the two
23497 *visible* surrounding headings.
23499 Any prefix to this command will cause `yank' to be called directly with
23500 no special treatment. In particular, a simple \\[universal-argument] prefix \
23501 will just
23502 plainly yank the text as it is.
23504 \[1] The test checks if the first non-white line is a heading
23505 and if there are no other headings with fewer stars."
23506 (interactive "P")
23507 (org-yank-generic 'yank arg))
23509 (defun org-yank-generic (command arg)
23510 "Perform some yank-like command.
23512 This function implements the behavior described in the `org-yank'
23513 documentation. However, it has been generalized to work for any
23514 interactive command with similar behavior."
23516 ;; pretend to be command COMMAND
23517 (setq this-command command)
23519 (if arg
23520 (call-interactively command)
23522 (let ((subtreep ; is kill a subtree, and the yank position appropriate?
23523 (and (org-kill-is-subtree-p)
23524 (or (bolp)
23525 (and (looking-at "[ \t]*$")
23526 (string-match
23527 "\\`\\*+\\'"
23528 (buffer-substring (point-at-bol) (point)))))))
23529 swallowp)
23530 (cond
23531 ((and subtreep org-yank-folded-subtrees)
23532 (let ((beg (point))
23533 end)
23534 (if (and subtreep org-yank-adjusted-subtrees)
23535 (org-paste-subtree nil nil 'for-yank)
23536 (call-interactively command))
23538 (setq end (point))
23539 (goto-char beg)
23540 (when (and (bolp) subtreep
23541 (not (setq swallowp
23542 (org-yank-folding-would-swallow-text beg end))))
23543 (org-with-limited-levels
23544 (or (looking-at org-outline-regexp)
23545 (re-search-forward org-outline-regexp-bol end t))
23546 (while (and (< (point) end) (looking-at org-outline-regexp))
23547 (hide-subtree)
23548 (org-cycle-show-empty-lines 'folded)
23549 (condition-case nil
23550 (outline-forward-same-level 1)
23551 (error (goto-char end))))))
23552 (when swallowp
23553 (message
23554 "Inserted text not folded because that would swallow text"))
23556 (goto-char end)
23557 (skip-chars-forward " \t\n\r")
23558 (beginning-of-line 1)
23559 (push-mark beg 'nomsg)))
23560 ((and subtreep org-yank-adjusted-subtrees)
23561 (let ((beg (point-at-bol)))
23562 (org-paste-subtree nil nil 'for-yank)
23563 (push-mark beg 'nomsg)))
23565 (call-interactively command))))))
23567 (defun org-yank-folding-would-swallow-text (beg end)
23568 "Would hide-subtree at BEG swallow any text after END?"
23569 (let (level)
23570 (org-with-limited-levels
23571 (save-excursion
23572 (goto-char beg)
23573 (when (or (looking-at org-outline-regexp)
23574 (re-search-forward org-outline-regexp-bol end t))
23575 (setq level (org-outline-level)))
23576 (goto-char end)
23577 (skip-chars-forward " \t\r\n\v\f")
23578 (if (or (eobp)
23579 (and (bolp) (looking-at org-outline-regexp)
23580 (<= (org-outline-level) level)))
23581 nil ; Nothing would be swallowed
23582 t))))) ; something would swallow
23584 (define-key org-mode-map "\C-y" 'org-yank)
23586 (defun org-truely-invisible-p ()
23587 "Check if point is at a character currently not visible.
23588 This version does not only check the character property, but also
23589 `visible-mode'."
23590 ;; Early versions of noutline don't have `outline-invisible-p'.
23591 (if (org-bound-and-true-p visible-mode)
23593 (outline-invisible-p)))
23595 (defun org-invisible-p2 ()
23596 "Check if point is at a character currently not visible."
23597 (save-excursion
23598 (if (and (eolp) (not (bobp))) (backward-char 1))
23599 ;; Early versions of noutline don't have `outline-invisible-p'.
23600 (outline-invisible-p)))
23602 (defun org-back-to-heading (&optional invisible-ok)
23603 "Call `outline-back-to-heading', but provide a better error message."
23604 (condition-case nil
23605 (outline-back-to-heading invisible-ok)
23606 (error (error "Before first headline at position %d in buffer %s"
23607 (point) (current-buffer)))))
23609 (defun org-before-first-heading-p ()
23610 "Before first heading?"
23611 (save-excursion
23612 (end-of-line)
23613 (null (re-search-backward org-outline-regexp-bol nil t))))
23615 (defun org-at-heading-p (&optional ignored)
23616 (outline-on-heading-p t))
23617 ;; Compatibility alias with Org versions < 7.8.03
23618 (defalias 'org-on-heading-p 'org-at-heading-p)
23620 (defun org-in-commented-heading-p (&optional no-inheritance)
23621 "Non-nil if point is under a commented heading.
23622 This function also checks ancestors of the current headline,
23623 unless optional argument NO-INHERITANCE is non-nil."
23624 (cond
23625 ((org-before-first-heading-p) nil)
23626 ((let ((headline (nth 4 (org-heading-components))))
23627 (and headline
23628 (let ((case-fold-search nil))
23629 (org-string-match-p (concat "^" org-comment-string "\\(?: \\|$\\)")
23630 headline)))))
23631 (no-inheritance nil)
23633 (save-excursion (and (org-up-heading-safe) (org-in-commented-heading-p))))))
23635 (defun org-at-comment-p nil
23636 "Is cursor in a commented line?"
23637 (save-excursion
23638 (save-match-data
23639 (beginning-of-line)
23640 (looking-at "^[ \t]*# "))))
23642 (defun org-at-drawer-p nil
23643 "Is cursor at a drawer keyword?"
23644 (save-excursion
23645 (move-beginning-of-line 1)
23646 (looking-at org-drawer-regexp)))
23648 (defun org-at-block-p nil
23649 "Is cursor at a block keyword?"
23650 (save-excursion
23651 (move-beginning-of-line 1)
23652 (looking-at org-block-regexp)))
23654 (defun org-point-at-end-of-empty-headline ()
23655 "If point is at the end of an empty headline, return t, else nil.
23656 If the heading only contains a TODO keyword, it is still still considered
23657 empty."
23658 (and (looking-at "[ \t]*$")
23659 (when org-todo-line-regexp
23660 (save-excursion
23661 (beginning-of-line 1)
23662 (let ((case-fold-search nil))
23663 (looking-at org-todo-line-regexp)
23664 (string= (match-string 3) ""))))))
23666 (defun org-at-heading-or-item-p ()
23667 (or (org-at-heading-p) (org-at-item-p)))
23669 (defun org-at-target-p ()
23670 (or (org-in-regexp org-radio-target-regexp)
23671 (org-in-regexp org-target-regexp)))
23672 ;; Compatibility alias with Org versions < 7.8.03
23673 (defalias 'org-on-target-p 'org-at-target-p)
23675 (defun org-up-heading-all (arg)
23676 "Move to the heading line of which the present line is a subheading.
23677 This function considers both visible and invisible heading lines.
23678 With argument, move up ARG levels."
23679 (if (fboundp 'outline-up-heading-all)
23680 (outline-up-heading-all arg) ; emacs 21 version of outline.el
23681 (outline-up-heading arg t))) ; emacs 22 version of outline.el
23683 (defun org-up-heading-safe ()
23684 "Move to the heading line of which the present line is a subheading.
23685 This version will not throw an error. It will return the level of the
23686 headline found, or nil if no higher level is found.
23688 Also, this function will be a lot faster than `outline-up-heading',
23689 because it relies on stars being the outline starters. This can really
23690 make a significant difference in outlines with very many siblings."
23691 (let (start-level re)
23692 (org-back-to-heading t)
23693 (setq start-level (funcall outline-level))
23694 (if (equal start-level 1)
23696 (setq re (concat "^\\*\\{1," (number-to-string (1- start-level)) "\\} "))
23697 (if (re-search-backward re nil t)
23698 (funcall outline-level)))))
23700 (defun org-first-sibling-p ()
23701 "Is this heading the first child of its parents?"
23702 (interactive)
23703 (let ((re org-outline-regexp-bol)
23704 level l)
23705 (unless (org-at-heading-p t)
23706 (user-error "Not at a heading"))
23707 (setq level (funcall outline-level))
23708 (save-excursion
23709 (if (not (re-search-backward re nil t))
23711 (setq l (funcall outline-level))
23712 (< l level)))))
23714 (defun org-goto-sibling (&optional previous)
23715 "Goto the next sibling, even if it is invisible.
23716 When PREVIOUS is set, go to the previous sibling instead. Returns t
23717 when a sibling was found. When none is found, return nil and don't
23718 move point."
23719 (let ((fun (if previous 're-search-backward 're-search-forward))
23720 (pos (point))
23721 (re org-outline-regexp-bol)
23722 level l)
23723 (when (ignore-errors (org-back-to-heading t))
23724 (setq level (funcall outline-level))
23725 (catch 'exit
23726 (or previous (forward-char 1))
23727 (while (funcall fun re nil t)
23728 (setq l (funcall outline-level))
23729 (when (< l level) (goto-char pos) (throw 'exit nil))
23730 (when (= l level) (goto-char (match-beginning 0)) (throw 'exit t)))
23731 (goto-char pos)
23732 nil))))
23734 (defun org-show-siblings ()
23735 "Show all siblings of the current headline."
23736 (save-excursion
23737 (while (org-goto-sibling) (org-flag-heading nil)))
23738 (save-excursion
23739 (while (org-goto-sibling 'previous)
23740 (org-flag-heading nil))))
23742 (defun org-goto-first-child ()
23743 "Goto the first child, even if it is invisible.
23744 Return t when a child was found. Otherwise don't move point and
23745 return nil."
23746 (let (level (pos (point)) (re org-outline-regexp-bol))
23747 (when (ignore-errors (org-back-to-heading t))
23748 (setq level (outline-level))
23749 (forward-char 1)
23750 (if (and (re-search-forward re nil t) (> (outline-level) level))
23751 (progn (goto-char (match-beginning 0)) t)
23752 (goto-char pos) nil))))
23754 (defun org-show-hidden-entry ()
23755 "Show an entry where even the heading is hidden."
23756 (save-excursion
23757 (org-show-entry)))
23759 (defun org-flag-heading (flag &optional entry)
23760 "Flag the current heading. FLAG non-nil means make invisible.
23761 When ENTRY is non-nil, show the entire entry."
23762 (save-excursion
23763 (org-back-to-heading t)
23764 ;; Check if we should show the entire entry
23765 (if entry
23766 (progn
23767 (org-show-entry)
23768 (save-excursion
23769 (and (outline-next-heading)
23770 (org-flag-heading nil))))
23771 (outline-flag-region (max (point-min) (1- (point)))
23772 (save-excursion (outline-end-of-heading) (point))
23773 flag))))
23775 (defun org-get-next-sibling ()
23776 "Move to next heading of the same level, and return point.
23777 If there is no such heading, return nil.
23778 This is like outline-next-sibling, but invisible headings are ok."
23779 (let ((level (funcall outline-level)))
23780 (outline-next-heading)
23781 (while (and (not (eobp)) (> (funcall outline-level) level))
23782 (outline-next-heading))
23783 (if (or (eobp) (< (funcall outline-level) level))
23785 (point))))
23787 (defun org-get-last-sibling ()
23788 "Move to previous heading of the same level, and return point.
23789 If there is no such heading, return nil."
23790 (let ((opoint (point))
23791 (level (funcall outline-level)))
23792 (outline-previous-heading)
23793 (when (and (/= (point) opoint) (outline-on-heading-p t))
23794 (while (and (> (funcall outline-level) level)
23795 (not (bobp)))
23796 (outline-previous-heading))
23797 (if (< (funcall outline-level) level)
23799 (point)))))
23801 (defun org-end-of-subtree (&optional invisible-ok to-heading)
23802 "Goto to the end of a subtree."
23803 ;; This contains an exact copy of the original function, but it uses
23804 ;; `org-back-to-heading', to make it work also in invisible
23805 ;; trees. And is uses an invisible-ok argument.
23806 ;; Under Emacs this is not needed, but the old outline.el needs this fix.
23807 ;; Furthermore, when used inside Org, finding the end of a large subtree
23808 ;; with many children and grandchildren etc, this can be much faster
23809 ;; than the outline version.
23810 (org-back-to-heading invisible-ok)
23811 (let ((first t)
23812 (level (funcall outline-level)))
23813 (if (and (derived-mode-p 'org-mode) (< level 1000))
23814 ;; A true heading (not a plain list item), in Org-mode
23815 ;; This means we can easily find the end by looking
23816 ;; only for the right number of stars. Using a regexp to do
23817 ;; this is so much faster than using a Lisp loop.
23818 (let ((re (concat "^\\*\\{1," (int-to-string level) "\\} ")))
23819 (forward-char 1)
23820 (and (re-search-forward re nil 'move) (beginning-of-line 1)))
23821 ;; something else, do it the slow way
23822 (while (and (not (eobp))
23823 (or first (> (funcall outline-level) level)))
23824 (setq first nil)
23825 (outline-next-heading)))
23826 (unless to-heading
23827 (if (memq (preceding-char) '(?\n ?\^M))
23828 (progn
23829 ;; Go to end of line before heading
23830 (forward-char -1)
23831 (if (memq (preceding-char) '(?\n ?\^M))
23832 ;; leave blank line before heading
23833 (forward-char -1))))))
23834 (point))
23836 (defun org-end-of-meta-data-and-drawers ()
23837 "Jump to the first text after meta data and drawers in the current entry.
23838 This will move over empty lines, lines with planning time stamps,
23839 clocking lines, and drawers."
23840 (org-back-to-heading t)
23841 (let ((end (save-excursion (outline-next-heading) (point)))
23842 (re (concat "\\(" org-drawer-regexp "\\)"
23843 "\\|" "[ \t]*" org-keyword-time-regexp)))
23844 (forward-line 1)
23845 (while (re-search-forward re end t)
23846 (if (not (match-end 1))
23847 ;; empty or planning line
23848 (forward-line 1)
23849 ;; a drawer, find the end
23850 (re-search-forward "^[ \t]*:END:" end 'move)
23851 (forward-line 1)))
23852 (and (re-search-forward "[^\n]" nil t) (backward-char 1))
23853 (point)))
23855 (defun org-forward-heading-same-level (arg &optional invisible-ok)
23856 "Move forward to the ARG'th subheading at same level as this one.
23857 Stop at the first and last subheadings of a superior heading.
23858 Normally this only looks at visible headings, but when INVISIBLE-OK is
23859 non-nil it will also look at invisible ones."
23860 (interactive "p")
23861 (if (not (ignore-errors (org-back-to-heading invisible-ok)))
23862 (if (and arg (< arg 0))
23863 (goto-char (point-min))
23864 (outline-next-heading))
23865 (org-at-heading-p)
23866 (let ((level (- (match-end 0) (match-beginning 0) 1))
23867 (f (if (and arg (< arg 0))
23868 're-search-backward
23869 're-search-forward))
23870 (count (if arg (abs arg) 1))
23871 (result (point)))
23872 (while (and (prog1 (> count 0)
23873 (forward-char (if (and arg (< arg 0)) -1 1)))
23874 (funcall f org-outline-regexp-bol nil 'move))
23875 (let ((l (- (match-end 0) (match-beginning 0) 1)))
23876 (cond ((< l level) (setq count 0))
23877 ((and (= l level)
23878 (or invisible-ok
23879 (progn
23880 (goto-char (line-beginning-position))
23881 (not (outline-invisible-p)))))
23882 (setq count (1- count))
23883 (when (eq l level)
23884 (setq result (point)))))))
23885 (goto-char result))
23886 (beginning-of-line 1)))
23888 (defun org-backward-heading-same-level (arg &optional invisible-ok)
23889 "Move backward to the ARG'th subheading at same level as this one.
23890 Stop at the first and last subheadings of a superior heading."
23891 (interactive "p")
23892 (org-forward-heading-same-level (if arg (- arg) -1) invisible-ok))
23894 (defun org-next-block (arg &optional backward block-regexp)
23895 "Jump to the next block.
23896 With a prefix argument ARG, jump forward ARG many source blocks.
23897 When BACKWARD is non-nil, jump to the previous block.
23898 When BLOCK-REGEXP is non-nil, use this regexp to find blocks."
23899 (interactive "p")
23900 (let ((re (or block-regexp org-block-regexp))
23901 (re-search-fn (or (and backward 're-search-backward)
23902 're-search-forward)))
23903 (if (looking-at re) (forward-char 1))
23904 (condition-case nil
23905 (funcall re-search-fn re nil nil arg)
23906 (error (user-error "No %s code blocks"
23907 (if backward "previous" "further" ))))
23908 (goto-char (match-beginning 0)) (org-show-context)))
23910 (defun org-previous-block (arg &optional block-regexp)
23911 "Jump to the previous block.
23912 With a prefix argument ARG, jump backward ARG many source blocks.
23913 When BLOCK-REGEXP is non-nil, use this regexp to find blocks."
23914 (interactive "p")
23915 (org-next-block arg t block-regexp))
23917 (defun org-forward-paragraph ()
23918 "Move forward to beginning of next paragraph or equivalent.
23920 The function moves point to the beginning of the next visible
23921 structural element, which can be a paragraph, a table, a list
23922 item, etc. It also provides some special moves for convenience:
23924 - On an affiliated keyword, jump to the beginning of the
23925 relative element.
23926 - On an item or a footnote definition, move to the second
23927 element inside, if any.
23928 - On a table or a property drawer, jump after it.
23929 - On a verse or source block, stop after blank lines."
23930 (interactive)
23931 (when (eobp) (user-error "Cannot move further down"))
23932 (let* ((deactivate-mark nil)
23933 (element (org-element-at-point))
23934 (type (org-element-type element))
23935 (post-affiliated (org-element-property :post-affiliated element))
23936 (contents-begin (org-element-property :contents-begin element))
23937 (contents-end (org-element-property :contents-end element))
23938 (end (let ((end (org-element-property :end element)) (parent element))
23939 (while (and (setq parent (org-element-property :parent parent))
23940 (= (org-element-property :contents-end parent) end))
23941 (setq end (org-element-property :end parent)))
23942 end)))
23943 (cond ((not element)
23944 (skip-chars-forward " \r\t\n")
23945 (or (eobp) (beginning-of-line)))
23946 ;; On affiliated keywords, move to element's beginning.
23947 ((and post-affiliated (< (point) post-affiliated))
23948 (goto-char post-affiliated))
23949 ;; At a table row, move to the end of the table. Similarly,
23950 ;; at a node property, move to the end of the property
23951 ;; drawer.
23952 ((memq type '(node-property table-row))
23953 (goto-char (org-element-property
23954 :end (org-element-property :parent element))))
23955 ((memq type '(property-drawer table)) (goto-char end))
23956 ;; Consider blank lines as separators in verse and source
23957 ;; blocks to ease editing.
23958 ((memq type '(src-block verse-block))
23959 (when (eq type 'src-block)
23960 (setq contents-end
23961 (save-excursion (goto-char end)
23962 (skip-chars-backward " \r\t\n")
23963 (line-beginning-position))))
23964 (beginning-of-line)
23965 (when (looking-at "[ \t]*$") (skip-chars-forward " \r\t\n"))
23966 (if (not (re-search-forward "^[ \t]*$" contents-end t))
23967 (goto-char end)
23968 (skip-chars-forward " \r\t\n")
23969 (if (= (point) contents-end) (goto-char end)
23970 (beginning-of-line))))
23971 ;; With no contents, just skip element.
23972 ((not contents-begin) (goto-char end))
23973 ;; If contents are invisible, skip the element altogether.
23974 ((outline-invisible-p (line-end-position))
23975 (case type
23976 (headline
23977 (org-with-limited-levels (outline-next-visible-heading 1)))
23978 ;; At a plain list, make sure we move to the next item
23979 ;; instead of skipping the whole list.
23980 (plain-list (forward-char)
23981 (org-forward-paragraph))
23982 (otherwise (goto-char end))))
23983 ((>= (point) contents-end) (goto-char end))
23984 ((>= (point) contents-begin)
23985 ;; This can only happen on paragraphs and plain lists.
23986 (case type
23987 (paragraph (goto-char end))
23988 ;; At a plain list, try to move to second element in
23989 ;; first item, if possible.
23990 (plain-list (end-of-line)
23991 (org-forward-paragraph))))
23992 ;; When contents start on the middle of a line (e.g. in
23993 ;; items and footnote definitions), try to reach first
23994 ;; element starting after current line.
23995 ((> (line-end-position) contents-begin)
23996 (end-of-line)
23997 (org-forward-paragraph))
23998 (t (goto-char contents-begin)))))
24000 (defun org-backward-paragraph ()
24001 "Move backward to start of previous paragraph or equivalent.
24003 The function moves point to the beginning of the current
24004 structural element, which can be a paragraph, a table, a list
24005 item, etc., or to the beginning of the previous visible one if
24006 point is already there. It also provides some special moves for
24007 convenience:
24009 - On an affiliated keyword, jump to the first one.
24010 - On a table or a property drawer, move to its beginning.
24011 - On a verse or source block, stop before blank lines."
24012 (interactive)
24013 (when (bobp) (user-error "Cannot move further up"))
24014 (let* ((deactivate-mark nil)
24015 (element (org-element-at-point))
24016 (type (org-element-type element))
24017 (contents-begin (org-element-property :contents-begin element))
24018 (contents-end (org-element-property :contents-end element))
24019 (post-affiliated (org-element-property :post-affiliated element))
24020 (begin (org-element-property :begin element)))
24021 (cond
24022 ((not element) (goto-char (point-min)))
24023 ((= (point) begin)
24024 (backward-char)
24025 (org-backward-paragraph))
24026 ((and post-affiliated (<= (point) post-affiliated)) (goto-char begin))
24027 ((memq type '(node-property table-row))
24028 (goto-char (org-element-property
24029 :post-affiliated (org-element-property :parent element))))
24030 ((memq type '(property-drawer table)) (goto-char begin))
24031 ((memq type '(src-block verse-block))
24032 (when (eq type 'src-block)
24033 (setq contents-begin
24034 (save-excursion (goto-char begin) (forward-line) (point))))
24035 (if (= (point) contents-begin) (goto-char post-affiliated)
24036 ;; Inside a verse block, see blank lines as paragraph
24037 ;; separators.
24038 (let ((origin (point)))
24039 (skip-chars-backward " \r\t\n" contents-begin)
24040 (when (re-search-backward "^[ \t]*$" contents-begin 'move)
24041 (skip-chars-forward " \r\t\n" origin)
24042 (if (= (point) origin) (goto-char contents-begin)
24043 (beginning-of-line))))))
24044 ((not contents-begin) (goto-char (or post-affiliated begin)))
24045 ((eq type 'paragraph)
24046 (goto-char contents-begin)
24047 ;; When at first paragraph in an item or a footnote definition,
24048 ;; move directly to beginning of line.
24049 (let ((parent-contents
24050 (org-element-property
24051 :contents-begin (org-element-property :parent element))))
24052 (when (and parent-contents (= parent-contents contents-begin))
24053 (beginning-of-line))))
24054 ;; At the end of a greater element, move to the beginning of the
24055 ;; last element within.
24056 ((>= (point) contents-end)
24057 (goto-char (1- contents-end))
24058 (org-backward-paragraph))
24059 (t (goto-char (or post-affiliated begin))))
24060 ;; Ensure we never leave point invisible.
24061 (when (outline-invisible-p (point)) (beginning-of-visual-line))))
24063 (defun org-forward-element ()
24064 "Move forward by one element.
24065 Move to the next element at the same level, when possible."
24066 (interactive)
24067 (cond ((eobp) (user-error "Cannot move further down"))
24068 ((org-with-limited-levels (org-at-heading-p))
24069 (let ((origin (point)))
24070 (goto-char (org-end-of-subtree nil t))
24071 (unless (org-with-limited-levels (org-at-heading-p))
24072 (goto-char origin)
24073 (user-error "Cannot move further down"))))
24075 (let* ((elem (org-element-at-point))
24076 (end (org-element-property :end elem))
24077 (parent (org-element-property :parent elem)))
24078 (cond ((and parent (= (org-element-property :contents-end parent) end))
24079 (goto-char (org-element-property :end parent)))
24080 ((integer-or-marker-p end) (goto-char end))
24081 (t (message "No element at point")))))))
24083 (defun org-backward-element ()
24084 "Move backward by one element.
24085 Move to the previous element at the same level, when possible."
24086 (interactive)
24087 (cond ((bobp) (user-error "Cannot move further up"))
24088 ((org-with-limited-levels (org-at-heading-p))
24089 ;; At a headline, move to the previous one, if any, or stay
24090 ;; here.
24091 (let ((origin (point)))
24092 (org-with-limited-levels (org-backward-heading-same-level 1))
24093 ;; When current headline has no sibling above, move to its
24094 ;; parent.
24095 (when (= (point) origin)
24096 (or (org-with-limited-levels (org-up-heading-safe))
24097 (progn (goto-char origin)
24098 (user-error "Cannot move further up"))))))
24100 (let* ((elem (org-element-at-point))
24101 (beg (org-element-property :begin elem)))
24102 (cond
24103 ;; Move to beginning of current element if point isn't
24104 ;; there already.
24105 ((null beg) (message "No element at point"))
24106 ((/= (point) beg) (goto-char beg))
24107 (t (goto-char beg)
24108 (skip-chars-backward " \r\t\n")
24109 (unless (bobp)
24110 (let ((prev (org-element-at-point)))
24111 (goto-char (org-element-property :begin prev))
24112 (while (and (setq prev (org-element-property :parent prev))
24113 (<= (org-element-property :end prev) beg))
24114 (goto-char (org-element-property :begin prev)))))))))))
24116 (defun org-up-element ()
24117 "Move to upper element."
24118 (interactive)
24119 (if (org-with-limited-levels (org-at-heading-p))
24120 (unless (org-up-heading-safe) (user-error "No surrounding element"))
24121 (let* ((elem (org-element-at-point))
24122 (parent (org-element-property :parent elem)))
24123 (if parent (goto-char (org-element-property :begin parent))
24124 (if (org-with-limited-levels (org-before-first-heading-p))
24125 (user-error "No surrounding element")
24126 (org-with-limited-levels (org-back-to-heading)))))))
24128 (defvar org-element-greater-elements)
24129 (defun org-down-element ()
24130 "Move to inner element."
24131 (interactive)
24132 (let ((element (org-element-at-point)))
24133 (cond
24134 ((memq (org-element-type element) '(plain-list table))
24135 (goto-char (org-element-property :contents-begin element))
24136 (forward-char))
24137 ((memq (org-element-type element) org-element-greater-elements)
24138 ;; If contents are hidden, first disclose them.
24139 (when (outline-invisible-p (line-end-position)) (org-cycle))
24140 (goto-char (or (org-element-property :contents-begin element)
24141 (user-error "No content for this element"))))
24142 (t (user-error "No inner element")))))
24144 (defun org-drag-element-backward ()
24145 "Move backward element at point."
24146 (interactive)
24147 (if (org-with-limited-levels (org-at-heading-p)) (org-move-subtree-up)
24148 (let* ((elem (org-element-at-point))
24149 (prev-elem
24150 (save-excursion
24151 (goto-char (org-element-property :begin elem))
24152 (skip-chars-backward " \r\t\n")
24153 (unless (bobp)
24154 (let* ((beg (org-element-property :begin elem))
24155 (prev (org-element-at-point))
24156 (up prev))
24157 (while (and (setq up (org-element-property :parent up))
24158 (<= (org-element-property :end prev) beg))
24159 (setq prev up))
24160 prev)))))
24161 ;; Error out if no previous element or previous element is
24162 ;; a parent of the current one.
24163 (if (or (not prev-elem) (org-element-nested-p elem prev-elem))
24164 (user-error "Cannot drag element backward")
24165 (let ((pos (point)))
24166 (org-element-swap-A-B prev-elem elem)
24167 (goto-char (+ (org-element-property :begin prev-elem)
24168 (- pos (org-element-property :begin elem)))))))))
24170 (defun org-drag-element-forward ()
24171 "Move forward element at point."
24172 (interactive)
24173 (let* ((pos (point))
24174 (elem (org-element-at-point)))
24175 (when (= (point-max) (org-element-property :end elem))
24176 (user-error "Cannot drag element forward"))
24177 (goto-char (org-element-property :end elem))
24178 (let ((next-elem (org-element-at-point)))
24179 (when (or (org-element-nested-p elem next-elem)
24180 (and (eq (org-element-type next-elem) 'headline)
24181 (not (eq (org-element-type elem) 'headline))))
24182 (goto-char pos)
24183 (user-error "Cannot drag element forward"))
24184 ;; Compute new position of point: it's shifted by NEXT-ELEM
24185 ;; body's length (without final blanks) and by the length of
24186 ;; blanks between ELEM and NEXT-ELEM.
24187 (let ((size-next (- (save-excursion
24188 (goto-char (org-element-property :end next-elem))
24189 (skip-chars-backward " \r\t\n")
24190 (forward-line)
24191 ;; Small correction if buffer doesn't end
24192 ;; with a newline character.
24193 (if (and (eolp) (not (bolp))) (1+ (point)) (point)))
24194 (org-element-property :begin next-elem)))
24195 (size-blank (- (org-element-property :end elem)
24196 (save-excursion
24197 (goto-char (org-element-property :end elem))
24198 (skip-chars-backward " \r\t\n")
24199 (forward-line)
24200 (point)))))
24201 (org-element-swap-A-B elem next-elem)
24202 (goto-char (+ pos size-next size-blank))))))
24204 (defun org-drag-line-forward (arg)
24205 "Drag the line at point ARG lines forward."
24206 (interactive "p")
24207 (dotimes (n (abs arg))
24208 (let ((c (current-column)))
24209 (if (< 0 arg)
24210 (progn
24211 (beginning-of-line 2)
24212 (transpose-lines 1)
24213 (beginning-of-line 0))
24214 (transpose-lines 1)
24215 (beginning-of-line -1))
24216 (org-move-to-column c))))
24218 (defun org-drag-line-backward (arg)
24219 "Drag the line at point ARG lines backward."
24220 (interactive "p")
24221 (org-drag-line-forward (- arg)))
24223 (defun org-mark-element ()
24224 "Put point at beginning of this element, mark at end.
24226 Interactively, if this command is repeated or (in Transient Mark
24227 mode) if the mark is active, it marks the next element after the
24228 ones already marked."
24229 (interactive)
24230 (let (deactivate-mark)
24231 (if (and (org-called-interactively-p 'any)
24232 (or (and (eq last-command this-command) (mark t))
24233 (and transient-mark-mode mark-active)))
24234 (set-mark
24235 (save-excursion
24236 (goto-char (mark))
24237 (goto-char (org-element-property :end (org-element-at-point)))))
24238 (let ((element (org-element-at-point)))
24239 (end-of-line)
24240 (push-mark (org-element-property :end element) t t)
24241 (goto-char (org-element-property :begin element))))))
24243 (defun org-narrow-to-element ()
24244 "Narrow buffer to current element."
24245 (interactive)
24246 (let ((elem (org-element-at-point)))
24247 (cond
24248 ((eq (car elem) 'headline)
24249 (narrow-to-region
24250 (org-element-property :begin elem)
24251 (org-element-property :end elem)))
24252 ((memq (car elem) org-element-greater-elements)
24253 (narrow-to-region
24254 (org-element-property :contents-begin elem)
24255 (org-element-property :contents-end elem)))
24257 (narrow-to-region
24258 (org-element-property :begin elem)
24259 (org-element-property :end elem))))))
24261 (defun org-transpose-element ()
24262 "Transpose current and previous elements, keeping blank lines between.
24263 Point is moved after both elements."
24264 (interactive)
24265 (org-skip-whitespace)
24266 (let ((end (org-element-property :end (org-element-at-point))))
24267 (org-drag-element-backward)
24268 (goto-char end)))
24270 (defun org-unindent-buffer ()
24271 "Un-indent the visible part of the buffer.
24272 Relative indentation (between items, inside blocks, etc.) isn't
24273 modified."
24274 (interactive)
24275 (unless (eq major-mode 'org-mode)
24276 (user-error "Cannot un-indent a buffer not in Org mode"))
24277 (let* ((parse-tree (org-element-parse-buffer 'greater-element))
24278 unindent-tree ; For byte-compiler.
24279 (unindent-tree
24280 (function
24281 (lambda (contents)
24282 (mapc
24283 (lambda (element)
24284 (if (memq (org-element-type element) '(headline section))
24285 (funcall unindent-tree (org-element-contents element))
24286 (save-excursion
24287 (save-restriction
24288 (narrow-to-region
24289 (org-element-property :begin element)
24290 (org-element-property :end element))
24291 (org-do-remove-indentation)))))
24292 (reverse contents))))))
24293 (funcall unindent-tree (org-element-contents parse-tree))))
24295 (defun org-show-subtree ()
24296 "Show everything after this heading at deeper levels."
24297 (interactive)
24298 (outline-flag-region
24299 (point)
24300 (save-excursion
24301 (org-end-of-subtree t t))
24302 nil))
24304 (defun org-show-entry ()
24305 "Show the body directly following this heading.
24306 Show the heading too, if it is currently invisible."
24307 (interactive)
24308 (save-excursion
24309 (ignore-errors
24310 (org-back-to-heading t)
24311 (outline-flag-region
24312 (max (point-min) (1- (point)))
24313 (save-excursion
24314 (if (re-search-forward
24315 (concat "[\r\n]\\(" org-outline-regexp "\\)") nil t)
24316 (match-beginning 1)
24317 (point-max)))
24318 nil)
24319 (org-cycle-hide-drawers 'children))))
24321 (defun org-make-options-regexp (kwds &optional extra)
24322 "Make a regular expression for keyword lines."
24323 (concat
24324 "^[ \t]*#\\+\\("
24325 (mapconcat 'regexp-quote kwds "\\|")
24326 (if extra (concat "\\|" extra))
24327 "\\):[ \t]*\\(.*\\)"))
24329 ;; Make isearch reveal the necessary context
24330 (defun org-isearch-end ()
24331 "Reveal context after isearch exits."
24332 (when isearch-success ; only if search was successful
24333 (if (featurep 'xemacs)
24334 ;; Under XEmacs, the hook is run in the correct place,
24335 ;; we directly show the context.
24336 (org-show-context 'isearch)
24337 ;; In Emacs the hook runs *before* restoring the overlays.
24338 ;; So we have to use a one-time post-command-hook to do this.
24339 ;; (Emacs 22 has a special variable, see function `org-mode')
24340 (unless (and (boundp 'isearch-mode-end-hook-quit)
24341 isearch-mode-end-hook-quit)
24342 ;; Only when the isearch was not quitted.
24343 (org-add-hook 'post-command-hook 'org-isearch-post-command
24344 'append 'local)))
24345 (org-fix-ellipsis-at-bol)))
24347 (defun org-isearch-post-command ()
24348 "Remove self from hook, and show context."
24349 (remove-hook 'post-command-hook 'org-isearch-post-command 'local)
24350 (org-show-context 'isearch))
24353 ;;;; Integration with and fixes for other packages
24355 ;;; Imenu support
24357 (defvar org-imenu-markers nil
24358 "All markers currently used by Imenu.")
24359 (make-variable-buffer-local 'org-imenu-markers)
24361 (defun org-imenu-new-marker (&optional pos)
24362 "Return a new marker for use by Imenu, and remember the marker."
24363 (let ((m (make-marker)))
24364 (move-marker m (or pos (point)))
24365 (push m org-imenu-markers)
24368 (defun org-imenu-get-tree ()
24369 "Produce the index for Imenu."
24370 (mapc (lambda (x) (move-marker x nil)) org-imenu-markers)
24371 (setq org-imenu-markers nil)
24372 (let* ((n org-imenu-depth)
24373 (re (concat "^" (org-get-limited-outline-regexp)))
24374 (subs (make-vector (1+ n) nil))
24375 (last-level 0)
24376 m level head0 head)
24377 (save-excursion
24378 (save-restriction
24379 (widen)
24380 (goto-char (point-max))
24381 (while (re-search-backward re nil t)
24382 (setq level (org-reduced-level (funcall outline-level)))
24383 (when (and (<= level n)
24384 (looking-at org-complex-heading-regexp)
24385 (setq head0 (org-match-string-no-properties 4)))
24386 (setq head (org-link-display-format head0)
24387 m (org-imenu-new-marker))
24388 (org-add-props head nil 'org-imenu-marker m 'org-imenu t)
24389 (if (>= level last-level)
24390 (push (cons head m) (aref subs level))
24391 (push (cons head (aref subs (1+ level))) (aref subs level))
24392 (loop for i from (1+ level) to n do (aset subs i nil)))
24393 (setq last-level level)))))
24394 (aref subs 1)))
24396 (eval-after-load "imenu"
24397 '(progn
24398 (add-hook 'imenu-after-jump-hook
24399 (lambda ()
24400 (if (derived-mode-p 'org-mode)
24401 (org-show-context 'org-goto))))))
24403 (defun org-link-display-format (link)
24404 "Replace a link with its the description.
24405 If there is no description, use the link target."
24406 (save-match-data
24407 (if (string-match org-bracket-link-analytic-regexp link)
24408 (replace-match (if (match-end 5)
24409 (match-string 5 link)
24410 (concat (match-string 1 link)
24411 (match-string 3 link)))
24412 nil t link)
24413 link)))
24415 (defun org-toggle-link-display ()
24416 "Toggle the literal or descriptive display of links."
24417 (interactive)
24418 (if org-descriptive-links
24419 (progn (org-remove-from-invisibility-spec '(org-link))
24420 (org-restart-font-lock)
24421 (setq org-descriptive-links nil))
24422 (progn (add-to-invisibility-spec '(org-link))
24423 (org-restart-font-lock)
24424 (setq org-descriptive-links t))))
24426 ;; Speedbar support
24428 (defvar org-speedbar-restriction-lock-overlay (make-overlay 1 1)
24429 "Overlay marking the agenda restriction line in speedbar.")
24430 (overlay-put org-speedbar-restriction-lock-overlay
24431 'face 'org-agenda-restriction-lock)
24432 (overlay-put org-speedbar-restriction-lock-overlay
24433 'help-echo "Agendas are currently limited to this item.")
24434 (org-detach-overlay org-speedbar-restriction-lock-overlay)
24436 (defun org-speedbar-set-agenda-restriction ()
24437 "Restrict future agenda commands to the location at point in speedbar.
24438 To get rid of the restriction, use \\[org-agenda-remove-restriction-lock]."
24439 (interactive)
24440 (require 'org-agenda)
24441 (let (p m tp np dir txt)
24442 (cond
24443 ((setq p (text-property-any (point-at-bol) (point-at-eol)
24444 'org-imenu t))
24445 (setq m (get-text-property p 'org-imenu-marker))
24446 (with-current-buffer (marker-buffer m)
24447 (goto-char m)
24448 (org-agenda-set-restriction-lock 'subtree)))
24449 ((setq p (text-property-any (point-at-bol) (point-at-eol)
24450 'speedbar-function 'speedbar-find-file))
24451 (setq tp (previous-single-property-change
24452 (1+ p) 'speedbar-function)
24453 np (next-single-property-change
24454 tp 'speedbar-function)
24455 dir (speedbar-line-directory)
24456 txt (buffer-substring-no-properties (or tp (point-min))
24457 (or np (point-max))))
24458 (with-current-buffer (find-file-noselect
24459 (let ((default-directory dir))
24460 (expand-file-name txt)))
24461 (unless (derived-mode-p 'org-mode)
24462 (user-error "Cannot restrict to non-Org-mode file"))
24463 (org-agenda-set-restriction-lock 'file)))
24464 (t (user-error "Don't know how to restrict Org-mode's agenda")))
24465 (move-overlay org-speedbar-restriction-lock-overlay
24466 (point-at-bol) (point-at-eol))
24467 (setq current-prefix-arg nil)
24468 (org-agenda-maybe-redo)))
24470 (defvar speedbar-file-key-map)
24471 (declare-function speedbar-add-supported-extension "speedbar" (extension))
24472 (eval-after-load "speedbar"
24473 '(progn
24474 (speedbar-add-supported-extension ".org")
24475 (define-key speedbar-file-key-map "<" 'org-speedbar-set-agenda-restriction)
24476 (define-key speedbar-file-key-map "\C-c\C-x<" 'org-speedbar-set-agenda-restriction)
24477 (define-key speedbar-file-key-map ">" 'org-agenda-remove-restriction-lock)
24478 (define-key speedbar-file-key-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
24479 (add-hook 'speedbar-visiting-tag-hook
24480 (lambda () (and (derived-mode-p 'org-mode) (org-show-context 'org-goto))))))
24482 ;;; Fixes and Hacks for problems with other packages
24484 (defun org-mode-flyspell-verify ()
24485 "Function used for `flyspell-generic-check-word-predicate'."
24486 (if (org-at-heading-p)
24487 ;; At a headline or an inlinetask, check title only. This is
24488 ;; faster than relying on `org-element-at-point'.
24489 (and (save-excursion (beginning-of-line)
24490 (and (let ((case-fold-search t))
24491 (not (looking-at "\\*+ END[ \t]*$")))
24492 (looking-at org-complex-heading-regexp)))
24493 (match-beginning 4)
24494 (>= (point) (match-beginning 4))
24495 (or (not (match-beginning 5))
24496 (< (point) (match-beginning 5))))
24497 (let* ((element (org-element-at-point))
24498 (post-affiliated (org-element-property :post-affiliated element))
24499 (object-check
24500 (function
24501 ;; Non-nil if checks can be done for object at point.
24502 (lambda ()
24503 (let ((object (save-excursion
24504 (when (org-looking-at-p "\\>") (backward-char))
24505 (org-element-context element))))
24506 (case (org-element-type object)
24507 ;; Prevent checks in links due to keybinding conflict
24508 ;; with Flyspell.
24509 ((code entity export-snippet inline-babel-call
24510 inline-src-block line-break latex-fragment link macro
24511 statistics-cookie target timestamp verbatim)
24512 nil)
24513 (footnote-reference
24514 ;; Only in inline footnotes, within the definition.
24515 (and (eq (org-element-property :type object) 'inline)
24516 (< (save-excursion
24517 (goto-char (org-element-property :begin object))
24518 (search-forward ":" nil t 2))
24519 (point))))
24520 (otherwise t)))))))
24521 (cond
24522 ;; Ignore checks in all affiliated keywords but captions.
24523 ((and post-affiliated (< (point) post-affiliated))
24524 (and (save-excursion
24525 (beginning-of-line)
24526 (let ((case-fold-search t)) (looking-at "[ \t]*#\\+CAPTION:")))
24527 (> (point) (match-end 0))
24528 (funcall object-check)))
24529 ;; Ignore checks in LOGBOOK (or equivalent) drawer.
24530 ((and org-log-into-drawer
24531 (let ((log (or (org-string-nw-p org-log-into-drawer) "LOGBOOK"))
24532 (parent element))
24533 (while (and parent (not (eq (org-element-type parent) 'drawer)))
24534 (setq parent (org-element-property :parent parent)))
24535 (and parent
24536 (eq (compare-strings
24537 log nil nil
24538 (org-element-property :drawer-name parent) nil nil t)
24539 t))))
24540 nil)
24542 (case (org-element-type element)
24543 ((comment quote-section) t)
24544 (comment-block
24545 ;; Allow checks between block markers, not on them.
24546 (and (> (line-beginning-position)
24547 (org-element-property :post-affiliated element))
24548 (save-excursion
24549 (end-of-line)
24550 (skip-chars-forward " \r\t\n")
24551 (< (point) (org-element-property :end element)))))
24552 ;; Arbitrary list of keywords where checks are meaningful.
24553 ;; Make sure point is on the value part of the element.
24554 (keyword
24555 (and (member (org-element-property :key element)
24556 '("DESCRIPTION" "TITLE"))
24557 (< (save-excursion
24558 (beginning-of-line) (search-forward ":") (point))
24559 (point))))
24560 ;; Check is globally allowed in paragraphs verse blocks and
24561 ;; table rows (after affiliated keywords) but some objects
24562 ;; must not be affected.
24563 ((paragraph table-row verse-block)
24564 (and (>= (point) (org-element-property :contents-begin element))
24565 (< (point) (org-element-property :contents-end element))
24566 (funcall object-check)))))))))
24567 (put 'org-mode 'flyspell-mode-predicate 'org-mode-flyspell-verify)
24569 (defun org-remove-flyspell-overlays-in (beg end)
24570 "Remove flyspell overlays in region."
24571 (and (org-bound-and-true-p flyspell-mode)
24572 (fboundp 'flyspell-delete-region-overlays)
24573 (flyspell-delete-region-overlays beg end)))
24575 (defvar flyspell-delayed-commands)
24576 (eval-after-load "flyspell"
24577 '(add-to-list 'flyspell-delayed-commands 'org-self-insert-command))
24579 ;; Make `bookmark-jump' shows the jump location if it was hidden.
24580 (eval-after-load "bookmark"
24581 '(if (boundp 'bookmark-after-jump-hook)
24582 ;; We can use the hook
24583 (add-hook 'bookmark-after-jump-hook 'org-bookmark-jump-unhide)
24584 ;; Hook not available, use advice
24585 (defadvice bookmark-jump (after org-make-visible activate)
24586 "Make the position visible."
24587 (org-bookmark-jump-unhide))))
24589 ;; Make sure saveplace shows the location if it was hidden
24590 (eval-after-load "saveplace"
24591 '(defadvice save-place-find-file-hook (after org-make-visible activate)
24592 "Make the position visible."
24593 (org-bookmark-jump-unhide)))
24595 ;; Make sure ecb shows the location if it was hidden
24596 (eval-after-load "ecb"
24597 '(defadvice ecb-method-clicked (after esf/org-show-context activate)
24598 "Make hierarchy visible when jumping into location from ECB tree buffer."
24599 (if (derived-mode-p 'org-mode)
24600 (org-show-context))))
24602 (defun org-bookmark-jump-unhide ()
24603 "Unhide the current position, to show the bookmark location."
24604 (and (derived-mode-p 'org-mode)
24605 (or (outline-invisible-p)
24606 (save-excursion (goto-char (max (point-min) (1- (point))))
24607 (outline-invisible-p)))
24608 (org-show-context 'bookmark-jump)))
24610 (defun org-mark-jump-unhide ()
24611 "Make the point visible with `org-show-context' after jumping to the mark."
24612 (when (and (derived-mode-p 'org-mode)
24613 (outline-invisible-p))
24614 (org-show-context 'mark-goto)))
24616 (eval-after-load "simple"
24617 '(defadvice pop-to-mark-command (after org-make-visible activate)
24618 "Make the point visible with `org-show-context'."
24619 (org-mark-jump-unhide)))
24621 (eval-after-load "simple"
24622 '(defadvice exchange-point-and-mark (after org-make-visible activate)
24623 "Make the point visible with `org-show-context'."
24624 (org-mark-jump-unhide)))
24626 (eval-after-load "simple"
24627 '(defadvice pop-global-mark (after org-make-visible activate)
24628 "Make the point visible with `org-show-context'."
24629 (org-mark-jump-unhide)))
24631 ;; Make session.el ignore our circular variable
24632 (defvar session-globals-exclude)
24633 (eval-after-load "session"
24634 '(add-to-list 'session-globals-exclude 'org-mark-ring))
24636 ;;;; Finish up
24638 (provide 'org)
24640 (run-hooks 'org-load-hook)
24642 ;;; org.el ends here