org-mime.el: Correct element matching regex
[org-mode/org-tableheadings.git] / lisp / org.el
blob88744dfb93d81301a9d65ce4a77cd96e3440a6dc
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 (load "org-loaddefs.el" t t t)
82 (require 'org-macs)
83 (require 'org-compat)
85 ;; `org-outline-regexp' ought to be a defconst but is let-bound in
86 ;; some places -- e.g. see the macro `org-with-limited-levels'.
88 ;; In Org buffers, the value of `outline-regexp' is that of
89 ;; `org-outline-regexp'. The only function still directly relying on
90 ;; `outline-regexp' is `org-overview' so that `org-cycle' can do its
91 ;; job when `orgstruct-mode' is active.
92 (defvar org-outline-regexp "\\*+ "
93 "Regexp to match Org headlines.")
95 (defvar org-outline-regexp-bol "^\\*+ "
96 "Regexp to match Org headlines.
97 This is similar to `org-outline-regexp' but additionally makes
98 sure that we are at the beginning of the line.")
100 (defvar org-heading-regexp "^\\(\\*+\\)\\(?: +\\(.*?\\)\\)?[ \t]*$"
101 "Matches a headline, putting stars and text into groups.
102 Stars are put in group 1 and the trimmed body in group 2.")
104 ;; Emacs 22 calendar compatibility: Make sure the new variables are available
105 (unless (boundp 'calendar-view-holidays-initially-flag)
106 (org-defvaralias 'calendar-view-holidays-initially-flag
107 'view-calendar-holidays-initially))
108 (unless (boundp 'calendar-view-diary-initially-flag)
109 (org-defvaralias 'calendar-view-diary-initially-flag
110 'view-diary-entries-initially))
111 (unless (boundp 'diary-fancy-buffer)
112 (org-defvaralias 'diary-fancy-buffer 'fancy-diary-buffer))
114 (declare-function org-add-archive-files "org-archive" (files))
116 (declare-function org-inlinetask-at-task-p "org-inlinetask" ())
117 (declare-function org-inlinetask-outline-regexp "org-inlinetask" ())
118 (declare-function org-inlinetask-toggle-visibility "org-inlinetask" ())
119 (declare-function org-pop-to-buffer-same-window "org-compat" (&optional buffer-or-name norecord label))
120 (declare-function org-clock-get-last-clock-out-time "org-clock" ())
121 (declare-function org-clock-timestamps-up "org-clock" (&optional n))
122 (declare-function org-clock-timestamps-down "org-clock" (&optional n))
123 (declare-function org-clock-remove-overlays "org-clock" (&optional beg end noremove))
124 (declare-function org-clock-sum-current-item "org-clock" (&optional tstart))
125 (declare-function org-clock-update-time-maybe "org-clock" ())
126 (declare-function org-clocktable-shift "org-clock" (dir n))
128 (declare-function orgtbl-mode "org-table" (&optional arg))
129 (declare-function org-clock-out "org-clock" (&optional switch-to-state fail-quietly at-time))
130 (declare-function org-beamer-mode "ox-beamer" ())
131 (declare-function org-table-edit-field "org-table" (arg))
132 (declare-function org-table-justify-field-maybe "org-table" (&optional new))
133 (declare-function org-table-set-constants "org-table" ())
134 (declare-function org-table-calc-current-TBLFM "org-table" (&optional arg))
135 (declare-function org-id-get-create "org-id" (&optional force))
136 (declare-function org-id-find-id-file "org-id" (id))
137 (declare-function org-tags-view "org-agenda" (&optional todo-only match))
138 (declare-function org-agenda-list "org-agenda" (&optional arg start-day span))
139 (declare-function org-agenda-redo "org-agenda" (&optional all))
140 (declare-function org-table-align "org-table" ())
141 (declare-function org-table-begin "org-table" (&optional table-type))
142 (declare-function org-table-blank-field "org-table" ())
143 (declare-function org-table-end "org-table" (&optional table-type))
144 (declare-function org-table-insert-row "org-table" (&optional arg))
145 (declare-function org-table-paste-rectangle "org-table" ())
146 (declare-function org-table-maybe-eval-formula "org-table" ())
147 (declare-function org-table-maybe-recalculate-line "org-table" ())
149 (declare-function org-element--parse-objects "org-element"
150 (beg end acc restriction))
151 (declare-function org-element-at-point "org-element" (&optional keep-trail))
152 (declare-function org-element-contents "org-element" (element))
153 (declare-function org-element-context "org-element" (&optional element))
154 (declare-function org-element-interpret-data "org-element"
155 (data &optional parent))
156 (declare-function org-element-map "org-element"
157 (data types fun &optional info first-match no-recursion))
158 (declare-function org-element-nested-p "org-element" (elem-a elem-b))
159 (declare-function org-element-parse-buffer "org-element"
160 (&optional granularity visible-only))
161 (declare-function org-element-property "org-element" (property element))
162 (declare-function org-element-put-property "org-element"
163 (element property value))
164 (declare-function org-element-swap-A-B "org-element" (elem-a elem-b))
165 (declare-function org-element--parse-objects "org-element"
166 (beg end acc restriction))
167 (declare-function org-element-parse-buffer "org-element"
168 (&optional granularity visible-only))
169 (declare-function org-element-restriction "org-element" (element))
170 (declare-function org-element-type "org-element" (element))
172 ;; load languages based on value of `org-babel-load-languages'
173 (defvar org-babel-load-languages)
175 ;;;###autoload
176 (defun org-babel-do-load-languages (sym value)
177 "Load the languages defined in `org-babel-load-languages'."
178 (set-default sym value)
179 (mapc (lambda (pair)
180 (let ((active (cdr pair)) (lang (symbol-name (car pair))))
181 (if active
182 (progn
183 (require (intern (concat "ob-" lang))))
184 (progn
185 (funcall 'fmakunbound
186 (intern (concat "org-babel-execute:" lang)))
187 (funcall 'fmakunbound
188 (intern (concat "org-babel-expand-body:" lang)))))))
189 org-babel-load-languages))
191 (declare-function org-babel-tangle-file "ob-tangle" (file &optional target-file lang))
192 ;;;###autoload
193 (defun org-babel-load-file (file &optional compile)
194 "Load Emacs Lisp source code blocks in the Org-mode FILE.
195 This function exports the source code using `org-babel-tangle'
196 and then loads the resulting file using `load-file'. With prefix
197 arg (noninteractively: 2nd arg) COMPILE the tangled Emacs Lisp
198 file to byte-code before it is loaded."
199 (interactive "fFile to load: \nP")
200 (require 'ob-core)
201 (let* ((age (lambda (file)
202 (float-time
203 (time-subtract (current-time)
204 (nth 5 (or (file-attributes (file-truename file))
205 (file-attributes file)))))))
206 (base-name (file-name-sans-extension file))
207 (exported-file (concat base-name ".el")))
208 ;; tangle if the org-mode file is newer than the elisp file
209 (unless (and (file-exists-p exported-file)
210 (> (funcall age file) (funcall age exported-file)))
211 (setq exported-file
212 (car (org-babel-tangle-file file exported-file "emacs-lisp"))))
213 (message "%s %s"
214 (if compile
215 (progn (byte-compile-file exported-file 'load)
216 "Compiled and loaded")
217 (progn (load-file exported-file) "Loaded"))
218 exported-file)))
220 (defcustom org-babel-load-languages '((emacs-lisp . t))
221 "Languages which can be evaluated in Org-mode buffers.
222 This list can be used to load support for any of the languages
223 below, note that each language will depend on a different set of
224 system executables and/or Emacs modes. When a language is
225 \"loaded\", then code blocks in that language can be evaluated
226 with `org-babel-execute-src-block' bound by default to C-c
227 C-c (note the `org-babel-no-eval-on-ctrl-c-ctrl-c' variable can
228 be set to remove code block evaluation from the C-c C-c
229 keybinding. By default only Emacs Lisp (which has no
230 requirements) is loaded."
231 :group 'org-babel
232 :set 'org-babel-do-load-languages
233 :version "24.1"
234 :type '(alist :tag "Babel Languages"
235 :key-type
236 (choice
237 (const :tag "Awk" awk)
238 (const :tag "C" C)
239 (const :tag "R" R)
240 (const :tag "Asymptote" asymptote)
241 (const :tag "Calc" calc)
242 (const :tag "Clojure" clojure)
243 (const :tag "CSS" css)
244 (const :tag "Ditaa" ditaa)
245 (const :tag "Dot" dot)
246 (const :tag "Emacs Lisp" emacs-lisp)
247 (const :tag "Fortran" fortran)
248 (const :tag "Gnuplot" gnuplot)
249 (const :tag "Haskell" haskell)
250 (const :tag "IO" io)
251 (const :tag "Java" java)
252 (const :tag "Javascript" js)
253 (const :tag "LaTeX" latex)
254 (const :tag "Ledger" ledger)
255 (const :tag "Lilypond" lilypond)
256 (const :tag "Lisp" lisp)
257 (const :tag "Makefile" makefile)
258 (const :tag "Maxima" maxima)
259 (const :tag "Matlab" matlab)
260 (const :tag "Mscgen" mscgen)
261 (const :tag "Ocaml" ocaml)
262 (const :tag "Octave" octave)
263 (const :tag "Org" org)
264 (const :tag "Perl" perl)
265 (const :tag "Pico Lisp" picolisp)
266 (const :tag "PlantUML" plantuml)
267 (const :tag "Python" python)
268 (const :tag "Ruby" ruby)
269 (const :tag "Sass" sass)
270 (const :tag "Scala" scala)
271 (const :tag "Scheme" scheme)
272 (const :tag "Screen" screen)
273 (const :tag "Shell Script" sh)
274 (const :tag "Shen" shen)
275 (const :tag "Sql" sql)
276 (const :tag "Sqlite" sqlite))
277 :value-type (boolean :tag "Activate" :value t)))
279 ;;;; Customization variables
280 (defcustom org-clone-delete-id nil
281 "Remove ID property of clones of a subtree.
282 When non-nil, clones of a subtree don't inherit the ID property.
283 Otherwise they inherit the ID property with a new unique
284 identifier."
285 :type 'boolean
286 :version "24.1"
287 :group 'org-id)
289 ;;; Version
290 (org-check-version)
292 ;;;###autoload
293 (defun org-version (&optional here full message)
294 "Show the org-mode version in the echo area.
295 With prefix argument HERE, insert it at point.
296 When FULL is non-nil, use a verbose version string.
297 When MESSAGE is non-nil, display a message with the version."
298 (interactive "P")
299 (let* ((org-dir (ignore-errors (org-find-library-dir "org")))
300 (save-load-suffixes (when (boundp 'load-suffixes) load-suffixes))
301 (load-suffixes (list ".el"))
302 (org-install-dir (ignore-errors (org-find-library-dir "org-loaddefs")))
303 (org-trash (or
304 (and (fboundp 'org-release) (fboundp 'org-git-version))
305 (org-load-noerror-mustsuffix (concat org-dir "org-version"))))
306 (load-suffixes save-load-suffixes)
307 (org-version (org-release))
308 (git-version (org-git-version))
309 (version (format "Org-mode version %s (%s @ %s)"
310 org-version
311 git-version
312 (if org-install-dir
313 (if (string= org-dir org-install-dir)
314 org-install-dir
315 (concat "mixed installation! " org-install-dir " and " org-dir))
316 "org-loaddefs.el can not be found!")))
317 (version1 (if full version org-version)))
318 (if (org-called-interactively-p 'interactive)
319 (if here
320 (insert version)
321 (message version))
322 (if message (message version1))
323 version1)))
325 (defconst org-version (org-version))
327 ;;; Compatibility constants
329 ;;; The custom variables
331 (defgroup org nil
332 "Outline-based notes management and organizer."
333 :tag "Org"
334 :group 'outlines
335 :group 'calendar)
337 (defcustom org-mode-hook nil
338 "Mode hook for Org-mode, run after the mode was turned on."
339 :group 'org
340 :type 'hook)
342 (defcustom org-load-hook nil
343 "Hook that is run after org.el has been loaded."
344 :group 'org
345 :type 'hook)
347 (defcustom org-log-buffer-setup-hook nil
348 "Hook that is run after an Org log buffer is created."
349 :group 'org
350 :version "24.1"
351 :type 'hook)
353 (defvar org-modules) ; defined below
354 (defvar org-modules-loaded nil
355 "Have the modules been loaded already?")
357 (defun org-load-modules-maybe (&optional force)
358 "Load all extensions listed in `org-modules'."
359 (when (or force (not org-modules-loaded))
360 (mapc (lambda (ext)
361 (condition-case nil (require ext)
362 (error (message "Problems while trying to load feature `%s'" ext))))
363 org-modules)
364 (setq org-modules-loaded t)))
366 (defun org-set-modules (var value)
367 "Set VAR to VALUE and call `org-load-modules-maybe' with the force flag."
368 (set var value)
369 (when (featurep 'org)
370 (org-load-modules-maybe 'force)))
372 (defcustom org-modules '(org-w3m org-bbdb org-bibtex org-docview org-gnus org-info org-irc org-mhe org-rmail)
373 "Modules that should always be loaded together with org.el.
375 If a description starts with <C>, the file is not part of Emacs
376 and loading it will require that you have downloaded and properly
377 installed the Org mode distribution.
379 You can also use this system to load external packages (i.e. neither Org
380 core modules, nor modules from the CONTRIB directory). Just add symbols
381 to the end of the list. If the package is called org-xyz.el, then you need
382 to add the symbol `xyz', and the package must have a call to:
384 \(provide 'org-xyz)
386 For export specific modules, see also `org-export-backends'."
387 :group 'org
388 :set 'org-set-modules
389 :version "24.4"
390 :package-version '(Org . "8.0")
391 :type
392 '(set :greedy t
393 (const :tag " bbdb: Links to BBDB entries" org-bbdb)
394 (const :tag " bibtex: Links to BibTeX entries" org-bibtex)
395 (const :tag " crypt: Encryption of subtrees" org-crypt)
396 (const :tag " ctags: Access to Emacs tags with links" org-ctags)
397 (const :tag " docview: Links to doc-view buffers" org-docview)
398 (const :tag " gnus: Links to GNUS folders/messages" org-gnus)
399 (const :tag " habit: Track your consistency with habits" org-habit)
400 (const :tag " id: Global IDs for identifying entries" org-id)
401 (const :tag " info: Links to Info nodes" org-info)
402 (const :tag " inlinetask: Tasks independent of outline hierarchy" org-inlinetask)
403 (const :tag " irc: Links to IRC/ERC chat sessions" org-irc)
404 (const :tag " mhe: Links to MHE folders/messages" org-mhe)
405 (const :tag " mouse: Additional mouse support" org-mouse)
406 (const :tag " protocol: Intercept calls from emacsclient" org-protocol)
407 (const :tag " rmail: Links to RMAIL folders/messages" org-rmail)
408 (const :tag " w3m: Special cut/paste from w3m to Org-mode." org-w3m)
410 (const :tag "C annotate-file: Annotate a file with org syntax" org-annotate-file)
411 (const :tag "C bookmark: Org-mode links to bookmarks" org-bookmark)
412 (const :tag "C bullets: Add overlays to headlines stars" org-bullets)
413 (const :tag "C checklist: Extra functions for checklists in repeated tasks" org-checklist)
414 (const :tag "C choose: Use TODO keywords to mark decisions states" org-choose)
415 (const :tag "C collector: Collect properties into tables" org-collector)
416 (const :tag "C depend: TODO dependencies for Org-mode\n\t\t\t(PARTIALLY OBSOLETE, see built-in dependency support))" org-depend)
417 (const :tag "C drill: Flashcards and spaced repetition for Org-mode" org-drill)
418 (const :tag "C elisp-symbol: Org-mode links to emacs-lisp symbols" org-elisp-symbol)
419 (const :tag "C eshell Support for links to working directories in eshell" org-eshell)
420 (const :tag "C eval-light: Evaluate inbuffer-code on demand" org-eval-light)
421 (const :tag "C eval: Include command output as text" org-eval)
422 (const :tag "C expiry: Expiry mechanism for Org-mode entries" org-expiry)
423 (const :tag "C favtable: Lookup table of favorite references and links" org-favtable)
424 (const :tag "C git-link: Provide org links to specific file version" org-git-link)
425 (const :tag "C interactive-query: Interactive modification of tags query\n\t\t\t(PARTIALLY OBSOLETE, see secondary filtering)" org-interactive-query)
426 (const :tag "C invoice: Help manage client invoices in Org-mode" org-invoice)
427 (const :tag "C jira: Add a jira:ticket protocol to Org-mode" org-jira)
428 (const :tag "C learn: SuperMemo's incremental learning algorithm" org-learn)
429 (const :tag "C mac-iCal Imports events from iCal.app to the Emacs diary" org-mac-iCal)
430 (const :tag "C mac-link: Grab links and url from various mac Applications" org-mac-link)
431 (const :tag "C mairix: Hook mairix search into Org-mode for different MUAs" org-mairix)
432 (const :tag "C man: Support for links to manpages in Org-mode" org-man)
433 (const :tag "C mew: Links to Mew folders/messages" org-mew)
434 (const :tag "C mtags: Support for muse-like tags" org-mtags)
435 (const :tag "C notmuch: Provide org links to notmuch searches or messages" org-notmuch)
436 (const :tag "C panel: Simple routines for us with bad memory" org-panel)
437 (const :tag "C registry: A registry for Org-mode links" org-registry)
438 (const :tag "C screen: Visit screen sessions through Org-mode links" org-screen)
439 (const :tag "C secretary: Team management with org-mode" org-secretary)
440 (const :tag "C sqlinsert: Convert Org-mode tables to SQL insertions" orgtbl-sqlinsert)
441 (const :tag "C toc: Table of contents for Org-mode buffer" org-toc)
442 (const :tag "C track: Keep up with Org-mode development" org-track)
443 (const :tag "C velocity Something like Notational Velocity for Org" org-velocity)
444 (const :tag "C vm: Links to VM folders/messages" org-vm)
445 (const :tag "C wikinodes: CamelCase wiki-like links" org-wikinodes)
446 (const :tag "C wl: Links to Wanderlust folders/messages" org-wl)
447 (repeat :tag "External packages" :inline t (symbol :tag "Package"))))
449 (defvar org-export--registered-backends) ; From ox.el.
450 (declare-function org-export-derived-backend-p "ox" (backend &rest backends))
451 (declare-function org-export-backend-name "ox" (backend))
452 (defcustom org-export-backends '(ascii html icalendar latex)
453 "List of export back-ends that should be always available.
455 If a description starts with <C>, the file is not part of Emacs
456 and loading it will require that you have downloaded and properly
457 installed the Org mode distribution.
459 Unlike to `org-modules', libraries in this list will not be
460 loaded along with Org, but only once the export framework is
461 needed.
463 This variable needs to be set before org.el is loaded. If you
464 need to make a change while Emacs is running, use the customize
465 interface or run the following code, where VAL stands for the new
466 value of the variable, after updating it:
468 \(progn
469 \(setq org-export--registered-backends
470 \(org-remove-if-not
471 \(lambda (backend)
472 \(let ((name (org-export-backend-name backend)))
473 \(or (memq name val)
474 \(catch 'parentp
475 \(dolist (b val)
476 \(and (org-export-derived-backend-p b name)
477 \(throw 'parentp t)))))))
478 org-export--registered-backends))
479 \(let ((new-list (mapcar 'org-export-backend-name
480 org-export--registered-backends)))
481 \(dolist (backend val)
482 \(cond
483 \((not (load (format \"ox-%s\" backend) t t))
484 \(message \"Problems while trying to load export back-end `%s'\"
485 backend))
486 \((not (memq backend new-list)) (push backend new-list))))
487 \(set-default 'org-export-backends new-list)))
489 Adding a back-end to this list will also pull the back-end it
490 depends on, if any."
491 :group 'org
492 :group 'org-export
493 :version "24.4"
494 :package-version '(Org . "8.0")
495 :initialize 'custom-initialize-set
496 :set (lambda (var val)
497 (if (not (featurep 'ox)) (set-default var val)
498 ;; Any back-end not required anymore (not present in VAL and not
499 ;; a parent of any back-end in the new value) is removed from the
500 ;; list of registered back-ends.
501 (setq org-export--registered-backends
502 (org-remove-if-not
503 (lambda (backend)
504 (let ((name (org-export-backend-name backend)))
505 (or (memq name val)
506 (catch 'parentp
507 (dolist (b val)
508 (and (org-export-derived-backend-p b name)
509 (throw 'parentp t)))))))
510 org-export--registered-backends))
511 ;; Now build NEW-LIST of both new back-ends and required
512 ;; parents.
513 (let ((new-list (mapcar 'org-export-backend-name
514 org-export--registered-backends)))
515 (dolist (backend val)
516 (cond
517 ((not (load (format "ox-%s" backend) t t))
518 (message "Problems while trying to load export back-end `%s'"
519 backend))
520 ((not (memq backend new-list)) (push backend new-list))))
521 ;; Set VAR to that list with fixed dependencies.
522 (set-default var new-list))))
523 :type '(set :greedy t
524 (const :tag " ascii Export buffer to ASCII format" ascii)
525 (const :tag " beamer Export buffer to Beamer presentation" beamer)
526 (const :tag " html Export buffer to HTML format" html)
527 (const :tag " icalendar Export buffer to iCalendar format" icalendar)
528 (const :tag " latex Export buffer to LaTeX format" latex)
529 (const :tag " man Export buffer to MAN format" man)
530 (const :tag " md Export buffer to Markdown format" md)
531 (const :tag " odt Export buffer to ODT format" odt)
532 (const :tag " org Export buffer to Org format" org)
533 (const :tag " texinfo Export buffer to Texinfo format" texinfo)
534 (const :tag "C confluence Export buffer to Confluence Wiki format" confluence)
535 (const :tag "C deck Export buffer to deck.js presentations" deck)
536 (const :tag "C freemind Export buffer to Freemind mindmap format" freemind)
537 (const :tag "C groff Export buffer to Groff format" groff)
538 (const :tag "C koma-letter Export buffer to KOMA Scrlttrl2 format" koma-letter)
539 (const :tag "C RSS 2.0 Export buffer to RSS 2.0 format" rss)
540 (const :tag "C s5 Export buffer to s5 presentations" s5)
541 (const :tag "C taskjuggler Export buffer to TaskJuggler format" taskjuggler)))
543 (eval-after-load 'ox
544 '(mapc
545 (lambda (backend)
546 (condition-case nil (require (intern (format "ox-%s" backend)))
547 (error (message "Problems while trying to load export back-end `%s'"
548 backend))))
549 org-export-backends))
551 (defcustom org-support-shift-select nil
552 "Non-nil means make shift-cursor commands select text when possible.
554 In Emacs 23, when `shift-select-mode' is on, shifted cursor keys
555 start selecting a region, or enlarge regions started in this way.
556 In Org-mode, in special contexts, these same keys are used for
557 other purposes, important enough to compete with shift selection.
558 Org tries to balance these needs by supporting `shift-select-mode'
559 outside these special contexts, under control of this variable.
561 The default of this variable is nil, to avoid confusing behavior. Shifted
562 cursor keys will then execute Org commands in the following contexts:
563 - on a headline, changing TODO state (left/right) and priority (up/down)
564 - on a time stamp, changing the time
565 - in a plain list item, changing the bullet type
566 - in a property definition line, switching between allowed values
567 - in the BEGIN line of a clock table (changing the time block).
568 Outside these contexts, the commands will throw an error.
570 When this variable is t and the cursor is not in a special
571 context, Org-mode will support shift-selection for making and
572 enlarging regions. To make this more effective, the bullet
573 cycling will no longer happen anywhere in an item line, but only
574 if the cursor is exactly on the bullet.
576 If you set this variable to the symbol `always', then the keys
577 will not be special in headlines, property lines, and item lines,
578 to make shift selection work there as well. If this is what you
579 want, you can use the following alternative commands: `C-c C-t'
580 and `C-c ,' to change TODO state and priority, `C-u C-u C-c C-t'
581 can be used to switch TODO sets, `C-c -' to cycle item bullet
582 types, and properties can be edited by hand or in column view.
584 However, when the cursor is on a timestamp, shift-cursor commands
585 will still edit the time stamp - this is just too good to give up.
587 XEmacs user should have this variable set to nil, because
588 `shift-select-mode' is in Emacs 23 or later only."
589 :group 'org
590 :type '(choice
591 (const :tag "Never" nil)
592 (const :tag "When outside special context" t)
593 (const :tag "Everywhere except timestamps" always)))
595 (defcustom org-loop-over-headlines-in-active-region nil
596 "Shall some commands act upon headlines in the active region?
598 When set to `t', some commands will be performed in all headlines
599 within the active region.
601 When set to `start-level', some commands will be performed in all
602 headlines within the active region, provided that these headlines
603 are of the same level than the first one.
605 When set to a string, those commands will be performed on the
606 matching headlines within the active region. Such string must be
607 a tags/property/todo match as it is used in the agenda tags view.
609 The list of commands is: `org-schedule', `org-deadline',
610 `org-todo', `org-archive-subtree', `org-archive-set-tag' and
611 `org-archive-to-archive-sibling'. The archiving commands skip
612 already archived entries."
613 :type '(choice (const :tag "Don't loop" nil)
614 (const :tag "All headlines in active region" t)
615 (const :tag "In active region, headlines at the same level than the first one" start-level)
616 (string :tag "Tags/Property/Todo matcher"))
617 :version "24.1"
618 :group 'org-todo
619 :group 'org-archive)
621 (defgroup org-startup nil
622 "Options concerning startup of Org-mode."
623 :tag "Org Startup"
624 :group 'org)
626 (defcustom org-startup-folded t
627 "Non-nil means entering Org-mode will switch to OVERVIEW.
628 This can also be configured on a per-file basis by adding one of
629 the following lines anywhere in the buffer:
631 #+STARTUP: fold (or `overview', this is equivalent)
632 #+STARTUP: nofold (or `showall', this is equivalent)
633 #+STARTUP: content
634 #+STARTUP: showeverything
636 By default, this option is ignored when Org opens agenda files
637 for the first time. If you want the agenda to honor the startup
638 option, set `org-agenda-inhibit-startup' to nil."
639 :group 'org-startup
640 :type '(choice
641 (const :tag "nofold: show all" nil)
642 (const :tag "fold: overview" t)
643 (const :tag "content: all headlines" content)
644 (const :tag "show everything, even drawers" showeverything)))
646 (defcustom org-startup-truncated t
647 "Non-nil means entering Org-mode will set `truncate-lines'.
648 This is useful since some lines containing links can be very long and
649 uninteresting. Also tables look terrible when wrapped."
650 :group 'org-startup
651 :type 'boolean)
653 (defcustom org-startup-indented nil
654 "Non-nil means turn on `org-indent-mode' on startup.
655 This can also be configured on a per-file basis by adding one of
656 the following lines anywhere in the buffer:
658 #+STARTUP: indent
659 #+STARTUP: noindent"
660 :group 'org-structure
661 :type '(choice
662 (const :tag "Not" nil)
663 (const :tag "Globally (slow on startup in large files)" t)))
665 (defcustom org-use-sub-superscripts t
666 "Non-nil means interpret \"_\" and \"^\" for display.
668 If you want to control how Org exports those characters, see
669 `org-export-with-sub-superscripts'. `org-use-sub-superscripts'
670 used to be an alias for `org-export-with-sub-superscripts' in
671 Org <8.0, it is not anymore.
673 When this option is turned on, you can use TeX-like syntax for
674 sub- and superscripts within the buffer. Several characters after
675 \"_\" or \"^\" will be considered as a single item - so grouping
676 with {} is normally not needed. For example, the following things
677 will be parsed as single sub- or superscripts:
679 10^24 or 10^tau several digits will be considered 1 item.
680 10^-12 or 10^-tau a leading sign with digits or a word
681 x^2-y^3 will be read as x^2 - y^3, because items are
682 terminated by almost any nonword/nondigit char.
683 x_{i^2} or x^(2-i) braces or parenthesis do grouping.
685 Still, ambiguity is possible. So when in doubt, use {} to enclose
686 the sub/superscript. If you set this variable to the symbol `{}',
687 the braces are *required* in order to trigger interpretations as
688 sub/superscript. This can be helpful in documents that need \"_\"
689 frequently in plain text."
690 :group 'org-startup
691 :version "24.4"
692 :package-version '(Org . "8.0")
693 :type '(choice
694 (const :tag "Always interpret" t)
695 (const :tag "Only with braces" {})
696 (const :tag "Never interpret" nil)))
698 (defcustom org-startup-with-beamer-mode nil
699 "Non-nil means turn on `org-beamer-mode' on startup.
700 This can also be configured on a per-file basis by adding one of
701 the following lines anywhere in the buffer:
703 #+STARTUP: beamer"
704 :group 'org-startup
705 :version "24.1"
706 :type 'boolean)
708 (defcustom org-startup-align-all-tables nil
709 "Non-nil means align all tables when visiting a file.
710 This is useful when the column width in tables is forced with <N> cookies
711 in table fields. Such tables will look correct only after the first re-align.
712 This can also be configured on a per-file basis by adding one of
713 the following lines anywhere in the buffer:
714 #+STARTUP: align
715 #+STARTUP: noalign"
716 :group 'org-startup
717 :type 'boolean)
719 (defcustom org-startup-with-inline-images nil
720 "Non-nil means show inline images when loading a new Org file.
721 This can also be configured on a per-file basis by adding one of
722 the following lines anywhere in the buffer:
723 #+STARTUP: inlineimages
724 #+STARTUP: noinlineimages"
725 :group 'org-startup
726 :version "24.1"
727 :type 'boolean)
729 (defcustom org-startup-with-latex-preview nil
730 "Non-nil means preview LaTeX fragments when loading a new Org file.
732 This can also be configured on a per-file basis by adding one of
733 the following lines anywhere in the buffer:
734 #+STARTUP: latexpreview
735 #+STARTUP: nolatexpreview"
736 :group 'org-startup
737 :version "24.4"
738 :package-version '(Org . "8.0")
739 :type 'boolean)
741 (defcustom org-insert-mode-line-in-empty-file nil
742 "Non-nil means insert the first line setting Org-mode in empty files.
743 When the function `org-mode' is called interactively in an empty file, this
744 normally means that the file name does not automatically trigger Org-mode.
745 To ensure that the file will always be in Org-mode in the future, a
746 line enforcing Org-mode will be inserted into the buffer, if this option
747 has been set."
748 :group 'org-startup
749 :type 'boolean)
751 (defcustom org-replace-disputed-keys nil
752 "Non-nil means use alternative key bindings for some keys.
753 Org-mode uses S-<cursor> keys for changing timestamps and priorities.
754 These keys are also used by other packages like shift-selection-mode'
755 \(built into Emacs 23), `CUA-mode' or `windmove.el'.
756 If you want to use Org-mode together with one of these other modes,
757 or more generally if you would like to move some Org-mode commands to
758 other keys, set this variable and configure the keys with the variable
759 `org-disputed-keys'.
761 This option is only relevant at load-time of Org-mode, and must be set
762 *before* org.el is loaded. Changing it requires a restart of Emacs to
763 become effective."
764 :group 'org-startup
765 :type 'boolean)
767 (defcustom org-use-extra-keys nil
768 "Non-nil means use extra key sequence definitions for certain commands.
769 This happens automatically if you run XEmacs or if `window-system'
770 is nil. This variable lets you do the same manually. You must
771 set it before loading org.
773 Example: on Carbon Emacs 22 running graphically, with an external
774 keyboard on a Powerbook, the default way of setting M-left might
775 not work for either Alt or ESC. Setting this variable will make
776 it work for ESC."
777 :group 'org-startup
778 :type 'boolean)
780 (org-defvaralias 'org-CUA-compatible 'org-replace-disputed-keys)
782 (defcustom org-disputed-keys
783 '(([(shift up)] . [(meta p)])
784 ([(shift down)] . [(meta n)])
785 ([(shift left)] . [(meta -)])
786 ([(shift right)] . [(meta +)])
787 ([(control shift right)] . [(meta shift +)])
788 ([(control shift left)] . [(meta shift -)]))
789 "Keys for which Org-mode and other modes compete.
790 This is an alist, cars are the default keys, second element specifies
791 the alternative to use when `org-replace-disputed-keys' is t.
793 Keys can be specified in any syntax supported by `define-key'.
794 The value of this option takes effect only at Org-mode's startup,
795 therefore you'll have to restart Emacs to apply it after changing."
796 :group 'org-startup
797 :type 'alist)
799 (defun org-key (key)
800 "Select key according to `org-replace-disputed-keys' and `org-disputed-keys'.
801 Or return the original if not disputed.
802 Also apply the translations defined in `org-xemacs-key-equivalents'."
803 (when org-replace-disputed-keys
804 (let* ((nkey (key-description key))
805 (x (org-find-if (lambda (x)
806 (equal (key-description (car x)) nkey))
807 org-disputed-keys)))
808 (setq key (if x (cdr x) key))))
809 (when (featurep 'xemacs)
810 (setq key (or (cdr (assoc key org-xemacs-key-equivalents)) key)))
811 key)
813 (defun org-find-if (predicate seq)
814 (catch 'exit
815 (while seq
816 (if (funcall predicate (car seq))
817 (throw 'exit (car seq))
818 (pop seq)))))
820 (defun org-defkey (keymap key def)
821 "Define a key, possibly translated, as returned by `org-key'."
822 (define-key keymap (org-key key) def))
824 (defcustom org-ellipsis nil
825 "The ellipsis to use in the Org-mode outline.
826 When nil, just use the standard three dots.
827 When a string, use that string instead.
828 When a face, use the standard 3 dots, but with the specified face.
829 The change affects only Org-mode (which will then use its own display table).
830 Changing this requires executing `M-x org-mode RET' in a buffer to become
831 effective."
832 :group 'org-startup
833 :type '(choice (const :tag "Default" nil)
834 (face :tag "Face" :value org-warning)
835 (string :tag "String" :value "...#")))
837 (defvar org-display-table nil
838 "The display table for org-mode, in case `org-ellipsis' is non-nil.")
840 (defgroup org-keywords nil
841 "Keywords in Org-mode."
842 :tag "Org Keywords"
843 :group 'org)
845 (defcustom org-deadline-string "DEADLINE:"
846 "String to mark deadline entries.
847 A deadline is this string, followed by a time stamp. Should be a word,
848 terminated by a colon. You can insert a schedule keyword and
849 a timestamp with \\[org-deadline].
850 Changes become only effective after restarting Emacs."
851 :group 'org-keywords
852 :type 'string)
854 (defcustom org-scheduled-string "SCHEDULED:"
855 "String to mark scheduled TODO entries.
856 A schedule is this string, followed by a time stamp. Should be a word,
857 terminated by a colon. You can insert a schedule keyword and
858 a timestamp with \\[org-schedule].
859 Changes become only effective after restarting Emacs."
860 :group 'org-keywords
861 :type 'string)
863 (defcustom org-closed-string "CLOSED:"
864 "String used as the prefix for timestamps logging closing a TODO entry."
865 :group 'org-keywords
866 :type 'string)
868 (defcustom org-clock-string "CLOCK:"
869 "String used as prefix for timestamps clocking work hours on an item."
870 :group 'org-keywords
871 :type 'string)
873 (defcustom org-closed-keep-when-no-todo nil
874 "Remove CLOSED: time-stamp when switching back to a non-todo state?"
875 :group 'org-todo
876 :group 'org-keywords
877 :version "24.4"
878 :package-version '(Org . "8.0")
879 :type 'boolean)
881 (defconst org-planning-or-clock-line-re (concat "^[ \t]*\\("
882 org-scheduled-string "\\|"
883 org-deadline-string "\\|"
884 org-closed-string "\\|"
885 org-clock-string "\\)")
886 "Matches a line with planning or clock info.")
888 (defcustom org-comment-string "COMMENT"
889 "Entries starting with this keyword will never be exported.
890 An entry can be toggled between COMMENT and normal with
891 \\[org-toggle-comment].
892 Changes become only effective after restarting Emacs."
893 :group 'org-keywords
894 :type 'string)
896 (defcustom org-quote-string "QUOTE"
897 "Entries starting with this keyword will be exported in fixed-width font.
898 Quoting applies only to the text in the entry following the headline, and does
899 not extend beyond the next headline, even if that is lower level.
900 An entry can be toggled between QUOTE and normal with
901 \\[org-toggle-fixed-width-section]."
902 :group 'org-keywords
903 :type 'string)
905 (defconst org-repeat-re
906 "<[0-9]\\{4\\}-[0-9][0-9]-[0-9][0-9] [^>\n]*?\\([.+]?\\+[0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)"
907 "Regular expression for specifying repeated events.
908 After a match, group 1 contains the repeat expression.")
910 (defgroup org-structure nil
911 "Options concerning the general structure of Org-mode files."
912 :tag "Org Structure"
913 :group 'org)
915 (defgroup org-reveal-location nil
916 "Options about how to make context of a location visible."
917 :tag "Org Reveal Location"
918 :group 'org-structure)
920 (defconst org-context-choice
921 '(choice
922 (const :tag "Always" t)
923 (const :tag "Never" nil)
924 (repeat :greedy t :tag "Individual contexts"
925 (cons
926 (choice :tag "Context"
927 (const agenda)
928 (const org-goto)
929 (const occur-tree)
930 (const tags-tree)
931 (const link-search)
932 (const mark-goto)
933 (const bookmark-jump)
934 (const isearch)
935 (const default))
936 (boolean))))
937 "Contexts for the reveal options.")
939 (defcustom org-show-hierarchy-above '((default . t))
940 "Non-nil means show full hierarchy when revealing a location.
941 Org-mode often shows locations in an org-mode file which might have
942 been invisible before. When this is set, the hierarchy of headings
943 above the exposed location is shown.
944 Turning this off for example for sparse trees makes them very compact.
945 Instead of t, this can also be an alist specifying this option for different
946 contexts. Valid contexts are
947 agenda when exposing an entry from the agenda
948 org-goto when using the command `org-goto' on key C-c C-j
949 occur-tree when using the command `org-occur' on key C-c /
950 tags-tree when constructing a sparse tree based on tags matches
951 link-search when exposing search matches associated with a link
952 mark-goto when exposing the jump goal of a mark
953 bookmark-jump when exposing a bookmark location
954 isearch when exiting from an incremental search
955 default default for all contexts not set explicitly"
956 :group 'org-reveal-location
957 :type org-context-choice)
959 (defcustom org-show-following-heading '((default . nil))
960 "Non-nil means show following heading when revealing a location.
961 Org-mode often shows locations in an org-mode file which might have
962 been invisible before. When this is set, the heading following the
963 match is shown.
964 Turning this off for example for sparse trees makes them very compact,
965 but makes it harder to edit the location of the match. In such a case,
966 use the command \\[org-reveal] to show more context.
967 Instead of t, this can also be an alist specifying this option for different
968 contexts. See `org-show-hierarchy-above' for valid contexts."
969 :group 'org-reveal-location
970 :type org-context-choice)
972 (defcustom org-show-siblings '((default . nil) (isearch t) (bookmark-jump t))
973 "Non-nil means show all sibling heading when revealing a location.
974 Org-mode often shows locations in an org-mode file which might have
975 been invisible before. When this is set, the sibling of the current entry
976 heading are all made visible. If `org-show-hierarchy-above' is t,
977 the same happens on each level of the hierarchy above the current entry.
979 By default this is on for the isearch context, off for all other contexts.
980 Turning this off for example for sparse trees makes them very compact,
981 but makes it harder to edit the location of the match. In such a case,
982 use the command \\[org-reveal] to show more context.
983 Instead of t, this can also be an alist specifying this option for different
984 contexts. See `org-show-hierarchy-above' for valid contexts."
985 :group 'org-reveal-location
986 :type org-context-choice
987 :version "24.4"
988 :package-version '(Org . "8.0"))
990 (defcustom org-show-entry-below '((default . nil))
991 "Non-nil means show the entry below a headline when revealing a location.
992 Org-mode often shows locations in an org-mode file which might have
993 been invisible before. When this is set, the text below the headline that is
994 exposed is also shown.
996 By default this is off for all contexts.
997 Instead of t, this can also be an alist specifying this option for different
998 contexts. See `org-show-hierarchy-above' for valid contexts."
999 :group 'org-reveal-location
1000 :type org-context-choice)
1002 (defcustom org-indirect-buffer-display 'other-window
1003 "How should indirect tree buffers be displayed?
1004 This applies to indirect buffers created with the commands
1005 \\[org-tree-to-indirect-buffer] and \\[org-agenda-tree-to-indirect-buffer].
1006 Valid values are:
1007 current-window Display in the current window
1008 other-window Just display in another window.
1009 dedicated-frame Create one new frame, and re-use it each time.
1010 new-frame Make a new frame each time. Note that in this case
1011 previously-made indirect buffers are kept, and you need to
1012 kill these buffers yourself."
1013 :group 'org-structure
1014 :group 'org-agenda-windows
1015 :type '(choice
1016 (const :tag "In current window" current-window)
1017 (const :tag "In current frame, other window" other-window)
1018 (const :tag "Each time a new frame" new-frame)
1019 (const :tag "One dedicated frame" dedicated-frame)))
1021 (defcustom org-use-speed-commands nil
1022 "Non-nil means activate single letter commands at beginning of a headline.
1023 This may also be a function to test for appropriate locations where speed
1024 commands should be active."
1025 :group 'org-structure
1026 :type '(choice
1027 (const :tag "Never" nil)
1028 (const :tag "At beginning of headline stars" t)
1029 (function)))
1031 (defcustom org-speed-commands-user nil
1032 "Alist of additional speed commands.
1033 This list will be checked before `org-speed-commands-default'
1034 when the variable `org-use-speed-commands' is non-nil
1035 and when the cursor is at the beginning of a headline.
1036 The car if each entry is a string with a single letter, which must
1037 be assigned to `self-insert-command' in the global map.
1038 The cdr is either a command to be called interactively, a function
1039 to be called, or a form to be evaluated.
1040 An entry that is just a list with a single string will be interpreted
1041 as a descriptive headline that will be added when listing the speed
1042 commands in the Help buffer using the `?' speed command."
1043 :group 'org-structure
1044 :type '(repeat :value ("k" . ignore)
1045 (choice :value ("k" . ignore)
1046 (list :tag "Descriptive Headline" (string :tag "Headline"))
1047 (cons :tag "Letter and Command"
1048 (string :tag "Command letter")
1049 (choice
1050 (function)
1051 (sexp))))))
1053 (defcustom org-bookmark-names-plist
1054 '(:last-capture "org-capture-last-stored"
1055 :last-refile "org-refile-last-stored"
1056 :last-capture-marker "org-capture-last-stored-marker")
1057 "Names for bookmarks automatically set by some Org commands.
1058 This can provide strings as names for a number of bookmarks Org sets
1059 automatically. The following keys are currently implemented:
1060 :last-capture
1061 :last-capture-marker
1062 :last-refile
1063 When a key does not show up in the property list, the corresponding bookmark
1064 is not set."
1065 :group 'org-structure
1066 :type 'plist)
1068 (defgroup org-cycle nil
1069 "Options concerning visibility cycling in Org-mode."
1070 :tag "Org Cycle"
1071 :group 'org-structure)
1073 (defcustom org-cycle-skip-children-state-if-no-children t
1074 "Non-nil means skip CHILDREN state in entries that don't have any."
1075 :group 'org-cycle
1076 :type 'boolean)
1078 (defcustom org-cycle-max-level nil
1079 "Maximum level which should still be subject to visibility cycling.
1080 Levels higher than this will, for cycling, be treated as text, not a headline.
1081 When `org-odd-levels-only' is set, a value of N in this variable actually
1082 means 2N-1 stars as the limiting headline.
1083 When nil, cycle all levels.
1084 Note that the limiting level of cycling is also influenced by
1085 `org-inlinetask-min-level'. When `org-cycle-max-level' is not set but
1086 `org-inlinetask-min-level' is, cycling will be limited to levels one less
1087 than its value."
1088 :group 'org-cycle
1089 :type '(choice
1090 (const :tag "No limit" nil)
1091 (integer :tag "Maximum level")))
1093 (defcustom org-drawers '("PROPERTIES" "CLOCK" "LOGBOOK" "RESULTS")
1094 "Names of drawers. Drawers are not opened by cycling on the headline above.
1095 Drawers only open with a TAB on the drawer line itself. A drawer looks like
1096 this:
1097 :DRAWERNAME:
1098 .....
1099 :END:
1100 The drawer \"PROPERTIES\" is special for capturing properties through
1101 the property API.
1103 Drawers can be defined on the per-file basis with a line like:
1105 #+DRAWERS: HIDDEN STATE PROPERTIES"
1106 :group 'org-structure
1107 :group 'org-cycle
1108 :type '(repeat (string :tag "Drawer Name")))
1110 (defcustom org-hide-block-startup nil
1111 "Non-nil means entering Org-mode will fold all blocks.
1112 This can also be set in on a per-file basis with
1114 #+STARTUP: hideblocks
1115 #+STARTUP: showblocks"
1116 :group 'org-startup
1117 :group 'org-cycle
1118 :type 'boolean)
1120 (defcustom org-cycle-global-at-bob nil
1121 "Cycle globally if cursor is at beginning of buffer and not at a headline.
1122 This makes it possible to do global cycling without having to use S-TAB or
1123 \\[universal-argument] TAB. For this special case to work, the first line
1124 of the buffer must not be a headline -- it may be empty or some other text.
1125 When used in this way, `org-cycle-hook' is disabled temporarily to make
1126 sure the cursor stays at the beginning of the buffer. When this option is
1127 nil, don't do anything special at the beginning of the buffer."
1128 :group 'org-cycle
1129 :type 'boolean)
1131 (defcustom org-cycle-level-after-item/entry-creation t
1132 "Non-nil means cycle entry level or item indentation in new empty entries.
1134 When the cursor is at the end of an empty headline, i.e., with only stars
1135 and maybe a TODO keyword, TAB will then switch the entry to become a child,
1136 and then all possible ancestor states, before returning to the original state.
1137 This makes data entry extremely fast: M-RET to create a new headline,
1138 on TAB to make it a child, two or more tabs to make it a (grand-)uncle.
1140 When the cursor is at the end of an empty plain list item, one TAB will
1141 make it a subitem, two or more tabs will back up to make this an item
1142 higher up in the item hierarchy."
1143 :group 'org-cycle
1144 :type 'boolean)
1146 (defcustom org-cycle-emulate-tab t
1147 "Where should `org-cycle' emulate TAB.
1148 nil Never
1149 white Only in completely white lines
1150 whitestart Only at the beginning of lines, before the first non-white char
1151 t Everywhere except in headlines
1152 exc-hl-bol Everywhere except at the start of a headline
1153 If TAB is used in a place where it does not emulate TAB, the current subtree
1154 visibility is cycled."
1155 :group 'org-cycle
1156 :type '(choice (const :tag "Never" nil)
1157 (const :tag "Only in completely white lines" white)
1158 (const :tag "Before first char in a line" whitestart)
1159 (const :tag "Everywhere except in headlines" t)
1160 (const :tag "Everywhere except at bol in headlines" exc-hl-bol)))
1162 (defcustom org-cycle-separator-lines 2
1163 "Number of empty lines needed to keep an empty line between collapsed trees.
1164 If you leave an empty line between the end of a subtree and the following
1165 headline, this empty line is hidden when the subtree is folded.
1166 Org-mode will leave (exactly) one empty line visible if the number of
1167 empty lines is equal or larger to the number given in this variable.
1168 So the default 2 means at least 2 empty lines after the end of a subtree
1169 are needed to produce free space between a collapsed subtree and the
1170 following headline.
1172 If the number is negative, and the number of empty lines is at least -N,
1173 all empty lines are shown.
1175 Special case: when 0, never leave empty lines in collapsed view."
1176 :group 'org-cycle
1177 :type 'integer)
1178 (put 'org-cycle-separator-lines 'safe-local-variable 'integerp)
1180 (defcustom org-pre-cycle-hook nil
1181 "Hook that is run before visibility cycling is happening.
1182 The function(s) in this hook must accept a single argument which indicates
1183 the new state that will be set right after running this hook. The
1184 argument is a symbol. Before a global state change, it can have the values
1185 `overview', `content', or `all'. Before a local state change, it can have
1186 the values `folded', `children', or `subtree'."
1187 :group 'org-cycle
1188 :type 'hook)
1190 (defcustom org-cycle-hook '(org-cycle-hide-archived-subtrees
1191 org-cycle-hide-drawers
1192 org-cycle-hide-inline-tasks
1193 org-cycle-show-empty-lines
1194 org-optimize-window-after-visibility-change)
1195 "Hook that is run after `org-cycle' has changed the buffer visibility.
1196 The function(s) in this hook must accept a single argument which indicates
1197 the new state that was set by the most recent `org-cycle' command. The
1198 argument is a symbol. After a global state change, it can have the values
1199 `overview', `contents', or `all'. After a local state change, it can have
1200 the values `folded', `children', or `subtree'."
1201 :group 'org-cycle
1202 :type 'hook)
1204 (defgroup org-edit-structure nil
1205 "Options concerning structure editing in Org-mode."
1206 :tag "Org Edit Structure"
1207 :group 'org-structure)
1209 (defcustom org-odd-levels-only nil
1210 "Non-nil means skip even levels and only use odd levels for the outline.
1211 This has the effect that two stars are being added/taken away in
1212 promotion/demotion commands. It also influences how levels are
1213 handled by the exporters.
1214 Changing it requires restart of `font-lock-mode' to become effective
1215 for fontification also in regions already fontified.
1216 You may also set this on a per-file basis by adding one of the following
1217 lines to the buffer:
1219 #+STARTUP: odd
1220 #+STARTUP: oddeven"
1221 :group 'org-edit-structure
1222 :group 'org-appearance
1223 :type 'boolean)
1225 (defcustom org-adapt-indentation t
1226 "Non-nil means adapt indentation to outline node level.
1228 When this variable is set, Org assumes that you write outlines by
1229 indenting text in each node to align with the headline (after the stars).
1230 The following issues are influenced by this variable:
1232 - When this is set and the *entire* text in an entry is indented, the
1233 indentation is increased by one space in a demotion command, and
1234 decreased by one in a promotion command. If any line in the entry
1235 body starts with text at column 0, indentation is not changed at all.
1237 - Property drawers and planning information is inserted indented when
1238 this variable is set. When nil, they will not be indented.
1240 - TAB indents a line relative to context. The lines below a headline
1241 will be indented when this variable is set.
1243 Note that this is all about true indentation, by adding and removing
1244 space characters. See also `org-indent.el' which does level-dependent
1245 indentation in a virtual way, i.e. at display time in Emacs."
1246 :group 'org-edit-structure
1247 :type 'boolean)
1249 (defcustom org-special-ctrl-a/e nil
1250 "Non-nil means `C-a' and `C-e' behave specially in headlines and items.
1252 When t, `C-a' will bring back the cursor to the beginning of the
1253 headline text, i.e. after the stars and after a possible TODO
1254 keyword. In an item, this will be the position after bullet and
1255 check-box, if any. When the cursor is already at that position,
1256 another `C-a' will bring it to the beginning of the line.
1258 `C-e' will jump to the end of the headline, ignoring the presence
1259 of tags in the headline. A second `C-e' will then jump to the
1260 true end of the line, after any tags. This also means that, when
1261 this variable is non-nil, `C-e' also will never jump beyond the
1262 end of the heading of a folded section, i.e. not after the
1263 ellipses.
1265 When set to the symbol `reversed', the first `C-a' or `C-e' works
1266 normally, going to the true line boundary first. Only a directly
1267 following, identical keypress will bring the cursor to the
1268 special positions.
1270 This may also be a cons cell where the behavior for `C-a' and
1271 `C-e' is set separately."
1272 :group 'org-edit-structure
1273 :type '(choice
1274 (const :tag "off" nil)
1275 (const :tag "on: after stars/bullet and before tags first" t)
1276 (const :tag "reversed: true line boundary first" reversed)
1277 (cons :tag "Set C-a and C-e separately"
1278 (choice :tag "Special C-a"
1279 (const :tag "off" nil)
1280 (const :tag "on: after stars/bullet first" t)
1281 (const :tag "reversed: before stars/bullet first" reversed))
1282 (choice :tag "Special C-e"
1283 (const :tag "off" nil)
1284 (const :tag "on: before tags first" t)
1285 (const :tag "reversed: after tags first" reversed)))))
1286 (org-defvaralias 'org-special-ctrl-a 'org-special-ctrl-a/e)
1288 (defcustom org-special-ctrl-k nil
1289 "Non-nil means `C-k' will behave specially in headlines.
1290 When nil, `C-k' will call the default `kill-line' command.
1291 When t, the following will happen while the cursor is in the headline:
1293 - When the cursor is at the beginning of a headline, kill the entire
1294 line and possible the folded subtree below the line.
1295 - When in the middle of the headline text, kill the headline up to the tags.
1296 - When after the headline text, kill the tags."
1297 :group 'org-edit-structure
1298 :type 'boolean)
1300 (defcustom org-ctrl-k-protect-subtree nil
1301 "Non-nil means, do not delete a hidden subtree with C-k.
1302 When set to the symbol `error', simply throw an error when C-k is
1303 used to kill (part-of) a headline that has hidden text behind it.
1304 Any other non-nil value will result in a query to the user, if it is
1305 OK to kill that hidden subtree. When nil, kill without remorse."
1306 :group 'org-edit-structure
1307 :version "24.1"
1308 :type '(choice
1309 (const :tag "Do not protect hidden subtrees" nil)
1310 (const :tag "Protect hidden subtrees with a security query" t)
1311 (const :tag "Never kill a hidden subtree with C-k" error)))
1313 (defcustom org-special-ctrl-o t
1314 "Non-nil means, make `C-o' insert a row in tables."
1315 :group 'org-edit-structure
1316 :type 'boolean)
1318 (defcustom org-catch-invisible-edits nil
1319 "Check if in invisible region before inserting or deleting a character.
1320 Valid values are:
1322 nil Do not check, so just do invisible edits.
1323 error Throw an error and do nothing.
1324 show Make point visible, and do the requested edit.
1325 show-and-error Make point visible, then throw an error and abort the edit.
1326 smart Make point visible, and do insertion/deletion if it is
1327 adjacent to visible text and the change feels predictable.
1328 Never delete a previously invisible character or add in the
1329 middle or right after an invisible region. Basically, this
1330 allows insertion and backward-delete right before ellipses.
1331 FIXME: maybe in this case we should not even show?"
1332 :group 'org-edit-structure
1333 :version "24.1"
1334 :type '(choice
1335 (const :tag "Do not check" nil)
1336 (const :tag "Throw error when trying to edit" error)
1337 (const :tag "Unhide, but do not do the edit" show-and-error)
1338 (const :tag "Show invisible part and do the edit" show)
1339 (const :tag "Be smart and do the right thing" smart)))
1341 (defcustom org-yank-folded-subtrees t
1342 "Non-nil means when yanking subtrees, fold them.
1343 If the kill is a single subtree, or a sequence of subtrees, i.e. if
1344 it starts with a heading and all other headings in it are either children
1345 or siblings, then fold all the subtrees. However, do this only if no
1346 text after the yank would be swallowed into a folded tree by this action."
1347 :group 'org-edit-structure
1348 :type 'boolean)
1350 (defcustom org-yank-adjusted-subtrees nil
1351 "Non-nil means when yanking subtrees, adjust the level.
1352 With this setting, `org-paste-subtree' is used to insert the subtree, see
1353 this function for details."
1354 :group 'org-edit-structure
1355 :type 'boolean)
1357 (defcustom org-M-RET-may-split-line '((default . t))
1358 "Non-nil means M-RET will split the line at the cursor position.
1359 When nil, it will go to the end of the line before making a
1360 new line.
1361 You may also set this option in a different way for different
1362 contexts. Valid contexts are:
1364 headline when creating a new headline
1365 item when creating a new item
1366 table in a table field
1367 default the value to be used for all contexts not explicitly
1368 customized"
1369 :group 'org-structure
1370 :group 'org-table
1371 :type '(choice
1372 (const :tag "Always" t)
1373 (const :tag "Never" nil)
1374 (repeat :greedy t :tag "Individual contexts"
1375 (cons
1376 (choice :tag "Context"
1377 (const headline)
1378 (const item)
1379 (const table)
1380 (const default))
1381 (boolean)))))
1384 (defcustom org-insert-heading-respect-content nil
1385 "Non-nil means insert new headings after the current subtree.
1386 When nil, the new heading is created directly after the current line.
1387 The commands \\[org-insert-heading-respect-content] and \\[org-insert-todo-heading-respect-content] turn
1388 this variable on for the duration of the command."
1389 :group 'org-structure
1390 :type 'boolean)
1392 (defcustom org-blank-before-new-entry '((heading . auto)
1393 (plain-list-item . auto))
1394 "Should `org-insert-heading' leave a blank line before new heading/item?
1395 The value is an alist, with `heading' and `plain-list-item' as CAR,
1396 and a boolean flag as CDR. The cdr may also be the symbol `auto', in
1397 which case Org will look at the surrounding headings/items and try to
1398 make an intelligent decision whether to insert a blank line or not.
1400 For plain lists, if `org-list-empty-line-terminates-plain-lists' is set,
1401 the setting here is ignored and no empty line is inserted to avoid breaking
1402 the list structure."
1403 :group 'org-edit-structure
1404 :type '(list
1405 (cons (const heading)
1406 (choice (const :tag "Never" nil)
1407 (const :tag "Always" t)
1408 (const :tag "Auto" auto)))
1409 (cons (const plain-list-item)
1410 (choice (const :tag "Never" nil)
1411 (const :tag "Always" t)
1412 (const :tag "Auto" auto)))))
1414 (defcustom org-insert-heading-hook nil
1415 "Hook being run after inserting a new heading."
1416 :group 'org-edit-structure
1417 :type 'hook)
1419 (defcustom org-enable-fixed-width-editor t
1420 "Non-nil means lines starting with \":\" are treated as fixed-width.
1421 This currently only means they are never auto-wrapped.
1422 When nil, such lines will be treated like ordinary lines.
1423 See also the QUOTE keyword."
1424 :group 'org-edit-structure
1425 :type 'boolean)
1427 (defcustom org-goto-auto-isearch t
1428 "Non-nil means typing characters in `org-goto' starts incremental search.
1429 When nil, you can use these keybindings to navigate the buffer:
1431 q Quit the org-goto interface
1432 n Go to the next visible heading
1433 p Go to the previous visible heading
1434 f Go one heading forward on same level
1435 b Go one heading backward on same level
1436 u Go one heading up"
1437 :group 'org-edit-structure
1438 :type 'boolean)
1440 (defgroup org-sparse-trees nil
1441 "Options concerning sparse trees in Org-mode."
1442 :tag "Org Sparse Trees"
1443 :group 'org-structure)
1445 (defcustom org-highlight-sparse-tree-matches t
1446 "Non-nil means highlight all matches that define a sparse tree.
1447 The highlights will automatically disappear the next time the buffer is
1448 changed by an edit command."
1449 :group 'org-sparse-trees
1450 :type 'boolean)
1452 (defcustom org-remove-highlights-with-change t
1453 "Non-nil means any change to the buffer will remove temporary highlights.
1454 Such highlights are created by `org-occur' and `org-clock-display'.
1455 When nil, `C-c C-c needs to be used to get rid of the highlights.
1456 The highlights created by `org-preview-latex-fragment' always need
1457 `C-c C-c' to be removed."
1458 :group 'org-sparse-trees
1459 :group 'org-time
1460 :type 'boolean)
1463 (defcustom org-occur-hook '(org-first-headline-recenter)
1464 "Hook that is run after `org-occur' has constructed a sparse tree.
1465 This can be used to recenter the window to show as much of the structure
1466 as possible."
1467 :group 'org-sparse-trees
1468 :type 'hook)
1470 (defgroup org-imenu-and-speedbar nil
1471 "Options concerning imenu and speedbar in Org-mode."
1472 :tag "Org Imenu and Speedbar"
1473 :group 'org-structure)
1475 (defcustom org-imenu-depth 2
1476 "The maximum level for Imenu access to Org-mode headlines.
1477 This also applied for speedbar access."
1478 :group 'org-imenu-and-speedbar
1479 :type 'integer)
1481 (defgroup org-table nil
1482 "Options concerning tables in Org-mode."
1483 :tag "Org Table"
1484 :group 'org)
1486 (defcustom org-enable-table-editor 'optimized
1487 "Non-nil means lines starting with \"|\" are handled by the table editor.
1488 When nil, such lines will be treated like ordinary lines.
1490 When equal to the symbol `optimized', the table editor will be optimized to
1491 do the following:
1492 - Automatic overwrite mode in front of whitespace in table fields.
1493 This makes the structure of the table stay in tact as long as the edited
1494 field does not exceed the column width.
1495 - Minimize the number of realigns. Normally, the table is aligned each time
1496 TAB or RET are pressed to move to another field. With optimization this
1497 happens only if changes to a field might have changed the column width.
1498 Optimization requires replacing the functions `self-insert-command',
1499 `delete-char', and `backward-delete-char' in Org-mode buffers, with a
1500 slight (in fact: unnoticeable) speed impact for normal typing. Org-mode is
1501 very good at guessing when a re-align will be necessary, but you can always
1502 force one with \\[org-ctrl-c-ctrl-c].
1504 If you would like to use the optimized version in Org-mode, but the
1505 un-optimized version in OrgTbl-mode, see the variable `orgtbl-optimized'.
1507 This variable can be used to turn on and off the table editor during a session,
1508 but in order to toggle optimization, a restart is required.
1510 See also the variable `org-table-auto-blank-field'."
1511 :group 'org-table
1512 :type '(choice
1513 (const :tag "off" nil)
1514 (const :tag "on" t)
1515 (const :tag "on, optimized" optimized)))
1517 (defcustom org-self-insert-cluster-for-undo (or (featurep 'xemacs)
1518 (version<= emacs-version "24.1"))
1519 "Non-nil means cluster self-insert commands for undo when possible.
1520 If this is set, then, like in the Emacs command loop, 20 consecutive
1521 characters will be undone together.
1522 This is configurable, because there is some impact on typing performance."
1523 :group 'org-table
1524 :type 'boolean)
1526 (defcustom org-table-tab-recognizes-table.el t
1527 "Non-nil means TAB will automatically notice a table.el table.
1528 When it sees such a table, it moves point into it and - if necessary -
1529 calls `table-recognize-table'."
1530 :group 'org-table-editing
1531 :type 'boolean)
1533 (defgroup org-link nil
1534 "Options concerning links in Org-mode."
1535 :tag "Org Link"
1536 :group 'org)
1538 (defvar org-link-abbrev-alist-local nil
1539 "Buffer-local version of `org-link-abbrev-alist', which see.
1540 The value of this is taken from the #+LINK lines.")
1541 (make-variable-buffer-local 'org-link-abbrev-alist-local)
1543 (defcustom org-link-abbrev-alist nil
1544 "Alist of link abbreviations.
1545 The car of each element is a string, to be replaced at the start of a link.
1546 The cdrs are replacement values, like (\"linkkey\" . REPLACE). Abbreviated
1547 links in Org-mode buffers can have an optional tag after a double colon, e.g.
1549 [[linkkey:tag][description]]
1551 The 'linkkey' must be a word word, starting with a letter, followed
1552 by letters, numbers, '-' or '_'.
1554 If REPLACE is a string, the tag will simply be appended to create the link.
1555 If the string contains \"%s\", the tag will be inserted there. If the string
1556 contains \"%h\", it will cause a url-encoded version of the tag to be inserted
1557 at that point (see the function `url-hexify-string'). If the string contains
1558 the specifier \"%(my-function)\", then the custom function `my-function' will
1559 be invoked: this function takes the tag as its only argument and must return
1560 a string.
1562 REPLACE may also be a function that will be called with the tag as the
1563 only argument to create the link, which should be returned as a string.
1565 See the manual for examples."
1566 :group 'org-link
1567 :type '(repeat
1568 (cons
1569 (string :tag "Protocol")
1570 (choice
1571 (string :tag "Format")
1572 (function)))))
1574 (defcustom org-descriptive-links t
1575 "Non-nil means Org will display descriptive links.
1576 E.g. [[http://orgmode.org][Org website]] will be displayed as
1577 \"Org Website\", hiding the link itself and just displaying its
1578 description. When set to `nil', Org will display the full links
1579 literally.
1581 You can interactively set the value of this variable by calling
1582 `org-toggle-link-display' or from the menu Org>Hyperlinks menu."
1583 :group 'org-link
1584 :type 'boolean)
1586 (defcustom org-link-file-path-type 'adaptive
1587 "How the path name in file links should be stored.
1588 Valid values are:
1590 relative Relative to the current directory, i.e. the directory of the file
1591 into which the link is being inserted.
1592 absolute Absolute path, if possible with ~ for home directory.
1593 noabbrev Absolute path, no abbreviation of home directory.
1594 adaptive Use relative path for files in the current directory and sub-
1595 directories of it. For other files, use an absolute path."
1596 :group 'org-link
1597 :type '(choice
1598 (const relative)
1599 (const absolute)
1600 (const noabbrev)
1601 (const adaptive)))
1603 (defcustom org-activate-links '(bracket angle plain radio tag date footnote)
1604 "Types of links that should be activated in Org-mode files.
1605 This is a list of symbols, each leading to the activation of a certain link
1606 type. In principle, it does not hurt to turn on most link types - there may
1607 be a small gain when turning off unused link types. The types are:
1609 bracket The recommended [[link][description]] or [[link]] links with hiding.
1610 angle Links in angular brackets that may contain whitespace like
1611 <bbdb:Carsten Dominik>.
1612 plain Plain links in normal text, no whitespace, like http://google.com.
1613 radio Text that is matched by a radio target, see manual for details.
1614 tag Tag settings in a headline (link to tag search).
1615 date Time stamps (link to calendar).
1616 footnote Footnote labels.
1618 Changing this variable requires a restart of Emacs to become effective."
1619 :group 'org-link
1620 :type '(set :greedy t
1621 (const :tag "Double bracket links" bracket)
1622 (const :tag "Angular bracket links" angle)
1623 (const :tag "Plain text links" plain)
1624 (const :tag "Radio target matches" radio)
1625 (const :tag "Tags" tag)
1626 (const :tag "Timestamps" date)
1627 (const :tag "Footnotes" footnote)))
1629 (defcustom org-make-link-description-function nil
1630 "Function to use for generating link descriptions from links.
1631 When nil, the link location will be used. This function must take
1632 two parameters: the first one is the link, the second one is the
1633 description generated by `org-insert-link'. The function should
1634 return the description to use."
1635 :group 'org-link
1636 :type '(choice (const nil) (function)))
1638 (defgroup org-link-store nil
1639 "Options concerning storing links in Org-mode."
1640 :tag "Org Store Link"
1641 :group 'org-link)
1643 (defcustom org-url-hexify-p t
1644 "When non-nil, hexify URL when creating a link."
1645 :type 'boolean
1646 :version "24.3"
1647 :group 'org-link-store)
1649 (defcustom org-email-link-description-format "Email %c: %.30s"
1650 "Format of the description part of a link to an email or usenet message.
1651 The following %-escapes will be replaced by corresponding information:
1653 %F full \"From\" field
1654 %f name, taken from \"From\" field, address if no name
1655 %T full \"To\" field
1656 %t first name in \"To\" field, address if no name
1657 %c correspondent. Usually \"from NAME\", but if you sent it yourself, it
1658 will be \"to NAME\". See also the variable `org-from-is-user-regexp'.
1659 %s subject
1660 %d date
1661 %m message-id.
1663 You may use normal field width specification between the % and the letter.
1664 This is for example useful to limit the length of the subject.
1666 Examples: \"%f on: %.30s\", \"Email from %f\", \"Email %c\""
1667 :group 'org-link-store
1668 :type 'string)
1670 (defcustom org-from-is-user-regexp
1671 (let (r1 r2)
1672 (when (and user-mail-address (not (string= user-mail-address "")))
1673 (setq r1 (concat "\\<" (regexp-quote user-mail-address) "\\>")))
1674 (when (and user-full-name (not (string= user-full-name "")))
1675 (setq r2 (concat "\\<" (regexp-quote user-full-name) "\\>")))
1676 (if (and r1 r2) (concat r1 "\\|" r2) (or r1 r2)))
1677 "Regexp matched against the \"From:\" header of an email or usenet message.
1678 It should match if the message is from the user him/herself."
1679 :group 'org-link-store
1680 :type 'regexp)
1682 (defcustom org-context-in-file-links t
1683 "Non-nil means file links from `org-store-link' contain context.
1684 A search string will be added to the file name with :: as separator and
1685 used to find the context when the link is activated by the command
1686 `org-open-at-point'. When this option is t, the entire active region
1687 will be placed in the search string of the file link. If set to a
1688 positive integer, only the first n lines of context will be stored.
1690 Using a prefix arg to the command \\[org-store-link] (`org-store-link')
1691 negates this setting for the duration of the command."
1692 :group 'org-link-store
1693 :type '(choice boolean integer))
1695 (defcustom org-keep-stored-link-after-insertion nil
1696 "Non-nil means keep link in list for entire session.
1698 The command `org-store-link' adds a link pointing to the current
1699 location to an internal list. These links accumulate during a session.
1700 The command `org-insert-link' can be used to insert links into any
1701 Org-mode file (offering completion for all stored links). When this
1702 option is nil, every link which has been inserted once using \\[org-insert-link]
1703 will be removed from the list, to make completing the unused links
1704 more efficient."
1705 :group 'org-link-store
1706 :type 'boolean)
1708 (defgroup org-link-follow nil
1709 "Options concerning following links in Org-mode."
1710 :tag "Org Follow Link"
1711 :group 'org-link)
1713 (defcustom org-link-translation-function nil
1714 "Function to translate links with different syntax to Org syntax.
1715 This can be used to translate links created for example by the Planner
1716 or emacs-wiki packages to Org syntax.
1717 The function must accept two parameters, a TYPE containing the link
1718 protocol name like \"rmail\" or \"gnus\" as a string, and the linked path,
1719 which is everything after the link protocol. It should return a cons
1720 with possibly modified values of type and path.
1721 Org contains a function for this, so if you set this variable to
1722 `org-translate-link-from-planner', you should be able follow many
1723 links created by planner."
1724 :group 'org-link-follow
1725 :type '(choice (const nil) (function)))
1727 (defcustom org-follow-link-hook nil
1728 "Hook that is run after a link has been followed."
1729 :group 'org-link-follow
1730 :type 'hook)
1732 (defcustom org-tab-follows-link nil
1733 "Non-nil means on links TAB will follow the link.
1734 Needs to be set before org.el is loaded.
1735 This really should not be used, it does not make sense, and the
1736 implementation is bad."
1737 :group 'org-link-follow
1738 :type 'boolean)
1740 (defcustom org-return-follows-link nil
1741 "Non-nil means on links RET will follow the link.
1742 In tables, the special behavior of RET has precedence."
1743 :group 'org-link-follow
1744 :type 'boolean)
1746 (defcustom org-mouse-1-follows-link
1747 (if (boundp 'mouse-1-click-follows-link) mouse-1-click-follows-link t)
1748 "Non-nil means mouse-1 on a link will follow the link.
1749 A longer mouse click will still set point. Does not work on XEmacs.
1750 Needs to be set before org.el is loaded."
1751 :group 'org-link-follow
1752 :version "24.4"
1753 :package-version '(Org . "8.3")
1754 :type '(choice
1755 (const :tag "A double click follows the link" double)
1756 (const :tag "Unconditionally follow the link with mouse-1" t)
1757 (integer :tag "mouse-1 click does not follow the link if longer than N ms" 450)))
1759 (defcustom org-mark-ring-length 4
1760 "Number of different positions to be recorded in the ring.
1761 Changing this requires a restart of Emacs to work correctly."
1762 :group 'org-link-follow
1763 :type 'integer)
1765 (defcustom org-link-search-must-match-exact-headline 'query-to-create
1766 "Non-nil means internal links in Org files must exactly match a headline.
1767 When nil, the link search tries to match a phrase with all words
1768 in the search text."
1769 :group 'org-link-follow
1770 :version "24.1"
1771 :type '(choice
1772 (const :tag "Use fuzzy text search" nil)
1773 (const :tag "Match only exact headline" t)
1774 (const :tag "Match exact headline or query to create it"
1775 query-to-create)))
1777 (defcustom org-link-frame-setup
1778 '((vm . vm-visit-folder-other-frame)
1779 (vm-imap . vm-visit-imap-folder-other-frame)
1780 (gnus . org-gnus-no-new-news)
1781 (file . find-file-other-window)
1782 (wl . wl-other-frame))
1783 "Setup the frame configuration for following links.
1784 When following a link with Emacs, it may often be useful to display
1785 this link in another window or frame. This variable can be used to
1786 set this up for the different types of links.
1787 For VM, use any of
1788 `vm-visit-folder'
1789 `vm-visit-folder-other-window'
1790 `vm-visit-folder-other-frame'
1791 For Gnus, use any of
1792 `gnus'
1793 `gnus-other-frame'
1794 `org-gnus-no-new-news'
1795 For FILE, use any of
1796 `find-file'
1797 `find-file-other-window'
1798 `find-file-other-frame'
1799 For Wanderlust use any of
1800 `wl'
1801 `wl-other-frame'
1802 For the calendar, use the variable `calendar-setup'.
1803 For BBDB, it is currently only possible to display the matches in
1804 another window."
1805 :group 'org-link-follow
1806 :type '(list
1807 (cons (const vm)
1808 (choice
1809 (const vm-visit-folder)
1810 (const vm-visit-folder-other-window)
1811 (const vm-visit-folder-other-frame)))
1812 (cons (const vm-imap)
1813 (choice
1814 (const vm-visit-imap-folder)
1815 (const vm-visit-imap-folder-other-window)
1816 (const vm-visit-imap-folder-other-frame)))
1817 (cons (const gnus)
1818 (choice
1819 (const gnus)
1820 (const gnus-other-frame)
1821 (const org-gnus-no-new-news)))
1822 (cons (const file)
1823 (choice
1824 (const find-file)
1825 (const find-file-other-window)
1826 (const find-file-other-frame)))
1827 (cons (const wl)
1828 (choice
1829 (const wl)
1830 (const wl-other-frame)))))
1832 (defcustom org-display-internal-link-with-indirect-buffer nil
1833 "Non-nil means use indirect buffer to display infile links.
1834 Activating internal links (from one location in a file to another location
1835 in the same file) normally just jumps to the location. When the link is
1836 activated with a \\[universal-argument] prefix (or with mouse-3), the link \
1837 is displayed in
1838 another window. When this option is set, the other window actually displays
1839 an indirect buffer clone of the current buffer, to avoid any visibility
1840 changes to the current buffer."
1841 :group 'org-link-follow
1842 :type 'boolean)
1844 (defcustom org-open-non-existing-files nil
1845 "Non-nil means `org-open-file' will open non-existing files.
1846 When nil, an error will be generated.
1847 This variable applies only to external applications because they
1848 might choke on non-existing files. If the link is to a file that
1849 will be opened in Emacs, the variable is ignored."
1850 :group 'org-link-follow
1851 :type 'boolean)
1853 (defcustom org-open-directory-means-index-dot-org nil
1854 "Non-nil means a link to a directory really means to index.org.
1855 When nil, following a directory link will run dired or open a finder/explorer
1856 window on that directory."
1857 :group 'org-link-follow
1858 :type 'boolean)
1860 (defcustom org-link-mailto-program '(browse-url "mailto:%a?subject=%s")
1861 "Function and arguments to call for following mailto links.
1862 This is a list with the first element being a Lisp function, and the
1863 remaining elements being arguments to the function. In string arguments,
1864 %a will be replaced by the address, and %s will be replaced by the subject
1865 if one was given like in <mailto:arthur@galaxy.org::this subject>."
1866 :group 'org-link-follow
1867 :type '(choice
1868 (const :tag "browse-url" (browse-url-mail "mailto:%a?subject=%s"))
1869 (const :tag "compose-mail" (compose-mail "%a" "%s"))
1870 (const :tag "message-mail" (message-mail "%a" "%s"))
1871 (cons :tag "other" (function) (repeat :tag "argument" sexp))))
1873 (defcustom org-confirm-shell-link-function 'yes-or-no-p
1874 "Non-nil means ask for confirmation before executing shell links.
1875 Shell links can be dangerous: just think about a link
1877 [[shell:rm -rf ~/*][Google Search]]
1879 This link would show up in your Org-mode document as \"Google Search\",
1880 but really it would remove your entire home directory.
1881 Therefore we advise against setting this variable to nil.
1882 Just change it to `y-or-n-p' if you want to confirm with a
1883 single keystroke rather than having to type \"yes\"."
1884 :group 'org-link-follow
1885 :type '(choice
1886 (const :tag "with yes-or-no (safer)" yes-or-no-p)
1887 (const :tag "with y-or-n (faster)" y-or-n-p)
1888 (const :tag "no confirmation (dangerous)" nil)))
1889 (put 'org-confirm-shell-link-function
1890 'safe-local-variable
1891 #'(lambda (x) (member x '(yes-or-no-p y-or-n-p))))
1893 (defcustom org-confirm-shell-link-not-regexp ""
1894 "A regexp to skip confirmation for shell links."
1895 :group 'org-link-follow
1896 :version "24.1"
1897 :type 'regexp)
1899 (defcustom org-confirm-elisp-link-function 'yes-or-no-p
1900 "Non-nil means ask for confirmation before executing Emacs Lisp links.
1901 Elisp links can be dangerous: just think about a link
1903 [[elisp:(shell-command \"rm -rf ~/*\")][Google Search]]
1905 This link would show up in your Org-mode document as \"Google Search\",
1906 but really it would remove your entire home directory.
1907 Therefore we advise against setting this variable to nil.
1908 Just change it to `y-or-n-p' if you want to confirm with a
1909 single keystroke rather than having to type \"yes\"."
1910 :group 'org-link-follow
1911 :type '(choice
1912 (const :tag "with yes-or-no (safer)" yes-or-no-p)
1913 (const :tag "with y-or-n (faster)" y-or-n-p)
1914 (const :tag "no confirmation (dangerous)" nil)))
1915 (put 'org-confirm-shell-link-function
1916 'safe-local-variable
1917 #'(lambda (x) (member x '(yes-or-no-p y-or-n-p))))
1919 (defcustom org-confirm-elisp-link-not-regexp ""
1920 "A regexp to skip confirmation for Elisp links."
1921 :group 'org-link-follow
1922 :version "24.1"
1923 :type 'regexp)
1925 (defconst org-file-apps-defaults-gnu
1926 '((remote . emacs)
1927 (system . mailcap)
1928 (t . mailcap))
1929 "Default file applications on a UNIX or GNU/Linux system.
1930 See `org-file-apps'.")
1932 (defconst org-file-apps-defaults-macosx
1933 '((remote . emacs)
1934 (t . "open %s")
1935 (system . "open %s")
1936 ("ps.gz" . "gv %s")
1937 ("eps.gz" . "gv %s")
1938 ("dvi" . "xdvi %s")
1939 ("fig" . "xfig %s"))
1940 "Default file applications on a MacOS X system.
1941 The system \"open\" is known as a default, but we use X11 applications
1942 for some files for which the OS does not have a good default.
1943 See `org-file-apps'.")
1945 (defconst org-file-apps-defaults-windowsnt
1946 (list
1947 '(remote . emacs)
1948 (cons t
1949 (list (if (featurep 'xemacs)
1950 'mswindows-shell-execute
1951 'w32-shell-execute)
1952 "open" 'file))
1953 (cons 'system
1954 (list (if (featurep 'xemacs)
1955 'mswindows-shell-execute
1956 'w32-shell-execute)
1957 "open" 'file)))
1958 "Default file applications on a Windows NT system.
1959 The system \"open\" is used for most files.
1960 See `org-file-apps'.")
1962 (defcustom org-file-apps
1963 '((auto-mode . emacs)
1964 ("\\.mm\\'" . default)
1965 ("\\.x?html?\\'" . default)
1966 ("\\.pdf\\'" . default))
1967 "External applications for opening `file:path' items in a document.
1968 Org-mode uses system defaults for different file types, but
1969 you can use this variable to set the application for a given file
1970 extension. The entries in this list are cons cells where the car identifies
1971 files and the cdr the corresponding command. Possible values for the
1972 file identifier are
1973 \"string\" A string as a file identifier can be interpreted in different
1974 ways, depending on its contents:
1976 - Alphanumeric characters only:
1977 Match links with this file extension.
1978 Example: (\"pdf\" . \"evince %s\")
1979 to open PDFs with evince.
1981 - Regular expression: Match links where the
1982 filename matches the regexp. If you want to
1983 use groups here, use shy groups.
1985 Example: (\"\\.x?html\\'\" . \"firefox %s\")
1986 (\"\\(?:xhtml\\|html\\)\" . \"firefox %s\")
1987 to open *.html and *.xhtml with firefox.
1989 - Regular expression which contains (non-shy) groups:
1990 Match links where the whole link, including \"::\", and
1991 anything after that, matches the regexp.
1992 In a custom command string, %1, %2, etc. are replaced with
1993 the parts of the link that were matched by the groups.
1994 For backwards compatibility, if a command string is given
1995 that does not use any of the group matches, this case is
1996 handled identically to the second one (i.e. match against
1997 file name only).
1998 In a custom lisp form, you can access the group matches with
1999 (match-string n link).
2001 Example: (\"\\.pdf::\\(\\d+\\)\\'\" . \"evince -p %1 %s\")
2002 to open [[file:document.pdf::5]] with evince at page 5.
2004 `directory' Matches a directory
2005 `remote' Matches a remote file, accessible through tramp or efs.
2006 Remote files most likely should be visited through Emacs
2007 because external applications cannot handle such paths.
2008 `auto-mode' Matches files that are matched by any entry in `auto-mode-alist',
2009 so all files Emacs knows how to handle. Using this with
2010 command `emacs' will open most files in Emacs. Beware that this
2011 will also open html files inside Emacs, unless you add
2012 (\"html\" . default) to the list as well.
2013 t Default for files not matched by any of the other options.
2014 `system' The system command to open files, like `open' on Windows
2015 and Mac OS X, and mailcap under GNU/Linux. This is the command
2016 that will be selected if you call `C-c C-o' with a double
2017 \\[universal-argument] \\[universal-argument] prefix.
2019 Possible values for the command are:
2020 `emacs' The file will be visited by the current Emacs process.
2021 `default' Use the default application for this file type, which is the
2022 association for t in the list, most likely in the system-specific
2023 part.
2024 This can be used to overrule an unwanted setting in the
2025 system-specific variable.
2026 `system' Use the system command for opening files, like \"open\".
2027 This command is specified by the entry whose car is `system'.
2028 Most likely, the system-specific version of this variable
2029 does define this command, but you can overrule/replace it
2030 here.
2031 string A command to be executed by a shell; %s will be replaced
2032 by the path to the file.
2033 sexp A Lisp form which will be evaluated. The file path will
2034 be available in the Lisp variable `file'.
2035 For more examples, see the system specific constants
2036 `org-file-apps-defaults-macosx'
2037 `org-file-apps-defaults-windowsnt'
2038 `org-file-apps-defaults-gnu'."
2039 :group 'org-link-follow
2040 :type '(repeat
2041 (cons (choice :value ""
2042 (string :tag "Extension")
2043 (const :tag "System command to open files" system)
2044 (const :tag "Default for unrecognized files" t)
2045 (const :tag "Remote file" remote)
2046 (const :tag "Links to a directory" directory)
2047 (const :tag "Any files that have Emacs modes"
2048 auto-mode))
2049 (choice :value ""
2050 (const :tag "Visit with Emacs" emacs)
2051 (const :tag "Use default" default)
2052 (const :tag "Use the system command" system)
2053 (string :tag "Command")
2054 (sexp :tag "Lisp form")))))
2056 (defcustom org-doi-server-url "http://dx.doi.org/"
2057 "The URL of the DOI server."
2058 :type 'string
2059 :version "24.3"
2060 :group 'org-link-follow)
2062 (defgroup org-refile nil
2063 "Options concerning refiling entries in Org-mode."
2064 :tag "Org Refile"
2065 :group 'org)
2067 (defcustom org-directory "~/org"
2068 "Directory with org files.
2069 This is just a default location to look for Org files. There is no need
2070 at all to put your files into this directory. It is only used in the
2071 following situations:
2073 1. When a capture template specifies a target file that is not an
2074 absolute path. The path will then be interpreted relative to
2075 `org-directory'
2076 2. When a capture note is filed away in an interactive way (when exiting the
2077 note buffer with `C-1 C-c C-c'. The user is prompted for an org file,
2078 with `org-directory' as the default path."
2079 :group 'org-refile
2080 :group 'org-capture
2081 :type 'directory)
2083 (defcustom org-default-notes-file (convert-standard-filename "~/.notes")
2084 "Default target for storing notes.
2085 Used as a fall back file for org-capture.el, for templates that
2086 do not specify a target file."
2087 :group 'org-refile
2088 :group 'org-capture
2089 :type '(choice
2090 (const :tag "Default from remember-data-file" nil)
2091 file))
2093 (defcustom org-goto-interface 'outline
2094 "The default interface to be used for `org-goto'.
2095 Allowed values are:
2096 outline The interface shows an outline of the relevant file
2097 and the correct heading is found by moving through
2098 the outline or by searching with incremental search.
2099 outline-path-completion Headlines in the current buffer are offered via
2100 completion. This is the interface also used by
2101 the refile command."
2102 :group 'org-refile
2103 :type '(choice
2104 (const :tag "Outline" outline)
2105 (const :tag "Outline-path-completion" outline-path-completion)))
2107 (defcustom org-goto-max-level 5
2108 "Maximum target level when running `org-goto' with refile interface."
2109 :group 'org-refile
2110 :type 'integer)
2112 (defcustom org-reverse-note-order nil
2113 "Non-nil means store new notes at the beginning of a file or entry.
2114 When nil, new notes will be filed to the end of a file or entry.
2115 This can also be a list with cons cells of regular expressions that
2116 are matched against file names, and values."
2117 :group 'org-capture
2118 :group 'org-refile
2119 :type '(choice
2120 (const :tag "Reverse always" t)
2121 (const :tag "Reverse never" nil)
2122 (repeat :tag "By file name regexp"
2123 (cons regexp boolean))))
2125 (defcustom org-log-refile nil
2126 "Information to record when a task is refiled.
2128 Possible values are:
2130 nil Don't add anything
2131 time Add a time stamp to the task
2132 note Prompt for a note and add it with template `org-log-note-headings'
2134 This option can also be set with on a per-file-basis with
2136 #+STARTUP: nologrefile
2137 #+STARTUP: logrefile
2138 #+STARTUP: lognoterefile
2140 You can have local logging settings for a subtree by setting the LOGGING
2141 property to one or more of these keywords.
2143 When bulk-refiling from the agenda, the value `note' is forbidden and
2144 will temporarily be changed to `time'."
2145 :group 'org-refile
2146 :group 'org-progress
2147 :version "24.1"
2148 :type '(choice
2149 (const :tag "No logging" nil)
2150 (const :tag "Record timestamp" time)
2151 (const :tag "Record timestamp with note." note)))
2153 (defcustom org-refile-targets nil
2154 "Targets for refiling entries with \\[org-refile].
2155 This is a list of cons cells. Each cell contains:
2156 - a specification of the files to be considered, either a list of files,
2157 or a symbol whose function or variable value will be used to retrieve
2158 a file name or a list of file names. If you use `org-agenda-files' for
2159 that, all agenda files will be scanned for targets. Nil means consider
2160 headings in the current buffer.
2161 - A specification of how to find candidate refile targets. This may be
2162 any of:
2163 - a cons cell (:tag . \"TAG\") to identify refile targets by a tag.
2164 This tag has to be present in all target headlines, inheritance will
2165 not be considered.
2166 - a cons cell (:todo . \"KEYWORD\") to identify refile targets by
2167 todo keyword.
2168 - a cons cell (:regexp . \"REGEXP\") with a regular expression matching
2169 headlines that are refiling targets.
2170 - a cons cell (:level . N). Any headline of level N is considered a target.
2171 Note that, when `org-odd-levels-only' is set, level corresponds to
2172 order in hierarchy, not to the number of stars.
2173 - a cons cell (:maxlevel . N). Any headline with level <= N is a target.
2174 Note that, when `org-odd-levels-only' is set, level corresponds to
2175 order in hierarchy, not to the number of stars.
2177 Each element of this list generates a set of possible targets.
2178 The union of these sets is presented (with completion) to
2179 the user by `org-refile'.
2181 You can set the variable `org-refile-target-verify-function' to a function
2182 to verify each headline found by the simple criteria above.
2184 When this variable is nil, all top-level headlines in the current buffer
2185 are used, equivalent to the value `((nil . (:level . 1))'."
2186 :group 'org-refile
2187 :type '(repeat
2188 (cons
2189 (choice :value org-agenda-files
2190 (const :tag "All agenda files" org-agenda-files)
2191 (const :tag "Current buffer" nil)
2192 (function) (variable) (file))
2193 (choice :tag "Identify target headline by"
2194 (cons :tag "Specific tag" (const :value :tag) (string))
2195 (cons :tag "TODO keyword" (const :value :todo) (string))
2196 (cons :tag "Regular expression" (const :value :regexp) (regexp))
2197 (cons :tag "Level number" (const :value :level) (integer))
2198 (cons :tag "Max Level number" (const :value :maxlevel) (integer))))))
2200 (defcustom org-refile-target-verify-function nil
2201 "Function to verify if the headline at point should be a refile target.
2202 The function will be called without arguments, with point at the
2203 beginning of the headline. It should return t and leave point
2204 where it is if the headline is a valid target for refiling.
2206 If the target should not be selected, the function must return nil.
2207 In addition to this, it may move point to a place from where the search
2208 should be continued. For example, the function may decide that the entire
2209 subtree of the current entry should be excluded and move point to the end
2210 of the subtree."
2211 :group 'org-refile
2212 :type '(choice
2213 (const nil)
2214 (function)))
2216 (defcustom org-refile-use-cache nil
2217 "Non-nil means cache refile targets to speed up the process.
2218 The cache for a particular file will be updated automatically when
2219 the buffer has been killed, or when any of the marker used for flagging
2220 refile targets no longer points at a live buffer.
2221 If you have added new entries to a buffer that might themselves be targets,
2222 you need to clear the cache manually by pressing `C-0 C-c C-w' or, if you
2223 find that easier, `C-u C-u C-u C-c C-w'."
2224 :group 'org-refile
2225 :version "24.1"
2226 :type 'boolean)
2228 (defcustom org-refile-use-outline-path nil
2229 "Non-nil means provide refile targets as paths.
2230 So a level 3 headline will be available as level1/level2/level3.
2232 When the value is `file', also include the file name (without directory)
2233 into the path. In this case, you can also stop the completion after
2234 the file name, to get entries inserted as top level in the file.
2236 When `full-file-path', include the full file path."
2237 :group 'org-refile
2238 :type '(choice
2239 (const :tag "Not" nil)
2240 (const :tag "Yes" t)
2241 (const :tag "Start with file name" file)
2242 (const :tag "Start with full file path" full-file-path)))
2244 (defcustom org-outline-path-complete-in-steps t
2245 "Non-nil means complete the outline path in hierarchical steps.
2246 When Org-mode uses the refile interface to select an outline path
2247 \(see variable `org-refile-use-outline-path'), the completion of
2248 the path can be done is a single go, or if can be done in steps down
2249 the headline hierarchy. Going in steps is probably the best if you
2250 do not use a special completion package like `ido' or `icicles'.
2251 However, when using these packages, going in one step can be very
2252 fast, while still showing the whole path to the entry."
2253 :group 'org-refile
2254 :type 'boolean)
2256 (defcustom org-refile-allow-creating-parent-nodes nil
2257 "Non-nil means allow to create new nodes as refile targets.
2258 New nodes are then created by adding \"/new node name\" to the completion
2259 of an existing node. When the value of this variable is `confirm',
2260 new node creation must be confirmed by the user (recommended).
2261 When nil, the completion must match an existing entry.
2263 Note that, if the new heading is not seen by the criteria
2264 listed in `org-refile-targets', multiple instances of the same
2265 heading would be created by trying again to file under the new
2266 heading."
2267 :group 'org-refile
2268 :type '(choice
2269 (const :tag "Never" nil)
2270 (const :tag "Always" t)
2271 (const :tag "Prompt for confirmation" confirm)))
2273 (defcustom org-refile-active-region-within-subtree nil
2274 "Non-nil means also refile active region within a subtree.
2276 By default `org-refile' doesn't allow refiling regions if they
2277 don't contain a set of subtrees, but it might be convenient to
2278 do so sometimes: in that case, the first line of the region is
2279 converted to a headline before refiling."
2280 :group 'org-refile
2281 :version "24.1"
2282 :type 'boolean)
2284 (defgroup org-todo nil
2285 "Options concerning TODO items in Org-mode."
2286 :tag "Org TODO"
2287 :group 'org)
2289 (defgroup org-progress nil
2290 "Options concerning Progress logging in Org-mode."
2291 :tag "Org Progress"
2292 :group 'org-time)
2294 (defvar org-todo-interpretation-widgets
2295 '((:tag "Sequence (cycling hits every state)" sequence)
2296 (:tag "Type (cycling directly to DONE)" type))
2297 "The available interpretation symbols for customizing `org-todo-keywords'.
2298 Interested libraries should add to this list.")
2300 (defcustom org-todo-keywords '((sequence "TODO" "DONE"))
2301 "List of TODO entry keyword sequences and their interpretation.
2302 \\<org-mode-map>This is a list of sequences.
2304 Each sequence starts with a symbol, either `sequence' or `type',
2305 indicating if the keywords should be interpreted as a sequence of
2306 action steps, or as different types of TODO items. The first
2307 keywords are states requiring action - these states will select a headline
2308 for inclusion into the global TODO list Org-mode produces. If one of
2309 the \"keywords\" is the vertical bar, \"|\", the remaining keywords
2310 signify that no further action is necessary. If \"|\" is not found,
2311 the last keyword is treated as the only DONE state of the sequence.
2313 The command \\[org-todo] cycles an entry through these states, and one
2314 additional state where no keyword is present. For details about this
2315 cycling, see the manual.
2317 TODO keywords and interpretation can also be set on a per-file basis with
2318 the special #+SEQ_TODO and #+TYP_TODO lines.
2320 Each keyword can optionally specify a character for fast state selection
2321 \(in combination with the variable `org-use-fast-todo-selection')
2322 and specifiers for state change logging, using the same syntax that
2323 is used in the \"#+TODO:\" lines. For example, \"WAIT(w)\" says that
2324 the WAIT state can be selected with the \"w\" key. \"WAIT(w!)\"
2325 indicates to record a time stamp each time this state is selected.
2327 Each keyword may also specify if a timestamp or a note should be
2328 recorded when entering or leaving the state, by adding additional
2329 characters in the parenthesis after the keyword. This looks like this:
2330 \"WAIT(w@/!)\". \"@\" means to add a note (with time), \"!\" means to
2331 record only the time of the state change. With X and Y being either
2332 \"@\" or \"!\", \"X/Y\" means use X when entering the state, and use
2333 Y when leaving the state if and only if the *target* state does not
2334 define X. You may omit any of the fast-selection key or X or /Y,
2335 so WAIT(w@), WAIT(w/@) and WAIT(@/@) are all valid.
2337 For backward compatibility, this variable may also be just a list
2338 of keywords. In this case the interpretation (sequence or type) will be
2339 taken from the (otherwise obsolete) variable `org-todo-interpretation'."
2340 :group 'org-todo
2341 :group 'org-keywords
2342 :type '(choice
2343 (repeat :tag "Old syntax, just keywords"
2344 (string :tag "Keyword"))
2345 (repeat :tag "New syntax"
2346 (cons
2347 (choice
2348 :tag "Interpretation"
2349 ;;Quick and dirty way to see
2350 ;;`org-todo-interpretations'. This takes the
2351 ;;place of item arguments
2352 :convert-widget
2353 (lambda (widget)
2354 (widget-put widget
2355 :args (mapcar
2356 #'(lambda (x)
2357 (widget-convert
2358 (cons 'const x)))
2359 org-todo-interpretation-widgets))
2360 widget))
2361 (repeat
2362 (string :tag "Keyword"))))))
2364 (defvar org-todo-keywords-1 nil
2365 "All TODO and DONE keywords active in a buffer.")
2366 (make-variable-buffer-local 'org-todo-keywords-1)
2367 (defvar org-todo-keywords-for-agenda nil)
2368 (defvar org-done-keywords-for-agenda nil)
2369 (defvar org-drawers-for-agenda nil)
2370 (defvar org-todo-keyword-alist-for-agenda nil)
2371 (defvar org-tag-alist-for-agenda nil
2372 "Alist of all tags from all agenda files.")
2373 (defvar org-tag-groups-alist-for-agenda nil
2374 "Alist of all groups tags from all current agenda files.")
2375 (defvar org-tag-groups-alist nil)
2376 (make-variable-buffer-local 'org-tag-groups-alist)
2377 (defvar org-agenda-contributing-files nil)
2378 (defvar org-not-done-keywords nil)
2379 (make-variable-buffer-local 'org-not-done-keywords)
2380 (defvar org-done-keywords nil)
2381 (make-variable-buffer-local 'org-done-keywords)
2382 (defvar org-todo-heads nil)
2383 (make-variable-buffer-local 'org-todo-heads)
2384 (defvar org-todo-sets nil)
2385 (make-variable-buffer-local 'org-todo-sets)
2386 (defvar org-todo-log-states nil)
2387 (make-variable-buffer-local 'org-todo-log-states)
2388 (defvar org-todo-kwd-alist nil)
2389 (make-variable-buffer-local 'org-todo-kwd-alist)
2390 (defvar org-todo-key-alist nil)
2391 (make-variable-buffer-local 'org-todo-key-alist)
2392 (defvar org-todo-key-trigger nil)
2393 (make-variable-buffer-local 'org-todo-key-trigger)
2395 (defcustom org-todo-interpretation 'sequence
2396 "Controls how TODO keywords are interpreted.
2397 This variable is in principle obsolete and is only used for
2398 backward compatibility, if the interpretation of todo keywords is
2399 not given already in `org-todo-keywords'. See that variable for
2400 more information."
2401 :group 'org-todo
2402 :group 'org-keywords
2403 :type '(choice (const sequence)
2404 (const type)))
2406 (defcustom org-use-fast-todo-selection t
2407 "Non-nil means use the fast todo selection scheme with C-c C-t.
2408 This variable describes if and under what circumstances the cycling
2409 mechanism for TODO keywords will be replaced by a single-key, direct
2410 selection scheme.
2412 When nil, fast selection is never used.
2414 When the symbol `prefix', it will be used when `org-todo' is called
2415 with a prefix argument, i.e. `C-u C-c C-t' in an Org-mode buffer, and
2416 `C-u t' in an agenda buffer.
2418 When t, fast selection is used by default. In this case, the prefix
2419 argument forces cycling instead.
2421 In all cases, the special interface is only used if access keys have
2422 actually been assigned by the user, i.e. if keywords in the configuration
2423 are followed by a letter in parenthesis, like TODO(t)."
2424 :group 'org-todo
2425 :type '(choice
2426 (const :tag "Never" nil)
2427 (const :tag "By default" t)
2428 (const :tag "Only with C-u C-c C-t" prefix)))
2430 (defcustom org-provide-todo-statistics t
2431 "Non-nil means update todo statistics after insert and toggle.
2432 ALL-HEADLINES means update todo statistics by including headlines
2433 with no TODO keyword as well, counting them as not done.
2434 A list of TODO keywords means the same, but skip keywords that are
2435 not in this list.
2437 When this is set, todo statistics is updated in the parent of the
2438 current entry each time a todo state is changed."
2439 :group 'org-todo
2440 :type '(choice
2441 (const :tag "Yes, only for TODO entries" t)
2442 (const :tag "Yes, including all entries" all-headlines)
2443 (repeat :tag "Yes, for TODOs in this list"
2444 (string :tag "TODO keyword"))
2445 (other :tag "No TODO statistics" nil)))
2447 (defcustom org-hierarchical-todo-statistics t
2448 "Non-nil means TODO statistics covers just direct children.
2449 When nil, all entries in the subtree are considered.
2450 This has only an effect if `org-provide-todo-statistics' is set.
2451 To set this to nil for only a single subtree, use a COOKIE_DATA
2452 property and include the word \"recursive\" into the value."
2453 :group 'org-todo
2454 :type 'boolean)
2456 (defcustom org-after-todo-state-change-hook nil
2457 "Hook which is run after the state of a TODO item was changed.
2458 The new state (a string with a TODO keyword, or nil) is available in the
2459 Lisp variable `org-state'."
2460 :group 'org-todo
2461 :type 'hook)
2463 (defvar org-blocker-hook nil
2464 "Hook for functions that are allowed to block a state change.
2466 Functions in this hook should not modify the buffer.
2467 Each function gets as its single argument a property list,
2468 see `org-trigger-hook' for more information about this list.
2470 If any of the functions in this hook returns nil, the state change
2471 is blocked.")
2473 (defvar org-trigger-hook nil
2474 "Hook for functions that are triggered by a state change.
2476 Each function gets as its single argument a property list with at
2477 least the following elements:
2479 (:type type-of-change :position pos-at-entry-start
2480 :from old-state :to new-state)
2482 Depending on the type, more properties may be present.
2484 This mechanism is currently implemented for:
2486 TODO state changes
2487 ------------------
2488 :type todo-state-change
2489 :from previous state (keyword as a string), or nil, or a symbol
2490 'todo' or 'done', to indicate the general type of state.
2491 :to new state, like in :from")
2493 (defcustom org-enforce-todo-dependencies nil
2494 "Non-nil means undone TODO entries will block switching the parent to DONE.
2495 Also, if a parent has an :ORDERED: property, switching an entry to DONE will
2496 be blocked if any prior sibling is not yet done.
2497 Finally, if the parent is blocked because of ordered siblings of its own,
2498 the child will also be blocked."
2499 :set (lambda (var val)
2500 (set var val)
2501 (if val
2502 (add-hook 'org-blocker-hook
2503 'org-block-todo-from-children-or-siblings-or-parent)
2504 (remove-hook 'org-blocker-hook
2505 'org-block-todo-from-children-or-siblings-or-parent)))
2506 :group 'org-todo
2507 :type 'boolean)
2509 (defcustom org-enforce-todo-checkbox-dependencies nil
2510 "Non-nil means unchecked boxes will block switching the parent to DONE.
2511 When this is nil, checkboxes have no influence on switching TODO states.
2512 When non-nil, you first need to check off all check boxes before the TODO
2513 entry can be switched to DONE.
2514 This variable needs to be set before org.el is loaded, and you need to
2515 restart Emacs after a change to make the change effective. The only way
2516 to change is while Emacs is running is through the customize interface."
2517 :set (lambda (var val)
2518 (set var val)
2519 (if val
2520 (add-hook 'org-blocker-hook
2521 'org-block-todo-from-checkboxes)
2522 (remove-hook 'org-blocker-hook
2523 'org-block-todo-from-checkboxes)))
2524 :group 'org-todo
2525 :type 'boolean)
2527 (defcustom org-treat-insert-todo-heading-as-state-change nil
2528 "Non-nil means inserting a TODO heading is treated as state change.
2529 So when the command \\[org-insert-todo-heading] is used, state change
2530 logging will apply if appropriate. When nil, the new TODO item will
2531 be inserted directly, and no logging will take place."
2532 :group 'org-todo
2533 :type 'boolean)
2535 (defcustom org-treat-S-cursor-todo-selection-as-state-change t
2536 "Non-nil means switching TODO states with S-cursor counts as state change.
2537 This is the default behavior. However, setting this to nil allows a
2538 convenient way to select a TODO state and bypass any logging associated
2539 with that."
2540 :group 'org-todo
2541 :type 'boolean)
2543 (defcustom org-todo-state-tags-triggers nil
2544 "Tag changes that should be triggered by TODO state changes.
2545 This is a list. Each entry is
2547 (state-change (tag . flag) .......)
2549 State-change can be a string with a state, and empty string to indicate the
2550 state that has no TODO keyword, or it can be one of the symbols `todo'
2551 or `done', meaning any not-done or done state, respectively."
2552 :group 'org-todo
2553 :group 'org-tags
2554 :type '(repeat
2555 (cons (choice :tag "When changing to"
2556 (const :tag "Not-done state" todo)
2557 (const :tag "Done state" done)
2558 (string :tag "State"))
2559 (repeat
2560 (cons :tag "Tag action"
2561 (string :tag "Tag")
2562 (choice (const :tag "Add" t) (const :tag "Remove" nil)))))))
2564 (defcustom org-log-done nil
2565 "Information to record when a task moves to the DONE state.
2567 Possible values are:
2569 nil Don't add anything, just change the keyword
2570 time Add a time stamp to the task
2571 note Prompt for a note and add it with template `org-log-note-headings'
2573 This option can also be set with on a per-file-basis with
2575 #+STARTUP: nologdone
2576 #+STARTUP: logdone
2577 #+STARTUP: lognotedone
2579 You can have local logging settings for a subtree by setting the LOGGING
2580 property to one or more of these keywords."
2581 :group 'org-todo
2582 :group 'org-progress
2583 :type '(choice
2584 (const :tag "No logging" nil)
2585 (const :tag "Record CLOSED timestamp" time)
2586 (const :tag "Record CLOSED timestamp with note." note)))
2588 ;; Normalize old uses of org-log-done.
2589 (cond
2590 ((eq org-log-done t) (setq org-log-done 'time))
2591 ((and (listp org-log-done) (memq 'done org-log-done))
2592 (setq org-log-done 'note)))
2594 (defcustom org-log-reschedule nil
2595 "Information to record when the scheduling date of a tasks is modified.
2597 Possible values are:
2599 nil Don't add anything, just change the date
2600 time Add a time stamp to the task
2601 note Prompt for a note and add it with template `org-log-note-headings'
2603 This option can also be set with on a per-file-basis with
2605 #+STARTUP: nologreschedule
2606 #+STARTUP: logreschedule
2607 #+STARTUP: lognotereschedule"
2608 :group 'org-todo
2609 :group 'org-progress
2610 :type '(choice
2611 (const :tag "No logging" nil)
2612 (const :tag "Record timestamp" time)
2613 (const :tag "Record timestamp with note." note)))
2615 (defcustom org-log-redeadline nil
2616 "Information to record when the deadline date of a tasks is modified.
2618 Possible values are:
2620 nil Don't add anything, just change the date
2621 time Add a time stamp to the task
2622 note Prompt for a note and add it with template `org-log-note-headings'
2624 This option can also be set with on a per-file-basis with
2626 #+STARTUP: nologredeadline
2627 #+STARTUP: logredeadline
2628 #+STARTUP: lognoteredeadline
2630 You can have local logging settings for a subtree by setting the LOGGING
2631 property to one or more of these keywords."
2632 :group 'org-todo
2633 :group 'org-progress
2634 :type '(choice
2635 (const :tag "No logging" nil)
2636 (const :tag "Record timestamp" time)
2637 (const :tag "Record timestamp with note." note)))
2639 (defcustom org-log-note-clock-out nil
2640 "Non-nil means record a note when clocking out of an item.
2641 This can also be configured on a per-file basis by adding one of
2642 the following lines anywhere in the buffer:
2644 #+STARTUP: lognoteclock-out
2645 #+STARTUP: nolognoteclock-out"
2646 :group 'org-todo
2647 :group 'org-progress
2648 :type 'boolean)
2650 (defcustom org-log-done-with-time t
2651 "Non-nil means the CLOSED time stamp will contain date and time.
2652 When nil, only the date will be recorded."
2653 :group 'org-progress
2654 :type 'boolean)
2656 (defcustom org-log-note-headings
2657 '((done . "CLOSING NOTE %t")
2658 (state . "State %-12s from %-12S %t")
2659 (note . "Note taken on %t")
2660 (reschedule . "Rescheduled from %S on %t")
2661 (delschedule . "Not scheduled, was %S on %t")
2662 (redeadline . "New deadline from %S on %t")
2663 (deldeadline . "Removed deadline, was %S on %t")
2664 (refile . "Refiled on %t")
2665 (clock-out . ""))
2666 "Headings for notes added to entries.
2667 The value is an alist, with the car being a symbol indicating the note
2668 context, and the cdr is the heading to be used. The heading may also be the
2669 empty string.
2670 %t in the heading will be replaced by a time stamp.
2671 %T will be an active time stamp instead the default inactive one
2672 %d will be replaced by a short-format time stamp.
2673 %D will be replaced by an active short-format time stamp.
2674 %s will be replaced by the new TODO state, in double quotes.
2675 %S will be replaced by the old TODO state, in double quotes.
2676 %u will be replaced by the user name.
2677 %U will be replaced by the full user name.
2679 In fact, it is not a good idea to change the `state' entry, because
2680 agenda log mode depends on the format of these entries."
2681 :group 'org-todo
2682 :group 'org-progress
2683 :type '(list :greedy t
2684 (cons (const :tag "Heading when closing an item" done) string)
2685 (cons (const :tag
2686 "Heading when changing todo state (todo sequence only)"
2687 state) string)
2688 (cons (const :tag "Heading when just taking a note" note) string)
2689 (cons (const :tag "Heading when rescheduling" reschedule) string)
2690 (cons (const :tag "Heading when an item is no longer scheduled" delschedule) string)
2691 (cons (const :tag "Heading when changing deadline" redeadline) string)
2692 (cons (const :tag "Heading when deleting a deadline" deldeadline) string)
2693 (cons (const :tag "Heading when refiling" refile) string)
2694 (cons (const :tag "Heading when clocking out" clock-out) string)))
2696 (unless (assq 'note org-log-note-headings)
2697 (push '(note . "%t") org-log-note-headings))
2699 (defcustom org-log-into-drawer nil
2700 "Non-nil means insert state change notes and time stamps into a drawer.
2701 When nil, state changes notes will be inserted after the headline and
2702 any scheduling and clock lines, but not inside a drawer.
2704 The value of this variable should be the name of the drawer to use.
2705 LOGBOOK is proposed as the default drawer for this purpose, you can
2706 also set this to a string to define the drawer of your choice.
2708 A value of t is also allowed, representing \"LOGBOOK\".
2710 A value of t or nil can also be set with on a per-file-basis with
2712 #+STARTUP: logdrawer
2713 #+STARTUP: nologdrawer
2715 If this variable is set, `org-log-state-notes-insert-after-drawers'
2716 will be ignored.
2718 You can set the property LOG_INTO_DRAWER to overrule this setting for
2719 a subtree."
2720 :group 'org-todo
2721 :group 'org-progress
2722 :type '(choice
2723 (const :tag "Not into a drawer" nil)
2724 (const :tag "LOGBOOK" t)
2725 (string :tag "Other")))
2727 (org-defvaralias 'org-log-state-notes-into-drawer 'org-log-into-drawer)
2729 (defun org-log-into-drawer ()
2730 "Return the value of `org-log-into-drawer', but let properties overrule.
2731 If the current entry has or inherits a LOG_INTO_DRAWER property, it will be
2732 used instead of the default value."
2733 (let ((p (org-entry-get nil "LOG_INTO_DRAWER" 'inherit t)))
2734 (cond
2735 ((not p) org-log-into-drawer)
2736 ((equal p "nil") nil)
2737 ((equal p "t") "LOGBOOK")
2738 (t p))))
2740 (defcustom org-log-state-notes-insert-after-drawers nil
2741 "Non-nil means insert state change notes after any drawers in entry.
2742 Only the drawers that *immediately* follow the headline and the
2743 deadline/scheduled line are skipped.
2744 When nil, insert notes right after the heading and perhaps the line
2745 with deadline/scheduling if present.
2747 This variable will have no effect if `org-log-into-drawer' is
2748 set."
2749 :group 'org-todo
2750 :group 'org-progress
2751 :type 'boolean)
2753 (defcustom org-log-states-order-reversed t
2754 "Non-nil means the latest state note will be directly after heading.
2755 When nil, the state change notes will be ordered according to time.
2757 This option can also be set with on a per-file-basis with
2759 #+STARTUP: logstatesreversed
2760 #+STARTUP: nologstatesreversed"
2761 :group 'org-todo
2762 :group 'org-progress
2763 :type 'boolean)
2765 (defcustom org-todo-repeat-to-state nil
2766 "The TODO state to which a repeater should return the repeating task.
2767 By default this is the first task in a TODO sequence, or the previous state
2768 in a TODO_TYP set. But you can specify another task here.
2769 alternatively, set the :REPEAT_TO_STATE: property of the entry."
2770 :group 'org-todo
2771 :version "24.1"
2772 :type '(choice (const :tag "Head of sequence" nil)
2773 (string :tag "Specific state")))
2775 (defcustom org-log-repeat 'time
2776 "Non-nil means record moving through the DONE state when triggering repeat.
2777 An auto-repeating task is immediately switched back to TODO when
2778 marked DONE. If you are not logging state changes (by adding \"@\"
2779 or \"!\" to the TODO keyword definition), or set `org-log-done' to
2780 record a closing note, there will be no record of the task moving
2781 through DONE. This variable forces taking a note anyway.
2783 nil Don't force a record
2784 time Record a time stamp
2785 note Prompt for a note and add it with template `org-log-note-headings'
2787 This option can also be set with on a per-file-basis with
2789 #+STARTUP: nologrepeat
2790 #+STARTUP: logrepeat
2791 #+STARTUP: lognoterepeat
2793 You can have local logging settings for a subtree by setting the LOGGING
2794 property to one or more of these keywords."
2795 :group 'org-todo
2796 :group 'org-progress
2797 :type '(choice
2798 (const :tag "Don't force a record" nil)
2799 (const :tag "Force recording the DONE state" time)
2800 (const :tag "Force recording a note with the DONE state" note)))
2803 (defgroup org-priorities nil
2804 "Priorities in Org-mode."
2805 :tag "Org Priorities"
2806 :group 'org-todo)
2808 (defcustom org-enable-priority-commands t
2809 "Non-nil means priority commands are active.
2810 When nil, these commands will be disabled, so that you never accidentally
2811 set a priority."
2812 :group 'org-priorities
2813 :type 'boolean)
2815 (defcustom org-highest-priority ?A
2816 "The highest priority of TODO items. A character like ?A, ?B etc.
2817 Must have a smaller ASCII number than `org-lowest-priority'."
2818 :group 'org-priorities
2819 :type 'character)
2821 (defcustom org-lowest-priority ?C
2822 "The lowest priority of TODO items. A character like ?A, ?B etc.
2823 Must have a larger ASCII number than `org-highest-priority'."
2824 :group 'org-priorities
2825 :type 'character)
2827 (defcustom org-default-priority ?B
2828 "The default priority of TODO items.
2829 This is the priority an item gets if no explicit priority is given.
2830 When starting to cycle on an empty priority the first step in the cycle
2831 depends on `org-priority-start-cycle-with-default'. The resulting first
2832 step priority must not exceed the range from `org-highest-priority' to
2833 `org-lowest-priority' which means that `org-default-priority' has to be
2834 in this range exclusive or inclusive the range boundaries. Else the
2835 first step refuses to set the default and the second will fall back
2836 to (depending on the command used) the highest or lowest priority."
2837 :group 'org-priorities
2838 :type 'character)
2840 (defcustom org-priority-start-cycle-with-default t
2841 "Non-nil means start with default priority when starting to cycle.
2842 When this is nil, the first step in the cycle will be (depending on the
2843 command used) one higher or lower than the default priority.
2844 See also `org-default-priority'."
2845 :group 'org-priorities
2846 :type 'boolean)
2848 (defcustom org-get-priority-function nil
2849 "Function to extract the priority from a string.
2850 The string is normally the headline. If this is nil Org computes the
2851 priority from the priority cookie like [#A] in the headline. It returns
2852 an integer, increasing by 1000 for each priority level.
2853 The user can set a different function here, which should take a string
2854 as an argument and return the numeric priority."
2855 :group 'org-priorities
2856 :version "24.1"
2857 :type '(choice
2858 (const nil)
2859 (function)))
2861 (defgroup org-time nil
2862 "Options concerning time stamps and deadlines in Org-mode."
2863 :tag "Org Time"
2864 :group 'org)
2866 (defcustom org-insert-labeled-timestamps-at-point nil
2867 "Non-nil means SCHEDULED and DEADLINE timestamps are inserted at point.
2868 When nil, these labeled time stamps are forces into the second line of an
2869 entry, just after the headline. When scheduling from the global TODO list,
2870 the time stamp will always be forced into the second line."
2871 :group 'org-time
2872 :type 'boolean)
2874 (defconst org-time-stamp-formats '("<%Y-%m-%d %a>" . "<%Y-%m-%d %a %H:%M>")
2875 "Formats for `format-time-string' which are used for time stamps.
2876 It is not recommended to change this constant.")
2878 (defcustom org-time-stamp-rounding-minutes '(0 5)
2879 "Number of minutes to round time stamps to.
2880 These are two values, the first applies when first creating a time stamp.
2881 The second applies when changing it with the commands `S-up' and `S-down'.
2882 When changing the time stamp, this means that it will change in steps
2883 of N minutes, as given by the second value.
2885 When a setting is 0 or 1, insert the time unmodified. Useful rounding
2886 numbers should be factors of 60, so for example 5, 10, 15.
2888 When this is larger than 1, you can still force an exact time stamp by using
2889 a double prefix argument to a time stamp command like `C-c .' or `C-c !',
2890 and by using a prefix arg to `S-up/down' to specify the exact number
2891 of minutes to shift."
2892 :group 'org-time
2893 :get #'(lambda (var) ; Make sure both elements are there
2894 (if (integerp (default-value var))
2895 (list (default-value var) 5)
2896 (default-value var)))
2897 :type '(list
2898 (integer :tag "when inserting times")
2899 (integer :tag "when modifying times")))
2901 ;; Normalize old customizations of this variable.
2902 (when (integerp org-time-stamp-rounding-minutes)
2903 (setq org-time-stamp-rounding-minutes
2904 (list org-time-stamp-rounding-minutes
2905 org-time-stamp-rounding-minutes)))
2907 (defcustom org-display-custom-times nil
2908 "Non-nil means overlay custom formats over all time stamps.
2909 The formats are defined through the variable `org-time-stamp-custom-formats'.
2910 To turn this on on a per-file basis, insert anywhere in the file:
2911 #+STARTUP: customtime"
2912 :group 'org-time
2913 :set 'set-default
2914 :type 'sexp)
2915 (make-variable-buffer-local 'org-display-custom-times)
2917 (defcustom org-time-stamp-custom-formats
2918 '("<%m/%d/%y %a>" . "<%m/%d/%y %a %H:%M>") ; american
2919 "Custom formats for time stamps. See `format-time-string' for the syntax.
2920 These are overlaid over the default ISO format if the variable
2921 `org-display-custom-times' is set. Time like %H:%M should be at the
2922 end of the second format. The custom formats are also honored by export
2923 commands, if custom time display is turned on at the time of export."
2924 :group 'org-time
2925 :type 'sexp)
2927 (defun org-time-stamp-format (&optional long inactive)
2928 "Get the right format for a time string."
2929 (let ((f (if long (cdr org-time-stamp-formats)
2930 (car org-time-stamp-formats))))
2931 (if inactive
2932 (concat "[" (substring f 1 -1) "]")
2933 f)))
2935 (defcustom org-time-clocksum-format
2936 '(:days "%dd " :hours "%d" :require-hours t :minutes ":%02d" :require-minutes t)
2937 "The format string used when creating CLOCKSUM lines.
2938 This is also used when Org mode generates a time duration.
2940 The value can be a single format string containing two
2941 %-sequences, which will be filled with the number of hours and
2942 minutes in that order.
2944 Alternatively, the value can be a plist associating any of the
2945 keys :years, :months, :weeks, :days, :hours or :minutes with
2946 format strings. The time duration is formatted using only the
2947 time components that are needed and concatenating the results.
2948 If a time unit in absent, it falls back to the next smallest
2949 unit.
2951 The keys :require-years, :require-months, :require-days,
2952 :require-weeks, :require-hours, :require-minutes are also
2953 meaningful. A non-nil value for these keys indicates that the
2954 corresponding time component should always be included, even if
2955 its value is 0.
2958 For example,
2960 \(:days \"%dd\" :hours \"%d\" :require-hours t :minutes \":%02d\"
2961 :require-minutes t)
2963 means durations longer than a day will be expressed in days,
2964 hours and minutes, and durations less than a day will always be
2965 expressed in hours and minutes (even for durations less than an
2966 hour).
2968 The value
2970 \(:days \"%dd\" :minutes \"%dm\")
2972 means durations longer than a day will be expressed in days and
2973 minutes, and durations less than a day will be expressed entirely
2974 in minutes (even for durations longer than an hour)."
2975 :group 'org-time
2976 :group 'org-clock
2977 :version "24.4"
2978 :package-version '(Org . "8.0")
2979 :type '(choice (string :tag "Format string")
2980 (set :tag "Plist"
2981 (group :inline t (const :tag "Years" :years)
2982 (string :tag "Format string"))
2983 (group :inline t
2984 (const :tag "Always show years" :require-years)
2985 (const t))
2986 (group :inline t (const :tag "Months" :months)
2987 (string :tag "Format string"))
2988 (group :inline t
2989 (const :tag "Always show months" :require-months)
2990 (const t))
2991 (group :inline t (const :tag "Weeks" :weeks)
2992 (string :tag "Format string"))
2993 (group :inline t
2994 (const :tag "Always show weeks" :require-weeks)
2995 (const t))
2996 (group :inline t (const :tag "Days" :days)
2997 (string :tag "Format string"))
2998 (group :inline t
2999 (const :tag "Always show days" :require-days)
3000 (const t))
3001 (group :inline t (const :tag "Hours" :hours)
3002 (string :tag "Format string"))
3003 (group :inline t
3004 (const :tag "Always show hours" :require-hours)
3005 (const t))
3006 (group :inline t (const :tag "Minutes" :minutes)
3007 (string :tag "Format string"))
3008 (group :inline t
3009 (const :tag "Always show minutes" :require-minutes)
3010 (const t)))))
3012 (defcustom org-time-clocksum-use-fractional nil
3013 "When non-nil, \\[org-clock-display] uses fractional times.
3014 See `org-time-clocksum-format' for more on time clock formats."
3015 :group 'org-time
3016 :group 'org-clock
3017 :version "24.3"
3018 :type 'boolean)
3020 (defcustom org-time-clocksum-use-effort-durations nil
3021 "When non-nil, \\[org-clock-display] uses effort durations.
3022 E.g. by default, one day is considered to be a 8 hours effort,
3023 so a task that has been clocked for 16 hours will be displayed
3024 as during 2 days in the clock display or in the clocktable.
3026 See `org-effort-durations' on how to set effort durations
3027 and `org-time-clocksum-format' for more on time clock formats."
3028 :group 'org-time
3029 :group 'org-clock
3030 :version "24.4"
3031 :package-version '(Org . "8.0")
3032 :type 'boolean)
3034 (defcustom org-time-clocksum-fractional-format "%.2f"
3035 "The format string used when creating CLOCKSUM lines,
3036 or when Org mode generates a time duration, if
3037 `org-time-clocksum-use-fractional' is enabled.
3039 The value can be a single format string containing one
3040 %-sequence, which will be filled with the number of hours as
3041 a float.
3043 Alternatively, the value can be a plist associating any of the
3044 keys :years, :months, :weeks, :days, :hours or :minutes with
3045 a format string. The time duration is formatted using the
3046 largest time unit which gives a non-zero integer part. If all
3047 specified formats have zero integer part, the smallest time unit
3048 is used."
3049 :group 'org-time
3050 :type '(choice (string :tag "Format string")
3051 (set (group :inline t (const :tag "Years" :years)
3052 (string :tag "Format string"))
3053 (group :inline t (const :tag "Months" :months)
3054 (string :tag "Format string"))
3055 (group :inline t (const :tag "Weeks" :weeks)
3056 (string :tag "Format string"))
3057 (group :inline t (const :tag "Days" :days)
3058 (string :tag "Format string"))
3059 (group :inline t (const :tag "Hours" :hours)
3060 (string :tag "Format string"))
3061 (group :inline t (const :tag "Minutes" :minutes)
3062 (string :tag "Format string")))))
3064 (defcustom org-deadline-warning-days 14
3065 "Number of days before expiration during which a deadline becomes active.
3066 This variable governs the display in sparse trees and in the agenda.
3067 When 0 or negative, it means use this number (the absolute value of it)
3068 even if a deadline has a different individual lead time specified.
3070 Custom commands can set this variable in the options section."
3071 :group 'org-time
3072 :group 'org-agenda-daily/weekly
3073 :type 'integer)
3075 (defcustom org-scheduled-delay-days 0
3076 "Number of days before a scheduled item becomes active.
3077 This variable governs the display in sparse trees and in the agenda.
3078 The default value (i.e. 0) means: don't delay scheduled item.
3079 When negative, it means use this number (the absolute value of it)
3080 even if a scheduled item has a different individual delay time
3081 specified.
3083 Custom commands can set this variable in the options section."
3084 :group 'org-time
3085 :group 'org-agenda-daily/weekly
3086 :version "24.4"
3087 :package-version '(Org . "8.0")
3088 :type 'integer)
3090 (defcustom org-read-date-prefer-future t
3091 "Non-nil means assume future for incomplete date input from user.
3092 This affects the following situations:
3093 1. The user gives a month but not a year.
3094 For example, if it is April and you enter \"feb 2\", this will be read
3095 as Feb 2, *next* year. \"May 5\", however, will be this year.
3096 2. The user gives a day, but no month.
3097 For example, if today is the 15th, and you enter \"3\", Org-mode will
3098 read this as the third of *next* month. However, if you enter \"17\",
3099 it will be considered as *this* month.
3101 If you set this variable to the symbol `time', then also the following
3102 will work:
3104 3. If the user gives a time.
3105 If the time is before now, it will be interpreted as tomorrow.
3107 Currently none of this works for ISO week specifications.
3109 When this option is nil, the current day, month and year will always be
3110 used as defaults.
3112 See also `org-agenda-jump-prefer-future'."
3113 :group 'org-time
3114 :type '(choice
3115 (const :tag "Never" nil)
3116 (const :tag "Check month and day" t)
3117 (const :tag "Check month, day, and time" time)))
3119 (defcustom org-agenda-jump-prefer-future 'org-read-date-prefer-future
3120 "Should the agenda jump command prefer the future for incomplete dates?
3121 The default is to do the same as configured in `org-read-date-prefer-future'.
3122 But you can also set a deviating value here.
3123 This may t or nil, or the symbol `org-read-date-prefer-future'."
3124 :group 'org-agenda
3125 :group 'org-time
3126 :version "24.1"
3127 :type '(choice
3128 (const :tag "Use org-read-date-prefer-future"
3129 org-read-date-prefer-future)
3130 (const :tag "Never" nil)
3131 (const :tag "Always" t)))
3133 (defcustom org-read-date-force-compatible-dates t
3134 "Should date/time prompt force dates that are guaranteed to work in Emacs?
3136 Depending on the system Emacs is running on, certain dates cannot
3137 be represented with the type used internally to represent time.
3138 Dates between 1970-1-1 and 2038-1-1 can always be represented
3139 correctly. Some systems allow for earlier dates, some for later,
3140 some for both. One way to find out it to insert any date into an
3141 Org buffer, putting the cursor on the year and hitting S-up and
3142 S-down to test the range.
3144 When this variable is set to t, the date/time prompt will not let
3145 you specify dates outside the 1970-2037 range, so it is certain that
3146 these dates will work in whatever version of Emacs you are
3147 running, and also that you can move a file from one Emacs implementation
3148 to another. WHenever Org is forcing the year for you, it will display
3149 a message and beep.
3151 When this variable is nil, Org will check if the date is
3152 representable in the specific Emacs implementation you are using.
3153 If not, it will force a year, usually the current year, and beep
3154 to remind you. Currently this setting is not recommended because
3155 the likelihood that you will open your Org files in an Emacs that
3156 has limited date range is not negligible.
3158 A workaround for this problem is to use diary sexp dates for time
3159 stamps outside of this range."
3160 :group 'org-time
3161 :version "24.1"
3162 :type 'boolean)
3164 (defcustom org-read-date-display-live t
3165 "Non-nil means display current interpretation of date prompt live.
3166 This display will be in an overlay, in the minibuffer."
3167 :group 'org-time
3168 :type 'boolean)
3170 (defcustom org-read-date-popup-calendar t
3171 "Non-nil means pop up a calendar when prompting for a date.
3172 In the calendar, the date can be selected with mouse-1. However, the
3173 minibuffer will also be active, and you can simply enter the date as well.
3174 When nil, only the minibuffer will be available."
3175 :group 'org-time
3176 :type 'boolean)
3177 (org-defvaralias 'org-popup-calendar-for-date-prompt
3178 'org-read-date-popup-calendar)
3180 (make-obsolete-variable
3181 'org-read-date-minibuffer-setup-hook
3182 "Set `org-read-date-minibuffer-local-map' instead." "24.4")
3183 (defcustom org-read-date-minibuffer-setup-hook nil
3184 "Hook to be used to set up keys for the date/time interface.
3185 Add key definitions to `minibuffer-local-map', which will be a
3186 temporary copy.
3188 WARNING: This option is obsolete, you should use
3189 `org-read-date-minibuffer-local-map' to set up keys."
3190 :group 'org-time
3191 :type 'hook)
3193 (defcustom org-extend-today-until 0
3194 "The hour when your day really ends. Must be an integer.
3195 This has influence for the following applications:
3196 - When switching the agenda to \"today\". It it is still earlier than
3197 the time given here, the day recognized as TODAY is actually yesterday.
3198 - When a date is read from the user and it is still before the time given
3199 here, the current date and time will be assumed to be yesterday, 23:59.
3200 Also, timestamps inserted in capture templates follow this rule.
3202 IMPORTANT: This is a feature whose implementation is and likely will
3203 remain incomplete. Really, it is only here because past midnight seems to
3204 be the favorite working time of John Wiegley :-)"
3205 :group 'org-time
3206 :type 'integer)
3208 (defcustom org-use-effective-time nil
3209 "If non-nil, consider `org-extend-today-until' when creating timestamps.
3210 For example, if `org-extend-today-until' is 8, and it's 4am, then the
3211 \"effective time\" of any timestamps between midnight and 8am will be
3212 23:59 of the previous day."
3213 :group 'org-time
3214 :version "24.1"
3215 :type 'boolean)
3217 (defcustom org-use-last-clock-out-time-as-effective-time nil
3218 "When non-nil, use the last clock out time for `org-todo'.
3219 Note that this option has precedence over the combined use of
3220 `org-use-effective-time' and `org-extend-today-until'."
3221 :group 'org-time
3222 :version "24.4"
3223 :package-version '(Org . "8.0")
3224 :type 'boolean)
3226 (defcustom org-edit-timestamp-down-means-later nil
3227 "Non-nil means S-down will increase the time in a time stamp.
3228 When nil, S-up will increase."
3229 :group 'org-time
3230 :type 'boolean)
3232 (defcustom org-calendar-follow-timestamp-change t
3233 "Non-nil means make the calendar window follow timestamp changes.
3234 When a timestamp is modified and the calendar window is visible, it will be
3235 moved to the new date."
3236 :group 'org-time
3237 :type 'boolean)
3239 (defgroup org-tags nil
3240 "Options concerning tags in Org-mode."
3241 :tag "Org Tags"
3242 :group 'org)
3244 (defcustom org-tag-alist nil
3245 "List of tags allowed in Org-mode files.
3246 When this list is nil, Org-mode will base TAG input on what is already in the
3247 buffer.
3248 The value of this variable is an alist, the car of each entry must be a
3249 keyword as a string, the cdr may be a character that is used to select
3250 that tag through the fast-tag-selection interface.
3251 See the manual for details."
3252 :group 'org-tags
3253 :type '(repeat
3254 (choice
3255 (cons (string :tag "Tag name")
3256 (character :tag "Access char"))
3257 (list :tag "Start radio group"
3258 (const :startgroup)
3259 (option (string :tag "Group description")))
3260 (list :tag "Group tags delimiter"
3261 (const :grouptags))
3262 (list :tag "End radio group"
3263 (const :endgroup)
3264 (option (string :tag "Group description")))
3265 (const :tag "New line" (:newline)))))
3267 (defcustom org-tag-persistent-alist nil
3268 "List of tags that will always appear in all Org-mode files.
3269 This is in addition to any in buffer settings or customizations
3270 of `org-tag-alist'.
3271 When this list is nil, Org-mode will base TAG input on `org-tag-alist'.
3272 The value of this variable is an alist, the car of each entry must be a
3273 keyword as a string, the cdr may be a character that is used to select
3274 that tag through the fast-tag-selection interface.
3275 See the manual for details.
3276 To disable these tags on a per-file basis, insert anywhere in the file:
3277 #+STARTUP: noptag"
3278 :group 'org-tags
3279 :type '(repeat
3280 (choice
3281 (cons (string :tag "Tag name")
3282 (character :tag "Access char"))
3283 (const :tag "Start radio group" (:startgroup))
3284 (const :tag "Group tags delimiter" (:grouptags))
3285 (const :tag "End radio group" (:endgroup))
3286 (const :tag "New line" (:newline)))))
3288 (defcustom org-complete-tags-always-offer-all-agenda-tags nil
3289 "If non-nil, always offer completion for all tags of all agenda files.
3290 Instead of customizing this variable directly, you might want to
3291 set it locally for capture buffers, because there no list of
3292 tags in that file can be created dynamically (there are none).
3294 (add-hook 'org-capture-mode-hook
3295 (lambda ()
3296 (set (make-local-variable
3297 'org-complete-tags-always-offer-all-agenda-tags)
3298 t)))"
3299 :group 'org-tags
3300 :version "24.1"
3301 :type 'boolean)
3303 (defvar org-file-tags nil
3304 "List of tags that can be inherited by all entries in the file.
3305 The tags will be inherited if the variable `org-use-tag-inheritance'
3306 says they should be.
3307 This variable is populated from #+FILETAGS lines.")
3309 (defcustom org-use-fast-tag-selection 'auto
3310 "Non-nil means use fast tag selection scheme.
3311 This is a special interface to select and deselect tags with single keys.
3312 When nil, fast selection is never used.
3313 When the symbol `auto', fast selection is used if and only if selection
3314 characters for tags have been configured, either through the variable
3315 `org-tag-alist' or through a #+TAGS line in the buffer.
3316 When t, fast selection is always used and selection keys are assigned
3317 automatically if necessary."
3318 :group 'org-tags
3319 :type '(choice
3320 (const :tag "Always" t)
3321 (const :tag "Never" nil)
3322 (const :tag "When selection characters are configured" auto)))
3324 (defcustom org-fast-tag-selection-single-key nil
3325 "Non-nil means fast tag selection exits after first change.
3326 When nil, you have to press RET to exit it.
3327 During fast tag selection, you can toggle this flag with `C-c'.
3328 This variable can also have the value `expert'. In this case, the window
3329 displaying the tags menu is not even shown, until you press C-c again."
3330 :group 'org-tags
3331 :type '(choice
3332 (const :tag "No" nil)
3333 (const :tag "Yes" t)
3334 (const :tag "Expert" expert)))
3336 (defvar org-fast-tag-selection-include-todo nil
3337 "Non-nil means fast tags selection interface will also offer TODO states.
3338 This is an undocumented feature, you should not rely on it.")
3340 (defcustom org-tags-column (if (featurep 'xemacs) -76 -77)
3341 "The column to which tags should be indented in a headline.
3342 If this number is positive, it specifies the column. If it is negative,
3343 it means that the tags should be flushright to that column. For example,
3344 -80 works well for a normal 80 character screen.
3345 When 0, place tags directly after headline text, with only one space in
3346 between."
3347 :group 'org-tags
3348 :type 'integer)
3350 (defcustom org-auto-align-tags t
3351 "Non-nil keeps tags aligned when modifying headlines.
3352 Some operations (i.e. demoting) change the length of a headline and
3353 therefore shift the tags around. With this option turned on, after
3354 each such operation the tags are again aligned to `org-tags-column'."
3355 :group 'org-tags
3356 :type 'boolean)
3358 (defcustom org-use-tag-inheritance t
3359 "Non-nil means tags in levels apply also for sublevels.
3360 When nil, only the tags directly given in a specific line apply there.
3361 This may also be a list of tags that should be inherited, or a regexp that
3362 matches tags that should be inherited. Additional control is possible
3363 with the variable `org-tags-exclude-from-inheritance' which gives an
3364 explicit list of tags to be excluded from inheritance, even if the value of
3365 `org-use-tag-inheritance' would select it for inheritance.
3367 If this option is t, a match early-on in a tree can lead to a large
3368 number of matches in the subtree when constructing the agenda or creating
3369 a sparse tree. If you only want to see the first match in a tree during
3370 a search, check out the variable `org-tags-match-list-sublevels'."
3371 :group 'org-tags
3372 :type '(choice
3373 (const :tag "Not" nil)
3374 (const :tag "Always" t)
3375 (repeat :tag "Specific tags" (string :tag "Tag"))
3376 (regexp :tag "Tags matched by regexp")))
3378 (defcustom org-tags-exclude-from-inheritance nil
3379 "List of tags that should never be inherited.
3380 This is a way to exclude a few tags from inheritance. For way to do
3381 the opposite, to actively allow inheritance for selected tags,
3382 see the variable `org-use-tag-inheritance'."
3383 :group 'org-tags
3384 :type '(repeat (string :tag "Tag")))
3386 (defun org-tag-inherit-p (tag)
3387 "Check if TAG is one that should be inherited."
3388 (cond
3389 ((member tag org-tags-exclude-from-inheritance) nil)
3390 ((eq org-use-tag-inheritance t) t)
3391 ((not org-use-tag-inheritance) nil)
3392 ((stringp org-use-tag-inheritance)
3393 (string-match org-use-tag-inheritance tag))
3394 ((listp org-use-tag-inheritance)
3395 (member tag org-use-tag-inheritance))
3396 (t (error "Invalid setting of `org-use-tag-inheritance'"))))
3398 (defcustom org-tags-match-list-sublevels t
3399 "Non-nil means list also sublevels of headlines matching a search.
3400 This variable applies to tags/property searches, and also to stuck
3401 projects because this search is based on a tags match as well.
3403 When set to the symbol `indented', sublevels are indented with
3404 leading dots.
3406 Because of tag inheritance (see variable `org-use-tag-inheritance'),
3407 the sublevels of a headline matching a tag search often also match
3408 the same search. Listing all of them can create very long lists.
3409 Setting this variable to nil causes subtrees of a match to be skipped.
3411 This variable is semi-obsolete and probably should always be true. It
3412 is better to limit inheritance to certain tags using the variables
3413 `org-use-tag-inheritance' and `org-tags-exclude-from-inheritance'."
3414 :group 'org-tags
3415 :type '(choice
3416 (const :tag "No, don't list them" nil)
3417 (const :tag "Yes, do list them" t)
3418 (const :tag "List them, indented with leading dots" indented)))
3420 (defcustom org-tags-sort-function nil
3421 "When set, tags are sorted using this function as a comparator."
3422 :group 'org-tags
3423 :type '(choice
3424 (const :tag "No sorting" nil)
3425 (const :tag "Alphabetical" string<)
3426 (const :tag "Reverse alphabetical" string>)
3427 (function :tag "Custom function" nil)))
3429 (defvar org-tags-history nil
3430 "History of minibuffer reads for tags.")
3431 (defvar org-last-tags-completion-table nil
3432 "The last used completion table for tags.")
3433 (defvar org-after-tags-change-hook nil
3434 "Hook that is run after the tags in a line have changed.")
3436 (defgroup org-properties nil
3437 "Options concerning properties in Org-mode."
3438 :tag "Org Properties"
3439 :group 'org)
3441 (defcustom org-property-format "%-10s %s"
3442 "How property key/value pairs should be formatted by `indent-line'.
3443 When `indent-line' hits a property definition, it will format the line
3444 according to this format, mainly to make sure that the values are
3445 lined-up with respect to each other."
3446 :group 'org-properties
3447 :type 'string)
3449 (defcustom org-properties-postprocess-alist nil
3450 "Alist of properties and functions to adjust inserted values.
3451 Elements of this alist must be of the form
3453 ([string] [function])
3455 where [string] must be a property name and [function] must be a
3456 lambda expression: this lambda expression must take one argument,
3457 the value to adjust, and return the new value as a string.
3459 For example, this element will allow the property \"Remaining\"
3460 to be updated wrt the relation between the \"Effort\" property
3461 and the clock summary:
3463 ((\"Remaining\" (lambda(value)
3464 (let ((clocksum (org-clock-sum-current-item))
3465 (effort (org-duration-string-to-minutes
3466 (org-entry-get (point) \"Effort\"))))
3467 (org-minutes-to-clocksum-string (- effort clocksum))))))"
3468 :group 'org-properties
3469 :version "24.1"
3470 :type '(alist :key-type (string :tag "Property")
3471 :value-type (function :tag "Function")))
3473 (defcustom org-use-property-inheritance nil
3474 "Non-nil means properties apply also for sublevels.
3476 This setting is chiefly used during property searches. Turning it on can
3477 cause significant overhead when doing a search, which is why it is not
3478 on by default.
3480 When nil, only the properties directly given in the current entry count.
3481 When t, every property is inherited. The value may also be a list of
3482 properties that should have inheritance, or a regular expression matching
3483 properties that should be inherited.
3485 However, note that some special properties use inheritance under special
3486 circumstances (not in searches). Examples are CATEGORY, ARCHIVE, COLUMNS,
3487 and the properties ending in \"_ALL\" when they are used as descriptor
3488 for valid values of a property.
3490 Note for programmers:
3491 When querying an entry with `org-entry-get', you can control if inheritance
3492 should be used. By default, `org-entry-get' looks only at the local
3493 properties. You can request inheritance by setting the inherit argument
3494 to t (to force inheritance) or to `selective' (to respect the setting
3495 in this variable)."
3496 :group 'org-properties
3497 :type '(choice
3498 (const :tag "Not" nil)
3499 (const :tag "Always" t)
3500 (repeat :tag "Specific properties" (string :tag "Property"))
3501 (regexp :tag "Properties matched by regexp")))
3503 (defun org-property-inherit-p (property)
3504 "Check if PROPERTY is one that should be inherited."
3505 (cond
3506 ((eq org-use-property-inheritance t) t)
3507 ((not org-use-property-inheritance) nil)
3508 ((stringp org-use-property-inheritance)
3509 (string-match org-use-property-inheritance property))
3510 ((listp org-use-property-inheritance)
3511 (member property org-use-property-inheritance))
3512 (t (error "Invalid setting of `org-use-property-inheritance'"))))
3514 (defcustom org-columns-default-format "%25ITEM %TODO %3PRIORITY %TAGS"
3515 "The default column format, if no other format has been defined.
3516 This variable can be set on the per-file basis by inserting a line
3518 #+COLUMNS: %25ITEM ....."
3519 :group 'org-properties
3520 :type 'string)
3522 (defcustom org-columns-ellipses ".."
3523 "The ellipses to be used when a field in column view is truncated.
3524 When this is the empty string, as many characters as possible are shown,
3525 but then there will be no visual indication that the field has been truncated.
3526 When this is a string of length N, the last N characters of a truncated
3527 field are replaced by this string. If the column is narrower than the
3528 ellipses string, only part of the ellipses string will be shown."
3529 :group 'org-properties
3530 :type 'string)
3532 (defcustom org-columns-modify-value-for-display-function nil
3533 "Function that modifies values for display in column view.
3534 For example, it can be used to cut out a certain part from a time stamp.
3535 The function must take 2 arguments:
3537 column-title The title of the column (*not* the property name)
3538 value The value that should be modified.
3540 The function should return the value that should be displayed,
3541 or nil if the normal value should be used."
3542 :group 'org-properties
3543 :type '(choice (const nil) (function)))
3545 (defcustom org-effort-property "Effort"
3546 "The property that is being used to keep track of effort estimates.
3547 Effort estimates given in this property need to have the format H:MM."
3548 :group 'org-properties
3549 :group 'org-progress
3550 :type '(string :tag "Property"))
3552 (defconst org-global-properties-fixed
3553 '(("VISIBILITY_ALL" . "folded children content all")
3554 ("CLOCK_MODELINE_TOTAL_ALL" . "current today repeat all auto"))
3555 "List of property/value pairs that can be inherited by any entry.
3557 These are fixed values, for the preset properties. The user variable
3558 that can be used to add to this list is `org-global-properties'.
3560 The entries in this list are cons cells where the car is a property
3561 name and cdr is a string with the value. If the value represents
3562 multiple items like an \"_ALL\" property, separate the items by
3563 spaces.")
3565 (defcustom org-global-properties nil
3566 "List of property/value pairs that can be inherited by any entry.
3568 This list will be combined with the constant `org-global-properties-fixed'.
3570 The entries in this list are cons cells where the car is a property
3571 name and cdr is a string with the value.
3573 You can set buffer-local values for the same purpose in the variable
3574 `org-file-properties' this by adding lines like
3576 #+PROPERTY: NAME VALUE"
3577 :group 'org-properties
3578 :type '(repeat
3579 (cons (string :tag "Property")
3580 (string :tag "Value"))))
3582 (defvar org-file-properties nil
3583 "List of property/value pairs that can be inherited by any entry.
3584 Valid for the current buffer.
3585 This variable is populated from #+PROPERTY lines.")
3586 (make-variable-buffer-local 'org-file-properties)
3588 (defgroup org-agenda nil
3589 "Options concerning agenda views in Org-mode."
3590 :tag "Org Agenda"
3591 :group 'org)
3593 (defvar org-category nil
3594 "Variable used by org files to set a category for agenda display.
3595 Such files should use a file variable to set it, for example
3597 # -*- mode: org; org-category: \"ELisp\"
3599 or contain a special line
3601 #+CATEGORY: ELisp
3603 If the file does not specify a category, then file's base name
3604 is used instead.")
3605 (make-variable-buffer-local 'org-category)
3606 (put 'org-category 'safe-local-variable #'(lambda (x) (or (symbolp x) (stringp x))))
3608 (defcustom org-agenda-files nil
3609 "The files to be used for agenda display.
3610 Entries may be added to this list with \\[org-agenda-file-to-front] and removed with
3611 \\[org-remove-file]. You can also use customize to edit the list.
3613 If an entry is a directory, all files in that directory that are matched by
3614 `org-agenda-file-regexp' will be part of the file list.
3616 If the value of the variable is not a list but a single file name, then
3617 the list of agenda files is actually stored and maintained in that file, one
3618 agenda file per line. In this file paths can be given relative to
3619 `org-directory'. Tilde expansion and environment variable substitution
3620 are also made."
3621 :group 'org-agenda
3622 :type '(choice
3623 (repeat :tag "List of files and directories" file)
3624 (file :tag "Store list in a file\n" :value "~/.agenda_files")))
3626 (defcustom org-agenda-file-regexp "\\`[^.].*\\.org\\'"
3627 "Regular expression to match files for `org-agenda-files'.
3628 If any element in the list in that variable contains a directory instead
3629 of a normal file, all files in that directory that are matched by this
3630 regular expression will be included."
3631 :group 'org-agenda
3632 :type 'regexp)
3634 (defcustom org-agenda-text-search-extra-files nil
3635 "List of extra files to be searched by text search commands.
3636 These files will be searched in addition to the agenda files by the
3637 commands `org-search-view' (`C-c a s') and `org-occur-in-agenda-files'.
3638 Note that these files will only be searched for text search commands,
3639 not for the other agenda views like todo lists, tag searches or the weekly
3640 agenda. This variable is intended to list notes and possibly archive files
3641 that should also be searched by these two commands.
3642 In fact, if the first element in the list is the symbol `agenda-archives',
3643 then all archive files of all agenda files will be added to the search
3644 scope."
3645 :group 'org-agenda
3646 :type '(set :greedy t
3647 (const :tag "Agenda Archives" agenda-archives)
3648 (repeat :inline t (file))))
3650 (org-defvaralias 'org-agenda-multi-occur-extra-files
3651 'org-agenda-text-search-extra-files)
3653 (defcustom org-agenda-skip-unavailable-files nil
3654 "Non-nil means to just skip non-reachable files in `org-agenda-files'.
3655 A nil value means to remove them, after a query, from the list."
3656 :group 'org-agenda
3657 :type 'boolean)
3659 (defcustom org-calendar-to-agenda-key [?c]
3660 "The key to be installed in `calendar-mode-map' for switching to the agenda.
3661 The command `org-calendar-goto-agenda' will be bound to this key. The
3662 default is the character `c' because then `c' can be used to switch back and
3663 forth between agenda and calendar."
3664 :group 'org-agenda
3665 :type 'sexp)
3667 (defcustom org-calendar-insert-diary-entry-key [?i]
3668 "The key to be installed in `calendar-mode-map' for adding diary entries.
3669 This option is irrelevant until `org-agenda-diary-file' has been configured
3670 to point to an Org-mode file. When that is the case, the command
3671 `org-agenda-diary-entry' will be bound to the key given here, by default
3672 `i'. In the calendar, `i' normally adds entries to `diary-file'. So
3673 if you want to continue doing this, you need to change this to a different
3674 key."
3675 :group 'org-agenda
3676 :type 'sexp)
3678 (defcustom org-agenda-diary-file 'diary-file
3679 "File to which to add new entries with the `i' key in agenda and calendar.
3680 When this is the symbol `diary-file', the functionality in the Emacs
3681 calendar will be used to add entries to the `diary-file'. But when this
3682 points to a file, `org-agenda-diary-entry' will be used instead."
3683 :group 'org-agenda
3684 :type '(choice
3685 (const :tag "The standard Emacs diary file" diary-file)
3686 (file :tag "Special Org file diary entries")))
3688 (eval-after-load "calendar"
3689 '(progn
3690 (org-defkey calendar-mode-map org-calendar-to-agenda-key
3691 'org-calendar-goto-agenda)
3692 (add-hook 'calendar-mode-hook
3693 (lambda ()
3694 (unless (eq org-agenda-diary-file 'diary-file)
3695 (define-key calendar-mode-map
3696 org-calendar-insert-diary-entry-key
3697 'org-agenda-diary-entry))))))
3699 (defgroup org-latex nil
3700 "Options for embedding LaTeX code into Org-mode."
3701 :tag "Org LaTeX"
3702 :group 'org)
3704 (defcustom org-format-latex-options
3705 '(:foreground default :background default :scale 1.0
3706 :html-foreground "Black" :html-background "Transparent"
3707 :html-scale 1.0 :matchers ("begin" "$1" "$" "$$" "\\(" "\\["))
3708 "Options for creating images from LaTeX fragments.
3709 This is a property list with the following properties:
3710 :foreground the foreground color for images embedded in Emacs, e.g. \"Black\".
3711 `default' means use the foreground of the default face.
3712 `auto' means use the foreground from the text face.
3713 :background the background color, or \"Transparent\".
3714 `default' means use the background of the default face.
3715 `auto' means use the background from the text face.
3716 :scale a scaling factor for the size of the images, to get more pixels
3717 :html-foreground, :html-background, :html-scale
3718 the same numbers for HTML export.
3719 :matchers a list indicating which matchers should be used to
3720 find LaTeX fragments. Valid members of this list are:
3721 \"begin\" find environments
3722 \"$1\" find single characters surrounded by $.$
3723 \"$\" find math expressions surrounded by $...$
3724 \"$$\" find math expressions surrounded by $$....$$
3725 \"\\(\" find math expressions surrounded by \\(...\\)
3726 \"\\=\\[\" find math expressions surrounded by \\=\\[...\\]"
3727 :group 'org-latex
3728 :type 'plist)
3730 (defcustom org-format-latex-signal-error t
3731 "Non-nil means signal an error when image creation of LaTeX snippets fails.
3732 When nil, just push out a message."
3733 :group 'org-latex
3734 :version "24.1"
3735 :type 'boolean)
3737 (defcustom org-latex-to-mathml-jar-file nil
3738 "Value of\"%j\" in `org-latex-to-mathml-convert-command'.
3739 Use this to specify additional executable file say a jar file.
3741 When using MathToWeb as the converter, specify the full-path to
3742 your mathtoweb.jar file."
3743 :group 'org-latex
3744 :version "24.1"
3745 :type '(choice
3746 (const :tag "None" nil)
3747 (file :tag "JAR file" :must-match t)))
3749 (defcustom org-latex-to-mathml-convert-command nil
3750 "Command to convert LaTeX fragments to MathML.
3751 Replace format-specifiers in the command as noted below and use
3752 `shell-command' to convert LaTeX to MathML.
3753 %j: Executable file in fully expanded form as specified by
3754 `org-latex-to-mathml-jar-file'.
3755 %I: Input LaTeX file in fully expanded form
3756 %o: Output MathML file
3757 This command is used by `org-create-math-formula'.
3759 When using MathToWeb as the converter, set this to
3760 \"java -jar %j -unicode -force -df %o %I\"."
3761 :group 'org-latex
3762 :version "24.1"
3763 :type '(choice
3764 (const :tag "None" nil)
3765 (string :tag "\nShell command")))
3767 (defcustom org-latex-create-formula-image-program 'dvipng
3768 "Program to convert LaTeX fragments with.
3770 dvipng Process the LaTeX fragments to dvi file, then convert
3771 dvi files to png files using dvipng.
3772 This will also include processing of non-math environments.
3773 imagemagick Convert the LaTeX fragments to pdf files and use imagemagick
3774 to convert pdf files to png files"
3775 :group 'org-latex
3776 :version "24.1"
3777 :type '(choice
3778 (const :tag "dvipng" dvipng)
3779 (const :tag "imagemagick" imagemagick)))
3781 (defcustom org-latex-preview-ltxpng-directory "ltxpng/"
3782 "Path to store latex preview images.
3783 A relative path here creates many directories relative to the
3784 processed org files paths. An absolute path puts all preview
3785 images at the same place."
3786 :group 'org-latex
3787 :version "24.3"
3788 :type 'string)
3790 (defun org-format-latex-mathml-available-p ()
3791 "Return t if `org-latex-to-mathml-convert-command' is usable."
3792 (save-match-data
3793 (when (and (boundp 'org-latex-to-mathml-convert-command)
3794 org-latex-to-mathml-convert-command)
3795 (let ((executable (car (split-string
3796 org-latex-to-mathml-convert-command))))
3797 (when (executable-find executable)
3798 (if (string-match
3799 "%j" org-latex-to-mathml-convert-command)
3800 (file-readable-p org-latex-to-mathml-jar-file)
3801 t))))))
3803 (defcustom org-format-latex-header "\\documentclass{article}
3804 \\usepackage[usenames]{color}
3805 \[PACKAGES]
3806 \[DEFAULT-PACKAGES]
3807 \\pagestyle{empty} % do not remove
3808 % The settings below are copied from fullpage.sty
3809 \\setlength{\\textwidth}{\\paperwidth}
3810 \\addtolength{\\textwidth}{-3cm}
3811 \\setlength{\\oddsidemargin}{1.5cm}
3812 \\addtolength{\\oddsidemargin}{-2.54cm}
3813 \\setlength{\\evensidemargin}{\\oddsidemargin}
3814 \\setlength{\\textheight}{\\paperheight}
3815 \\addtolength{\\textheight}{-\\headheight}
3816 \\addtolength{\\textheight}{-\\headsep}
3817 \\addtolength{\\textheight}{-\\footskip}
3818 \\addtolength{\\textheight}{-3cm}
3819 \\setlength{\\topmargin}{1.5cm}
3820 \\addtolength{\\topmargin}{-2.54cm}"
3821 "The document header used for processing LaTeX fragments.
3822 It is imperative that this header make sure that no page number
3823 appears on the page. The package defined in the variables
3824 `org-latex-default-packages-alist' and `org-latex-packages-alist'
3825 will either replace the placeholder \"[PACKAGES]\" in this
3826 header, or they will be appended."
3827 :group 'org-latex
3828 :type 'string)
3830 (defun org-set-packages-alist (var val)
3831 "Set the packages alist and make sure it has 3 elements per entry."
3832 (set var (mapcar (lambda (x)
3833 (if (and (consp x) (= (length x) 2))
3834 (list (car x) (nth 1 x) t)
3836 val)))
3838 (defun org-get-packages-alist (var)
3839 "Get the packages alist and make sure it has 3 elements per entry."
3840 (mapcar (lambda (x)
3841 (if (and (consp x) (= (length x) 2))
3842 (list (car x) (nth 1 x) t)
3844 (default-value var)))
3846 (defcustom org-latex-default-packages-alist
3847 '(("AUTO" "inputenc" t)
3848 ("T1" "fontenc" t)
3849 ("" "fixltx2e" nil)
3850 ("" "graphicx" t)
3851 ("" "longtable" nil)
3852 ("" "float" nil)
3853 ("" "wrapfig" nil)
3854 ("" "rotating" nil)
3855 ("normalem" "ulem" t)
3856 ("" "amsmath" t)
3857 ("" "textcomp" t)
3858 ("" "marvosym" t)
3859 ("" "wasysym" t)
3860 ("" "amssymb" t)
3861 ("" "hyperref" nil)
3862 "\\tolerance=1000")
3863 "Alist of default packages to be inserted in the header.
3865 Change this only if one of the packages here causes an
3866 incompatibility with another package you are using.
3868 The packages in this list are needed by one part or another of
3869 Org mode to function properly:
3871 - inputenc, fontenc: for basic font and character selection
3872 - fixltx2e: Important patches of LaTeX itself
3873 - graphicx: for including images
3874 - longtable: For multipage tables
3875 - float, wrapfig: for figure placement
3876 - rotating: for sideways figures and tables
3877 - ulem: for underline and strike-through
3878 - amsmath: for subscript and superscript and math environments
3879 - textcomp, marvosymb, wasysym, amssymb: for various symbols used
3880 for interpreting the entities in `org-entities'. You can skip
3881 some of these packages if you don't use any of their symbols.
3882 - hyperref: for cross references
3884 Therefore you should not modify this variable unless you know
3885 what you are doing. The one reason to change it anyway is that
3886 you might be loading some other package that conflicts with one
3887 of the default packages. Each element is either a cell or
3888 a string.
3890 A cell is of the format:
3892 \( \"options\" \"package\" SNIPPET-FLAG).
3894 If SNIPPET-FLAG is non-nil, the package also needs to be included
3895 when compiling LaTeX snippets into images for inclusion into
3896 non-LaTeX output.
3898 A string will be inserted as-is in the header of the document."
3899 :group 'org-latex
3900 :group 'org-export-latex
3901 :set 'org-set-packages-alist
3902 :get 'org-get-packages-alist
3903 :version "24.1"
3904 :type '(repeat
3905 (choice
3906 (list :tag "options/package pair"
3907 (string :tag "options")
3908 (string :tag "package")
3909 (boolean :tag "Snippet"))
3910 (string :tag "A line of LaTeX"))))
3912 (defcustom org-latex-packages-alist nil
3913 "Alist of packages to be inserted in every LaTeX header.
3915 These will be inserted after `org-latex-default-packages-alist'.
3916 Each element is either a cell or a string.
3918 A cell is of the format:
3920 \(\"options\" \"package\" SNIPPET-FLAG)
3922 SNIPPET-FLAG, when non-nil, indicates that this package is also
3923 needed when turning LaTeX snippets into images for inclusion into
3924 non-LaTeX output.
3926 A string will be inserted as-is in the header of the document.
3928 Make sure that you only list packages here which:
3930 - you want in every file;
3931 - do not conflict with the setup in `org-format-latex-header';
3932 - do not conflict with the default packages in
3933 `org-latex-default-packages-alist'."
3934 :group 'org-latex
3935 :group 'org-export-latex
3936 :set 'org-set-packages-alist
3937 :get 'org-get-packages-alist
3938 :type '(repeat
3939 (choice
3940 (list :tag "options/package pair"
3941 (string :tag "options")
3942 (string :tag "package")
3943 (boolean :tag "Snippet"))
3944 (string :tag "A line of LaTeX"))))
3946 (defgroup org-appearance nil
3947 "Settings for Org-mode appearance."
3948 :tag "Org Appearance"
3949 :group 'org)
3951 (defcustom org-level-color-stars-only nil
3952 "Non-nil means fontify only the stars in each headline.
3953 When nil, the entire headline is fontified.
3954 Changing it requires restart of `font-lock-mode' to become effective
3955 also in regions already fontified."
3956 :group 'org-appearance
3957 :type 'boolean)
3959 (defcustom org-hide-leading-stars nil
3960 "Non-nil means hide the first N-1 stars in a headline.
3961 This works by using the face `org-hide' for these stars. This
3962 face is white for a light background, and black for a dark
3963 background. You may have to customize the face `org-hide' to
3964 make this work.
3965 Changing it requires restart of `font-lock-mode' to become effective
3966 also in regions already fontified.
3967 You may also set this on a per-file basis by adding one of the following
3968 lines to the buffer:
3970 #+STARTUP: hidestars
3971 #+STARTUP: showstars"
3972 :group 'org-appearance
3973 :type 'boolean)
3975 (defcustom org-hidden-keywords nil
3976 "List of symbols corresponding to keywords to be hidden the org buffer.
3977 For example, a value '(title) for this list will make the document's title
3978 appear in the buffer without the initial #+TITLE: keyword."
3979 :group 'org-appearance
3980 :version "24.1"
3981 :type '(set (const :tag "#+AUTHOR" author)
3982 (const :tag "#+DATE" date)
3983 (const :tag "#+EMAIL" email)
3984 (const :tag "#+TITLE" title)))
3986 (defcustom org-custom-properties nil
3987 "List of properties (as strings) with a special meaning.
3988 The default use of these custom properties is to let the user
3989 hide them with `org-toggle-custom-properties-visibility'."
3990 :group 'org-properties
3991 :group 'org-appearance
3992 :version "24.3"
3993 :type '(repeat (string :tag "Property Name")))
3995 (defcustom org-fontify-done-headline nil
3996 "Non-nil means change the face of a headline if it is marked DONE.
3997 Normally, only the TODO/DONE keyword indicates the state of a headline.
3998 When this is non-nil, the headline after the keyword is set to the
3999 `org-headline-done' as an additional indication."
4000 :group 'org-appearance
4001 :type 'boolean)
4003 (defcustom org-fontify-emphasized-text t
4004 "Non-nil means fontify *bold*, /italic/ and _underlined_ text.
4005 Changing this variable requires a restart of Emacs to take effect."
4006 :group 'org-appearance
4007 :type 'boolean)
4009 (defcustom org-fontify-whole-heading-line nil
4010 "Non-nil means fontify the whole line for headings.
4011 This is useful when setting a background color for the
4012 org-level-* faces."
4013 :group 'org-appearance
4014 :type 'boolean)
4016 (defcustom org-highlight-latex-and-related nil
4017 "Non-nil means highlight LaTeX related syntax in the buffer.
4018 When non nil, the value should be a list containing any of the
4019 following symbols:
4020 `latex' Highlight LaTeX snippets and environments.
4021 `script' Highlight subscript and superscript.
4022 `entities' Highlight entities."
4023 :group 'org-appearance
4024 :version "24.4"
4025 :package-version '(Org . "8.0")
4026 :type '(choice
4027 (const :tag "No highlighting" nil)
4028 (set :greedy t :tag "Highlight"
4029 (const :tag "LaTeX snippets and environments" latex)
4030 (const :tag "Subscript and superscript" script)
4031 (const :tag "Entities" entities))))
4033 (defcustom org-hide-emphasis-markers nil
4034 "Non-nil mean font-lock should hide the emphasis marker characters."
4035 :group 'org-appearance
4036 :type 'boolean)
4038 (defcustom org-pretty-entities nil
4039 "Non-nil means show entities as UTF8 characters.
4040 When nil, the \\name form remains in the buffer."
4041 :group 'org-appearance
4042 :version "24.1"
4043 :type 'boolean)
4045 (defcustom org-pretty-entities-include-sub-superscripts t
4046 "Non-nil means, pretty entity display includes formatting sub/superscripts."
4047 :group 'org-appearance
4048 :version "24.1"
4049 :type 'boolean)
4051 (defvar org-emph-re nil
4052 "Regular expression for matching emphasis.
4053 After a match, the match groups contain these elements:
4054 0 The match of the full regular expression, including the characters
4055 before and after the proper match
4056 1 The character before the proper match, or empty at beginning of line
4057 2 The proper match, including the leading and trailing markers
4058 3 The leading marker like * or /, indicating the type of highlighting
4059 4 The text between the emphasis markers, not including the markers
4060 5 The character after the match, empty at the end of a line")
4061 (defvar org-verbatim-re nil
4062 "Regular expression for matching verbatim text.")
4063 (defvar org-emphasis-regexp-components) ; defined just below
4064 (defvar org-emphasis-alist) ; defined just below
4065 (defun org-set-emph-re (var val)
4066 "Set variable and compute the emphasis regular expression."
4067 (set var val)
4068 (when (and (boundp 'org-emphasis-alist)
4069 (boundp 'org-emphasis-regexp-components)
4070 org-emphasis-alist org-emphasis-regexp-components)
4071 (let* ((e org-emphasis-regexp-components)
4072 (pre (car e))
4073 (post (nth 1 e))
4074 (border (nth 2 e))
4075 (body (nth 3 e))
4076 (nl (nth 4 e))
4077 (body1 (concat body "*?"))
4078 (markers (mapconcat 'car org-emphasis-alist ""))
4079 (vmarkers (mapconcat
4080 (lambda (x) (if (eq (nth 2 x) 'verbatim) (car x) ""))
4081 org-emphasis-alist "")))
4082 ;; make sure special characters appear at the right position in the class
4083 (if (string-match "\\^" markers)
4084 (setq markers (concat (replace-match "" t t markers) "^")))
4085 (if (string-match "-" markers)
4086 (setq markers (concat (replace-match "" t t markers) "-")))
4087 (if (string-match "\\^" vmarkers)
4088 (setq vmarkers (concat (replace-match "" t t vmarkers) "^")))
4089 (if (string-match "-" vmarkers)
4090 (setq vmarkers (concat (replace-match "" t t vmarkers) "-")))
4091 (if (> nl 0)
4092 (setq body1 (concat body1 "\\(?:\n" body "*?\\)\\{0,"
4093 (int-to-string nl) "\\}")))
4094 ;; Make the regexp
4095 (setq org-emph-re
4096 (concat "\\([" pre "]\\|^\\)"
4097 "\\("
4098 "\\([" markers "]\\)"
4099 "\\("
4100 "[^" border "]\\|"
4101 "[^" border "]"
4102 body1
4103 "[^" border "]"
4104 "\\)"
4105 "\\3\\)"
4106 "\\([" post "]\\|$\\)"))
4107 (setq org-verbatim-re
4108 (concat "\\([" pre "]\\|^\\)"
4109 "\\("
4110 "\\([" vmarkers "]\\)"
4111 "\\("
4112 "[^" border "]\\|"
4113 "[^" border "]"
4114 body1
4115 "[^" border "]"
4116 "\\)"
4117 "\\3\\)"
4118 "\\([" post "]\\|$\\)")))))
4120 ;; This used to be a defcustom (Org <8.0) but allowing the users to
4121 ;; set this option proved cumbersome. See this message/thread:
4122 ;; http://article.gmane.org/gmane.emacs.orgmode/68681
4123 (defvar org-emphasis-regexp-components
4124 '(" \t('\"{" "- \t.,:!?;'\")}\\" " \t\r\n,\"'" "." 1)
4125 "Components used to build the regular expression for emphasis.
4126 This is a list with five entries. Terminology: In an emphasis string
4127 like \" *strong word* \", we call the initial space PREMATCH, the final
4128 space POSTMATCH, the stars MARKERS, \"s\" and \"d\" are BORDER characters
4129 and \"trong wor\" is the body. The different components in this variable
4130 specify what is allowed/forbidden in each part:
4132 pre Chars allowed as prematch. Beginning of line will be allowed too.
4133 post Chars allowed as postmatch. End of line will be allowed too.
4134 border The chars *forbidden* as border characters.
4135 body-regexp A regexp like \".\" to match a body character. Don't use
4136 non-shy groups here, and don't allow newline here.
4137 newline The maximum number of newlines allowed in an emphasis exp.
4139 You need to reload Org or to restart Emacs after customizing this.")
4141 (defcustom org-emphasis-alist
4142 `(("*" bold)
4143 ("/" italic)
4144 ("_" underline)
4145 ("=" org-verbatim verbatim)
4146 ("~" org-code verbatim)
4147 ("+" ,(if (featurep 'xemacs) 'org-table '(:strike-through t))))
4148 "Alist of characters and faces to emphasize text.
4149 Text starting and ending with a special character will be emphasized,
4150 for example *bold*, _underlined_ and /italic/. This variable sets the
4151 marker characters and the face to be used by font-lock for highlighting
4152 in Org-mode Emacs buffers.
4154 You need to reload Org or to restart Emacs after customizing this."
4155 :group 'org-appearance
4156 :set 'org-set-emph-re
4157 :version "24.4"
4158 :package-version '(Org . "8.0")
4159 :type '(repeat
4160 (list
4161 (string :tag "Marker character")
4162 (choice
4163 (face :tag "Font-lock-face")
4164 (plist :tag "Face property list"))
4165 (option (const verbatim)))))
4167 (defvar org-protecting-blocks
4168 '("src" "example" "latex" "ascii" "html" "ditaa" "dot" "r" "R")
4169 "Blocks that contain text that is quoted, i.e. not processed as Org syntax.
4170 This is needed for font-lock setup.")
4172 ;;; Miscellaneous options
4174 (defgroup org-completion nil
4175 "Completion in Org-mode."
4176 :tag "Org Completion"
4177 :group 'org)
4179 (defcustom org-completion-use-ido nil
4180 "Non-nil means use ido completion wherever possible.
4181 Note that `ido-mode' must be active for this variable to be relevant.
4182 If you decide to turn this variable on, you might well want to turn off
4183 `org-outline-path-complete-in-steps'.
4184 See also `org-completion-use-iswitchb'."
4185 :group 'org-completion
4186 :type 'boolean)
4188 (defcustom org-completion-use-iswitchb nil
4189 "Non-nil means use iswitchb completion wherever possible.
4190 Note that `iswitchb-mode' must be active for this variable to be relevant.
4191 If you decide to turn this variable on, you might well want to turn off
4192 `org-outline-path-complete-in-steps'.
4193 Note that this variable has only an effect if `org-completion-use-ido' is nil."
4194 :group 'org-completion
4195 :type 'boolean)
4197 (defcustom org-completion-fallback-command 'hippie-expand
4198 "The expansion command called by \\[pcomplete] in normal context.
4199 Normal means, no org-mode-specific context."
4200 :group 'org-completion
4201 :type 'function)
4203 ;;; Functions and variables from their packages
4204 ;; Declared here to avoid compiler warnings
4206 ;; XEmacs only
4207 (defvar outline-mode-menu-heading)
4208 (defvar outline-mode-menu-show)
4209 (defvar outline-mode-menu-hide)
4210 (defvar zmacs-regions) ; XEmacs regions
4212 ;; Emacs only
4213 (defvar mark-active)
4215 ;; Various packages
4216 (declare-function calendar-absolute-from-iso "cal-iso" (date))
4217 (declare-function calendar-forward-day "cal-move" (arg))
4218 (declare-function calendar-goto-date "cal-move" (date))
4219 (declare-function calendar-goto-today "cal-move" ())
4220 (declare-function calendar-iso-from-absolute "cal-iso" (date))
4221 (defvar calc-embedded-close-formula)
4222 (defvar calc-embedded-open-formula)
4223 (declare-function cdlatex-tab "ext:cdlatex" ())
4224 (declare-function cdlatex-compute-tables "ext:cdlatex" ())
4225 (declare-function dired-get-filename "dired" (&optional localp no-error-if-not-filep))
4226 (defvar font-lock-unfontify-region-function)
4227 (declare-function iswitchb-read-buffer "iswitchb"
4228 (prompt &optional default require-match start matches-set))
4229 (defvar iswitchb-temp-buflist)
4230 (declare-function org-gnus-follow-link "org-gnus" (&optional group article))
4231 (defvar org-agenda-tags-todo-honor-ignore-options)
4232 (declare-function org-agenda-skip "org-agenda" ())
4233 (declare-function
4234 org-agenda-format-item "org-agenda"
4235 (extra txt &optional level category tags dotime noprefix remove-re habitp))
4236 (declare-function org-agenda-new-marker "org-agenda" (&optional pos))
4237 (declare-function org-agenda-change-all-lines "org-agenda"
4238 (newhead hdmarker &optional fixface just-this))
4239 (declare-function org-agenda-set-restriction-lock "org-agenda" (&optional type))
4240 (declare-function org-agenda-maybe-redo "org-agenda" ())
4241 (declare-function org-agenda-save-markers-for-cut-and-paste "org-agenda"
4242 (beg end))
4243 (declare-function org-agenda-copy-local-variable "org-agenda" (var))
4244 (declare-function org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
4245 "org-agenda" (&optional end))
4246 (declare-function org-inlinetask-remove-END-maybe "org-inlinetask" ())
4247 (declare-function org-inlinetask-in-task-p "org-inlinetask" ())
4248 (declare-function org-inlinetask-goto-beginning "org-inlinetask" ())
4249 (declare-function org-inlinetask-goto-end "org-inlinetask" ())
4250 (declare-function org-indent-mode "org-indent" (&optional arg))
4251 (declare-function parse-time-string "parse-time" (string))
4252 (declare-function org-attach-reveal "org-attach" (&optional if-exists))
4253 (declare-function orgtbl-send-table "org-table" (&optional maybe))
4254 (defvar remember-data-file)
4255 (defvar texmathp-why)
4256 (declare-function speedbar-line-directory "speedbar" (&optional depth))
4257 (declare-function table--at-cell-p "table" (position &optional object at-column))
4259 (defvar org-latex-regexps)
4261 ;;; Autoload and prepare some org modules
4263 ;; Some table stuff that needs to be defined here, because it is used
4264 ;; by the functions setting up org-mode or checking for table context.
4266 (defconst org-table-any-line-regexp "^[ \t]*\\(|\\|\\+-[-+]\\)"
4267 "Detect an org-type or table-type table.")
4268 (defconst org-table-line-regexp "^[ \t]*|"
4269 "Detect an org-type table line.")
4270 (defconst org-table-dataline-regexp "^[ \t]*|[^-]"
4271 "Detect an org-type table line.")
4272 (defconst org-table-hline-regexp "^[ \t]*|-"
4273 "Detect an org-type table hline.")
4274 (defconst org-table1-hline-regexp "^[ \t]*\\+-[-+]"
4275 "Detect a table-type table hline.")
4276 (defconst org-table-any-border-regexp "^[ \t]*[^|+ \t]"
4277 "Detect the first line outside a table when searching from within it.
4278 This works for both table types.")
4280 (defconst org-TBLFM-regexp "^[ \t]*#\\+TBLFM: "
4281 "Detect a #+TBLFM line.")
4283 ;;;###autoload
4284 (defun turn-on-orgtbl ()
4285 "Unconditionally turn on `orgtbl-mode'."
4286 (require 'org-table)
4287 (orgtbl-mode 1))
4289 (defun org-at-table-p (&optional table-type)
4290 "Return t if the cursor is inside an org-type table.
4291 If TABLE-TYPE is non-nil, also check for table.el-type tables."
4292 (if org-enable-table-editor
4293 (save-excursion
4294 (beginning-of-line 1)
4295 (looking-at (if table-type org-table-any-line-regexp
4296 org-table-line-regexp)))
4297 nil))
4298 (defsubst org-table-p () (org-at-table-p))
4300 (defun org-at-table.el-p ()
4301 "Return t if and only if we are at a table.el table."
4302 (and (org-at-table-p 'any)
4303 (save-excursion
4304 (goto-char (org-table-begin 'any))
4305 (looking-at org-table1-hline-regexp))))
4307 (defun org-table-recognize-table.el ()
4308 "If there is a table.el table nearby, recognize it and move into it."
4309 (if org-table-tab-recognizes-table.el
4310 (if (org-at-table.el-p)
4311 (progn
4312 (beginning-of-line 1)
4313 (if (looking-at org-table-dataline-regexp)
4315 (if (looking-at org-table1-hline-regexp)
4316 (progn
4317 (beginning-of-line 2)
4318 (if (looking-at org-table-any-border-regexp)
4319 (beginning-of-line -1)))))
4320 (if (re-search-forward "|" (org-table-end t) t)
4321 (progn
4322 (require 'table)
4323 (if (table--at-cell-p (point))
4325 (message "recognizing table.el table...")
4326 (table-recognize-table)
4327 (message "recognizing table.el table...done")))
4328 (error "This should not happen"))
4330 nil)
4331 nil))
4333 (defun org-at-table-hline-p ()
4334 "Return t if the cursor is inside a hline in a table."
4335 (if org-enable-table-editor
4336 (save-excursion
4337 (beginning-of-line 1)
4338 (looking-at org-table-hline-regexp))
4339 nil))
4341 (defun org-table-map-tables (function &optional quietly)
4342 "Apply FUNCTION to the start of all tables in the buffer."
4343 (save-excursion
4344 (save-restriction
4345 (widen)
4346 (goto-char (point-min))
4347 (while (re-search-forward org-table-any-line-regexp nil t)
4348 (unless quietly
4349 (message "Mapping tables: %d%%" (/ (* 100.0 (point)) (buffer-size))))
4350 (beginning-of-line 1)
4351 (when (and (looking-at org-table-line-regexp)
4352 ;; Exclude tables in src/example/verbatim/clocktable blocks
4353 (not (org-in-block-p '("src" "example" "verbatim" "clocktable"))))
4354 (save-excursion (funcall function))
4355 (or (looking-at org-table-line-regexp)
4356 (forward-char 1)))
4357 (re-search-forward org-table-any-border-regexp nil 1))))
4358 (unless quietly (message "Mapping tables: done")))
4360 (declare-function org-clock-save-markers-for-cut-and-paste "org-clock" (beg end))
4361 (declare-function org-clock-update-mode-line "org-clock" ())
4362 (declare-function org-resolve-clocks "org-clock"
4363 (&optional also-non-dangling-p prompt last-valid))
4365 (defun org-at-TBLFM-p (&optional pos)
4366 "Return t when point (or POS) is in #+TBLFM line."
4367 (save-excursion
4368 (let ((pos pos)))
4369 (goto-char (or pos (point)))
4370 (beginning-of-line 1)
4371 (looking-at org-TBLFM-regexp)))
4373 (defvar org-clock-start-time)
4374 (defvar org-clock-marker (make-marker)
4375 "Marker recording the last clock-in.")
4376 (defvar org-clock-hd-marker (make-marker)
4377 "Marker recording the last clock-in, but the headline position.")
4378 (defvar org-clock-heading ""
4379 "The heading of the current clock entry.")
4380 (defun org-clock-is-active ()
4381 "Return the buffer where the clock is currently running.
4382 Return nil if no clock is running."
4383 (marker-buffer org-clock-marker))
4385 (defun org-check-running-clock ()
4386 "Check if the current buffer contains the running clock.
4387 If yes, offer to stop it and to save the buffer with the changes."
4388 (when (and (equal (marker-buffer org-clock-marker) (current-buffer))
4389 (y-or-n-p (format "Clock-out in buffer %s before killing it? "
4390 (buffer-name))))
4391 (org-clock-out)
4392 (when (y-or-n-p "Save changed buffer?")
4393 (save-buffer))))
4395 (defun org-clocktable-try-shift (dir n)
4396 "Check if this line starts a clock table, if yes, shift the time block."
4397 (when (org-match-line "^[ \t]*#\\+BEGIN:[ \t]+clocktable\\>")
4398 (org-clocktable-shift dir n)))
4400 ;;;###autoload
4401 (defun org-clock-persistence-insinuate ()
4402 "Set up hooks for clock persistence."
4403 (require 'org-clock)
4404 (add-hook 'org-mode-hook 'org-clock-load)
4405 (add-hook 'kill-emacs-hook 'org-clock-save))
4407 (defgroup org-archive nil
4408 "Options concerning archiving in Org-mode."
4409 :tag "Org Archive"
4410 :group 'org-structure)
4412 (defcustom org-archive-location "%s_archive::"
4413 "The location where subtrees should be archived.
4415 The value of this variable is a string, consisting of two parts,
4416 separated by a double-colon. The first part is a filename and
4417 the second part is a headline.
4419 When the filename is omitted, archiving happens in the same file.
4420 %s in the filename will be replaced by the current file
4421 name (without the directory part). Archiving to a different file
4422 is useful to keep archived entries from contributing to the
4423 Org-mode Agenda.
4425 The archived entries will be filed as subtrees of the specified
4426 headline. When the headline is omitted, the subtrees are simply
4427 filed away at the end of the file, as top-level entries. Also in
4428 the heading you can use %s to represent the file name, this can be
4429 useful when using the same archive for a number of different files.
4431 Here are a few examples:
4432 \"%s_archive::\"
4433 If the current file is Projects.org, archive in file
4434 Projects.org_archive, as top-level trees. This is the default.
4436 \"::* Archived Tasks\"
4437 Archive in the current file, under the top-level headline
4438 \"* Archived Tasks\".
4440 \"~/org/archive.org::\"
4441 Archive in file ~/org/archive.org (absolute path), as top-level trees.
4443 \"~/org/archive.org::* From %s\"
4444 Archive in file ~/org/archive.org (absolute path), under headlines
4445 \"From FILENAME\" where file name is the current file name.
4447 \"~/org/datetree.org::datetree/* Finished Tasks\"
4448 The \"datetree/\" string is special, signifying to archive
4449 items to the datetree. Items are placed in either the CLOSED
4450 date of the item, or the current date if there is no CLOSED date.
4451 The heading will be a subentry to the current date. There doesn't
4452 need to be a heading, but there always needs to be a slash after
4453 datetree. For example, to store archived items directly in the
4454 datetree, use \"~/org/datetree.org::datetree/\".
4456 \"basement::** Finished Tasks\"
4457 Archive in file ./basement (relative path), as level 3 trees
4458 below the level 2 heading \"** Finished Tasks\".
4460 You may set this option on a per-file basis by adding to the buffer a
4461 line like
4463 #+ARCHIVE: basement::** Finished Tasks
4465 You may also define it locally for a subtree by setting an ARCHIVE property
4466 in the entry. If such a property is found in an entry, or anywhere up
4467 the hierarchy, it will be used."
4468 :group 'org-archive
4469 :type 'string)
4471 (defcustom org-archive-tag "ARCHIVE"
4472 "The tag that marks a subtree as archived.
4473 An archived subtree does not open during visibility cycling, and does
4474 not contribute to the agenda listings.
4475 After changing this, font-lock must be restarted in the relevant buffers to
4476 get the proper fontification."
4477 :group 'org-archive
4478 :group 'org-keywords
4479 :type 'string)
4481 (defcustom org-agenda-skip-archived-trees t
4482 "Non-nil means the agenda will skip any items located in archived trees.
4483 An archived tree is a tree marked with the tag ARCHIVE. The use of this
4484 variable is no longer recommended, you should leave it at the value t.
4485 Instead, use the key `v' to cycle the archives-mode in the agenda."
4486 :group 'org-archive
4487 :group 'org-agenda-skip
4488 :type 'boolean)
4490 (defcustom org-columns-skip-archived-trees t
4491 "Non-nil means ignore archived trees when creating column view."
4492 :group 'org-archive
4493 :group 'org-properties
4494 :type 'boolean)
4496 (defcustom org-cycle-open-archived-trees nil
4497 "Non-nil means `org-cycle' will open archived trees.
4498 An archived tree is a tree marked with the tag ARCHIVE.
4499 When nil, archived trees will stay folded. You can still open them with
4500 normal outline commands like `show-all', but not with the cycling commands."
4501 :group 'org-archive
4502 :group 'org-cycle
4503 :type 'boolean)
4505 (defcustom org-sparse-tree-open-archived-trees nil
4506 "Non-nil means sparse tree construction shows matches in archived trees.
4507 When nil, matches in these trees are highlighted, but the trees are kept in
4508 collapsed state."
4509 :group 'org-archive
4510 :group 'org-sparse-trees
4511 :type 'boolean)
4513 (defcustom org-sparse-tree-default-date-type 'scheduled-or-deadline
4514 "The default date type when building a sparse tree.
4515 When this is nil, a date is a scheduled or a deadline timestamp.
4516 Otherwise, these types are allowed:
4518 all: all timestamps
4519 active: only active timestamps (<...>)
4520 inactive: only inactive timestamps (<...)
4521 scheduled: only scheduled timestamps
4522 deadline: only deadline timestamps"
4523 :type '(choice (const :tag "Scheduled or deadline" scheduled-or-deadline)
4524 (const :tag "All timestamps" all)
4525 (const :tag "Only active timestamps" active)
4526 (const :tag "Only inactive timestamps" inactive)
4527 (const :tag "Only scheduled timestamps" scheduled)
4528 (const :tag "Only deadline timestamps" deadline)
4529 (const :tag "Only closed timestamps" closed))
4530 :version "24.3"
4531 :group 'org-sparse-trees)
4533 (defun org-cycle-hide-archived-subtrees (state)
4534 "Re-hide all archived subtrees after a visibility state change."
4535 (when (and (not org-cycle-open-archived-trees)
4536 (not (memq state '(overview folded))))
4537 (save-excursion
4538 (let* ((globalp (memq state '(contents all)))
4539 (beg (if globalp (point-min) (point)))
4540 (end (if globalp (point-max) (org-end-of-subtree t))))
4541 (org-hide-archived-subtrees beg end)
4542 (goto-char beg)
4543 (if (looking-at (concat ".*:" org-archive-tag ":"))
4544 (message "%s" (substitute-command-keys
4545 "Subtree is archived and stays closed. Use \\[org-force-cycle-archived] to cycle it anyway.")))))))
4547 (defun org-force-cycle-archived ()
4548 "Cycle subtree even if it is archived."
4549 (interactive)
4550 (setq this-command 'org-cycle)
4551 (let ((org-cycle-open-archived-trees t))
4552 (call-interactively 'org-cycle)))
4554 (defun org-hide-archived-subtrees (beg end)
4555 "Re-hide all archived subtrees after a visibility state change."
4556 (save-excursion
4557 (let* ((re (concat ":" org-archive-tag ":")))
4558 (goto-char beg)
4559 (while (re-search-forward re end t)
4560 (when (org-at-heading-p)
4561 (org-flag-subtree t)
4562 (org-end-of-subtree t))))))
4564 (declare-function outline-end-of-heading "outline" ())
4565 (declare-function outline-flag-region "outline" (from to flag))
4566 (defun org-flag-subtree (flag)
4567 (save-excursion
4568 (org-back-to-heading t)
4569 (outline-end-of-heading)
4570 (outline-flag-region (point)
4571 (progn (org-end-of-subtree t) (point))
4572 flag)))
4574 (defalias 'org-advertized-archive-subtree 'org-archive-subtree)
4576 ;; Declare Column View Code
4578 (declare-function org-columns-number-to-string "org-colview" (n fmt &optional printf))
4579 (declare-function org-columns-get-format-and-top-level "org-colview" ())
4580 (declare-function org-columns-compute "org-colview" (property))
4582 ;; Declare ID code
4584 (declare-function org-id-store-link "org-id")
4585 (declare-function org-id-locations-load "org-id")
4586 (declare-function org-id-locations-save "org-id")
4587 (defvar org-id-track-globally)
4589 ;;; Variables for pre-computed regular expressions, all buffer local
4591 (defvar org-drawer-regexp "^[ \t]*:PROPERTIES:[ \t]*$"
4592 "Matches first line of a hidden block.")
4593 (make-variable-buffer-local 'org-drawer-regexp)
4594 (defvar org-todo-regexp nil
4595 "Matches any of the TODO state keywords.")
4596 (make-variable-buffer-local 'org-todo-regexp)
4597 (defvar org-not-done-regexp nil
4598 "Matches any of the TODO state keywords except the last one.")
4599 (make-variable-buffer-local 'org-not-done-regexp)
4600 (defvar org-not-done-heading-regexp nil
4601 "Matches a TODO headline that is not done.")
4602 (make-variable-buffer-local 'org-not-done-regexp)
4603 (defvar org-todo-line-regexp nil
4604 "Matches a headline and puts TODO state into group 2 if present.")
4605 (make-variable-buffer-local 'org-todo-line-regexp)
4606 (defvar org-complex-heading-regexp nil
4607 "Matches a headline and puts everything into groups:
4608 group 1: the stars
4609 group 2: The todo keyword, maybe
4610 group 3: Priority cookie
4611 group 4: True headline
4612 group 5: Tags")
4613 (make-variable-buffer-local 'org-complex-heading-regexp)
4614 (defvar org-complex-heading-regexp-format nil
4615 "Printf format to make regexp to match an exact headline.
4616 This regexp will match the headline of any node which has the
4617 exact headline text that is put into the format, but may have any
4618 TODO state, priority and tags.")
4619 (make-variable-buffer-local 'org-complex-heading-regexp-format)
4620 (defvar org-todo-line-tags-regexp nil
4621 "Matches a headline and puts TODO state into group 2 if present.
4622 Also put tags into group 4 if tags are present.")
4623 (make-variable-buffer-local 'org-todo-line-tags-regexp)
4624 (defvar org-ds-keyword-length 12
4625 "Maximum length of the DEADLINE and SCHEDULED keywords.")
4626 (make-variable-buffer-local 'org-ds-keyword-length)
4627 (defvar org-deadline-regexp nil
4628 "Matches the DEADLINE keyword.")
4629 (make-variable-buffer-local 'org-deadline-regexp)
4630 (defvar org-deadline-time-regexp nil
4631 "Matches the DEADLINE keyword together with a time stamp.")
4632 (make-variable-buffer-local 'org-deadline-time-regexp)
4633 (defvar org-deadline-time-hour-regexp nil
4634 "Matches the DEADLINE keyword together with a time-and-hour stamp.")
4635 (make-variable-buffer-local 'org-deadline-time-hour-regexp)
4636 (defvar org-deadline-line-regexp nil
4637 "Matches the DEADLINE keyword and the rest of the line.")
4638 (make-variable-buffer-local 'org-deadline-line-regexp)
4639 (defvar org-scheduled-regexp nil
4640 "Matches the SCHEDULED keyword.")
4641 (make-variable-buffer-local 'org-scheduled-regexp)
4642 (defvar org-scheduled-time-regexp nil
4643 "Matches the SCHEDULED keyword together with a time stamp.")
4644 (make-variable-buffer-local 'org-scheduled-time-regexp)
4645 (defvar org-scheduled-time-hour-regexp nil
4646 "Matches the SCHEDULED keyword together with a time-and-hour stamp.")
4647 (make-variable-buffer-local 'org-scheduled-time-hour-regexp)
4648 (defvar org-closed-time-regexp nil
4649 "Matches the CLOSED keyword together with a time stamp.")
4650 (make-variable-buffer-local 'org-closed-time-regexp)
4652 (defvar org-keyword-time-regexp nil
4653 "Matches any of the 4 keywords, together with the time stamp.")
4654 (make-variable-buffer-local 'org-keyword-time-regexp)
4655 (defvar org-keyword-time-not-clock-regexp nil
4656 "Matches any of the 3 keywords, together with the time stamp.")
4657 (make-variable-buffer-local 'org-keyword-time-not-clock-regexp)
4658 (defvar org-maybe-keyword-time-regexp nil
4659 "Matches a timestamp, possibly preceded by a keyword.")
4660 (make-variable-buffer-local 'org-maybe-keyword-time-regexp)
4661 (defvar org-all-time-keywords nil
4662 "List of time keywords.")
4663 (make-variable-buffer-local 'org-all-time-keywords)
4665 (defconst org-plain-time-of-day-regexp
4666 (concat
4667 "\\(\\<[012]?[0-9]"
4668 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4669 "\\(--?"
4670 "\\(\\<[012]?[0-9]"
4671 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4672 "\\)?")
4673 "Regular expression to match a plain time or time range.
4674 Examples: 11:45 or 8am-13:15 or 2:45-2:45pm. After a match, the following
4675 groups carry important information:
4676 0 the full match
4677 1 the first time, range or not
4678 8 the second time, if it is a range.")
4680 (defconst org-plain-time-extension-regexp
4681 (concat
4682 "\\(\\<[012]?[0-9]"
4683 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4684 "\\+\\([0-9]+\\)\\(:\\([0-5][0-9]\\)\\)?")
4685 "Regular expression to match a time range like 13:30+2:10 = 13:30-15:40.
4686 Examples: 11:45 or 8am-13:15 or 2:45-2:45pm. After a match, the following
4687 groups carry important information:
4688 0 the full match
4689 7 hours of duration
4690 9 minutes of duration")
4692 (defconst org-stamp-time-of-day-regexp
4693 (concat
4694 "<\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} +\\sw+ +\\)"
4695 "\\([012][0-9]:[0-5][0-9]\\(-\\([012][0-9]:[0-5][0-9]\\)\\)?[^\n\r>]*?\\)>"
4696 "\\(--?"
4697 "<\\1\\([012][0-9]:[0-5][0-9]\\)>\\)?")
4698 "Regular expression to match a timestamp time or time range.
4699 After a match, the following groups carry important information:
4700 0 the full match
4701 1 date plus weekday, for back referencing to make sure both times are on the same day
4702 2 the first time, range or not
4703 4 the second time, if it is a range.")
4705 (defconst org-startup-options
4706 '(("fold" org-startup-folded t)
4707 ("overview" org-startup-folded t)
4708 ("nofold" org-startup-folded nil)
4709 ("showall" org-startup-folded nil)
4710 ("showeverything" org-startup-folded showeverything)
4711 ("content" org-startup-folded content)
4712 ("indent" org-startup-indented t)
4713 ("noindent" org-startup-indented nil)
4714 ("hidestars" org-hide-leading-stars t)
4715 ("showstars" org-hide-leading-stars nil)
4716 ("odd" org-odd-levels-only t)
4717 ("oddeven" org-odd-levels-only nil)
4718 ("align" org-startup-align-all-tables t)
4719 ("noalign" org-startup-align-all-tables nil)
4720 ("inlineimages" org-startup-with-inline-images t)
4721 ("noinlineimages" org-startup-with-inline-images nil)
4722 ("latexpreview" org-startup-with-latex-preview t)
4723 ("nolatexpreview" org-startup-with-latex-preview nil)
4724 ("customtime" org-display-custom-times t)
4725 ("logdone" org-log-done time)
4726 ("lognotedone" org-log-done note)
4727 ("nologdone" org-log-done nil)
4728 ("lognoteclock-out" org-log-note-clock-out t)
4729 ("nolognoteclock-out" org-log-note-clock-out nil)
4730 ("logrepeat" org-log-repeat state)
4731 ("lognoterepeat" org-log-repeat note)
4732 ("logdrawer" org-log-into-drawer t)
4733 ("nologdrawer" org-log-into-drawer nil)
4734 ("logstatesreversed" org-log-states-order-reversed t)
4735 ("nologstatesreversed" org-log-states-order-reversed nil)
4736 ("nologrepeat" org-log-repeat nil)
4737 ("logreschedule" org-log-reschedule time)
4738 ("lognotereschedule" org-log-reschedule note)
4739 ("nologreschedule" org-log-reschedule nil)
4740 ("logredeadline" org-log-redeadline time)
4741 ("lognoteredeadline" org-log-redeadline note)
4742 ("nologredeadline" org-log-redeadline nil)
4743 ("logrefile" org-log-refile time)
4744 ("lognoterefile" org-log-refile note)
4745 ("nologrefile" org-log-refile nil)
4746 ("fninline" org-footnote-define-inline t)
4747 ("nofninline" org-footnote-define-inline nil)
4748 ("fnlocal" org-footnote-section nil)
4749 ("fnauto" org-footnote-auto-label t)
4750 ("fnprompt" org-footnote-auto-label nil)
4751 ("fnconfirm" org-footnote-auto-label confirm)
4752 ("fnplain" org-footnote-auto-label plain)
4753 ("fnadjust" org-footnote-auto-adjust t)
4754 ("nofnadjust" org-footnote-auto-adjust nil)
4755 ("constcgs" constants-unit-system cgs)
4756 ("constSI" constants-unit-system SI)
4757 ("noptag" org-tag-persistent-alist nil)
4758 ("hideblocks" org-hide-block-startup t)
4759 ("nohideblocks" org-hide-block-startup nil)
4760 ("beamer" org-startup-with-beamer-mode t)
4761 ("entitiespretty" org-pretty-entities t)
4762 ("entitiesplain" org-pretty-entities nil))
4763 "Variable associated with STARTUP options for org-mode.
4764 Each element is a list of three items: the startup options (as written
4765 in the #+STARTUP line), the corresponding variable, and the value to set
4766 this variable to if the option is found. An optional forth element PUSH
4767 means to push this value onto the list in the variable.")
4769 (defun org-update-property-plist (key val props)
4770 "Update PROPS with KEY and VAL."
4771 (let* ((appending (string= "+" (substring key (- (length key) 1))))
4772 (key (if appending (substring key 0 (- (length key) 1)) key))
4773 (remainder (org-remove-if (lambda (p) (string= (car p) key)) props))
4774 (previous (cdr (assoc key props))))
4775 (if appending
4776 (cons (cons key (if previous (concat previous " " val) val)) remainder)
4777 (cons (cons key val) remainder))))
4779 (defconst org-block-regexp
4780 "^[ \t]*#\\+begin_?\\([^ \n]+\\)\\(\\([^\n]+\\)\\)?\n\\([^\000]+?\\)#\\+end_?\\1[ \t]*$"
4781 "Regular expression for hiding blocks.")
4782 (defconst org-heading-keyword-regexp-format
4783 "^\\(\\*+\\)\\(?: +%s\\)\\(?: +\\(.*?\\)\\)?[ \t]*$"
4784 "Printf format for a regexp matching a headline with some keyword.
4785 This regexp will match the headline of any node which has the
4786 exact keyword that is put into the format. The keyword isn't in
4787 any group by default, but the stars and the body are.")
4788 (defconst org-heading-keyword-maybe-regexp-format
4789 "^\\(\\*+\\)\\(?: +%s\\)?\\(?: +\\(.*?\\)\\)?[ \t]*$"
4790 "Printf format for a regexp matching a headline, possibly with some keyword.
4791 This regexp can match any headline with the specified keyword, or
4792 without a keyword. The keyword isn't in any group by default,
4793 but the stars and the body are.")
4795 (defcustom org-group-tags t
4796 "When non-nil (the default), use group tags.
4797 This can be turned on/off through `org-toggle-tags-groups'."
4798 :group 'org-tags
4799 :group 'org-startup
4800 :type 'boolean)
4802 (defvar org-inhibit-startup nil) ; Dynamically-scoped param.
4804 (defun org-toggle-tags-groups ()
4805 "Toggle support for group tags.
4806 Support for group tags is controlled by the option
4807 `org-group-tags', which is non-nil by default."
4808 (interactive)
4809 (setq org-group-tags (not org-group-tags))
4810 (cond ((and (derived-mode-p 'org-agenda-mode)
4811 org-group-tags)
4812 (org-agenda-redo))
4813 ((derived-mode-p 'org-mode)
4814 (let ((org-inhibit-startup t)) (org-mode))))
4815 (message "Groups tags support has been turned %s"
4816 (if org-group-tags "on" "off")))
4818 (defun org-set-regexps-and-options-for-tags ()
4819 "Precompute variables used for tags."
4820 (when (derived-mode-p 'org-mode)
4821 (org-set-local 'org-file-tags nil)
4822 (let ((re (org-make-options-regexp '("FILETAGS" "TAGS")))
4823 (splitre "[ \t]+")
4824 (start 0)
4825 tags ftags key value)
4826 (save-excursion
4827 (save-restriction
4828 (widen)
4829 (goto-char (point-min))
4830 (while (re-search-forward re nil t)
4831 (setq key (upcase (org-match-string-no-properties 1))
4832 value (org-match-string-no-properties 2))
4833 (if (stringp value) (setq value (org-trim value)))
4834 (cond
4835 ((equal key "TAGS")
4836 (setq tags (append tags (if tags '("\\n") nil)
4837 (org-split-string value splitre))))
4838 ((equal key "FILETAGS")
4839 (when (string-match "\\S-" value)
4840 (setq ftags
4841 (append
4842 ftags
4843 (apply 'append
4844 (mapcar (lambda (x) (org-split-string x ":"))
4845 (org-split-string value)))))))))))
4846 ;; Process the file tags.
4847 (and ftags (org-set-local 'org-file-tags
4848 (mapcar 'org-add-prop-inherited ftags)))
4849 (org-set-local 'org-tag-groups-alist nil)
4850 ;; Process the tags.
4851 (when (and (not tags) org-tag-alist)
4852 (setq tags
4853 (mapcar
4854 (lambda (tg) (cond ((eq (car tg) :startgroup) "{")
4855 ((eq (car tg) :endgroup) "}")
4856 ((eq (car tg) :grouptags) ":")
4857 ((eq (car tg) :newline) "\n")
4858 (t (concat (car tg)
4859 (if (characterp (cdr tg))
4860 (format "(%s)" (char-to-string (cdr tg))) "")))))
4861 org-tag-alist)))
4862 (let (e tgs g)
4863 (while (setq e (pop tags))
4864 (cond
4865 ((equal e "{")
4866 (progn (push '(:startgroup) tgs)
4867 (when (equal (nth 1 tags) ":")
4868 (push (list (replace-regexp-in-string
4869 "(.+)$" "" (nth 0 tags)))
4870 org-tag-groups-alist)
4871 (setq g 0))))
4872 ((equal e ":") (push '(:grouptags) tgs))
4873 ((equal e "}") (push '(:endgroup) tgs) (if g (setq g nil)))
4874 ((equal e "\\n") (push '(:newline) tgs))
4875 ((string-match (org-re "^\\([[:alnum:]_@#%]+\\)(\\(.\\))$") e)
4876 (push (cons (match-string 1 e)
4877 (string-to-char (match-string 2 e))) tgs)
4878 (if (and g (> g 0))
4879 (setcar org-tag-groups-alist
4880 (append (car org-tag-groups-alist)
4881 (list (match-string 1 e)))))
4882 (if g (setq g (1+ g))))
4883 (t (push (list e) tgs)
4884 (if (and g (> g 0))
4885 (setcar org-tag-groups-alist
4886 (append (car org-tag-groups-alist) (list e))))
4887 (if g (setq g (1+ g))))))
4888 (org-set-local 'org-tag-alist nil)
4889 (while (setq e (pop tgs))
4890 (or (and (stringp (car e))
4891 (assoc (car e) org-tag-alist))
4892 (push e org-tag-alist)))
4893 ;; Return a list with tag variables
4894 (list org-file-tags org-tag-alist org-tag-groups-alist)))))
4896 (defvar org-ota nil)
4897 (defun org-set-regexps-and-options ()
4898 "Precompute regular expressions used in the current buffer."
4899 (when (derived-mode-p 'org-mode)
4900 (org-set-local 'org-todo-kwd-alist nil)
4901 (org-set-local 'org-todo-key-alist nil)
4902 (org-set-local 'org-todo-key-trigger nil)
4903 (org-set-local 'org-todo-keywords-1 nil)
4904 (org-set-local 'org-done-keywords nil)
4905 (org-set-local 'org-todo-heads nil)
4906 (org-set-local 'org-todo-sets nil)
4907 (org-set-local 'org-todo-log-states nil)
4908 (org-set-local 'org-file-properties nil)
4909 (let ((re (org-make-options-regexp
4910 '("CATEGORY" "TODO" "COLUMNS" "STARTUP" "ARCHIVE"
4911 "LINK" "PRIORITIES" "CONSTANTS" "PROPERTY" "DRAWERS"
4912 "SETUPFILE" "OPTIONS")
4913 "\\(?:[a-zA-Z][0-9a-zA-Z_]*_TODO\\)"))
4914 (splitre "[ \t]+")
4915 (scripts org-use-sub-superscripts)
4916 kwds kws0 kwsa key log value cat arch const links hw dws
4917 tail sep kws1 prio props drawers ext-setup-or-nil setup-contents
4918 (start 0))
4919 (save-excursion
4920 (save-restriction
4921 (widen)
4922 (goto-char (point-min))
4923 (while
4924 (or (and
4925 ext-setup-or-nil
4926 (not org-ota)
4927 (let (ret)
4928 (with-temp-buffer
4929 (insert ext-setup-or-nil)
4930 (let ((major-mode 'org-mode) org-ota)
4931 (setq ret (save-match-data
4932 (org-set-regexps-and-options-for-tags)))))
4933 ;; Append setupfile tags to existing tags
4934 (setq org-ota t)
4935 (setq org-file-tags
4936 (delq nil (append org-file-tags (nth 0 ret)))
4937 org-tag-alist
4938 (delq nil (append org-tag-alist (nth 1 ret)))
4939 org-tag-groups-alist
4940 (delq nil (append org-tag-groups-alist (nth 2 ret))))))
4941 (and ext-setup-or-nil
4942 (string-match re ext-setup-or-nil start)
4943 (setq start (match-end 0)))
4944 (and (setq ext-setup-or-nil nil start 0)
4945 (re-search-forward re nil t)))
4946 (setq key (upcase (match-string 1 ext-setup-or-nil))
4947 value (org-match-string-no-properties 2 ext-setup-or-nil))
4948 (if (stringp value) (setq value (org-trim value)))
4949 (cond
4950 ((equal key "CATEGORY")
4951 (setq cat value))
4952 ((member key '("SEQ_TODO" "TODO"))
4953 (push (cons 'sequence (org-split-string value splitre)) kwds))
4954 ((equal key "TYP_TODO")
4955 (push (cons 'type (org-split-string value splitre)) kwds))
4956 ((string-match "\\`\\([a-zA-Z][0-9a-zA-Z_]*\\)_TODO\\'" key)
4957 ;; general TODO-like setup
4958 (push (cons (intern (downcase (match-string 1 key)))
4959 (org-split-string value splitre)) kwds))
4960 ((equal key "COLUMNS")
4961 (org-set-local 'org-columns-default-format value))
4962 ((equal key "LINK")
4963 (when (string-match "^\\(\\S-+\\)[ \t]+\\(.+\\)" value)
4964 (push (cons (match-string 1 value)
4965 (org-trim (match-string 2 value)))
4966 links)))
4967 ((equal key "PRIORITIES")
4968 (setq prio (org-split-string value " +")))
4969 ((equal key "PROPERTY")
4970 (when (string-match "\\(\\S-+\\)\\s-+\\(.*\\)" value)
4971 (setq props (org-update-property-plist (match-string 1 value)
4972 (match-string 2 value)
4973 props))))
4974 ((equal key "DRAWERS")
4975 (setq drawers (delete-dups (append org-drawers (org-split-string value splitre)))))
4976 ((equal key "CONSTANTS")
4977 (org-table-set-constants))
4978 ((equal key "STARTUP")
4979 (let ((opts (org-split-string value splitre))
4980 l var val)
4981 (while (setq l (pop opts))
4982 (when (setq l (assoc l org-startup-options))
4983 (setq var (nth 1 l) val (nth 2 l))
4984 (if (not (nth 3 l))
4985 (set (make-local-variable var) val)
4986 (if (not (listp (symbol-value var)))
4987 (set (make-local-variable var) nil))
4988 (set (make-local-variable var) (symbol-value var))
4989 (add-to-list var val))))))
4990 ((equal key "ARCHIVE")
4991 (setq arch value)
4992 (remove-text-properties 0 (length arch)
4993 '(face t fontified t) arch))
4994 ((equal key "OPTIONS")
4995 (if (string-match "\\([ \t]\\|\\`\\)\\^:\\(t\\|nil\\|{}\\)" value)
4996 (setq scripts (read (match-string 2 value)))))
4997 ((and (equal key "SETUPFILE")
4998 ;; Prevent checking in Gnus messages
4999 (not buffer-read-only))
5000 (setq setup-contents (org-file-contents
5001 (expand-file-name
5002 (org-remove-double-quotes value))
5003 'noerror))
5004 (if (not ext-setup-or-nil)
5005 (setq ext-setup-or-nil setup-contents start 0)
5006 (setq ext-setup-or-nil
5007 (concat (substring ext-setup-or-nil 0 start)
5008 "\n" setup-contents "\n"
5009 (substring ext-setup-or-nil start)))))))
5010 ;; search for property blocks
5011 (goto-char (point-min))
5012 (while (re-search-forward org-block-regexp nil t)
5013 (when (equal "PROPERTY" (upcase (match-string 1)))
5014 (setq value (replace-regexp-in-string
5015 "[\n\r]" " " (match-string 4)))
5016 (when (string-match "\\(\\S-+\\)\\s-+\\(.*\\)" value)
5017 (setq props (org-update-property-plist (match-string 1 value)
5018 (match-string 2 value)
5019 props)))))))
5020 (org-set-local 'org-use-sub-superscripts scripts)
5021 (when cat
5022 (org-set-local 'org-category (intern cat))
5023 (push (cons "CATEGORY" cat) props))
5024 (when prio
5025 (if (< (length prio) 3) (setq prio '("A" "C" "B")))
5026 (setq prio (mapcar 'string-to-char prio))
5027 (org-set-local 'org-highest-priority (nth 0 prio))
5028 (org-set-local 'org-lowest-priority (nth 1 prio))
5029 (org-set-local 'org-default-priority (nth 2 prio)))
5030 (and props (org-set-local 'org-file-properties (nreverse props)))
5031 (and drawers (org-set-local 'org-drawers drawers))
5032 (and arch (org-set-local 'org-archive-location arch))
5033 (and links (setq org-link-abbrev-alist-local (nreverse links)))
5034 ;; Process the TODO keywords
5035 (unless kwds
5036 ;; Use the global values as if they had been given locally.
5037 (setq kwds (default-value 'org-todo-keywords))
5038 (if (stringp (car kwds))
5039 (setq kwds (list (cons org-todo-interpretation
5040 (default-value 'org-todo-keywords)))))
5041 (setq kwds (reverse kwds)))
5042 (setq kwds (nreverse kwds))
5043 (let (inter kws kw)
5044 (while (setq kws (pop kwds))
5045 (let ((kws (or
5046 (run-hook-with-args-until-success
5047 'org-todo-setup-filter-hook kws)
5048 kws)))
5049 (setq inter (pop kws) sep (member "|" kws)
5050 kws0 (delete "|" (copy-sequence kws))
5051 kwsa nil
5052 kws1 (mapcar
5053 (lambda (x)
5054 ;; 1 2
5055 (if (string-match "^\\(.*?\\)\\(?:(\\([^!@/]\\)?.*?)\\)?$" x)
5056 (progn
5057 (setq kw (match-string 1 x)
5058 key (and (match-end 2) (match-string 2 x))
5059 log (org-extract-log-state-settings x))
5060 (push (cons kw (and key (string-to-char key))) kwsa)
5061 (and log (push log org-todo-log-states))
5063 (error "Invalid TODO keyword %s" x)))
5064 kws0)
5065 kwsa (if kwsa (append '((:startgroup))
5066 (nreverse kwsa)
5067 '((:endgroup))))
5068 hw (car kws1)
5069 dws (if sep (org-remove-keyword-keys (cdr sep)) (last kws1))
5070 tail (list inter hw (car dws) (org-last dws))))
5071 (add-to-list 'org-todo-heads hw 'append)
5072 (push kws1 org-todo-sets)
5073 (setq org-done-keywords (append org-done-keywords dws nil))
5074 (setq org-todo-key-alist (append org-todo-key-alist kwsa))
5075 (mapc (lambda (x) (push (cons x tail) org-todo-kwd-alist)) kws1)
5076 (setq org-todo-keywords-1 (append org-todo-keywords-1 kws1 nil)))
5077 (setq org-todo-sets (nreverse org-todo-sets)
5078 org-todo-kwd-alist (nreverse org-todo-kwd-alist)
5079 org-todo-key-trigger (delq nil (mapcar 'cdr org-todo-key-alist))
5080 org-todo-key-alist (org-assign-fast-keys org-todo-key-alist)))
5081 ;; Compute the regular expressions and other local variables.
5082 ;; Using `org-outline-regexp-bol' would complicate them much,
5083 ;; because of the fixed white space at the end of that string.
5084 (if (not org-done-keywords)
5085 (setq org-done-keywords (and org-todo-keywords-1
5086 (list (org-last org-todo-keywords-1)))))
5087 (setq org-ds-keyword-length (+ 2 (max (length org-deadline-string)
5088 (length org-scheduled-string)
5089 (length org-clock-string)
5090 (length org-closed-string)))
5091 org-drawer-regexp
5092 (concat "^[ \t]*:\\("
5093 (mapconcat 'regexp-quote org-drawers "\\|")
5094 "\\):[ \t]*$")
5095 org-not-done-keywords
5096 (org-delete-all org-done-keywords (copy-sequence org-todo-keywords-1))
5097 org-todo-regexp
5098 (concat "\\("
5099 (mapconcat 'regexp-quote org-todo-keywords-1 "\\|")
5100 "\\)")
5101 org-not-done-regexp
5102 (concat "\\("
5103 (mapconcat 'regexp-quote org-not-done-keywords "\\|")
5104 "\\)")
5105 org-not-done-heading-regexp
5106 (format org-heading-keyword-regexp-format org-not-done-regexp)
5107 org-todo-line-regexp
5108 (format org-heading-keyword-maybe-regexp-format org-todo-regexp)
5109 org-complex-heading-regexp
5110 (concat "^\\(\\*+\\)"
5111 "\\(?: +" org-todo-regexp "\\)?"
5112 "\\(?: +\\(\\[#.\\]\\)\\)?"
5113 "\\(?: +\\(.*?\\)\\)??"
5114 (org-re "\\(?:[ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)?")
5115 "[ \t]*$")
5116 org-complex-heading-regexp-format
5117 (concat "^\\(\\*+\\)"
5118 "\\(?: +" org-todo-regexp "\\)?"
5119 "\\(?: +\\(\\[#.\\]\\)\\)?"
5120 "\\(?: +"
5121 ;; Stats cookies can be stuck to body.
5122 "\\(?:\\[[0-9%%/]+\\] *\\)*"
5123 "\\(%s\\)"
5124 "\\(?: *\\[[0-9%%/]+\\]\\)*"
5125 "\\)"
5126 (org-re "\\(?:[ \t]+\\(:[[:alnum:]_@#%%:]+:\\)\\)?")
5127 "[ \t]*$")
5128 org-todo-line-tags-regexp
5129 (concat "^\\(\\*+\\)"
5130 "\\(?: +" org-todo-regexp "\\)?"
5131 "\\(?: +\\(.*?\\)\\)??"
5132 (org-re "\\(?:[ \t]+\\(:[[:alnum:]:_@#%]+:\\)\\)?")
5133 "[ \t]*$")
5134 org-deadline-regexp (concat "\\<" org-deadline-string)
5135 org-deadline-time-regexp
5136 (concat "\\<" org-deadline-string " *<\\([^>]+\\)>")
5137 org-deadline-time-hour-regexp
5138 (concat "\\<" org-deadline-string
5139 " *<\\([^>]+[0-9]\\{1,2\\}:[0-9]\\{2\\}[0-9-+:hdwmy \t.]*\\)>")
5140 org-deadline-line-regexp
5141 (concat "\\<\\(" org-deadline-string "\\).*")
5142 org-scheduled-regexp
5143 (concat "\\<" org-scheduled-string)
5144 org-scheduled-time-regexp
5145 (concat "\\<" org-scheduled-string " *<\\([^>]+\\)>")
5146 org-scheduled-time-hour-regexp
5147 (concat "\\<" org-scheduled-string
5148 " *<\\([^>]+[0-9]\\{1,2\\}:[0-9]\\{2\\}[0-9-+:hdwmy \t.]*\\)>")
5149 org-closed-time-regexp
5150 (concat "\\<" org-closed-string " *\\[\\([^]]+\\)\\]")
5151 org-keyword-time-regexp
5152 (concat "\\<\\(" org-scheduled-string
5153 "\\|" org-deadline-string
5154 "\\|" org-closed-string
5155 "\\|" org-clock-string "\\)"
5156 " *[[<]\\([^]>]+\\)[]>]")
5157 org-keyword-time-not-clock-regexp
5158 (concat "\\<\\(" org-scheduled-string
5159 "\\|" org-deadline-string
5160 "\\|" org-closed-string
5161 "\\)"
5162 " *[[<]\\([^]>]+\\)[]>]")
5163 org-maybe-keyword-time-regexp
5164 (concat "\\(\\<\\(" org-scheduled-string
5165 "\\|" org-deadline-string
5166 "\\|" org-closed-string
5167 "\\|" org-clock-string "\\)\\)?"
5168 " *\\([[<][0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^]\r\n>]*?[]>]\\|<%%([^\r\n>]*>\\)")
5169 org-all-time-keywords
5170 (mapcar (lambda (w) (substring w 0 -1))
5171 (list org-scheduled-string org-deadline-string
5172 org-clock-string org-closed-string)))
5173 (setq org-ota nil)
5174 (org-compute-latex-and-related-regexp))))
5176 (defun org-file-contents (file &optional noerror)
5177 "Return the contents of FILE, as a string."
5178 (if (or (not file) (not (file-readable-p file)))
5179 (if (not noerror)
5180 (error "Cannot read file \"%s\"" file)
5181 (message "Cannot read file \"%s\"" file)
5183 (with-temp-buffer
5184 (insert-file-contents file)
5185 (buffer-string))))
5187 (defun org-extract-log-state-settings (x)
5188 "Extract the log state setting from a TODO keyword string.
5189 This will extract info from a string like \"WAIT(w@/!)\"."
5190 (let (kw key log1 log2)
5191 (when (string-match "^\\(.*?\\)\\(?:(\\([^!@/]\\)?\\([!@]\\)?\\(?:/\\([!@]\\)\\)?)\\)?$" x)
5192 (setq kw (match-string 1 x)
5193 key (and (match-end 2) (match-string 2 x))
5194 log1 (and (match-end 3) (match-string 3 x))
5195 log2 (and (match-end 4) (match-string 4 x)))
5196 (and (or log1 log2)
5197 (list kw
5198 (and log1 (if (equal log1 "!") 'time 'note))
5199 (and log2 (if (equal log2 "!") 'time 'note)))))))
5201 (defun org-remove-keyword-keys (list)
5202 "Remove a pair of parenthesis at the end of each string in LIST."
5203 (mapcar (lambda (x)
5204 (if (string-match "(.*)$" x)
5205 (substring x 0 (match-beginning 0))
5207 list))
5209 (defun org-assign-fast-keys (alist)
5210 "Assign fast keys to a keyword-key alist.
5211 Respect keys that are already there."
5212 (let (new e (alt ?0))
5213 (while (setq e (pop alist))
5214 (if (or (memq (car e) '(:newline :grouptags :endgroup :startgroup))
5215 (cdr e)) ;; Key already assigned.
5216 (push e new)
5217 (let ((clist (string-to-list (downcase (car e))))
5218 (used (append new alist)))
5219 (when (= (car clist) ?@)
5220 (pop clist))
5221 (while (and clist (rassoc (car clist) used))
5222 (pop clist))
5223 (unless clist
5224 (while (rassoc alt used)
5225 (incf alt)))
5226 (push (cons (car e) (or (car clist) alt)) new))))
5227 (nreverse new)))
5229 ;;; Some variables used in various places
5231 (defvar org-window-configuration nil
5232 "Used in various places to store a window configuration.")
5233 (defvar org-selected-window nil
5234 "Used in various places to store a window configuration.")
5235 (defvar org-finish-function nil
5236 "Function to be called when `C-c C-c' is used.
5237 This is for getting out of special buffers like capture.")
5240 ;; FIXME: Occasionally check by commenting these, to make sure
5241 ;; no other functions uses these, forgetting to let-bind them.
5242 (org-no-warnings (defvar entry)) ;; unprefixed, from calendar.el
5243 (defvar org-last-state)
5244 (org-no-warnings (defvar date)) ;; unprefixed, from calendar.el
5246 ;; Defined somewhere in this file, but used before definition.
5247 (defvar org-entities) ;; defined in org-entities.el
5248 (defvar org-struct-menu)
5249 (defvar org-org-menu)
5250 (defvar org-tbl-menu)
5252 ;;;; Define the Org-mode
5254 ;; We use a before-change function to check if a table might need
5255 ;; an update.
5256 (defvar org-table-may-need-update t
5257 "Indicates that a table might need an update.
5258 This variable is set by `org-before-change-function'.
5259 `org-table-align' sets it back to nil.")
5260 (defun org-before-change-function (beg end)
5261 "Every change indicates that a table might need an update."
5262 (setq org-table-may-need-update t))
5263 (defvar org-mode-map)
5264 (defvar org-inhibit-startup-visibility-stuff nil) ; Dynamically-scoped param.
5265 (defvar org-agenda-keep-modes nil) ; Dynamically-scoped param.
5266 (defvar org-inhibit-logging nil) ; Dynamically-scoped param.
5267 (defvar org-inhibit-blocking nil) ; Dynamically-scoped param.
5268 (defvar org-table-buffer-is-an nil)
5270 (defvar bidi-paragraph-direction)
5271 (defvar buffer-face-mode-face)
5273 (require 'outline)
5274 (if (and (not (keymapp outline-mode-map)) (featurep 'allout))
5275 (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"))
5276 (require 'noutline "noutline" 'noerror) ;; stock XEmacs does not have it
5278 ;; Other stuff we need.
5279 (require 'time-date)
5280 (unless (fboundp 'time-subtract) (defalias 'time-subtract 'subtract-time))
5281 (require 'easymenu)
5282 (require 'overlay)
5284 ;; (require 'org-macs) moved higher up in the file before it is first used
5285 (require 'org-entities)
5286 ;; (require 'org-compat) moved higher up in the file before it is first used
5287 (require 'org-faces)
5288 (require 'org-list)
5289 (require 'org-pcomplete)
5290 (require 'org-src)
5291 (require 'org-footnote)
5292 (require 'org-macro)
5294 ;; babel
5295 (require 'ob)
5297 ;;;###autoload
5298 (define-derived-mode org-mode outline-mode "Org"
5299 "Outline-based notes management and organizer, alias
5300 \"Carsten's outline-mode for keeping track of everything.\"
5302 Org-mode develops organizational tasks around a NOTES file which
5303 contains information about projects as plain text. Org-mode is
5304 implemented on top of outline-mode, which is ideal to keep the content
5305 of large files well structured. It supports ToDo items, deadlines and
5306 time stamps, which magically appear in the diary listing of the Emacs
5307 calendar. Tables are easily created with a built-in table editor.
5308 Plain text URL-like links connect to websites, emails (VM), Usenet
5309 messages (Gnus), BBDB entries, and any files related to the project.
5310 For printing and sharing of notes, an Org-mode file (or a part of it)
5311 can be exported as a structured ASCII or HTML file.
5313 The following commands are available:
5315 \\{org-mode-map}"
5317 ;; Get rid of Outline menus, they are not needed
5318 ;; Need to do this here because define-derived-mode sets up
5319 ;; the keymap so late. Still, it is a waste to call this each time
5320 ;; we switch another buffer into org-mode.
5321 (if (featurep 'xemacs)
5322 (when (boundp 'outline-mode-menu-heading)
5323 ;; Assume this is Greg's port, it uses easymenu
5324 (easy-menu-remove outline-mode-menu-heading)
5325 (easy-menu-remove outline-mode-menu-show)
5326 (easy-menu-remove outline-mode-menu-hide))
5327 (define-key org-mode-map [menu-bar headings] 'undefined)
5328 (define-key org-mode-map [menu-bar hide] 'undefined)
5329 (define-key org-mode-map [menu-bar show] 'undefined))
5331 (org-load-modules-maybe)
5332 (easy-menu-add org-org-menu)
5333 (easy-menu-add org-tbl-menu)
5334 (org-install-agenda-files-menu)
5335 (if org-descriptive-links (add-to-invisibility-spec '(org-link)))
5336 (add-to-invisibility-spec '(org-cwidth))
5337 (add-to-invisibility-spec '(org-hide-block . t))
5338 (when (featurep 'xemacs)
5339 (org-set-local 'line-move-ignore-invisible t))
5340 (org-set-local 'outline-regexp org-outline-regexp)
5341 (org-set-local 'outline-level 'org-outline-level)
5342 (setq bidi-paragraph-direction 'left-to-right)
5343 (when (and org-ellipsis
5344 (fboundp 'set-display-table-slot) (boundp 'buffer-display-table)
5345 (fboundp 'make-glyph-code))
5346 (unless org-display-table
5347 (setq org-display-table (make-display-table)))
5348 (set-display-table-slot
5349 org-display-table 4
5350 (vconcat (mapcar
5351 (lambda (c) (make-glyph-code c (and (not (stringp org-ellipsis))
5352 org-ellipsis)))
5353 (if (stringp org-ellipsis) org-ellipsis "..."))))
5354 (setq buffer-display-table org-display-table))
5355 (org-set-regexps-and-options-for-tags)
5356 (org-set-regexps-and-options)
5357 (org-set-font-lock-defaults)
5358 (when (and org-tag-faces (not org-tags-special-faces-re))
5359 ;; tag faces set outside customize.... force initialization.
5360 (org-set-tag-faces 'org-tag-faces org-tag-faces))
5361 ;; Calc embedded
5362 (org-set-local 'calc-embedded-open-mode "# ")
5363 ;; Modify a few syntax entries
5364 (modify-syntax-entry ?@ "w")
5365 (modify-syntax-entry ?\" "\"")
5366 (modify-syntax-entry ?\\ "_")
5367 (modify-syntax-entry ?~ "_")
5368 (if org-startup-truncated (setq truncate-lines t))
5369 (when org-startup-indented (require 'org-indent) (org-indent-mode 1))
5370 (org-set-local 'font-lock-unfontify-region-function
5371 'org-unfontify-region)
5372 ;; Activate before-change-function
5373 (org-set-local 'org-table-may-need-update t)
5374 (org-add-hook 'before-change-functions 'org-before-change-function nil
5375 'local)
5376 ;; Check for running clock before killing a buffer
5377 (org-add-hook 'kill-buffer-hook 'org-check-running-clock nil 'local)
5378 ;; Initialize macros templates.
5379 (org-macro-initialize-templates)
5380 ;; Initialize radio targets.
5381 (org-update-radio-target-regexp)
5382 ;; Indentation.
5383 (org-set-local 'indent-line-function 'org-indent-line)
5384 (org-set-local 'indent-region-function 'org-indent-region)
5385 ;; Filling and auto-filling.
5386 (org-setup-filling)
5387 ;; Comments.
5388 (org-setup-comments-handling)
5389 ;; Beginning/end of defun
5390 (org-set-local 'beginning-of-defun-function 'org-backward-element)
5391 (org-set-local 'end-of-defun-function
5392 (lambda ()
5393 (if (not (org-at-heading-p))
5394 (org-forward-element)
5395 (org-forward-element)
5396 (forward-char -1))))
5397 ;; Next error for sparse trees
5398 (org-set-local 'next-error-function 'org-occur-next-match)
5399 ;; Make sure dependence stuff works reliably, even for users who set it
5400 ;; too late :-(
5401 (if org-enforce-todo-dependencies
5402 (add-hook 'org-blocker-hook
5403 'org-block-todo-from-children-or-siblings-or-parent)
5404 (remove-hook 'org-blocker-hook
5405 'org-block-todo-from-children-or-siblings-or-parent))
5406 (if org-enforce-todo-checkbox-dependencies
5407 (add-hook 'org-blocker-hook
5408 'org-block-todo-from-checkboxes)
5409 (remove-hook 'org-blocker-hook
5410 'org-block-todo-from-checkboxes))
5412 ;; Align options lines
5413 (org-set-local
5414 'align-mode-rules-list
5415 '((org-in-buffer-settings
5416 (regexp . "^#\\+[A-Z_]+:\\(\\s-*\\)\\S-+")
5417 (modes . '(org-mode)))))
5419 ;; Imenu
5420 (org-set-local 'imenu-create-index-function
5421 'org-imenu-get-tree)
5423 ;; Make isearch reveal context
5424 (if (or (featurep 'xemacs)
5425 (not (boundp 'outline-isearch-open-invisible-function)))
5426 ;; Emacs 21 and XEmacs make use of the hook
5427 (org-add-hook 'isearch-mode-end-hook 'org-isearch-end 'append 'local)
5428 ;; Emacs 22 deals with this through a special variable
5429 (org-set-local 'outline-isearch-open-invisible-function
5430 (lambda (&rest ignore) (org-show-context 'isearch))))
5432 ;; Setup the pcomplete hooks
5433 (set (make-local-variable 'pcomplete-command-completion-function)
5434 'org-pcomplete-initial)
5435 (set (make-local-variable 'pcomplete-command-name-function)
5436 'org-command-at-point)
5437 (set (make-local-variable 'pcomplete-default-completion-function)
5438 'ignore)
5439 (set (make-local-variable 'pcomplete-parse-arguments-function)
5440 'org-parse-arguments)
5441 (set (make-local-variable 'pcomplete-termination-string) "")
5442 (when (>= emacs-major-version 23)
5443 (set (make-local-variable 'buffer-face-mode-face) 'org-default))
5445 ;; If empty file that did not turn on org-mode automatically, make it to.
5446 (if (and org-insert-mode-line-in-empty-file
5447 (org-called-interactively-p 'any)
5448 (= (point-min) (point-max)))
5449 (insert "# -*- mode: org -*-\n\n"))
5450 (unless org-inhibit-startup
5451 (org-unmodified
5452 (and org-startup-with-beamer-mode (org-beamer-mode))
5453 (when org-startup-align-all-tables
5454 (org-table-map-tables 'org-table-align 'quietly))
5455 (when org-startup-with-inline-images
5456 (org-display-inline-images))
5457 (when org-startup-with-latex-preview
5458 (org-preview-latex-fragment))
5459 (unless org-inhibit-startup-visibility-stuff
5460 (org-set-startup-visibility))))
5461 ;; Try to set org-hide correctly
5462 (let ((foreground (org-find-invisible-foreground)))
5463 (if foreground
5464 (set-face-foreground 'org-hide foreground))))
5466 ;; Update `customize-package-emacs-version-alist'
5467 (add-to-list 'customize-package-emacs-version-alist
5468 '(Org ("6.21b" . "23.1") ("6.33x" . "23.2")
5469 ("7.8.11" . "24.1") ("7.9.4" . "24.3")
5470 ("8.2.6" . "24.4")))
5472 (defvar org-mode-transpose-word-syntax-table
5473 (let ((st (make-syntax-table)))
5474 (mapc (lambda(c) (modify-syntax-entry
5475 (string-to-char (car c)) "w p" st))
5476 org-emphasis-alist)
5477 st))
5479 (when (fboundp 'abbrev-table-put)
5480 (abbrev-table-put org-mode-abbrev-table
5481 :parents (list text-mode-abbrev-table)))
5483 (put 'org-mode 'flyspell-mode-predicate 'org-mode-flyspell-verify)
5485 (defun org-find-invisible-foreground ()
5486 (let ((candidates (remove
5487 "unspecified-bg"
5488 (nconc
5489 (list (face-background 'default)
5490 (face-background 'org-default))
5491 (mapcar
5492 (lambda (alist)
5493 (when (boundp alist)
5494 (cdr (assoc 'background-color (symbol-value alist)))))
5495 '(default-frame-alist initial-frame-alist window-system-default-frame-alist))
5496 (list (face-foreground 'org-hide))))))
5497 (car (remove nil candidates))))
5499 (defun org-current-time (&optional rounding-minutes past)
5500 "Current time, possibly rounded to ROUNDING-MINUTES.
5501 When ROUNDING-MINUTES is not an integer, fall back on the car of
5502 `org-time-stamp-rounding-minutes'. When PAST is non-nil, ensure
5503 the rounding returns a past time."
5504 (let ((r (or (and (integerp rounding-minutes) rounding-minutes)
5505 (car org-time-stamp-rounding-minutes)))
5506 (time (decode-time)) res)
5507 (if (< r 1)
5508 (current-time)
5509 (setq res
5510 (apply 'encode-time
5511 (append (list 0 (* r (floor (+ .5 (/ (float (nth 1 time)) r)))))
5512 (nthcdr 2 time))))
5513 (if (and past (< (org-float-time (time-subtract (current-time) res)) 0))
5514 (seconds-to-time (- (org-float-time res) (* r 60)))
5515 res))))
5517 (defun org-today ()
5518 "Return today date, considering `org-extend-today-until'."
5519 (time-to-days
5520 (time-subtract (current-time)
5521 (list 0 (* 3600 org-extend-today-until) 0))))
5523 ;;;; Font-Lock stuff, including the activators
5525 (defvar org-mouse-map (make-sparse-keymap))
5526 (org-defkey org-mouse-map [mouse-2] 'org-open-at-mouse)
5527 (org-defkey org-mouse-map [mouse-3] 'org-find-file-at-mouse)
5528 (when org-mouse-1-follows-link
5529 (org-defkey org-mouse-map [follow-link] 'mouse-face))
5530 (when org-tab-follows-link
5531 (org-defkey org-mouse-map [(tab)] 'org-open-at-point)
5532 (org-defkey org-mouse-map "\C-i" 'org-open-at-point))
5534 (require 'font-lock)
5536 (defconst org-non-link-chars "]\t\n\r<>")
5537 (defvar org-link-types '("http" "https" "ftp" "mailto" "file" "news"
5538 "shell" "elisp" "doi" "message"))
5539 (defvar org-link-types-re nil
5540 "Matches a link that has a url-like prefix like \"http:\"")
5541 (defvar org-link-re-with-space nil
5542 "Matches a link with spaces, optional angular brackets around it.")
5543 (defvar org-link-re-with-space2 nil
5544 "Matches a link with spaces, optional angular brackets around it.")
5545 (defvar org-link-re-with-space3 nil
5546 "Matches a link with spaces, only for internal part in bracket links.")
5547 (defvar org-angle-link-re nil
5548 "Matches link with angular brackets, spaces are allowed.")
5549 (defvar org-plain-link-re nil
5550 "Matches plain link, without spaces.")
5551 (defvar org-bracket-link-regexp nil
5552 "Matches a link in double brackets.")
5553 (defvar org-bracket-link-analytic-regexp nil
5554 "Regular expression used to analyze links.
5555 Here is what the match groups contain after a match:
5556 1: http:
5557 2: http
5558 3: path
5559 4: [desc]
5560 5: desc")
5561 (defvar org-bracket-link-analytic-regexp++ nil
5562 "Like `org-bracket-link-analytic-regexp', but include coderef internal type.")
5563 (defvar org-any-link-re nil
5564 "Regular expression matching any link.")
5566 (defconst org-match-sexp-depth 3
5567 "Number of stacked braces for sub/superscript matching.")
5569 (defun org-create-multibrace-regexp (left right n)
5570 "Create a regular expression which will match a balanced sexp.
5571 Opening delimiter is LEFT, and closing delimiter is RIGHT, both given
5572 as single character strings.
5573 The regexp returned will match the entire expression including the
5574 delimiters. It will also define a single group which contains the
5575 match except for the outermost delimiters. The maximum depth of
5576 stacked delimiters is N. Escaping delimiters is not possible."
5577 (let* ((nothing (concat "[^" left right "]*?"))
5578 (or "\\|")
5579 (re nothing)
5580 (next (concat "\\(?:" nothing left nothing right "\\)+" nothing)))
5581 (while (> n 1)
5582 (setq n (1- n)
5583 re (concat re or next)
5584 next (concat "\\(?:" nothing left next right "\\)+" nothing)))
5585 (concat left "\\(" re "\\)" right)))
5587 (defvar org-match-substring-regexp
5588 (concat
5589 "\\(\\S-\\)\\([_^]\\)\\("
5590 "\\(" (org-create-multibrace-regexp "{" "}" org-match-sexp-depth) "\\)"
5591 "\\|"
5592 "\\(" (org-create-multibrace-regexp "(" ")" org-match-sexp-depth) "\\)"
5593 "\\|"
5594 "\\(\\(?:\\*\\|[-+]?[^-+*!@#$%^_ \t\r\n,:\"?<>~;./{}=()]+\\)\\)\\)")
5595 "The regular expression matching a sub- or superscript.")
5597 (defvar org-match-substring-with-braces-regexp
5598 (concat
5599 "\\(\\S-\\)\\([_^]\\)\\("
5600 "\\(" (org-create-multibrace-regexp "{" "}" org-match-sexp-depth) "\\)"
5601 "\\)")
5602 "The regular expression matching a sub- or superscript, forcing braces.")
5604 (defun org-make-link-regexps ()
5605 "Update the link regular expressions.
5606 This should be called after the variable `org-link-types' has changed."
5607 (let ((types-re (regexp-opt org-link-types t)))
5608 (setq org-link-types-re
5609 (concat "\\`" types-re ":")
5610 org-link-re-with-space
5611 (concat "<?" types-re ":"
5612 "\\([^" org-non-link-chars " ]"
5613 "[^" org-non-link-chars "]*"
5614 "[^" org-non-link-chars " ]\\)>?")
5615 org-link-re-with-space2
5616 (concat "<?" types-re ":"
5617 "\\([^" org-non-link-chars " ]"
5618 "[^\t\n\r]*"
5619 "[^" org-non-link-chars " ]\\)>?")
5620 org-link-re-with-space3
5621 (concat "<?" types-re ":"
5622 "\\([^" org-non-link-chars " ]"
5623 "[^\t\n\r]*\\)")
5624 org-angle-link-re
5625 (concat "<" types-re ":"
5626 "\\([^" org-non-link-chars " ]"
5627 "[^" org-non-link-chars "]*"
5628 "\\)>")
5629 org-plain-link-re
5630 (concat
5631 "\\<" types-re ":"
5632 (org-re "\\([^ \t\n()<>]+\\(?:([[:word:]0-9_]+)\\|\\([^[:punct:] \t\n]\\|/\\)\\)\\)"))
5633 ;; "\\([^]\t\n\r<>() ]+[^]\t\n\r<>,.;() ]\\)")
5634 org-bracket-link-regexp
5635 "\\[\\[\\([^][]+\\)\\]\\(\\[\\([^][]+\\)\\]\\)?\\]"
5636 org-bracket-link-analytic-regexp
5637 (concat
5638 "\\[\\["
5639 "\\(" types-re ":\\)?"
5640 "\\([^]]+\\)"
5641 "\\]"
5642 "\\(\\[" "\\([^]]+\\)" "\\]\\)?"
5643 "\\]")
5644 org-bracket-link-analytic-regexp++
5645 (concat
5646 "\\[\\["
5647 "\\(" (regexp-opt (cons "coderef" org-link-types) t) ":\\)?"
5648 "\\([^]]+\\)"
5649 "\\]"
5650 "\\(\\[" "\\([^]]+\\)" "\\]\\)?"
5651 "\\]")
5652 org-any-link-re
5653 (concat "\\(" org-bracket-link-regexp "\\)\\|\\("
5654 org-angle-link-re "\\)\\|\\("
5655 org-plain-link-re "\\)"))))
5657 (org-make-link-regexps)
5659 (defconst org-ts-regexp "<\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^\r\n>]*?\\)>"
5660 "Regular expression for fast time stamp matching.")
5661 (defconst org-ts-regexp-both "[[<]\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^]\r\n>]*?\\)[]>]"
5662 "Regular expression for fast time stamp matching.")
5663 (defconst org-ts-regexp0
5664 "\\(\\([0-9]\\{4\\}\\)-\\([0-9]\\{2\\}\\)-\\([0-9]\\{2\\}\\)\\( +[^]+0-9>\r\n -]+\\)?\\( +\\([0-9]\\{1,2\\}\\):\\([0-9]\\{2\\}\\)\\)?\\)"
5665 "Regular expression matching time strings for analysis.
5666 This one does not require the space after the date, so it can be used
5667 on a string that terminates immediately after the date.")
5668 (defconst org-ts-regexp1 "\\(\\([0-9]\\{4\\}\\)-\\([0-9]\\{2\\}\\)-\\([0-9]\\{2\\}\\) *\\([^]+0-9>\r\n -]*\\)\\( \\([0-9]\\{1,2\\}\\):\\([0-9]\\{2\\}\\)\\)?\\)"
5669 "Regular expression matching time strings for analysis.")
5670 (defconst org-ts-regexp2 (concat "<" org-ts-regexp1 "[^>\n]\\{0,16\\}>")
5671 "Regular expression matching time stamps, with groups.")
5672 (defconst org-ts-regexp3 (concat "[[<]" org-ts-regexp1 "[^]>\n]\\{0,16\\}[]>]")
5673 "Regular expression matching time stamps (also [..]), with groups.")
5674 (defconst org-tr-regexp (concat org-ts-regexp "--?-?" org-ts-regexp)
5675 "Regular expression matching a time stamp range.")
5676 (defconst org-tr-regexp-both
5677 (concat org-ts-regexp-both "--?-?" org-ts-regexp-both)
5678 "Regular expression matching a time stamp range.")
5679 (defconst org-tsr-regexp (concat org-ts-regexp "\\(--?-?"
5680 org-ts-regexp "\\)?")
5681 "Regular expression matching a time stamp or time stamp range.")
5682 (defconst org-tsr-regexp-both
5683 (concat org-ts-regexp-both "\\(--?-?"
5684 org-ts-regexp-both "\\)?")
5685 "Regular expression matching a time stamp or time stamp range.
5686 The time stamps may be either active or inactive.")
5688 (defvar org-emph-face nil)
5690 (defun org-do-emphasis-faces (limit)
5691 "Run through the buffer and add overlays to emphasized strings."
5692 (let (rtn a)
5693 (while (and (not rtn) (re-search-forward org-emph-re limit t))
5694 (let* ((border (char-after (match-beginning 3)))
5695 (bre (regexp-quote (char-to-string border))))
5696 (if (and (not (= border (char-after (match-beginning 4))))
5697 (not (save-match-data
5698 (string-match (concat bre ".*" bre)
5699 (replace-regexp-in-string
5700 "\n" " "
5701 (substring (match-string 2) 1 -1))))))
5702 (progn
5703 (setq rtn t)
5704 (setq a (assoc (match-string 3) org-emphasis-alist))
5705 (font-lock-prepend-text-property (match-beginning 2) (match-end 2)
5706 'face
5707 (nth 1 a))
5708 (and (nth 2 a)
5709 (org-remove-flyspell-overlays-in
5710 (match-beginning 0) (match-end 0)))
5711 (add-text-properties (match-beginning 2) (match-end 2)
5712 '(font-lock-multiline t org-emphasis t))
5713 (when org-hide-emphasis-markers
5714 (add-text-properties (match-end 4) (match-beginning 5)
5715 '(invisible org-link))
5716 (add-text-properties (match-beginning 3) (match-end 3)
5717 '(invisible org-link))))))
5718 (goto-char (1+ (match-beginning 0))))
5719 rtn))
5721 (defun org-emphasize (&optional char)
5722 "Insert or change an emphasis, i.e. a font like bold or italic.
5723 If there is an active region, change that region to a new emphasis.
5724 If there is no region, just insert the marker characters and position
5725 the cursor between them.
5726 CHAR should be the marker character. If it is a space, it means to
5727 remove the emphasis of the selected region.
5728 If CHAR is not given (for example in an interactive call) it will be
5729 prompted for."
5730 (interactive)
5731 (let ((erc org-emphasis-regexp-components)
5732 (prompt "")
5733 (string "") beg end move c s)
5734 (if (org-region-active-p)
5735 (setq beg (region-beginning) end (region-end)
5736 string (buffer-substring beg end))
5737 (setq move t))
5739 (unless char
5740 (message "Emphasis marker or tag: [%s]"
5741 (mapconcat (lambda(e) (car e)) org-emphasis-alist ""))
5742 (setq char (read-char-exclusive)))
5743 (if (equal char ?\ )
5744 (setq s "" move nil)
5745 (unless (assoc (char-to-string char) org-emphasis-alist)
5746 (user-error "No such emphasis marker: \"%c\"" char))
5747 (setq s (char-to-string char)))
5748 (while (and (> (length string) 1)
5749 (equal (substring string 0 1) (substring string -1))
5750 (assoc (substring string 0 1) org-emphasis-alist))
5751 (setq string (substring string 1 -1)))
5752 (setq string (concat s string s))
5753 (if beg (delete-region beg end))
5754 (unless (or (bolp)
5755 (string-match (concat "[" (nth 0 erc) "\n]")
5756 (char-to-string (char-before (point)))))
5757 (insert " "))
5758 (unless (or (eobp)
5759 (string-match (concat "[" (nth 1 erc) "\n]")
5760 (char-to-string (char-after (point)))))
5761 (insert " ") (backward-char 1))
5762 (insert string)
5763 (and move (backward-char 1))))
5765 (defconst org-nonsticky-props
5766 '(mouse-face highlight keymap invisible intangible help-echo org-linked-text htmlize-link))
5768 (defsubst org-rear-nonsticky-at (pos)
5769 (add-text-properties (1- pos) pos (list 'rear-nonsticky org-nonsticky-props)))
5771 (defun org-activate-plain-links (limit)
5772 "Run through the buffer and add overlays to links."
5773 (let (f hl)
5774 (when (and (re-search-forward (concat org-plain-link-re) limit t)
5775 (not (org-in-src-block-p)))
5776 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5777 (setq f (get-text-property (match-beginning 0) 'face))
5778 (setq hl (org-match-string-no-properties 0))
5779 (if (or (eq f 'org-tag)
5780 (and (listp f) (memq 'org-tag f)))
5782 (add-text-properties (match-beginning 0) (match-end 0)
5783 (list 'mouse-face 'highlight
5784 'face 'org-link
5785 'htmlize-link `(:uri ,hl)
5786 'keymap org-mouse-map))
5787 (org-rear-nonsticky-at (match-end 0)))
5788 t)))
5790 (defun org-activate-code (limit)
5791 (if (re-search-forward "^[ \t]*\\(:\\(?: .*\\|$\\)\n?\\)" limit t)
5792 (progn
5793 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5794 (remove-text-properties (match-beginning 0) (match-end 0)
5795 '(display t invisible t intangible t))
5796 t)))
5798 (defcustom org-src-fontify-natively nil
5799 "When non-nil, fontify code in code blocks."
5800 :type 'boolean
5801 :version "24.1"
5802 :group 'org-appearance
5803 :group 'org-babel)
5805 (defcustom org-allow-promoting-top-level-subtree nil
5806 "When non-nil, allow promoting a top level subtree.
5807 The leading star of the top level headline will be replaced
5808 by a #."
5809 :type 'boolean
5810 :version "24.1"
5811 :group 'org-appearance)
5813 (defun org-fontify-meta-lines-and-blocks (limit)
5814 (condition-case nil
5815 (org-fontify-meta-lines-and-blocks-1 limit)
5816 (error (message "org-mode fontification error"))))
5818 (defun org-fontify-meta-lines-and-blocks-1 (limit)
5819 "Fontify #+ lines and blocks."
5820 (let ((case-fold-search t))
5821 (if (re-search-forward
5822 "^\\([ \t]*#\\(\\(\\+[a-zA-Z]+:?\\| \\|$\\)\\(_\\([a-zA-Z]+\\)\\)?\\)[ \t]*\\(\\([^ \t\n]*\\)[ \t]*\\(.*\\)\\)\\)"
5823 limit t)
5824 (let ((beg (match-beginning 0))
5825 (block-start (match-end 0))
5826 (block-end nil)
5827 (lang (match-string 7))
5828 (beg1 (line-beginning-position 2))
5829 (dc1 (downcase (match-string 2)))
5830 (dc3 (downcase (match-string 3)))
5831 end end1 quoting block-type ovl)
5832 (cond
5833 ((member dc1 '("+html:" "+ascii:" "+latex:"))
5834 ;; a single line of backend-specific content
5835 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5836 (remove-text-properties (match-beginning 0) (match-end 0)
5837 '(display t invisible t intangible t))
5838 (add-text-properties (match-beginning 1) (match-end 3)
5839 '(font-lock-fontified t face org-meta-line))
5840 (add-text-properties (match-beginning 6) (+ (match-end 6) 1)
5841 '(font-lock-fontified t face org-block))
5842 ; for backend-specific code
5844 ((and (match-end 4) (equal dc3 "+begin"))
5845 ;; Truly a block
5846 (setq block-type (downcase (match-string 5))
5847 quoting (member block-type org-protecting-blocks))
5848 (when (re-search-forward
5849 (concat "^[ \t]*#\\+end" (match-string 4) "\\>.*")
5850 nil t) ;; on purpose, we look further than LIMIT
5851 (setq end (min (point-max) (match-end 0))
5852 end1 (min (point-max) (1- (match-beginning 0))))
5853 (setq block-end (match-beginning 0))
5854 (when quoting
5855 (remove-text-properties beg end
5856 '(display t invisible t intangible t)))
5857 (add-text-properties
5858 beg end
5859 '(font-lock-fontified t font-lock-multiline t))
5860 (add-text-properties beg beg1 '(face org-meta-line))
5861 (add-text-properties end1 (min (point-max) (1+ end))
5862 '(face org-meta-line)) ; for end_src
5863 (cond
5864 ((and lang (not (string= lang "")) org-src-fontify-natively)
5865 (org-src-font-lock-fontify-block lang block-start block-end)
5866 ;; remove old background overlays
5867 (mapc (lambda (ov)
5868 (if (eq (overlay-get ov 'face) 'org-block-background)
5869 (delete-overlay ov)))
5870 (overlays-at (/ (+ beg1 block-end) 2)))
5871 ;; add a background overlay
5872 (setq ovl (make-overlay beg1 block-end))
5873 (overlay-put ovl 'face 'org-block-background)
5874 (overlay-put ovl 'evaporate t)) ;; make it go away when empty
5875 (quoting
5876 (add-text-properties beg1 (min (point-max) (1+ end1))
5877 '(face org-block))) ; end of source block
5878 ((not org-fontify-quote-and-verse-blocks))
5879 ((string= block-type "quote")
5880 (add-text-properties beg1 (min (point-max) (1+ end1)) '(face org-quote)))
5881 ((string= block-type "verse")
5882 (add-text-properties beg1 (min (point-max) (1+ end1)) '(face org-verse))))
5883 (add-text-properties beg beg1 '(face org-block-begin-line))
5884 (add-text-properties (min (point-max) (1+ end)) (min (point-max) (1+ end1))
5885 '(face org-block-end-line))
5887 ((member dc1 '("+title:" "+author:" "+email:" "+date:"))
5888 (add-text-properties
5889 beg (match-end 3)
5890 (if (member (intern (substring dc1 1 -1)) org-hidden-keywords)
5891 '(font-lock-fontified t invisible t)
5892 '(font-lock-fontified t face org-document-info-keyword)))
5893 (add-text-properties
5894 (match-beginning 6) (min (point-max) (1+ (match-end 6)))
5895 (if (string-equal dc1 "+title:")
5896 '(font-lock-fontified t face org-document-title)
5897 '(font-lock-fontified t face org-document-info))))
5898 ((or (equal dc1 "+results")
5899 (member dc1 '("+begin:" "+end:" "+caption:" "+label:"
5900 "+orgtbl:" "+tblfm:" "+tblname:" "+results:"
5901 "+call:" "+header:" "+headers:" "+name:"))
5902 (and (match-end 4) (equal dc3 "+attr")))
5903 (add-text-properties
5904 beg (match-end 0)
5905 '(font-lock-fontified t face org-meta-line))
5907 ((member dc3 '(" " ""))
5908 (add-text-properties
5909 beg (match-end 0)
5910 '(font-lock-fontified t face font-lock-comment-face)))
5911 ((not (member (char-after beg) '(?\ ?\t)))
5912 ;; just any other in-buffer setting, but not indented
5913 (add-text-properties
5914 beg (match-end 0)
5915 '(font-lock-fontified t face org-meta-line))
5917 (t nil))))))
5919 (defun org-activate-angle-links (limit)
5920 "Run through the buffer and add overlays to links."
5921 (if (and (re-search-forward org-angle-link-re limit t)
5922 (not (org-in-src-block-p)))
5923 (progn
5924 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5925 (add-text-properties (match-beginning 0) (match-end 0)
5926 (list 'mouse-face 'highlight
5927 'keymap org-mouse-map))
5928 (org-rear-nonsticky-at (match-end 0))
5929 t)))
5931 (defun org-activate-footnote-links (limit)
5932 "Run through the buffer and add overlays to footnotes."
5933 (let ((fn (org-footnote-next-reference-or-definition limit)))
5934 (when fn
5935 (let ((beg (nth 1 fn)) (end (nth 2 fn)))
5936 (org-remove-flyspell-overlays-in beg end)
5937 (add-text-properties beg end
5938 (list 'mouse-face 'highlight
5939 'keymap org-mouse-map
5940 'help-echo
5941 (if (= (point-at-bol) beg)
5942 "Footnote definition"
5943 "Footnote reference")
5944 'font-lock-fontified t
5945 'font-lock-multiline t
5946 'face 'org-footnote))))))
5948 (defun org-activate-bracket-links (limit)
5949 "Run through the buffer and add overlays to bracketed links."
5950 (if (and (re-search-forward org-bracket-link-regexp limit t)
5951 (not (org-in-src-block-p)))
5952 (let* ((hl (org-match-string-no-properties 1))
5953 (help (concat "LINK: " (save-match-data (org-link-unescape hl))))
5954 (ip (org-maybe-intangible
5955 (list 'invisible 'org-link
5956 'keymap org-mouse-map 'mouse-face 'highlight
5957 'font-lock-multiline t 'help-echo help
5958 'htmlize-link `(:uri ,hl))))
5959 (vp (list 'keymap org-mouse-map 'mouse-face 'highlight
5960 'font-lock-multiline t 'help-echo help
5961 'htmlize-link `(:uri ,hl))))
5962 ;; We need to remove the invisible property here. Table narrowing
5963 ;; may have made some of this invisible.
5964 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5965 (remove-text-properties (match-beginning 0) (match-end 0)
5966 '(invisible nil))
5967 (if (match-end 3)
5968 (progn
5969 (add-text-properties (match-beginning 0) (match-beginning 3) ip)
5970 (org-rear-nonsticky-at (match-beginning 3))
5971 (add-text-properties (match-beginning 3) (match-end 3) vp)
5972 (org-rear-nonsticky-at (match-end 3))
5973 (add-text-properties (match-end 3) (match-end 0) ip)
5974 (org-rear-nonsticky-at (match-end 0)))
5975 (add-text-properties (match-beginning 0) (match-beginning 1) ip)
5976 (org-rear-nonsticky-at (match-beginning 1))
5977 (add-text-properties (match-beginning 1) (match-end 1) vp)
5978 (org-rear-nonsticky-at (match-end 1))
5979 (add-text-properties (match-end 1) (match-end 0) ip)
5980 (org-rear-nonsticky-at (match-end 0)))
5981 t)))
5983 (defun org-activate-dates (limit)
5984 "Run through the buffer and add overlays to dates."
5985 (if (and (re-search-forward org-tsr-regexp-both limit t)
5986 (not (equal (char-before (match-beginning 0)) 91)))
5987 (progn
5988 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5989 (add-text-properties (match-beginning 0) (match-end 0)
5990 (list 'mouse-face 'highlight
5991 'keymap org-mouse-map))
5992 (org-rear-nonsticky-at (match-end 0))
5993 (when org-display-custom-times
5994 (if (match-end 3)
5995 (org-display-custom-time (match-beginning 3) (match-end 3)))
5996 (org-display-custom-time (match-beginning 1) (match-end 1)))
5997 t)))
5999 (defvar org-target-link-regexp nil
6000 "Regular expression matching radio targets in plain text.")
6001 (make-variable-buffer-local 'org-target-link-regexp)
6002 (defvar org-target-regexp "<<\\([^<>\n\r]+\\)>>"
6003 "Regular expression matching a link target.")
6004 (defvar org-radio-target-regexp "<<<\\([^<>\n\r]+\\)>>>"
6005 "Regular expression matching a radio target.")
6006 (defvar org-any-target-regexp "<<<?\\([^<>\n\r]+\\)>>>?" ; FIXME, not exact, would match <<<aaa>> as a radio target.
6007 "Regular expression matching any target.")
6009 (defun org-activate-target-links (limit)
6010 "Run through the buffer and add overlays to target matches."
6011 (when org-target-link-regexp
6012 (let ((case-fold-search t))
6013 (if (re-search-forward org-target-link-regexp limit t)
6014 (progn
6015 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6016 (add-text-properties (match-beginning 0) (match-end 0)
6017 (list 'mouse-face 'highlight
6018 'keymap org-mouse-map
6019 'help-echo "Radio target link"
6020 'org-linked-text t))
6021 (org-rear-nonsticky-at (match-end 0))
6022 t)))))
6024 (defun org-update-radio-target-regexp ()
6025 "Find all radio targets in this file and update the regular expression."
6026 (interactive)
6027 (when (memq 'radio org-activate-links)
6028 (setq org-target-link-regexp
6029 (org-make-target-link-regexp (org-all-targets 'radio)))
6030 (org-restart-font-lock)))
6032 (defun org-hide-wide-columns (limit)
6033 (let (s e)
6034 (setq s (text-property-any (point) (or limit (point-max))
6035 'org-cwidth t))
6036 (when s
6037 (setq e (next-single-property-change s 'org-cwidth))
6038 (add-text-properties s e (org-maybe-intangible '(invisible org-cwidth)))
6039 (goto-char e)
6040 t)))
6042 (defvar org-latex-and-related-regexp nil
6043 "Regular expression for highlighting LaTeX, entities and sub/superscript.")
6044 (defvar org-match-substring-regexp)
6045 (defvar org-match-substring-with-braces-regexp)
6047 (defun org-compute-latex-and-related-regexp ()
6048 "Compute regular expression for LaTeX, entities and sub/superscript.
6049 Result depends on variable `org-highlight-latex-and-related'."
6050 (org-set-local
6051 'org-latex-and-related-regexp
6052 (let* ((re-sub
6053 (cond ((not (memq 'script org-highlight-latex-and-related)) nil)
6054 ((eq org-use-sub-superscripts '{})
6055 (list org-match-substring-with-braces-regexp))
6056 (org-use-sub-superscripts (list org-match-substring-regexp))))
6057 (re-latex
6058 (when (memq 'latex org-highlight-latex-and-related)
6059 (let ((matchers (plist-get org-format-latex-options :matchers)))
6060 (delq nil
6061 (mapcar (lambda (x)
6062 (and (member (car x) matchers) (nth 1 x)))
6063 org-latex-regexps)))))
6064 (re-entities
6065 (when (memq 'entities org-highlight-latex-and-related)
6066 (list "\\\\\\(there4\\|sup[123]\\|frac[13][24]\\|[a-zA-Z]+\\)\\($\\|{}\\|[^[:alpha:]]\\)"))))
6067 (mapconcat 'identity (append re-latex re-entities re-sub) "\\|"))))
6069 (defun org-do-latex-and-related (limit)
6070 "Highlight LaTeX snippets and environments, entities and sub/superscript.
6071 LIMIT bounds the search for syntax to highlight. Stop at first
6072 highlighted object, if any. Return t if some highlighting was
6073 done, nil otherwise."
6074 (when (org-string-nw-p org-latex-and-related-regexp)
6075 (catch 'found
6076 (while (re-search-forward org-latex-and-related-regexp limit t)
6077 (unless (memq (car-safe (get-text-property (1+ (match-beginning 0))
6078 'face))
6079 '(org-code org-verbatim underline))
6080 (let ((offset (if (memq (char-after (1+ (match-beginning 0)))
6081 '(?_ ?^))
6083 0)))
6084 (font-lock-prepend-text-property
6085 (+ offset (match-beginning 0)) (match-end 0)
6086 'face 'org-latex-and-related)
6087 (add-text-properties (+ offset (match-beginning 0)) (match-end 0)
6088 '(font-lock-multiline t)))
6089 (throw 'found t)))
6090 nil)))
6092 (defun org-restart-font-lock ()
6093 "Restart `font-lock-mode', to force refontification."
6094 (when (and (boundp 'font-lock-mode) font-lock-mode)
6095 (font-lock-mode -1)
6096 (font-lock-mode 1)))
6098 (defun org-all-targets (&optional radio)
6099 "Return a list of all targets in this file.
6100 When optional argument RADIO is non-nil, only find radio
6101 targets."
6102 (let ((re (if radio org-radio-target-regexp org-target-regexp)) rtn)
6103 (save-excursion
6104 (goto-char (point-min))
6105 (while (re-search-forward re nil t)
6106 ;; Make sure point is really within the object.
6107 (backward-char)
6108 (let ((obj (org-element-context)))
6109 (when (memq (org-element-type obj) '(radio-target target))
6110 (add-to-list 'rtn (downcase (org-element-property :value obj))))))
6111 rtn)))
6113 (defun org-make-target-link-regexp (targets)
6114 "Make regular expression matching all strings in TARGETS.
6115 The regular expression finds the targets also if there is a line break
6116 between words."
6117 (and targets
6118 (concat
6119 "\\_<\\("
6120 (mapconcat
6121 (lambda (x)
6122 (setq x (regexp-quote x))
6123 (while (string-match " +" x)
6124 (setq x (replace-match "\\s-+" t t x)))
6126 targets
6127 "\\|")
6128 "\\)\\_>")))
6130 (defun org-activate-tags (limit)
6131 (if (re-search-forward (org-re "^\\*+.*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \r\n]") limit t)
6132 (progn
6133 (org-remove-flyspell-overlays-in (match-beginning 1) (match-end 1))
6134 (add-text-properties (match-beginning 1) (match-end 1)
6135 (list 'mouse-face 'highlight
6136 'keymap org-mouse-map))
6137 (org-rear-nonsticky-at (match-end 1))
6138 t)))
6140 (defun org-outline-level ()
6141 "Compute the outline level of the heading at point.
6142 If this is called at a normal headline, the level is the number of stars.
6143 Use `org-reduced-level' to remove the effect of `org-odd-levels'."
6144 (save-excursion
6145 (if (not (condition-case nil
6146 (org-back-to-heading t)
6147 (error nil)))
6149 (looking-at org-outline-regexp)
6150 (1- (- (match-end 0) (match-beginning 0))))))
6152 (defvar org-font-lock-keywords nil)
6154 (defsubst org-re-property (property &optional literal allow-null)
6155 "Return a regexp matching a PROPERTY line.
6157 When optional argument LITERAL is non-nil, do not quote PROPERTY.
6158 This is useful when PROPERTY is a regexp. When ALLOW-NULL is
6159 non-nil, match properties even without a value.
6161 Match group 3 is set to the value when it exists. If there is no
6162 value and ALLOW-NULL is non-nil, it is set to the empty string."
6163 (concat
6164 "^\\(?4:[ \t]*\\)"
6165 (format "\\(?1::\\(?2:%s\\):\\)"
6166 (if literal property (regexp-quote property)))
6167 (if allow-null
6168 "\\(?:\\(?3:$\\)\\|[ \t]+\\(?3:.*?\\)\\)\\(?5:[ \t]*\\)$"
6169 "[ \t]+\\(?3:[^ \r\t\n]+.*?\\)\\(?5:[ \t]*\\)$")))
6171 (defconst org-property-re
6172 (org-re-property ".*?" 'literal t)
6173 "Regular expression matching a property line.
6174 There are four matching groups:
6175 1: :PROPKEY: including the leading and trailing colon,
6176 2: PROPKEY without the leading and trailing colon,
6177 3: PROPVAL without leading or trailing spaces,
6178 4: the indentation of the current line,
6179 5: trailing whitespace.")
6181 (defvar org-font-lock-hook nil
6182 "Functions to be called for special font lock stuff.")
6184 (defvar org-font-lock-set-keywords-hook nil
6185 "Functions that can manipulate `org-font-lock-extra-keywords'.
6186 This is called after `org-font-lock-extra-keywords' is defined, but before
6187 it is installed to be used by font lock. This can be useful if something
6188 needs to be inserted at a specific position in the font-lock sequence.")
6190 (defun org-font-lock-hook (limit)
6191 "Run `org-font-lock-hook' within LIMIT."
6192 (run-hook-with-args 'org-font-lock-hook limit))
6194 (defun org-set-font-lock-defaults ()
6195 "Set font lock defaults for the current buffer."
6196 (let* ((em org-fontify-emphasized-text)
6197 (lk org-activate-links)
6198 (org-font-lock-extra-keywords
6199 (list
6200 ;; Call the hook
6201 '(org-font-lock-hook)
6202 ;; Headlines
6203 `(,(if org-fontify-whole-heading-line
6204 "^\\(\\**\\)\\(\\* \\)\\(.*\n?\\)"
6205 "^\\(\\**\\)\\(\\* \\)\\(.*\\)")
6206 (1 (org-get-level-face 1))
6207 (2 (org-get-level-face 2))
6208 (3 (org-get-level-face 3)))
6209 ;; Table lines
6210 '("^[ \t]*\\(\\(|\\|\\+-[-+]\\).*\\S-\\)"
6211 (1 'org-table t))
6212 ;; Table internals
6213 '("^[ \t]*|\\(?:.*?|\\)? *\\(:?=[^|\n]*\\)" (1 'org-formula t))
6214 '("^[ \t]*| *\\([#*]\\) *|" (1 'org-formula t))
6215 '("^[ \t]*|\\( *\\([$!_^/]\\) *|.*\\)|" (1 'org-formula t))
6216 '("| *\\(<[lrc]?[0-9]*>\\)" (1 'org-formula t))
6217 ;; Drawers
6218 (list org-drawer-regexp '(0 'org-special-keyword t))
6219 (list "^[ \t]*:END:" '(0 'org-special-keyword t))
6220 ;; Properties
6221 (list org-property-re
6222 '(1 'org-special-keyword t)
6223 '(3 'org-property-value t))
6224 ;; Links
6225 (if (memq 'tag lk) '(org-activate-tags (1 'org-tag prepend)))
6226 (if (memq 'angle lk) '(org-activate-angle-links (0 'org-link t)))
6227 (if (memq 'plain lk) '(org-activate-plain-links (0 'org-link t)))
6228 (if (memq 'bracket lk) '(org-activate-bracket-links (0 'org-link t)))
6229 (if (memq 'radio lk) '(org-activate-target-links (0 'org-link t)))
6230 (if (memq 'date lk) '(org-activate-dates (0 'org-date t)))
6231 (if (memq 'footnote lk) '(org-activate-footnote-links))
6232 ;; Targets.
6233 (list org-any-target-regexp '(0 'org-target t))
6234 ;; Diary sexps.
6235 '("^&?%%(.*\\|<%%([^>\n]*?>" (0 'org-sexp-date t))
6236 ;; Macro
6237 '("{{{.+}}}" (0 'org-macro t))
6238 '(org-hide-wide-columns (0 nil append))
6239 ;; TODO keyword
6240 (list (format org-heading-keyword-regexp-format
6241 org-todo-regexp)
6242 '(2 (org-get-todo-face 2) t))
6243 ;; DONE
6244 (if org-fontify-done-headline
6245 (list (format org-heading-keyword-regexp-format
6246 (concat
6247 "\\(?:"
6248 (mapconcat 'regexp-quote org-done-keywords "\\|")
6249 "\\)"))
6250 '(2 'org-headline-done t))
6251 nil)
6252 ;; Priorities
6253 '(org-font-lock-add-priority-faces)
6254 ;; Tags
6255 '(org-font-lock-add-tag-faces)
6256 ;; Tags groups
6257 (if (and org-group-tags org-tag-groups-alist)
6258 (list (concat org-outline-regexp-bol ".+\\(:"
6259 (regexp-opt (mapcar 'car org-tag-groups-alist))
6260 ":\\).*$")
6261 '(1 'org-tag-group prepend)))
6262 ;; Special keywords
6263 (list (concat "\\<" org-deadline-string) '(0 'org-special-keyword t))
6264 (list (concat "\\<" org-scheduled-string) '(0 'org-special-keyword t))
6265 (list (concat "\\<" org-closed-string) '(0 'org-special-keyword t))
6266 (list (concat "\\<" org-clock-string) '(0 'org-special-keyword t))
6267 ;; Emphasis
6268 (if em
6269 (if (featurep 'xemacs)
6270 '(org-do-emphasis-faces (0 nil append))
6271 '(org-do-emphasis-faces)))
6272 ;; Checkboxes
6273 '("^[ \t]*\\(?:[-+*]\\|[0-9]+[.)]\\)[ \t]+\\(?:\\[@\\(?:start:\\)?[0-9]+\\][ \t]*\\)?\\(\\[[- X]\\]\\)"
6274 1 'org-checkbox prepend)
6275 (if (cdr (assq 'checkbox org-list-automatic-rules))
6276 '("\\[\\([0-9]*%\\)\\]\\|\\[\\([0-9]*\\)/\\([0-9]*\\)\\]"
6277 (0 (org-get-checkbox-statistics-face) t)))
6278 ;; Description list items
6279 '("^[ \t]*[-+*][ \t]+\\(.*?[ \t]+::\\)\\([ \t]+\\|$\\)"
6280 1 'org-list-dt prepend)
6281 ;; ARCHIVEd headings
6282 (list (concat
6283 org-outline-regexp-bol
6284 "\\(.*:" org-archive-tag ":.*\\)")
6285 '(1 'org-archived prepend))
6286 ;; Specials
6287 '(org-do-latex-and-related)
6288 '(org-fontify-entities)
6289 '(org-raise-scripts)
6290 ;; Code
6291 '(org-activate-code (1 'org-code t))
6292 ;; COMMENT
6293 (list (format org-heading-keyword-regexp-format
6294 (concat "\\("
6295 org-comment-string "\\|" org-quote-string
6296 "\\)"))
6297 '(2 'org-special-keyword t))
6298 ;; Blocks and meta lines
6299 '(org-fontify-meta-lines-and-blocks))))
6300 (setq org-font-lock-extra-keywords (delq nil org-font-lock-extra-keywords))
6301 (run-hooks 'org-font-lock-set-keywords-hook)
6302 ;; Now set the full font-lock-keywords
6303 (org-set-local 'org-font-lock-keywords org-font-lock-extra-keywords)
6304 (org-set-local 'font-lock-defaults
6305 '(org-font-lock-keywords t nil nil backward-paragraph))
6306 (kill-local-variable 'font-lock-keywords) nil))
6308 (defun org-toggle-pretty-entities ()
6309 "Toggle the composition display of entities as UTF8 characters."
6310 (interactive)
6311 (org-set-local 'org-pretty-entities (not org-pretty-entities))
6312 (org-restart-font-lock)
6313 (if org-pretty-entities
6314 (message "Entities are now displayed as UTF8 characters")
6315 (save-restriction
6316 (widen)
6317 (org-decompose-region (point-min) (point-max))
6318 (message "Entities are now displayed as plain text"))))
6320 (defvar org-custom-properties-overlays nil
6321 "List of overlays used for custom properties.")
6322 (make-variable-buffer-local 'org-custom-properties-overlays)
6324 (defun org-toggle-custom-properties-visibility ()
6325 "Display or hide properties in `org-custom-properties'."
6326 (interactive)
6327 (if org-custom-properties-overlays
6328 (progn (mapc 'delete-overlay org-custom-properties-overlays)
6329 (setq org-custom-properties-overlays nil))
6330 (unless (not org-custom-properties)
6331 (save-excursion
6332 (save-restriction
6333 (widen)
6334 (goto-char (point-min))
6335 (while (re-search-forward org-property-re nil t)
6336 (mapc (lambda(p)
6337 (when (equal p (substring (match-string 1) 1 -1))
6338 (let ((o (make-overlay (match-beginning 0) (1+ (match-end 0)))))
6339 (overlay-put o 'invisible t)
6340 (overlay-put o 'org-custom-property t)
6341 (push o org-custom-properties-overlays))))
6342 org-custom-properties)))))))
6344 (defun org-fontify-entities (limit)
6345 "Find an entity to fontify."
6346 (let (ee)
6347 (when org-pretty-entities
6348 (catch 'match
6349 (while (re-search-forward
6350 "\\\\\\(there4\\|sup[123]\\|frac[13][24]\\|[a-zA-Z]+\\)\\($\\|{}\\|[^[:alpha:]\n]\\)"
6351 limit t)
6352 (if (and (not (org-in-indented-comment-line))
6353 (setq ee (org-entity-get (match-string 1)))
6354 (= (length (nth 6 ee)) 1))
6355 (let*
6356 ((end (if (equal (match-string 2) "{}")
6357 (match-end 2)
6358 (match-end 1))))
6359 (add-text-properties
6360 (match-beginning 0) end
6361 (list 'font-lock-fontified t))
6362 (compose-region (match-beginning 0) end
6363 (nth 6 ee) nil)
6364 (backward-char 1)
6365 (throw 'match t))))
6366 nil))))
6368 (defun org-fontify-like-in-org-mode (s &optional odd-levels)
6369 "Fontify string S like in Org-mode."
6370 (with-temp-buffer
6371 (insert s)
6372 (let ((org-odd-levels-only odd-levels))
6373 (org-mode)
6374 (font-lock-fontify-buffer)
6375 (buffer-string))))
6377 (defvar org-m nil)
6378 (defvar org-l nil)
6379 (defvar org-f nil)
6380 (defun org-get-level-face (n)
6381 "Get the right face for match N in font-lock matching of headlines."
6382 (setq org-l (- (match-end 2) (match-beginning 1) 1))
6383 (if org-odd-levels-only (setq org-l (1+ (/ org-l 2))))
6384 (if org-cycle-level-faces
6385 (setq org-f (nth (% (1- org-l) org-n-level-faces) org-level-faces))
6386 (setq org-f (nth (1- (min org-l org-n-level-faces)) org-level-faces)))
6387 (cond
6388 ((eq n 1) (if org-hide-leading-stars 'org-hide org-f))
6389 ((eq n 2) org-f)
6390 (t (if org-level-color-stars-only nil org-f))))
6393 (defun org-get-todo-face (kwd)
6394 "Get the right face for a TODO keyword KWD.
6395 If KWD is a number, get the corresponding match group."
6396 (if (numberp kwd) (setq kwd (match-string kwd)))
6397 (or (org-face-from-face-or-color
6398 'todo 'org-todo (cdr (assoc kwd org-todo-keyword-faces)))
6399 (and (member kwd org-done-keywords) 'org-done)
6400 'org-todo))
6402 (defun org-face-from-face-or-color (context inherit face-or-color)
6403 "Create a face list that inherits INHERIT, but sets the foreground color.
6404 When FACE-OR-COLOR is not a string, just return it."
6405 (if (stringp face-or-color)
6406 (list :inherit inherit
6407 (cdr (assoc context org-faces-easy-properties))
6408 face-or-color)
6409 face-or-color))
6411 (defun org-font-lock-add-tag-faces (limit)
6412 "Add the special tag faces."
6413 (when (and org-tag-faces org-tags-special-faces-re)
6414 (while (re-search-forward org-tags-special-faces-re limit t)
6415 (add-text-properties (match-beginning 1) (match-end 1)
6416 (list 'face (org-get-tag-face 1)
6417 'font-lock-fontified t))
6418 (backward-char 1))))
6420 (defun org-font-lock-add-priority-faces (limit)
6421 "Add the special priority faces."
6422 (while (re-search-forward "\\[#\\([A-Z0-9]\\)\\]" limit t)
6423 (when (save-match-data (org-at-heading-p))
6424 (add-text-properties
6425 (match-beginning 0) (match-end 0)
6426 (list 'face (or (org-face-from-face-or-color
6427 'priority 'org-priority
6428 (cdr (assoc (char-after (match-beginning 1))
6429 org-priority-faces)))
6430 'org-priority)
6431 'font-lock-fontified t)))))
6433 (defun org-get-tag-face (kwd)
6434 "Get the right face for a TODO keyword KWD.
6435 If KWD is a number, get the corresponding match group."
6436 (if (numberp kwd) (setq kwd (match-string kwd)))
6437 (or (org-face-from-face-or-color
6438 'tag 'org-tag (cdr (assoc kwd org-tag-faces)))
6439 'org-tag))
6441 (defun org-unfontify-region (beg end &optional maybe_loudly)
6442 "Remove fontification and activation overlays from links."
6443 (font-lock-default-unfontify-region beg end)
6444 (let* ((buffer-undo-list t)
6445 (inhibit-read-only t) (inhibit-point-motion-hooks t)
6446 (inhibit-modification-hooks t)
6447 deactivate-mark buffer-file-name buffer-file-truename)
6448 (org-decompose-region beg end)
6449 (remove-text-properties beg end
6450 '(mouse-face t keymap t org-linked-text t
6451 invisible t intangible t
6452 org-no-flyspell t org-emphasis t))
6453 (org-remove-font-lock-display-properties beg end)))
6455 (defconst org-script-display '(((raise -0.3) (height 0.7))
6456 ((raise 0.3) (height 0.7))
6457 ((raise -0.5))
6458 ((raise 0.5)))
6459 "Display properties for showing superscripts and subscripts.")
6461 (defun org-remove-font-lock-display-properties (beg end)
6462 "Remove specific display properties that have been added by font lock.
6463 The will remove the raise properties that are used to show superscripts
6464 and subscripts."
6465 (let (next prop)
6466 (while (< beg end)
6467 (setq next (next-single-property-change beg 'display nil end)
6468 prop (get-text-property beg 'display))
6469 (if (member prop org-script-display)
6470 (put-text-property beg next 'display nil))
6471 (setq beg next))))
6473 (defun org-raise-scripts (limit)
6474 "Add raise properties to sub/superscripts."
6475 (when (and org-pretty-entities org-pretty-entities-include-sub-superscripts)
6476 (if (re-search-forward
6477 (if (eq org-use-sub-superscripts t)
6478 org-match-substring-regexp
6479 org-match-substring-with-braces-regexp)
6480 limit t)
6481 (let* ((pos (point)) table-p comment-p
6482 (mpos (match-beginning 3))
6483 (emph-p (get-text-property mpos 'org-emphasis))
6484 (link-p (get-text-property mpos 'mouse-face))
6485 (keyw-p (eq 'org-special-keyword (get-text-property mpos 'face))))
6486 (goto-char (point-at-bol))
6487 (setq table-p (org-looking-at-p org-table-dataline-regexp)
6488 comment-p (org-looking-at-p "^[ \t]*#[ +]"))
6489 (goto-char pos)
6490 ;; Handle a_b^c
6491 (if (member (char-after) '(?_ ?^)) (goto-char (1- pos)))
6492 (if (or comment-p emph-p link-p keyw-p)
6494 (put-text-property (match-beginning 3) (match-end 0)
6495 'display
6496 (if (equal (char-after (match-beginning 2)) ?^)
6497 (nth (if table-p 3 1) org-script-display)
6498 (nth (if table-p 2 0) org-script-display)))
6499 (add-text-properties (match-beginning 2) (match-end 2)
6500 (list 'invisible t
6501 'org-dwidth t 'org-dwidth-n 1))
6502 (if (and (eq (char-after (match-beginning 3)) ?{)
6503 (eq (char-before (match-end 3)) ?}))
6504 (progn
6505 (add-text-properties
6506 (match-beginning 3) (1+ (match-beginning 3))
6507 (list 'invisible t 'org-dwidth t 'org-dwidth-n 1))
6508 (add-text-properties
6509 (1- (match-end 3)) (match-end 3)
6510 (list 'invisible t 'org-dwidth t 'org-dwidth-n 1))))
6511 t)))))
6513 ;;;; Visibility cycling, including org-goto and indirect buffer
6515 ;;; Cycling
6517 (defvar org-cycle-global-status nil)
6518 (make-variable-buffer-local 'org-cycle-global-status)
6519 (put 'org-cycle-global-status 'org-state t)
6520 (defvar org-cycle-subtree-status nil)
6521 (make-variable-buffer-local 'org-cycle-subtree-status)
6522 (put 'org-cycle-subtree-status 'org-state t)
6524 (defvar org-inlinetask-min-level)
6526 (defun org-unlogged-message (&rest args)
6527 "Display a message, but avoid logging it in the *Messages* buffer."
6528 (let ((message-log-max nil))
6529 (apply 'message args)))
6531 ;;;###autoload
6532 (defun org-cycle (&optional arg)
6533 "TAB-action and visibility cycling for Org-mode.
6535 This is the command invoked in Org-mode by the TAB key. Its main purpose
6536 is outline visibility cycling, but it also invokes other actions
6537 in special contexts.
6539 - When this function is called with a prefix argument, rotate the entire
6540 buffer through 3 states (global cycling)
6541 1. OVERVIEW: Show only top-level headlines.
6542 2. CONTENTS: Show all headlines of all levels, but no body text.
6543 3. SHOW ALL: Show everything.
6544 When called with two `C-u C-u' prefixes, switch to the startup visibility,
6545 determined by the variable `org-startup-folded', and by any VISIBILITY
6546 properties in the buffer.
6547 When called with three `C-u C-u C-u' prefixed, show the entire buffer,
6548 including any drawers.
6550 - When inside a table, re-align the table and move to the next field.
6552 - When point is at the beginning of a headline, rotate the subtree started
6553 by this line through 3 different states (local cycling)
6554 1. FOLDED: Only the main headline is shown.
6555 2. CHILDREN: The main headline and the direct children are shown.
6556 From this state, you can move to one of the children
6557 and zoom in further.
6558 3. SUBTREE: Show the entire subtree, including body text.
6559 If there is no subtree, switch directly from CHILDREN to FOLDED.
6561 - When point is at the beginning of an empty headline and the variable
6562 `org-cycle-level-after-item/entry-creation' is set, cycle the level
6563 of the headline by demoting and promoting it to likely levels. This
6564 speeds up creation document structure by pressing TAB once or several
6565 times right after creating a new headline.
6567 - When there is a numeric prefix, go up to a heading with level ARG, do
6568 a `show-subtree' and return to the previous cursor position. If ARG
6569 is negative, go up that many levels.
6571 - When point is not at the beginning of a headline, execute the global
6572 binding for TAB, which is re-indenting the line. See the option
6573 `org-cycle-emulate-tab' for details.
6575 - Special case: if point is at the beginning of the buffer and there is
6576 no headline in line 1, this function will act as if called with prefix arg
6577 (C-u TAB, same as S-TAB) also when called without prefix arg.
6578 But only if also the variable `org-cycle-global-at-bob' is t."
6579 (interactive "P")
6580 (org-load-modules-maybe)
6581 (unless (or (run-hook-with-args-until-success 'org-tab-first-hook)
6582 (and org-cycle-level-after-item/entry-creation
6583 (or (org-cycle-level)
6584 (org-cycle-item-indentation))))
6585 (let* ((limit-level
6586 (or org-cycle-max-level
6587 (and (boundp 'org-inlinetask-min-level)
6588 org-inlinetask-min-level
6589 (1- org-inlinetask-min-level))))
6590 (nstars (and limit-level
6591 (if org-odd-levels-only
6592 (and limit-level (1- (* limit-level 2)))
6593 limit-level)))
6594 (org-outline-regexp
6595 (if (not (derived-mode-p 'org-mode))
6596 outline-regexp
6597 (concat "\\*" (if nstars (format "\\{1,%d\\} " nstars) "+ "))))
6598 (bob-special (and org-cycle-global-at-bob (not arg) (bobp)
6599 (not (looking-at org-outline-regexp))))
6600 (org-cycle-hook
6601 (if bob-special
6602 (delq 'org-optimize-window-after-visibility-change
6603 (copy-sequence org-cycle-hook))
6604 org-cycle-hook))
6605 (pos (point)))
6607 (if (or bob-special (equal arg '(4)))
6608 ;; special case: use global cycling
6609 (setq arg t))
6611 (cond
6613 ((equal arg '(16))
6614 (setq last-command 'dummy)
6615 (org-set-startup-visibility)
6616 (org-unlogged-message "Startup visibility, plus VISIBILITY properties"))
6618 ((equal arg '(64))
6619 (show-all)
6620 (org-unlogged-message "Entire buffer visible, including drawers"))
6622 ;; Try cdlatex TAB completion
6623 ((org-try-cdlatex-tab))
6625 ;; Table: enter it or move to the next field.
6626 ((org-at-table-p 'any)
6627 (if (org-at-table.el-p)
6628 (message "Use C-c ' to edit table.el tables")
6629 (if arg (org-table-edit-field t)
6630 (org-table-justify-field-maybe)
6631 (call-interactively 'org-table-next-field))))
6633 ((run-hook-with-args-until-success
6634 'org-tab-after-check-for-table-hook))
6636 ;; Global cycling: delegate to `org-cycle-internal-global'.
6637 ((eq arg t) (org-cycle-internal-global))
6639 ;; Drawers: delegate to `org-flag-drawer'.
6640 ((and org-drawers org-drawer-regexp
6641 (save-excursion
6642 (beginning-of-line 1)
6643 (looking-at org-drawer-regexp)))
6644 (org-flag-drawer ; toggle block visibility
6645 (not (get-char-property (match-end 0) 'invisible))))
6647 ;; Show-subtree, ARG levels up from here.
6648 ((integerp arg)
6649 (save-excursion
6650 (org-back-to-heading)
6651 (outline-up-heading (if (< arg 0) (- arg)
6652 (- (funcall outline-level) arg)))
6653 (org-show-subtree)))
6655 ;; Inline task: delegate to `org-inlinetask-toggle-visibility'.
6656 ((and (featurep 'org-inlinetask)
6657 (org-inlinetask-at-task-p)
6658 (or (bolp) (not (eq org-cycle-emulate-tab 'exc-hl-bol))))
6659 (org-inlinetask-toggle-visibility))
6661 ;; At an item/headline: delegate to `org-cycle-internal-local'.
6662 ((and (or (and org-cycle-include-plain-lists (org-at-item-p))
6663 (save-excursion (beginning-of-line 1)
6664 (looking-at org-outline-regexp)))
6665 (or (bolp) (not (eq org-cycle-emulate-tab 'exc-hl-bol))))
6666 (org-cycle-internal-local))
6668 ;; From there: TAB emulation and template completion.
6669 (buffer-read-only (org-back-to-heading))
6671 ((run-hook-with-args-until-success
6672 'org-tab-after-check-for-cycling-hook))
6674 ((org-try-structure-completion))
6676 ((run-hook-with-args-until-success
6677 'org-tab-before-tab-emulation-hook))
6679 ((and (eq org-cycle-emulate-tab 'exc-hl-bol)
6680 (or (not (bolp))
6681 (not (looking-at org-outline-regexp))))
6682 (call-interactively (global-key-binding "\t")))
6684 ((if (and (memq org-cycle-emulate-tab '(white whitestart))
6685 (save-excursion (beginning-of-line 1) (looking-at "[ \t]*"))
6686 (or (and (eq org-cycle-emulate-tab 'white)
6687 (= (match-end 0) (point-at-eol)))
6688 (and (eq org-cycle-emulate-tab 'whitestart)
6689 (>= (match-end 0) pos))))
6691 (eq org-cycle-emulate-tab t))
6692 (call-interactively (global-key-binding "\t")))
6694 (t (save-excursion
6695 (org-back-to-heading)
6696 (org-cycle)))))))
6698 (defun org-cycle-internal-global ()
6699 "Do the global cycling action."
6700 ;; Hack to avoid display of messages for .org attachments in Gnus
6701 (let ((ga (string-match "\\*fontification" (buffer-name))))
6702 (cond
6703 ((and (eq last-command this-command)
6704 (eq org-cycle-global-status 'overview))
6705 ;; We just created the overview - now do table of contents
6706 ;; This can be slow in very large buffers, so indicate action
6707 (run-hook-with-args 'org-pre-cycle-hook 'contents)
6708 (unless ga (org-unlogged-message "CONTENTS..."))
6709 (org-content)
6710 (unless ga (org-unlogged-message "CONTENTS...done"))
6711 (setq org-cycle-global-status 'contents)
6712 (run-hook-with-args 'org-cycle-hook 'contents))
6714 ((and (eq last-command this-command)
6715 (eq org-cycle-global-status 'contents))
6716 ;; We just showed the table of contents - now show everything
6717 (run-hook-with-args 'org-pre-cycle-hook 'all)
6718 (show-all)
6719 (unless ga (org-unlogged-message "SHOW ALL"))
6720 (setq org-cycle-global-status 'all)
6721 (run-hook-with-args 'org-cycle-hook 'all))
6724 ;; Default action: go to overview
6725 (run-hook-with-args 'org-pre-cycle-hook 'overview)
6726 (org-overview)
6727 (unless ga (org-unlogged-message "OVERVIEW"))
6728 (setq org-cycle-global-status 'overview)
6729 (run-hook-with-args 'org-cycle-hook 'overview)))))
6731 (defvar org-called-with-limited-levels nil
6732 "Non-nil when `org-with-limited-levels' is currently active.")
6734 (defun org-cycle-internal-local ()
6735 "Do the local cycling action."
6736 (let ((goal-column 0) eoh eol eos has-children children-skipped struct)
6737 ;; First, determine end of headline (EOH), end of subtree or item
6738 ;; (EOS), and if item or heading has children (HAS-CHILDREN).
6739 (save-excursion
6740 (if (org-at-item-p)
6741 (progn
6742 (beginning-of-line)
6743 (setq struct (org-list-struct))
6744 (setq eoh (point-at-eol))
6745 (setq eos (org-list-get-item-end-before-blank (point) struct))
6746 (setq has-children (org-list-has-child-p (point) struct)))
6747 (org-back-to-heading)
6748 (setq eoh (save-excursion (outline-end-of-heading) (point)))
6749 (setq eos (save-excursion (org-end-of-subtree t t)
6750 (when (bolp) (backward-char)) (point)))
6751 (setq has-children
6752 (or (save-excursion
6753 (let ((level (funcall outline-level)))
6754 (outline-next-heading)
6755 (and (org-at-heading-p t)
6756 (> (funcall outline-level) level))))
6757 (save-excursion
6758 (org-list-search-forward (org-item-beginning-re) eos t)))))
6759 ;; Determine end invisible part of buffer (EOL)
6760 (beginning-of-line 2)
6761 ;; XEmacs doesn't have `next-single-char-property-change'
6762 (if (featurep 'xemacs)
6763 (while (and (not (eobp)) ;; this is like `next-line'
6764 (get-char-property (1- (point)) 'invisible))
6765 (beginning-of-line 2))
6766 (while (and (not (eobp)) ;; this is like `next-line'
6767 (get-char-property (1- (point)) 'invisible))
6768 (goto-char (next-single-char-property-change (point) 'invisible))
6769 (and (eolp) (beginning-of-line 2))))
6770 (setq eol (point)))
6771 ;; Find out what to do next and set `this-command'
6772 (cond
6773 ((= eos eoh)
6774 ;; Nothing is hidden behind this heading
6775 (unless (org-before-first-heading-p)
6776 (run-hook-with-args 'org-pre-cycle-hook 'empty))
6777 (org-unlogged-message "EMPTY ENTRY")
6778 (setq org-cycle-subtree-status nil)
6779 (save-excursion
6780 (goto-char eos)
6781 (outline-next-heading)
6782 (if (outline-invisible-p) (org-flag-heading nil))))
6783 ((and (or (>= eol eos)
6784 (not (string-match "\\S-" (buffer-substring eol eos))))
6785 (or has-children
6786 (not (setq children-skipped
6787 org-cycle-skip-children-state-if-no-children))))
6788 ;; Entire subtree is hidden in one line: children view
6789 (unless (org-before-first-heading-p)
6790 (run-hook-with-args 'org-pre-cycle-hook 'children))
6791 (if (org-at-item-p)
6792 (org-list-set-item-visibility (point-at-bol) struct 'children)
6793 (org-show-entry)
6794 (org-with-limited-levels (show-children))
6795 ;; FIXME: This slows down the func way too much.
6796 ;; How keep drawers hidden in subtree anyway?
6797 ;; (when (memq 'org-cycle-hide-drawers org-cycle-hook)
6798 ;; (org-cycle-hide-drawers 'subtree))
6800 ;; Fold every list in subtree to top-level items.
6801 (when (eq org-cycle-include-plain-lists 'integrate)
6802 (save-excursion
6803 (org-back-to-heading)
6804 (while (org-list-search-forward (org-item-beginning-re) eos t)
6805 (beginning-of-line 1)
6806 (let* ((struct (org-list-struct))
6807 (prevs (org-list-prevs-alist struct))
6808 (end (org-list-get-bottom-point struct)))
6809 (mapc (lambda (e) (org-list-set-item-visibility e struct 'folded))
6810 (org-list-get-all-items (point) struct prevs))
6811 (goto-char (if (< end eos) end eos)))))))
6812 (org-unlogged-message "CHILDREN")
6813 (save-excursion
6814 (goto-char eos)
6815 (outline-next-heading)
6816 (if (outline-invisible-p) (org-flag-heading nil)))
6817 (setq org-cycle-subtree-status 'children)
6818 (unless (org-before-first-heading-p)
6819 (run-hook-with-args 'org-cycle-hook 'children)))
6820 ((or children-skipped
6821 (and (eq last-command this-command)
6822 (eq org-cycle-subtree-status 'children)))
6823 ;; We just showed the children, or no children are there,
6824 ;; now show everything.
6825 (unless (org-before-first-heading-p)
6826 (run-hook-with-args 'org-pre-cycle-hook 'subtree))
6827 (outline-flag-region eoh eos nil)
6828 (org-unlogged-message
6829 (if children-skipped "SUBTREE (NO CHILDREN)" "SUBTREE"))
6830 (setq org-cycle-subtree-status 'subtree)
6831 (unless (org-before-first-heading-p)
6832 (run-hook-with-args 'org-cycle-hook 'subtree)))
6834 ;; Default action: hide the subtree.
6835 (run-hook-with-args 'org-pre-cycle-hook 'folded)
6836 (outline-flag-region eoh eos t)
6837 (org-unlogged-message "FOLDED")
6838 (setq org-cycle-subtree-status 'folded)
6839 (unless (org-before-first-heading-p)
6840 (run-hook-with-args 'org-cycle-hook 'folded))))))
6842 ;;;###autoload
6843 (defun org-global-cycle (&optional arg)
6844 "Cycle the global visibility. For details see `org-cycle'.
6845 With \\[universal-argument] prefix arg, switch to startup visibility.
6846 With a numeric prefix, show all headlines up to that level."
6847 (interactive "P")
6848 (let ((org-cycle-include-plain-lists
6849 (if (derived-mode-p 'org-mode) org-cycle-include-plain-lists nil)))
6850 (cond
6851 ((integerp arg)
6852 (show-all)
6853 (hide-sublevels arg)
6854 (setq org-cycle-global-status 'contents))
6855 ((equal arg '(4))
6856 (org-set-startup-visibility)
6857 (org-unlogged-message "Startup visibility, plus VISIBILITY properties."))
6859 (org-cycle '(4))))))
6861 (defun org-set-startup-visibility ()
6862 "Set the visibility required by startup options and properties."
6863 (cond
6864 ((eq org-startup-folded t)
6865 (org-overview))
6866 ((eq org-startup-folded 'content)
6867 (org-content))
6868 ((or (eq org-startup-folded 'showeverything)
6869 (eq org-startup-folded nil))
6870 (show-all)))
6871 (unless (eq org-startup-folded 'showeverything)
6872 (if org-hide-block-startup (org-hide-block-all))
6873 (org-set-visibility-according-to-property 'no-cleanup)
6874 (org-cycle-hide-archived-subtrees 'all)
6875 (org-cycle-hide-drawers 'all)
6876 (org-cycle-show-empty-lines t)))
6878 (defun org-set-visibility-according-to-property (&optional no-cleanup)
6879 "Switch subtree visibilities according to :VISIBILITY: property."
6880 (interactive)
6881 (let (org-show-entry-below state)
6882 (save-excursion
6883 (goto-char (point-min))
6884 (while (re-search-forward
6885 "^[ \t]*:VISIBILITY:[ \t]+\\([a-z]+\\)"
6886 nil t)
6887 (setq state (match-string 1))
6888 (save-excursion
6889 (org-back-to-heading t)
6890 (hide-subtree)
6891 (org-reveal)
6892 (cond
6893 ((equal state '("fold" "folded"))
6894 (hide-subtree))
6895 ((equal state "children")
6896 (org-show-hidden-entry)
6897 (show-children))
6898 ((equal state "content")
6899 (save-excursion
6900 (save-restriction
6901 (org-narrow-to-subtree)
6902 (org-content))))
6903 ((member state '("all" "showall"))
6904 (show-subtree)))))
6905 (unless no-cleanup
6906 (org-cycle-hide-archived-subtrees 'all)
6907 (org-cycle-hide-drawers 'all)
6908 (org-cycle-show-empty-lines 'all)))))
6910 ;; This function uses outline-regexp instead of the more fundamental
6911 ;; org-outline-regexp so that org-cycle-global works outside of Org
6912 ;; buffers, where outline-regexp is needed.
6913 (defun org-overview ()
6914 "Switch to overview mode, showing only top-level headlines.
6915 This shows all headlines with a level equal or greater than the level
6916 of the first headline in the buffer. This is important, because if the
6917 first headline is not level one, then (hide-sublevels 1) gives confusing
6918 results."
6919 (interactive)
6920 (save-excursion
6921 (let ((level
6922 (save-excursion
6923 (goto-char (point-min))
6924 (if (re-search-forward (concat "^" outline-regexp) nil t)
6925 (progn
6926 (goto-char (match-beginning 0))
6927 (funcall outline-level))))))
6928 (and level (hide-sublevels level)))))
6930 (defun org-content (&optional arg)
6931 "Show all headlines in the buffer, like a table of contents.
6932 With numerical argument N, show content up to level N."
6933 (interactive "P")
6934 (org-overview)
6935 (save-excursion
6936 ;; Visit all headings and show their offspring
6937 (and (integerp arg) (org-overview))
6938 (goto-char (point-max))
6939 (catch 'exit
6940 (while (and (progn (condition-case nil
6941 (outline-previous-visible-heading 1)
6942 (error (goto-char (point-min))))
6944 (looking-at org-outline-regexp))
6945 (if (integerp arg)
6946 (show-children (1- arg))
6947 (show-branches))
6948 (if (bobp) (throw 'exit nil))))))
6950 (defun org-optimize-window-after-visibility-change (state)
6951 "Adjust the window after a change in outline visibility.
6952 This function is the default value of the hook `org-cycle-hook'."
6953 (when (get-buffer-window (current-buffer))
6954 (cond
6955 ((eq state 'content) nil)
6956 ((eq state 'all) nil)
6957 ((eq state 'folded) nil)
6958 ((eq state 'children) (or (org-subtree-end-visible-p) (recenter 1)))
6959 ((eq state 'subtree) (or (org-subtree-end-visible-p) (recenter 1))))))
6961 (defun org-remove-empty-overlays-at (pos)
6962 "Remove outline overlays that do not contain non-white stuff."
6963 (mapc
6964 (lambda (o)
6965 (and (eq 'outline (overlay-get o 'invisible))
6966 (not (string-match "\\S-" (buffer-substring (overlay-start o)
6967 (overlay-end o))))
6968 (delete-overlay o)))
6969 (overlays-at pos)))
6971 (defun org-clean-visibility-after-subtree-move ()
6972 "Fix visibility issues after moving a subtree."
6973 ;; First, find a reasonable region to look at:
6974 ;; Start two siblings above, end three below
6975 (let* ((beg (save-excursion
6976 (and (org-get-last-sibling)
6977 (org-get-last-sibling))
6978 (point)))
6979 (end (save-excursion
6980 (and (org-get-next-sibling)
6981 (org-get-next-sibling)
6982 (org-get-next-sibling))
6983 (if (org-at-heading-p)
6984 (point-at-eol)
6985 (point))))
6986 (level (looking-at "\\*+"))
6987 (re (if level (concat "^" (regexp-quote (match-string 0)) " "))))
6988 (save-excursion
6989 (save-restriction
6990 (narrow-to-region beg end)
6991 (when re
6992 ;; Properly fold already folded siblings
6993 (goto-char (point-min))
6994 (while (re-search-forward re nil t)
6995 (if (and (not (outline-invisible-p))
6996 (save-excursion
6997 (goto-char (point-at-eol)) (outline-invisible-p)))
6998 (hide-entry))))
6999 (org-cycle-show-empty-lines 'overview)
7000 (org-cycle-hide-drawers 'overview)))))
7002 (defun org-cycle-show-empty-lines (state)
7003 "Show empty lines above all visible headlines.
7004 The region to be covered depends on STATE when called through
7005 `org-cycle-hook'. Lisp program can use t for STATE to get the
7006 entire buffer covered. Note that an empty line is only shown if there
7007 are at least `org-cycle-separator-lines' empty lines before the headline."
7008 (when (not (= org-cycle-separator-lines 0))
7009 (save-excursion
7010 (let* ((n (abs org-cycle-separator-lines))
7011 (re (cond
7012 ((= n 1) "\\(\n[ \t]*\n\\*+\\) ")
7013 ((= n 2) "^[ \t]*\\(\n[ \t]*\n\\*+\\) ")
7014 (t (let ((ns (number-to-string (- n 2))))
7015 (concat "^\\(?:[ \t]*\n\\)\\{" ns "," ns "\\}"
7016 "[ \t]*\\(\n[ \t]*\n\\*+\\) ")))))
7017 beg end b e)
7018 (cond
7019 ((memq state '(overview contents t))
7020 (setq beg (point-min) end (point-max)))
7021 ((memq state '(children folded))
7022 (setq beg (point) end (progn (org-end-of-subtree t t)
7023 (beginning-of-line 2)
7024 (point)))))
7025 (when beg
7026 (goto-char beg)
7027 (while (re-search-forward re end t)
7028 (unless (get-char-property (match-end 1) 'invisible)
7029 (setq e (match-end 1))
7030 (if (< org-cycle-separator-lines 0)
7031 (setq b (save-excursion
7032 (goto-char (match-beginning 0))
7033 (org-back-over-empty-lines)
7034 (if (save-excursion
7035 (goto-char (max (point-min) (1- (point))))
7036 (org-at-heading-p))
7037 (1- (point))
7038 (point))))
7039 (setq b (match-beginning 1)))
7040 (outline-flag-region b e nil)))))))
7041 ;; Never hide empty lines at the end of the file.
7042 (save-excursion
7043 (goto-char (point-max))
7044 (outline-previous-heading)
7045 (outline-end-of-heading)
7046 (if (and (looking-at "[ \t\n]+")
7047 (= (match-end 0) (point-max)))
7048 (outline-flag-region (point) (match-end 0) nil))))
7050 (defun org-show-empty-lines-in-parent ()
7051 "Move to the parent and re-show empty lines before visible headlines."
7052 (save-excursion
7053 (let ((context (if (org-up-heading-safe) 'children 'overview)))
7054 (org-cycle-show-empty-lines context))))
7056 (defun org-files-list ()
7057 "Return `org-agenda-files' list, plus all open org-mode files.
7058 This is useful for operations that need to scan all of a user's
7059 open and agenda-wise Org files."
7060 (let ((files (mapcar 'expand-file-name (org-agenda-files))))
7061 (dolist (buf (buffer-list))
7062 (with-current-buffer buf
7063 (if (and (derived-mode-p 'org-mode) (buffer-file-name))
7064 (let ((file (expand-file-name (buffer-file-name))))
7065 (unless (member file files)
7066 (push file files))))))
7067 files))
7069 (defsubst org-entry-beginning-position ()
7070 "Return the beginning position of the current entry."
7071 (save-excursion (outline-back-to-heading t) (point)))
7073 (defsubst org-entry-end-position ()
7074 "Return the end position of the current entry."
7075 (save-excursion (outline-next-heading) (point)))
7077 (defun org-cycle-hide-drawers (state)
7078 "Re-hide all drawers after a visibility state change."
7079 (when (and (derived-mode-p 'org-mode)
7080 (not (memq state '(overview folded contents))))
7081 (save-excursion
7082 (let* ((globalp (memq state '(contents all)))
7083 (beg (if globalp (point-min) (point)))
7084 (end (if globalp (point-max)
7085 (if (eq state 'children)
7086 (save-excursion (outline-next-heading) (point))
7087 (org-end-of-subtree t)))))
7088 (goto-char beg)
7089 (while (re-search-forward org-drawer-regexp end t)
7090 (org-flag-drawer t))))))
7092 (defun org-cycle-hide-inline-tasks (state)
7093 "Re-hide inline tasks when switching to 'contents or 'children
7094 visibility state."
7095 (case state
7096 (contents
7097 (when (org-bound-and-true-p org-inlinetask-min-level)
7098 (hide-sublevels (1- org-inlinetask-min-level))))
7099 (children
7100 (when (featurep 'org-inlinetask)
7101 (save-excursion
7102 (while (and (outline-next-heading)
7103 (org-inlinetask-at-task-p))
7104 (org-inlinetask-toggle-visibility)
7105 (org-inlinetask-goto-end)))))))
7107 (defun org-flag-drawer (flag)
7108 "When FLAG is non-nil, hide the drawer we are within.
7109 Otherwise make it visible."
7110 (save-excursion
7111 (beginning-of-line 1)
7112 (when (looking-at "^[ \t]*:[a-zA-Z][a-zA-Z0-9]*:")
7113 (let ((b (match-end 0)))
7114 (if (re-search-forward
7115 "^[ \t]*:END:"
7116 (save-excursion (outline-next-heading) (point)) t)
7117 (outline-flag-region b (point-at-eol) flag)
7118 (user-error ":END: line missing at position %s" b))))))
7120 (defun org-subtree-end-visible-p ()
7121 "Is the end of the current subtree visible?"
7122 (pos-visible-in-window-p
7123 (save-excursion (org-end-of-subtree t) (point))))
7125 (defun org-first-headline-recenter ()
7126 "Move cursor to the first headline and recenter the headline."
7127 (goto-char (point-min))
7128 (when (re-search-forward (concat "^\\(" org-outline-regexp "\\)") nil t)
7129 (set-window-start (selected-window) (point-at-bol))))
7131 ;;; Saving and restoring visibility
7133 (defun org-outline-overlay-data (&optional use-markers)
7134 "Return a list of the locations of all outline overlays.
7135 These are overlays with the `invisible' property value `outline'.
7136 The return value is a list of cons cells, with start and stop
7137 positions for each overlay.
7138 If USE-MARKERS is set, return the positions as markers."
7139 (let (beg end)
7140 (save-excursion
7141 (save-restriction
7142 (widen)
7143 (delq nil
7144 (mapcar (lambda (o)
7145 (when (eq (overlay-get o 'invisible) 'outline)
7146 (setq beg (overlay-start o)
7147 end (overlay-end o))
7148 (and beg end (> end beg)
7149 (if use-markers
7150 (cons (move-marker (make-marker) beg)
7151 (move-marker (make-marker) end))
7152 (cons beg end)))))
7153 (overlays-in (point-min) (point-max))))))))
7155 (defun org-set-outline-overlay-data (data)
7156 "Create visibility overlays for all positions in DATA.
7157 DATA should have been made by `org-outline-overlay-data'."
7158 (let (o)
7159 (save-excursion
7160 (save-restriction
7161 (widen)
7162 (show-all)
7163 (mapc (lambda (c)
7164 (outline-flag-region (car c) (cdr c) t))
7165 data)))))
7167 ;;; Folding of blocks
7169 (defvar org-hide-block-overlays nil
7170 "Overlays hiding blocks.")
7171 (make-variable-buffer-local 'org-hide-block-overlays)
7173 (defun org-block-map (function &optional start end)
7174 "Call FUNCTION at the head of all source blocks in the current buffer.
7175 Optional arguments START and END can be used to limit the range."
7176 (let ((start (or start (point-min)))
7177 (end (or end (point-max))))
7178 (save-excursion
7179 (goto-char start)
7180 (while (and (< (point) end) (re-search-forward org-block-regexp end t))
7181 (save-excursion
7182 (save-match-data
7183 (goto-char (match-beginning 0))
7184 (funcall function)))))))
7186 (defun org-hide-block-toggle-all ()
7187 "Toggle the visibility of all blocks in the current buffer."
7188 (org-block-map #'org-hide-block-toggle))
7190 (defun org-hide-block-all ()
7191 "Fold all blocks in the current buffer."
7192 (interactive)
7193 (org-show-block-all)
7194 (org-block-map #'org-hide-block-toggle-maybe))
7196 (defun org-show-block-all ()
7197 "Unfold all blocks in the current buffer."
7198 (interactive)
7199 (mapc 'delete-overlay org-hide-block-overlays)
7200 (setq org-hide-block-overlays nil))
7202 (defun org-hide-block-toggle-maybe ()
7203 "Toggle visibility of block at point."
7204 (interactive)
7205 (let ((case-fold-search t))
7206 (if (save-excursion
7207 (beginning-of-line 1)
7208 (looking-at org-block-regexp))
7209 (progn (org-hide-block-toggle)
7210 t) ;; to signal that we took action
7211 nil))) ;; to signal that we did not
7213 (defun org-hide-block-toggle (&optional force)
7214 "Toggle the visibility of the current block."
7215 (interactive)
7216 (save-excursion
7217 (beginning-of-line)
7218 (if (re-search-forward org-block-regexp nil t)
7219 (let ((start (- (match-beginning 4) 1)) ;; beginning of body
7220 (end (match-end 0)) ;; end of entire body
7222 (if (memq t (mapcar (lambda (overlay)
7223 (eq (overlay-get overlay 'invisible)
7224 'org-hide-block))
7225 (overlays-at start)))
7226 (if (or (not force) (eq force 'off))
7227 (mapc (lambda (ov)
7228 (when (member ov org-hide-block-overlays)
7229 (setq org-hide-block-overlays
7230 (delq ov org-hide-block-overlays)))
7231 (when (eq (overlay-get ov 'invisible)
7232 'org-hide-block)
7233 (delete-overlay ov)))
7234 (overlays-at start)))
7235 (setq ov (make-overlay start end))
7236 (overlay-put ov 'invisible 'org-hide-block)
7237 ;; make the block accessible to isearch
7238 (overlay-put
7239 ov 'isearch-open-invisible
7240 (lambda (ov)
7241 (when (member ov org-hide-block-overlays)
7242 (setq org-hide-block-overlays
7243 (delq ov org-hide-block-overlays)))
7244 (when (eq (overlay-get ov 'invisible)
7245 'org-hide-block)
7246 (delete-overlay ov))))
7247 (push ov org-hide-block-overlays)))
7248 (user-error "Not looking at a source block"))))
7250 ;; org-tab-after-check-for-cycling-hook
7251 (add-hook 'org-tab-first-hook 'org-hide-block-toggle-maybe)
7252 ;; Remove overlays when changing major mode
7253 (add-hook 'org-mode-hook
7254 (lambda () (org-add-hook 'change-major-mode-hook
7255 'org-show-block-all 'append 'local)))
7257 ;;; Org-goto
7259 (defvar org-goto-window-configuration nil)
7260 (defvar org-goto-marker nil)
7261 (defvar org-goto-map)
7262 (defun org-goto-map ()
7263 "Set the keymap `org-goto'."
7264 (setq org-goto-map
7265 (let ((map (make-sparse-keymap)))
7266 (let ((cmds '(isearch-forward isearch-backward kill-ring-save set-mark-command
7267 mouse-drag-region universal-argument org-occur))
7268 cmd)
7269 (while (setq cmd (pop cmds))
7270 (substitute-key-definition cmd cmd map global-map)))
7271 (suppress-keymap map)
7272 (org-defkey map "\C-m" 'org-goto-ret)
7273 (org-defkey map [(return)] 'org-goto-ret)
7274 (org-defkey map [(left)] 'org-goto-left)
7275 (org-defkey map [(right)] 'org-goto-right)
7276 (org-defkey map [(control ?g)] 'org-goto-quit)
7277 (org-defkey map "\C-i" 'org-cycle)
7278 (org-defkey map [(tab)] 'org-cycle)
7279 (org-defkey map [(down)] 'outline-next-visible-heading)
7280 (org-defkey map [(up)] 'outline-previous-visible-heading)
7281 (if org-goto-auto-isearch
7282 (if (fboundp 'define-key-after)
7283 (define-key-after map [t] 'org-goto-local-auto-isearch)
7284 nil)
7285 (org-defkey map "q" 'org-goto-quit)
7286 (org-defkey map "n" 'outline-next-visible-heading)
7287 (org-defkey map "p" 'outline-previous-visible-heading)
7288 (org-defkey map "f" 'outline-forward-same-level)
7289 (org-defkey map "b" 'outline-backward-same-level)
7290 (org-defkey map "u" 'outline-up-heading))
7291 (org-defkey map "/" 'org-occur)
7292 (org-defkey map "\C-c\C-n" 'outline-next-visible-heading)
7293 (org-defkey map "\C-c\C-p" 'outline-previous-visible-heading)
7294 (org-defkey map "\C-c\C-f" 'outline-forward-same-level)
7295 (org-defkey map "\C-c\C-b" 'outline-backward-same-level)
7296 (org-defkey map "\C-c\C-u" 'outline-up-heading)
7297 map)))
7299 (defconst org-goto-help
7300 "Browse buffer copy, to find location or copy text.%s
7301 RET=jump to location C-g=quit and return to previous location
7302 \[Up]/[Down]=next/prev headline TAB=cycle visibility [/] org-occur")
7304 (defvar org-goto-start-pos) ; dynamically scoped parameter
7306 (defun org-goto (&optional alternative-interface)
7307 "Look up a different location in the current file, keeping current visibility.
7309 When you want look-up or go to a different location in a
7310 document, the fastest way is often to fold the entire buffer and
7311 then dive into the tree. This method has the disadvantage, that
7312 the previous location will be folded, which may not be what you
7313 want.
7315 This command works around this by showing a copy of the current
7316 buffer in an indirect buffer, in overview mode. You can dive
7317 into the tree in that copy, use org-occur and incremental search
7318 to find a location. When pressing RET or `Q', the command
7319 returns to the original buffer in which the visibility is still
7320 unchanged. After RET it will also jump to the location selected
7321 in the indirect buffer and expose the headline hierarchy above.
7323 With a prefix argument, use the alternative interface: e.g. if
7324 `org-goto-interface' is 'outline use 'outline-path-completion."
7325 (interactive "P")
7326 (org-goto-map)
7327 (let* ((org-refile-targets `((nil . (:maxlevel . ,org-goto-max-level))))
7328 (org-refile-use-outline-path t)
7329 (org-refile-target-verify-function nil)
7330 (interface
7331 (if (not alternative-interface)
7332 org-goto-interface
7333 (if (eq org-goto-interface 'outline)
7334 'outline-path-completion
7335 'outline)))
7336 (org-goto-start-pos (point))
7337 (selected-point
7338 (if (eq interface 'outline)
7339 (car (org-get-location (current-buffer) org-goto-help))
7340 (let ((pa (org-refile-get-location "Goto" nil nil t)))
7341 (org-refile-check-position pa)
7342 (nth 3 pa)))))
7343 (if selected-point
7344 (progn
7345 (org-mark-ring-push org-goto-start-pos)
7346 (goto-char selected-point)
7347 (if (or (outline-invisible-p) (org-invisible-p2))
7348 (org-show-context 'org-goto)))
7349 (message "Quit"))))
7351 (defvar org-goto-selected-point nil) ; dynamically scoped parameter
7352 (defvar org-goto-exit-command nil) ; dynamically scoped parameter
7353 (defvar org-goto-local-auto-isearch-map) ; defined below
7355 (defun org-get-location (buf help)
7356 "Let the user select a location in the Org-mode buffer BUF.
7357 This function uses a recursive edit. It returns the selected position
7358 or nil."
7359 (org-no-popups
7360 (let ((isearch-mode-map org-goto-local-auto-isearch-map)
7361 (isearch-hide-immediately nil)
7362 (isearch-search-fun-function
7363 (lambda () 'org-goto-local-search-headings))
7364 (org-goto-selected-point org-goto-exit-command))
7365 (save-excursion
7366 (save-window-excursion
7367 (delete-other-windows)
7368 (and (get-buffer "*org-goto*") (kill-buffer "*org-goto*"))
7369 (org-pop-to-buffer-same-window
7370 (condition-case nil
7371 (make-indirect-buffer (current-buffer) "*org-goto*")
7372 (error (make-indirect-buffer (current-buffer) "*org-goto*"))))
7373 (with-output-to-temp-buffer "*Org Help*"
7374 (princ (format help (if org-goto-auto-isearch
7375 " Just type for auto-isearch."
7376 " n/p/f/b/u to navigate, q to quit."))))
7377 (org-fit-window-to-buffer (get-buffer-window "*Org Help*"))
7378 (setq buffer-read-only nil)
7379 (let ((org-startup-truncated t)
7380 (org-startup-folded nil)
7381 (org-startup-align-all-tables nil))
7382 (org-mode)
7383 (org-overview))
7384 (setq buffer-read-only t)
7385 (if (and (boundp 'org-goto-start-pos)
7386 (integer-or-marker-p org-goto-start-pos))
7387 (let ((org-show-hierarchy-above t)
7388 (org-show-siblings t)
7389 (org-show-following-heading t))
7390 (goto-char org-goto-start-pos)
7391 (and (outline-invisible-p) (org-show-context)))
7392 (goto-char (point-min)))
7393 (let (org-special-ctrl-a/e) (org-beginning-of-line))
7394 (message "Select location and press RET")
7395 (use-local-map org-goto-map)
7396 (recursive-edit)))
7397 (kill-buffer "*org-goto*")
7398 (cons org-goto-selected-point org-goto-exit-command))))
7400 (defvar org-goto-local-auto-isearch-map (make-sparse-keymap))
7401 (set-keymap-parent org-goto-local-auto-isearch-map isearch-mode-map)
7402 ;; `isearch-other-control-char' was removed in Emacs 24.4.
7403 (if (fboundp 'isearch-other-control-char)
7404 (progn
7405 (define-key org-goto-local-auto-isearch-map "\C-i" 'isearch-other-control-char)
7406 (define-key org-goto-local-auto-isearch-map "\C-m" 'isearch-other-control-char))
7407 (define-key org-goto-local-auto-isearch-map "\C-i" nil)
7408 (define-key org-goto-local-auto-isearch-map "\C-m" nil)
7409 (define-key org-goto-local-auto-isearch-map [return] nil))
7411 (defun org-goto-local-search-headings (string bound noerror)
7412 "Search and make sure that any matches are in headlines."
7413 (catch 'return
7414 (while (if isearch-forward
7415 (search-forward string bound noerror)
7416 (search-backward string bound noerror))
7417 (when (let ((context (mapcar 'car (save-match-data (org-context)))))
7418 (and (member :headline context)
7419 (not (member :tags context))))
7420 (throw 'return (point))))))
7422 (defun org-goto-local-auto-isearch ()
7423 "Start isearch."
7424 (interactive)
7425 (goto-char (point-min))
7426 (let ((keys (this-command-keys)))
7427 (when (eq (lookup-key isearch-mode-map keys) 'isearch-printing-char)
7428 (isearch-mode t)
7429 (isearch-process-search-char (string-to-char keys)))))
7431 (defun org-goto-ret (&optional arg)
7432 "Finish `org-goto' by going to the new location."
7433 (interactive "P")
7434 (setq org-goto-selected-point (point)
7435 org-goto-exit-command 'return)
7436 (throw 'exit nil))
7438 (defun org-goto-left ()
7439 "Finish `org-goto' by going to the new location."
7440 (interactive)
7441 (if (org-at-heading-p)
7442 (progn
7443 (beginning-of-line 1)
7444 (setq org-goto-selected-point (point)
7445 org-goto-exit-command 'left)
7446 (throw 'exit nil))
7447 (user-error "Not on a heading")))
7449 (defun org-goto-right ()
7450 "Finish `org-goto' by going to the new location."
7451 (interactive)
7452 (if (org-at-heading-p)
7453 (progn
7454 (setq org-goto-selected-point (point)
7455 org-goto-exit-command 'right)
7456 (throw 'exit nil))
7457 (user-error "Not on a heading")))
7459 (defun org-goto-quit ()
7460 "Finish `org-goto' without cursor motion."
7461 (interactive)
7462 (setq org-goto-selected-point nil)
7463 (setq org-goto-exit-command 'quit)
7464 (throw 'exit nil))
7466 ;;; Indirect buffer display of subtrees
7468 (defvar org-indirect-dedicated-frame nil
7469 "This is the frame being used for indirect tree display.")
7470 (defvar org-last-indirect-buffer nil)
7472 (defun org-tree-to-indirect-buffer (&optional arg)
7473 "Create indirect buffer and narrow it to current subtree.
7474 With a numerical prefix ARG, go up to this level and then take that tree.
7475 If ARG is negative, go up that many levels.
7477 If `org-indirect-buffer-display' is not `new-frame', the command removes the
7478 indirect buffer previously made with this command, to avoid proliferation of
7479 indirect buffers. However, when you call the command with a \
7480 \\[universal-argument] prefix, or
7481 when `org-indirect-buffer-display' is `new-frame', the last buffer
7482 is kept so that you can work with several indirect buffers at the same time.
7483 If `org-indirect-buffer-display' is `dedicated-frame', the \
7484 \\[universal-argument] prefix also
7485 requests that a new frame be made for the new buffer, so that the dedicated
7486 frame is not changed."
7487 (interactive "P")
7488 (let ((cbuf (current-buffer))
7489 (cwin (selected-window))
7490 (pos (point))
7491 beg end level heading ibuf)
7492 (save-excursion
7493 (org-back-to-heading t)
7494 (when (numberp arg)
7495 (setq level (org-outline-level))
7496 (if (< arg 0) (setq arg (+ level arg)))
7497 (while (> (setq level (org-outline-level)) arg)
7498 (org-up-heading-safe)))
7499 (setq beg (point)
7500 heading (org-get-heading))
7501 (org-end-of-subtree t t)
7502 (if (org-at-heading-p) (backward-char 1))
7503 (setq end (point)))
7504 (if (and (buffer-live-p org-last-indirect-buffer)
7505 (not (eq org-indirect-buffer-display 'new-frame))
7506 (not arg))
7507 (kill-buffer org-last-indirect-buffer))
7508 (setq ibuf (org-get-indirect-buffer cbuf)
7509 org-last-indirect-buffer ibuf)
7510 (cond
7511 ((or (eq org-indirect-buffer-display 'new-frame)
7512 (and arg (eq org-indirect-buffer-display 'dedicated-frame)))
7513 (select-frame (make-frame))
7514 (delete-other-windows)
7515 (org-pop-to-buffer-same-window ibuf)
7516 (org-set-frame-title heading))
7517 ((eq org-indirect-buffer-display 'dedicated-frame)
7518 (raise-frame
7519 (select-frame (or (and org-indirect-dedicated-frame
7520 (frame-live-p org-indirect-dedicated-frame)
7521 org-indirect-dedicated-frame)
7522 (setq org-indirect-dedicated-frame (make-frame)))))
7523 (delete-other-windows)
7524 (org-pop-to-buffer-same-window ibuf)
7525 (org-set-frame-title (concat "Indirect: " heading)))
7526 ((eq org-indirect-buffer-display 'current-window)
7527 (org-pop-to-buffer-same-window ibuf))
7528 ((eq org-indirect-buffer-display 'other-window)
7529 (pop-to-buffer ibuf))
7530 (t (error "Invalid value")))
7531 (if (featurep 'xemacs)
7532 (save-excursion (org-mode) (turn-on-font-lock)))
7533 (narrow-to-region beg end)
7534 (show-all)
7535 (goto-char pos)
7536 (run-hook-with-args 'org-cycle-hook 'all)
7537 (and (window-live-p cwin) (select-window cwin))))
7539 (defun org-get-indirect-buffer (&optional buffer)
7540 (setq buffer (or buffer (current-buffer)))
7541 (let ((n 1) (base (buffer-name buffer)) bname)
7542 (while (buffer-live-p
7543 (get-buffer (setq bname (concat base "-" (number-to-string n)))))
7544 (setq n (1+ n)))
7545 (condition-case nil
7546 (make-indirect-buffer buffer bname 'clone)
7547 (error (make-indirect-buffer buffer bname)))))
7549 (defun org-set-frame-title (title)
7550 "Set the title of the current frame to the string TITLE."
7551 ;; FIXME: how to name a single frame in XEmacs???
7552 (unless (featurep 'xemacs)
7553 (modify-frame-parameters (selected-frame) (list (cons 'name title)))))
7555 ;;;; Structure editing
7557 ;;; Inserting headlines
7559 (defun org-previous-line-empty-p (&optional next)
7560 "Is the previous line a blank line?
7561 When NEXT is non-nil, check the next line instead."
7562 (save-excursion
7563 (and (not (bobp))
7564 (or (beginning-of-line (if next 2 0)) t)
7565 (save-match-data
7566 (looking-at "[ \t]*$")))))
7568 (defun org-insert-heading (&optional arg invisible-ok)
7569 "Insert a new heading or an item with the same depth at point.
7571 If point is at the beginning of a heading or a list item, insert
7572 a new heading or a new item above the current one. If point is
7573 at the beginning of a normal line, turn the line into a heading.
7575 If point is in the middle of a headline or a list item, split the
7576 headline or the item and create a new headline/item with the text
7577 in the current line after point \(see `org-M-RET-may-split-line'
7578 on how to modify this behavior).
7580 With one universal prefirx argument, set the user option
7581 `org-insert-heading-respect-content' to t for the duration of
7582 the command. This modifies the behavior described above in this
7583 ways: on list items and at the beginning of normal lines, force
7584 the insertion of a heading after the current subtree.
7586 With two universal prefix arguments, insert the heading at the
7587 end of the grandparent subtree. For example, if point is within
7588 a 2nd-level heading, then it will insert a 2nd-level heading at
7589 the end of the 1st-level parent heading.
7591 When INVISIBLE-OK is set, stop at invisible headlines when going
7592 back. This is important for non-interactive uses of the
7593 command."
7594 (interactive "P")
7595 (if (org-called-interactively-p 'any) (org-reveal))
7596 (let ((itemp (org-in-item-p))
7597 (may-split (org-get-alist-option org-M-RET-may-split-line 'headline))
7598 (respect-content (or org-insert-heading-respect-content
7599 (equal arg '(4))))
7600 (initial-content "")
7601 (adjust-empty-lines t))
7603 (cond
7605 ((or (= (buffer-size) 0)
7606 (and (not (save-excursion
7607 (and (ignore-errors (org-back-to-heading invisible-ok))
7608 (org-at-heading-p))))
7609 (or arg (not itemp))))
7610 ;; At beginning of buffer or so high up that only a heading
7611 ;; makes sense.
7612 (cond ((and (bolp) (not respect-content)) (insert "* "))
7613 ((not respect-content)
7614 (unless may-split (end-of-line))
7615 (insert "\n* "))
7616 ((re-search-forward org-outline-regexp-bol nil t)
7617 (beginning-of-line)
7618 (insert "* \n")
7619 (backward-char))
7620 (t (goto-char (point-max))
7621 (insert "\n* ")))
7622 (run-hooks 'org-insert-heading-hook))
7624 ((and itemp (not (member arg '((4) (16)))) (org-insert-item)))
7627 ;; Maybe move at the end of the subtree
7628 (when (equal arg '(16))
7629 (org-up-heading-safe)
7630 (org-end-of-subtree t))
7631 ;; Insert a heading
7632 (save-restriction
7633 (widen)
7634 (let* ((level nil)
7635 (on-heading (org-at-heading-p))
7636 (empty-line-p (if on-heading
7637 (org-previous-line-empty-p)
7638 ;; We will decide later
7639 nil))
7640 ;; Get a level string to fall back on
7641 (fix-level
7642 (if (org-before-first-heading-p) "*"
7643 (save-excursion
7644 (org-back-to-heading t)
7645 (if (org-previous-line-empty-p) (setq empty-line-p t))
7646 (looking-at org-outline-regexp)
7647 (make-string (1- (length (match-string 0))) ?*))))
7648 (stars
7649 (save-excursion
7650 (condition-case nil
7651 (progn
7652 (org-back-to-heading invisible-ok)
7653 (when (and (not on-heading)
7654 (featurep 'org-inlinetask)
7655 (integerp org-inlinetask-min-level)
7656 (>= (length (match-string 0))
7657 org-inlinetask-min-level))
7658 ;; Find a heading level before the inline task
7659 (while (and (setq level (org-up-heading-safe))
7660 (>= level org-inlinetask-min-level)))
7661 (if (org-at-heading-p)
7662 (org-back-to-heading invisible-ok)
7663 (error "This should not happen")))
7664 (unless (and (save-excursion
7665 (save-match-data
7666 (org-backward-heading-same-level
7667 1 invisible-ok))
7668 (= (point) (match-beginning 0)))
7669 (not (org-previous-line-empty-p t)))
7670 (setq empty-line-p (or empty-line-p
7671 (org-previous-line-empty-p))))
7672 (match-string 0))
7673 (error (or fix-level "* ")))))
7674 (blank-a (cdr (assq 'heading org-blank-before-new-entry)))
7675 (blank (if (eq blank-a 'auto) empty-line-p blank-a))
7676 pos hide-previous previous-pos)
7678 ;; If we insert after content, move there and clean up whitespace
7679 (when (and respect-content
7680 (not (org-looking-at-p org-outline-regexp-bol)))
7681 (if (not (org-before-first-heading-p))
7682 (org-end-of-subtree nil t)
7683 (re-search-forward org-outline-regexp-bol)
7684 (beginning-of-line 0))
7685 (skip-chars-backward " \r\n")
7686 (and (not (looking-back "^\*+"))
7687 (looking-at "[ \t]+") (replace-match ""))
7688 (unless (eobp) (forward-char 1))
7689 (when (looking-at "^\\*")
7690 (unless (bobp) (backward-char 1))
7691 (insert "\n")))
7693 ;; If we are splitting, grab the text that should be moved to the new headline
7694 (when may-split
7695 (if (org-on-heading-p)
7696 ;; This is a heading, we split intelligently (keeping tags)
7697 (let ((pos (point)))
7698 (goto-char (point-at-bol))
7699 (unless (looking-at org-complex-heading-regexp)
7700 (error "This should not happen"))
7701 (when (and (match-beginning 4)
7702 (> pos (match-beginning 4))
7703 (< pos (match-end 4)))
7704 (setq initial-content (buffer-substring pos (match-end 4)))
7705 (goto-char pos)
7706 (delete-region (point) (match-end 4))
7707 (if (looking-at "[ \t]*$")
7708 (replace-match "")
7709 (insert (make-string (length initial-content) ?\ )))
7710 (setq initial-content (org-trim initial-content)))
7711 (goto-char pos))
7712 ;; a normal line
7713 (setq initial-content
7714 (org-trim (buffer-substring (point) (point-at-eol))))
7715 (delete-region (point) (point-at-eol))))
7717 ;; If we are at the beginning of the line, insert before it. Else after
7718 (cond
7719 ((and (bolp) (looking-at "[ \t]*$")))
7720 ((and (bolp) (not (looking-at "[ \t]*$")))
7721 (open-line 1))
7723 (goto-char (point-at-eol))
7724 (insert "\n")))
7726 ;; Insert the new heading
7727 (insert stars)
7728 (just-one-space)
7729 (insert initial-content)
7730 (when adjust-empty-lines
7731 (if (or (not blank)
7732 (and blank (not (org-previous-line-empty-p))))
7733 (org-N-empty-lines-before-current (if blank 1 0))))
7734 (run-hooks 'org-insert-heading-hook)))))))
7736 (defun org-N-empty-lines-before-current (N)
7737 "Make the number of empty lines before current exactly N.
7738 So this will delete or add empty lines."
7739 (save-excursion
7740 (beginning-of-line)
7741 (let ((p (point)))
7742 (skip-chars-backward " \r\t\n")
7743 (unless (bolp) (forward-line))
7744 (delete-region (point) p))
7745 (when (> N 0) (insert (make-string N ?\n)))))
7747 (defun org-get-heading (&optional no-tags no-todo)
7748 "Return the heading of the current entry, without the stars.
7749 When NO-TAGS is non-nil, don't include tags.
7750 When NO-TODO is non-nil, don't include TODO keywords."
7751 (save-excursion
7752 (org-back-to-heading t)
7753 (cond
7754 ((and no-tags no-todo)
7755 (looking-at org-complex-heading-regexp)
7756 (match-string 4))
7757 (no-tags
7758 (looking-at (concat org-outline-regexp
7759 "\\(.*?\\)"
7760 "\\(?:[ \t]+:[[:alnum:]:_@#%]+:\\)?[ \t]*$"))
7761 (match-string 1))
7762 (no-todo
7763 (looking-at org-todo-line-regexp)
7764 (match-string 3))
7765 (t (looking-at org-heading-regexp)
7766 (match-string 2)))))
7768 (defvar orgstruct-mode) ; defined below
7770 (defun org-heading-components ()
7771 "Return the components of the current heading.
7772 This is a list with the following elements:
7773 - the level as an integer
7774 - the reduced level, different if `org-odd-levels-only' is set.
7775 - the TODO keyword, or nil
7776 - the priority character, like ?A, or nil if no priority is given
7777 - the headline text itself, or the tags string if no headline text
7778 - the tags string, or nil."
7779 (save-excursion
7780 (org-back-to-heading t)
7781 (if (let (case-fold-search)
7782 (looking-at
7783 (if orgstruct-mode
7784 org-heading-regexp
7785 org-complex-heading-regexp)))
7786 (if orgstruct-mode
7787 (list (length (match-string 1))
7788 (org-reduced-level (length (match-string 1)))
7791 (match-string 2)
7792 nil)
7793 (list (length (match-string 1))
7794 (org-reduced-level (length (match-string 1)))
7795 (org-match-string-no-properties 2)
7796 (and (match-end 3) (aref (match-string 3) 2))
7797 (org-match-string-no-properties 4)
7798 (org-match-string-no-properties 5))))))
7800 (defun org-get-entry ()
7801 "Get the entry text, after heading, entire subtree."
7802 (save-excursion
7803 (org-back-to-heading t)
7804 (buffer-substring (point-at-bol 2) (org-end-of-subtree t))))
7806 (defun org-insert-heading-after-current ()
7807 "Insert a new heading with same level as current, after current subtree."
7808 (interactive)
7809 (org-back-to-heading)
7810 (org-insert-heading)
7811 (org-move-subtree-down)
7812 (end-of-line 1))
7814 (defun org-insert-heading-respect-content (&optional invisible-ok)
7815 "Insert heading with `org-insert-heading-respect-content' set to t."
7816 (interactive)
7817 (org-insert-heading '(4) invisible-ok))
7819 (defun org-insert-todo-heading-respect-content (&optional force-state)
7820 "Insert TODO heading with `org-insert-heading-respect-content' set to t."
7821 (interactive)
7822 (org-insert-todo-heading force-state '(4)))
7824 (defun org-insert-todo-heading (arg &optional force-heading)
7825 "Insert a new heading with the same level and TODO state as current heading.
7826 If the heading has no TODO state, or if the state is DONE, use the first
7827 state (TODO by default). Also with one prefix arg, force first state. With
7828 two prefix args, force inserting at the end of the parent subtree."
7829 (interactive "P")
7830 (when (or force-heading (not (org-insert-item 'checkbox)))
7831 (org-insert-heading (or (and (equal arg '(16)) '(16))
7832 force-heading))
7833 (save-excursion
7834 (org-back-to-heading)
7835 (outline-previous-heading)
7836 (looking-at org-todo-line-regexp))
7837 (let*
7838 ((new-mark-x
7839 (if (or (equal arg '(4))
7840 (not (match-beginning 2))
7841 (member (match-string 2) org-done-keywords))
7842 (car org-todo-keywords-1)
7843 (match-string 2)))
7844 (new-mark
7846 (run-hook-with-args-until-success
7847 'org-todo-get-default-hook new-mark-x nil)
7848 new-mark-x)))
7849 (beginning-of-line 1)
7850 (and (looking-at org-outline-regexp) (goto-char (match-end 0))
7851 (if org-treat-insert-todo-heading-as-state-change
7852 (org-todo new-mark)
7853 (insert new-mark " "))))
7854 (when org-provide-todo-statistics
7855 (org-update-parent-todo-statistics))))
7857 (defun org-insert-subheading (arg)
7858 "Insert a new subheading and demote it.
7859 Works for outline headings and for plain lists alike."
7860 (interactive "P")
7861 (org-insert-heading arg)
7862 (cond
7863 ((org-at-heading-p) (org-do-demote))
7864 ((org-at-item-p) (org-indent-item))))
7866 (defun org-insert-todo-subheading (arg)
7867 "Insert a new subheading with TODO keyword or checkbox and demote it.
7868 Works for outline headings and for plain lists alike."
7869 (interactive "P")
7870 (org-insert-todo-heading arg)
7871 (cond
7872 ((org-at-heading-p) (org-do-demote))
7873 ((org-at-item-p) (org-indent-item))))
7875 ;;; Promotion and Demotion
7877 (defvar org-after-demote-entry-hook nil
7878 "Hook run after an entry has been demoted.
7879 The cursor will be at the beginning of the entry.
7880 When a subtree is being demoted, the hook will be called for each node.")
7882 (defvar org-after-promote-entry-hook nil
7883 "Hook run after an entry has been promoted.
7884 The cursor will be at the beginning of the entry.
7885 When a subtree is being promoted, the hook will be called for each node.")
7887 (defun org-promote-subtree ()
7888 "Promote the entire subtree.
7889 See also `org-promote'."
7890 (interactive)
7891 (save-excursion
7892 (org-with-limited-levels (org-map-tree 'org-promote)))
7893 (org-fix-position-after-promote))
7895 (defun org-demote-subtree ()
7896 "Demote the entire subtree. See `org-demote'.
7897 See also `org-promote'."
7898 (interactive)
7899 (save-excursion
7900 (org-with-limited-levels (org-map-tree 'org-demote)))
7901 (org-fix-position-after-promote))
7904 (defun org-do-promote ()
7905 "Promote the current heading higher up the tree.
7906 If the region is active in `transient-mark-mode', promote all headings
7907 in the region."
7908 (interactive)
7909 (save-excursion
7910 (if (org-region-active-p)
7911 (org-map-region 'org-promote (region-beginning) (region-end))
7912 (org-promote)))
7913 (org-fix-position-after-promote))
7915 (defun org-do-demote ()
7916 "Demote the current heading lower down the tree.
7917 If the region is active in `transient-mark-mode', demote all headings
7918 in the region."
7919 (interactive)
7920 (save-excursion
7921 (if (org-region-active-p)
7922 (org-map-region 'org-demote (region-beginning) (region-end))
7923 (org-demote)))
7924 (org-fix-position-after-promote))
7926 (defun org-fix-position-after-promote ()
7927 "Make sure that after pro/demotion cursor position is right."
7928 (let ((pos (point)))
7929 (when (save-excursion
7930 (beginning-of-line 1)
7931 (looking-at org-todo-line-regexp)
7932 (or (equal pos (match-end 1)) (equal pos (match-end 2))))
7933 (cond ((eobp) (insert " "))
7934 ((eolp) (insert " "))
7935 ((equal (char-after) ?\ ) (forward-char 1))))))
7937 (defun org-current-level ()
7938 "Return the level of the current entry, or nil if before the first headline.
7939 The level is the number of stars at the beginning of the headline."
7940 (save-excursion
7941 (org-with-limited-levels
7942 (if (ignore-errors (org-back-to-heading t))
7943 (funcall outline-level)))))
7945 (defun org-get-previous-line-level ()
7946 "Return the outline depth of the last headline before the current line.
7947 Returns 0 for the first headline in the buffer, and nil if before the
7948 first headline."
7949 (and (org-current-level)
7950 (or (and (/= (line-beginning-position) (point-min))
7951 (save-excursion (beginning-of-line 0) (org-current-level)))
7952 0)))
7954 (defun org-reduced-level (l)
7955 "Compute the effective level of a heading.
7956 This takes into account the setting of `org-odd-levels-only'."
7957 (cond
7958 ((zerop l) 0)
7959 (org-odd-levels-only (1+ (floor (/ l 2))))
7960 (t l)))
7962 (defun org-level-increment ()
7963 "Return the number of stars that will be added or removed at a
7964 time to headlines when structure editing, based on the value of
7965 `org-odd-levels-only'."
7966 (if org-odd-levels-only 2 1))
7968 (defun org-get-valid-level (level &optional change)
7969 "Rectify a level change under the influence of `org-odd-levels-only'
7970 LEVEL is a current level, CHANGE is by how much the level should be
7971 modified. Even if CHANGE is nil, LEVEL may be returned modified because
7972 even level numbers will become the next higher odd number."
7973 (if org-odd-levels-only
7974 (cond ((or (not change) (= 0 change)) (1+ (* 2 (/ level 2))))
7975 ((> change 0) (1+ (* 2 (/ (+ level (* 2 change)) 2))))
7976 ((< change 0) (max 1 (1+ (* 2 (/ (+ level (* 2 change)) 2))))))
7977 (max 1 (+ level (or change 0)))))
7979 (if (boundp 'define-obsolete-function-alias)
7980 (if (or (featurep 'xemacs) (< emacs-major-version 23))
7981 (define-obsolete-function-alias 'org-get-legal-level
7982 'org-get-valid-level)
7983 (define-obsolete-function-alias 'org-get-legal-level
7984 'org-get-valid-level "23.1")))
7986 (defun org-promote ()
7987 "Promote the current heading higher up the tree.
7988 If the region is active in `transient-mark-mode', promote all headings
7989 in the region."
7990 (org-back-to-heading t)
7991 (let* ((level (save-match-data (funcall outline-level)))
7992 (after-change-functions (remove 'flyspell-after-change-function
7993 after-change-functions))
7994 (up-head (concat (make-string (org-get-valid-level level -1) ?*) " "))
7995 (diff (abs (- level (length up-head) -1))))
7996 (cond ((and (= level 1) org-called-with-limited-levels
7997 org-allow-promoting-top-level-subtree)
7998 (replace-match "# " nil t))
7999 ((= level 1)
8000 (user-error "Cannot promote to level 0. UNDO to recover if necessary"))
8001 (t (replace-match up-head nil t)))
8002 ;; Fixup tag positioning
8003 (unless (= level 1)
8004 (and org-auto-align-tags (org-set-tags nil 'ignore-column))
8005 (if org-adapt-indentation (org-fixup-indentation (- diff))))
8006 (run-hooks 'org-after-promote-entry-hook)))
8008 (defun org-demote ()
8009 "Demote the current heading lower down the tree.
8010 If the region is active in `transient-mark-mode', demote all headings
8011 in the region."
8012 (org-back-to-heading t)
8013 (let* ((level (save-match-data (funcall outline-level)))
8014 (after-change-functions (remove 'flyspell-after-change-function
8015 after-change-functions))
8016 (down-head (concat (make-string (org-get-valid-level level 1) ?*) " "))
8017 (diff (abs (- level (length down-head) -1))))
8018 (replace-match down-head nil t)
8019 ;; Fixup tag positioning
8020 (and org-auto-align-tags (org-set-tags nil 'ignore-column))
8021 (if org-adapt-indentation (org-fixup-indentation diff))
8022 (run-hooks 'org-after-demote-entry-hook)))
8024 (defun org-cycle-level ()
8025 "Cycle the level of an empty headline through possible states.
8026 This goes first to child, then to parent, level, then up the hierarchy.
8027 After top level, it switches back to sibling level."
8028 (interactive)
8029 (let ((org-adapt-indentation nil))
8030 (when (org-point-at-end-of-empty-headline)
8031 (setq this-command 'org-cycle-level) ; Only needed for caching
8032 (let ((cur-level (org-current-level))
8033 (prev-level (org-get-previous-line-level)))
8034 (cond
8035 ;; If first headline in file, promote to top-level.
8036 ((= prev-level 0)
8037 (loop repeat (/ (- cur-level 1) (org-level-increment))
8038 do (org-do-promote)))
8039 ;; If same level as prev, demote one.
8040 ((= prev-level cur-level)
8041 (org-do-demote))
8042 ;; If parent is top-level, promote to top level if not already.
8043 ((= prev-level 1)
8044 (loop repeat (/ (- cur-level 1) (org-level-increment))
8045 do (org-do-promote)))
8046 ;; If top-level, return to prev-level.
8047 ((= cur-level 1)
8048 (loop repeat (/ (- prev-level 1) (org-level-increment))
8049 do (org-do-demote)))
8050 ;; If less than prev-level, promote one.
8051 ((< cur-level prev-level)
8052 (org-do-promote))
8053 ;; If deeper than prev-level, promote until higher than
8054 ;; prev-level.
8055 ((> cur-level prev-level)
8056 (loop repeat (+ 1 (/ (- cur-level prev-level) (org-level-increment)))
8057 do (org-do-promote))))
8058 t))))
8060 (defun org-map-tree (fun)
8061 "Call FUN for every heading underneath the current one."
8062 (org-back-to-heading)
8063 (let ((level (funcall outline-level)))
8064 (save-excursion
8065 (funcall fun)
8066 (while (and (progn
8067 (outline-next-heading)
8068 (> (funcall outline-level) level))
8069 (not (eobp)))
8070 (funcall fun)))))
8072 (defun org-map-region (fun beg end)
8073 "Call FUN for every heading between BEG and END."
8074 (let ((org-ignore-region t))
8075 (save-excursion
8076 (setq end (copy-marker end))
8077 (goto-char beg)
8078 (if (and (re-search-forward org-outline-regexp-bol nil t)
8079 (< (point) end))
8080 (funcall fun))
8081 (while (and (progn
8082 (outline-next-heading)
8083 (< (point) end))
8084 (not (eobp)))
8085 (funcall fun)))))
8087 (defvar org-property-end-re) ; silence byte-compiler
8088 (defun org-fixup-indentation (diff)
8089 "Change the indentation in the current entry by DIFF.
8090 However, if any line in the current entry has no indentation, or if it
8091 would end up with no indentation after the change, nothing at all is done."
8092 (save-excursion
8093 (let ((end (save-excursion (outline-next-heading)
8094 (point-marker)))
8095 (prohibit (if (> diff 0)
8096 "^\\S-"
8097 (concat "^ \\{0," (int-to-string (- diff)) "\\}\\S-")))
8098 col)
8099 (unless (save-excursion (end-of-line 1)
8100 (re-search-forward prohibit end t))
8101 (while (and (< (point) end)
8102 (re-search-forward "^[ \t]+" end t))
8103 (goto-char (match-end 0))
8104 (setq col (current-column))
8105 (if (< diff 0) (replace-match ""))
8106 (org-indent-to-column (+ diff col))))
8107 (move-marker end nil))))
8109 (defun org-convert-to-odd-levels ()
8110 "Convert an org-mode file with all levels allowed to one with odd levels.
8111 This will leave level 1 alone, convert level 2 to level 3, level 3 to
8112 level 5 etc."
8113 (interactive)
8114 (when (yes-or-no-p "Are you sure you want to globally change levels to odd? ")
8115 (let ((outline-level 'org-outline-level)
8116 (org-odd-levels-only nil) n)
8117 (save-excursion
8118 (goto-char (point-min))
8119 (while (re-search-forward "^\\*\\*+ " nil t)
8120 (setq n (- (length (match-string 0)) 2))
8121 (while (>= (setq n (1- n)) 0)
8122 (org-demote))
8123 (end-of-line 1))))))
8125 (defun org-convert-to-oddeven-levels ()
8126 "Convert an org-mode file with only odd levels to one with odd/even levels.
8127 This promotes level 3 to level 2, level 5 to level 3 etc. If the
8128 file contains a section with an even level, conversion would
8129 destroy the structure of the file. An error is signaled in this
8130 case."
8131 (interactive)
8132 (goto-char (point-min))
8133 ;; First check if there are no even levels
8134 (when (re-search-forward "^\\(\\*\\*\\)+ " nil t)
8135 (org-show-context t)
8136 (error "Not all levels are odd in this file. Conversion not possible"))
8137 (when (yes-or-no-p "Are you sure you want to globally change levels to odd-even? ")
8138 (let ((outline-regexp org-outline-regexp)
8139 (outline-level 'org-outline-level)
8140 (org-odd-levels-only nil) n)
8141 (save-excursion
8142 (goto-char (point-min))
8143 (while (re-search-forward "^\\*\\*+ " nil t)
8144 (setq n (/ (1- (length (match-string 0))) 2))
8145 (while (>= (setq n (1- n)) 0)
8146 (org-promote))
8147 (end-of-line 1))))))
8149 (defun org-tr-level (n)
8150 "Make N odd if required."
8151 (if org-odd-levels-only (1+ (/ n 2)) n))
8153 ;;; Vertical tree motion, cutting and pasting of subtrees
8155 (defun org-move-subtree-up (&optional arg)
8156 "Move the current subtree up past ARG headlines of the same level."
8157 (interactive "p")
8158 (org-move-subtree-down (- (prefix-numeric-value arg))))
8160 (defun org-move-subtree-down (&optional arg)
8161 "Move the current subtree down past ARG headlines of the same level."
8162 (interactive "p")
8163 (setq arg (prefix-numeric-value arg))
8164 (let ((movfunc (if (> arg 0) 'org-get-next-sibling
8165 'org-get-last-sibling))
8166 (ins-point (make-marker))
8167 (cnt (abs arg))
8168 (col (current-column))
8169 beg beg0 end txt folded ne-beg ne-end ne-ins ins-end)
8170 ;; Select the tree
8171 (org-back-to-heading)
8172 (setq beg0 (point))
8173 (save-excursion
8174 (setq ne-beg (org-back-over-empty-lines))
8175 (setq beg (point)))
8176 (save-match-data
8177 (save-excursion (outline-end-of-heading)
8178 (setq folded (outline-invisible-p)))
8179 (progn (org-end-of-subtree nil t)
8180 (unless (eobp) (backward-char))))
8181 (outline-next-heading)
8182 (setq ne-end (org-back-over-empty-lines))
8183 (setq end (point))
8184 (goto-char beg0)
8185 (when (and (> arg 0) (org-first-sibling-p) (< ne-end ne-beg))
8186 ;; include less whitespace
8187 (save-excursion
8188 (goto-char beg)
8189 (forward-line (- ne-beg ne-end))
8190 (setq beg (point))))
8191 ;; Find insertion point, with error handling
8192 (while (> cnt 0)
8193 (or (and (funcall movfunc) (looking-at org-outline-regexp))
8194 (progn (goto-char beg0)
8195 (user-error "Cannot move past superior level or buffer limit")))
8196 (setq cnt (1- cnt)))
8197 (if (> arg 0)
8198 ;; Moving forward - still need to move over subtree
8199 (progn (org-end-of-subtree t t)
8200 (save-excursion
8201 (org-back-over-empty-lines)
8202 (or (bolp) (newline)))))
8203 (setq ne-ins (org-back-over-empty-lines))
8204 (move-marker ins-point (point))
8205 (setq txt (buffer-substring beg end))
8206 (org-save-markers-in-region beg end)
8207 (delete-region beg end)
8208 (org-remove-empty-overlays-at beg)
8209 (or (= beg (point-min)) (outline-flag-region (1- beg) beg nil))
8210 (or (bobp) (outline-flag-region (1- (point)) (point) nil))
8211 (and (not (bolp)) (looking-at "\n") (forward-char 1))
8212 (let ((bbb (point)))
8213 (insert-before-markers txt)
8214 (org-reinstall-markers-in-region bbb)
8215 (move-marker ins-point bbb))
8216 (or (bolp) (insert "\n"))
8217 (setq ins-end (point))
8218 (goto-char ins-point)
8219 (org-skip-whitespace)
8220 (when (and (< arg 0)
8221 (org-first-sibling-p)
8222 (> ne-ins ne-beg))
8223 ;; Move whitespace back to beginning
8224 (save-excursion
8225 (goto-char ins-end)
8226 (let ((kill-whole-line t))
8227 (kill-line (- ne-ins ne-beg)) (point)))
8228 (insert (make-string (- ne-ins ne-beg) ?\n)))
8229 (move-marker ins-point nil)
8230 (if folded
8231 (hide-subtree)
8232 (org-show-entry)
8233 (show-children)
8234 (org-cycle-hide-drawers 'children))
8235 (org-clean-visibility-after-subtree-move)
8236 ;; move back to the initial column we were at
8237 (move-to-column col)))
8239 (defvar org-subtree-clip ""
8240 "Clipboard for cut and paste of subtrees.
8241 This is actually only a copy of the kill, because we use the normal kill
8242 ring. We need it to check if the kill was created by `org-copy-subtree'.")
8244 (defvar org-subtree-clip-folded nil
8245 "Was the last copied subtree folded?
8246 This is used to fold the tree back after pasting.")
8248 (defun org-cut-subtree (&optional n)
8249 "Cut the current subtree into the clipboard.
8250 With prefix arg N, cut this many sequential subtrees.
8251 This is a short-hand for marking the subtree and then cutting it."
8252 (interactive "p")
8253 (org-copy-subtree n 'cut))
8255 (defun org-copy-subtree (&optional n cut force-store-markers nosubtrees)
8256 "Copy the current subtree it in the clipboard.
8257 With prefix arg N, copy this many sequential subtrees.
8258 This is a short-hand for marking the subtree and then copying it.
8259 If CUT is non-nil, actually cut the subtree.
8260 If FORCE-STORE-MARKERS is non-nil, store the relative locations
8261 of some markers in the region, even if CUT is non-nil. This is
8262 useful if the caller implements cut-and-paste as copy-then-paste-then-cut."
8263 (interactive "p")
8264 (let (beg end folded (beg0 (point)))
8265 (if (org-called-interactively-p 'any)
8266 (org-back-to-heading nil) ; take what looks like a subtree
8267 (org-back-to-heading t)) ; take what is really there
8268 (setq beg (point))
8269 (skip-chars-forward " \t\r\n")
8270 (save-match-data
8271 (if nosubtrees
8272 (outline-next-heading)
8273 (save-excursion (outline-end-of-heading)
8274 (setq folded (outline-invisible-p)))
8275 (condition-case nil
8276 (org-forward-heading-same-level (1- n) t)
8277 (error nil))
8278 (org-end-of-subtree t t)))
8279 (setq end (point))
8280 (goto-char beg0)
8281 (when (> end beg)
8282 (setq org-subtree-clip-folded folded)
8283 (when (or cut force-store-markers)
8284 (org-save-markers-in-region beg end))
8285 (if cut (kill-region beg end) (copy-region-as-kill beg end))
8286 (setq org-subtree-clip (current-kill 0))
8287 (message "%s: Subtree(s) with %d characters"
8288 (if cut "Cut" "Copied")
8289 (length org-subtree-clip)))))
8291 (defun org-paste-subtree (&optional level tree for-yank)
8292 "Paste the clipboard as a subtree, with modification of headline level.
8293 The entire subtree is promoted or demoted in order to match a new headline
8294 level.
8296 If the cursor is at the beginning of a headline, the same level as
8297 that headline is used to paste the tree.
8299 If not, the new level is derived from the *visible* headings
8300 before and after the insertion point, and taken to be the inferior headline
8301 level of the two. So if the previous visible heading is level 3 and the
8302 next is level 4 (or vice versa), level 4 will be used for insertion.
8303 This makes sure that the subtree remains an independent subtree and does
8304 not swallow low level entries.
8306 You can also force a different level, either by using a numeric prefix
8307 argument, or by inserting the heading marker by hand. For example, if the
8308 cursor is after \"*****\", then the tree will be shifted to level 5.
8310 If optional TREE is given, use this text instead of the kill ring.
8312 When FOR-YANK is set, this is called by `org-yank'. In this case, do not
8313 move back over whitespace before inserting, and move point to the end of
8314 the inserted text when done."
8315 (interactive "P")
8316 (setq tree (or tree (and kill-ring (current-kill 0))))
8317 (unless (org-kill-is-subtree-p tree)
8318 (user-error "%s"
8319 (substitute-command-keys
8320 "The kill is not a (set of) tree(s) - please use \\[yank] to yank anyway")))
8321 (org-with-limited-levels
8322 (let* ((visp (not (outline-invisible-p)))
8323 (txt tree)
8324 (^re_ "\\(\\*+\\)[ \t]*")
8325 (old-level (if (string-match org-outline-regexp-bol txt)
8326 (- (match-end 0) (match-beginning 0) 1)
8327 -1))
8328 (force-level (cond (level (prefix-numeric-value level))
8329 ((and (looking-at "[ \t]*$")
8330 (string-match
8331 "^\\*+$" (buffer-substring
8332 (point-at-bol) (point))))
8333 (- (match-end 0) (match-beginning 0)))
8334 ((and (bolp)
8335 (looking-at org-outline-regexp))
8336 (- (match-end 0) (point) 1))))
8337 (previous-level (save-excursion
8338 (condition-case nil
8339 (progn
8340 (outline-previous-visible-heading 1)
8341 (if (looking-at ^re_)
8342 (- (match-end 0) (match-beginning 0) 1)
8344 (error 1))))
8345 (next-level (save-excursion
8346 (condition-case nil
8347 (progn
8348 (or (looking-at org-outline-regexp)
8349 (outline-next-visible-heading 1))
8350 (if (looking-at ^re_)
8351 (- (match-end 0) (match-beginning 0) 1)
8353 (error 1))))
8354 (new-level (or force-level (max previous-level next-level)))
8355 (shift (if (or (= old-level -1)
8356 (= new-level -1)
8357 (= old-level new-level))
8359 (- new-level old-level)))
8360 (delta (if (> shift 0) -1 1))
8361 (func (if (> shift 0) 'org-demote 'org-promote))
8362 (org-odd-levels-only nil)
8363 beg end newend)
8364 ;; Remove the forced level indicator
8365 (if force-level
8366 (delete-region (point-at-bol) (point)))
8367 ;; Paste
8368 (beginning-of-line (if (bolp) 1 2))
8369 (setq beg (point))
8370 (and (fboundp 'org-id-paste-tracker) (org-id-paste-tracker txt))
8371 (insert-before-markers txt)
8372 (unless (string-match "\n\\'" txt) (insert "\n"))
8373 (setq newend (point))
8374 (org-reinstall-markers-in-region beg)
8375 (setq end (point))
8376 (goto-char beg)
8377 (skip-chars-forward " \t\n\r")
8378 (setq beg (point))
8379 (if (and (outline-invisible-p) visp)
8380 (save-excursion (outline-show-heading)))
8381 ;; Shift if necessary
8382 (unless (= shift 0)
8383 (save-restriction
8384 (narrow-to-region beg end)
8385 (while (not (= shift 0))
8386 (org-map-region func (point-min) (point-max))
8387 (setq shift (+ delta shift)))
8388 (goto-char (point-min))
8389 (setq newend (point-max))))
8390 (when (or (org-called-interactively-p 'interactive) for-yank)
8391 (message "Clipboard pasted as level %d subtree" new-level))
8392 (if (and (not for-yank) ; in this case, org-yank will decide about folding
8393 kill-ring
8394 (eq org-subtree-clip (current-kill 0))
8395 org-subtree-clip-folded)
8396 ;; The tree was folded before it was killed/copied
8397 (hide-subtree))
8398 (and for-yank (goto-char newend)))))
8400 (defun org-kill-is-subtree-p (&optional txt)
8401 "Check if the current kill is an outline subtree, or a set of trees.
8402 Returns nil if kill does not start with a headline, or if the first
8403 headline level is not the largest headline level in the tree.
8404 So this will actually accept several entries of equal levels as well,
8405 which is OK for `org-paste-subtree'.
8406 If optional TXT is given, check this string instead of the current kill."
8407 (let* ((kill (or txt (and kill-ring (current-kill 0)) ""))
8408 (re (org-get-limited-outline-regexp))
8409 (^re (concat "^" re))
8410 (start-level (and kill
8411 (string-match
8412 (concat "\\`\\([ \t\n\r]*?\n\\)?\\(" re "\\)")
8413 kill)
8414 (- (match-end 2) (match-beginning 2) 1)))
8415 (start (1+ (or (match-beginning 2) -1))))
8416 (if (not start-level)
8417 (progn
8418 nil) ;; does not even start with a heading
8419 (catch 'exit
8420 (while (setq start (string-match ^re kill (1+ start)))
8421 (when (< (- (match-end 0) (match-beginning 0) 1) start-level)
8422 (throw 'exit nil)))
8423 t))))
8425 (defvar org-markers-to-move nil
8426 "Markers that should be moved with a cut-and-paste operation.
8427 Those markers are stored together with their positions relative to
8428 the start of the region.")
8430 (defun org-save-markers-in-region (beg end)
8431 "Check markers in region.
8432 If these markers are between BEG and END, record their position relative
8433 to BEG, so that after moving the block of text, we can put the markers back
8434 into place.
8435 This function gets called just before an entry or tree gets cut from the
8436 buffer. After re-insertion, `org-reinstall-markers-in-region' must be
8437 called immediately, to move the markers with the entries."
8438 (setq org-markers-to-move nil)
8439 (when (featurep 'org-clock)
8440 (org-clock-save-markers-for-cut-and-paste beg end))
8441 (when (featurep 'org-agenda)
8442 (org-agenda-save-markers-for-cut-and-paste beg end)))
8444 (defun org-check-and-save-marker (marker beg end)
8445 "Check if MARKER is between BEG and END.
8446 If yes, remember the marker and the distance to BEG."
8447 (when (and (marker-buffer marker)
8448 (equal (marker-buffer marker) (current-buffer)))
8449 (if (and (>= marker beg) (< marker end))
8450 (push (cons marker (- marker beg)) org-markers-to-move))))
8452 (defun org-reinstall-markers-in-region (beg)
8453 "Move all remembered markers to their position relative to BEG."
8454 (mapc (lambda (x)
8455 (move-marker (car x) (+ beg (cdr x))))
8456 org-markers-to-move)
8457 (setq org-markers-to-move nil))
8459 (defun org-narrow-to-subtree ()
8460 "Narrow buffer to the current subtree."
8461 (interactive)
8462 (save-excursion
8463 (save-match-data
8464 (org-with-limited-levels
8465 (narrow-to-region
8466 (progn (org-back-to-heading t) (point))
8467 (progn (org-end-of-subtree t t)
8468 (if (and (org-at-heading-p) (not (eobp))) (backward-char 1))
8469 (point)))))))
8471 (defun org-narrow-to-block ()
8472 "Narrow buffer to the current block."
8473 (interactive)
8474 (let* ((case-fold-search t)
8475 (blockp (org-between-regexps-p "^[ \t]*#\\+begin_.*"
8476 "^[ \t]*#\\+end_.*")))
8477 (if blockp
8478 (narrow-to-region (car blockp) (cdr blockp))
8479 (user-error "Not in a block"))))
8481 (eval-when-compile
8482 (defvar org-property-drawer-re))
8484 (defvar org-property-start-re) ;; defined below
8485 (defun org-clone-subtree-with-time-shift (n &optional shift)
8486 "Clone the task (subtree) at point N times.
8487 The clones will be inserted as siblings.
8489 In interactive use, the user will be prompted for the number of
8490 clones to be produced. If the entry has a timestamp, the user
8491 will also be prompted for a time shift, which may be a repeater
8492 as used in time stamps, for example `+3d'. To disable this,
8493 you can call the function with a universal prefix argument.
8495 When a valid repeater is given and the entry contains any time
8496 stamps, the clones will become a sequence in time, with time
8497 stamps in the subtree shifted for each clone produced. If SHIFT
8498 is nil or the empty string, time stamps will be left alone. The
8499 ID property of the original subtree is removed.
8501 If the original subtree did contain time stamps with a repeater,
8502 the following will happen:
8503 - the repeater will be removed in each clone
8504 - an additional clone will be produced, with the current, unshifted
8505 date(s) in the entry.
8506 - the original entry will be placed *after* all the clones, with
8507 repeater intact.
8508 - the start days in the repeater in the original entry will be shifted
8509 to past the last clone.
8510 In this way you can spell out a number of instances of a repeating task,
8511 and still retain the repeater to cover future instances of the task."
8512 (interactive "nNumber of clones to produce: ")
8513 (let ((shift
8514 (or shift
8515 (if (and (not (equal current-prefix-arg '(4)))
8516 (save-excursion
8517 (re-search-forward org-ts-regexp-both
8518 (save-excursion
8519 (org-end-of-subtree t)
8520 (point)) t)))
8521 (read-from-minibuffer
8522 "Date shift per clone (e.g. +1w, empty to copy unchanged): ")
8523 ""))) ;; No time shift
8524 (n-no-remove -1)
8525 (drawer-re org-drawer-regexp)
8526 beg end template task idprop
8527 shift-n shift-what doshift nmin nmax)
8528 (if (not (and (integerp n) (> n 0)))
8529 (error "Invalid number of replications %s" n))
8530 (if (and (setq doshift (and (stringp shift) (string-match "\\S-" shift)))
8531 (not (string-match "\\`[ \t]*\\+?\\([0-9]+\\)\\([hdwmy]\\)[ \t]*\\'"
8532 shift)))
8533 (error "Invalid shift specification %s" shift))
8534 (when doshift
8535 (setq shift-n (string-to-number (match-string 1 shift))
8536 shift-what (cdr (assoc (match-string 2 shift)
8537 '(("d" . day) ("w" . week)
8538 ("m" . month) ("y" . year))))))
8539 (if (eq shift-what 'week) (setq shift-n (* 7 shift-n) shift-what 'day))
8540 (setq nmin 1 nmax n)
8541 (org-back-to-heading t)
8542 (setq beg (point))
8543 (setq idprop (org-entry-get nil "ID"))
8544 (org-end-of-subtree t t)
8545 (or (bolp) (insert "\n"))
8546 (setq end (point))
8547 (setq template (buffer-substring beg end))
8548 (when (and doshift
8549 (string-match "<[^<>\n]+ [.+]?\\+[0-9]+[hdwmy][^<>\n]*>" template))
8550 (delete-region beg end)
8551 (setq end beg)
8552 (setq nmin 0 nmax (1+ nmax) n-no-remove nmax))
8553 (goto-char end)
8554 (loop for n from nmin to nmax do
8555 ;; prepare clone
8556 (with-temp-buffer
8557 (insert template)
8558 (org-mode)
8559 (goto-char (point-min))
8560 (org-show-subtree)
8561 (and idprop (if org-clone-delete-id
8562 (org-entry-delete nil "ID")
8563 (org-id-get-create t)))
8564 (unless (= n 0)
8565 (while (re-search-forward "^[ \t]*CLOCK:.*$" nil t)
8566 (kill-whole-line))
8567 (goto-char (point-min))
8568 (while (re-search-forward drawer-re nil t)
8569 (mapc (lambda (d)
8570 (org-remove-empty-drawer-at d (point))) org-drawers)))
8571 (goto-char (point-min))
8572 (when doshift
8573 (while (re-search-forward org-ts-regexp-both nil t)
8574 (org-timestamp-change (* n shift-n) shift-what))
8575 (unless (= n n-no-remove)
8576 (goto-char (point-min))
8577 (while (re-search-forward org-ts-regexp nil t)
8578 (save-excursion
8579 (goto-char (match-beginning 0))
8580 (if (looking-at "<[^<>\n]+\\( +[.+]?\\+[0-9]+[hdwmy]\\)")
8581 (delete-region (match-beginning 1) (match-end 1)))))))
8582 (setq task (buffer-string)))
8583 (insert task))
8584 (goto-char beg)))
8586 ;;; Outline Sorting
8588 (defun org-sort (with-case)
8589 "Call `org-sort-entries', `org-table-sort-lines' or `org-sort-list'.
8590 Optional argument WITH-CASE means sort case-sensitively."
8591 (interactive "P")
8592 (cond
8593 ((org-at-table-p) (org-call-with-arg 'org-table-sort-lines with-case))
8594 ((org-at-item-p) (org-call-with-arg 'org-sort-list with-case))
8596 (org-call-with-arg 'org-sort-entries with-case))))
8598 (defun org-sort-remove-invisible (s)
8599 "Remove invisible links from string S."
8600 (remove-text-properties 0 (length s) org-rm-props s)
8601 (while (string-match org-bracket-link-regexp s)
8602 (setq s (replace-match (if (match-end 2)
8603 (match-string 3 s)
8604 (match-string 1 s)) t t s)))
8605 (let ((st (format " %s " s)))
8606 (while (string-match org-emph-re st)
8607 (setq st (replace-match (format " %s " (match-string 4 st)) t t st)))
8608 (setq s (substring st 1 -1)))
8611 (defvar org-priority-regexp) ; defined later in the file
8613 (defvar org-after-sorting-entries-or-items-hook nil
8614 "Hook that is run after a bunch of entries or items have been sorted.
8615 When children are sorted, the cursor is in the parent line when this
8616 hook gets called. When a region or a plain list is sorted, the cursor
8617 will be in the first entry of the sorted region/list.")
8619 (defun org-sort-entries
8620 (&optional with-case sorting-type getkey-func compare-func property)
8621 "Sort entries on a certain level of an outline tree.
8622 If there is an active region, the entries in the region are sorted.
8623 Else, if the cursor is before the first entry, sort the top-level items.
8624 Else, the children of the entry at point are sorted.
8626 Sorting can be alphabetically, numerically, by date/time as given by
8627 a time stamp, by a property, by priority order, or by a custom function.
8629 The command prompts for the sorting type unless it has been given to the
8630 function through the SORTING-TYPE argument, which needs to be a character,
8631 \(?n ?N ?a ?A ?t ?T ?s ?S ?d ?D ?p ?P ?o ?O ?r ?R ?f ?F). Here is the
8632 precise meaning of each character:
8634 n Numerically, by converting the beginning of the entry/item to a number.
8635 a Alphabetically, ignoring the TODO keyword and the priority, if any.
8636 o By order of TODO keywords.
8637 t By date/time, either the first active time stamp in the entry, or, if
8638 none exist, by the first inactive one.
8639 s By the scheduled date/time.
8640 d By deadline date/time.
8641 c By creation time, which is assumed to be the first inactive time stamp
8642 at the beginning of a line.
8643 p By priority according to the cookie.
8644 r By the value of a property.
8646 Capital letters will reverse the sort order.
8648 If the SORTING-TYPE is ?f or ?F, then GETKEY-FUNC specifies a function to be
8649 called with point at the beginning of the record. It must return either
8650 a string or a number that should serve as the sorting key for that record.
8652 Comparing entries ignores case by default. However, with an optional argument
8653 WITH-CASE, the sorting considers case as well.
8655 Sorting is done against the visible part of the headlines, it ignores hidden
8656 links."
8657 (interactive "P")
8658 (let ((case-func (if with-case 'identity 'downcase))
8659 (cmstr
8660 ;; The clock marker is lost when using `sort-subr', let's
8661 ;; store the clocking string.
8662 (when (equal (marker-buffer org-clock-marker) (current-buffer))
8663 (save-excursion
8664 (goto-char org-clock-marker)
8665 (looking-back "^.*") (match-string-no-properties 0))))
8666 start beg end stars re re2
8667 txt what tmp)
8668 ;; Find beginning and end of region to sort
8669 (cond
8670 ((org-region-active-p)
8671 ;; we will sort the region
8672 (setq end (region-end)
8673 what "region")
8674 (goto-char (region-beginning))
8675 (if (not (org-at-heading-p)) (outline-next-heading))
8676 (setq start (point)))
8677 ((or (org-at-heading-p)
8678 (condition-case nil (progn (org-back-to-heading) t) (error nil)))
8679 ;; we will sort the children of the current headline
8680 (org-back-to-heading)
8681 (setq start (point)
8682 end (progn (org-end-of-subtree t t)
8683 (or (bolp) (insert "\n"))
8684 (when (>= (org-back-over-empty-lines) 1)
8685 (forward-line 1))
8686 (point))
8687 what "children")
8688 (goto-char start)
8689 (show-subtree)
8690 (outline-next-heading))
8692 ;; we will sort the top-level entries in this file
8693 (goto-char (point-min))
8694 (or (org-at-heading-p) (outline-next-heading))
8695 (setq start (point))
8696 (goto-char (point-max))
8697 (beginning-of-line 1)
8698 (when (looking-at ".*?\\S-")
8699 ;; File ends in a non-white line
8700 (end-of-line 1)
8701 (insert "\n"))
8702 (setq end (point-max))
8703 (setq what "top-level")
8704 (goto-char start)
8705 (show-all)))
8707 (setq beg (point))
8708 (when (>= beg end) (goto-char start) (user-error "Nothing to sort"))
8710 (looking-at "\\(\\*+\\)")
8711 (setq stars (match-string 1)
8712 re (concat "^" (regexp-quote stars) " +")
8713 re2 (concat "^" (regexp-quote (substring stars 0 -1)) "[ \t\n]")
8714 txt (buffer-substring beg end))
8715 (if (not (equal (substring txt -1) "\n")) (setq txt (concat txt "\n")))
8716 (if (and (not (equal stars "*")) (string-match re2 txt))
8717 (user-error "Region to sort contains a level above the first entry"))
8719 (unless sorting-type
8720 (message
8721 "Sort %s: [a]lpha [n]umeric [p]riority p[r]operty todo[o]rder [f]unc
8722 [t]ime [s]cheduled [d]eadline [c]reated
8723 A/N/P/R/O/F/T/S/D/C means reversed:"
8724 what)
8725 (setq sorting-type (read-char-exclusive))
8727 (unless getkey-func
8728 (and (= (downcase sorting-type) ?f)
8729 (setq getkey-func
8730 (org-icompleting-read "Sort using function: "
8731 obarray 'fboundp t nil nil))
8732 (setq getkey-func (intern getkey-func))))
8734 (and (= (downcase sorting-type) ?r)
8735 (not property)
8736 (setq property
8737 (org-icompleting-read "Property: "
8738 (mapcar 'list (org-buffer-property-keys t))
8739 nil t))))
8741 (message "Sorting entries...")
8743 (save-restriction
8744 (narrow-to-region start end)
8745 (let ((dcst (downcase sorting-type))
8746 (case-fold-search nil)
8747 (now (current-time)))
8748 (sort-subr
8749 (/= dcst sorting-type)
8750 ;; This function moves to the beginning character of the "record" to
8751 ;; be sorted.
8752 (lambda nil
8753 (if (re-search-forward re nil t)
8754 (goto-char (match-beginning 0))
8755 (goto-char (point-max))))
8756 ;; This function moves to the last character of the "record" being
8757 ;; sorted.
8758 (lambda nil
8759 (save-match-data
8760 (condition-case nil
8761 (outline-forward-same-level 1)
8762 (error
8763 (goto-char (point-max))))))
8764 ;; This function returns the value that gets sorted against.
8765 (lambda nil
8766 (cond
8767 ((= dcst ?n)
8768 (if (looking-at org-complex-heading-regexp)
8769 (string-to-number (org-sort-remove-invisible (match-string 4)))
8770 nil))
8771 ((= dcst ?a)
8772 (if (looking-at org-complex-heading-regexp)
8773 (funcall case-func (org-sort-remove-invisible (match-string 4)))
8774 nil))
8775 ((= dcst ?t)
8776 (let ((end (save-excursion (outline-next-heading) (point))))
8777 (if (or (re-search-forward org-ts-regexp end t)
8778 (re-search-forward org-ts-regexp-both end t))
8779 (org-time-string-to-seconds (match-string 0))
8780 (org-float-time now))))
8781 ((= dcst ?c)
8782 (let ((end (save-excursion (outline-next-heading) (point))))
8783 (if (re-search-forward
8784 (concat "^[ \t]*\\[" org-ts-regexp1 "\\]")
8785 end t)
8786 (org-time-string-to-seconds (match-string 0))
8787 (org-float-time now))))
8788 ((= dcst ?s)
8789 (let ((end (save-excursion (outline-next-heading) (point))))
8790 (if (re-search-forward org-scheduled-time-regexp end t)
8791 (org-time-string-to-seconds (match-string 1))
8792 (org-float-time now))))
8793 ((= dcst ?d)
8794 (let ((end (save-excursion (outline-next-heading) (point))))
8795 (if (re-search-forward org-deadline-time-regexp end t)
8796 (org-time-string-to-seconds (match-string 1))
8797 (org-float-time now))))
8798 ((= dcst ?p)
8799 (if (re-search-forward org-priority-regexp (point-at-eol) t)
8800 (string-to-char (match-string 2))
8801 org-default-priority))
8802 ((= dcst ?r)
8803 (or (org-entry-get nil property) ""))
8804 ((= dcst ?o)
8805 (if (looking-at org-complex-heading-regexp)
8806 (- 9999 (length (member (match-string 2)
8807 org-todo-keywords-1)))))
8808 ((= dcst ?f)
8809 (if getkey-func
8810 (progn
8811 (setq tmp (funcall getkey-func))
8812 (if (stringp tmp) (setq tmp (funcall case-func tmp)))
8813 tmp)
8814 (error "Invalid key function `%s'" getkey-func)))
8815 (t (error "Invalid sorting type `%c'" sorting-type))))
8817 (cond
8818 ((= dcst ?a) 'string<)
8819 ((= dcst ?f) compare-func)
8820 ((member dcst '(?p ?t ?s ?d ?c)) '<)))))
8821 (run-hooks 'org-after-sorting-entries-or-items-hook)
8822 ;; Reset the clock marker if needed
8823 (when cmstr
8824 (save-excursion
8825 (goto-char start)
8826 (search-forward cmstr nil t)
8827 (move-marker org-clock-marker (point))))
8828 (message "Sorting entries...done")))
8830 (defun org-do-sort (table what &optional with-case sorting-type)
8831 "Sort TABLE of WHAT according to SORTING-TYPE.
8832 The user will be prompted for the SORTING-TYPE if the call to this
8833 function does not specify it. WHAT is only for the prompt, to indicate
8834 what is being sorted. The sorting key will be extracted from
8835 the car of the elements of the table.
8836 If WITH-CASE is non-nil, the sorting will be case-sensitive."
8837 (unless sorting-type
8838 (message
8839 "Sort %s: [a]lphabetic, [n]umeric, [t]ime. A/N/T means reversed:"
8840 what)
8841 (setq sorting-type (read-char-exclusive)))
8842 (let ((dcst (downcase sorting-type))
8843 extractfun comparefun)
8844 ;; Define the appropriate functions
8845 (cond
8846 ((= dcst ?n)
8847 (setq extractfun 'string-to-number
8848 comparefun (if (= dcst sorting-type) '< '>)))
8849 ((= dcst ?a)
8850 (setq extractfun (if with-case (lambda(x) (org-sort-remove-invisible x))
8851 (lambda(x) (downcase (org-sort-remove-invisible x))))
8852 comparefun (if (= dcst sorting-type)
8853 'string<
8854 (lambda (a b) (and (not (string< a b))
8855 (not (string= a b)))))))
8856 ((= dcst ?t)
8857 (setq extractfun
8858 (lambda (x)
8859 (if (or (string-match org-ts-regexp x)
8860 (string-match org-ts-regexp-both x))
8861 (org-float-time
8862 (org-time-string-to-time (match-string 0 x)))
8864 comparefun (if (= dcst sorting-type) '< '>)))
8865 (t (error "Invalid sorting type `%c'" sorting-type)))
8867 (sort (mapcar (lambda (x) (cons (funcall extractfun (car x)) (cdr x)))
8868 table)
8869 (lambda (a b) (funcall comparefun (car a) (car b))))))
8872 ;;; The orgstruct minor mode
8874 ;; Define a minor mode which can be used in other modes in order to
8875 ;; integrate the org-mode structure editing commands.
8877 ;; This is really a hack, because the org-mode structure commands use
8878 ;; keys which normally belong to the major mode. Here is how it
8879 ;; works: The minor mode defines all the keys necessary to operate the
8880 ;; structure commands, but wraps the commands into a function which
8881 ;; tests if the cursor is currently at a headline or a plain list
8882 ;; item. If that is the case, the structure command is used,
8883 ;; temporarily setting many Org-mode variables like regular
8884 ;; expressions for filling etc. However, when any of those keys is
8885 ;; used at a different location, function uses `key-binding' to look
8886 ;; up if the key has an associated command in another currently active
8887 ;; keymap (minor modes, major mode, global), and executes that
8888 ;; command. There might be problems if any of the keys is otherwise
8889 ;; used as a prefix key.
8891 (defcustom orgstruct-heading-prefix-regexp ""
8892 "Regexp that matches the custom prefix of Org headlines in
8893 orgstruct(++)-mode."
8894 :group 'org
8895 :version "24.4"
8896 :package-version '(Org . "8.3")
8897 :type 'regexp)
8898 ;;;###autoload(put 'orgstruct-heading-prefix-regexp 'safe-local-variable 'stringp)
8900 (defcustom orgstruct-setup-hook nil
8901 "Hook run after orgstruct-mode-map is filled."
8902 :group 'org
8903 :version "24.4"
8904 :package-version '(Org . "8.0")
8905 :type 'hook)
8907 (defvar orgstruct-initialized nil)
8909 (defvar org-local-vars nil
8910 "List of local variables, for use by `orgstruct-mode'.")
8912 ;;;###autoload
8913 (define-minor-mode orgstruct-mode
8914 "Toggle the minor mode `orgstruct-mode'.
8915 This mode is for using Org-mode structure commands in other
8916 modes. The following keys behave as if Org-mode were active, if
8917 the cursor is on a headline, or on a plain list item (both as
8918 defined by Org-mode)."
8919 nil " OrgStruct" (make-sparse-keymap)
8920 (funcall (if orgstruct-mode
8921 'add-to-invisibility-spec
8922 'remove-from-invisibility-spec)
8923 '(outline . t))
8924 (when orgstruct-mode
8925 (org-load-modules-maybe)
8926 (unless orgstruct-initialized
8927 (orgstruct-setup)
8928 (setq orgstruct-initialized t))))
8930 ;;;###autoload
8931 (defun turn-on-orgstruct ()
8932 "Unconditionally turn on `orgstruct-mode'."
8933 (orgstruct-mode 1))
8935 (defvar org-fb-vars nil)
8936 (make-variable-buffer-local 'org-fb-vars)
8937 (defun orgstruct++-mode (&optional arg)
8938 "Toggle `orgstruct-mode', the enhanced version of it.
8939 In addition to setting orgstruct-mode, this also exports all
8940 indentation and autofilling variables from org-mode into the
8941 buffer. It will also recognize item context in multiline items."
8942 (interactive "P")
8943 (setq arg (prefix-numeric-value (or arg (if orgstruct-mode -1 1))))
8944 (if (< arg 1)
8945 (progn (orgstruct-mode -1)
8946 (mapc (lambda(v)
8947 (org-set-local (car v)
8948 (if (eq (car-safe (cadr v)) 'quote) (cadadr v) (cadr v))))
8949 org-fb-vars))
8950 (orgstruct-mode 1)
8951 (setq org-fb-vars nil)
8952 (unless org-local-vars
8953 (setq org-local-vars (org-get-local-variables)))
8954 (let (var val)
8955 (mapc
8956 (lambda (x)
8957 (when (string-match
8958 "^\\(paragraph-\\|auto-fill\\|normal-auto-fill\\|fill-paragraph\\|fill-prefix\\|indent-\\)"
8959 (symbol-name (car x)))
8960 (setq var (car x) val (nth 1 x))
8961 (push (list var `(quote ,(eval var))) org-fb-vars)
8962 (org-set-local var (if (eq (car-safe val) 'quote) (nth 1 val) val))))
8963 org-local-vars)
8964 (org-set-local 'orgstruct-is-++ t))))
8966 (defvar orgstruct-is-++ nil
8967 "Is `orgstruct-mode' in ++ version in the current-buffer?")
8968 (make-variable-buffer-local 'orgstruct-is-++)
8970 ;;;###autoload
8971 (defun turn-on-orgstruct++ ()
8972 "Unconditionally turn on `orgstruct++-mode'."
8973 (orgstruct++-mode 1))
8975 (defun orgstruct-error ()
8976 "Error when there is no default binding for a structure key."
8977 (interactive)
8978 (funcall (if (fboundp 'user-error)
8979 'user-error
8980 'error)
8981 "This key has no function outside structure elements"))
8983 (defun orgstruct-setup ()
8984 "Setup orgstruct keymap."
8985 (dolist (cell '((org-demote . t)
8986 (org-metaleft . t)
8987 (org-metaright . t)
8988 (org-promote . t)
8989 (org-shiftmetaleft . t)
8990 (org-shiftmetaright . t)
8991 org-backward-element
8992 org-backward-heading-same-level
8993 org-ctrl-c-ret
8994 org-ctrl-c-minus
8995 org-ctrl-c-star
8996 org-cycle
8997 org-forward-heading-same-level
8998 org-insert-heading
8999 org-insert-heading-respect-content
9000 org-kill-note-or-show-branches
9001 org-mark-subtree
9002 org-meta-return
9003 org-metadown
9004 org-metaup
9005 org-narrow-to-subtree
9006 org-promote-subtree
9007 org-reveal
9008 org-shiftdown
9009 org-shiftleft
9010 org-shiftmetadown
9011 org-shiftmetaup
9012 org-shiftright
9013 org-shifttab
9014 org-shifttab
9015 org-shiftup
9016 org-show-subtree
9017 org-sort
9018 org-up-element
9019 outline-demote
9020 outline-next-visible-heading
9021 outline-previous-visible-heading
9022 outline-promote
9023 outline-up-heading
9024 show-children))
9025 (let ((f (or (car-safe cell) cell))
9026 (disable-when-heading-prefix (cdr-safe cell)))
9027 (when (fboundp f)
9028 (let ((new-bindings))
9029 (dolist (binding (nconc (where-is-internal f org-mode-map)
9030 (where-is-internal f outline-mode-map)))
9031 (push binding new-bindings)
9032 ;; TODO use local-function-key-map
9033 (dolist (rep '(("<tab>" . "TAB")
9034 ("<return>" . "RET")
9035 ("<escape>" . "ESC")
9036 ("<delete>" . "DEL")))
9037 (setq binding (read-kbd-macro
9038 (let ((case-fold-search))
9039 (replace-regexp-in-string
9040 (regexp-quote (cdr rep))
9041 (car rep)
9042 (key-description binding)))))
9043 (pushnew binding new-bindings :test 'equal)))
9044 (dolist (binding new-bindings)
9045 (let ((key (lookup-key orgstruct-mode-map binding)))
9046 (when (or (not key) (numberp key))
9047 (condition-case nil
9048 (org-defkey orgstruct-mode-map
9049 binding
9050 (orgstruct-make-binding f binding disable-when-heading-prefix))
9051 (error nil)))))))))
9052 (run-hooks 'orgstruct-setup-hook))
9054 (defun orgstruct-make-binding (fun key disable-when-heading-prefix)
9055 "Create a function for binding in the structure minor mode.
9056 FUN is the command to call inside a table. KEY is the key that
9057 should be checked in for a command to execute outside of tables.
9058 Non-nil `disable-when-heading-prefix' means to disable the command
9059 if `orgstruct-heading-prefix-regexp' is not empty."
9060 (let ((name (concat "orgstruct-hijacker-" (symbol-name fun))))
9061 (let ((nname name)
9062 (i 0))
9063 (while (fboundp (intern nname))
9064 (setq nname (format "%s-%d" name (setq i (1+ i)))))
9065 (setq name (intern nname)))
9066 (eval
9067 (let ((bindings '((org-heading-regexp
9068 (concat "^"
9069 orgstruct-heading-prefix-regexp
9070 "\\(\\*+\\)\\(?: +\\(.*?\\)\\)?[ ]*$"))
9071 (org-outline-regexp
9072 (concat orgstruct-heading-prefix-regexp "\\*+ "))
9073 (org-outline-regexp-bol
9074 (concat "^" org-outline-regexp))
9075 (outline-regexp org-outline-regexp)
9076 (outline-heading-end-regexp "\n")
9077 (outline-level 'org-outline-level)
9078 (outline-heading-alist))))
9079 `(defun ,name (arg)
9080 ,(concat "In Structure, run `" (symbol-name fun) "'.\n"
9081 "Outside of structure, run the binding of `"
9082 (key-description key) "'."
9083 (when disable-when-heading-prefix
9084 (concat
9085 "\nIf `orgstruct-heading-prefix-regexp' is not empty, this command will always fall\n"
9086 "back to the default binding due to limitations of Org's implementation of\n"
9087 "`" (symbol-name fun) "'.")))
9088 (interactive "p")
9089 (let* ((disable
9090 ,(and disable-when-heading-prefix
9091 '(not (string= orgstruct-heading-prefix-regexp ""))))
9092 (fallback
9093 (or disable
9094 (not
9095 (let* ,bindings
9096 (org-context-p 'headline 'item
9097 ,(when (memq fun
9098 '(org-insert-heading
9099 org-insert-heading-respect-content
9100 org-meta-return))
9101 '(when orgstruct-is-++
9102 'item-body))))))))
9103 (if fallback
9104 (let* ((orgstruct-mode)
9105 (binding
9106 (let ((key ,key))
9107 (catch 'exit
9108 (dolist
9109 (rep
9110 '(nil
9111 ("<\\([^>]*\\)tab>" . "\\1TAB")
9112 ("<\\([^>]*\\)return>" . "\\1RET")
9113 ("<\\([^>]*\\)escape>" . "\\1ESC")
9114 ("<\\([^>]*\\)delete>" . "\\1DEL"))
9115 nil)
9116 (when rep
9117 (setq key (read-kbd-macro
9118 (let ((case-fold-search))
9119 (replace-regexp-in-string
9120 (car rep)
9121 (cdr rep)
9122 (key-description key))))))
9123 (when (key-binding key)
9124 (throw 'exit (key-binding key))))))))
9125 (if (keymapp binding)
9126 (org-set-transient-map binding)
9127 (let ((func (or binding
9128 (unless disable
9129 'orgstruct-error))))
9130 (when func
9131 (call-interactively func)))))
9132 (org-run-like-in-org-mode
9133 (lambda ()
9134 (interactive)
9135 (let* ,bindings
9136 (call-interactively ',fun)))))))))
9137 name))
9139 (defun org-contextualize-keys (alist contexts)
9140 "Return valid elements in ALIST depending on CONTEXTS.
9142 `org-agenda-custom-commands' or `org-capture-templates' are the
9143 values used for ALIST, and `org-agenda-custom-commands-contexts'
9144 or `org-capture-templates-contexts' are the associated contexts
9145 definitions."
9146 (let ((contexts
9147 ;; normalize contexts
9148 (mapcar
9149 (lambda(c) (cond ((listp (cadr c))
9150 (list (car c) (car c) (cadr c)))
9151 ((string= "" (cadr c))
9152 (list (car c) (car c) (caddr c)))
9153 (t c))) contexts))
9154 (a alist) c r s)
9155 ;; loop over all commands or templates
9156 (while (setq c (pop a))
9157 (let (vrules repl)
9158 (cond
9159 ((not (assoc (car c) contexts))
9160 (push c r))
9161 ((and (assoc (car c) contexts)
9162 (setq vrules (org-contextualize-validate-key
9163 (car c) contexts)))
9164 (mapc (lambda (vr)
9165 (when (not (equal (car vr) (cadr vr)))
9166 (setq repl vr))) vrules)
9167 (if (not repl) (push c r)
9168 (push (cadr repl) s)
9169 (push
9170 (cons (car c)
9171 (cdr (or (assoc (cadr repl) alist)
9172 (error "Undefined key `%s' as contextual replacement for `%s'"
9173 (cadr repl) (car c)))))
9174 r))))))
9175 ;; Return limited ALIST, possibly with keys modified, and deduplicated
9176 (delq
9178 (delete-dups
9179 (mapcar (lambda (x)
9180 (let ((tpl (car x)))
9181 (when (not (delq
9183 (mapcar (lambda(y)
9184 (equal y tpl)) s))) x)))
9185 (reverse r))))))
9187 (defun org-contextualize-validate-key (key contexts)
9188 "Check CONTEXTS for agenda or capture KEY."
9189 (let (r rr res)
9190 (while (setq r (pop contexts))
9191 (mapc
9192 (lambda (rr)
9193 (when
9194 (and (equal key (car r))
9195 (if (functionp rr) (funcall rr)
9196 (or (and (eq (car rr) 'in-file)
9197 (buffer-file-name)
9198 (string-match (cdr rr) (buffer-file-name)))
9199 (and (eq (car rr) 'in-mode)
9200 (string-match (cdr rr) (symbol-name major-mode)))
9201 (and (eq (car rr) 'in-buffer)
9202 (string-match (cdr rr) (buffer-name)))
9203 (when (and (eq (car rr) 'not-in-file)
9204 (buffer-file-name))
9205 (not (string-match (cdr rr) (buffer-file-name))))
9206 (when (eq (car rr) 'not-in-mode)
9207 (not (string-match (cdr rr) (symbol-name major-mode))))
9208 (when (eq (car rr) 'not-in-buffer)
9209 (not (string-match (cdr rr) (buffer-name)))))))
9210 (push r res)))
9211 (car (last r))))
9212 (delete-dups (delq nil res))))
9214 (defun org-context-p (&rest contexts)
9215 "Check if local context is any of CONTEXTS.
9216 Possible values in the list of contexts are `table', `headline', and `item'."
9217 (let ((pos (point)))
9218 (goto-char (point-at-bol))
9219 (prog1 (or (and (memq 'table contexts)
9220 (looking-at "[ \t]*|"))
9221 (and (memq 'headline contexts)
9222 (looking-at org-outline-regexp))
9223 (and (memq 'item contexts)
9224 (looking-at "[ \t]*\\([-+*] \\|[0-9]+[.)] \\)"))
9225 (and (memq 'item-body contexts)
9226 (org-in-item-p)))
9227 (goto-char pos))))
9229 (defun org-get-local-variables ()
9230 "Return a list of all local variables in an Org mode buffer."
9231 (let (varlist)
9232 (with-current-buffer (get-buffer-create "*Org tmp*")
9233 (erase-buffer)
9234 (org-mode)
9235 (setq varlist (buffer-local-variables)))
9236 (kill-buffer "*Org tmp*")
9237 (delq nil
9238 (mapcar
9239 (lambda (x)
9240 (setq x
9241 (if (symbolp x)
9242 (list x)
9243 (list (car x) (cdr x))))
9244 (if (and (not (get (car x) 'org-state))
9245 (string-match
9246 "^\\(org-\\|orgtbl-\\|outline-\\|comment-\\|paragraph-\\|auto-fill\\|normal-auto-fill\\|fill-paragraph\\|indent-\\)"
9247 (symbol-name (car x))))
9248 x nil))
9249 varlist))))
9251 (defun org-clone-local-variables (from-buffer &optional regexp)
9252 "Clone local variables from FROM-BUFFER.
9253 Optional argument REGEXP selects variables to clone."
9254 (mapc
9255 (lambda (pair)
9256 (and (symbolp (car pair))
9257 (or (null regexp)
9258 (string-match regexp (symbol-name (car pair))))
9259 (set (make-local-variable (car pair))
9260 (cdr pair))))
9261 (buffer-local-variables from-buffer)))
9263 ;;;###autoload
9264 (defun org-run-like-in-org-mode (cmd)
9265 "Run a command, pretending that the current buffer is in Org-mode.
9266 This will temporarily bind local variables that are typically bound in
9267 Org-mode to the values they have in Org-mode, and then interactively
9268 call CMD."
9269 (org-load-modules-maybe)
9270 (unless org-local-vars
9271 (setq org-local-vars (org-get-local-variables)))
9272 (let (binds)
9273 (dolist (var org-local-vars)
9274 (when (or (not (boundp (car var)))
9275 (eq (symbol-value (car var))
9276 (default-value (car var))))
9277 (push (list (car var) `(quote ,(cadr var))) binds)))
9278 (eval `(let ,binds
9279 (call-interactively (quote ,cmd))))))
9281 ;;;; Archiving
9283 (defun org-get-category (&optional pos force-refresh)
9284 "Get the category applying to position POS."
9285 (save-match-data
9286 (if force-refresh (org-refresh-category-properties))
9287 (let ((pos (or pos (point))))
9288 (or (get-text-property pos 'org-category)
9289 (progn (org-refresh-category-properties)
9290 (get-text-property pos 'org-category))))))
9292 (defun org-refresh-category-properties ()
9293 "Refresh category text properties in the buffer."
9294 (let ((case-fold-search t)
9295 (inhibit-read-only t)
9296 (def-cat (cond
9297 ((null org-category)
9298 (if buffer-file-name
9299 (file-name-sans-extension
9300 (file-name-nondirectory buffer-file-name))
9301 "???"))
9302 ((symbolp org-category) (symbol-name org-category))
9303 (t org-category)))
9304 beg end cat pos optionp)
9305 (org-with-silent-modifications
9306 (save-excursion
9307 (save-restriction
9308 (widen)
9309 (goto-char (point-min))
9310 (put-text-property (point) (point-max) 'org-category def-cat)
9311 (while (re-search-forward
9312 "^\\(#\\+CATEGORY:\\|[ \t]*:CATEGORY:\\)\\(.*\\)" nil t)
9313 (setq pos (match-end 0)
9314 optionp (equal (char-after (match-beginning 0)) ?#)
9315 cat (org-trim (match-string 2)))
9316 (if optionp
9317 (setq beg (point-at-bol) end (point-max))
9318 (org-back-to-heading t)
9319 (setq beg (point) end (org-end-of-subtree t t)))
9320 (put-text-property beg end 'org-category cat)
9321 (put-text-property beg end 'org-category-position beg)
9322 (goto-char pos)))))))
9324 (defun org-refresh-properties (dprop tprop)
9325 "Refresh buffer text properties.
9326 DPROP is the drawer property and TPROP is the corresponding text
9327 property to set."
9328 (let ((case-fold-search t)
9329 (inhibit-read-only t) p)
9330 (org-with-silent-modifications
9331 (save-excursion
9332 (save-restriction
9333 (widen)
9334 (goto-char (point-min))
9335 (while (re-search-forward (concat "^[ \t]*:" dprop ": +\\(.*\\)[ \t]*$") nil t)
9336 (setq p (org-match-string-no-properties 1))
9337 (save-excursion
9338 (org-back-to-heading t)
9339 (put-text-property
9340 (point-at-bol) (or (outline-next-heading) (point-max)) tprop p))))))))
9343 ;;;; Link Stuff
9345 ;;; Link abbreviations
9347 (defun org-link-expand-abbrev (link)
9348 "Apply replacements as defined in `org-link-abbrev-alist'."
9349 (if (string-match "^\\([^:]*\\)\\(::?\\(.*\\)\\)?$" link)
9350 (let* ((key (match-string 1 link))
9351 (as (or (assoc key org-link-abbrev-alist-local)
9352 (assoc key org-link-abbrev-alist)))
9353 (tag (and (match-end 2) (match-string 3 link)))
9354 rpl)
9355 (if (not as)
9356 link
9357 (setq rpl (cdr as))
9358 (cond
9359 ((symbolp rpl) (funcall rpl tag))
9360 ((string-match "%(\\([^)]+\\))" rpl)
9361 (replace-match
9362 (save-match-data
9363 (funcall (intern-soft (match-string 1 rpl)) tag)) t t rpl))
9364 ((string-match "%s" rpl) (replace-match (or tag "") t t rpl))
9365 ((string-match "%h" rpl)
9366 (replace-match (url-hexify-string (or tag "")) t t rpl))
9367 (t (concat rpl tag)))))
9368 link))
9370 ;;; Storing and inserting links
9372 (defvar org-insert-link-history nil
9373 "Minibuffer history for links inserted with `org-insert-link'.")
9375 (defvar org-stored-links nil
9376 "Contains the links stored with `org-store-link'.")
9378 (defvar org-store-link-plist nil
9379 "Plist with info about the most recently link created with `org-store-link'.")
9381 (defvar org-link-protocols nil
9382 "Link protocols added to Org-mode using `org-add-link-type'.")
9384 (defvar org-store-link-functions nil
9385 "List of functions that are called to create and store a link.
9386 Each function will be called in turn until one returns a non-nil
9387 value. Each function should check if it is responsible for creating
9388 this link (for example by looking at the major mode).
9389 If not, it must exit and return nil.
9390 If yes, it should return a non-nil value after a calling
9391 `org-store-link-props' with a list of properties and values.
9392 Special properties are:
9394 :type The link prefix, like \"http\". This must be given.
9395 :link The link, like \"http://www.astro.uva.nl/~dominik\".
9396 This is obligatory as well.
9397 :description Optional default description for the second pair
9398 of brackets in an Org-mode link. The user can still change
9399 this when inserting this link into an Org-mode buffer.
9401 In addition to these, any additional properties can be specified
9402 and then used in capture templates.")
9404 (defun org-add-link-type (type &optional follow export)
9405 "Add TYPE to the list of `org-link-types'.
9406 Re-compute all regular expressions depending on `org-link-types'
9408 FOLLOW and EXPORT are two functions.
9410 FOLLOW should take the link path as the single argument and do whatever
9411 is necessary to follow the link, for example find a file or display
9412 a mail message.
9414 EXPORT should format the link path for export to one of the export formats.
9415 It should be a function accepting three arguments:
9417 path the path of the link, the text after the prefix (like \"http:\")
9418 desc the description of the link, if any, or a description added by
9419 org-export-normalize-links if there is none
9420 format the export format, a symbol like `html' or `latex' or `ascii'..
9422 The function may use the FORMAT information to return different values
9423 depending on the format. The return value will be put literally into
9424 the exported file. If the return value is nil, this means Org should
9425 do what it normally does with links which do not have EXPORT defined.
9427 Org-mode has a built-in default for exporting links. If you are happy with
9428 this default, there is no need to define an export function for the link
9429 type. For a simple example of an export function, see `org-bbdb.el'."
9430 (add-to-list 'org-link-types type t)
9431 (org-make-link-regexps)
9432 (if (assoc type org-link-protocols)
9433 (setcdr (assoc type org-link-protocols) (list follow export))
9434 (push (list type follow export) org-link-protocols)))
9436 (defvar org-agenda-buffer-name) ; Defined in org-agenda.el
9437 (defvar org-id-link-to-org-use-id) ; Defined in org-id.el
9439 ;;;###autoload
9440 (defun org-store-link (arg)
9441 "\\<org-mode-map>Store an org-link to the current location.
9442 This link is added to `org-stored-links' and can later be inserted
9443 into an org-buffer with \\[org-insert-link].
9445 For some link types, a prefix arg is interpreted.
9446 For links to Usenet articles, arg negates `org-gnus-prefer-web-links'.
9447 For file links, arg negates `org-context-in-file-links'.
9449 A double prefix arg force skipping storing functions that are not
9450 part of Org's core.
9452 A triple prefix arg force storing a link for each line in the
9453 active region."
9454 (interactive "P")
9455 (org-load-modules-maybe)
9456 (if (and (equal arg '(64)) (org-region-active-p))
9457 (save-excursion
9458 (let ((end (region-end)))
9459 (goto-char (region-beginning))
9460 (set-mark (point))
9461 (while (< (point-at-eol) end)
9462 (move-end-of-line 1) (activate-mark)
9463 (let (current-prefix-arg)
9464 (call-interactively 'org-store-link))
9465 (move-beginning-of-line 2)
9466 (set-mark (point)))))
9467 (org-with-limited-levels
9468 (setq org-store-link-plist nil)
9469 (let (link cpltxt desc description search
9470 txt custom-id agenda-link sfuns sfunsn)
9471 (cond
9473 ;; Store a link using an external link type
9474 ((and (not (equal arg '(16)))
9475 (setq sfuns
9476 (delq
9477 nil (mapcar (lambda (f)
9478 (let (fs) (if (funcall f) (push f fs))))
9479 org-store-link-functions))
9480 sfunsn (mapcar (lambda (fu) (symbol-name (car fu))) sfuns))
9481 (or (and (cdr sfuns)
9482 (funcall (intern
9483 (completing-read
9484 "Which function for creating the link? "
9485 sfunsn nil t (car sfunsn)))))
9486 (funcall (caar sfuns)))
9487 (setq link (plist-get org-store-link-plist :link)
9488 desc (or (plist-get org-store-link-plist
9489 :description) link))))
9491 ;; Store a link from a source code buffer
9492 ((org-src-edit-buffer-p)
9493 (let (label gc)
9494 (while (or (not label)
9495 (save-excursion
9496 (save-restriction
9497 (widen)
9498 (goto-char (point-min))
9499 (re-search-forward
9500 (regexp-quote (format org-coderef-label-format label))
9501 nil t))))
9502 (when label (message "Label exists already") (sit-for 2))
9503 (setq label (read-string "Code line label: " label)))
9504 (end-of-line 1)
9505 (setq link (format org-coderef-label-format label))
9506 (setq gc (- 79 (length link)))
9507 (if (< (current-column) gc) (org-move-to-column gc t) (insert " "))
9508 (insert link)
9509 (setq link (concat "(" label ")") desc nil)))
9511 ;; We are in the agenda, link to referenced location
9512 ((equal (org-bound-and-true-p org-agenda-buffer-name) (buffer-name))
9513 (let ((m (or (get-text-property (point) 'org-hd-marker)
9514 (get-text-property (point) 'org-marker))))
9515 (when m
9516 (org-with-point-at m
9517 (setq agenda-link
9518 (if (org-called-interactively-p 'any)
9519 (call-interactively 'org-store-link)
9520 (org-store-link nil)))))))
9522 ((eq major-mode 'calendar-mode)
9523 (let ((cd (calendar-cursor-to-date)))
9524 (setq link
9525 (format-time-string
9526 (car org-time-stamp-formats)
9527 (apply 'encode-time
9528 (list 0 0 0 (nth 1 cd) (nth 0 cd) (nth 2 cd)
9529 nil nil nil))))
9530 (org-store-link-props :type "calendar" :date cd)))
9532 ((eq major-mode 'help-mode)
9533 (setq link (concat "help:" (save-excursion
9534 (goto-char (point-min))
9535 (looking-at "^[^ ]+")
9536 (match-string 0))))
9537 (org-store-link-props :type "help"))
9539 ((eq major-mode 'w3-mode)
9540 (setq cpltxt (if (and (buffer-name)
9541 (not (string-match "Untitled" (buffer-name))))
9542 (buffer-name)
9543 (url-view-url t))
9544 link (url-view-url t))
9545 (org-store-link-props :type "w3" :url (url-view-url t)))
9547 ((eq major-mode 'image-mode)
9548 (setq cpltxt (concat "file:"
9549 (abbreviate-file-name buffer-file-name))
9550 link cpltxt)
9551 (org-store-link-props :type "image" :file buffer-file-name))
9553 ;; In dired, store a link to the file of the current line
9554 ((eq major-mode 'dired-mode)
9555 (let ((file (dired-get-filename nil t)))
9556 (setq file (if file
9557 (abbreviate-file-name
9558 (expand-file-name (dired-get-filename nil t)))
9559 ;; otherwise, no file so use current directory.
9560 default-directory))
9561 (setq cpltxt (concat "file:" file)
9562 link cpltxt)))
9564 ((setq search (run-hook-with-args-until-success
9565 'org-create-file-search-functions))
9566 (setq link (concat "file:" (abbreviate-file-name buffer-file-name)
9567 "::" search))
9568 (setq cpltxt (or description link)))
9570 ((and (buffer-file-name (buffer-base-buffer)) (derived-mode-p 'org-mode))
9571 (setq custom-id (org-entry-get nil "CUSTOM_ID"))
9572 (cond
9573 ;; Store a link using the target at point
9574 ((org-in-regexp "[^<]<<\\([^<>]+\\)>>[^>]" 1)
9575 (setq cpltxt
9576 (concat "file:"
9577 (abbreviate-file-name
9578 (buffer-file-name (buffer-base-buffer)))
9579 "::" (match-string 1))
9580 link cpltxt))
9581 ((and (featurep 'org-id)
9582 (or (eq org-id-link-to-org-use-id t)
9583 (and (org-called-interactively-p 'any)
9584 (or (eq org-id-link-to-org-use-id 'create-if-interactive)
9585 (and (eq org-id-link-to-org-use-id
9586 'create-if-interactive-and-no-custom-id)
9587 (not custom-id))))
9588 (and org-id-link-to-org-use-id (org-entry-get nil "ID"))))
9589 ;; Store a link using the ID at point
9590 (setq link (condition-case nil
9591 (prog1 (org-id-store-link)
9592 (setq desc (or (plist-get org-store-link-plist
9593 :description)
9594 "")))
9595 (error
9596 ;; Probably before first headline, link only to file
9597 (concat "file:"
9598 (abbreviate-file-name
9599 (buffer-file-name (buffer-base-buffer))))))))
9601 ;; Just link to current headline
9602 (setq cpltxt (concat "file:"
9603 (abbreviate-file-name
9604 (buffer-file-name (buffer-base-buffer)))))
9605 ;; Add a context search string
9606 (when (org-xor org-context-in-file-links arg)
9607 (let* ((ee (org-element-at-point))
9608 (et (org-element-type ee))
9609 (ev (plist-get (cadr ee) :value))
9610 (ek (plist-get (cadr ee) :key))
9611 (eok (and (stringp ek) (string-match "name" ek))))
9612 (setq txt (cond
9613 ((org-at-heading-p) nil)
9614 ((and (eq et 'keyword) eok) ev)
9615 ((org-region-active-p)
9616 (buffer-substring (region-beginning) (region-end)))))
9617 (when (or (null txt) (string-match "\\S-" txt))
9618 (setq cpltxt
9619 (concat cpltxt "::"
9620 (condition-case nil
9621 (org-make-org-heading-search-string txt)
9622 (error "")))
9623 desc (or (and (eq et 'keyword) eok ev)
9624 (nth 4 (ignore-errors (org-heading-components)))
9625 "NONE")))))
9626 (if (string-match "::\\'" cpltxt)
9627 (setq cpltxt (substring cpltxt 0 -2)))
9628 (setq link cpltxt))))
9630 ((buffer-file-name (buffer-base-buffer))
9631 ;; Just link to this file here.
9632 (setq cpltxt (concat "file:"
9633 (abbreviate-file-name
9634 (buffer-file-name (buffer-base-buffer)))))
9635 ;; Add a context string.
9636 (when (org-xor org-context-in-file-links arg)
9637 (setq txt (if (org-region-active-p)
9638 (buffer-substring (region-beginning) (region-end))
9639 (buffer-substring (point-at-bol) (point-at-eol))))
9640 ;; Only use search option if there is some text.
9641 (when (string-match "\\S-" txt)
9642 (setq cpltxt
9643 (concat cpltxt "::" (org-make-org-heading-search-string txt))
9644 desc "NONE")))
9645 (setq link cpltxt))
9647 ((org-called-interactively-p 'interactive)
9648 (user-error "No method for storing a link from this buffer"))
9650 (t (setq link nil)))
9652 ;; We're done setting link and desc, clean up
9653 (if (consp link) (setq cpltxt (car link) link (cdr link)))
9654 (setq link (or link cpltxt)
9655 desc (or desc cpltxt))
9656 (cond ((equal desc "NONE") (setq desc nil))
9657 ((and desc (string-match org-bracket-link-analytic-regexp desc))
9658 (let ((d0 (match-string 3 desc))
9659 (p0 (match-string 5 desc)))
9660 (setq desc
9661 (replace-regexp-in-string
9662 org-bracket-link-regexp
9663 (concat (or p0 d0)
9664 (if (equal (length (match-string 0 desc))
9665 (length desc)) "*" "")) desc)))))
9667 ;; Return the link
9668 (if (not (and (or (org-called-interactively-p 'any)
9669 executing-kbd-macro) link))
9670 (or agenda-link (and link (org-make-link-string link desc)))
9671 (push (list link desc) org-stored-links)
9672 (message "Stored: %s" (or desc link))
9673 (when custom-id
9674 (setq link (concat "file:" (abbreviate-file-name
9675 (buffer-file-name)) "::#" custom-id))
9676 (push (list link desc) org-stored-links))
9677 (car org-stored-links))))))
9679 (defun org-store-link-props (&rest plist)
9680 "Store link properties, extract names and addresses."
9681 (let (x adr)
9682 (when (setq x (plist-get plist :from))
9683 (setq adr (mail-extract-address-components x))
9684 (setq plist (plist-put plist :fromname (car adr)))
9685 (setq plist (plist-put plist :fromaddress (nth 1 adr))))
9686 (when (setq x (plist-get plist :to))
9687 (setq adr (mail-extract-address-components x))
9688 (setq plist (plist-put plist :toname (car adr)))
9689 (setq plist (plist-put plist :toaddress (nth 1 adr)))))
9690 (let ((from (plist-get plist :from))
9691 (to (plist-get plist :to)))
9692 (when (and from to org-from-is-user-regexp)
9693 (setq plist
9694 (plist-put plist :fromto
9695 (if (string-match org-from-is-user-regexp from)
9696 (concat "to %t")
9697 (concat "from %f"))))))
9698 (setq org-store-link-plist plist))
9700 (defun org-add-link-props (&rest plist)
9701 "Add these properties to the link property list."
9702 (let (key value)
9703 (while plist
9704 (setq key (pop plist) value (pop plist))
9705 (setq org-store-link-plist
9706 (plist-put org-store-link-plist key value)))))
9708 (defun org-email-link-description (&optional fmt)
9709 "Return the description part of an email link.
9710 This takes information from `org-store-link-plist' and formats it
9711 according to FMT (default from `org-email-link-description-format')."
9712 (setq fmt (or fmt org-email-link-description-format))
9713 (let* ((p org-store-link-plist)
9714 (to (plist-get p :toaddress))
9715 (from (plist-get p :fromaddress))
9716 (table
9717 (list
9718 (cons "%c" (plist-get p :fromto))
9719 (cons "%F" (plist-get p :from))
9720 (cons "%f" (or (plist-get p :fromname) (plist-get p :fromaddress) "?"))
9721 (cons "%T" (plist-get p :to))
9722 (cons "%t" (or (plist-get p :toname) (plist-get p :toaddress) "?"))
9723 (cons "%s" (plist-get p :subject))
9724 (cons "%d" (plist-get p :date))
9725 (cons "%m" (plist-get p :message-id)))))
9726 (when (string-match "%c" fmt)
9727 ;; Check if the user wrote this message
9728 (if (and org-from-is-user-regexp from to
9729 (save-match-data (string-match org-from-is-user-regexp from)))
9730 (setq fmt (replace-match "to %t" t t fmt))
9731 (setq fmt (replace-match "from %f" t t fmt))))
9732 (org-replace-escapes fmt table)))
9734 (defun org-make-org-heading-search-string (&optional string)
9735 "Make search string for the current headline or STRING."
9736 (let ((s (or string
9737 (and (derived-mode-p 'org-mode)
9738 (save-excursion
9739 (org-back-to-heading t)
9740 (org-element-property :raw-value (org-element-at-point))))))
9741 (lines org-context-in-file-links))
9742 (or string (setq s (concat "*" s))) ; Add * for headlines
9743 (setq s (replace-regexp-in-string "\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]" "" s))
9744 (when (and string (integerp lines) (> lines 0))
9745 (let ((slines (org-split-string s "\n")))
9746 (when (< lines (length slines))
9747 (setq s (mapconcat
9748 'identity
9749 (reverse (nthcdr (- (length slines) lines)
9750 (reverse slines))) "\n")))))
9751 (mapconcat 'identity (org-split-string s "[ \t]+") " ")))
9753 (defun org-make-link-string (link &optional description)
9754 "Make a link with brackets, consisting of LINK and DESCRIPTION."
9755 (unless (string-match "\\S-" link)
9756 (error "Empty link"))
9757 (when (and description
9758 (stringp description)
9759 (not (string-match "\\S-" description)))
9760 (setq description nil))
9761 (when (stringp description)
9762 ;; Remove brackets from the description, they are fatal.
9763 (while (string-match "\\[" description)
9764 (setq description (replace-match "{" t t description)))
9765 (while (string-match "\\]" description)
9766 (setq description (replace-match "}" t t description))))
9767 (when (equal link description)
9768 ;; No description needed, it is identical
9769 (setq description nil))
9770 (when (and (not description)
9771 (not (string-match (org-image-file-name-regexp) link))
9772 (not (equal link (org-link-escape link))))
9773 (setq description (org-extract-attributes link)))
9774 (setq link
9775 (cond ((string-match (org-image-file-name-regexp) link) link)
9776 ((string-match org-link-types-re link)
9777 (concat (match-string 1 link)
9778 (org-link-escape (substring link (match-end 1)))))
9779 (t (org-link-escape link))))
9780 (concat "[[" link "]"
9781 (if description (concat "[" description "]") "")
9782 "]"))
9784 (defconst org-link-escape-chars
9785 '(?\ ?\[ ?\] ?\; ?\= ?\+)
9786 "List of characters that should be escaped in link.
9787 This is the list that is used for internal purposes.")
9789 (defconst org-link-escape-chars-browser
9790 '(?\ ?\")
9791 "List of escapes for characters that are problematic in links.
9792 This is the list that is used before handing over to the browser.")
9794 (defun org-link-escape (text &optional table merge)
9795 "Return percent escaped representation of TEXT.
9796 TEXT is a string with the text to escape.
9797 Optional argument TABLE is a list with characters that should be
9798 escaped. When nil, `org-link-escape-chars' is used.
9799 If optional argument MERGE is set, merge TABLE into
9800 `org-link-escape-chars'."
9801 (cond
9802 ((and table merge)
9803 (mapc (lambda (defchr)
9804 (unless (member defchr table)
9805 (setq table (cons defchr table)))) org-link-escape-chars))
9806 ((null table)
9807 (setq table org-link-escape-chars)))
9808 (mapconcat
9809 (lambda (char)
9810 (if (or (member char table)
9811 (and (or (< char 32) (= char 37) (> char 126))
9812 org-url-hexify-p))
9813 (mapconcat (lambda (sequence-element)
9814 (format "%%%.2X" sequence-element))
9815 (or (encode-coding-char char 'utf-8)
9816 (error "Unable to percent escape character: %s"
9817 (char-to-string char))) "")
9818 (char-to-string char))) text ""))
9820 (defun org-link-unescape (str)
9821 "Unhex hexified Unicode strings as returned from the JavaScript function
9822 encodeURIComponent. E.g. `%C3%B6' is the german o-Umlaut."
9823 (unless (and (null str) (string= "" str))
9824 (let ((pos 0) (case-fold-search t) unhexed)
9825 (while (setq pos (string-match "\\(%[0-9a-f][0-9a-f]\\)+" str pos))
9826 (setq unhexed (org-link-unescape-compound (match-string 0 str)))
9827 (setq str (replace-match unhexed t t str))
9828 (setq pos (+ pos (length unhexed))))))
9829 str)
9831 (defun org-link-unescape-compound (hex)
9832 "Unhexify Unicode hex-chars. E.g. `%C3%B6' is the German o-Umlaut.
9833 Note: this function also decodes single byte encodings like
9834 `%E1' (a-acute) if not followed by another `%[A-F0-9]{2}' group."
9835 (save-match-data
9836 (let* ((bytes (cdr (split-string hex "%")))
9837 (ret "")
9838 (eat 0)
9839 (sum 0))
9840 (while bytes
9841 (let* ((val (string-to-number (pop bytes) 16))
9842 (shift-xor
9843 (if (= 0 eat)
9844 (cond
9845 ((>= val 252) (cons 6 252))
9846 ((>= val 248) (cons 5 248))
9847 ((>= val 240) (cons 4 240))
9848 ((>= val 224) (cons 3 224))
9849 ((>= val 192) (cons 2 192))
9850 (t (cons 0 0)))
9851 (cons 6 128))))
9852 (if (>= val 192) (setq eat (car shift-xor)))
9853 (setq val (logxor val (cdr shift-xor)))
9854 (setq sum (+ (lsh sum (car shift-xor)) val))
9855 (if (> eat 0) (setq eat (- eat 1)))
9856 (cond
9857 ((= 0 eat) ;multi byte
9858 (setq ret (concat ret (org-char-to-string sum)))
9859 (setq sum 0))
9860 ((not bytes) ; single byte(s)
9861 (setq ret (org-link-unescape-single-byte-sequence hex))))
9862 )) ;; end (while bytes
9863 ret )))
9865 (defun org-link-unescape-single-byte-sequence (hex)
9866 "Unhexify hex-encoded single byte character sequences."
9867 (mapconcat (lambda (byte)
9868 (char-to-string (string-to-number byte 16)))
9869 (cdr (split-string hex "%")) ""))
9871 (defun org-xor (a b)
9872 "Exclusive or."
9873 (if a (not b) b))
9875 (defun org-fixup-message-id-for-http (s)
9876 "Replace special characters in a message id, so it can be used in an http query."
9877 (when (string-match "%" s)
9878 (setq s (mapconcat (lambda (c)
9879 (if (eq c ?%)
9880 "%25"
9881 (char-to-string c)))
9882 s "")))
9883 (while (string-match "<" s)
9884 (setq s (replace-match "%3C" t t s)))
9885 (while (string-match ">" s)
9886 (setq s (replace-match "%3E" t t s)))
9887 (while (string-match "@" s)
9888 (setq s (replace-match "%40" t t s)))
9891 (defun org-link-prettify (link)
9892 "Return a human-readable representation of LINK.
9893 The car of LINK must be a raw link the cdr of LINK must be either
9894 a link description or nil."
9895 (let ((desc (or (cadr link) "<no description>")))
9896 (concat (format "%-45s" (substring desc 0 (min (length desc) 40)))
9897 "<" (car link) ">")))
9899 ;;;###autoload
9900 (defun org-insert-link-global ()
9901 "Insert a link like Org-mode does.
9902 This command can be called in any mode to insert a link in Org-mode syntax."
9903 (interactive)
9904 (org-load-modules-maybe)
9905 (org-run-like-in-org-mode 'org-insert-link))
9907 (defun org-insert-all-links (&optional keep)
9908 "Insert all links in `org-stored-links'."
9909 (interactive "P")
9910 (let ((links (copy-sequence org-stored-links)) l)
9911 (while (setq l (if keep (pop links) (pop org-stored-links)))
9912 (insert "- ")
9913 (org-insert-link nil (car l) (or (cadr l) "<no description>"))
9914 (insert "\n"))))
9916 (defun org-link-fontify-links-to-this-file ()
9917 "Fontify links to the current file in `org-stored-links'."
9918 (let ((f (buffer-file-name)) a b)
9919 (setq a (mapcar (lambda(l)
9920 (let ((ll (car l)))
9921 (when (and (string-match "^file:\\(.+\\)::" ll)
9922 (equal f (expand-file-name (match-string 1 ll))))
9923 ll)))
9924 org-stored-links))
9925 (when (featurep 'org-id)
9926 (setq b (mapcar (lambda(l)
9927 (let ((ll (car l)))
9928 (when (and (string-match "^id:\\(.+\\)$" ll)
9929 (equal f (expand-file-name
9930 (or (org-id-find-id-file
9931 (match-string 1 ll)) ""))))
9932 ll)))
9933 org-stored-links)))
9934 (mapcar (lambda(l)
9935 (put-text-property 0 (length l) 'face 'font-lock-comment-face l))
9936 (delq nil (append a b)))))
9938 (defvar org-link-links-in-this-file nil)
9939 (defun org-insert-link (&optional complete-file link-location default-description)
9940 "Insert a link. At the prompt, enter the link.
9942 Completion can be used to insert any of the link protocol prefixes like
9943 http or ftp in use.
9945 The history can be used to select a link previously stored with
9946 `org-store-link'. When the empty string is entered (i.e. if you just
9947 press RET at the prompt), the link defaults to the most recently
9948 stored link. As SPC triggers completion in the minibuffer, you need to
9949 use M-SPC or C-q SPC to force the insertion of a space character.
9951 You will also be prompted for a description, and if one is given, it will
9952 be displayed in the buffer instead of the link.
9954 If there is already a link at point, this command will allow you to edit link
9955 and description parts.
9957 With a \\[universal-argument] prefix, prompts for a file to link to. The file name can
9958 be selected using completion. The path to the file will be relative to the
9959 current directory if the file is in the current directory or a subdirectory.
9960 Otherwise, the link will be the absolute path as completed in the minibuffer
9961 \(i.e. normally ~/path/to/file). You can configure this behavior using the
9962 option `org-link-file-path-type'.
9964 With two \\[universal-argument] prefixes, enforce an absolute path even if the file is in
9965 the current directory or below.
9967 With three \\[universal-argument] prefixes, negate the meaning of
9968 `org-keep-stored-link-after-insertion'.
9970 If `org-make-link-description-function' is non-nil, this function will be
9971 called with the link target, and the result will be the default
9972 link description.
9974 If the LINK-LOCATION parameter is non-nil, this value will be
9975 used as the link location instead of reading one interactively.
9977 If the DEFAULT-DESCRIPTION parameter is non-nil, this value will
9978 be used as the default description."
9979 (interactive "P")
9980 (let* ((wcf (current-window-configuration))
9981 (origbuf (current-buffer))
9982 (region (if (org-region-active-p)
9983 (buffer-substring (region-beginning) (region-end))))
9984 (remove (and region (list (region-beginning) (region-end))))
9985 (desc region)
9986 tmphist ; byte-compile incorrectly complains about this
9987 (link link-location)
9988 (abbrevs org-link-abbrev-alist-local)
9989 entry file all-prefixes auto-desc)
9990 (cond
9991 (link-location) ; specified by arg, just use it.
9992 ((org-in-regexp org-bracket-link-regexp 1)
9993 ;; We do have a link at point, and we are going to edit it.
9994 (setq remove (list (match-beginning 0) (match-end 0)))
9995 (setq desc (if (match-end 3) (org-match-string-no-properties 3)))
9996 (setq link (read-string "Link: "
9997 (org-link-unescape
9998 (org-match-string-no-properties 1)))))
9999 ((or (org-in-regexp org-angle-link-re)
10000 (org-in-regexp org-plain-link-re))
10001 ;; Convert to bracket link
10002 (setq remove (list (match-beginning 0) (match-end 0))
10003 link (read-string "Link: "
10004 (org-remove-angle-brackets (match-string 0)))))
10005 ((member complete-file '((4) (16)))
10006 ;; Completing read for file names.
10007 (setq link (org-file-complete-link complete-file)))
10009 ;; Read link, with completion for stored links.
10010 (org-link-fontify-links-to-this-file)
10011 (org-switch-to-buffer-other-window "*Org Links*")
10012 (with-current-buffer "*Org Links*"
10013 (erase-buffer)
10014 (insert "Insert a link.
10015 Use TAB to complete link prefixes, then RET for type-specific completion support\n")
10016 (when org-stored-links
10017 (insert "\nStored links are available with <up>/<down> or M-p/n (most recent with RET):\n\n")
10018 (insert (mapconcat 'org-link-prettify
10019 (reverse org-stored-links) "\n")))
10020 (goto-char (point-min)))
10021 (let ((cw (selected-window)))
10022 (select-window (get-buffer-window "*Org Links*" 'visible))
10023 (with-current-buffer "*Org Links*" (setq truncate-lines t))
10024 (unless (pos-visible-in-window-p (point-max))
10025 (org-fit-window-to-buffer))
10026 (and (window-live-p cw) (select-window cw)))
10027 ;; Fake a link history, containing the stored links.
10028 (setq tmphist (append (mapcar 'car org-stored-links)
10029 org-insert-link-history))
10030 (setq all-prefixes (append (mapcar 'car abbrevs)
10031 (mapcar 'car org-link-abbrev-alist)
10032 org-link-types))
10033 (unwind-protect
10034 (progn
10035 (setq link
10036 (org-completing-read
10037 "Link: "
10038 (append
10039 (mapcar (lambda (x) (concat x ":"))
10040 all-prefixes)
10041 (mapcar 'car org-stored-links))
10042 nil nil nil
10043 'tmphist
10044 (caar org-stored-links)))
10045 (if (not (string-match "\\S-" link))
10046 (user-error "No link selected"))
10047 (mapc (lambda(l)
10048 (when (equal link (cadr l)) (setq link (car l) auto-desc t)))
10049 org-stored-links)
10050 (if (or (member link all-prefixes)
10051 (and (equal ":" (substring link -1))
10052 (member (substring link 0 -1) all-prefixes)
10053 (setq link (substring link 0 -1))))
10054 (setq link (with-current-buffer origbuf
10055 (org-link-try-special-completion link)))))
10056 (set-window-configuration wcf)
10057 (kill-buffer "*Org Links*"))
10058 (setq entry (assoc link org-stored-links))
10059 (or entry (push link org-insert-link-history))
10060 (setq desc (or desc (nth 1 entry)))))
10062 (if (funcall (if (equal complete-file '(64)) 'not 'identity)
10063 (not org-keep-stored-link-after-insertion))
10064 (setq org-stored-links (delq (assoc link org-stored-links)
10065 org-stored-links)))
10067 (if (and (string-match org-plain-link-re link)
10068 (not (string-match org-ts-regexp link)))
10069 ;; URL-like link, normalize the use of angular brackets.
10070 (setq link (org-remove-angle-brackets link)))
10072 ;; Check if we are linking to the current file with a search
10073 ;; option If yes, simplify the link by using only the search
10074 ;; option.
10075 (when (and buffer-file-name
10076 (string-match "^file:\\(.+?\\)::\\(.+\\)" link))
10077 (let* ((path (match-string 1 link))
10078 (case-fold-search nil)
10079 (search (match-string 2 link)))
10080 (save-match-data
10081 (if (equal (file-truename buffer-file-name) (file-truename path))
10082 ;; We are linking to this same file, with a search option
10083 (setq link search)))))
10085 ;; Check if we can/should use a relative path. If yes, simplify the link
10086 (when (string-match "^\\(file:\\|docview:\\)\\(.*\\)" link)
10087 (let* ((type (match-string 1 link))
10088 (path (match-string 2 link))
10089 (origpath path)
10090 (case-fold-search nil))
10091 (cond
10092 ((or (eq org-link-file-path-type 'absolute)
10093 (equal complete-file '(16)))
10094 (setq path (abbreviate-file-name (expand-file-name path))))
10095 ((eq org-link-file-path-type 'noabbrev)
10096 (setq path (expand-file-name path)))
10097 ((eq org-link-file-path-type 'relative)
10098 (setq path (file-relative-name path)))
10100 (save-match-data
10101 (if (string-match (concat "^" (regexp-quote
10102 (expand-file-name
10103 (file-name-as-directory
10104 default-directory))))
10105 (expand-file-name path))
10106 ;; We are linking a file with relative path name.
10107 (setq path (substring (expand-file-name path)
10108 (match-end 0)))
10109 (setq path (abbreviate-file-name (expand-file-name path)))))))
10110 (setq link (concat type path))
10111 (if (equal desc origpath)
10112 (setq desc path))))
10114 (if org-make-link-description-function
10115 (setq desc
10116 (or (condition-case nil
10117 (funcall org-make-link-description-function link desc)
10118 (error (progn (message "Can't get link description from `%s'"
10119 (symbol-name org-make-link-description-function))
10120 (sit-for 2) nil)))
10121 (read-string "Description: " default-description)))
10122 (if default-description (setq desc default-description)
10123 (setq desc (or (and auto-desc desc)
10124 (read-string "Description: " desc)))))
10126 (unless (string-match "\\S-" desc) (setq desc nil))
10127 (if remove (apply 'delete-region remove))
10128 (insert (org-make-link-string link desc))))
10130 (defun org-link-try-special-completion (type)
10131 "If there is completion support for link type TYPE, offer it."
10132 (let ((fun (intern (concat "org-" type "-complete-link"))))
10133 (if (functionp fun)
10134 (funcall fun)
10135 (read-string "Link (no completion support): " (concat type ":")))))
10137 (defun org-file-complete-link (&optional arg)
10138 "Create a file link using completion."
10139 (let (file link)
10140 (setq file (org-iread-file-name "File: "))
10141 (let ((pwd (file-name-as-directory (expand-file-name ".")))
10142 (pwd1 (file-name-as-directory (abbreviate-file-name
10143 (expand-file-name ".")))))
10144 (cond
10145 ((equal arg '(16))
10146 (setq link (concat
10147 "file:"
10148 (abbreviate-file-name (expand-file-name file)))))
10149 ((string-match (concat "^" (regexp-quote pwd1) "\\(.+\\)") file)
10150 (setq link (concat "file:" (match-string 1 file))))
10151 ((string-match (concat "^" (regexp-quote pwd) "\\(.+\\)")
10152 (expand-file-name file))
10153 (setq link (concat
10154 "file:" (match-string 1 (expand-file-name file)))))
10155 (t (setq link (concat "file:" file)))))
10156 link))
10158 (defun org-iread-file-name (&rest args)
10159 "Read-file-name using `ido-mode' speedup if available.
10160 ARGS are arguments that may be passed to `ido-read-file-name' or `read-file-name'.
10161 See `read-file-name' for a description of parameters."
10162 (org-without-partial-completion
10163 (if (and org-completion-use-ido
10164 (fboundp 'ido-read-file-name)
10165 (boundp 'ido-mode) ido-mode
10166 (listp (second args)))
10167 (let ((ido-enter-matching-directory nil))
10168 (apply 'ido-read-file-name args))
10169 (apply 'read-file-name args))))
10171 (defun org-completing-read (&rest args)
10172 "Completing-read with SPACE being a normal character."
10173 (let ((enable-recursive-minibuffers t)
10174 (minibuffer-local-completion-map
10175 (copy-keymap minibuffer-local-completion-map)))
10176 (org-defkey minibuffer-local-completion-map " " 'self-insert-command)
10177 (org-defkey minibuffer-local-completion-map "?" 'self-insert-command)
10178 (org-defkey minibuffer-local-completion-map (kbd "C-c !") 'org-time-stamp-inactive)
10179 (apply 'org-icompleting-read args)))
10181 (defun org-completing-read-no-i (&rest args)
10182 (let (org-completion-use-ido org-completion-use-iswitchb)
10183 (apply 'org-completing-read args)))
10185 (defun org-iswitchb-completing-read (prompt choices &rest args)
10186 "Use iswitch as a completing-read replacement to choose from choices.
10187 PROMPT is a string to prompt with. CHOICES is a list of strings to choose
10188 from."
10189 (let* ((iswitchb-use-virtual-buffers nil)
10190 (iswitchb-make-buflist-hook
10191 (lambda ()
10192 (setq iswitchb-temp-buflist choices))))
10193 (iswitchb-read-buffer prompt)))
10195 (defun org-icompleting-read (&rest args)
10196 "Completing-read using `ido-mode' or `iswitchb' speedups if available."
10197 (org-without-partial-completion
10198 (if (and org-completion-use-ido
10199 (fboundp 'ido-completing-read)
10200 (boundp 'ido-mode) ido-mode
10201 (listp (second args)))
10202 (let ((ido-enter-matching-directory nil))
10203 (apply 'ido-completing-read (concat (car args))
10204 (if (consp (car (nth 1 args)))
10205 (mapcar 'car (nth 1 args))
10206 (nth 1 args))
10207 (cddr args)))
10208 (if (and org-completion-use-iswitchb
10209 (boundp 'iswitchb-mode) iswitchb-mode
10210 (listp (second args)))
10211 (apply 'org-iswitchb-completing-read (concat (car args))
10212 (if (consp (car (nth 1 args)))
10213 (mapcar 'car (nth 1 args))
10214 (nth 1 args))
10215 (cddr args))
10216 (apply 'completing-read args)))))
10218 (defun org-extract-attributes (s)
10219 "Extract the attributes cookie from a string and set as text property."
10220 (let (a attr (start 0) key value)
10221 (save-match-data
10222 (when (string-match "{{\\([^}]+\\)}}$" s)
10223 (setq a (match-string 1 s) s (substring s 0 (match-beginning 0)))
10224 (while (string-match "\\([a-zA-Z]+\\)=\"\\([^\"]*\\)\"" a start)
10225 (setq key (match-string 1 a) value (match-string 2 a)
10226 start (match-end 0)
10227 attr (plist-put attr (intern key) value))))
10228 (org-add-props s nil 'org-attr attr))
10231 ;;; Opening/following a link
10233 (defvar org-link-search-failed nil)
10235 (defvar org-open-link-functions nil
10236 "Hook for functions finding a plain text link.
10237 These functions must take a single argument, the link content.
10238 They will be called for links that look like [[link text][description]]
10239 when LINK TEXT does not have a protocol like \"http:\" and does not look
10240 like a filename (e.g. \"./blue.png\").
10242 These functions will be called *before* Org attempts to resolve the
10243 link by doing text searches in the current buffer - so if you want a
10244 link \"[[target]]\" to still find \"<<target>>\", your function should
10245 handle this as a special case.
10247 When the function does handle the link, it must return a non-nil value.
10248 If it decides that it is not responsible for this link, it must return
10249 nil to indicate that that Org-mode can continue with other options
10250 like exact and fuzzy text search.")
10252 (defun org-next-link (&optional search-backward)
10253 "Move forward to the next link.
10254 If the link is in hidden text, expose it."
10255 (interactive "P")
10256 (when (and org-link-search-failed (eq this-command last-command))
10257 (goto-char (point-min))
10258 (message "Link search wrapped back to beginning of buffer"))
10259 (setq org-link-search-failed nil)
10260 (let* ((pos (point))
10261 (ct (org-context))
10262 (a (assoc :link ct))
10263 (srch-fun (if search-backward 're-search-backward 're-search-forward)))
10264 (cond (a (goto-char (nth (if search-backward 1 2) a)))
10265 ((looking-at org-any-link-re)
10266 ;; Don't stay stuck at link without an org-link face
10267 (forward-char (if search-backward -1 1))))
10268 (if (funcall srch-fun org-any-link-re nil t)
10269 (progn
10270 (goto-char (match-beginning 0))
10271 (if (outline-invisible-p) (org-show-context)))
10272 (goto-char pos)
10273 (setq org-link-search-failed t)
10274 (message "No further link found"))))
10276 (defun org-previous-link ()
10277 "Move backward to the previous link.
10278 If the link is in hidden text, expose it."
10279 (interactive)
10280 (funcall 'org-next-link t))
10282 (defun org-translate-link (s)
10283 "Translate a link string if a translation function has been defined."
10284 (if (and org-link-translation-function
10285 (fboundp org-link-translation-function)
10286 (string-match "\\([a-zA-Z0-9]+\\):\\(.*\\)" s))
10287 (progn
10288 (setq s (funcall org-link-translation-function
10289 (match-string 1 s) (match-string 2 s)))
10290 (concat (car s) ":" (cdr s)))
10293 (defun org-translate-link-from-planner (type path)
10294 "Translate a link from Emacs Planner syntax so that Org can follow it.
10295 This is still an experimental function, your mileage may vary."
10296 (cond
10297 ((member type '("http" "https" "news" "ftp"))
10298 ;; standard Internet links are the same.
10299 nil)
10300 ((and (equal type "irc") (string-match "^//" path))
10301 ;; Planner has two / at the beginning of an irc link, we have 1.
10302 ;; We should have zero, actually....
10303 (setq path (substring path 1)))
10304 ((and (equal type "lisp") (string-match "^/" path))
10305 ;; Planner has a slash, we do not.
10306 (setq type "elisp" path (substring path 1)))
10307 ((string-match "^//\\(.?*\\)/\\(<.*>\\)$" path)
10308 ;; A typical message link. Planner has the id after the final slash,
10309 ;; we separate it with a hash mark
10310 (setq path (concat (match-string 1 path) "#"
10311 (org-remove-angle-brackets (match-string 2 path))))))
10312 (cons type path))
10314 (defun org-find-file-at-mouse (ev)
10315 "Open file link or URL at mouse."
10316 (interactive "e")
10317 (mouse-set-point ev)
10318 (org-open-at-point 'in-emacs))
10320 (defun org-open-at-mouse (ev)
10321 "Open file link or URL at mouse.
10322 See the docstring of `org-open-file' for details."
10323 (interactive "e")
10324 (mouse-set-point ev)
10325 (if (eq major-mode 'org-agenda-mode)
10326 (org-agenda-copy-local-variable 'org-link-abbrev-alist-local))
10327 (org-open-at-point))
10329 (defvar org-window-config-before-follow-link nil
10330 "The window configuration before following a link.
10331 This is saved in case the need arises to restore it.")
10333 (defvar org-open-link-marker (make-marker)
10334 "Marker pointing to the location where `org-open-at-point' was called.")
10336 ;;;###autoload
10337 (defun org-open-at-point-global ()
10338 "Follow a link like Org-mode does.
10339 This command can be called in any mode to follow a link that has
10340 Org-mode syntax."
10341 (interactive)
10342 (org-run-like-in-org-mode 'org-open-at-point))
10344 ;;;###autoload
10345 (defun org-open-link-from-string (s &optional arg reference-buffer)
10346 "Open a link in the string S, as if it was in Org-mode."
10347 (interactive "sLink: \nP")
10348 (let ((reference-buffer (or reference-buffer (current-buffer))))
10349 (with-temp-buffer
10350 (let ((org-inhibit-startup (not reference-buffer)))
10351 (org-mode)
10352 (insert s)
10353 (goto-char (point-min))
10354 (when reference-buffer
10355 (setq org-link-abbrev-alist-local
10356 (with-current-buffer reference-buffer
10357 org-link-abbrev-alist-local)))
10358 (org-open-at-point arg reference-buffer)))))
10360 (defvar org-open-at-point-functions nil
10361 "Hook that is run when following a link at point.
10363 Functions in this hook must return t if they identify and follow
10364 a link at point. If they don't find anything interesting at point,
10365 they must return nil.")
10367 (defvar org-link-search-inhibit-query nil) ;; dynamically scoped
10368 (defvar clean-buffer-list-kill-buffer-names) ; Defined in midnight.el
10369 (defun org-open-at-point (&optional arg reference-buffer)
10370 "Open link at or after point.
10371 If there is no link at point, this function will search forward up to
10372 the end of the current line.
10373 Normally, files will be opened by an appropriate application. If the
10374 optional prefix argument ARG is non-nil, Emacs will visit the file.
10375 With a double prefix argument, try to open outside of Emacs, in the
10376 application the system uses for this file type."
10377 (interactive "P")
10378 ;; if in a code block, then open the block's results
10379 (unless (call-interactively #'org-babel-open-src-block-result)
10380 (org-load-modules-maybe)
10381 (move-marker org-open-link-marker (point))
10382 (setq org-window-config-before-follow-link (current-window-configuration))
10383 (org-remove-occur-highlights nil nil t)
10384 (cond
10385 ((and (org-at-heading-p)
10386 (not (org-at-timestamp-p t))
10387 (not (org-in-regexp
10388 (concat org-plain-link-re "\\|"
10389 org-bracket-link-regexp "\\|"
10390 org-angle-link-re "\\|"
10391 "[ \t]:[^ \t\n]+:[ \t]*$")))
10392 (not (get-text-property (point) 'org-linked-text)))
10393 (or (let* ((lkall (org-offer-links-in-entry (current-buffer) (point) arg))
10394 (lk0 (car lkall))
10395 (lk (if (stringp lk0) (list lk0) lk0))
10396 (lkend (cdr lkall)))
10397 (mapcar (lambda(l)
10398 (search-forward l nil lkend)
10399 (goto-char (match-beginning 0))
10400 (org-open-at-point))
10401 lk))
10402 (progn (require 'org-attach) (org-attach-reveal 'if-exists))))
10403 ((run-hook-with-args-until-success 'org-open-at-point-functions))
10404 ((and (org-at-timestamp-p t)
10405 (not (org-in-regexp org-bracket-link-regexp)))
10406 (org-follow-timestamp-link))
10407 ((and (or (org-footnote-at-reference-p) (org-footnote-at-definition-p))
10408 (not (org-in-regexp org-any-link-re)))
10409 (org-footnote-action))
10411 (let (type path link line search (pos (point)))
10412 (catch 'match
10413 (save-excursion
10414 (or (org-in-regexp org-plain-link-re)
10415 (skip-chars-forward "^]\n\r"))
10416 (when (org-in-regexp org-bracket-link-regexp 1)
10417 (setq link (org-extract-attributes
10418 (org-link-unescape (org-match-string-no-properties 1))))
10419 (while (string-match " *\n *" link)
10420 (setq link (replace-match " " t t link)))
10421 (setq link (org-link-expand-abbrev link))
10422 (cond
10423 ((or (file-name-absolute-p link)
10424 (string-match "^\\.\\.?/" link))
10425 (setq type "file" path link))
10426 ((string-match org-link-re-with-space3 link)
10427 (setq type (match-string 1 link) path (match-string 2 link)))
10428 ((string-match "^help:+\\(.+\\)" link)
10429 (setq type "help" path (match-string 1 link)))
10430 (t (setq type "thisfile" path link)))
10431 (throw 'match t)))
10433 (when (get-text-property (point) 'org-linked-text)
10434 (setq type "thisfile"
10435 pos (if (get-text-property (1+ (point)) 'org-linked-text)
10436 (1+ (point)) (point))
10437 path (buffer-substring
10438 (or (previous-single-property-change pos 'org-linked-text)
10439 (point-min))
10440 (or (next-single-property-change pos 'org-linked-text)
10441 (point-max)))
10442 ;; Ensure we will search for a <<<radio>>> link, not
10443 ;; a simple reference like <<ref>>
10444 path (concat "<" path))
10445 (throw 'match t))
10447 (save-excursion
10448 (when (or (org-in-regexp org-angle-link-re)
10449 (let ((match (org-in-regexp org-plain-link-re)))
10450 ;; Check a plain link is not within a bracket link
10451 (and match
10452 (save-excursion
10453 (save-match-data
10454 (progn
10455 (goto-char (car match))
10456 (not (org-in-regexp org-bracket-link-regexp)))))))
10457 (let ((line_ending (save-excursion (end-of-line) (point))))
10458 ;; We are in a line before a plain or bracket link
10459 (or (re-search-forward org-plain-link-re line_ending t)
10460 (re-search-forward org-bracket-link-regexp line_ending t))))
10461 (setq type (match-string 1)
10462 path (org-link-unescape (match-string 2)))
10463 (throw 'match t)))
10464 (save-excursion
10465 (when (org-in-regexp (org-re "\\(:[[:alnum:]_@#%:]+\\):[ \t]*$"))
10466 (setq type "tags"
10467 path (match-string 1))
10468 (while (string-match ":" path)
10469 (setq path (replace-match "+" t t path)))
10470 (throw 'match t)))
10471 (when (org-in-regexp "<\\([^><\n]+\\)>")
10472 (setq type "tree-match"
10473 path (match-string 1))
10474 (throw 'match t)))
10475 (unless path
10476 (user-error "No link found"))
10478 ;; switch back to reference buffer
10479 ;; needed when if called in a temporary buffer through
10480 ;; org-open-link-from-string
10481 (with-current-buffer (or reference-buffer (current-buffer))
10483 ;; Remove any trailing spaces in path
10484 (if (string-match " +\\'" path)
10485 (setq path (replace-match "" t t path)))
10486 (if (and org-link-translation-function
10487 (fboundp org-link-translation-function))
10488 ;; Check if we need to translate the link
10489 (let ((tmp (funcall org-link-translation-function type path)))
10490 (setq type (car tmp) path (cdr tmp))))
10492 (cond
10494 ((assoc type org-link-protocols)
10495 (funcall (nth 1 (assoc type org-link-protocols)) path))
10497 ((equal type "help")
10498 (let ((f-or-v (intern path)))
10499 (cond ((fboundp f-or-v)
10500 (describe-function f-or-v))
10501 ((boundp f-or-v)
10502 (describe-variable f-or-v))
10503 (t (error "Not a known function or variable")))))
10505 ((equal type "mailto")
10506 (let ((cmd (car org-link-mailto-program))
10507 (args (cdr org-link-mailto-program)) args1
10508 (address path) (subject "") a)
10509 (if (string-match "\\(.*\\)::\\(.*\\)" path)
10510 (setq address (match-string 1 path)
10511 subject (org-link-escape (match-string 2 path))))
10512 (while args
10513 (cond
10514 ((not (stringp (car args))) (push (pop args) args1))
10515 (t (setq a (pop args))
10516 (if (string-match "%a" a)
10517 (setq a (replace-match address t t a)))
10518 (if (string-match "%s" a)
10519 (setq a (replace-match subject t t a)))
10520 (push a args1))))
10521 (apply cmd (nreverse args1))))
10523 ((member type '("http" "https" "ftp" "news"))
10524 (browse-url
10525 (concat type ":"
10526 (if (org-string-match-p
10527 (concat "[[:nonascii:]"
10528 org-link-escape-chars-browser "]")
10529 path)
10530 (org-link-escape path org-link-escape-chars-browser)
10531 path))))
10533 ((string= type "doi")
10534 (browse-url
10535 (concat org-doi-server-url
10536 (if (org-string-match-p
10537 (concat "[[:nonascii:]"
10538 org-link-escape-chars-browser "]")
10539 path)
10540 (org-link-escape path org-link-escape-chars-browser)
10541 path))))
10543 ((member type '("message"))
10544 (browse-url (concat type ":" path)))
10546 ((string= type "tags")
10547 (org-tags-view arg path))
10549 ((string= type "tree-match")
10550 (org-occur (concat "\\[" (regexp-quote path) "\\]")))
10552 ((string= type "file")
10553 (if (string-match "::\\([0-9]+\\)\\'" path)
10554 (setq line (string-to-number (match-string 1 path))
10555 path (substring path 0 (match-beginning 0)))
10556 (if (string-match "::\\(.+\\)\\'" path)
10557 (setq search (match-string 1 path)
10558 path (substring path 0 (match-beginning 0)))))
10559 (if (string-match "[*?{]" (file-name-nondirectory path))
10560 (dired path)
10561 (org-open-file path arg line search)))
10563 ((string= type "shell")
10564 (let ((buf (generate-new-buffer "*Org Shell Output"))
10565 (cmd path))
10566 (if (or (and (not (string= org-confirm-shell-link-not-regexp ""))
10567 (string-match org-confirm-shell-link-not-regexp cmd))
10568 (not org-confirm-shell-link-function)
10569 (funcall org-confirm-shell-link-function
10570 (format "Execute \"%s\" in shell? "
10571 (org-add-props cmd nil
10572 'face 'org-warning))))
10573 (progn
10574 (message "Executing %s" cmd)
10575 (shell-command cmd buf)
10576 (if (featurep 'midnight)
10577 (setq clean-buffer-list-kill-buffer-names
10578 (cons buf clean-buffer-list-kill-buffer-names))))
10579 (error "Abort"))))
10581 ((string= type "elisp")
10582 (let ((cmd path))
10583 (if (or (and (not (string= org-confirm-elisp-link-not-regexp ""))
10584 (string-match org-confirm-elisp-link-not-regexp cmd))
10585 (not org-confirm-elisp-link-function)
10586 (funcall org-confirm-elisp-link-function
10587 (format "Execute \"%s\" as elisp? "
10588 (org-add-props cmd nil
10589 'face 'org-warning))))
10590 (message "%s => %s" cmd
10591 (if (equal (string-to-char cmd) ?\()
10592 (eval (read cmd))
10593 (call-interactively (read cmd))))
10594 (error "Abort"))))
10596 ((and (string= type "thisfile")
10597 (or (run-hook-with-args-until-success
10598 'org-open-link-functions path)
10599 (and link
10600 (string-match "^id:" link)
10601 (or (featurep 'org-id) (require 'org-id))
10602 (progn
10603 (funcall (nth 1 (assoc "id" org-link-protocols))
10604 (substring path 3))
10605 t)))))
10607 ((string= type "thisfile")
10608 (if arg
10609 (switch-to-buffer-other-window
10610 (org-get-buffer-for-internal-link (current-buffer)))
10611 (org-mark-ring-push))
10612 (let ((cmd `(org-link-search
10613 ,path
10614 ,(cond ((equal arg '(4)) ''occur)
10615 ((equal arg '(16)) ''org-occur))
10616 ,pos)))
10617 (condition-case nil (let ((org-link-search-inhibit-query t))
10618 (eval cmd))
10619 (error (progn (widen) (eval cmd))))))
10621 (t (browse-url-at-point)))))))
10622 (move-marker org-open-link-marker nil)
10623 (run-hook-with-args 'org-follow-link-hook)))
10625 (defsubst org-uniquify (list)
10626 "Non-destructively remove duplicate elements from LIST."
10627 (let ((res (copy-sequence list))) (delete-dups res)))
10629 (defun org-offer-links-in-entry (buffer marker &optional nth zero)
10630 "Offer links in the current entry and return the selected link.
10631 If there is only one link, return it.
10632 If NTH is an integer, return the NTH link found.
10633 If ZERO is a string, check also this string for a link, and if
10634 there is one, return it."
10635 (with-current-buffer buffer
10636 (save-excursion
10637 (save-restriction
10638 (widen)
10639 (goto-char marker)
10640 (let ((re (concat "\\(" org-bracket-link-regexp "\\)\\|"
10641 "\\(" org-angle-link-re "\\)\\|"
10642 "\\(" org-plain-link-re "\\)"))
10643 (cnt ?0)
10644 (in-emacs (if (integerp nth) nil nth))
10645 have-zero end links link c)
10646 (when (and (stringp zero) (string-match org-bracket-link-regexp zero))
10647 (push (match-string 0 zero) links)
10648 (setq cnt (1- cnt) have-zero t))
10649 (save-excursion
10650 (org-back-to-heading t)
10651 (setq end (save-excursion (outline-next-heading) (point)))
10652 (while (re-search-forward re end t)
10653 (push (match-string 0) links))
10654 (setq links (org-uniquify (reverse links))))
10655 (cond
10656 ((null links)
10657 (message "No links"))
10658 ((equal (length links) 1)
10659 (setq link (car links)))
10660 ((and (integerp nth) (>= (length links) (if have-zero (1+ nth) nth)))
10661 (setq link (nth (if have-zero nth (1- nth)) links)))
10662 (t ; we have to select a link
10663 (save-excursion
10664 (save-window-excursion
10665 (delete-other-windows)
10666 (with-output-to-temp-buffer "*Select Link*"
10667 (mapc (lambda (l)
10668 (if (not (string-match org-bracket-link-regexp l))
10669 (princ (format "[%c] %s\n" (incf cnt)
10670 (org-remove-angle-brackets l)))
10671 (if (match-end 3)
10672 (princ (format "[%c] %s (%s)\n" (incf cnt)
10673 (match-string 3 l) (match-string 1 l)))
10674 (princ (format "[%c] %s\n" (incf cnt)
10675 (match-string 1 l))))))
10676 links))
10677 (org-fit-window-to-buffer (get-buffer-window "*Select Link*"))
10678 (message "Select link to open, RET to open all:")
10679 (setq c (read-char-exclusive))
10680 (and (get-buffer "*Select Link*") (kill-buffer "*Select Link*"))))
10681 (when (equal c ?q) (error "Abort"))
10682 (if (equal c ?\C-m)
10683 (setq link links)
10684 (setq nth (- c ?0))
10685 (if have-zero (setq nth (1+ nth)))
10686 (unless (and (integerp nth) (>= (length links) nth))
10687 (user-error "Invalid link selection"))
10688 (setq link (nth (1- nth) links)))))
10689 (cons link end))))))
10691 ;; Add special file links that specify the way of opening
10693 (org-add-link-type "file+sys" 'org-open-file-with-system)
10694 (org-add-link-type "file+emacs" 'org-open-file-with-emacs)
10695 (defun org-open-file-with-system (path)
10696 "Open file at PATH using the system way of opening it."
10697 (org-open-file path 'system))
10698 (defun org-open-file-with-emacs (path)
10699 "Open file at PATH in Emacs."
10700 (org-open-file path 'emacs))
10703 ;;; File search
10705 (defvar org-create-file-search-functions nil
10706 "List of functions to construct the right search string for a file link.
10707 These functions are called in turn with point at the location to
10708 which the link should point.
10710 A function in the hook should first test if it would like to
10711 handle this file type, for example by checking the `major-mode'
10712 or the file extension. If it decides not to handle this file, it
10713 should just return nil to give other functions a chance. If it
10714 does handle the file, it must return the search string to be used
10715 when following the link. The search string will be part of the
10716 file link, given after a double colon, and `org-open-at-point'
10717 will automatically search for it. If special measures must be
10718 taken to make the search successful, another function should be
10719 added to the companion hook `org-execute-file-search-functions',
10720 which see.
10722 A function in this hook may also use `setq' to set the variable
10723 `description' to provide a suggestion for the descriptive text to
10724 be used for this link when it gets inserted into an Org-mode
10725 buffer with \\[org-insert-link].")
10727 (defvar org-execute-file-search-functions nil
10728 "List of functions to execute a file search triggered by a link.
10730 Functions added to this hook must accept a single argument, the
10731 search string that was part of the file link, the part after the
10732 double colon. The function must first check if it would like to
10733 handle this search, for example by checking the `major-mode' or
10734 the file extension. If it decides not to handle this search, it
10735 should just return nil to give other functions a chance. If it
10736 does handle the search, it must return a non-nil value to keep
10737 other functions from trying.
10739 Each function can access the current prefix argument through the
10740 variable `current-prefix-arg'. Note that a single prefix is used
10741 to force opening a link in Emacs, so it may be good to only use a
10742 numeric or double prefix to guide the search function.
10744 In case this is needed, a function in this hook can also restore
10745 the window configuration before `org-open-at-point' was called using:
10747 (set-window-configuration org-window-config-before-follow-link)")
10749 (defun org-link-search (s &optional type avoid-pos stealth)
10750 "Search for a link search option.
10751 If S is surrounded by forward slashes, it is interpreted as a
10752 regular expression. In org-mode files, this will create an `org-occur'
10753 sparse tree. In ordinary files, `occur' will be used to list matches.
10754 If the current buffer is in `dired-mode', grep will be used to search
10755 in all files. If AVOID-POS is given, ignore matches near that position.
10757 When optional argument STEALTH is non-nil, do not modify
10758 visibility around point, thus ignoring
10759 `org-show-hierarchy-above', `org-show-following-heading' and
10760 `org-show-siblings' variables."
10761 (let ((case-fold-search t)
10762 (s0 (mapconcat 'identity (org-split-string s "[ \t\r\n]+") " "))
10763 (markers (concat "\\(?:" (mapconcat (lambda (x) (regexp-quote (car x)))
10764 (append '(("") (" ") ("\t") ("\n"))
10765 org-emphasis-alist)
10766 "\\|") "\\)"))
10767 (pos (point))
10768 (pre nil) (post nil)
10769 words re0 re1 re2 re3 re4_ re4 re5 re2a re2a_ reall)
10770 (cond
10771 ;; First check if there are any special search functions
10772 ((run-hook-with-args-until-success 'org-execute-file-search-functions s))
10773 ;; Now try the builtin stuff
10774 ((and (equal (string-to-char s0) ?#)
10775 (> (length s0) 1)
10776 (save-excursion
10777 (goto-char (point-min))
10778 (and
10779 (re-search-forward
10780 (concat "^[ \t]*:CUSTOM_ID:[ \t]+"
10781 (regexp-quote (substring s0 1)) "[ \t]*$") nil t)
10782 (setq type 'dedicated
10783 pos (match-beginning 0))))
10784 ;; There is an exact target for this
10785 (goto-char pos)
10786 (org-back-to-heading t)))
10787 ((save-excursion
10788 (goto-char (point-min))
10789 (and
10790 (re-search-forward
10791 (concat "<<" (regexp-quote s0) ">>") nil t)
10792 (setq type 'dedicated
10793 pos (match-beginning 0))))
10794 ;; There is an exact target for this
10795 (goto-char pos))
10796 ((save-excursion
10797 (goto-char (point-min))
10798 (and
10799 (re-search-forward
10800 (format "^[ \t]*#\\+NAME: %s" (regexp-quote s0)) nil t)
10801 (setq type 'dedicated pos (match-beginning 0))))
10802 ;; Found an element with a matching #+name affiliated keyword.
10803 (goto-char pos))
10804 ((and (string-match "^(\\(.*\\))$" s0)
10805 (save-excursion
10806 (goto-char (point-min))
10807 (and
10808 (re-search-forward
10809 (concat "[^[]" (regexp-quote
10810 (format org-coderef-label-format
10811 (match-string 1 s0))))
10812 nil t)
10813 (setq type 'dedicated
10814 pos (1+ (match-beginning 0))))))
10815 ;; There is a coderef target for this
10816 (goto-char pos))
10817 ((string-match "^/\\(.*\\)/$" s)
10818 ;; A regular expression
10819 (cond
10820 ((derived-mode-p 'org-mode)
10821 (org-occur (match-string 1 s)))
10822 (t (org-do-occur (match-string 1 s)))))
10823 ((and (derived-mode-p 'org-mode) org-link-search-must-match-exact-headline)
10824 (and (equal (string-to-char s) ?*) (setq s (substring s 1)))
10825 (goto-char (point-min))
10826 (cond
10827 ((let (case-fold-search)
10828 (re-search-forward (format org-complex-heading-regexp-format
10829 (regexp-quote s))
10830 nil t))
10831 ;; OK, found a match
10832 (setq type 'dedicated)
10833 (goto-char (match-beginning 0)))
10834 ((and (not org-link-search-inhibit-query)
10835 (eq org-link-search-must-match-exact-headline 'query-to-create)
10836 (y-or-n-p "No match - create this as a new heading? "))
10837 (goto-char (point-max))
10838 (or (bolp) (newline))
10839 (insert "* " s "\n")
10840 (beginning-of-line 0))
10842 (goto-char pos)
10843 (error "No match"))))
10845 ;; A normal search string
10846 (when (equal (string-to-char s) ?*)
10847 ;; Anchor on headlines, post may include tags.
10848 (setq pre "^\\*+[ \t]+\\(?:\\sw+\\)?[ \t]*"
10849 post (org-re "[ \t]*\\(?:[ \t]+:[[:alnum:]_@#%:+]:[ \t]*\\)?$")
10850 s (substring s 1)))
10851 (remove-text-properties
10852 0 (length s)
10853 '(face nil mouse-face nil keymap nil fontified nil) s)
10854 ;; Make a series of regular expressions to find a match
10855 (setq words (org-split-string s "[ \n\r\t]+")
10857 re0 (concat "\\(<<" (regexp-quote s0) ">>\\)")
10858 re2 (concat markers "\\(" (mapconcat 'downcase words "[ \t]+")
10859 "\\)" markers)
10860 re2a_ (concat "\\(" (mapconcat 'downcase words
10861 "[ \t\r\n]+") "\\)[ \t\r\n]")
10862 re2a (concat "[ \t\r\n]" re2a_)
10863 re4_ (concat "\\(" (mapconcat 'downcase words
10864 "[^a-zA-Z_\r\n]+") "\\)[^a-zA-Z_]")
10865 re4 (concat "[^a-zA-Z_]" re4_)
10867 re1 (concat pre re2 post)
10868 re3 (concat pre (if pre re4_ re4) post)
10869 re5 (concat pre ".*" re4)
10870 re2 (concat pre re2)
10871 re2a (concat pre (if pre re2a_ re2a))
10872 re4 (concat pre (if pre re4_ re4))
10873 reall (concat "\\(" re0 "\\)\\|\\(" re1 "\\)\\|\\(" re2
10874 "\\)\\|\\(" re3 "\\)\\|\\(" re4 "\\)\\|\\("
10875 re5 "\\)"))
10876 (cond
10877 ((eq type 'org-occur) (org-occur reall))
10878 ((eq type 'occur) (org-do-occur (downcase reall) 'cleanup))
10879 (t (goto-char (point-min))
10880 (setq type 'fuzzy)
10881 (if (or (and (org-search-not-self 1 re0 nil t)
10882 (setq type 'dedicated))
10883 (org-search-not-self 1 re1 nil t)
10884 (org-search-not-self 1 re2 nil t)
10885 (org-search-not-self 1 re2a nil t)
10886 (org-search-not-self 1 re3 nil t)
10887 (org-search-not-self 1 re4 nil t)
10888 (org-search-not-self 1 re5 nil t))
10889 (goto-char (match-beginning 1))
10890 (goto-char pos)
10891 (error "No match"))))))
10892 (and (derived-mode-p 'org-mode)
10893 (not stealth)
10894 (org-show-context 'link-search))
10895 type))
10897 (defun org-search-not-self (group &rest args)
10898 "Execute `re-search-forward', but only accept matches that do not
10899 enclose the position of `org-open-link-marker'."
10900 (let ((m org-open-link-marker))
10901 (catch 'exit
10902 (while (apply 're-search-forward args)
10903 (unless (get-text-property (match-end group) 'intangible) ; Emacs 21
10904 (goto-char (match-end group))
10905 (if (and (or (not (eq (marker-buffer m) (current-buffer)))
10906 (> (match-beginning 0) (marker-position m))
10907 (< (match-end 0) (marker-position m)))
10908 (save-match-data
10909 (or (not (org-in-regexp
10910 org-bracket-link-analytic-regexp 1))
10911 (not (match-end 4)) ; no description
10912 (and (<= (match-beginning 4) (point))
10913 (>= (match-end 4) (point))))))
10914 (throw 'exit (point))))))))
10916 (defun org-get-buffer-for-internal-link (buffer)
10917 "Return a buffer to be used for displaying the link target of internal links."
10918 (cond
10919 ((not org-display-internal-link-with-indirect-buffer)
10920 buffer)
10921 ((string-match "(Clone)$" (buffer-name buffer))
10922 (message "Buffer is already a clone, not making another one")
10923 ;; we also do not modify visibility in this case
10924 buffer)
10925 (t ; make a new indirect buffer for displaying the link
10926 (let* ((bn (buffer-name buffer))
10927 (ibn (concat bn "(Clone)"))
10928 (ib (or (get-buffer ibn) (make-indirect-buffer buffer ibn 'clone))))
10929 (with-current-buffer ib (org-overview))
10930 ib))))
10932 (defun org-do-occur (regexp &optional cleanup)
10933 "Call the Emacs command `occur'.
10934 If CLEANUP is non-nil, remove the printout of the regular expression
10935 in the *Occur* buffer. This is useful if the regex is long and not useful
10936 to read."
10937 (occur regexp)
10938 (when cleanup
10939 (let ((cwin (selected-window)) win beg end)
10940 (when (setq win (get-buffer-window "*Occur*"))
10941 (select-window win))
10942 (goto-char (point-min))
10943 (when (re-search-forward "match[a-z]+" nil t)
10944 (setq beg (match-end 0))
10945 (if (re-search-forward "^[ \t]*[0-9]+" nil t)
10946 (setq end (1- (match-beginning 0)))))
10947 (and beg end (let ((inhibit-read-only t)) (delete-region beg end)))
10948 (goto-char (point-min))
10949 (select-window cwin))))
10951 ;;; The mark ring for links jumps
10953 (defvar org-mark-ring nil
10954 "Mark ring for positions before jumps in Org-mode.")
10955 (defvar org-mark-ring-last-goto nil
10956 "Last position in the mark ring used to go back.")
10957 ;; Fill and close the ring
10958 (setq org-mark-ring nil org-mark-ring-last-goto nil) ;; in case file is reloaded
10959 (loop for i from 1 to org-mark-ring-length do
10960 (push (make-marker) org-mark-ring))
10961 (setcdr (nthcdr (1- org-mark-ring-length) org-mark-ring)
10962 org-mark-ring)
10964 (defun org-mark-ring-push (&optional pos buffer)
10965 "Put the current position or POS into the mark ring and rotate it."
10966 (interactive)
10967 (setq pos (or pos (point)))
10968 (setq org-mark-ring (nthcdr (1- org-mark-ring-length) org-mark-ring))
10969 (move-marker (car org-mark-ring)
10970 (or pos (point))
10971 (or buffer (current-buffer)))
10972 (message "%s"
10973 (substitute-command-keys
10974 "Position saved to mark ring, go back with \\[org-mark-ring-goto].")))
10976 (defun org-mark-ring-goto (&optional n)
10977 "Jump to the previous position in the mark ring.
10978 With prefix arg N, jump back that many stored positions. When
10979 called several times in succession, walk through the entire ring.
10980 Org-mode commands jumping to a different position in the current file,
10981 or to another Org-mode file, automatically push the old position
10982 onto the ring."
10983 (interactive "p")
10984 (let (p m)
10985 (if (eq last-command this-command)
10986 (setq p (nthcdr n (or org-mark-ring-last-goto org-mark-ring)))
10987 (setq p org-mark-ring))
10988 (setq org-mark-ring-last-goto p)
10989 (setq m (car p))
10990 (org-pop-to-buffer-same-window (marker-buffer m))
10991 (goto-char m)
10992 (if (or (outline-invisible-p) (org-invisible-p2)) (org-show-context 'mark-goto))))
10994 (defun org-remove-angle-brackets (s)
10995 (if (equal (substring s 0 1) "<") (setq s (substring s 1)))
10996 (if (equal (substring s -1) ">") (setq s (substring s 0 -1)))
10998 (defun org-add-angle-brackets (s)
10999 (if (equal (substring s 0 1) "<") nil (setq s (concat "<" s)))
11000 (if (equal (substring s -1) ">") nil (setq s (concat s ">")))
11002 (defun org-remove-double-quotes (s)
11003 (if (equal (substring s 0 1) "\"") (setq s (substring s 1)))
11004 (if (equal (substring s -1) "\"") (setq s (substring s 0 -1)))
11007 ;;; Following specific links
11009 (defun org-follow-timestamp-link ()
11010 "Open an agenda view for the time-stamp date/range at point."
11011 (cond
11012 ((org-at-date-range-p t)
11013 (let ((org-agenda-start-on-weekday)
11014 (t1 (match-string 1))
11015 (t2 (match-string 2)) tt1 tt2)
11016 (setq tt1 (time-to-days (org-time-string-to-time t1))
11017 tt2 (time-to-days (org-time-string-to-time t2)))
11018 (let ((org-agenda-buffer-tmp-name
11019 (format "*Org Agenda(a:%s)"
11020 (concat (substring t1 0 10) "--" (substring t2 0 10)))))
11021 (org-agenda-list nil tt1 (1+ (- tt2 tt1))))))
11022 ((org-at-timestamp-p t)
11023 (let ((org-agenda-buffer-tmp-name
11024 (format "*Org Agenda(a:%s)" (substring (match-string 1) 0 10))))
11025 (org-agenda-list nil (time-to-days (org-time-string-to-time
11026 (substring (match-string 1) 0 10)))
11027 1)))
11028 (t (error "This should not happen"))))
11031 ;;; Following file links
11032 (declare-function mailcap-parse-mailcaps "mailcap" (&optional path force))
11033 (declare-function mailcap-extension-to-mime "mailcap" (extn))
11034 (declare-function mailcap-mime-info
11035 "mailcap" (string &optional request no-decode))
11036 (defvar org-wait nil)
11037 (defun org-open-file (path &optional in-emacs line search)
11038 "Open the file at PATH.
11039 First, this expands any special file name abbreviations. Then the
11040 configuration variable `org-file-apps' is checked if it contains an
11041 entry for this file type, and if yes, the corresponding command is launched.
11043 If no application is found, Emacs simply visits the file.
11045 With optional prefix argument IN-EMACS, Emacs will visit the file.
11046 With a double \\[universal-argument] \\[universal-argument] \
11047 prefix arg, Org tries to avoid opening in Emacs
11048 and to use an external application to visit the file.
11050 Optional LINE specifies a line to go to, optional SEARCH a string
11051 to search for. If LINE or SEARCH is given, the file will be
11052 opened in Emacs, unless an entry from org-file-apps that makes
11053 use of groups in a regexp matches.
11055 If you want to change the way frames are used when following a
11056 link, please customize `org-link-frame-setup'.
11058 If the file does not exist, an error is thrown."
11059 (let* ((file (if (equal path "")
11060 buffer-file-name
11061 (substitute-in-file-name (expand-file-name path))))
11062 (file-apps (append org-file-apps (org-default-apps)))
11063 (apps (org-remove-if
11064 'org-file-apps-entry-match-against-dlink-p file-apps))
11065 (apps-dlink (org-remove-if-not
11066 'org-file-apps-entry-match-against-dlink-p file-apps))
11067 (remp (and (assq 'remote apps) (org-file-remote-p file)))
11068 (dirp (if remp nil (file-directory-p file)))
11069 (file (if (and dirp org-open-directory-means-index-dot-org)
11070 (concat (file-name-as-directory file) "index.org")
11071 file))
11072 (a-m-a-p (assq 'auto-mode apps))
11073 (dfile (downcase file))
11074 ;; reconstruct the original file: link from the PATH, LINE and SEARCH args
11075 (link (cond ((and (eq line nil)
11076 (eq search nil))
11077 file)
11078 (line
11079 (concat file "::" (number-to-string line)))
11080 (search
11081 (concat file "::" search))))
11082 (dlink (downcase link))
11083 (old-buffer (current-buffer))
11084 (old-pos (point))
11085 (old-mode major-mode)
11086 ext cmd link-match-data)
11087 (if (string-match "^.*\\.\\([a-zA-Z0-9]+\\.gz\\)$" dfile)
11088 (setq ext (match-string 1 dfile))
11089 (if (string-match "^.*\\.\\([a-zA-Z0-9]+\\)$" dfile)
11090 (setq ext (match-string 1 dfile))))
11091 (cond
11092 ((member in-emacs '((16) system))
11093 (setq cmd (cdr (assoc 'system apps))))
11094 (in-emacs (setq cmd 'emacs))
11096 (setq cmd (or (and remp (cdr (assoc 'remote apps)))
11097 (and dirp (cdr (assoc 'directory apps)))
11098 ; first, try matching against apps-dlink
11099 ; if we get a match here, store the match data for later
11100 (let ((match (assoc-default dlink apps-dlink
11101 'string-match)))
11102 (if match
11103 (progn (setq link-match-data (match-data))
11104 match)
11105 (progn (setq in-emacs (or in-emacs line search))
11106 nil))) ; if we have no match in apps-dlink,
11107 ; always open the file in emacs if line or search
11108 ; is given (for backwards compatibility)
11109 (assoc-default dfile (org-apps-regexp-alist apps a-m-a-p)
11110 'string-match)
11111 (cdr (assoc ext apps))
11112 (cdr (assoc t apps))))))
11113 (when (eq cmd 'system)
11114 (setq cmd (cdr (assoc 'system apps))))
11115 (when (eq cmd 'default)
11116 (setq cmd (cdr (assoc t apps))))
11117 (when (eq cmd 'mailcap)
11118 (require 'mailcap)
11119 (mailcap-parse-mailcaps)
11120 (let* ((mime-type (mailcap-extension-to-mime (or ext "")))
11121 (command (mailcap-mime-info mime-type)))
11122 (if (stringp command)
11123 (setq cmd command)
11124 (setq cmd 'emacs))))
11125 (if (and (not (eq cmd 'emacs)) ; Emacs has no problems with non-ex files
11126 (not (file-exists-p file))
11127 (not org-open-non-existing-files))
11128 (user-error "No such file: %s" file))
11129 (cond
11130 ((and (stringp cmd) (not (string-match "^\\s-*$" cmd)))
11131 ;; Remove quotes around the file name - we'll use shell-quote-argument.
11132 (while (string-match "['\"]%s['\"]" cmd)
11133 (setq cmd (replace-match "%s" t t cmd)))
11134 (while (string-match "%s" cmd)
11135 (setq cmd (replace-match
11136 (save-match-data
11137 (shell-quote-argument
11138 (convert-standard-filename file)))
11139 t t cmd)))
11141 ;; Replace "%1", "%2" etc. in command with group matches from regex
11142 (save-match-data
11143 (let ((match-index 1)
11144 (number-of-groups (- (/ (length link-match-data) 2) 1)))
11145 (set-match-data link-match-data)
11146 (while (<= match-index number-of-groups)
11147 (let ((regex (concat "%" (number-to-string match-index)))
11148 (replace-with (match-string match-index dlink)))
11149 (while (string-match regex cmd)
11150 (setq cmd (replace-match replace-with t t cmd))))
11151 (setq match-index (+ match-index 1)))))
11153 (save-window-excursion
11154 (message "Running %s...done" cmd)
11155 (start-process-shell-command cmd nil cmd)
11156 (and (boundp 'org-wait) (numberp org-wait) (sit-for org-wait))))
11157 ((or (stringp cmd)
11158 (eq cmd 'emacs))
11159 (funcall (cdr (assq 'file org-link-frame-setup)) file)
11160 (widen)
11161 (if line (org-goto-line line)
11162 (if search (org-link-search search))))
11163 ((consp cmd)
11164 (let ((file (convert-standard-filename file)))
11165 (save-match-data
11166 (set-match-data link-match-data)
11167 (eval cmd))))
11168 (t (funcall (cdr (assq 'file org-link-frame-setup)) file)))
11169 (and (derived-mode-p 'org-mode) (eq old-mode 'org-mode)
11170 (or (not (equal old-buffer (current-buffer)))
11171 (not (equal old-pos (point))))
11172 (org-mark-ring-push old-pos old-buffer))))
11174 (defun org-file-apps-entry-match-against-dlink-p (entry)
11175 "This function returns non-nil if `entry' uses a regular
11176 expression which should be matched against the whole link by
11177 org-open-file.
11179 It assumes that is the case when the entry uses a regular
11180 expression which has at least one grouping construct and the
11181 action is either a lisp form or a command string containing
11182 '%1', i.e. using at least one subexpression match as a
11183 parameter."
11184 (let ((selector (car entry))
11185 (action (cdr entry)))
11186 (if (stringp selector)
11187 (and (> (regexp-opt-depth selector) 0)
11188 (or (and (stringp action)
11189 (string-match "%[0-9]" action))
11190 (consp action)))
11191 nil)))
11193 (defun org-default-apps ()
11194 "Return the default applications for this operating system."
11195 (cond
11196 ((eq system-type 'darwin)
11197 org-file-apps-defaults-macosx)
11198 ((eq system-type 'windows-nt)
11199 org-file-apps-defaults-windowsnt)
11200 (t org-file-apps-defaults-gnu)))
11202 (defun org-apps-regexp-alist (list &optional add-auto-mode)
11203 "Convert extensions to regular expressions in the cars of LIST.
11204 Also, weed out any non-string entries, because the return value is used
11205 only for regexp matching.
11206 When ADD-AUTO-MODE is set, make all matches in `auto-mode-alist'
11207 point to the symbol `emacs', indicating that the file should
11208 be opened in Emacs."
11209 (append
11210 (delq nil
11211 (mapcar (lambda (x)
11212 (if (not (stringp (car x)))
11214 (if (string-match "\\W" (car x))
11216 (cons (concat "\\." (car x) "\\'") (cdr x)))))
11217 list))
11218 (if add-auto-mode
11219 (mapcar (lambda (x) (cons (car x) 'emacs)) auto-mode-alist))))
11221 (defvar ange-ftp-name-format) ; to silence the XEmacs compiler.
11222 (defun org-file-remote-p (file)
11223 "Test whether FILE specifies a location on a remote system.
11224 Return non-nil if the location is indeed remote.
11226 For example, the filename \"/user@host:/foo\" specifies a location
11227 on the system \"/user@host:\"."
11228 (cond ((fboundp 'file-remote-p)
11229 (file-remote-p file))
11230 ((fboundp 'tramp-handle-file-remote-p)
11231 (tramp-handle-file-remote-p file))
11232 ((and (boundp 'ange-ftp-name-format)
11233 (string-match (car ange-ftp-name-format) file))
11234 t)))
11237 ;;;; Refiling
11239 (defun org-get-org-file ()
11240 "Read a filename, with default directory `org-directory'."
11241 (let ((default (or org-default-notes-file remember-data-file)))
11242 (read-file-name (format "File name [%s]: " default)
11243 (file-name-as-directory org-directory)
11244 default)))
11246 (defun org-notes-order-reversed-p ()
11247 "Check if the current file should receive notes in reversed order."
11248 (cond
11249 ((not org-reverse-note-order) nil)
11250 ((eq t org-reverse-note-order) t)
11251 ((not (listp org-reverse-note-order)) nil)
11252 (t (catch 'exit
11253 (let ((all org-reverse-note-order)
11254 entry)
11255 (while (setq entry (pop all))
11256 (if (string-match (car entry) buffer-file-name)
11257 (throw 'exit (cdr entry))))
11258 nil)))))
11260 (defvar org-refile-target-table nil
11261 "The list of refile targets, created by `org-refile'.")
11263 (defvar org-agenda-new-buffers nil
11264 "Buffers created to visit agenda files.")
11266 (defvar org-refile-cache nil
11267 "Cache for refile targets.")
11269 (defvar org-refile-markers nil
11270 "All the markers used for caching refile locations.")
11272 (defun org-refile-marker (pos)
11273 "Get a new refile marker, but only if caching is in use."
11274 (if (not org-refile-use-cache)
11276 (let ((m (make-marker)))
11277 (move-marker m pos)
11278 (push m org-refile-markers)
11279 m)))
11281 (defun org-refile-cache-clear ()
11282 "Clear the refile cache and disable all the markers."
11283 (mapc (lambda (m) (move-marker m nil)) org-refile-markers)
11284 (setq org-refile-markers nil)
11285 (setq org-refile-cache nil)
11286 (message "Refile cache has been cleared"))
11288 (defun org-refile-cache-check-set (set)
11289 "Check if all the markers in the cache still have live buffers."
11290 (let (marker)
11291 (catch 'exit
11292 (while (and set (setq marker (nth 3 (pop set))))
11293 ;; If `org-refile-use-outline-path' is 'file, marker may be nil
11294 (when (and marker (null (marker-buffer marker)))
11295 (message "Please regenerate the refile cache with `C-0 C-c C-w'")
11296 (sit-for 3)
11297 (throw 'exit nil)))
11298 t)))
11300 (defun org-refile-cache-put (set &rest identifiers)
11301 "Push the refile targets SET into the cache, under IDENTIFIERS."
11302 (let* ((key (sha1 (prin1-to-string identifiers)))
11303 (entry (assoc key org-refile-cache)))
11304 (if entry
11305 (setcdr entry set)
11306 (push (cons key set) org-refile-cache))))
11308 (defun org-refile-cache-get (&rest identifiers)
11309 "Retrieve the cached value for refile targets given by IDENTIFIERS."
11310 (cond
11311 ((not org-refile-cache) nil)
11312 ((not org-refile-use-cache) (org-refile-cache-clear) nil)
11314 (let ((set (cdr (assoc (sha1 (prin1-to-string identifiers))
11315 org-refile-cache))))
11316 (and set (org-refile-cache-check-set set) set)))))
11318 (defun org-refile-get-targets (&optional default-buffer excluded-entries)
11319 "Produce a table with refile targets."
11320 (let ((case-fold-search nil)
11321 ;; otherwise org confuses "TODO" as a kw and "Todo" as a word
11322 (entries (or org-refile-targets '((nil . (:level . 1)))))
11323 targets tgs txt re files f desc descre fast-path-p level pos0)
11324 (message "Getting targets...")
11325 (with-current-buffer (or default-buffer (current-buffer))
11326 (while (setq entry (pop entries))
11327 (setq files (car entry) desc (cdr entry))
11328 (setq fast-path-p nil)
11329 (cond
11330 ((null files) (setq files (list (current-buffer))))
11331 ((eq files 'org-agenda-files)
11332 (setq files (org-agenda-files 'unrestricted)))
11333 ((and (symbolp files) (fboundp files))
11334 (setq files (funcall files)))
11335 ((and (symbolp files) (boundp files))
11336 (setq files (symbol-value files))))
11337 (if (stringp files) (setq files (list files)))
11338 (cond
11339 ((eq (car desc) :tag)
11340 (setq descre (concat "^\\*+[ \t]+.*?:" (regexp-quote (cdr desc)) ":")))
11341 ((eq (car desc) :todo)
11342 (setq descre (concat "^\\*+[ \t]+" (regexp-quote (cdr desc)) "[ \t]")))
11343 ((eq (car desc) :regexp)
11344 (setq descre (cdr desc)))
11345 ((eq (car desc) :level)
11346 (setq descre (concat "^\\*\\{" (number-to-string
11347 (if org-odd-levels-only
11348 (1- (* 2 (cdr desc)))
11349 (cdr desc)))
11350 "\\}[ \t]")))
11351 ((eq (car desc) :maxlevel)
11352 (setq fast-path-p t)
11353 (setq descre (concat "^\\*\\{1," (number-to-string
11354 (if org-odd-levels-only
11355 (1- (* 2 (cdr desc)))
11356 (cdr desc)))
11357 "\\}[ \t]")))
11358 (t (error "Bad refiling target description %s" desc)))
11359 (while (setq f (pop files))
11360 (with-current-buffer
11361 (if (bufferp f) f (org-get-agenda-file-buffer f))
11363 (setq tgs (org-refile-cache-get (buffer-file-name) descre))
11364 (progn
11365 (if (bufferp f) (setq f (buffer-file-name
11366 (buffer-base-buffer f))))
11367 (setq f (and f (expand-file-name f)))
11368 (if (eq org-refile-use-outline-path 'file)
11369 (push (list (file-name-nondirectory f) f nil nil) tgs))
11370 (save-excursion
11371 (save-restriction
11372 (widen)
11373 (goto-char (point-min))
11374 (while (re-search-forward descre nil t)
11375 (goto-char (setq pos0 (point-at-bol)))
11376 (catch 'next
11377 (when org-refile-target-verify-function
11378 (save-match-data
11379 (or (funcall org-refile-target-verify-function)
11380 (throw 'next t))))
11381 (when (and (looking-at org-complex-heading-regexp)
11382 (not (member (match-string 4) excluded-entries))
11383 (match-string 4))
11384 (setq level (org-reduced-level
11385 (- (match-end 1) (match-beginning 1)))
11386 txt (org-link-display-format (match-string 4))
11387 txt (replace-regexp-in-string "\\( *\[[0-9]+/?[0-9]*%?\]\\)+$" "" txt)
11388 re (format org-complex-heading-regexp-format
11389 (regexp-quote (match-string 4))))
11390 (when org-refile-use-outline-path
11391 (setq txt (mapconcat
11392 'org-protect-slash
11393 (append
11394 (if (eq org-refile-use-outline-path
11395 'file)
11396 (list (file-name-nondirectory
11397 (buffer-file-name
11398 (buffer-base-buffer))))
11399 (if (eq org-refile-use-outline-path
11400 'full-file-path)
11401 (list (buffer-file-name
11402 (buffer-base-buffer)))))
11403 (org-get-outline-path fast-path-p
11404 level txt)
11405 (list txt))
11406 "/")))
11407 (push (list txt f re (org-refile-marker (point)))
11408 tgs)))
11409 (when (= (point) pos0)
11410 ;; verification function has not moved point
11411 (goto-char (point-at-eol))))))))
11412 (when org-refile-use-cache
11413 (org-refile-cache-put tgs (buffer-file-name) descre))
11414 (setq targets (append tgs targets))))))
11415 (message "Getting targets...done")
11416 (nreverse targets)))
11418 (defun org-protect-slash (s)
11419 (while (string-match "/" s)
11420 (setq s (replace-match "\\" t t s)))
11423 (defvar org-olpa (make-vector 20 nil))
11425 (defun org-get-outline-path (&optional fastp level heading)
11426 "Return the outline path to the current entry, as a list.
11428 The parameters FASTP, LEVEL, and HEADING are for use by a scanner
11429 routine which makes outline path derivations for an entire file,
11430 avoiding backtracing. Refile target collection makes use of that."
11431 (if fastp
11432 (progn
11433 (if (> level 19)
11434 (error "Outline path failure, more than 19 levels"))
11435 (loop for i from level upto 19 do
11436 (aset org-olpa i nil))
11437 (prog1
11438 (delq nil (append org-olpa nil))
11439 (aset org-olpa level heading)))
11440 (let (rtn case-fold-search)
11441 (save-excursion
11442 (save-restriction
11443 (widen)
11444 (while (org-up-heading-safe)
11445 (when (looking-at org-complex-heading-regexp)
11446 (push (org-trim
11447 (replace-regexp-in-string
11448 ;; Remove statistical/checkboxes cookies
11449 "\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]" ""
11450 (org-match-string-no-properties 4)))
11451 rtn)))
11452 rtn)))))
11454 (defun org-format-outline-path (path &optional width prefix separator)
11455 "Format the outline path PATH for display.
11456 WIDTH is the maximum number of characters that is available.
11457 PREFIX is a prefix to be included in the returned string,
11458 such as the file name.
11459 SEPARATOR is inserted between the different parts of the path,
11460 the default is \"/\"."
11461 (setq width (or width 79))
11462 (if prefix (setq width (- width (length prefix))))
11463 (if (not path)
11464 (or prefix "")
11465 (let* ((nsteps (length path))
11466 (total-width (+ nsteps (apply '+ (mapcar 'length path))))
11467 (maxwidth (if (<= total-width width)
11468 10000 ;; everything fits
11469 ;; we need to shorten the level headings
11470 (/ (- width nsteps) nsteps)))
11471 (org-odd-levels-only nil)
11472 (n 0)
11473 (total (1+ (length prefix))))
11474 (setq maxwidth (max maxwidth 10))
11475 (concat prefix
11476 (if prefix (or separator "/"))
11477 (mapconcat
11478 (lambda (h)
11479 (setq n (1+ n))
11480 (if (and (= n nsteps) (< maxwidth 10000))
11481 (setq maxwidth (- total-width total)))
11482 (if (< (length h) maxwidth)
11483 (progn (setq total (+ total (length h) 1)) h)
11484 (setq h (substring h 0 (- maxwidth 2))
11485 total (+ total maxwidth 1))
11486 (if (string-match "[ \t]+\\'" h)
11487 (setq h (substring h 0 (match-beginning 0))))
11488 (setq h (concat h "..")))
11489 (org-add-props h nil 'face
11490 (nth (% (1- n) org-n-level-faces)
11491 org-level-faces))
11493 path (or separator "/"))))))
11495 (defun org-display-outline-path (&optional file current separator just-return-string)
11496 "Display the current outline path in the echo area.
11498 If FILE is non-nil, prepend the output with the file name.
11499 If CURRENT is non-nil, append the current heading to the output.
11500 SEPARATOR is passed through to `org-format-outline-path'. It separates
11501 the different parts of the path and defaults to \"/\".
11502 If JUST-RETURN-STRING is non-nil, return a string, don't display a message."
11503 (interactive "P")
11504 (let* (case-fold-search
11505 (bfn (buffer-file-name (buffer-base-buffer)))
11506 (path (and (derived-mode-p 'org-mode) (org-get-outline-path)))
11507 res)
11508 (if current (setq path (append path
11509 (save-excursion
11510 (org-back-to-heading t)
11511 (if (looking-at org-complex-heading-regexp)
11512 (list (match-string 4)))))))
11513 (setq res
11514 (org-format-outline-path
11515 path
11516 (1- (frame-width))
11517 (and file bfn (concat (file-name-nondirectory bfn) separator))
11518 separator))
11519 (if just-return-string
11520 (org-no-properties res)
11521 (org-unlogged-message "%s" res))))
11523 (defvar org-refile-history nil
11524 "History for refiling operations.")
11526 (defvar org-after-refile-insert-hook nil
11527 "Hook run after `org-refile' has inserted its stuff at the new location.
11528 Note that this is still *before* the stuff will be removed from
11529 the *old* location.")
11531 (defvar org-capture-last-stored-marker)
11532 (defvar org-refile-keep nil
11533 "Non-nil means `org-refile' will copy instead of refile.")
11535 (defun org-copy ()
11536 "Like `org-refile', but copy."
11537 (interactive)
11538 (let ((org-refile-keep t))
11539 (funcall 'org-refile nil nil nil "Copy")))
11541 (defun org-refile (&optional goto default-buffer rfloc msg)
11542 "Move the entry or entries at point to another heading.
11543 The list of target headings is compiled using the information in
11544 `org-refile-targets', which see.
11546 At the target location, the entry is filed as a subitem of the target
11547 heading. Depending on `org-reverse-note-order', the new subitem will
11548 either be the first or the last subitem.
11550 If there is an active region, all entries in that region will be moved.
11551 However, the region must fulfill the requirement that the first heading
11552 is the first one sets the top-level of the moved text - at most siblings
11553 below it are allowed.
11555 With prefix arg GOTO, the command will only visit the target location
11556 and not actually move anything.
11558 With a double prefix arg \\[universal-argument] \\[universal-argument], \
11559 go to the location where the last refiling operation has put the subtree.
11561 With a numeric prefix argument of `2', refile to the running clock.
11563 With a numeric prefix argument of `3', emulate `org-refile-keep'
11564 being set to `t' and copy to the target location, don't move it.
11565 Beware that keeping refiled entries may result in duplicated ID
11566 properties.
11568 RFLOC can be a refile location obtained in a different way.
11570 MSG is a string to replace \"Refile\" in the default prompt with
11571 another verb. E.g. `org-copy' sets this parameter to \"Copy\".
11573 See also `org-refile-use-outline-path' and `org-completion-use-ido'.
11575 If you are using target caching (see `org-refile-use-cache'),
11576 you have to clear the target cache in order to find new targets.
11577 This can be done with a 0 prefix (`C-0 C-c C-w') or a triple
11578 prefix argument (`C-u C-u C-u C-c C-w')."
11580 (interactive "P")
11581 (if (member goto '(0 (64)))
11582 (org-refile-cache-clear)
11583 (let* ((actionmsg (cond (msg msg)
11584 ((equal goto 3) "Refile (and keep)")
11585 (t "Refile")))
11586 (cbuf (current-buffer))
11587 (regionp (org-region-active-p))
11588 (region-start (and regionp (region-beginning)))
11589 (region-end (and regionp (region-end)))
11590 (filename (buffer-file-name (buffer-base-buffer cbuf)))
11591 (org-refile-keep (if (equal goto 3) t org-refile-keep))
11592 pos it nbuf file re level reversed)
11593 (setq last-command nil)
11594 (when regionp
11595 (goto-char region-start)
11596 (or (bolp) (goto-char (point-at-bol)))
11597 (setq region-start (point))
11598 (unless (or (org-kill-is-subtree-p
11599 (buffer-substring region-start region-end))
11600 (prog1 org-refile-active-region-within-subtree
11601 (let ((s (point-at-eol)))
11602 (org-toggle-heading)
11603 (setq region-end (+ (- (point-at-eol) s) region-end)))))
11604 (user-error "The region is not a (sequence of) subtree(s)")))
11605 (if (equal goto '(16))
11606 (org-refile-goto-last-stored)
11607 (when (or
11608 (and (equal goto 2)
11609 org-clock-hd-marker (marker-buffer org-clock-hd-marker)
11610 (prog1
11611 (setq it (list (or org-clock-heading "running clock")
11612 (buffer-file-name
11613 (marker-buffer org-clock-hd-marker))
11615 (marker-position org-clock-hd-marker)))
11616 (setq goto nil)))
11617 (setq it (or rfloc
11618 (let (heading-text)
11619 (save-excursion
11620 (unless (and goto (listp goto))
11621 (org-back-to-heading t)
11622 (setq heading-text
11623 (nth 4 (org-heading-components))))
11625 (org-refile-get-location
11626 (cond ((and goto (listp goto)) "Goto")
11627 (regionp (concat actionmsg " region to"))
11628 (t (concat actionmsg " subtree \""
11629 heading-text "\" to")))
11630 default-buffer
11631 (and (not (equal '(4) goto))
11632 org-refile-allow-creating-parent-nodes)
11633 goto))))))
11634 (setq file (nth 1 it)
11635 re (nth 2 it)
11636 pos (nth 3 it))
11637 (if (and (not goto)
11639 (equal (buffer-file-name) file)
11640 (if regionp
11641 (and (>= pos region-start)
11642 (<= pos region-end))
11643 (and (>= pos (point))
11644 (< pos (save-excursion
11645 (org-end-of-subtree t t))))))
11646 (error "Cannot refile to position inside the tree or region"))
11648 (setq nbuf (or (find-buffer-visiting file)
11649 (find-file-noselect file)))
11650 (if (and goto (not (equal goto 3)))
11651 (progn
11652 (org-pop-to-buffer-same-window nbuf)
11653 (goto-char pos)
11654 (org-show-context 'org-goto))
11655 (if regionp
11656 (progn
11657 (org-kill-new (buffer-substring region-start region-end))
11658 (org-save-markers-in-region region-start region-end))
11659 (org-copy-subtree 1 nil t))
11660 (with-current-buffer (setq nbuf (or (find-buffer-visiting file)
11661 (find-file-noselect file)))
11662 (setq reversed (org-notes-order-reversed-p))
11663 (save-excursion
11664 (save-restriction
11665 (widen)
11666 (if pos
11667 (progn
11668 (goto-char pos)
11669 (looking-at org-outline-regexp)
11670 (setq level (org-get-valid-level (funcall outline-level) 1))
11671 (goto-char
11672 (if reversed
11673 (or (outline-next-heading) (point-max))
11674 (or (save-excursion (org-get-next-sibling))
11675 (org-end-of-subtree t t)
11676 (point-max)))))
11677 (setq level 1)
11678 (if (not reversed)
11679 (goto-char (point-max))
11680 (goto-char (point-min))
11681 (or (outline-next-heading) (goto-char (point-max)))))
11682 (if (not (bolp)) (newline))
11683 (org-paste-subtree level)
11684 (when org-log-refile
11685 (org-add-log-setup 'refile nil nil 'findpos org-log-refile)
11686 (unless (eq org-log-refile 'note)
11687 (save-excursion (org-add-log-note))))
11688 (and org-auto-align-tags
11689 (let ((org-loop-over-headlines-in-active-region nil))
11690 (org-set-tags nil t)))
11691 (let ((bookmark-name (plist-get org-bookmark-names-plist
11692 :last-refile)))
11693 (when bookmark-name
11694 (with-demoted-errors
11695 (bookmark-set bookmark-name))))
11696 ;; If we are refiling for capture, make sure that the
11697 ;; last-capture pointers point here
11698 (when (org-bound-and-true-p org-refile-for-capture)
11699 (let ((bookmark-name (plist-get org-bookmark-names-plist
11700 :last-capture-marker)))
11701 (when bookmark-name
11702 (with-demoted-errors
11703 (bookmark-set bookmark-name))))
11704 (move-marker org-capture-last-stored-marker (point)))
11705 (if (fboundp 'deactivate-mark) (deactivate-mark))
11706 (run-hooks 'org-after-refile-insert-hook))))
11707 (unless org-refile-keep
11708 (if regionp
11709 (delete-region (point) (+ (point) (- region-end region-start)))
11710 (delete-region
11711 (and (org-back-to-heading t) (point))
11712 (min (1+ (buffer-size)) (org-end-of-subtree t t) (point)))))
11713 (when (featurep 'org-inlinetask)
11714 (org-inlinetask-remove-END-maybe))
11715 (setq org-markers-to-move nil)
11716 (message (concat actionmsg " to \"%s\" in file %s: done") (car it) file)))))))
11718 (defun org-refile-goto-last-stored ()
11719 "Go to the location where the last refile was stored."
11720 (interactive)
11721 (bookmark-jump "org-refile-last-stored")
11722 (message "This is the location of the last refile"))
11724 (defun org-refile--get-location (refloc tbl)
11725 "When user refile to REFLOC, find the associated target in TBL.
11726 Also check `org-refile-target-table'."
11727 (car (delq
11729 (mapcar
11730 (lambda (r) (or (assoc r tbl)
11731 (assoc r org-refile-target-table)))
11732 (list (replace-regexp-in-string "/$" "" refloc)
11733 (replace-regexp-in-string "\\([^/]\\)$" "\\1/" refloc))))))
11735 (defun org-refile-get-location (&optional prompt default-buffer new-nodes
11736 no-exclude)
11737 "Prompt the user for a refile location, using PROMPT.
11738 PROMPT should not be suffixed with a colon and a space, because
11739 this function appends the default value from
11740 `org-refile-history' automatically, if that is not empty.
11741 When NO-EXCLUDE is set, do not exclude headlines in the current subtree,
11742 this is used for the GOTO interface."
11743 (let ((org-refile-targets org-refile-targets)
11744 (org-refile-use-outline-path org-refile-use-outline-path)
11745 excluded-entries)
11746 (when (and (derived-mode-p 'org-mode)
11747 (not org-refile-use-cache)
11748 (not no-exclude))
11749 (org-map-tree
11750 (lambda()
11751 (setq excluded-entries
11752 (append excluded-entries (list (org-get-heading t t)))))))
11753 (setq org-refile-target-table
11754 (org-refile-get-targets default-buffer excluded-entries)))
11755 (unless org-refile-target-table
11756 (user-error "No refile targets"))
11757 (let* ((cbuf (current-buffer))
11758 (partial-completion-mode nil)
11759 (cfn (buffer-file-name (buffer-base-buffer cbuf)))
11760 (cfunc (if (and org-refile-use-outline-path
11761 org-outline-path-complete-in-steps)
11762 'org-olpath-completing-read
11763 'org-icompleting-read))
11764 (extra (if org-refile-use-outline-path "/" ""))
11765 (cbnex (concat (buffer-name) extra))
11766 (filename (and cfn (expand-file-name cfn)))
11767 (tbl (mapcar
11768 (lambda (x)
11769 (if (and (not (member org-refile-use-outline-path
11770 '(file full-file-path)))
11771 (not (equal filename (nth 1 x))))
11772 (cons (concat (car x) extra " ("
11773 (file-name-nondirectory (nth 1 x)) ")")
11774 (cdr x))
11775 (cons (concat (car x) extra) (cdr x))))
11776 org-refile-target-table))
11777 (completion-ignore-case t)
11778 cdef
11779 (prompt (concat prompt
11780 (or (and (car org-refile-history)
11781 (concat " (default " (car org-refile-history) ")"))
11782 (and (assoc cbnex tbl) (setq cdef cbnex)
11783 (concat " (default " cbnex ")"))) ": "))
11784 pa answ parent-target child parent old-hist)
11785 (setq old-hist org-refile-history)
11786 (setq answ (funcall cfunc prompt tbl nil (not new-nodes)
11787 nil 'org-refile-history (or cdef (car org-refile-history))))
11788 (if (setq pa (org-refile--get-location answ tbl))
11789 (progn
11790 (org-refile-check-position pa)
11791 (when (or (not org-refile-history)
11792 (not (eq old-hist org-refile-history))
11793 (not (equal (car pa) (car org-refile-history))))
11794 (setq org-refile-history
11795 (cons (car pa) (if (assoc (car org-refile-history) tbl)
11796 org-refile-history
11797 (cdr org-refile-history))))
11798 (if (equal (car org-refile-history) (nth 1 org-refile-history))
11799 (pop org-refile-history)))
11801 (if (string-match "\\`\\(.*\\)/\\([^/]+\\)\\'" answ)
11802 (progn
11803 (setq parent (match-string 1 answ)
11804 child (match-string 2 answ))
11805 (setq parent-target (org-refile--get-location parent tbl))
11806 (when (and parent-target
11807 (or (eq new-nodes t)
11808 (and (eq new-nodes 'confirm)
11809 (y-or-n-p (format "Create new node \"%s\"? "
11810 child)))))
11811 (org-refile-new-child parent-target child)))
11812 (user-error "Invalid target location")))))
11814 (declare-function org-string-nw-p "org-macs" (s))
11815 (defun org-refile-check-position (refile-pointer)
11816 "Check if the refile pointer matches the headline to which it points."
11817 (let* ((file (nth 1 refile-pointer))
11818 (re (nth 2 refile-pointer))
11819 (pos (nth 3 refile-pointer))
11820 buffer)
11821 (if (and (not (markerp pos)) (not file))
11822 (user-error "Please save the buffer to a file before refiling")
11823 (when (org-string-nw-p re)
11824 (setq buffer (if (markerp pos)
11825 (marker-buffer pos)
11826 (or (find-buffer-visiting file)
11827 (find-file-noselect file))))
11828 (with-current-buffer buffer
11829 (save-excursion
11830 (save-restriction
11831 (widen)
11832 (goto-char pos)
11833 (beginning-of-line 1)
11834 (unless (org-looking-at-p re)
11835 (user-error "Invalid refile position, please clear the cache with `C-0 C-c C-w' before refiling")))))))))
11837 (defun org-refile-new-child (parent-target child)
11838 "Use refile target PARENT-TARGET to add new CHILD below it."
11839 (unless parent-target
11840 (error "Cannot find parent for new node"))
11841 (let ((file (nth 1 parent-target))
11842 (pos (nth 3 parent-target))
11843 level)
11844 (with-current-buffer (or (find-buffer-visiting file)
11845 (find-file-noselect file))
11846 (save-excursion
11847 (save-restriction
11848 (widen)
11849 (if pos
11850 (goto-char pos)
11851 (goto-char (point-max))
11852 (if (not (bolp)) (newline)))
11853 (when (looking-at org-outline-regexp)
11854 (setq level (funcall outline-level))
11855 (org-end-of-subtree t t))
11856 (org-back-over-empty-lines)
11857 (insert "\n" (make-string
11858 (if pos (org-get-valid-level level 1) 1) ?*)
11859 " " child "\n")
11860 (beginning-of-line 0)
11861 (list (concat (car parent-target) "/" child) file "" (point)))))))
11863 (defun org-olpath-completing-read (prompt collection &rest args)
11864 "Read an outline path like a file name."
11865 (let ((thetable collection)
11866 (org-completion-use-ido nil) ; does not work with ido.
11867 (org-completion-use-iswitchb nil)) ; or iswitchb
11868 (apply
11869 'org-icompleting-read prompt
11870 (lambda (string predicate &optional flag)
11871 (let (rtn r f (l (length string)))
11872 (cond
11873 ((eq flag nil)
11874 ;; try completion
11875 (try-completion string thetable))
11876 ((eq flag t)
11877 ;; all-completions
11878 (setq rtn (all-completions string thetable predicate))
11879 (mapcar
11880 (lambda (x)
11881 (setq r (substring x l))
11882 (if (string-match " ([^)]*)$" x)
11883 (setq f (match-string 0 x))
11884 (setq f ""))
11885 (if (string-match "/" r)
11886 (concat string (substring r 0 (match-end 0)) f)
11888 rtn))
11889 ((eq flag 'lambda)
11890 ;; exact match?
11891 (assoc string thetable)))))
11892 args)))
11894 ;;;; Dynamic blocks
11896 (defun org-find-dblock (name)
11897 "Find the first dynamic block with name NAME in the buffer.
11898 If not found, stay at current position and return nil."
11899 (let ((case-fold-search t) pos)
11900 (save-excursion
11901 (goto-char (point-min))
11902 (setq pos (and (re-search-forward
11903 (concat "^[ \t]*#\\+\\(?:BEGIN\\|begin\\):[ \t]+" name "\\>") nil t)
11904 (match-beginning 0))))
11905 (if pos (goto-char pos))
11906 pos))
11908 (defconst org-dblock-start-re
11909 "^[ \t]*#\\+\\(?:BEGIN\\|begin\\):[ \t]+\\(\\S-+\\)\\([ \t]+\\(.*\\)\\)?"
11910 "Matches the start line of a dynamic block, with parameters.")
11912 (defconst org-dblock-end-re "^[ \t]*#\\+\\(?:END\\|end\\)\\([: \t\r\n]\\|$\\)"
11913 "Matches the end of a dynamic block.")
11915 (defun org-create-dblock (plist)
11916 "Create a dynamic block section, with parameters taken from PLIST.
11917 PLIST must contain a :name entry which is used as name of the block."
11918 (when (string-match "\\S-" (buffer-substring (point-at-bol) (point-at-eol)))
11919 (end-of-line 1)
11920 (newline))
11921 (let ((col (current-column))
11922 (name (plist-get plist :name)))
11923 (insert "#+BEGIN: " name)
11924 (while plist
11925 (if (eq (car plist) :name)
11926 (setq plist (cddr plist))
11927 (insert " " (prin1-to-string (pop plist)))))
11928 (insert "\n\n" (make-string col ?\ ) "#+END:\n")
11929 (beginning-of-line -2)))
11931 (defun org-prepare-dblock ()
11932 "Prepare dynamic block for refresh.
11933 This empties the block, puts the cursor at the insert position and returns
11934 the property list including an extra property :name with the block name."
11935 (unless (looking-at org-dblock-start-re)
11936 (user-error "Not at a dynamic block"))
11937 (let* ((begdel (1+ (match-end 0)))
11938 (name (org-no-properties (match-string 1)))
11939 (params (append (list :name name)
11940 (read (concat "(" (match-string 3) ")")))))
11941 (save-excursion
11942 (beginning-of-line 1)
11943 (skip-chars-forward " \t")
11944 (setq params (plist-put params :indentation-column (current-column))))
11945 (unless (re-search-forward org-dblock-end-re nil t)
11946 (error "Dynamic block not terminated"))
11947 (setq params
11948 (append params
11949 (list :content (buffer-substring
11950 begdel (match-beginning 0)))))
11951 (delete-region begdel (match-beginning 0))
11952 (goto-char begdel)
11953 (open-line 1)
11954 params))
11956 (defun org-map-dblocks (&optional command)
11957 "Apply COMMAND to all dynamic blocks in the current buffer.
11958 If COMMAND is not given, use `org-update-dblock'."
11959 (let ((cmd (or command 'org-update-dblock)))
11960 (save-excursion
11961 (goto-char (point-min))
11962 (while (re-search-forward org-dblock-start-re nil t)
11963 (goto-char (match-beginning 0))
11964 (save-excursion
11965 (condition-case nil
11966 (funcall cmd)
11967 (error (message "Error during update of dynamic block"))))
11968 (unless (re-search-forward org-dblock-end-re nil t)
11969 (error "Dynamic block not terminated"))))))
11971 (defun org-dblock-update (&optional arg)
11972 "User command for updating dynamic blocks.
11973 Update the dynamic block at point. With prefix ARG, update all dynamic
11974 blocks in the buffer."
11975 (interactive "P")
11976 (if arg
11977 (org-update-all-dblocks)
11978 (or (looking-at org-dblock-start-re)
11979 (org-beginning-of-dblock))
11980 (org-update-dblock)))
11982 (defun org-update-dblock ()
11983 "Update the dynamic block at point.
11984 This means to empty the block, parse for parameters and then call
11985 the correct writing function."
11986 (interactive)
11987 (save-excursion
11988 (let* ((win (selected-window))
11989 (pos (point))
11990 (line (org-current-line))
11991 (params (org-prepare-dblock))
11992 (name (plist-get params :name))
11993 (indent (plist-get params :indentation-column))
11994 (cmd (intern (concat "org-dblock-write:" name))))
11995 (message "Updating dynamic block `%s' at line %d..." name line)
11996 (funcall cmd params)
11997 (message "Updating dynamic block `%s' at line %d...done" name line)
11998 (goto-char pos)
11999 (when (and indent (> indent 0))
12000 (setq indent (make-string indent ?\ ))
12001 (save-excursion
12002 (select-window win)
12003 (org-beginning-of-dblock)
12004 (forward-line 1)
12005 (while (not (looking-at org-dblock-end-re))
12006 (insert indent)
12007 (beginning-of-line 2))
12008 (when (looking-at org-dblock-end-re)
12009 (and (looking-at "[ \t]+")
12010 (replace-match ""))
12011 (insert indent)))))))
12013 (defun org-beginning-of-dblock ()
12014 "Find the beginning of the dynamic block at point.
12015 Error if there is no such block at point."
12016 (let ((pos (point))
12017 beg)
12018 (end-of-line 1)
12019 (if (and (re-search-backward org-dblock-start-re nil t)
12020 (setq beg (match-beginning 0))
12021 (re-search-forward org-dblock-end-re nil t)
12022 (> (match-end 0) pos))
12023 (goto-char beg)
12024 (goto-char pos)
12025 (error "Not in a dynamic block"))))
12027 (defun org-update-all-dblocks ()
12028 "Update all dynamic blocks in the buffer.
12029 This function can be used in a hook."
12030 (interactive)
12031 (when (derived-mode-p 'org-mode)
12032 (org-map-dblocks 'org-update-dblock)))
12035 ;;;; Completion
12037 (declare-function org-export-backend-name "org-export" (cl-x))
12038 (declare-function org-export-backend-options "org-export" (cl-x))
12039 (defun org-get-export-keywords ()
12040 "Return a list of all currently understood export keywords.
12041 Export keywords include options, block names, attributes and
12042 keywords relative to each registered export back-end."
12043 (let (keywords)
12044 (dolist (backend
12045 (org-bound-and-true-p org-export--registered-backends)
12046 (delq nil keywords))
12047 ;; Back-end name (for keywords, like #+LATEX:)
12048 (push (upcase (symbol-name (org-export-backend-name backend))) keywords)
12049 (dolist (option-entry (org-export-backend-options backend))
12050 ;; Back-end options.
12051 (push (nth 1 option-entry) keywords)))))
12053 (defconst org-options-keywords
12054 '("ARCHIVE:" "AUTHOR:" "BIND:" "CATEGORY:" "COLUMNS:" "CREATOR:" "DATE:"
12055 "DESCRIPTION:" "DRAWERS:" "EMAIL:" "EXCLUDE_TAGS:" "FILETAGS:" "INCLUDE:"
12056 "INDEX:" "KEYWORDS:" "LANGUAGE:" "MACRO:" "OPTIONS:" "PROPERTY:"
12057 "PRIORITIES:" "SELECT_TAGS:" "SEQ_TODO:" "SETUPFILE:" "STARTUP:" "TAGS:"
12058 "TITLE:" "TODO:" "TYP_TODO:" "SELECT_TAGS:" "EXCLUDE_TAGS:"))
12060 (defcustom org-structure-template-alist
12061 '(("s" "#+BEGIN_SRC ?\n\n#+END_SRC" "<src lang=\"?\">\n\n</src>")
12062 ("e" "#+BEGIN_EXAMPLE\n?\n#+END_EXAMPLE" "<example>\n?\n</example>")
12063 ("q" "#+BEGIN_QUOTE\n?\n#+END_QUOTE" "<quote>\n?\n</quote>")
12064 ("v" "#+BEGIN_VERSE\n?\n#+END_VERSE" "<verse>\n?\n</verse>")
12065 ("V" "#+BEGIN_VERBATIM\n?\n#+END_VERBATIM" "<verbatim>\n?\n</verbatim>")
12066 ("c" "#+BEGIN_CENTER\n?\n#+END_CENTER" "<center>\n?\n</center>")
12067 ("l" "#+BEGIN_LaTeX\n?\n#+END_LaTeX"
12068 "<literal style=\"latex\">\n?\n</literal>")
12069 ("L" "#+LaTeX: " "<literal style=\"latex\">?</literal>")
12070 ("h" "#+BEGIN_HTML\n?\n#+END_HTML"
12071 "<literal style=\"html\">\n?\n</literal>")
12072 ("H" "#+HTML: " "<literal style=\"html\">?</literal>")
12073 ("a" "#+BEGIN_ASCII\n?\n#+END_ASCII" "")
12074 ("A" "#+ASCII: " "")
12075 ("i" "#+INDEX: ?" "#+INDEX: ?")
12076 ("I" "#+INCLUDE: %file ?"
12077 "<include file=%file markup=\"?\">"))
12078 "Structure completion elements.
12079 This is a list of abbreviation keys and values. The value gets inserted
12080 if you type `<' followed by the key and then press the completion key,
12081 usually `M-TAB'. %file will be replaced by a file name after prompting
12082 for the file using completion. The cursor will be placed at the position
12083 of the `?` in the template.
12084 There are two templates for each key, the first uses the original Org syntax,
12085 the second uses Emacs Muse-like syntax tags. These Muse-like tags become
12086 the default when the /org-mtags.el/ module has been loaded. See also the
12087 variable `org-mtags-prefer-muse-templates'."
12088 :group 'org-completion
12089 :type '(repeat
12090 (list
12091 (string :tag "Key")
12092 (string :tag "Template")
12093 (string :tag "Muse Template"))))
12095 (defun org-try-structure-completion ()
12096 "Try to complete a structure template before point.
12097 This looks for strings like \"<e\" on an otherwise empty line and
12098 expands them."
12099 (let ((l (buffer-substring (point-at-bol) (point)))
12101 (when (and (looking-at "[ \t]*$")
12102 (string-match "^[ \t]*<\\([a-zA-Z]+\\)$" l)
12103 (setq a (assoc (match-string 1 l) org-structure-template-alist)))
12104 (org-complete-expand-structure-template (+ -1 (point-at-bol)
12105 (match-beginning 1)) a)
12106 t)))
12108 (defun org-complete-expand-structure-template (start cell)
12109 "Expand a structure template."
12110 (let* ((musep (org-bound-and-true-p org-mtags-prefer-muse-templates))
12111 (rpl (nth (if musep 2 1) cell))
12112 (ind ""))
12113 (delete-region start (point))
12114 (when (string-match "\\`#\\+" rpl)
12115 (cond
12116 ((bolp))
12117 ((not (string-match "\\S-" (buffer-substring (point-at-bol) (point))))
12118 (setq ind (buffer-substring (point-at-bol) (point))))
12119 (t (newline))))
12120 (setq start (point))
12121 (if (string-match "%file" rpl)
12122 (setq rpl (replace-match
12123 (concat
12124 "\""
12125 (save-match-data
12126 (abbreviate-file-name (read-file-name "Include file: ")))
12127 "\"")
12128 t t rpl)))
12129 (setq rpl (mapconcat 'identity (split-string rpl "\n")
12130 (concat "\n" ind)))
12131 (insert rpl)
12132 (if (re-search-backward "\\?" start t) (delete-char 1))))
12134 ;;;; TODO, DEADLINE, Comments
12136 (defun org-toggle-comment ()
12137 "Change the COMMENT state of an entry."
12138 (interactive)
12139 (save-excursion
12140 (org-back-to-heading)
12141 (let (case-fold-search)
12142 (cond
12143 ((looking-at (format org-heading-keyword-regexp-format
12144 org-comment-string))
12145 (goto-char (match-end 1))
12146 (looking-at (concat " +" org-comment-string))
12147 (replace-match "" t t)
12148 (when (eolp) (insert " ")))
12149 ((looking-at org-outline-regexp)
12150 (goto-char (match-end 0))
12151 (insert org-comment-string " "))))))
12153 (defvar org-last-todo-state-is-todo nil
12154 "This is non-nil when the last TODO state change led to a TODO state.
12155 If the last change removed the TODO tag or switched to DONE, then
12156 this is nil.")
12158 (defvar org-setting-tags nil) ; dynamically skipped
12160 (defvar org-todo-setup-filter-hook nil
12161 "Hook for functions that pre-filter todo specs.
12162 Each function takes a todo spec and returns either nil or the spec
12163 transformed into canonical form." )
12165 (defvar org-todo-get-default-hook nil
12166 "Hook for functions that get a default item for todo.
12167 Each function takes arguments (NEW-MARK OLD-MARK) and returns either
12168 nil or a string to be used for the todo mark." )
12170 (defvar org-agenda-headline-snapshot-before-repeat)
12172 (defun org-current-effective-time ()
12173 "Return current time adjusted for `org-extend-today-until' variable."
12174 (let* ((ct (org-current-time))
12175 (dct (decode-time ct))
12176 (ct1
12177 (cond
12178 (org-use-last-clock-out-time-as-effective-time
12179 (or (org-clock-get-last-clock-out-time) ct))
12180 ((and org-use-effective-time (< (nth 2 dct) org-extend-today-until))
12181 (encode-time 0 59 23 (1- (nth 3 dct)) (nth 4 dct) (nth 5 dct)))
12182 (t ct))))
12183 ct1))
12185 (defun org-todo-yesterday (&optional arg)
12186 "Like `org-todo' but the time of change will be 23:59 of yesterday."
12187 (interactive "P")
12188 (if (eq major-mode 'org-agenda-mode)
12189 (apply 'org-agenda-todo-yesterday arg)
12190 (let* ((hour (third (decode-time
12191 (org-current-time))))
12192 (org-extend-today-until (1+ hour)))
12193 (org-todo arg))))
12195 (defvar org-block-entry-blocking ""
12196 "First entry preventing the TODO state change.")
12198 (defun org-todo (&optional arg)
12199 "Change the TODO state of an item.
12200 The state of an item is given by a keyword at the start of the heading,
12201 like
12202 *** TODO Write paper
12203 *** DONE Call mom
12205 The different keywords are specified in the variable `org-todo-keywords'.
12206 By default the available states are \"TODO\" and \"DONE\".
12207 So for this example: when the item starts with TODO, it is changed to DONE.
12208 When it starts with DONE, the DONE is removed. And when neither TODO nor
12209 DONE are present, add TODO at the beginning of the heading.
12211 With \\[universal-argument] prefix arg, use completion to determine the new \
12212 state.
12213 With numeric prefix arg, switch to that state.
12214 With a double \\[universal-argument] prefix, switch to the next set of TODO \
12215 keywords (nextset).
12216 With a triple \\[universal-argument] prefix, circumvent any state blocking.
12217 With a numeric prefix arg of 0, inhibit note taking for the change.
12219 For calling through lisp, arg is also interpreted in the following way:
12220 'none -> empty state
12221 \"\"(empty string) -> switch to empty state
12222 'done -> switch to DONE
12223 'nextset -> switch to the next set of keywords
12224 'previousset -> switch to the previous set of keywords
12225 \"WAITING\" -> switch to the specified keyword, but only if it
12226 really is a member of `org-todo-keywords'."
12227 (interactive "P")
12228 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
12229 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
12230 'region-start-level 'region))
12231 org-loop-over-headlines-in-active-region)
12232 (org-map-entries
12233 `(org-todo ,arg)
12234 org-loop-over-headlines-in-active-region
12235 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
12236 (if (equal arg '(16)) (setq arg 'nextset))
12237 (let ((org-blocker-hook org-blocker-hook)
12238 commentp
12239 case-fold-search)
12240 (when (equal arg '(64))
12241 (setq arg nil org-blocker-hook nil))
12242 (when (and org-blocker-hook
12243 (or org-inhibit-blocking
12244 (org-entry-get nil "NOBLOCKING")))
12245 (setq org-blocker-hook nil))
12246 (save-excursion
12247 (catch 'exit
12248 (org-back-to-heading t)
12249 (when (looking-at (concat "^\\*+ " org-comment-string))
12250 (org-toggle-comment)
12251 (setq commentp t))
12252 (if (looking-at org-outline-regexp) (goto-char (1- (match-end 0))))
12253 (or (looking-at (concat " +" org-todo-regexp "\\( +\\|[ \t]*$\\)"))
12254 (looking-at "\\(?: *\\|[ \t]*$\\)"))
12255 (let* ((match-data (match-data))
12256 (startpos (point-at-bol))
12257 (logging (save-match-data (org-entry-get nil "LOGGING" t t)))
12258 (org-log-done org-log-done)
12259 (org-log-repeat org-log-repeat)
12260 (org-todo-log-states org-todo-log-states)
12261 (org-inhibit-logging
12262 (if (equal arg 0)
12263 (progn (setq arg nil) 'note) org-inhibit-logging))
12264 (this (match-string 1))
12265 (hl-pos (match-beginning 0))
12266 (head (org-get-todo-sequence-head this))
12267 (ass (assoc head org-todo-kwd-alist))
12268 (interpret (nth 1 ass))
12269 (done-word (nth 3 ass))
12270 (final-done-word (nth 4 ass))
12271 (org-last-state (or this ""))
12272 (completion-ignore-case t)
12273 (member (member this org-todo-keywords-1))
12274 (tail (cdr member))
12275 (org-state (cond
12276 ((and org-todo-key-trigger
12277 (or (and (equal arg '(4))
12278 (eq org-use-fast-todo-selection 'prefix))
12279 (and (not arg) org-use-fast-todo-selection
12280 (not (eq org-use-fast-todo-selection
12281 'prefix)))))
12282 ;; Use fast selection
12283 (org-fast-todo-selection))
12284 ((and (equal arg '(4))
12285 (or (not org-use-fast-todo-selection)
12286 (not org-todo-key-trigger)))
12287 ;; Read a state with completion
12288 (org-icompleting-read
12289 "State: " (mapcar 'list org-todo-keywords-1)
12290 nil t))
12291 ((eq arg 'right)
12292 (if this
12293 (if tail (car tail) nil)
12294 (car org-todo-keywords-1)))
12295 ((eq arg 'left)
12296 (if (equal member org-todo-keywords-1)
12298 (if this
12299 (nth (- (length org-todo-keywords-1)
12300 (length tail) 2)
12301 org-todo-keywords-1)
12302 (org-last org-todo-keywords-1))))
12303 ((and (eq org-use-fast-todo-selection t) (equal arg '(4))
12304 (setq arg nil))) ; hack to fall back to cycling
12305 (arg
12306 ;; user or caller requests a specific state
12307 (cond
12308 ((equal arg "") nil)
12309 ((eq arg 'none) nil)
12310 ((eq arg 'done) (or done-word (car org-done-keywords)))
12311 ((eq arg 'nextset)
12312 (or (car (cdr (member head org-todo-heads)))
12313 (car org-todo-heads)))
12314 ((eq arg 'previousset)
12315 (let ((org-todo-heads (reverse org-todo-heads)))
12316 (or (car (cdr (member head org-todo-heads)))
12317 (car org-todo-heads))))
12318 ((car (member arg org-todo-keywords-1)))
12319 ((stringp arg)
12320 (user-error "State `%s' not valid in this file" arg))
12321 ((nth (1- (prefix-numeric-value arg))
12322 org-todo-keywords-1))))
12323 ((null member) (or head (car org-todo-keywords-1)))
12324 ((equal this final-done-word) nil) ;; -> make empty
12325 ((null tail) nil) ;; -> first entry
12326 ((memq interpret '(type priority))
12327 (if (eq this-command last-command)
12328 (car tail)
12329 (if (> (length tail) 0)
12330 (or done-word (car org-done-keywords))
12331 nil)))
12333 (car tail))))
12334 (org-state (or
12335 (run-hook-with-args-until-success
12336 'org-todo-get-default-hook org-state org-last-state)
12337 org-state))
12338 (next (if org-state (concat " " org-state " ") " "))
12339 (change-plist (list :type 'todo-state-change :from this :to org-state
12340 :position startpos))
12341 dolog now-done-p)
12342 (when org-blocker-hook
12343 (setq org-last-todo-state-is-todo
12344 (not (member this org-done-keywords)))
12345 (unless (save-excursion
12346 (save-match-data
12347 (org-with-wide-buffer
12348 (run-hook-with-args-until-failure
12349 'org-blocker-hook change-plist))))
12350 (if (org-called-interactively-p 'interactive)
12351 (user-error "TODO state change from %s to %s blocked (by \"%s\")"
12352 this org-state org-block-entry-blocking)
12353 ;; fail silently
12354 (message "TODO state change from %s to %s blocked (by \"%s\")"
12355 this org-state org-block-entry-blocking)
12356 (throw 'exit nil))))
12357 (store-match-data match-data)
12358 (replace-match next t t)
12359 (unless (pos-visible-in-window-p hl-pos)
12360 (message "TODO state changed to %s" (org-trim next)))
12361 (unless head
12362 (setq head (org-get-todo-sequence-head org-state)
12363 ass (assoc head org-todo-kwd-alist)
12364 interpret (nth 1 ass)
12365 done-word (nth 3 ass)
12366 final-done-word (nth 4 ass)))
12367 (when (memq arg '(nextset previousset))
12368 (message "Keyword-Set %d/%d: %s"
12369 (- (length org-todo-sets) -1
12370 (length (memq (assoc org-state org-todo-sets) org-todo-sets)))
12371 (length org-todo-sets)
12372 (mapconcat 'identity (assoc org-state org-todo-sets) " ")))
12373 (setq org-last-todo-state-is-todo
12374 (not (member org-state org-done-keywords)))
12375 (setq now-done-p (and (member org-state org-done-keywords)
12376 (not (member this org-done-keywords))))
12377 (and logging (org-local-logging logging))
12378 (when (and (or org-todo-log-states org-log-done)
12379 (not (eq org-inhibit-logging t))
12380 (not (memq arg '(nextset previousset))))
12381 ;; we need to look at recording a time and note
12382 (setq dolog (or (nth 1 (assoc org-state org-todo-log-states))
12383 (nth 2 (assoc this org-todo-log-states))))
12384 (if (and (eq dolog 'note) (eq org-inhibit-logging 'note))
12385 (setq dolog 'time))
12386 (when (or (and (not org-state) (not org-closed-keep-when-no-todo))
12387 (and org-state
12388 (member org-state org-not-done-keywords)
12389 (not (member this org-not-done-keywords))))
12390 ;; This is now a todo state and was not one before
12391 ;; If there was a CLOSED time stamp, get rid of it.
12392 (org-add-planning-info nil nil 'closed))
12393 (when (and now-done-p org-log-done)
12394 ;; It is now done, and it was not done before
12395 (org-add-planning-info 'closed (org-current-effective-time))
12396 (if (and (not dolog) (eq 'note org-log-done))
12397 (org-add-log-setup 'done org-state this 'findpos 'note)))
12398 (when (and org-state dolog)
12399 ;; This is a non-nil state, and we need to log it
12400 (org-add-log-setup 'state org-state this 'findpos dolog)))
12401 ;; Fixup tag positioning
12402 (org-todo-trigger-tag-changes org-state)
12403 (and org-auto-align-tags (not org-setting-tags) (org-set-tags nil t))
12404 (when org-provide-todo-statistics
12405 (org-update-parent-todo-statistics))
12406 (run-hooks 'org-after-todo-state-change-hook)
12407 (if (and arg (not (member org-state org-done-keywords)))
12408 (setq head (org-get-todo-sequence-head org-state)))
12409 (put-text-property (point-at-bol) (point-at-eol) 'org-todo-head head)
12410 ;; Do we need to trigger a repeat?
12411 (when now-done-p
12412 (when (boundp 'org-agenda-headline-snapshot-before-repeat)
12413 ;; This is for the agenda, take a snapshot of the headline.
12414 (save-match-data
12415 (setq org-agenda-headline-snapshot-before-repeat
12416 (org-get-heading))))
12417 (org-auto-repeat-maybe org-state))
12418 ;; Fixup cursor location if close to the keyword
12419 (if (and (outline-on-heading-p)
12420 (not (bolp))
12421 (save-excursion (beginning-of-line 1)
12422 (looking-at org-todo-line-regexp))
12423 (< (point) (+ 2 (or (match-end 2) (match-end 1)))))
12424 (progn
12425 (goto-char (or (match-end 2) (match-end 1)))
12426 (and (looking-at " ") (just-one-space))))
12427 (when org-trigger-hook
12428 (save-excursion
12429 (run-hook-with-args 'org-trigger-hook change-plist)))
12430 (when commentp (org-toggle-comment))))))))
12432 (defun org-block-todo-from-children-or-siblings-or-parent (change-plist)
12433 "Block turning an entry into a TODO, using the hierarchy.
12434 This checks whether the current task should be blocked from state
12435 changes. Such blocking occurs when:
12437 1. The task has children which are not all in a completed state.
12439 2. A task has a parent with the property :ORDERED:, and there
12440 are siblings prior to the current task with incomplete
12441 status.
12443 3. The parent of the task is blocked because it has siblings that should
12444 be done first, or is child of a block grandparent TODO entry."
12446 (if (not org-enforce-todo-dependencies)
12447 t ; if locally turned off don't block
12448 (catch 'dont-block
12449 ;; If this is not a todo state change, or if this entry is already DONE,
12450 ;; do not block
12451 (when (or (not (eq (plist-get change-plist :type) 'todo-state-change))
12452 (member (plist-get change-plist :from)
12453 (cons 'done org-done-keywords))
12454 (member (plist-get change-plist :to)
12455 (cons 'todo org-not-done-keywords))
12456 (not (plist-get change-plist :to)))
12457 (throw 'dont-block t))
12458 ;; If this task has children, and any are undone, it's blocked
12459 (save-excursion
12460 (org-back-to-heading t)
12461 (let ((this-level (funcall outline-level)))
12462 (outline-next-heading)
12463 (let ((child-level (funcall outline-level)))
12464 (while (and (not (eobp))
12465 (> child-level this-level))
12466 ;; this todo has children, check whether they are all
12467 ;; completed
12468 (if (and (not (org-entry-is-done-p))
12469 (org-entry-is-todo-p))
12470 (progn (setq org-block-entry-blocking (org-get-heading))
12471 (throw 'dont-block nil)))
12472 (outline-next-heading)
12473 (setq child-level (funcall outline-level))))))
12474 ;; Otherwise, if the task's parent has the :ORDERED: property, and
12475 ;; any previous siblings are undone, it's blocked
12476 (save-excursion
12477 (org-back-to-heading t)
12478 (let* ((pos (point))
12479 (parent-pos (and (org-up-heading-safe) (point))))
12480 (if (not parent-pos) (throw 'dont-block t)) ; no parent
12481 (when (and (org-not-nil (org-entry-get (point) "ORDERED"))
12482 (forward-line 1)
12483 (re-search-forward org-not-done-heading-regexp pos t))
12484 (setq org-block-entry-blocking (match-string 0))
12485 (throw 'dont-block nil)) ; block, there is an older sibling not done.
12486 ;; Search further up the hierarchy, to see if an ancestor is blocked
12487 (while t
12488 (goto-char parent-pos)
12489 (if (not (looking-at org-not-done-heading-regexp))
12490 (throw 'dont-block t)) ; do not block, parent is not a TODO
12491 (setq pos (point))
12492 (setq parent-pos (and (org-up-heading-safe) (point)))
12493 (if (not parent-pos) (throw 'dont-block t)) ; no parent
12494 (when (and (org-not-nil (org-entry-get (point) "ORDERED"))
12495 (forward-line 1)
12496 (re-search-forward org-not-done-heading-regexp pos t)
12497 (setq org-block-entry-blocking (org-get-heading)))
12498 (throw 'dont-block nil)))))))) ; block, older sibling not done.
12500 (defcustom org-track-ordered-property-with-tag nil
12501 "Should the ORDERED property also be shown as a tag?
12502 The ORDERED property decides if an entry should require subtasks to be
12503 completed in sequence. Since a property is not very visible, setting
12504 this option means that toggling the ORDERED property with the command
12505 `org-toggle-ordered-property' will also toggle a tag ORDERED. That tag is
12506 not relevant for the behavior, but it makes things more visible.
12508 Note that toggling the tag with tags commands will not change the property
12509 and therefore not influence behavior!
12511 This can be t, meaning the tag ORDERED should be used, It can also be a
12512 string to select a different tag for this task."
12513 :group 'org-todo
12514 :type '(choice
12515 (const :tag "No tracking" nil)
12516 (const :tag "Track with ORDERED tag" t)
12517 (string :tag "Use other tag")))
12519 (defun org-toggle-ordered-property ()
12520 "Toggle the ORDERED property of the current entry.
12521 For better visibility, you can track the value of this property with a tag.
12522 See variable `org-track-ordered-property-with-tag'."
12523 (interactive)
12524 (let* ((t1 org-track-ordered-property-with-tag)
12525 (tag (and t1 (if (stringp t1) t1 "ORDERED"))))
12526 (save-excursion
12527 (org-back-to-heading)
12528 (if (org-entry-get nil "ORDERED")
12529 (progn
12530 (org-delete-property "ORDERED" "PROPERTIES")
12531 (and tag (org-toggle-tag tag 'off))
12532 (message "Subtasks can be completed in arbitrary order"))
12533 (org-entry-put nil "ORDERED" "t")
12534 (and tag (org-toggle-tag tag 'on))
12535 (message "Subtasks must be completed in sequence")))))
12537 (defvar org-blocked-by-checkboxes) ; dynamically scoped
12538 (defun org-block-todo-from-checkboxes (change-plist)
12539 "Block turning an entry into a TODO, using checkboxes.
12540 This checks whether the current task should be blocked from state
12541 changes because there are unchecked boxes in this entry."
12542 (if (not org-enforce-todo-checkbox-dependencies)
12543 t ; if locally turned off don't block
12544 (catch 'dont-block
12545 ;; If this is not a todo state change, or if this entry is already DONE,
12546 ;; do not block
12547 (when (or (not (eq (plist-get change-plist :type) 'todo-state-change))
12548 (member (plist-get change-plist :from)
12549 (cons 'done org-done-keywords))
12550 (member (plist-get change-plist :to)
12551 (cons 'todo org-not-done-keywords))
12552 (not (plist-get change-plist :to)))
12553 (throw 'dont-block t))
12554 ;; If this task has checkboxes that are not checked, it's blocked
12555 (save-excursion
12556 (org-back-to-heading t)
12557 (let ((beg (point)) end)
12558 (outline-next-heading)
12559 (setq end (point))
12560 (goto-char beg)
12561 (if (org-list-search-forward
12562 (concat (org-item-beginning-re)
12563 "\\(?:\\[@\\(?:start:\\)?\\([0-9]+\\|[A-Za-z]\\)\\][ \t]*\\)?"
12564 "\\[[- ]\\]")
12565 end t)
12566 (progn
12567 (if (boundp 'org-blocked-by-checkboxes)
12568 (setq org-blocked-by-checkboxes t))
12569 (throw 'dont-block nil)))))
12570 t))) ; do not block
12572 (defun org-entry-blocked-p ()
12573 "Is the current entry blocked?"
12574 (org-with-silent-modifications
12575 (if (org-entry-get nil "NOBLOCKING")
12576 nil ;; Never block this entry
12577 (not (run-hook-with-args-until-failure
12578 'org-blocker-hook
12579 (list :type 'todo-state-change
12580 :position (point)
12581 :from 'todo
12582 :to 'done))))))
12584 (defun org-update-statistics-cookies (all)
12585 "Update the statistics cookie, either from TODO or from checkboxes.
12586 This should be called with the cursor in a line with a statistics cookie."
12587 (interactive "P")
12588 (if all
12589 (progn
12590 (org-update-checkbox-count 'all)
12591 (org-map-entries 'org-update-parent-todo-statistics))
12592 (if (not (org-at-heading-p))
12593 (org-update-checkbox-count)
12594 (let ((pos (point-marker))
12595 end l1 l2)
12596 (ignore-errors (org-back-to-heading t))
12597 (if (not (org-at-heading-p))
12598 (org-update-checkbox-count)
12599 (setq l1 (org-outline-level))
12600 (setq end (save-excursion
12601 (outline-next-heading)
12602 (if (org-at-heading-p) (setq l2 (org-outline-level)))
12603 (point)))
12604 (if (and (save-excursion
12605 (re-search-forward
12606 "^[ \t]*\\([-+*]\\|[0-9]+[.)]\\) \\[[- X]\\]" end t))
12607 (not (save-excursion (re-search-forward
12608 ":COOKIE_DATA:.*\\<todo\\>" end t))))
12609 (org-update-checkbox-count)
12610 (if (and l2 (> l2 l1))
12611 (progn
12612 (goto-char end)
12613 (org-update-parent-todo-statistics))
12614 (goto-char pos)
12615 (beginning-of-line 1)
12616 (while (re-search-forward
12617 "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)"
12618 (point-at-eol) t)
12619 (replace-match (if (match-end 2) "[100%]" "[0/0]") t t)))))
12620 (goto-char pos)
12621 (move-marker pos nil)))))
12623 (defvar org-entry-property-inherited-from) ;; defined below
12624 (defun org-update-parent-todo-statistics ()
12625 "Update any statistics cookie in the parent of the current headline.
12626 When `org-hierarchical-todo-statistics' is nil, statistics will cover
12627 the entire subtree and this will travel up the hierarchy and update
12628 statistics everywhere."
12629 (let* ((prop (save-excursion (org-up-heading-safe)
12630 (org-entry-get nil "COOKIE_DATA" 'inherit)))
12631 (recursive (or (not org-hierarchical-todo-statistics)
12632 (and prop (string-match "\\<recursive\\>" prop))))
12633 (lim (or (and prop (marker-position org-entry-property-inherited-from))
12635 (first t)
12636 (box-re "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)")
12637 level ltoggle l1 new ndel
12638 (cnt-all 0) (cnt-done 0) is-percent kwd
12639 checkbox-beg ov ovs ove cookie-present)
12640 (catch 'exit
12641 (save-excursion
12642 (beginning-of-line 1)
12643 (setq ltoggle (funcall outline-level))
12644 ;; Three situations are to consider:
12646 ;; 1. if `org-hierarchical-todo-statistics' is nil, repeat up
12647 ;; to the top-level ancestor on the headline;
12649 ;; 2. If parent has "recursive" property, repeat up to the
12650 ;; headline setting that property, taking inheritance into
12651 ;; account;
12653 ;; 3. Else, move up to direct parent and proceed only once.
12654 (while (and (setq level (org-up-heading-safe))
12655 (or recursive first)
12656 (>= (point) lim))
12657 (setq first nil cookie-present nil)
12658 (unless (and level
12659 (not (string-match
12660 "\\<checkbox\\>"
12661 (downcase (or (org-entry-get nil "COOKIE_DATA")
12662 "")))))
12663 (throw 'exit nil))
12664 (while (re-search-forward box-re (point-at-eol) t)
12665 (setq cnt-all 0 cnt-done 0 cookie-present t)
12666 (setq is-percent (match-end 2) checkbox-beg (match-beginning 0))
12667 (save-match-data
12668 (unless (outline-next-heading) (throw 'exit nil))
12669 (while (and (looking-at org-complex-heading-regexp)
12670 (> (setq l1 (length (match-string 1))) level))
12671 (setq kwd (and (or recursive (= l1 ltoggle))
12672 (match-string 2)))
12673 (if (or (eq org-provide-todo-statistics 'all-headlines)
12674 (and (listp org-provide-todo-statistics)
12675 (or (member kwd org-provide-todo-statistics)
12676 (member kwd org-done-keywords))))
12677 (setq cnt-all (1+ cnt-all))
12678 (if (eq org-provide-todo-statistics t)
12679 (and kwd (setq cnt-all (1+ cnt-all)))))
12680 (and (member kwd org-done-keywords)
12681 (setq cnt-done (1+ cnt-done)))
12682 (outline-next-heading)))
12683 (setq new
12684 (if is-percent
12685 (format "[%d%%]" (/ (* 100 cnt-done) (max 1 cnt-all)))
12686 (format "[%d/%d]" cnt-done cnt-all))
12687 ndel (- (match-end 0) checkbox-beg))
12688 ;; handle overlays when updating cookie from column view
12689 (when (setq ov (car (overlays-at checkbox-beg)))
12690 (setq ovs (overlay-start ov) ove (overlay-end ov))
12691 (delete-overlay ov))
12692 (goto-char checkbox-beg)
12693 (insert new)
12694 (delete-region (point) (+ (point) ndel))
12695 (when org-auto-align-tags (org-fix-tags-on-the-fly))
12696 (when ov (move-overlay ov ovs ove)))
12697 (when cookie-present
12698 (run-hook-with-args 'org-after-todo-statistics-hook
12699 cnt-done (- cnt-all cnt-done))))))
12700 (run-hooks 'org-todo-statistics-hook)))
12702 (defvar org-after-todo-statistics-hook nil
12703 "Hook that is called after a TODO statistics cookie has been updated.
12704 Each function is called with two arguments: the number of not-done entries
12705 and the number of done entries.
12707 For example, the following function, when added to this hook, will switch
12708 an entry to DONE when all children are done, and back to TODO when new
12709 entries are set to a TODO status. Note that this hook is only called
12710 when there is a statistics cookie in the headline!
12712 (defun org-summary-todo (n-done n-not-done)
12713 \"Switch entry to DONE when all subentries are done, to TODO otherwise.\"
12714 (let (org-log-done org-log-states) ; turn off logging
12715 (org-todo (if (= n-not-done 0) \"DONE\" \"TODO\"))))
12718 (defvar org-todo-statistics-hook nil
12719 "Hook that is run whenever Org thinks TODO statistics should be updated.
12720 This hook runs even if there is no statistics cookie present, in which case
12721 `org-after-todo-statistics-hook' would not run.")
12723 (defun org-todo-trigger-tag-changes (state)
12724 "Apply the changes defined in `org-todo-state-tags-triggers'."
12725 (let ((l org-todo-state-tags-triggers)
12726 changes)
12727 (when (or (not state) (equal state ""))
12728 (setq changes (append changes (cdr (assoc "" l)))))
12729 (when (and (stringp state) (> (length state) 0))
12730 (setq changes (append changes (cdr (assoc state l)))))
12731 (when (member state org-not-done-keywords)
12732 (setq changes (append changes (cdr (assoc 'todo l)))))
12733 (when (member state org-done-keywords)
12734 (setq changes (append changes (cdr (assoc 'done l)))))
12735 (dolist (c changes)
12736 (org-toggle-tag (car c) (if (cdr c) 'on 'off)))))
12738 (defun org-local-logging (value)
12739 "Get logging settings from a property VALUE."
12740 (let* (words w a)
12741 ;; directly set the variables, they are already local.
12742 (setq org-log-done nil
12743 org-log-repeat nil
12744 org-todo-log-states nil)
12745 (setq words (org-split-string value))
12746 (while (setq w (pop words))
12747 (cond
12748 ((setq a (assoc w org-startup-options))
12749 (and (member (nth 1 a) '(org-log-done org-log-repeat))
12750 (set (nth 1 a) (nth 2 a))))
12751 ((setq a (org-extract-log-state-settings w))
12752 (and (member (car a) org-todo-keywords-1)
12753 (push a org-todo-log-states)))))))
12755 (defun org-get-todo-sequence-head (kwd)
12756 "Return the head of the TODO sequence to which KWD belongs.
12757 If KWD is not set, check if there is a text property remembering the
12758 right sequence."
12759 (let (p)
12760 (cond
12761 ((not kwd)
12762 (or (get-text-property (point-at-bol) 'org-todo-head)
12763 (progn
12764 (setq p (next-single-property-change (point-at-bol) 'org-todo-head
12765 nil (point-at-eol)))
12766 (get-text-property p 'org-todo-head))))
12767 ((not (member kwd org-todo-keywords-1))
12768 (car org-todo-keywords-1))
12769 (t (nth 2 (assoc kwd org-todo-kwd-alist))))))
12771 (defun org-fast-todo-selection ()
12772 "Fast TODO keyword selection with single keys.
12773 Returns the new TODO keyword, or nil if no state change should occur."
12774 (let* ((fulltable org-todo-key-alist)
12775 (done-keywords org-done-keywords) ;; needed for the faces.
12776 (maxlen (apply 'max (mapcar
12777 (lambda (x)
12778 (if (stringp (car x)) (string-width (car x)) 0))
12779 fulltable)))
12780 (expert nil)
12781 (fwidth (+ maxlen 3 1 3))
12782 (ncol (/ (- (window-width) 4) fwidth))
12783 tg cnt e c tbl
12784 groups ingroup)
12785 (save-excursion
12786 (save-window-excursion
12787 (if expert
12788 (set-buffer (get-buffer-create " *Org todo*"))
12789 (org-switch-to-buffer-other-window (get-buffer-create " *Org todo*")))
12790 (erase-buffer)
12791 (org-set-local 'org-done-keywords done-keywords)
12792 (setq tbl fulltable cnt 0)
12793 (while (setq e (pop tbl))
12794 (cond
12795 ((equal e '(:startgroup))
12796 (push '() groups) (setq ingroup t)
12797 (when (not (= cnt 0))
12798 (setq cnt 0)
12799 (insert "\n"))
12800 (insert "{ "))
12801 ((equal e '(:endgroup))
12802 (setq ingroup nil cnt 0)
12803 (insert "}\n"))
12804 ((equal e '(:newline))
12805 (when (not (= cnt 0))
12806 (setq cnt 0)
12807 (insert "\n")
12808 (setq e (car tbl))
12809 (while (equal (car tbl) '(:newline))
12810 (insert "\n")
12811 (setq tbl (cdr tbl)))))
12813 (setq tg (car e) c (cdr e))
12814 (if ingroup (push tg (car groups)))
12815 (setq tg (org-add-props tg nil 'face
12816 (org-get-todo-face tg)))
12817 (if (and (= cnt 0) (not ingroup)) (insert " "))
12818 (insert "[" c "] " tg (make-string
12819 (- fwidth 4 (length tg)) ?\ ))
12820 (when (= (setq cnt (1+ cnt)) ncol)
12821 (insert "\n")
12822 (if ingroup (insert " "))
12823 (setq cnt 0)))))
12824 (insert "\n")
12825 (goto-char (point-min))
12826 (if (not expert) (org-fit-window-to-buffer))
12827 (message "[a-z..]:Set [SPC]:clear")
12828 (setq c (let ((inhibit-quit t)) (read-char-exclusive)))
12829 (cond
12830 ((or (= c ?\C-g)
12831 (and (= c ?q) (not (rassoc c fulltable))))
12832 (setq quit-flag t))
12833 ((= c ?\ ) nil)
12834 ((setq e (rassoc c fulltable) tg (car e))
12836 (t (setq quit-flag t)))))))
12838 (defun org-entry-is-todo-p ()
12839 (member (org-get-todo-state) org-not-done-keywords))
12841 (defun org-entry-is-done-p ()
12842 (member (org-get-todo-state) org-done-keywords))
12844 (defun org-get-todo-state ()
12845 "Return the TODO keyword of the current subtree."
12846 (save-excursion
12847 (org-back-to-heading t)
12848 (and (looking-at org-todo-line-regexp)
12849 (match-end 2)
12850 (match-string 2))))
12852 (defun org-at-date-range-p (&optional inactive-ok)
12853 "Is the cursor inside a date range?"
12854 (interactive)
12855 (save-excursion
12856 (catch 'exit
12857 (let ((pos (point)))
12858 (skip-chars-backward "^[<\r\n")
12859 (skip-chars-backward "<[")
12860 (and (looking-at (if inactive-ok org-tr-regexp-both org-tr-regexp))
12861 (>= (match-end 0) pos)
12862 (throw 'exit t))
12863 (skip-chars-backward "^<[\r\n")
12864 (skip-chars-backward "<[")
12865 (and (looking-at (if inactive-ok org-tr-regexp-both org-tr-regexp))
12866 (>= (match-end 0) pos)
12867 (throw 'exit t)))
12868 nil)))
12870 (defun org-get-repeat (&optional tagline)
12871 "Check if there is a deadline/schedule with repeater in this entry."
12872 (save-match-data
12873 (save-excursion
12874 (org-back-to-heading t)
12875 (and (re-search-forward (if tagline
12876 (concat tagline "\\s-*" org-repeat-re)
12877 org-repeat-re)
12878 (org-entry-end-position) t)
12879 (match-string-no-properties 1)))))
12881 (defvar org-last-changed-timestamp)
12882 (defvar org-last-inserted-timestamp)
12883 (defvar org-log-post-message)
12884 (defvar org-log-note-purpose)
12885 (defvar org-log-note-how)
12886 (defvar org-log-note-extra)
12887 (defun org-auto-repeat-maybe (done-word)
12888 "Check if the current headline contains a repeated deadline/schedule.
12889 If yes, set TODO state back to what it was and change the base date
12890 of repeating deadline/scheduled time stamps to new date.
12891 This function is run automatically after each state change to a DONE state."
12892 ;; last-state is dynamically scoped into this function
12893 (let* ((repeat (org-get-repeat))
12894 (aa (assoc org-last-state org-todo-kwd-alist))
12895 (interpret (nth 1 aa))
12896 (head (nth 2 aa))
12897 (whata '(("h" . hour) ("d" . day) ("m" . month) ("y" . year)))
12898 (msg "Entry repeats: ")
12899 (org-log-done nil)
12900 (org-todo-log-states nil)
12901 re type n what ts time to-state)
12902 (when repeat
12903 (if (eq org-log-repeat t) (setq org-log-repeat 'state))
12904 (setq to-state (or (org-entry-get nil "REPEAT_TO_STATE")
12905 org-todo-repeat-to-state))
12906 (unless (and to-state (member to-state org-todo-keywords-1))
12907 (setq to-state (if (eq interpret 'type) org-last-state head)))
12908 (org-todo to-state)
12909 (when (or org-log-repeat (org-entry-get nil "CLOCK"))
12910 (org-entry-put nil "LAST_REPEAT" (format-time-string
12911 (org-time-stamp-format t t))))
12912 (when org-log-repeat
12913 (if (or (memq 'org-add-log-note (default-value 'post-command-hook))
12914 (memq 'org-add-log-note post-command-hook))
12915 ;; OK, we are already setup for some record
12916 (if (eq org-log-repeat 'note)
12917 ;; make sure we take a note, not only a time stamp
12918 (setq org-log-note-how 'note))
12919 ;; Set up for taking a record
12920 (org-add-log-setup 'state (or done-word (car org-done-keywords))
12921 org-last-state
12922 'findpos org-log-repeat)))
12923 (org-back-to-heading t)
12924 (org-add-planning-info nil nil 'closed)
12925 (setq re (concat "\\(" org-scheduled-time-regexp "\\)\\|\\("
12926 org-deadline-time-regexp "\\)\\|\\("
12927 org-ts-regexp "\\)"))
12928 (while (re-search-forward
12929 re (save-excursion (outline-next-heading) (point)) t)
12930 (setq type (if (match-end 1) org-scheduled-string
12931 (if (match-end 3) org-deadline-string "Plain:"))
12932 ts (match-string (if (match-end 2) 2 (if (match-end 4) 4 0))))
12933 (when (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([hdwmy]\\)" ts)
12934 (setq n (string-to-number (match-string 2 ts))
12935 what (match-string 3 ts))
12936 (if (equal what "w") (setq n (* n 7) what "d"))
12937 (if (and (equal what "h") (not (string-match "[0-9]\\{1,2\\}:[0-9]\\{2\\}" ts)))
12938 (user-error "Cannot repeat in Repeat in %d hour(s) because no hour has been set" n))
12939 ;; Preparation, see if we need to modify the start date for the change
12940 (when (match-end 1)
12941 (setq time (save-match-data (org-time-string-to-time ts)))
12942 (cond
12943 ((equal (match-string 1 ts) ".")
12944 ;; Shift starting date to today
12945 (org-timestamp-change
12946 (- (org-today) (time-to-days time))
12947 'day))
12948 ((equal (match-string 1 ts) "+")
12949 (let ((nshiftmax 10) (nshift 0))
12950 (while (or (= nshift 0)
12951 (<= (time-to-days time)
12952 (time-to-days (current-time))))
12953 (when (= (incf nshift) nshiftmax)
12954 (or (y-or-n-p (message "%d repeater intervals were not enough to shift date past today. Continue? " nshift))
12955 (error "Abort")))
12956 (org-timestamp-change n (cdr (assoc what whata)))
12957 (org-at-timestamp-p t)
12958 (setq ts (match-string 1))
12959 (setq time (save-match-data (org-time-string-to-time ts)))))
12960 (org-timestamp-change (- n) (cdr (assoc what whata)))
12961 ;; rematch, so that we have everything in place for the real shift
12962 (org-at-timestamp-p t)
12963 (setq ts (match-string 1))
12964 (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([hdwmy]\\)" ts))))
12965 (save-excursion (org-timestamp-change n (cdr (assoc what whata)) nil t))
12966 (setq msg (concat msg type " " org-last-changed-timestamp " "))))
12967 (setq org-log-post-message msg)
12968 (message "%s" msg))))
12970 (defun org-show-todo-tree (arg)
12971 "Make a compact tree which shows all headlines marked with TODO.
12972 The tree will show the lines where the regexp matches, and all higher
12973 headlines above the match.
12974 With a \\[universal-argument] prefix, prompt for a regexp to match.
12975 With a numeric prefix N, construct a sparse tree for the Nth element
12976 of `org-todo-keywords-1'."
12977 (interactive "P")
12978 (let ((case-fold-search nil)
12979 (kwd-re
12980 (cond ((null arg) org-not-done-regexp)
12981 ((equal arg '(4))
12982 (let ((kwd (org-icompleting-read "Keyword (or KWD1|KWD2|...): "
12983 (mapcar 'list org-todo-keywords-1))))
12984 (concat "\\("
12985 (mapconcat 'identity (org-split-string kwd "|") "\\|")
12986 "\\)\\>")))
12987 ((<= (prefix-numeric-value arg) (length org-todo-keywords-1))
12988 (regexp-quote (nth (1- (prefix-numeric-value arg))
12989 org-todo-keywords-1)))
12990 (t (user-error "Invalid prefix argument: %s" arg)))))
12991 (message "%d TODO entries found"
12992 (org-occur (concat "^" org-outline-regexp " *" kwd-re )))))
12994 (defun org-deadline (arg &optional time)
12995 "Insert the \"DEADLINE:\" string with a timestamp to make a deadline.
12996 With one universal prefix argument, remove any deadline from the item.
12997 With two universal prefix arguments, prompt for a warning delay.
12998 With argument TIME, set the deadline at the corresponding date. TIME
12999 can either be an Org date like \"2011-07-24\" or a delta like \"+2d\"."
13000 (interactive "P")
13001 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
13002 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
13003 'region-start-level 'region))
13004 org-loop-over-headlines-in-active-region)
13005 (org-map-entries
13006 `(org-deadline ',arg ,time)
13007 org-loop-over-headlines-in-active-region
13008 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
13009 (let* ((old-date (org-entry-get nil "DEADLINE"))
13010 (old-date-time (if old-date (org-time-string-to-time old-date)))
13011 (repeater (and old-date
13012 (string-match
13013 "\\([.+-]+[0-9]+[hdwmy]\\(?:[/ ][-+]?[0-9]+[hdwmy]\\)?\\) ?"
13014 old-date)
13015 (match-string 1 old-date))))
13016 (cond
13017 ((equal arg '(4))
13018 (when (and old-date org-log-redeadline)
13019 (org-add-log-setup 'deldeadline nil old-date 'findpos
13020 org-log-redeadline))
13021 (org-remove-timestamp-with-keyword org-deadline-string)
13022 (message "Item no longer has a deadline."))
13023 ((equal arg '(16))
13024 (save-excursion
13025 (org-back-to-heading t)
13026 (if (re-search-forward
13027 org-deadline-time-regexp
13028 (save-excursion (outline-next-heading) (point)) t)
13029 (let* ((rpl0 (match-string 1))
13030 (rpl (replace-regexp-in-string " -[0-9]+[hdwmy]" "" rpl0)))
13031 (replace-match
13032 (concat org-deadline-string
13033 " <" rpl
13034 (format " -%dd"
13035 (abs
13036 (- (time-to-days
13037 (save-match-data
13038 (org-read-date nil t nil "Warn starting from" old-date-time)))
13039 (time-to-days old-date-time))))
13040 ">") t t))
13041 (user-error "No deadline information to update"))))
13043 (org-add-planning-info 'deadline time 'closed)
13044 (when (and old-date org-log-redeadline
13045 (not (equal old-date
13046 (substring org-last-inserted-timestamp 1 -1))))
13047 (org-add-log-setup 'redeadline nil old-date 'findpos
13048 org-log-redeadline))
13049 (when repeater
13050 (save-excursion
13051 (org-back-to-heading t)
13052 (when (re-search-forward (concat org-deadline-string " "
13053 org-last-inserted-timestamp)
13054 (save-excursion
13055 (outline-next-heading) (point)) t)
13056 (goto-char (1- (match-end 0)))
13057 (insert " " repeater)
13058 (setq org-last-inserted-timestamp
13059 (concat (substring org-last-inserted-timestamp 0 -1)
13060 " " repeater
13061 (substring org-last-inserted-timestamp -1))))))
13062 (message "Deadline on %s" org-last-inserted-timestamp))))))
13064 (defun org-schedule (arg &optional time)
13065 "Insert the SCHEDULED: string with a timestamp to schedule a TODO item.
13066 With one universal prefix argument, remove any scheduling date from the item.
13067 With two universal prefix arguments, prompt for a delay cookie.
13068 With argument TIME, scheduled at the corresponding date. TIME can
13069 either be an Org date like \"2011-07-24\" or a delta like \"+2d\"."
13070 (interactive "P")
13071 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
13072 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
13073 'region-start-level 'region))
13074 org-loop-over-headlines-in-active-region)
13075 (org-map-entries
13076 `(org-schedule ',arg ,time)
13077 org-loop-over-headlines-in-active-region
13078 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
13079 (let* ((old-date (org-entry-get nil "SCHEDULED"))
13080 (old-date-time (if old-date (org-time-string-to-time old-date)))
13081 (repeater (and old-date
13082 (string-match
13083 "\\([.+-]+[0-9]+[hdwmy]\\(?:[/ ][-+]?[0-9]+[hdwmy]\\)?\\) ?"
13084 old-date)
13085 (match-string 1 old-date))))
13086 (cond
13087 ((equal arg '(4))
13088 (progn
13089 (when (and old-date org-log-reschedule)
13090 (org-add-log-setup 'delschedule nil old-date 'findpos
13091 org-log-reschedule))
13092 (org-remove-timestamp-with-keyword org-scheduled-string)
13093 (message "Item is no longer scheduled.")))
13094 ((equal arg '(16))
13095 (save-excursion
13096 (org-back-to-heading t)
13097 (if (re-search-forward
13098 org-scheduled-time-regexp
13099 (save-excursion (outline-next-heading) (point)) t)
13100 (let* ((rpl0 (match-string 1))
13101 (rpl (replace-regexp-in-string " -[0-9]+[hdwmy]" "" rpl0)))
13102 (replace-match
13103 (concat org-scheduled-string
13104 " <" rpl
13105 (format " -%dd"
13106 (abs
13107 (- (time-to-days
13108 (save-match-data
13109 (org-read-date nil t nil "Delay until" old-date-time)))
13110 (time-to-days old-date-time))))
13111 ">") t t))
13112 (user-error "No scheduled information to update"))))
13114 (org-add-planning-info 'scheduled time 'closed)
13115 (when (and old-date org-log-reschedule
13116 (not (equal old-date
13117 (substring org-last-inserted-timestamp 1 -1))))
13118 (org-add-log-setup 'reschedule nil old-date 'findpos
13119 org-log-reschedule))
13120 (when repeater
13121 (save-excursion
13122 (org-back-to-heading t)
13123 (when (re-search-forward (concat org-scheduled-string " "
13124 org-last-inserted-timestamp)
13125 (save-excursion
13126 (outline-next-heading) (point)) t)
13127 (goto-char (1- (match-end 0)))
13128 (insert " " repeater)
13129 (setq org-last-inserted-timestamp
13130 (concat (substring org-last-inserted-timestamp 0 -1)
13131 " " repeater
13132 (substring org-last-inserted-timestamp -1))))))
13133 (message "Scheduled to %s" org-last-inserted-timestamp))))))
13135 (defun org-get-scheduled-time (pom &optional inherit)
13136 "Get the scheduled time as a time tuple, of a format suitable
13137 for calling org-schedule with, or if there is no scheduling,
13138 returns nil."
13139 (let ((time (org-entry-get pom "SCHEDULED" inherit)))
13140 (when time
13141 (apply 'encode-time (org-parse-time-string time)))))
13143 (defun org-get-deadline-time (pom &optional inherit)
13144 "Get the deadline as a time tuple, of a format suitable for
13145 calling org-deadline with, or if there is no scheduling, returns
13146 nil."
13147 (let ((time (org-entry-get pom "DEADLINE" inherit)))
13148 (when time
13149 (apply 'encode-time (org-parse-time-string time)))))
13151 (defun org-remove-timestamp-with-keyword (keyword)
13152 "Remove all time stamps with KEYWORD in the current entry."
13153 (let ((re (concat "\\<" (regexp-quote keyword) " +<[^>\n]+>[ \t]*"))
13154 beg)
13155 (save-excursion
13156 (org-back-to-heading t)
13157 (setq beg (point))
13158 (outline-next-heading)
13159 (while (re-search-backward re beg t)
13160 (replace-match "")
13161 (if (and (string-match "\\S-" (buffer-substring (point-at-bol) (point)))
13162 (equal (char-before) ?\ ))
13163 (backward-delete-char 1)
13164 (if (string-match "^[ \t]*$" (buffer-substring
13165 (point-at-bol) (point-at-eol)))
13166 (delete-region (point-at-bol)
13167 (min (point-max) (1+ (point-at-eol))))))))))
13169 (defvar org-time-was-given) ; dynamically scoped parameter
13170 (defvar org-end-time-was-given) ; dynamically scoped parameter
13172 (defun org-add-planning-info (what &optional time &rest remove)
13173 "Insert new timestamp with keyword in the line directly after the headline.
13174 WHAT indicates what kind of time stamp to add. TIME indicates the time to use.
13175 If non is given, the user is prompted for a date.
13176 REMOVE indicates what kind of entries to remove. An old WHAT entry will also
13177 be removed."
13178 (interactive)
13179 (let (org-time-was-given org-end-time-was-given ts
13180 end default-time default-input)
13182 (catch 'exit
13183 (when (and (memq what '(scheduled deadline))
13184 (or (not time)
13185 (and (stringp time)
13186 (string-match "^[-+]+[0-9]" time))))
13187 ;; Try to get a default date/time from existing timestamp
13188 (save-excursion
13189 (org-back-to-heading t)
13190 (setq end (save-excursion (outline-next-heading) (point)))
13191 (when (re-search-forward (if (eq what 'scheduled)
13192 org-scheduled-time-regexp
13193 org-deadline-time-regexp)
13194 end t)
13195 (setq ts (match-string 1)
13196 default-time
13197 (apply 'encode-time (org-parse-time-string ts))
13198 default-input (and ts (org-get-compact-tod ts))))))
13199 (when what
13200 (setq time
13201 (if (stringp time)
13202 ;; This is a string (relative or absolute), set proper date
13203 (apply 'encode-time
13204 (org-read-date-analyze
13205 time default-time (decode-time default-time)))
13206 ;; If necessary, get the time from the user
13207 (or time (org-read-date nil 'to-time nil nil
13208 default-time default-input)))))
13210 (when (and org-insert-labeled-timestamps-at-point
13211 (member what '(scheduled deadline)))
13212 (insert
13213 (if (eq what 'scheduled) org-scheduled-string org-deadline-string) " ")
13214 (org-insert-time-stamp time org-time-was-given
13215 nil nil nil (list org-end-time-was-given))
13216 (setq what nil))
13217 (save-excursion
13218 (save-restriction
13219 (let (col list elt ts buffer-invisibility-spec)
13220 (org-back-to-heading t)
13221 (looking-at (concat org-outline-regexp "\\( *\\)[^\r\n]*"))
13222 (goto-char (match-end 1))
13223 (setq col (current-column))
13224 (goto-char (match-end 0))
13225 (if (eobp) (insert "\n") (forward-char 1))
13226 (when (and (not what)
13227 (not (looking-at
13228 (concat "[ \t]*"
13229 org-keyword-time-not-clock-regexp))))
13230 ;; Nothing to add, nothing to remove...... :-)
13231 (throw 'exit nil))
13232 (if (and (not (looking-at org-outline-regexp))
13233 (looking-at (concat "[^\r\n]*?" org-keyword-time-regexp
13234 "[^\r\n]*"))
13235 (not (equal (match-string 1) org-clock-string)))
13236 (narrow-to-region (match-beginning 0) (match-end 0))
13237 (insert-before-markers "\n")
13238 (backward-char 1)
13239 (narrow-to-region (point) (point))
13240 (and org-adapt-indentation (org-indent-to-column col)))
13241 ;; Check if we have to remove something.
13242 (setq list (cons what remove))
13243 (while list
13244 (setq elt (pop list))
13245 (when (or (and (eq elt 'scheduled)
13246 (re-search-forward org-scheduled-time-regexp nil t))
13247 (and (eq elt 'deadline)
13248 (re-search-forward org-deadline-time-regexp nil t))
13249 (and (eq elt 'closed)
13250 (re-search-forward org-closed-time-regexp nil t)))
13251 (replace-match "")
13252 (if (looking-at "--+<[^>]+>") (replace-match ""))))
13253 (and (looking-at "[ \t]+") (replace-match ""))
13254 (and org-adapt-indentation (bolp) (org-indent-to-column col))
13255 (when what
13256 (insert
13257 (if (not (or (bolp) (eq (char-before) ?\ ))) " " "")
13258 (cond ((eq what 'scheduled) org-scheduled-string)
13259 ((eq what 'deadline) org-deadline-string)
13260 ((eq what 'closed) org-closed-string))
13261 " ")
13262 (setq ts (org-insert-time-stamp
13263 time
13264 (or org-time-was-given
13265 (and (eq what 'closed) org-log-done-with-time))
13266 (eq what 'closed)
13267 nil nil (list org-end-time-was-given)))
13268 (insert
13269 (if (not (or (bolp) (eq (char-before) ?\ )
13270 (memq (char-after) '(32 10))
13271 (eobp))) " " ""))
13272 (end-of-line 1))
13273 (goto-char (point-min))
13274 (widen)
13275 (if (and (looking-at "[ \t]*\n")
13276 (equal (char-before) ?\n))
13277 (delete-region (1- (point)) (point-at-eol)))
13278 ts))))))
13280 (defvar org-log-note-marker (make-marker))
13281 (defvar org-log-note-purpose nil)
13282 (defvar org-log-note-state nil)
13283 (defvar org-log-note-previous-state nil)
13284 (defvar org-log-note-how nil)
13285 (defvar org-log-note-extra nil)
13286 (defvar org-log-note-window-configuration nil)
13287 (defvar org-log-note-return-to (make-marker))
13288 (defvar org-log-note-effective-time nil
13289 "Remembered current time so that dynamically scoped
13290 `org-extend-today-until' affects tha timestamps in state change
13291 log")
13293 (defvar org-log-post-message nil
13294 "Message to be displayed after a log note has been stored.
13295 The auto-repeater uses this.")
13297 (defun org-add-note ()
13298 "Add a note to the current entry.
13299 This is done in the same way as adding a state change note."
13300 (interactive)
13301 (org-add-log-setup 'note nil nil 'findpos nil))
13303 (defvar org-property-end-re)
13304 (defun org-add-log-setup (&optional purpose state prev-state
13305 findpos how extra)
13306 "Set up the post command hook to take a note.
13307 If this is about to TODO state change, the new state is expected in STATE.
13308 When FINDPOS is non-nil, find the correct position for the note in
13309 the current entry. If not, assume that it can be inserted at point.
13310 HOW is an indicator what kind of note should be created.
13311 EXTRA is additional text that will be inserted into the notes buffer."
13312 (let* ((org-log-into-drawer (org-log-into-drawer))
13313 (drawer (cond ((stringp org-log-into-drawer)
13314 org-log-into-drawer)
13315 (org-log-into-drawer "LOGBOOK"))))
13316 (save-restriction
13317 (save-excursion
13318 (when findpos
13319 (org-back-to-heading t)
13320 (narrow-to-region (point) (save-excursion
13321 (outline-next-heading) (point)))
13322 (looking-at (concat org-outline-regexp "\\( *\\)[^\r\n]*"
13323 "\\(\n[^\r\n]*?" org-keyword-time-not-clock-regexp
13324 "[^\r\n]*\\)?"))
13325 (goto-char (match-end 0))
13326 (cond
13327 (drawer
13328 (if (re-search-forward (concat "^[ \t]*:" drawer ":[ \t]*$")
13329 nil t)
13330 (progn
13331 (goto-char (match-end 0))
13332 (or org-log-states-order-reversed
13333 (and (re-search-forward org-property-end-re nil t)
13334 (goto-char (1- (match-beginning 0))))))
13335 (insert "\n:" drawer ":\n:END:")
13336 (beginning-of-line 0)
13337 (org-indent-line)
13338 (beginning-of-line 2)
13339 (org-indent-line)
13340 (end-of-line 0)))
13341 ((and org-log-state-notes-insert-after-drawers
13342 (save-excursion
13343 (forward-line) (looking-at org-drawer-regexp)))
13344 (forward-line)
13345 (while (looking-at org-drawer-regexp)
13346 (goto-char (match-end 0))
13347 (re-search-forward org-property-end-re (point-max) t)
13348 (forward-line))
13349 (forward-line -1)))
13350 (unless org-log-states-order-reversed
13351 (and (= (char-after) ?\n) (forward-char 1))
13352 (org-skip-over-state-notes)
13353 (skip-chars-backward " \t\n\r")))
13354 (move-marker org-log-note-marker (point))
13355 (setq org-log-note-purpose purpose
13356 org-log-note-state state
13357 org-log-note-previous-state prev-state
13358 org-log-note-how how
13359 org-log-note-extra extra
13360 org-log-note-effective-time (org-current-effective-time))
13361 (add-hook 'post-command-hook 'org-add-log-note 'append)))))
13363 (defun org-skip-over-state-notes ()
13364 "Skip past the list of State notes in an entry."
13365 (if (looking-at "\n[ \t]*- State") (forward-char 1))
13366 (when (ignore-errors (goto-char (org-in-item-p)))
13367 (let* ((struct (org-list-struct))
13368 (prevs (org-list-prevs-alist struct)))
13369 (while (looking-at "[ \t]*- State")
13370 (goto-char (or (org-list-get-next-item (point) struct prevs)
13371 (org-list-get-item-end (point) struct)))))))
13373 (defun org-add-log-note (&optional purpose)
13374 "Pop up a window for taking a note, and add this note later at point."
13375 (remove-hook 'post-command-hook 'org-add-log-note)
13376 (setq org-log-note-window-configuration (current-window-configuration))
13377 (delete-other-windows)
13378 (move-marker org-log-note-return-to (point))
13379 (org-pop-to-buffer-same-window (marker-buffer org-log-note-marker))
13380 (goto-char org-log-note-marker)
13381 (org-switch-to-buffer-other-window "*Org Note*")
13382 (erase-buffer)
13383 (if (memq org-log-note-how '(time state))
13384 (let (current-prefix-arg) (org-store-log-note))
13385 (let ((org-inhibit-startup t)) (org-mode))
13386 (insert (format "# Insert note for %s.
13387 # Finish with C-c C-c, or cancel with C-c C-k.\n\n"
13388 (cond
13389 ((eq org-log-note-purpose 'clock-out) "stopped clock")
13390 ((eq org-log-note-purpose 'done) "closed todo item")
13391 ((eq org-log-note-purpose 'state)
13392 (format "state change from \"%s\" to \"%s\""
13393 (or org-log-note-previous-state "")
13394 (or org-log-note-state "")))
13395 ((eq org-log-note-purpose 'reschedule)
13396 "rescheduling")
13397 ((eq org-log-note-purpose 'delschedule)
13398 "no longer scheduled")
13399 ((eq org-log-note-purpose 'redeadline)
13400 "changing deadline")
13401 ((eq org-log-note-purpose 'deldeadline)
13402 "removing deadline")
13403 ((eq org-log-note-purpose 'refile)
13404 "refiling")
13405 ((eq org-log-note-purpose 'note)
13406 "this entry")
13407 (t (error "This should not happen")))))
13408 (if org-log-note-extra (insert org-log-note-extra))
13409 (org-set-local 'org-finish-function 'org-store-log-note)
13410 (run-hooks 'org-log-buffer-setup-hook)))
13412 (defvar org-note-abort nil) ; dynamically scoped
13413 (defun org-store-log-note ()
13414 "Finish taking a log note, and insert it to where it belongs."
13415 (let ((txt (buffer-string)))
13416 (kill-buffer (current-buffer))
13417 (let ((note (cdr (assq org-log-note-purpose org-log-note-headings)))
13418 lines ind bul)
13419 (while (string-match "\\`# .*\n[ \t\n]*" txt)
13420 (setq txt (replace-match "" t t txt)))
13421 (if (string-match "\\s-+\\'" txt)
13422 (setq txt (replace-match "" t t txt)))
13423 (setq lines (org-split-string txt "\n"))
13424 (when (and note (string-match "\\S-" note))
13425 (setq note
13426 (org-replace-escapes
13427 note
13428 (list (cons "%u" (user-login-name))
13429 (cons "%U" user-full-name)
13430 (cons "%t" (format-time-string
13431 (org-time-stamp-format 'long 'inactive)
13432 org-log-note-effective-time))
13433 (cons "%T" (format-time-string
13434 (org-time-stamp-format 'long nil)
13435 org-log-note-effective-time))
13436 (cons "%d" (format-time-string
13437 (org-time-stamp-format nil 'inactive)
13438 org-log-note-effective-time))
13439 (cons "%D" (format-time-string
13440 (org-time-stamp-format nil nil)
13441 org-log-note-effective-time))
13442 (cons "%s" (if org-log-note-state
13443 (concat "\"" org-log-note-state "\"")
13444 ""))
13445 (cons "%S" (if org-log-note-previous-state
13446 (concat "\"" org-log-note-previous-state "\"")
13447 "\"\"")))))
13448 (if lines (setq note (concat note " \\\\")))
13449 (push note lines))
13450 (when (or current-prefix-arg org-note-abort)
13451 (when org-log-into-drawer
13452 (org-remove-empty-drawer-at
13453 (if (stringp org-log-into-drawer) org-log-into-drawer "LOGBOOK")
13454 org-log-note-marker))
13455 (setq lines nil))
13456 (when lines
13457 (with-current-buffer (marker-buffer org-log-note-marker)
13458 (save-excursion
13459 (goto-char org-log-note-marker)
13460 (move-marker org-log-note-marker nil)
13461 (end-of-line 1)
13462 (if (not (bolp)) (let ((inhibit-read-only t)) (insert "\n")))
13463 (setq ind (save-excursion
13464 (if (ignore-errors (goto-char (org-in-item-p)))
13465 (let ((struct (org-list-struct)))
13466 (org-list-get-ind
13467 (org-list-get-top-point struct) struct))
13468 (skip-chars-backward " \r\t\n")
13469 (cond
13470 ((and (org-at-heading-p)
13471 org-adapt-indentation)
13472 (1+ (org-current-level)))
13473 ((org-at-heading-p) 0)
13474 (t (org-get-indentation))))))
13475 (setq bul (org-list-bullet-string "-"))
13476 (org-indent-line-to ind)
13477 (insert bul (pop lines))
13478 (let ((ind-body (+ (length bul) ind)))
13479 (while lines
13480 (insert "\n")
13481 (org-indent-line-to ind-body)
13482 (insert (pop lines))))
13483 (message "Note stored")
13484 (org-back-to-heading t)
13485 (org-cycle-hide-drawers 'children))
13486 ;; Fix `buffer-undo-list' when `org-store-log-note' is called
13487 ;; from within `org-add-log-note' because `buffer-undo-list'
13488 ;; is then modified outside of `org-with-remote-undo'.
13489 (when (eq this-command 'org-agenda-todo)
13490 (setcdr buffer-undo-list (cddr buffer-undo-list)))))))
13491 ;; Don't add undo information when called from `org-agenda-todo'
13492 (let ((buffer-undo-list (eq this-command 'org-agenda-todo)))
13493 (set-window-configuration org-log-note-window-configuration)
13494 (with-current-buffer (marker-buffer org-log-note-return-to)
13495 (goto-char org-log-note-return-to))
13496 (move-marker org-log-note-return-to nil)
13497 (and org-log-post-message (message "%s" org-log-post-message))))
13499 (defun org-remove-empty-drawer-at (drawer pos)
13500 "Remove an empty drawer DRAWER at position POS.
13501 POS may also be a marker."
13502 (with-current-buffer (if (markerp pos) (marker-buffer pos) (current-buffer))
13503 (save-excursion
13504 (save-restriction
13505 (widen)
13506 (goto-char pos)
13507 (if (org-in-regexp
13508 (concat "^[ \t]*:" drawer ":[ \t]*\n[ \t]*:END:[ \t]*\n?") 2)
13509 (replace-match ""))))))
13511 (defvar org-ts-type nil)
13512 (defun org-sparse-tree (&optional arg type)
13513 "Create a sparse tree, prompt for the details.
13514 This command can create sparse trees. You first need to select the type
13515 of match used to create the tree:
13517 t Show all TODO entries.
13518 T Show entries with a specific TODO keyword.
13519 m Show entries selected by a tags/property match.
13520 p Enter a property name and its value (both with completion on existing
13521 names/values) and show entries with that property.
13522 r Show entries matching a regular expression (`/' can be used as well).
13523 b Show deadlines and scheduled items before a date.
13524 a Show deadlines and scheduled items after a date.
13525 d Show deadlines due within `org-deadline-warning-days'.
13526 D Show deadlines and scheduled items between a date range."
13527 (interactive "P")
13528 (setq type (or type org-sparse-tree-default-date-type))
13529 (setq org-ts-type type)
13530 (message "Sparse tree: [/]regexp [t]odo [T]odo-kwd [m]atch [p]roperty
13531 [d]eadlines [b]efore-date [a]fter-date [D]ates range
13532 [c]ycle through date types: %s"
13533 (case type
13534 (all "all timestamps")
13535 (scheduled "only scheduled")
13536 (deadline "only deadline")
13537 (active "only active timestamps")
13538 (inactive "only inactive timestamps")
13539 (scheduled-or-deadline "scheduled/deadline")
13540 (closed "with a closed time-stamp")
13541 (otherwise "scheduled/deadline")))
13542 (let ((answer (read-char-exclusive)))
13543 (case answer
13545 (org-sparse-tree
13547 (cadr (memq type '(scheduled-or-deadline all scheduled deadline active
13548 inactive closed)))))
13549 (?d (call-interactively #'org-check-deadlines))
13550 (?b (call-interactively #'org-check-before-date))
13551 (?a (call-interactively #'org-check-after-date))
13552 (?D (call-interactively #'org-check-dates-range))
13553 (?t (call-interactively #'org-show-todo-tree))
13554 (?T (org-show-todo-tree '(4)))
13555 (?m (call-interactively #'org-match-sparse-tree))
13556 ((?p ?P)
13557 (let* ((kwd (org-icompleting-read
13558 "Property: " (mapcar #'list (org-buffer-property-keys))))
13559 (value (org-icompleting-read
13560 "Value: " (mapcar #'list (org-property-values kwd)))))
13561 (unless (string-match "\\`{.*}\\'" value)
13562 (setq value (concat "\"" value "\"")))
13563 (org-match-sparse-tree arg (concat kwd "=" value))))
13564 ((?r ?R ?/) (call-interactively #'org-occur))
13565 (otherwise (user-error "No such sparse tree command \"%c\"" answer)))))
13567 (defvar org-occur-highlights nil
13568 "List of overlays used for occur matches.")
13569 (make-variable-buffer-local 'org-occur-highlights)
13570 (defvar org-occur-parameters nil
13571 "Parameters of the active org-occur calls.
13572 This is a list, each call to org-occur pushes as cons cell,
13573 containing the regular expression and the callback, onto the list.
13574 The list can contain several entries if `org-occur' has been called
13575 several time with the KEEP-PREVIOUS argument. Otherwise, this list
13576 will only contain one set of parameters. When the highlights are
13577 removed (for example with `C-c C-c', or with the next edit (depending
13578 on `org-remove-highlights-with-change'), this variable is emptied
13579 as well.")
13580 (make-variable-buffer-local 'org-occur-parameters)
13582 (defun org-occur (regexp &optional keep-previous callback)
13583 "Make a compact tree which shows all matches of REGEXP.
13584 The tree will show the lines where the regexp matches, and all higher
13585 headlines above the match. It will also show the heading after the match,
13586 to make sure editing the matching entry is easy.
13587 If KEEP-PREVIOUS is non-nil, highlighting and exposing done by a previous
13588 call to `org-occur' will be kept, to allow stacking of calls to this
13589 command.
13590 If CALLBACK is non-nil, it is a function which is called to confirm
13591 that the match should indeed be shown."
13592 (interactive "sRegexp: \nP")
13593 (when (equal regexp "")
13594 (user-error "Regexp cannot be empty"))
13595 (unless keep-previous
13596 (org-remove-occur-highlights nil nil t))
13597 (push (cons regexp callback) org-occur-parameters)
13598 (let ((cnt 0))
13599 (save-excursion
13600 (goto-char (point-min))
13601 (if (or (not keep-previous) ; do not want to keep
13602 (not org-occur-highlights)) ; no previous matches
13603 ;; hide everything
13604 (org-overview))
13605 (while (re-search-forward regexp nil t)
13606 (when (or (not callback)
13607 (save-match-data (funcall callback)))
13608 (setq cnt (1+ cnt))
13609 (when org-highlight-sparse-tree-matches
13610 (org-highlight-new-match (match-beginning 0) (match-end 0)))
13611 (org-show-context 'occur-tree))))
13612 (when org-remove-highlights-with-change
13613 (org-add-hook 'before-change-functions 'org-remove-occur-highlights
13614 nil 'local))
13615 (unless org-sparse-tree-open-archived-trees
13616 (org-hide-archived-subtrees (point-min) (point-max)))
13617 (run-hooks 'org-occur-hook)
13618 (if (org-called-interactively-p 'interactive)
13619 (message "%d match(es) for regexp %s" cnt regexp))
13620 cnt))
13622 (defun org-occur-next-match (&optional n reset)
13623 "Function for `next-error-function' to find sparse tree matches.
13624 N is the number of matches to move, when negative move backwards.
13625 RESET is entirely ignored - this function always goes back to the
13626 starting point when no match is found."
13627 (let* ((limit (if (< n 0) (point-min) (point-max)))
13628 (search-func (if (< n 0)
13629 'previous-single-char-property-change
13630 'next-single-char-property-change))
13631 (n (abs n))
13632 (pos (point))
13634 (catch 'exit
13635 (while (setq p1 (funcall search-func (point) 'org-type))
13636 (when (equal p1 limit)
13637 (goto-char pos)
13638 (error "No more matches"))
13639 (when (equal (get-char-property p1 'org-type) 'org-occur)
13640 (setq n (1- n))
13641 (when (= n 0)
13642 (goto-char p1)
13643 (throw 'exit (point))))
13644 (goto-char p1))
13645 (goto-char p1)
13646 (error "No more matches"))))
13648 (defun org-show-context (&optional key)
13649 "Make sure point and context are visible.
13650 How much context is shown depends upon the variables
13651 `org-show-hierarchy-above', `org-show-following-heading',
13652 `org-show-entry-below' and `org-show-siblings'."
13653 (let ((heading-p (org-at-heading-p t))
13654 (hierarchy-p (org-get-alist-option org-show-hierarchy-above key))
13655 (following-p (org-get-alist-option org-show-following-heading key))
13656 (entry-p (org-get-alist-option org-show-entry-below key))
13657 (siblings-p (org-get-alist-option org-show-siblings key)))
13658 ;; Show heading or entry text
13659 (if (and heading-p (not entry-p))
13660 (org-flag-heading nil) ; only show the heading
13661 (and (or entry-p (outline-invisible-p) (org-invisible-p2))
13662 (org-show-hidden-entry))) ; show entire entry
13663 (when following-p
13664 ;; Show next sibling, or heading below text
13665 (save-excursion
13666 (and (if heading-p (org-goto-sibling) (outline-next-heading))
13667 (org-flag-heading nil))))
13668 (when siblings-p (org-show-siblings))
13669 (when hierarchy-p
13670 ;; show all higher headings, possibly with siblings
13671 (save-excursion
13672 (while (and (condition-case nil
13673 (progn (org-up-heading-all 1) t)
13674 (error nil))
13675 (not (bobp)))
13676 (org-flag-heading nil)
13677 (when siblings-p (org-show-siblings)))))))
13679 (defvar org-reveal-start-hook nil
13680 "Hook run before revealing a location.")
13682 (defun org-reveal (&optional siblings)
13683 "Show current entry, hierarchy above it, and the following headline.
13684 This can be used to show a consistent set of context around locations
13685 exposed with `org-show-hierarchy-above' or `org-show-following-heading'
13686 not t for the search context.
13688 With optional argument SIBLINGS, on each level of the hierarchy all
13689 siblings are shown. This repairs the tree structure to what it would
13690 look like when opened with hierarchical calls to `org-cycle'.
13691 With double optional argument \\[universal-argument] \\[universal-argument], \
13692 go to the parent and show the
13693 entire tree."
13694 (interactive "P")
13695 (run-hooks 'org-reveal-start-hook)
13696 (let ((org-show-hierarchy-above t)
13697 (org-show-following-heading t)
13698 (org-show-siblings (if siblings t org-show-siblings)))
13699 (org-show-context nil))
13700 (when (equal siblings '(16))
13701 (save-excursion
13702 (when (org-up-heading-safe)
13703 (org-show-subtree)
13704 (run-hook-with-args 'org-cycle-hook 'subtree)))))
13706 (defun org-highlight-new-match (beg end)
13707 "Highlight from BEG to END and mark the highlight is an occur headline."
13708 (let ((ov (make-overlay beg end)))
13709 (overlay-put ov 'face 'secondary-selection)
13710 (overlay-put ov 'org-type 'org-occur)
13711 (push ov org-occur-highlights)))
13713 (defun org-remove-occur-highlights (&optional beg end noremove)
13714 "Remove the occur highlights from the buffer.
13715 BEG and END are ignored. If NOREMOVE is nil, remove this function
13716 from the `before-change-functions' in the current buffer."
13717 (interactive)
13718 (unless org-inhibit-highlight-removal
13719 (mapc 'delete-overlay org-occur-highlights)
13720 (setq org-occur-highlights nil)
13721 (setq org-occur-parameters nil)
13722 (unless noremove
13723 (remove-hook 'before-change-functions
13724 'org-remove-occur-highlights 'local))))
13726 ;;;; Priorities
13728 (defvar org-priority-regexp ".*?\\(\\[#\\([A-Z0-9]\\)\\] ?\\)"
13729 "Regular expression matching the priority indicator.")
13731 (defvar org-remove-priority-next-time nil)
13733 (defun org-priority-up ()
13734 "Increase the priority of the current item."
13735 (interactive)
13736 (org-priority 'up))
13738 (defun org-priority-down ()
13739 "Decrease the priority of the current item."
13740 (interactive)
13741 (org-priority 'down))
13743 (defun org-priority (&optional action show)
13744 "Change the priority of an item.
13745 ACTION can be `set', `up', `down', or a character."
13746 (interactive "P")
13747 (if (equal action '(4))
13748 (org-show-priority)
13749 (unless org-enable-priority-commands
13750 (user-error "Priority commands are disabled"))
13751 (setq action (or action 'set))
13752 (let (current new news have remove)
13753 (save-excursion
13754 (org-back-to-heading t)
13755 (if (looking-at org-priority-regexp)
13756 (setq current (string-to-char (match-string 2))
13757 have t))
13758 (cond
13759 ((eq action 'remove)
13760 (setq remove t new ?\ ))
13761 ((or (eq action 'set)
13762 (if (featurep 'xemacs) (characterp action) (integerp action)))
13763 (if (not (eq action 'set))
13764 (setq new action)
13765 (message "Priority %c-%c, SPC to remove: "
13766 org-highest-priority org-lowest-priority)
13767 (save-match-data
13768 (setq new (read-char-exclusive))))
13769 (if (and (= (upcase org-highest-priority) org-highest-priority)
13770 (= (upcase org-lowest-priority) org-lowest-priority))
13771 (setq new (upcase new)))
13772 (cond ((equal new ?\ ) (setq remove t))
13773 ((or (< (upcase new) org-highest-priority) (> (upcase new) org-lowest-priority))
13774 (user-error "Priority must be between `%c' and `%c'"
13775 org-highest-priority org-lowest-priority))))
13776 ((eq action 'up)
13777 (setq new (if have
13778 (1- current) ; normal cycling
13779 ;; last priority was empty
13780 (if (eq last-command this-command)
13781 org-lowest-priority ; wrap around empty to lowest
13782 ;; default
13783 (if org-priority-start-cycle-with-default
13784 org-default-priority
13785 (1- org-default-priority))))))
13786 ((eq action 'down)
13787 (setq new (if have
13788 (1+ current) ; normal cycling
13789 ;; last priority was empty
13790 (if (eq last-command this-command)
13791 org-highest-priority ; wrap around empty to highest
13792 ;; default
13793 (if org-priority-start-cycle-with-default
13794 org-default-priority
13795 (1+ org-default-priority))))))
13796 (t (user-error "Invalid action")))
13797 (if (or (< (upcase new) org-highest-priority)
13798 (> (upcase new) org-lowest-priority))
13799 (if (and (memq action '(up down))
13800 (not have) (not (eq last-command this-command)))
13801 ;; `new' is from default priority
13802 (error
13803 "The default can not be set, see `org-default-priority' why")
13804 ;; normal cycling: `new' is beyond highest/lowest priority
13805 ;; and is wrapped around to the empty priority
13806 (setq remove t)))
13807 (setq news (format "%c" new))
13808 (if have
13809 (if remove
13810 (replace-match "" t t nil 1)
13811 (replace-match news t t nil 2))
13812 (if remove
13813 (user-error "No priority cookie found in line")
13814 (let ((case-fold-search nil))
13815 (looking-at org-todo-line-regexp))
13816 (if (match-end 2)
13817 (progn
13818 (goto-char (match-end 2))
13819 (insert " [#" news "]"))
13820 (goto-char (match-beginning 3))
13821 (insert "[#" news "] "))))
13822 (org-preserve-lc (org-set-tags nil 'align)))
13823 (if remove
13824 (message "Priority removed")
13825 (message "Priority of current item set to %s" news)))))
13827 (defun org-show-priority ()
13828 "Show the priority of the current item.
13829 This priority is composed of the main priority given with the [#A] cookies,
13830 and by additional input from the age of a schedules or deadline entry."
13831 (interactive)
13832 (let ((pri (if (eq major-mode 'org-agenda-mode)
13833 (org-get-at-bol 'priority)
13834 (save-excursion
13835 (save-match-data
13836 (beginning-of-line)
13837 (and (looking-at org-heading-regexp)
13838 (org-get-priority (match-string 0))))))))
13839 (message "Priority is %d" (if pri pri -1000))))
13841 (defun org-get-priority (s)
13842 "Find priority cookie and return priority."
13843 (save-match-data
13844 (if (functionp org-get-priority-function)
13845 (funcall org-get-priority-function)
13846 (if (not (string-match org-priority-regexp s))
13847 (* 1000 (- org-lowest-priority org-default-priority))
13848 (* 1000 (- org-lowest-priority
13849 (string-to-char (match-string 2 s))))))))
13851 ;;;; Tags
13853 (defvar org-agenda-archives-mode)
13854 (defvar org-map-continue-from nil
13855 "Position from where mapping should continue.
13856 Can be set by the action argument to `org-scan-tags' and `org-map-entries'.")
13858 (defvar org-scanner-tags nil
13859 "The current tag list while the tags scanner is running.")
13860 (defvar org-trust-scanner-tags nil
13861 "Should `org-get-tags-at' use the tags for the scanner.
13862 This is for internal dynamical scoping only.
13863 When this is non-nil, the function `org-get-tags-at' will return the value
13864 of `org-scanner-tags' instead of building the list by itself. This
13865 can lead to large speed-ups when the tags scanner is used in a file with
13866 many entries, and when the list of tags is retrieved, for example to
13867 obtain a list of properties. Building the tags list for each entry in such
13868 a file becomes an N^2 operation - but with this variable set, it scales
13869 as N.")
13871 (defun org-scan-tags (action matcher todo-only &optional start-level)
13872 "Scan headline tags with inheritance and produce output ACTION.
13874 ACTION can be `sparse-tree' to produce a sparse tree in the current buffer,
13875 or `agenda' to produce an entry list for an agenda view. It can also be
13876 a Lisp form or a function that should be called at each matched headline, in
13877 this case the return value is a list of all return values from these calls.
13879 MATCHER is a Lisp form to be evaluated, testing if a given set of tags
13880 qualifies a headline for inclusion. When TODO-ONLY is non-nil,
13881 only lines with a not-done TODO keyword are included in the output.
13882 This should be the same variable that was scoped into
13883 and set by `org-make-tags-matcher' when it constructed MATCHER.
13885 START-LEVEL can be a string with asterisks, reducing the scope to
13886 headlines matching this string."
13887 (require 'org-agenda)
13888 (let* ((re (concat "^"
13889 (if start-level
13890 ;; Get the correct level to match
13891 (concat "\\*\\{" (number-to-string start-level) "\\} ")
13892 org-outline-regexp)
13893 " *\\(\\<\\("
13894 (mapconcat 'regexp-quote org-todo-keywords-1 "\\|")
13895 (org-re "\\)\\>\\)? *\\(.*?\\)\\(:[[:alnum:]_@#%:]+:\\)?[ \t]*$")))
13896 (props (list 'face 'default
13897 'done-face 'org-agenda-done
13898 'undone-face 'default
13899 'mouse-face 'highlight
13900 'org-not-done-regexp org-not-done-regexp
13901 'org-todo-regexp org-todo-regexp
13902 'org-complex-heading-regexp org-complex-heading-regexp
13903 'help-echo
13904 (format "mouse-2 or RET jump to org file %s"
13905 (abbreviate-file-name
13906 (or (buffer-file-name (buffer-base-buffer))
13907 (buffer-name (buffer-base-buffer)))))))
13908 (org-map-continue-from nil)
13909 lspos tags tags-list
13910 (tags-alist (list (cons 0 org-file-tags)))
13911 (llast 0) rtn rtn1 level category i txt
13912 todo marker entry priority)
13913 (when (not (or (member action '(agenda sparse-tree)) (functionp action)))
13914 (setq action (list 'lambda nil action)))
13915 (save-excursion
13916 (goto-char (point-min))
13917 (when (eq action 'sparse-tree)
13918 (org-overview)
13919 (org-remove-occur-highlights))
13920 (while (let (case-fold-search)
13921 (re-search-forward re nil t))
13922 (setq org-map-continue-from nil)
13923 (catch :skip
13924 (setq todo (if (match-end 1) (org-match-string-no-properties 2))
13925 tags (if (match-end 4) (org-match-string-no-properties 4)))
13926 (goto-char (setq lspos (match-beginning 0)))
13927 (setq level (org-reduced-level (org-outline-level))
13928 category (org-get-category))
13929 (setq i llast llast level)
13930 ;; remove tag lists from same and sublevels
13931 (while (>= i level)
13932 (when (setq entry (assoc i tags-alist))
13933 (setq tags-alist (delete entry tags-alist)))
13934 (setq i (1- i)))
13935 ;; add the next tags
13936 (when tags
13937 (setq tags (org-split-string tags ":")
13938 tags-alist
13939 (cons (cons level tags) tags-alist)))
13940 ;; compile tags for current headline
13941 (setq tags-list
13942 (if org-use-tag-inheritance
13943 (apply 'append (mapcar 'cdr (reverse tags-alist)))
13944 tags)
13945 org-scanner-tags tags-list)
13946 (when org-use-tag-inheritance
13947 (setcdr (car tags-alist)
13948 (mapcar (lambda (x)
13949 (setq x (copy-sequence x))
13950 (org-add-prop-inherited x))
13951 (cdar tags-alist))))
13952 (when (and tags org-use-tag-inheritance
13953 (or (not (eq t org-use-tag-inheritance))
13954 org-tags-exclude-from-inheritance))
13955 ;; selective inheritance, remove uninherited ones
13956 (setcdr (car tags-alist)
13957 (org-remove-uninherited-tags (cdar tags-alist))))
13958 (when (and
13960 ;; eval matcher only when the todo condition is OK
13961 (and (or (not todo-only) (member todo org-not-done-keywords))
13962 (let ((case-fold-search t) (org-trust-scanner-tags t))
13963 (eval matcher)))
13965 ;; Call the skipper, but return t if it does not skip,
13966 ;; so that the `and' form continues evaluating
13967 (progn
13968 (unless (eq action 'sparse-tree) (org-agenda-skip))
13971 ;; Check if timestamps are deselecting this entry
13972 (or (not todo-only)
13973 (and (member todo org-not-done-keywords)
13974 (or (not org-agenda-tags-todo-honor-ignore-options)
13975 (not (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item))))))
13977 ;; select this headline
13978 (cond
13979 ((eq action 'sparse-tree)
13980 (and org-highlight-sparse-tree-matches
13981 (org-get-heading) (match-end 0)
13982 (org-highlight-new-match
13983 (match-beginning 1) (match-end 1)))
13984 (org-show-context 'tags-tree))
13985 ((eq action 'agenda)
13986 (setq txt (org-agenda-format-item
13988 (concat
13989 (if (eq org-tags-match-list-sublevels 'indented)
13990 (make-string (1- level) ?.) "")
13991 (org-get-heading))
13992 level category
13993 tags-list)
13994 priority (org-get-priority txt))
13995 (goto-char lspos)
13996 (setq marker (org-agenda-new-marker))
13997 (org-add-props txt props
13998 'org-marker marker 'org-hd-marker marker 'org-category category
13999 'todo-state todo
14000 'priority priority 'type "tagsmatch")
14001 (push txt rtn))
14002 ((functionp action)
14003 (setq org-map-continue-from nil)
14004 (save-excursion
14005 (setq rtn1 (funcall action))
14006 (push rtn1 rtn)))
14007 (t (user-error "Invalid action")))
14009 ;; if we are to skip sublevels, jump to end of subtree
14010 (unless org-tags-match-list-sublevels
14011 (org-end-of-subtree t)
14012 (backward-char 1))))
14013 ;; Get the correct position from where to continue
14014 (if org-map-continue-from
14015 (goto-char org-map-continue-from)
14016 (and (= (point) lspos) (end-of-line 1)))))
14017 (when (and (eq action 'sparse-tree)
14018 (not org-sparse-tree-open-archived-trees))
14019 (org-hide-archived-subtrees (point-min) (point-max)))
14020 (nreverse rtn)))
14022 (defun org-remove-uninherited-tags (tags)
14023 "Remove all tags that are not inherited from the list TAGS."
14024 (cond
14025 ((eq org-use-tag-inheritance t)
14026 (if org-tags-exclude-from-inheritance
14027 (org-delete-all org-tags-exclude-from-inheritance tags)
14028 tags))
14029 ((not org-use-tag-inheritance) nil)
14030 ((stringp org-use-tag-inheritance)
14031 (delq nil (mapcar
14032 (lambda (x)
14033 (if (and (string-match org-use-tag-inheritance x)
14034 (not (member x org-tags-exclude-from-inheritance)))
14035 x nil))
14036 tags)))
14037 ((listp org-use-tag-inheritance)
14038 (delq nil (mapcar
14039 (lambda (x)
14040 (if (member x org-use-tag-inheritance) x nil))
14041 tags)))))
14043 (defun org-match-sparse-tree (&optional todo-only match)
14044 "Create a sparse tree according to tags string MATCH.
14045 MATCH can contain positive and negative selection of tags, like
14046 \"+WORK+URGENT-WITHBOSS\".
14047 If optional argument TODO-ONLY is non-nil, only select lines that are
14048 also TODO lines."
14049 (interactive "P")
14050 (org-agenda-prepare-buffers (list (current-buffer)))
14051 (org-scan-tags 'sparse-tree (cdr (org-make-tags-matcher match)) todo-only))
14053 (defalias 'org-tags-sparse-tree 'org-match-sparse-tree)
14055 (defvar org-cached-props nil)
14056 (defun org-cached-entry-get (pom property)
14057 (if (or (eq t org-use-property-inheritance)
14058 (and (stringp org-use-property-inheritance)
14059 (string-match org-use-property-inheritance property))
14060 (and (listp org-use-property-inheritance)
14061 (member property org-use-property-inheritance)))
14062 ;; Caching is not possible, check it directly
14063 (org-entry-get pom property 'inherit)
14064 ;; Get all properties, so that we can do complicated checks easily
14065 (cdr (assoc property (or org-cached-props
14066 (setq org-cached-props
14067 (org-entry-properties pom)))))))
14069 (defun org-global-tags-completion-table (&optional files)
14070 "Return the list of all tags in all agenda buffer/files.
14071 Optional FILES argument is a list of files which can be used
14072 instead of the agenda files."
14073 (save-excursion
14074 (org-uniquify
14075 (delq nil
14076 (apply 'append
14077 (mapcar
14078 (lambda (file)
14079 (set-buffer (find-file-noselect file))
14080 (append (org-get-buffer-tags)
14081 (mapcar (lambda (x) (if (stringp (car-safe x))
14082 (list (car-safe x)) nil))
14083 org-tag-alist)))
14084 (if (and files (car files))
14085 files
14086 (org-agenda-files))))))))
14088 (defun org-make-tags-matcher (match)
14089 "Create the TAGS/TODO matcher form for the selection string MATCH.
14091 The variable `todo-only' is scoped dynamically into this function.
14092 It will be set to t if the matcher restricts matching to TODO entries,
14093 otherwise will not be touched.
14095 Returns a cons of the selection string MATCH and the constructed
14096 lisp form implementing the matcher. The matcher is to be evaluated
14097 at an Org entry, with point on the headline, and returns t if the
14098 entry matches the selection string MATCH. The returned lisp form
14099 references two variables with information about the entry, which
14100 must be bound around the form's evaluation: todo, the TODO keyword
14101 at the entry (or nil of none); and tags-list, the list of all tags
14102 at the entry including inherited ones. Additionally, the category
14103 of the entry (if any) must be specified as the text property
14104 'org-category on the headline.
14106 See also `org-scan-tags'.
14108 (declare (special todo-only))
14109 (unless (boundp 'todo-only)
14110 (error "`org-make-tags-matcher' expects todo-only to be scoped in"))
14111 (unless match
14112 ;; Get a new match request, with completion against the global
14113 ;; tags table and the local tags in current buffer
14114 (let ((org-last-tags-completion-table
14115 (org-uniquify
14116 (delq nil (append (org-get-buffer-tags)
14117 (org-global-tags-completion-table))))))
14118 (setq match (org-completing-read-no-i
14119 "Match: " 'org-tags-completion-function nil nil nil
14120 'org-tags-history))))
14122 ;; Parse the string and create a lisp form
14123 (let ((match0 match)
14124 (re (org-re "^&?\\([-+:]\\)?\\({[^}]+}\\|LEVEL\\([<=>]\\{1,2\\}\\)\\([0-9]+\\)\\|\\(\\(?:[[:alnum:]_]+\\(?:\\\\-\\)*\\)+\\)\\([<>=]\\{1,2\\}\\)\\({[^}]+}\\|\"[^\"]*\"\\|-?[.0-9]+\\(?:[eE][-+]?[0-9]+\\)?\\)\\|[[:alnum:]_@#%]+\\)"))
14125 minus tag mm
14126 tagsmatch todomatch tagsmatcher todomatcher kwd matcher
14127 orterms term orlist re-p str-p level-p level-op time-p
14128 prop-p pn pv po gv rest (start 0) (ss 0))
14129 ;; Expand group tags
14130 (setq match (org-tags-expand match))
14132 ;; Check if there is a TODO part of this match, which would be the
14133 ;; part after a "/". TO make sure that this slash is not part of
14134 ;; a property value to be matched against, we also check that there
14135 ;; is no " after that slash.
14136 ;; First, find the last slash
14137 (while (string-match "/+" match ss)
14138 (setq start (match-beginning 0) ss (match-end 0)))
14139 (if (and (string-match "/+" match start)
14140 (not (save-match-data (string-match "\"" match start))))
14141 ;; match contains also a todo-matching request
14142 (progn
14143 (setq tagsmatch (substring match 0 (match-beginning 0))
14144 todomatch (substring match (match-end 0)))
14145 (if (string-match "^!" todomatch)
14146 (setq todo-only t todomatch (substring todomatch 1)))
14147 (if (string-match "^\\s-*$" todomatch)
14148 (setq todomatch nil)))
14149 ;; only matching tags
14150 (setq tagsmatch match todomatch nil))
14152 ;; Make the tags matcher
14153 (if (or (not tagsmatch) (not (string-match "\\S-" tagsmatch)))
14154 (setq tagsmatcher t)
14155 (setq orterms (org-split-string tagsmatch "|") orlist nil)
14156 (while (setq term (pop orterms))
14157 (while (and (equal (substring term -1) "\\") orterms)
14158 (setq term (concat term "|" (pop orterms)))) ; repair bad split
14159 (while (string-match re term)
14160 (setq rest (substring term (match-end 0))
14161 minus (and (match-end 1)
14162 (equal (match-string 1 term) "-"))
14163 tag (save-match-data (replace-regexp-in-string
14164 "\\\\-" "-"
14165 (match-string 2 term)))
14166 re-p (equal (string-to-char tag) ?{)
14167 level-p (match-end 4)
14168 prop-p (match-end 5)
14169 mm (cond
14170 (re-p `(org-match-any-p ,(substring tag 1 -1) tags-list))
14171 (level-p
14172 (setq level-op (org-op-to-function (match-string 3 term)))
14173 `(,level-op level ,(string-to-number
14174 (match-string 4 term))))
14175 (prop-p
14176 (setq pn (match-string 5 term)
14177 po (match-string 6 term)
14178 pv (match-string 7 term)
14179 re-p (equal (string-to-char pv) ?{)
14180 str-p (equal (string-to-char pv) ?\")
14181 time-p (save-match-data
14182 (string-match "^\"[[<].*[]>]\"$" pv))
14183 pv (if (or re-p str-p) (substring pv 1 -1) pv))
14184 (if time-p (setq pv (org-matcher-time pv)))
14185 (setq po (org-op-to-function po (if time-p 'time str-p)))
14186 (cond
14187 ((equal pn "CATEGORY")
14188 (setq gv '(get-text-property (point) 'org-category)))
14189 ((equal pn "TODO")
14190 (setq gv 'todo))
14192 (setq gv `(org-cached-entry-get nil ,pn))))
14193 (if re-p
14194 (if (eq po 'org<>)
14195 `(not (string-match ,pv (or ,gv "")))
14196 `(string-match ,pv (or ,gv "")))
14197 (if str-p
14198 `(,po (or ,gv "") ,pv)
14199 `(,po (string-to-number (or ,gv ""))
14200 ,(string-to-number pv) ))))
14201 (t `(member ,tag tags-list)))
14202 mm (if minus (list 'not mm) mm)
14203 term rest)
14204 (push mm tagsmatcher))
14205 (push (if (> (length tagsmatcher) 1)
14206 (cons 'and tagsmatcher)
14207 (car tagsmatcher))
14208 orlist)
14209 (setq tagsmatcher nil))
14210 (setq tagsmatcher (if (> (length orlist) 1) (cons 'or orlist) (car orlist)))
14211 (setq tagsmatcher
14212 (list 'progn '(setq org-cached-props nil) tagsmatcher)))
14213 ;; Make the todo matcher
14214 (if (or (not todomatch) (not (string-match "\\S-" todomatch)))
14215 (setq todomatcher t)
14216 (setq orterms (org-split-string todomatch "|") orlist nil)
14217 (while (setq term (pop orterms))
14218 (while (string-match re term)
14219 (setq minus (and (match-end 1)
14220 (equal (match-string 1 term) "-"))
14221 kwd (match-string 2 term)
14222 re-p (equal (string-to-char kwd) ?{)
14223 term (substring term (match-end 0))
14224 mm (if re-p
14225 `(string-match ,(substring kwd 1 -1) todo)
14226 (list 'equal 'todo kwd))
14227 mm (if minus (list 'not mm) mm))
14228 (push mm todomatcher))
14229 (push (if (> (length todomatcher) 1)
14230 (cons 'and todomatcher)
14231 (car todomatcher))
14232 orlist)
14233 (setq todomatcher nil))
14234 (setq todomatcher (if (> (length orlist) 1)
14235 (cons 'or orlist) (car orlist))))
14237 ;; Return the string and lisp forms of the matcher
14238 (setq matcher (if todomatcher
14239 (list 'and tagsmatcher todomatcher)
14240 tagsmatcher))
14241 (when todo-only
14242 (setq matcher (list 'and '(member todo org-not-done-keywords)
14243 matcher)))
14244 (cons match0 matcher)))
14246 (defun org-tags-expand (match &optional single-as-list downcased)
14247 "Expand group tags in MATCH.
14249 This replaces every group tag in MATCH with a regexp tag search.
14250 For example, a group tag \"Work\" defined as { Work : Lab Conf }
14251 will be replaced like this:
14253 Work => {\\(?:Work\\|Lab\\|Conf\\)}
14254 +Work => +{\\(?:Work\\|Lab\\|Conf\\)}
14255 -Work => -{\\(?:Work\\|Lab\\|Conf\\)}
14257 Replacing by a regexp preserves the structure of the match.
14258 E.g., this expansion
14260 Work|Home => {\\(?:Work\\|Lab\\|Conf\\}|Home
14262 will match anything tagged with \"Lab\" and \"Home\", or tagged
14263 with \"Conf\" and \"Home\" or tagged with \"Work\" and \"home\".
14265 When the optional argument SINGLE-AS-LIST is non-nil, MATCH is
14266 assumed to be a single group tag, and the function will return
14267 the list of tags in this group.
14269 When DOWNCASE is non-nil, expand downcased TAGS."
14270 (if org-group-tags
14271 (let* ((case-fold-search t)
14272 (stable org-mode-syntax-table)
14273 (tal (or org-tag-groups-alist-for-agenda
14274 org-tag-groups-alist))
14275 (tal (if downcased
14276 (mapcar (lambda(tg) (mapcar 'downcase tg)) tal) tal))
14277 (tml (mapcar 'car tal))
14278 (rtnmatch match) rpl)
14279 ;; @ and _ are allowed as word-components in tags
14280 (modify-syntax-entry ?@ "w" stable)
14281 (modify-syntax-entry ?_ "w" stable)
14282 (while (and tml
14283 (with-syntax-table stable
14284 (string-match
14285 (concat "\\(?1:[+-]?\\)\\(?2:\\<"
14286 (regexp-opt tml) "\\>\\)") rtnmatch)))
14287 (let* ((dir (match-string 1 rtnmatch))
14288 (tag (match-string 2 rtnmatch))
14289 (tag (if downcased (downcase tag) tag)))
14290 (setq tml (delete tag tml))
14291 (when (not (get-text-property 0 'grouptag (match-string 2 rtnmatch)))
14292 (setq rpl (append (org-uniquify rpl) (assoc tag tal)))
14293 (setq rpl (concat dir "{\\<" (regexp-opt rpl) "\\>}"))
14294 (if (stringp rpl) (org-add-props rpl '(grouptag t)))
14295 (setq rtnmatch (replace-match rpl t t rtnmatch)))))
14296 (if single-as-list
14297 (or (reverse rpl) (list rtnmatch))
14298 rtnmatch))
14299 (if single-as-list (list (if downcased (downcase match) match))
14300 match)))
14302 (defun org-op-to-function (op &optional stringp)
14303 "Turn an operator into the appropriate function."
14304 (setq op
14305 (cond
14306 ((equal op "<" ) '(< string< org-time<))
14307 ((equal op ">" ) '(> org-string> org-time>))
14308 ((member op '("<=" "=<")) '(<= org-string<= org-time<=))
14309 ((member op '(">=" "=>")) '(>= org-string>= org-time>=))
14310 ((member op '("=" "==")) '(= string= org-time=))
14311 ((member op '("<>" "!=")) '(org<> org-string<> org-time<>))))
14312 (nth (if (eq stringp 'time) 2 (if stringp 1 0)) op))
14314 (defun org<> (a b) (not (= a b)))
14315 (defun org-string<= (a b) (or (string= a b) (string< a b)))
14316 (defun org-string>= (a b) (not (string< a b)))
14317 (defun org-string> (a b) (and (not (string= a b)) (not (string< a b))))
14318 (defun org-string<> (a b) (not (string= a b)))
14319 (defun org-time= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (= a b)))
14320 (defun org-time< (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (< a b)))
14321 (defun org-time<= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (<= a b)))
14322 (defun org-time> (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (> a b)))
14323 (defun org-time>= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (>= a b)))
14324 (defun org-time<> (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (org<> a b)))
14325 (defun org-2ft (s)
14326 "Convert S to a floating point time.
14327 If S is already a number, just return it. If it is a string, parse
14328 it as a time string and apply `float-time' to it. If S is nil, just return 0."
14329 (cond
14330 ((numberp s) s)
14331 ((stringp s)
14332 (condition-case nil
14333 (float-time (apply 'encode-time (org-parse-time-string s)))
14334 (error 0.)))
14335 (t 0.)))
14337 (defun org-time-today ()
14338 "Time in seconds today at 0:00.
14339 Returns the float number of seconds since the beginning of the
14340 epoch to the beginning of today (00:00)."
14341 (float-time (apply 'encode-time
14342 (append '(0 0 0) (nthcdr 3 (decode-time))))))
14344 (defun org-matcher-time (s)
14345 "Interpret a time comparison value."
14346 (save-match-data
14347 (cond
14348 ((string= s "<now>") (float-time))
14349 ((string= s "<today>") (org-time-today))
14350 ((string= s "<tomorrow>") (+ 86400.0 (org-time-today)))
14351 ((string= s "<yesterday>") (- (org-time-today) 86400.0))
14352 ((string-match "^<\\([-+][0-9]+\\)\\([hdwmy]\\)>$" s)
14353 (+ (org-time-today)
14354 (* (string-to-number (match-string 1 s))
14355 (cdr (assoc (match-string 2 s)
14356 '(("d" . 86400.0) ("w" . 604800.0)
14357 ("m" . 2678400.0) ("y" . 31557600.0)))))))
14358 (t (org-2ft s)))))
14360 (defun org-match-any-p (re list)
14361 "Does re match any element of list?"
14362 (setq list (mapcar (lambda (x) (string-match re x)) list))
14363 (delq nil list))
14365 (defvar org-add-colon-after-tag-completion nil) ;; dynamically scoped param
14366 (defvar org-tags-overlay (make-overlay 1 1))
14367 (org-detach-overlay org-tags-overlay)
14369 (defun org-get-local-tags-at (&optional pos)
14370 "Get a list of tags defined in the current headline."
14371 (org-get-tags-at pos 'local))
14373 (defun org-get-local-tags ()
14374 "Get a list of tags defined in the current headline."
14375 (org-get-tags-at nil 'local))
14377 (defun org-get-tags-at (&optional pos local)
14378 "Get a list of all headline tags applicable at POS.
14379 POS defaults to point. If tags are inherited, the list contains
14380 the targets in the same sequence as the headlines appear, i.e.
14381 the tags of the current headline come last.
14382 When LOCAL is non-nil, only return tags from the current headline,
14383 ignore inherited ones."
14384 (interactive)
14385 (if (and org-trust-scanner-tags
14386 (or (not pos) (equal pos (point)))
14387 (not local))
14388 org-scanner-tags
14389 (let (tags ltags lastpos parent)
14390 (save-excursion
14391 (save-restriction
14392 (widen)
14393 (goto-char (or pos (point)))
14394 (save-match-data
14395 (catch 'done
14396 (condition-case nil
14397 (progn
14398 (org-back-to-heading t)
14399 (while (not (equal lastpos (point)))
14400 (setq lastpos (point))
14401 (when (looking-at
14402 (org-re "[^\r\n]+?:\\([[:alnum:]_@#%:]+\\):[ \t]*$"))
14403 (setq ltags (org-split-string
14404 (org-match-string-no-properties 1) ":"))
14405 (when parent
14406 (setq ltags (mapcar 'org-add-prop-inherited ltags)))
14407 (setq tags (append
14408 (if parent
14409 (org-remove-uninherited-tags ltags)
14410 ltags)
14411 tags)))
14412 (or org-use-tag-inheritance (throw 'done t))
14413 (if local (throw 'done t))
14414 (or (org-up-heading-safe) (error nil))
14415 (setq parent t)))
14416 (error nil)))))
14417 (if local
14418 tags
14419 (reverse (delete-dups
14420 (reverse (append
14421 (org-remove-uninherited-tags
14422 org-file-tags) tags)))))))))
14424 (defun org-add-prop-inherited (s)
14425 (add-text-properties 0 (length s) '(inherited t) s)
14428 (defun org-toggle-tag (tag &optional onoff)
14429 "Toggle the tag TAG for the current line.
14430 If ONOFF is `on' or `off', don't toggle but set to this state."
14431 (let (res current)
14432 (save-excursion
14433 (org-back-to-heading t)
14434 (if (re-search-forward (org-re "[ \t]:\\([[:alnum:]_@#%:]+\\):[ \t]*$")
14435 (point-at-eol) t)
14436 (progn
14437 (setq current (match-string 1))
14438 (replace-match ""))
14439 (setq current ""))
14440 (setq current (nreverse (org-split-string current ":")))
14441 (cond
14442 ((eq onoff 'on)
14443 (setq res t)
14444 (or (member tag current) (push tag current)))
14445 ((eq onoff 'off)
14446 (or (not (member tag current)) (setq current (delete tag current))))
14447 (t (if (member tag current)
14448 (setq current (delete tag current))
14449 (setq res t)
14450 (push tag current))))
14451 (end-of-line 1)
14452 (if current
14453 (progn
14454 (insert " :" (mapconcat 'identity (nreverse current) ":") ":")
14455 (org-set-tags nil t))
14456 (delete-horizontal-space))
14457 (run-hooks 'org-after-tags-change-hook))
14458 res))
14460 (defun org-align-tags-here (to-col)
14461 ;; Assumes that this is a headline
14462 "Align tags on the current headline to TO-COL."
14463 (let ((pos (point)) (col (current-column)) ncol tags-l p)
14464 (beginning-of-line 1)
14465 (if (and (looking-at (org-re ".*?\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
14466 (< pos (match-beginning 2)))
14467 (progn
14468 (setq tags-l (- (match-end 2) (match-beginning 2)))
14469 (goto-char (match-beginning 1))
14470 (insert " ")
14471 (delete-region (point) (1+ (match-beginning 2)))
14472 (setq ncol (max (current-column)
14473 (1+ col)
14474 (if (> to-col 0)
14475 to-col
14476 (- (abs to-col) tags-l))))
14477 (setq p (point))
14478 (insert (make-string (- ncol (current-column)) ?\ ))
14479 (setq ncol (current-column))
14480 (when indent-tabs-mode (tabify p (point-at-eol)))
14481 (org-move-to-column (min ncol col)))
14482 (goto-char pos))))
14484 (defun org-set-tags-command (&optional arg just-align)
14485 "Call the set-tags command for the current entry."
14486 (interactive "P")
14487 (if (or (org-at-heading-p) (and arg (org-before-first-heading-p)))
14488 (org-set-tags arg just-align)
14489 (save-excursion
14490 (unless (and (org-region-active-p)
14491 org-loop-over-headlines-in-active-region)
14492 (org-back-to-heading t))
14493 (org-set-tags arg just-align))))
14495 (defun org-set-tags-to (data)
14496 "Set the tags of the current entry to DATA, replacing the current tags.
14497 DATA may be a tags string like :aa:bb:cc:, or a list of tags.
14498 If DATA is nil or the empty string, any tags will be removed."
14499 (interactive "sTags: ")
14500 (setq data
14501 (cond
14502 ((eq data nil) "")
14503 ((equal data "") "")
14504 ((stringp data)
14505 (concat ":" (mapconcat 'identity (org-split-string data ":+") ":")
14506 ":"))
14507 ((listp data)
14508 (concat ":" (mapconcat 'identity data ":") ":"))))
14509 (when data
14510 (save-excursion
14511 (org-back-to-heading t)
14512 (when (looking-at org-complex-heading-regexp)
14513 (if (match-end 5)
14514 (progn
14515 (goto-char (match-beginning 5))
14516 (insert data)
14517 (delete-region (point) (point-at-eol))
14518 (org-set-tags nil 'align))
14519 (goto-char (point-at-eol))
14520 (insert " " data)
14521 (org-set-tags nil 'align)))
14522 (beginning-of-line 1)
14523 (if (looking-at ".*?\\([ \t]+\\)$")
14524 (delete-region (match-beginning 1) (match-end 1))))))
14526 (defun org-align-all-tags ()
14527 "Align the tags i all headings."
14528 (interactive)
14529 (save-excursion
14530 (or (ignore-errors (org-back-to-heading t))
14531 (outline-next-heading))
14532 (if (org-at-heading-p)
14533 (org-set-tags t)
14534 (message "No headings"))))
14536 (defvar org-indent-indentation-per-level)
14537 (defun org-set-tags (&optional arg just-align)
14538 "Set the tags for the current headline.
14539 With prefix ARG, realign all tags in headings in the current buffer.
14540 When JUST-ALIGN is non-nil, only align tags."
14541 (interactive "P")
14542 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
14543 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
14544 'region-start-level 'region))
14545 org-loop-over-headlines-in-active-region)
14546 (org-map-entries
14547 ;; We don't use ARG and JUST-ALIGN here because these args
14548 ;; are not useful when looping over headlines.
14549 `(org-set-tags)
14550 org-loop-over-headlines-in-active-region
14551 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
14552 (let* ((re org-outline-regexp-bol)
14553 (current (unless arg (org-get-tags-string)))
14554 (col (current-column))
14555 (org-setting-tags t)
14556 table current-tags inherited-tags ; computed below when needed
14557 tags p0 c0 c1 rpl di tc level)
14558 (if arg
14559 (save-excursion
14560 (goto-char (point-min))
14561 (let ((buffer-invisibility-spec (org-inhibit-invisibility)))
14562 (while (re-search-forward re nil t)
14563 (org-set-tags nil t)
14564 (end-of-line 1)))
14565 (message "All tags realigned to column %d" org-tags-column))
14566 (if just-align
14567 (setq tags current)
14568 ;; Get a new set of tags from the user
14569 (save-excursion
14570 (setq table (append org-tag-persistent-alist
14571 (or org-tag-alist (org-get-buffer-tags))
14572 (and
14573 org-complete-tags-always-offer-all-agenda-tags
14574 (org-global-tags-completion-table
14575 (org-agenda-files))))
14576 org-last-tags-completion-table table
14577 current-tags (org-split-string current ":")
14578 inherited-tags (nreverse
14579 (nthcdr (length current-tags)
14580 (nreverse (org-get-tags-at))))
14581 tags
14582 (if (or (eq t org-use-fast-tag-selection)
14583 (and org-use-fast-tag-selection
14584 (delq nil (mapcar 'cdr table))))
14585 (org-fast-tag-selection
14586 current-tags inherited-tags table
14587 (if org-fast-tag-selection-include-todo
14588 org-todo-key-alist))
14589 (let ((org-add-colon-after-tag-completion (< 1 (length table))))
14590 (org-trim
14591 (org-icompleting-read "Tags: "
14592 'org-tags-completion-function
14593 nil nil current 'org-tags-history))))))
14594 (while (string-match "[-+&]+" tags)
14595 ;; No boolean logic, just a list
14596 (setq tags (replace-match ":" t t tags))))
14598 (setq tags (replace-regexp-in-string "[,]" ":" tags))
14600 (if org-tags-sort-function
14601 (setq tags (mapconcat 'identity
14602 (sort (org-split-string
14603 tags (org-re "[^[:alnum:]_@#%]+"))
14604 org-tags-sort-function) ":")))
14606 (if (string-match "\\`[\t ]*\\'" tags)
14607 (setq tags "")
14608 (unless (string-match ":$" tags) (setq tags (concat tags ":")))
14609 (unless (string-match "^:" tags) (setq tags (concat ":" tags))))
14611 ;; Insert new tags at the correct column
14612 (beginning-of-line 1)
14613 (setq level (or (and (looking-at org-outline-regexp)
14614 (- (match-end 0) (point) 1))
14616 (cond
14617 ((and (equal current "") (equal tags "")))
14618 ((re-search-forward
14619 (concat "\\([ \t]*" (regexp-quote current) "\\)[ \t]*$")
14620 (point-at-eol) t)
14621 (if (equal tags "")
14622 (setq rpl "")
14623 (goto-char (match-beginning 0))
14624 (setq c0 (current-column)
14625 ;; compute offset for the case of org-indent-mode active
14626 di (if (org-bound-and-true-p org-indent-mode)
14627 (* (1- org-indent-indentation-per-level) (1- level))
14629 p0 (if (equal (char-before) ?*) (1+ (point)) (point))
14630 tc (+ org-tags-column (if (> org-tags-column 0) (- di) di))
14631 c1 (max (1+ c0) (if (> tc 0) tc (- (- tc) (length tags))))
14632 rpl (concat (make-string (max 0 (- c1 c0)) ?\ ) tags)))
14633 (replace-match rpl t t)
14634 (and (not (featurep 'xemacs)) c0 indent-tabs-mode (tabify p0 (point)))
14635 tags)
14636 (t (error "Tags alignment failed")))
14637 (org-move-to-column col)
14638 (unless just-align
14639 (run-hooks 'org-after-tags-change-hook))))))
14641 (defun org-change-tag-in-region (beg end tag off)
14642 "Add or remove TAG for each entry in the region.
14643 This works in the agenda, and also in an org-mode buffer."
14644 (interactive
14645 (list (region-beginning) (region-end)
14646 (let ((org-last-tags-completion-table
14647 (if (derived-mode-p 'org-mode)
14648 (org-uniquify
14649 (delq nil (append (org-get-buffer-tags)
14650 (org-global-tags-completion-table))))
14651 (org-global-tags-completion-table))))
14652 (org-icompleting-read
14653 "Tag: " 'org-tags-completion-function nil nil nil
14654 'org-tags-history))
14655 (progn
14656 (message "[s]et or [r]emove? ")
14657 (equal (read-char-exclusive) ?r))))
14658 (if (fboundp 'deactivate-mark) (deactivate-mark))
14659 (let ((agendap (equal major-mode 'org-agenda-mode))
14660 l1 l2 m buf pos newhead (cnt 0))
14661 (goto-char end)
14662 (setq l2 (1- (org-current-line)))
14663 (goto-char beg)
14664 (setq l1 (org-current-line))
14665 (loop for l from l1 to l2 do
14666 (org-goto-line l)
14667 (setq m (get-text-property (point) 'org-hd-marker))
14668 (when (or (and (derived-mode-p 'org-mode) (org-at-heading-p))
14669 (and agendap m))
14670 (setq buf (if agendap (marker-buffer m) (current-buffer))
14671 pos (if agendap m (point)))
14672 (with-current-buffer buf
14673 (save-excursion
14674 (save-restriction
14675 (goto-char pos)
14676 (setq cnt (1+ cnt))
14677 (org-toggle-tag tag (if off 'off 'on))
14678 (setq newhead (org-get-heading)))))
14679 (and agendap (org-agenda-change-all-lines newhead m))))
14680 (message "Tag :%s: %s in %d headings" tag (if off "removed" "set") cnt)))
14682 (defun org-tags-completion-function (string predicate &optional flag)
14683 (let (s1 s2 rtn (ctable org-last-tags-completion-table)
14684 (confirm (lambda (x) (stringp (car x)))))
14685 (if (string-match "^\\(.*[-+:&,|]\\)\\([^-+:&,|]*\\)$" string)
14686 (setq s1 (match-string 1 string)
14687 s2 (match-string 2 string))
14688 (setq s1 "" s2 string))
14689 (cond
14690 ((eq flag nil)
14691 ;; try completion
14692 (setq rtn (try-completion s2 ctable confirm))
14693 (if (stringp rtn)
14694 (setq rtn
14695 (concat s1 s2 (substring rtn (length s2))
14696 (if (and org-add-colon-after-tag-completion
14697 (assoc rtn ctable))
14698 ":" ""))))
14699 rtn)
14700 ((eq flag t)
14701 ;; all-completions
14702 (all-completions s2 ctable confirm))
14703 ((eq flag 'lambda)
14704 ;; exact match?
14705 (assoc s2 ctable)))))
14707 (defun org-fast-tag-insert (kwd tags face &optional end)
14708 "Insert KDW, and the TAGS, the latter with face FACE.
14709 Also insert END."
14710 (insert (format "%-12s" (concat kwd ":"))
14711 (org-add-props (mapconcat 'identity tags " ") nil 'face face)
14712 (or end "")))
14714 (defun org-fast-tag-show-exit (flag)
14715 (save-excursion
14716 (org-goto-line 3)
14717 (if (re-search-forward "[ \t]+Next change exits" (point-at-eol) t)
14718 (replace-match ""))
14719 (when flag
14720 (end-of-line 1)
14721 (org-move-to-column (- (window-width) 19) t)
14722 (insert (org-add-props " Next change exits" nil 'face 'org-warning)))))
14724 (defun org-set-current-tags-overlay (current prefix)
14725 "Add an overlay to CURRENT tag with PREFIX."
14726 (let ((s (concat ":" (mapconcat 'identity current ":") ":")))
14727 (if (featurep 'xemacs)
14728 (org-overlay-display org-tags-overlay (concat prefix s)
14729 'secondary-selection)
14730 (put-text-property 0 (length s) 'face '(secondary-selection org-tag) s)
14731 (org-overlay-display org-tags-overlay (concat prefix s)))))
14733 (defvar org-last-tag-selection-key nil)
14734 (defun org-fast-tag-selection (current inherited table &optional todo-table)
14735 "Fast tag selection with single keys.
14736 CURRENT is the current list of tags in the headline, INHERITED is the
14737 list of inherited tags, and TABLE is an alist of tags and corresponding keys,
14738 possibly with grouping information. TODO-TABLE is a similar table with
14739 TODO keywords, should these have keys assigned to them.
14740 If the keys are nil, a-z are automatically assigned.
14741 Returns the new tags string, or nil to not change the current settings."
14742 (let* ((fulltable (append table todo-table))
14743 (maxlen (apply 'max (mapcar
14744 (lambda (x)
14745 (if (stringp (car x)) (string-width (car x)) 0))
14746 fulltable)))
14747 (buf (current-buffer))
14748 (expert (eq org-fast-tag-selection-single-key 'expert))
14749 (buffer-tags nil)
14750 (fwidth (+ maxlen 3 1 3))
14751 (ncol (/ (- (window-width) 4) fwidth))
14752 (i-face 'org-done)
14753 (c-face 'org-todo)
14754 tg cnt e c char c1 c2 ntable tbl rtn
14755 ov-start ov-end ov-prefix
14756 (exit-after-next org-fast-tag-selection-single-key)
14757 (done-keywords org-done-keywords)
14758 groups ingroup)
14759 (save-excursion
14760 (beginning-of-line 1)
14761 (if (looking-at
14762 (org-re ".*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
14763 (setq ov-start (match-beginning 1)
14764 ov-end (match-end 1)
14765 ov-prefix "")
14766 (setq ov-start (1- (point-at-eol))
14767 ov-end (1+ ov-start))
14768 (skip-chars-forward "^\n\r")
14769 (setq ov-prefix
14770 (concat
14771 (buffer-substring (1- (point)) (point))
14772 (if (> (current-column) org-tags-column)
14774 (make-string (- org-tags-column (current-column)) ?\ ))))))
14775 (move-overlay org-tags-overlay ov-start ov-end)
14776 (save-window-excursion
14777 (if expert
14778 (set-buffer (get-buffer-create " *Org tags*"))
14779 (delete-other-windows)
14780 (set-window-buffer (split-window-vertically) (get-buffer-create " *Org tags*"))
14781 (org-switch-to-buffer-other-window " *Org tags*"))
14782 (erase-buffer)
14783 (org-set-local 'org-done-keywords done-keywords)
14784 (org-fast-tag-insert "Inherited" inherited i-face "\n")
14785 (org-fast-tag-insert "Current" current c-face "\n\n")
14786 (org-fast-tag-show-exit exit-after-next)
14787 (org-set-current-tags-overlay current ov-prefix)
14788 (setq tbl fulltable char ?a cnt 0)
14789 (while (setq e (pop tbl))
14790 (cond
14791 ((equal (car e) :startgroup)
14792 (push '() groups) (setq ingroup t)
14793 (when (not (= cnt 0))
14794 (setq cnt 0)
14795 (insert "\n"))
14796 (insert (if (cdr e) (format "%s: " (cdr e)) "") "{ "))
14797 ((equal (car e) :endgroup)
14798 (setq ingroup nil cnt 0)
14799 (insert "}" (if (cdr e) (format " (%s) " (cdr e)) "") "\n"))
14800 ((equal e '(:newline))
14801 (when (not (= cnt 0))
14802 (setq cnt 0)
14803 (insert "\n")
14804 (setq e (car tbl))
14805 (while (equal (car tbl) '(:newline))
14806 (insert "\n")
14807 (setq tbl (cdr tbl)))))
14808 ((equal e '(:grouptags)) nil)
14810 (setq tg (copy-sequence (car e)) c2 nil)
14811 (if (cdr e)
14812 (setq c (cdr e))
14813 ;; automatically assign a character.
14814 (setq c1 (string-to-char
14815 (downcase (substring
14816 tg (if (= (string-to-char tg) ?@) 1 0)))))
14817 (if (or (rassoc c1 ntable) (rassoc c1 table))
14818 (while (or (rassoc char ntable) (rassoc char table))
14819 (setq char (1+ char)))
14820 (setq c2 c1))
14821 (setq c (or c2 char)))
14822 (if ingroup (push tg (car groups)))
14823 (setq tg (org-add-props tg nil 'face
14824 (cond
14825 ((not (assoc tg table))
14826 (org-get-todo-face tg))
14827 ((member tg current) c-face)
14828 ((member tg inherited) i-face))))
14829 (if (equal (caar tbl) :grouptags)
14830 (org-add-props tg nil 'face 'org-tag-group))
14831 (if (and (= cnt 0) (not ingroup)) (insert " "))
14832 (insert "[" c "] " tg (make-string
14833 (- fwidth 4 (length tg)) ?\ ))
14834 (push (cons tg c) ntable)
14835 (when (= (setq cnt (1+ cnt)) ncol)
14836 (insert "\n")
14837 (if ingroup (insert " "))
14838 (setq cnt 0)))))
14839 (setq ntable (nreverse ntable))
14840 (insert "\n")
14841 (goto-char (point-min))
14842 (if (not expert) (org-fit-window-to-buffer))
14843 (setq rtn
14844 (catch 'exit
14845 (while t
14846 (message "[a-z..]:Toggle [SPC]:clear [RET]:accept [TAB]:free [!] %sgroups%s"
14847 (if (not groups) "no " "")
14848 (if expert " [C-c]:window" (if exit-after-next " [C-c]:single" " [C-c]:multi")))
14849 (setq c (let ((inhibit-quit t)) (read-char-exclusive)))
14850 (setq org-last-tag-selection-key c)
14851 (cond
14852 ((= c ?\r) (throw 'exit t))
14853 ((= c ?!)
14854 (setq groups (not groups))
14855 (goto-char (point-min))
14856 (while (re-search-forward "[{}]" nil t) (replace-match " ")))
14857 ((= c ?\C-c)
14858 (if (not expert)
14859 (org-fast-tag-show-exit
14860 (setq exit-after-next (not exit-after-next)))
14861 (setq expert nil)
14862 (delete-other-windows)
14863 (set-window-buffer (split-window-vertically) " *Org tags*")
14864 (org-switch-to-buffer-other-window " *Org tags*")
14865 (org-fit-window-to-buffer)))
14866 ((or (= c ?\C-g)
14867 (and (= c ?q) (not (rassoc c ntable))))
14868 (org-detach-overlay org-tags-overlay)
14869 (setq quit-flag t))
14870 ((= c ?\ )
14871 (setq current nil)
14872 (if exit-after-next (setq exit-after-next 'now)))
14873 ((= c ?\t)
14874 (condition-case nil
14875 (setq tg (org-icompleting-read
14876 "Tag: "
14877 (or buffer-tags
14878 (with-current-buffer buf
14879 (org-get-buffer-tags)))))
14880 (quit (setq tg "")))
14881 (when (string-match "\\S-" tg)
14882 (add-to-list 'buffer-tags (list tg))
14883 (if (member tg current)
14884 (setq current (delete tg current))
14885 (push tg current)))
14886 (if exit-after-next (setq exit-after-next 'now)))
14887 ((setq e (rassoc c todo-table) tg (car e))
14888 (with-current-buffer buf
14889 (save-excursion (org-todo tg)))
14890 (if exit-after-next (setq exit-after-next 'now)))
14891 ((setq e (rassoc c ntable) tg (car e))
14892 (if (member tg current)
14893 (setq current (delete tg current))
14894 (loop for g in groups do
14895 (if (member tg g)
14896 (mapc (lambda (x)
14897 (setq current (delete x current)))
14898 g)))
14899 (push tg current))
14900 (if exit-after-next (setq exit-after-next 'now))))
14902 ;; Create a sorted list
14903 (setq current
14904 (sort current
14905 (lambda (a b)
14906 (assoc b (cdr (memq (assoc a ntable) ntable))))))
14907 (if (eq exit-after-next 'now) (throw 'exit t))
14908 (goto-char (point-min))
14909 (beginning-of-line 2)
14910 (delete-region (point) (point-at-eol))
14911 (org-fast-tag-insert "Current" current c-face)
14912 (org-set-current-tags-overlay current ov-prefix)
14913 (while (re-search-forward
14914 (org-re "\\[.\\] \\([[:alnum:]_@#%]+\\)") nil t)
14915 (setq tg (match-string 1))
14916 (add-text-properties
14917 (match-beginning 1) (match-end 1)
14918 (list 'face
14919 (cond
14920 ((member tg current) c-face)
14921 ((member tg inherited) i-face)
14922 (t (get-text-property (match-beginning 1) 'face))))))
14923 (goto-char (point-min)))))
14924 (org-detach-overlay org-tags-overlay)
14925 (if rtn
14926 (mapconcat 'identity current ":")
14927 nil))))
14929 (defun org-get-tags-string ()
14930 "Get the TAGS string in the current headline."
14931 (unless (org-at-heading-p t)
14932 (user-error "Not on a heading"))
14933 (save-excursion
14934 (beginning-of-line 1)
14935 (if (looking-at (org-re ".*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
14936 (org-match-string-no-properties 1)
14937 "")))
14939 (defun org-get-tags ()
14940 "Get the list of tags specified in the current headline."
14941 (org-split-string (org-get-tags-string) ":"))
14943 (defun org-get-buffer-tags ()
14944 "Get a table of all tags used in the buffer, for completion."
14945 (let (tags)
14946 (save-excursion
14947 (goto-char (point-min))
14948 (while (re-search-forward
14949 (org-re "[ \t]:\\([[:alnum:]_@#%:]+\\):[ \t\r\n]") nil t)
14950 (when (equal (char-after (point-at-bol 0)) ?*)
14951 (mapc (lambda (x) (add-to-list 'tags x))
14952 (org-split-string (org-match-string-no-properties 1) ":")))))
14953 (mapc (lambda (s) (add-to-list 'tags s)) org-file-tags)
14954 (mapcar 'list tags)))
14956 ;;;; The mapping API
14958 (defun org-map-entries (func &optional match scope &rest skip)
14959 "Call FUNC at each headline selected by MATCH in SCOPE.
14961 FUNC is a function or a lisp form. The function will be called without
14962 arguments, with the cursor positioned at the beginning of the headline.
14963 The return values of all calls to the function will be collected and
14964 returned as a list.
14966 The call to FUNC will be wrapped into a save-excursion form, so FUNC
14967 does not need to preserve point. After evaluation, the cursor will be
14968 moved to the end of the line (presumably of the headline of the
14969 processed entry) and search continues from there. Under some
14970 circumstances, this may not produce the wanted results. For example,
14971 if you have removed (e.g. archived) the current (sub)tree it could
14972 mean that the next entry will be skipped entirely. In such cases, you
14973 can specify the position from where search should continue by making
14974 FUNC set the variable `org-map-continue-from' to the desired buffer
14975 position.
14977 MATCH is a tags/property/todo match as it is used in the agenda tags view.
14978 Only headlines that are matched by this query will be considered during
14979 the iteration. When MATCH is nil or t, all headlines will be
14980 visited by the iteration.
14982 SCOPE determines the scope of this command. It can be any of:
14984 nil The current buffer, respecting the restriction if any
14985 tree The subtree started with the entry at point
14986 region The entries within the active region, if any
14987 region-start-level
14988 The entries within the active region, but only those at
14989 the same level than the first one.
14990 file The current buffer, without restriction
14991 file-with-archives
14992 The current buffer, and any archives associated with it
14993 agenda All agenda files
14994 agenda-with-archives
14995 All agenda files with any archive files associated with them
14996 \(file1 file2 ...)
14997 If this is a list, all files in the list will be scanned
14999 The remaining args are treated as settings for the skipping facilities of
15000 the scanner. The following items can be given here:
15002 archive skip trees with the archive tag
15003 comment skip trees with the COMMENT keyword
15004 function or Emacs Lisp form:
15005 will be used as value for `org-agenda-skip-function', so
15006 whenever the function returns a position, FUNC will not be
15007 called for that entry and search will continue from the
15008 position returned
15010 If your function needs to retrieve the tags including inherited tags
15011 at the *current* entry, you can use the value of the variable
15012 `org-scanner-tags' which will be much faster than getting the value
15013 with `org-get-tags-at'. If your function gets properties with
15014 `org-entry-properties' at the *current* entry, bind `org-trust-scanner-tags'
15015 to t around the call to `org-entry-properties' to get the same speedup.
15016 Note that if your function moves around to retrieve tags and properties at
15017 a *different* entry, you cannot use these techniques."
15018 (unless (and (or (eq scope 'region) (eq scope 'region-start-level))
15019 (not (org-region-active-p)))
15020 (let* ((org-agenda-archives-mode nil) ; just to make sure
15021 (org-agenda-skip-archived-trees (memq 'archive skip))
15022 (org-agenda-skip-comment-trees (memq 'comment skip))
15023 (org-agenda-skip-function
15024 (car (org-delete-all '(comment archive) skip)))
15025 (org-tags-match-list-sublevels t)
15026 (start-level (eq scope 'region-start-level))
15027 matcher file res
15028 org-todo-keywords-for-agenda
15029 org-done-keywords-for-agenda
15030 org-todo-keyword-alist-for-agenda
15031 org-drawers-for-agenda
15032 org-tag-alist-for-agenda
15033 todo-only)
15035 (cond
15036 ((eq match t) (setq matcher t))
15037 ((eq match nil) (setq matcher t))
15038 (t (setq matcher (if match (cdr (org-make-tags-matcher match)) t))))
15040 (save-excursion
15041 (save-restriction
15042 (cond ((eq scope 'tree)
15043 (org-back-to-heading t)
15044 (org-narrow-to-subtree)
15045 (setq scope nil))
15046 ((and (or (eq scope 'region) (eq scope 'region-start-level))
15047 (org-region-active-p))
15048 ;; If needed, set start-level to a string like "2"
15049 (when start-level
15050 (save-excursion
15051 (goto-char (region-beginning))
15052 (unless (org-at-heading-p) (outline-next-heading))
15053 (setq start-level (org-current-level))))
15054 (narrow-to-region (region-beginning)
15055 (save-excursion
15056 (goto-char (region-end))
15057 (unless (and (bolp) (org-at-heading-p))
15058 (outline-next-heading))
15059 (point)))
15060 (setq scope nil)))
15062 (if (not scope)
15063 (progn
15064 (org-agenda-prepare-buffers
15065 (list (buffer-file-name (current-buffer))))
15066 (setq res (org-scan-tags func matcher todo-only start-level)))
15067 ;; Get the right scope
15068 (cond
15069 ((and scope (listp scope) (symbolp (car scope)))
15070 (setq scope (eval scope)))
15071 ((eq scope 'agenda)
15072 (setq scope (org-agenda-files t)))
15073 ((eq scope 'agenda-with-archives)
15074 (setq scope (org-agenda-files t))
15075 (setq scope (org-add-archive-files scope)))
15076 ((eq scope 'file)
15077 (setq scope (list (buffer-file-name))))
15078 ((eq scope 'file-with-archives)
15079 (setq scope (org-add-archive-files (list (buffer-file-name))))))
15080 (org-agenda-prepare-buffers scope)
15081 (while (setq file (pop scope))
15082 (with-current-buffer (org-find-base-buffer-visiting file)
15083 (save-excursion
15084 (save-restriction
15085 (widen)
15086 (goto-char (point-min))
15087 (setq res (append res (org-scan-tags func matcher todo-only))))))))))
15088 res)))
15090 ;;;; Properties
15092 ;;; Setting and retrieving properties
15094 (defconst org-special-properties
15095 '("TODO" "TAGS" "ALLTAGS" "DEADLINE" "SCHEDULED" "CLOCK" "CLOSED" "PRIORITY"
15096 "TIMESTAMP" "TIMESTAMP_IA" "BLOCKED" "FILE" "CLOCKSUM" "CLOCKSUM_T")
15097 "The special properties valid in Org-mode.
15099 These are properties that are not defined in the property drawer,
15100 but in some other way.")
15102 (defconst org-default-properties
15103 '("ARCHIVE" "CATEGORY" "SUMMARY" "DESCRIPTION" "CUSTOM_ID"
15104 "LOCATION" "LOGGING" "COLUMNS" "VISIBILITY"
15105 "TABLE_EXPORT_FORMAT" "TABLE_EXPORT_FILE"
15106 "EXPORT_OPTIONS" "EXPORT_TEXT" "EXPORT_FILE_NAME"
15107 "EXPORT_TITLE" "EXPORT_AUTHOR" "EXPORT_DATE"
15108 "ORDERED" "NOBLOCKING" "COOKIE_DATA" "LOG_INTO_DRAWER" "REPEAT_TO_STATE"
15109 "CLOCK_MODELINE_TOTAL" "STYLE" "HTML_CONTAINER_CLASS")
15110 "Some properties that are used by Org-mode for various purposes.
15111 Being in this list makes sure that they are offered for completion.")
15113 (defconst org-property-start-re "^[ \t]*:PROPERTIES:[ \t]*$"
15114 "Regular expression matching the first line of a property drawer.")
15116 (defconst org-property-end-re "^[ \t]*:END:[ \t]*$"
15117 "Regular expression matching the last line of a property drawer.")
15119 (defconst org-clock-drawer-start-re "^[ \t]*:CLOCK:[ \t]*$"
15120 "Regular expression matching the first line of a property drawer.")
15122 (defconst org-clock-drawer-end-re "^[ \t]*:END:[ \t]*$"
15123 "Regular expression matching the first line of a property drawer.")
15125 (defconst org-property-drawer-re
15126 (concat "\\(" org-property-start-re "\\)[^\000]*\\("
15127 org-property-end-re "\\)\n?")
15128 "Matches an entire property drawer.")
15130 (defconst org-clock-drawer-re
15131 (concat "\\(" org-clock-drawer-start-re "\\)[^\000]*\\("
15132 org-property-end-re "\\)\n?")
15133 "Matches an entire clock drawer.")
15135 (defun org-property-action ()
15136 "Do an action on properties."
15137 (interactive)
15138 (let (c)
15139 (org-at-property-p)
15140 (message "Property Action: [s]et [d]elete [D]elete globally [c]ompute")
15141 (setq c (read-char-exclusive))
15142 (cond
15143 ((equal c ?s)
15144 (call-interactively 'org-set-property))
15145 ((equal c ?d)
15146 (call-interactively 'org-delete-property))
15147 ((equal c ?D)
15148 (call-interactively 'org-delete-property-globally))
15149 ((equal c ?c)
15150 (call-interactively 'org-compute-property-at-point))
15151 (t (user-error "No such property action %c" c)))))
15153 (defun org-inc-effort ()
15154 "Increment the value of the effort property in the current entry."
15155 (interactive)
15156 (org-set-effort nil t))
15158 (defvar org-clock-effort) ;; Defined in org-clock.el
15159 (defvar org-clock-current-task) ;; Defined in org-clock.el
15160 (defun org-set-effort (&optional value increment)
15161 "Set the effort property of the current entry.
15162 With numerical prefix arg, use the nth allowed value, 0 stands for the
15163 10th allowed value.
15165 When INCREMENT is non-nil, set the property to the next allowed value."
15166 (interactive "P")
15167 (if (equal value 0) (setq value 10))
15168 (let* ((completion-ignore-case t)
15169 (prop org-effort-property)
15170 (cur (org-entry-get nil prop))
15171 (allowed (org-property-get-allowed-values nil prop 'table))
15172 (existing (mapcar 'list (org-property-values prop)))
15173 (heading (nth 4 (org-heading-components)))
15175 (val (cond
15176 ((stringp value) value)
15177 ((and allowed (integerp value))
15178 (or (car (nth (1- value) allowed))
15179 (car (org-last allowed))))
15180 ((and allowed increment)
15181 (or (caadr (member (list cur) allowed))
15182 (user-error "Allowed effort values are not set")))
15183 (allowed
15184 (message "Select 1-9,0, [RET%s]: %s"
15185 (if cur (concat "=" cur) "")
15186 (mapconcat 'car allowed " "))
15187 (setq rpl (read-char-exclusive))
15188 (if (equal rpl ?\r)
15190 (setq rpl (- rpl ?0))
15191 (if (equal rpl 0) (setq rpl 10))
15192 (if (and (> rpl 0) (<= rpl (length allowed)))
15193 (car (nth (1- rpl) allowed))
15194 (org-completing-read "Effort: " allowed nil))))
15196 (let (org-completion-use-ido org-completion-use-iswitchb)
15197 (org-completing-read
15198 (concat "Effort " (if (and cur (string-match "\\S-" cur))
15199 (concat "[" cur "]") "")
15200 ": ")
15201 existing nil nil "" nil cur))))))
15202 (unless (equal (org-entry-get nil prop) val)
15203 (org-entry-put nil prop val))
15204 (save-excursion
15205 (org-back-to-heading t)
15206 (put-text-property (point-at-bol) (point-at-eol) 'org-effort val))
15207 (when (string= heading org-clock-current-task)
15208 (setq org-clock-effort (get-text-property (point-at-bol) 'org-effort))
15209 (org-clock-update-mode-line))
15210 (message "%s is now %s" prop val)))
15212 (defun org-at-property-p ()
15213 "Is cursor inside a property drawer?"
15214 (save-excursion
15215 (when (equal 'node-property (car (org-element-at-point)))
15216 (beginning-of-line 1)
15217 (looking-at org-property-re))))
15219 (defun org-get-property-block (&optional beg end force)
15220 "Return the (beg . end) range of the body of the property drawer.
15221 BEG and END are the beginning and end of the current subtree, or of
15222 the part before the first headline. If they are not given, they will
15223 be found. If the drawer does not exist and FORCE is non-nil, create
15224 the drawer."
15225 (catch 'exit
15226 (save-excursion
15227 (let* ((beg (or beg (and (org-before-first-heading-p) (point-min))
15228 (progn (org-back-to-heading t) (point))))
15229 (end (or end (and (not (outline-next-heading)) (point-max))
15230 (point))))
15231 (goto-char beg)
15232 (if (re-search-forward org-property-start-re end t)
15233 (setq beg (1+ (match-end 0)))
15234 (if force
15235 (save-excursion
15236 (org-insert-property-drawer)
15237 (setq end (progn (outline-next-heading) (point))))
15238 (throw 'exit nil))
15239 (goto-char beg)
15240 (if (re-search-forward org-property-start-re end t)
15241 (setq beg (1+ (match-end 0)))))
15242 (if (re-search-forward org-property-end-re end t)
15243 (setq end (match-beginning 0))
15244 (or force (throw 'exit nil))
15245 (goto-char beg)
15246 (setq end beg)
15247 (org-indent-line)
15248 (insert ":END:\n"))
15249 (cons beg end)))))
15251 (defun org-entry-properties (&optional pom which specific)
15252 "Get all properties of the entry at point-or-marker POM.
15253 This includes the TODO keyword, the tags, time strings for deadline,
15254 scheduled, and clocking, and any additional properties defined in the
15255 entry. The return value is an alist, keys may occur multiple times
15256 if the property key was used several times.
15257 POM may also be nil, in which case the current entry is used.
15258 If WHICH is nil or `all', get all properties. If WHICH is
15259 `special' or `standard', only get that subclass. If WHICH
15260 is a string only get exactly this property. SPECIFIC can be a string, the
15261 specific property we are interested in. Specifying it can speed
15262 things up because then unnecessary parsing is avoided."
15263 (setq which (or which 'all))
15264 (org-with-wide-buffer
15265 (org-with-point-at pom
15266 (let ((clockstr (substring org-clock-string 0 -1))
15267 (excluded '("TODO" "TAGS" "ALLTAGS" "PRIORITY" "BLOCKED"))
15268 (case-fold-search nil)
15269 beg end range props sum-props key key1 value string clocksum clocksumt)
15270 (when (and (derived-mode-p 'org-mode)
15271 (ignore-errors (org-back-to-heading t)))
15272 (setq beg (point))
15273 (setq sum-props (get-text-property (point) 'org-summaries))
15274 (setq clocksum (get-text-property (point) :org-clock-minutes)
15275 clocksumt (get-text-property (point) :org-clock-minutes-today))
15276 (outline-next-heading)
15277 (setq end (point))
15278 (when (memq which '(all special))
15279 ;; Get the special properties, like TODO and tags
15280 (goto-char beg)
15281 (when (and (or (not specific) (string= specific "TODO"))
15282 (looking-at org-todo-line-regexp) (match-end 2))
15283 (push (cons "TODO" (org-match-string-no-properties 2)) props))
15284 (when (and (or (not specific) (string= specific "PRIORITY"))
15285 (looking-at org-priority-regexp))
15286 (push (cons "PRIORITY" (org-match-string-no-properties 2)) props))
15287 (when (or (not specific) (string= specific "FILE"))
15288 (push (cons "FILE" buffer-file-name) props))
15289 (when (and (or (not specific) (string= specific "TAGS"))
15290 (setq value (org-get-tags-string))
15291 (string-match "\\S-" value))
15292 (push (cons "TAGS" value) props))
15293 (when (and (or (not specific) (string= specific "ALLTAGS"))
15294 (setq value (org-get-tags-at)))
15295 (push (cons "ALLTAGS" (concat ":" (mapconcat 'identity value ":")
15296 ":"))
15297 props))
15298 (when (or (not specific) (string= specific "BLOCKED"))
15299 (push (cons "BLOCKED" (if (org-entry-blocked-p) "t" "")) props))
15300 (when (or (not specific)
15301 (member specific
15302 '("SCHEDULED" "DEADLINE" "CLOCK" "CLOSED"
15303 "TIMESTAMP" "TIMESTAMP_IA")))
15304 (catch 'match
15305 (while (and (re-search-forward org-maybe-keyword-time-regexp end t)
15306 (not (text-property-any 0 (length (match-string 0))
15307 'face 'font-lock-comment-face
15308 (match-string 0))))
15309 (setq key (if (match-end 1)
15310 (substring (org-match-string-no-properties 1)
15311 0 -1))
15312 string (if (equal key clockstr)
15313 (org-trim
15314 (buffer-substring-no-properties
15315 (match-beginning 3) (goto-char
15316 (point-at-eol))))
15317 (substring (org-match-string-no-properties 3)
15318 1 -1)))
15319 ;; Get the correct property name from the key. This is
15320 ;; necessary if the user has configured time keywords.
15321 (setq key1 (concat key ":"))
15322 (cond
15323 ((not key)
15324 (setq key
15325 (if (= (char-after (match-beginning 3)) ?\[)
15326 "TIMESTAMP_IA" "TIMESTAMP")))
15327 ((equal key1 org-scheduled-string) (setq key "SCHEDULED"))
15328 ((equal key1 org-deadline-string) (setq key "DEADLINE"))
15329 ((equal key1 org-closed-string) (setq key "CLOSED"))
15330 ((equal key1 org-clock-string) (setq key "CLOCK")))
15331 (if (and specific (equal key specific) (not (equal key "CLOCK")))
15332 (progn
15333 (push (cons key string) props)
15334 ;; no need to search further if match is found
15335 (throw 'match t))
15336 (when (or (equal key "CLOCK") (not (assoc key props)))
15337 (push (cons key string) props)))))))
15339 (when (memq which '(all standard))
15340 ;; Get the standard properties, like :PROP: ...
15341 (setq range (org-get-property-block beg end))
15342 (when range
15343 (goto-char (car range))
15344 (while (re-search-forward org-property-re
15345 (cdr range) t)
15346 (setq key (org-match-string-no-properties 2)
15347 value (org-trim (or (org-match-string-no-properties 3) "")))
15348 (unless (member key excluded)
15349 (push (cons key (or value "")) props)))))
15350 (if clocksum
15351 (push (cons "CLOCKSUM"
15352 (org-columns-number-to-string (/ (float clocksum) 60.)
15353 'add_times))
15354 props))
15355 (if clocksumt
15356 (push (cons "CLOCKSUM_T"
15357 (org-columns-number-to-string (/ (float clocksumt) 60.)
15358 'add_times))
15359 props))
15360 (unless (assoc "CATEGORY" props)
15361 (push (cons "CATEGORY" (org-get-category)) props))
15362 (append sum-props (nreverse props)))))))
15364 (defun org-entry-get (pom property &optional inherit literal-nil)
15365 "Get value of PROPERTY for entry or content at point-or-marker POM.
15366 If INHERIT is non-nil and the entry does not have the property,
15367 then also check higher levels of the hierarchy.
15368 If INHERIT is the symbol `selective', use inheritance only if the setting
15369 in `org-use-property-inheritance' selects PROPERTY for inheritance.
15370 If the property is present but empty, the return value is the empty string.
15371 If the property is not present at all, nil is returned.
15373 Return the value as a string.
15375 If LITERAL-NIL is set, return the string value \"nil\" as a string,
15376 do not interpret it as the list atom nil. This is used for inheritance
15377 when a \"nil\" value can supersede a non-nil value higher up the hierarchy."
15378 (org-with-point-at pom
15379 (if (and inherit (if (eq inherit 'selective)
15380 (org-property-inherit-p property)
15382 (org-entry-get-with-inheritance property literal-nil)
15383 (if (member property org-special-properties)
15384 ;; We need a special property. Use `org-entry-properties'
15385 ;; to retrieve it, but specify the wanted property
15386 (cdr (assoc property (org-entry-properties nil 'special property)))
15387 (org-with-wide-buffer
15388 (let ((range (org-get-property-block)))
15389 (when (and range (not (eq (car range) (cdr range)))
15390 (save-excursion
15391 (goto-char (car range))
15392 (re-search-forward
15393 (concat (org-re-property property) "\\|"
15394 (org-re-property (concat property "+")))
15395 (cdr range) t)))
15396 (let* ((props
15397 (list (or (assoc property org-file-properties)
15398 (assoc property org-global-properties)
15399 (assoc property org-global-properties-fixed))))
15400 (ap (lambda (key)
15401 (when (re-search-forward
15402 (org-re-property key) (cdr range) t)
15403 (setq props
15404 (org-update-property-plist
15406 (if (match-end 3)
15407 (org-match-string-no-properties 3) "")
15408 props)))))
15409 val)
15410 (goto-char (car range))
15411 (funcall ap property)
15412 (goto-char (car range))
15413 (while (funcall ap (concat property "+")))
15414 (setq val (cdr (assoc property props)))
15415 (when val (if literal-nil val (org-not-nil val)))))))))))
15417 (defun org-property-or-variable-value (var &optional inherit)
15418 "Check if there is a property fixing the value of VAR.
15419 If yes, return this value. If not, return the current value of the variable."
15420 (let ((prop (org-entry-get nil (symbol-name var) inherit)))
15421 (if (and prop (stringp prop) (string-match "\\S-" prop))
15422 (read prop)
15423 (symbol-value var))))
15425 (defun org-entry-delete (pom property &optional delete-empty-drawer)
15426 "Delete the property PROPERTY from entry at point-or-marker POM.
15427 When optional argument DELETE-EMPTY-DRAWER is a string, it defines
15428 an empty drawer to delete."
15429 (org-with-point-at pom
15430 (if (member property org-special-properties)
15431 nil ; cannot delete these properties.
15432 (let ((range (org-get-property-block)))
15433 (if (and range
15434 (goto-char (car range))
15435 (re-search-forward
15436 (org-re-property property nil t)
15437 (cdr range) t))
15438 (progn
15439 (delete-region (match-beginning 0) (1+ (point-at-eol)))
15440 (and delete-empty-drawer
15441 (org-remove-empty-drawer-at
15442 delete-empty-drawer (car range)))
15444 nil)))))
15446 ;; Multi-values properties are properties that contain multiple values
15447 ;; These values are assumed to be single words, separated by whitespace.
15448 (defun org-entry-add-to-multivalued-property (pom property value)
15449 "Add VALUE to the words in the PROPERTY in entry at point-or-marker POM."
15450 (let* ((old (org-entry-get pom property))
15451 (values (and old (org-split-string old "[ \t]"))))
15452 (setq value (org-entry-protect-space value))
15453 (unless (member value values)
15454 (setq values (append values (list value)))
15455 (org-entry-put pom property
15456 (mapconcat 'identity values " ")))))
15458 (defun org-entry-remove-from-multivalued-property (pom property value)
15459 "Remove VALUE from words in the PROPERTY in entry at point-or-marker POM."
15460 (let* ((old (org-entry-get pom property))
15461 (values (and old (org-split-string old "[ \t]"))))
15462 (setq value (org-entry-protect-space value))
15463 (when (member value values)
15464 (setq values (delete value values))
15465 (org-entry-put pom property
15466 (mapconcat 'identity values " ")))))
15468 (defun org-entry-member-in-multivalued-property (pom property value)
15469 "Is VALUE one of the words in the PROPERTY in entry at point-or-marker POM?"
15470 (let* ((old (org-entry-get pom property))
15471 (values (and old (org-split-string old "[ \t]"))))
15472 (setq value (org-entry-protect-space value))
15473 (member value values)))
15475 (defun org-entry-get-multivalued-property (pom property)
15476 "Return a list of values in a multivalued property."
15477 (let* ((value (org-entry-get pom property))
15478 (values (and value (org-split-string value "[ \t]"))))
15479 (mapcar 'org-entry-restore-space values)))
15481 (defun org-entry-put-multivalued-property (pom property &rest values)
15482 "Set multivalued PROPERTY at point-or-marker POM to VALUES.
15483 VALUES should be a list of strings. Spaces will be protected."
15484 (org-entry-put pom property
15485 (mapconcat 'org-entry-protect-space values " "))
15486 (let* ((value (org-entry-get pom property))
15487 (values (and value (org-split-string value "[ \t]"))))
15488 (mapcar 'org-entry-restore-space values)))
15490 (defun org-entry-protect-space (s)
15491 "Protect spaces and newline in string S."
15492 (while (string-match " " s)
15493 (setq s (replace-match "%20" t t s)))
15494 (while (string-match "\n" s)
15495 (setq s (replace-match "%0A" t t s)))
15498 (defun org-entry-restore-space (s)
15499 "Restore spaces and newline in string S."
15500 (while (string-match "%20" s)
15501 (setq s (replace-match " " t t s)))
15502 (while (string-match "%0A" s)
15503 (setq s (replace-match "\n" t t s)))
15506 (defvar org-entry-property-inherited-from (make-marker)
15507 "Marker pointing to the entry from where a property was inherited.
15508 Each call to `org-entry-get-with-inheritance' will set this marker to the
15509 location of the entry where the inheritance search matched. If there was
15510 no match, the marker will point nowhere.
15511 Note that also `org-entry-get' calls this function, if the INHERIT flag
15512 is set.")
15514 (defun org-entry-get-with-inheritance (property &optional literal-nil)
15515 "Get PROPERTY of entry or content at point, search higher levels if needed.
15516 The search will stop at the first ancestor which has the property defined.
15517 If the value found is \"nil\", return nil to show that the property
15518 should be considered as undefined (this is the meaning of nil here).
15519 However, if LITERAL-NIL is set, return the string value \"nil\" instead."
15520 (move-marker org-entry-property-inherited-from nil)
15521 (let (tmp)
15522 (save-excursion
15523 (save-restriction
15524 (widen)
15525 (catch 'ex
15526 (while t
15527 (when (setq tmp (org-entry-get nil property nil literal-nil))
15528 (or (ignore-errors (org-back-to-heading t))
15529 (goto-char (point-min)))
15530 (move-marker org-entry-property-inherited-from (point))
15531 (throw 'ex tmp))
15532 (or (ignore-errors (org-up-heading-safe))
15533 (throw 'ex nil))))))
15534 (setq tmp (or tmp
15535 (cdr (assoc property org-file-properties))
15536 (cdr (assoc property org-global-properties))
15537 (cdr (assoc property org-global-properties-fixed))))
15538 (if literal-nil tmp (org-not-nil tmp))))
15540 (defvar org-property-changed-functions nil
15541 "Hook called when the value of a property has changed.
15542 Each hook function should accept two arguments, the name of the property
15543 and the new value.")
15545 (defun org-entry-put (pom property value)
15546 "Set PROPERTY to VALUE for entry at point-or-marker POM.
15547 If the value is `nil', it is converted to the empty string.
15548 If it is not a string, an error is raised."
15549 (cond ((null value) (setq value ""))
15550 ((not (stringp value))
15551 (error "Properties values should be strings.")))
15552 (org-with-point-at pom
15553 (org-back-to-heading t)
15554 (let ((beg (point)) (end (save-excursion (outline-next-heading) (point)))
15555 range)
15556 (cond
15557 ((equal property "TODO")
15558 (when (and (string-match "\\S-" value)
15559 (not (member value org-todo-keywords-1)))
15560 (user-error "\"%s\" is not a valid TODO state" value))
15561 (if (or (not value)
15562 (not (string-match "\\S-" value)))
15563 (setq value 'none))
15564 (org-todo value)
15565 (org-set-tags nil 'align))
15566 ((equal property "PRIORITY")
15567 (org-priority (if (and value (string-match "\\S-" value))
15568 (string-to-char value) ?\ ))
15569 (org-set-tags nil 'align))
15570 ((equal property "CLOCKSUM")
15571 (if (not (re-search-forward
15572 (concat org-clock-string ".*\\]--\\(\\[[^]]+\\]\\)") nil t))
15573 (error "Cannot find a clock log")
15574 (goto-char (- (match-end 1) 2))
15575 (cond
15576 ((eq value 'earlier) (org-timestamp-down))
15577 ((eq value 'later) (org-timestamp-up)))
15578 (org-clock-sum-current-item)))
15579 ((equal property "SCHEDULED")
15580 (if (re-search-forward org-scheduled-time-regexp end t)
15581 (cond
15582 ((eq value 'earlier) (org-timestamp-change -1 'day))
15583 ((eq value 'later) (org-timestamp-change 1 'day))
15584 (t (call-interactively 'org-schedule)))
15585 (call-interactively 'org-schedule)))
15586 ((equal property "DEADLINE")
15587 (if (re-search-forward org-deadline-time-regexp end t)
15588 (cond
15589 ((eq value 'earlier) (org-timestamp-change -1 'day))
15590 ((eq value 'later) (org-timestamp-change 1 'day))
15591 (t (call-interactively 'org-deadline)))
15592 (call-interactively 'org-deadline)))
15593 ((member property org-special-properties)
15594 (error "The %s property can not yet be set with `org-entry-put'"
15595 property))
15596 (t ; a non-special property
15597 (let ((buffer-invisibility-spec (org-inhibit-invisibility))) ; Emacs 21
15598 (setq range (org-get-property-block beg end 'force))
15599 (goto-char (car range))
15600 (if (re-search-forward
15601 (org-re-property property nil t) (cdr range) t)
15602 (progn
15603 (delete-region (match-beginning 0) (match-end 0))
15604 (goto-char (match-beginning 0)))
15605 (goto-char (cdr range))
15606 (insert "\n")
15607 (backward-char 1)
15608 (org-indent-line))
15609 (insert ":" property ":")
15610 (and value (insert " " value))
15611 (org-indent-line)))))
15612 (run-hook-with-args 'org-property-changed-functions property value)))
15614 (defun org-buffer-property-keys (&optional include-specials include-defaults include-columns)
15615 "Get all property keys in the current buffer.
15616 With INCLUDE-SPECIALS, also list the special properties that reflect things
15617 like tags and TODO state.
15618 With INCLUDE-DEFAULTS, also include properties that has special meaning
15619 internally: ARCHIVE, CATEGORY, SUMMARY, DESCRIPTION, LOCATION, and LOGGING
15620 and others.
15621 With INCLUDE-COLUMNS, also include property names given in COLUMN
15622 formats in the current buffer."
15623 (let (rtn range cfmt s p)
15624 (save-excursion
15625 (save-restriction
15626 (widen)
15627 (goto-char (point-min))
15628 (while (re-search-forward org-property-start-re nil t)
15629 (setq range (org-get-property-block))
15630 (goto-char (car range))
15631 (while (re-search-forward org-property-re
15632 (cdr range) t)
15633 (add-to-list 'rtn (org-match-string-no-properties 2)))
15634 (outline-next-heading))))
15636 (when include-specials
15637 (setq rtn (append org-special-properties rtn)))
15639 (when include-defaults
15640 (mapc (lambda (x) (add-to-list 'rtn x)) org-default-properties)
15641 (add-to-list 'rtn org-effort-property))
15643 (when include-columns
15644 (save-excursion
15645 (save-restriction
15646 (widen)
15647 (goto-char (point-min))
15648 (while (re-search-forward
15649 "^\\(#\\+COLUMNS:\\|[ \t]*:COLUMNS:\\)[ \t]*\\(.*\\)"
15650 nil t)
15651 (setq cfmt (match-string 2) s 0)
15652 (while (string-match (org-re "%[0-9]*\\([-[:alnum:]_]+\\)")
15653 cfmt s)
15654 (setq s (match-end 0)
15655 p (match-string 1 cfmt))
15656 (unless (or (equal p "ITEM")
15657 (member p org-special-properties))
15658 (add-to-list 'rtn (match-string 1 cfmt))))))))
15660 (sort rtn (lambda (a b) (string< (upcase a) (upcase b))))))
15662 (defun org-property-values (key)
15663 "Return a list of all values of property KEY in the current buffer."
15664 (save-excursion
15665 (save-restriction
15666 (widen)
15667 (goto-char (point-min))
15668 (let ((re (org-re-property key))
15669 values)
15670 (while (re-search-forward re nil t)
15671 (add-to-list 'values (org-trim (match-string 3))))
15672 (delete "" values)))))
15674 (defun org-insert-property-drawer ()
15675 "Insert a property drawer into the current entry."
15676 (org-back-to-heading t)
15677 (looking-at org-outline-regexp)
15678 (let ((indent (if org-adapt-indentation
15679 (- (match-end 0) (match-beginning 0))
15681 (beg (point))
15682 (re (concat "^[ \t]*" org-keyword-time-regexp))
15683 end hiddenp)
15684 (outline-next-heading)
15685 (setq end (point))
15686 (goto-char beg)
15687 (while (re-search-forward re end t))
15688 (setq hiddenp (outline-invisible-p))
15689 (end-of-line 1)
15690 (and (equal (char-after) ?\n) (forward-char 1))
15691 (while (looking-at "^[ \t]*\\(:CLOCK:\\|:LOGBOOK:\\|CLOCK:\\|:END:\\)")
15692 (if (member (match-string 1) '("CLOCK:" ":END:"))
15693 ;; just skip this line
15694 (beginning-of-line 2)
15695 ;; Drawer start, find the end
15696 (re-search-forward "^\\*+ \\|^[ \t]*:END:" nil t)
15697 (beginning-of-line 1)))
15698 (org-skip-over-state-notes)
15699 (skip-chars-backward " \t\n\r")
15700 (if (and (eq (char-before) ?*) (not (eq (char-after) ?\n)))
15701 (forward-char 1))
15702 (goto-char (point-at-eol))
15703 (let ((inhibit-read-only t)) (insert "\n:PROPERTIES:\n:END:"))
15704 (beginning-of-line 0)
15705 (org-indent-to-column indent)
15706 (beginning-of-line 2)
15707 (org-indent-to-column indent)
15708 (beginning-of-line 0)
15709 (if hiddenp
15710 (save-excursion
15711 (org-back-to-heading t)
15712 (hide-entry))
15713 (org-flag-drawer t))))
15715 (defun org-insert-drawer (&optional arg drawer)
15716 "Insert a drawer at point.
15718 Optional argument DRAWER, when non-nil, is a string representing
15719 drawer's name. Otherwise, the user is prompted for a name.
15721 If a region is active, insert the drawer around that region
15722 instead.
15724 Point is left between drawer's boundaries."
15725 (interactive "P")
15726 (let* ((logbook (if (stringp org-log-into-drawer) org-log-into-drawer
15727 "LOGBOOK"))
15728 ;; SYSTEM-DRAWERS is a list of drawer names that are used
15729 ;; internally by Org. They are meant to be inserted
15730 ;; automatically.
15731 (system-drawers `("CLOCK" ,logbook "PROPERTIES"))
15732 ;; Remove system drawers from list. Note: For some reason,
15733 ;; `org-completing-read' ignores the predicate while
15734 ;; `completing-read' handles it fine.
15735 (drawer (if arg "PROPERTIES"
15736 (or drawer
15737 (completing-read
15738 "Drawer: " org-drawers
15739 (lambda (d) (not (member d system-drawers))))))))
15740 (cond
15741 ;; With C-u, fall back on `org-insert-property-drawer'
15742 (arg (org-insert-property-drawer))
15743 ;; With an active region, insert a drawer at point.
15744 ((not (org-region-active-p))
15745 (progn
15746 (unless (bolp) (insert "\n"))
15747 (insert (format ":%s:\n\n:END:\n" drawer))
15748 (forward-line -2)))
15749 ;; Otherwise, insert the drawer at point
15751 (let ((rbeg (region-beginning))
15752 (rend (copy-marker (region-end))))
15753 (unwind-protect
15754 (progn
15755 (goto-char rbeg)
15756 (beginning-of-line)
15757 (when (save-excursion
15758 (re-search-forward org-outline-regexp-bol rend t))
15759 (user-error "Drawers cannot contain headlines"))
15760 ;; Position point at the beginning of the first
15761 ;; non-blank line in region. Insert drawer's opening
15762 ;; there, then indent it.
15763 (org-skip-whitespace)
15764 (beginning-of-line)
15765 (insert ":" drawer ":\n")
15766 (forward-line -1)
15767 (indent-for-tab-command)
15768 ;; Move point to the beginning of the first blank line
15769 ;; after the last non-blank line in region. Insert
15770 ;; drawer's closing, then indent it.
15771 (goto-char rend)
15772 (skip-chars-backward " \r\t\n")
15773 (insert "\n:END:")
15774 (deactivate-mark t)
15775 (indent-for-tab-command)
15776 (unless (eolp) (insert "\n")))
15777 ;; Clear marker, whatever the outcome of insertion is.
15778 (set-marker rend nil)))))))
15780 (defvar org-property-set-functions-alist nil
15781 "Property set function alist.
15782 Each entry should have the following format:
15784 (PROPERTY . READ-FUNCTION)
15786 The read function will be called with the same argument as
15787 `org-completing-read'.")
15789 (defun org-set-property-function (property)
15790 "Get the function that should be used to set PROPERTY.
15791 This is computed according to `org-property-set-functions-alist'."
15792 (or (cdr (assoc property org-property-set-functions-alist))
15793 'org-completing-read))
15795 (defun org-read-property-value (property)
15796 "Read PROPERTY value from user."
15797 (let* ((completion-ignore-case t)
15798 (allowed (org-property-get-allowed-values nil property 'table))
15799 (cur (org-entry-get nil property))
15800 (prompt (concat property " value"
15801 (if (and cur (string-match "\\S-" cur))
15802 (concat " [" cur "]") "") ": "))
15803 (set-function (org-set-property-function property))
15804 (val (if allowed
15805 (funcall set-function prompt allowed nil
15806 (not (get-text-property 0 'org-unrestricted
15807 (caar allowed))))
15808 (let (org-completion-use-ido org-completion-use-iswitchb)
15809 (funcall set-function prompt
15810 (mapcar 'list (org-property-values property))
15811 nil nil "" nil cur)))))
15812 (org-trim val)))
15814 (defvar org-last-set-property nil)
15815 (defvar org-last-set-property-value nil)
15816 (defun org-read-property-name ()
15817 "Read a property name."
15818 (let* ((completion-ignore-case t)
15819 (keys (org-buffer-property-keys nil t t))
15820 (default-prop (or (save-excursion
15821 (save-match-data
15822 (beginning-of-line)
15823 (and (looking-at "^\\s-*:\\([^:\n]+\\):")
15824 (null (string= (match-string 1) "END"))
15825 (match-string 1))))
15826 org-last-set-property))
15827 (property (org-icompleting-read
15828 (concat "Property"
15829 (if default-prop (concat " [" default-prop "]") "")
15830 ": ")
15831 (mapcar 'list keys)
15832 nil nil nil nil
15833 default-prop)))
15834 (if (member property keys)
15835 property
15836 (or (cdr (assoc (downcase property)
15837 (mapcar (lambda (x) (cons (downcase x) x))
15838 keys)))
15839 property))))
15841 (defun org-set-property-and-value (use-last)
15842 "Allow to set [PROPERTY]: [value] direction from prompt.
15843 When use-default, don't even ask, just use the last
15844 \"[PROPERTY]: [value]\" string from the history."
15845 (interactive "P")
15846 (let* ((completion-ignore-case t)
15847 (pv (or (and use-last org-last-set-property-value)
15848 (org-completing-read
15849 "Enter a \"[Property]: [value]\" pair: "
15850 nil nil nil nil nil
15851 org-last-set-property-value)))
15852 prop val)
15853 (when (string-match "^[ \t]*\\([^:]+\\):[ \t]*\\(.*\\)[ \t]*$" pv)
15854 (setq prop (match-string 1 pv)
15855 val (match-string 2 pv))
15856 (org-set-property prop val))))
15858 (defun org-set-property (property value)
15859 "In the current entry, set PROPERTY to VALUE.
15860 When called interactively, this will prompt for a property name, offering
15861 completion on existing and default properties. And then it will prompt
15862 for a value, offering completion either on allowed values (via an inherited
15863 xxx_ALL property) or on existing values in other instances of this property
15864 in the current file."
15865 (interactive (list nil nil))
15866 (let* ((property (or property (org-read-property-name)))
15867 (value (or value (org-read-property-value property)))
15868 (fn (cdr (assoc property org-properties-postprocess-alist))))
15869 (setq org-last-set-property property)
15870 (setq org-last-set-property-value (concat property ": " value))
15871 ;; Possibly postprocess the inserted value:
15872 (when fn (setq value (funcall fn value)))
15873 (unless (equal (org-entry-get nil property) value)
15874 (org-entry-put nil property value))))
15876 (defun org-delete-property (property &optional delete-empty-drawer)
15877 "In the current entry, delete PROPERTY.
15878 When optional argument DELETE-EMPTY-DRAWER is a string, it defines
15879 an empty drawer to delete."
15880 (interactive
15881 (let* ((completion-ignore-case t)
15882 (cat (org-entry-get (point) "CATEGORY"))
15883 (props0 (org-entry-properties nil 'standard))
15884 (props (if cat props0
15885 (delete `("CATEGORY" . ,(org-get-category)) props0)))
15886 (prop (if (< 1 (length props))
15887 (org-icompleting-read "Property: " props nil t)
15888 (caar props))))
15889 (list prop)))
15890 (if (not property)
15891 (message "No property to delete in this entry")
15892 (org-entry-delete nil property delete-empty-drawer)
15893 (message "Property \"%s\" deleted" property)))
15895 (defun org-delete-property-globally (property)
15896 "Remove PROPERTY globally, from all entries."
15897 (interactive
15898 (let* ((completion-ignore-case t)
15899 (prop (org-icompleting-read
15900 "Globally remove property: "
15901 (mapcar 'list (org-buffer-property-keys)))))
15902 (list prop)))
15903 (save-excursion
15904 (save-restriction
15905 (widen)
15906 (goto-char (point-min))
15907 (let ((cnt 0))
15908 (while (re-search-forward
15909 (org-re-property property)
15910 nil t)
15911 (setq cnt (1+ cnt))
15912 (delete-region (match-beginning 0) (1+ (point-at-eol))))
15913 (message "Property \"%s\" removed from %d entries" property cnt)))))
15915 (defvar org-columns-current-fmt-compiled) ; defined in org-colview.el
15917 (defun org-compute-property-at-point ()
15918 "Compute the property at point.
15919 This looks for an enclosing column format, extracts the operator and
15920 then applies it to the property in the column format's scope."
15921 (interactive)
15922 (unless (org-at-property-p)
15923 (user-error "Not at a property"))
15924 (let ((prop (org-match-string-no-properties 2)))
15925 (org-columns-get-format-and-top-level)
15926 (unless (nth 3 (assoc prop org-columns-current-fmt-compiled))
15927 (user-error "No operator defined for property %s" prop))
15928 (org-columns-compute prop)))
15930 (defvar org-property-allowed-value-functions nil
15931 "Hook for functions supplying allowed values for a specific property.
15932 The functions must take a single argument, the name of the property, and
15933 return a flat list of allowed values. If \":ETC\" is one of
15934 the values, this means that these values are intended as defaults for
15935 completion, but that other values should be allowed too.
15936 The functions must return nil if they are not responsible for this
15937 property.")
15939 (defun org-property-get-allowed-values (pom property &optional table)
15940 "Get allowed values for the property PROPERTY.
15941 When TABLE is non-nil, return an alist that can directly be used for
15942 completion."
15943 (let (vals)
15944 (cond
15945 ((equal property "TODO")
15946 (setq vals (org-with-point-at pom
15947 (append org-todo-keywords-1 '("")))))
15948 ((equal property "PRIORITY")
15949 (let ((n org-lowest-priority))
15950 (while (>= n org-highest-priority)
15951 (push (char-to-string n) vals)
15952 (setq n (1- n)))))
15953 ((member property org-special-properties))
15954 ((setq vals (run-hook-with-args-until-success
15955 'org-property-allowed-value-functions property)))
15957 (setq vals (org-entry-get pom (concat property "_ALL") 'inherit))
15958 (when (and vals (string-match "\\S-" vals))
15959 (setq vals (car (read-from-string (concat "(" vals ")"))))
15960 (setq vals (mapcar (lambda (x)
15961 (cond ((stringp x) x)
15962 ((numberp x) (number-to-string x))
15963 ((symbolp x) (symbol-name x))
15964 (t "???")))
15965 vals)))))
15966 (when (member ":ETC" vals)
15967 (setq vals (remove ":ETC" vals))
15968 (org-add-props (car vals) '(org-unrestricted t)))
15969 (if table (mapcar 'list vals) vals)))
15971 (defun org-property-previous-allowed-value (&optional previous)
15972 "Switch to the next allowed value for this property."
15973 (interactive)
15974 (org-property-next-allowed-value t))
15976 (defun org-property-next-allowed-value (&optional previous)
15977 "Switch to the next allowed value for this property."
15978 (interactive)
15979 (unless (org-at-property-p)
15980 (user-error "Not at a property"))
15981 (let* ((prop (car (save-match-data (org-split-string (match-string 1) ":"))))
15982 (key (match-string 2))
15983 (value (match-string 3))
15984 (allowed (or (org-property-get-allowed-values (point) key)
15985 (and (member value '("[ ]" "[-]" "[X]"))
15986 '("[ ]" "[X]"))))
15987 (heading (save-match-data (nth 4 (org-heading-components))))
15988 nval)
15989 (unless allowed
15990 (user-error "Allowed values for this property have not been defined"))
15991 (if previous (setq allowed (reverse allowed)))
15992 (if (member value allowed)
15993 (setq nval (car (cdr (member value allowed)))))
15994 (setq nval (or nval (car allowed)))
15995 (if (equal nval value)
15996 (user-error "Only one allowed value for this property"))
15997 (org-at-property-p)
15998 (replace-match (concat " :" key ": " nval) t t)
15999 (org-indent-line)
16000 (beginning-of-line 1)
16001 (skip-chars-forward " \t")
16002 (when (equal prop org-effort-property)
16003 (save-excursion
16004 (org-back-to-heading t)
16005 (put-text-property (point-at-bol) (point-at-eol) 'org-effort nval))
16006 (when (string= org-clock-current-task heading)
16007 (setq org-clock-effort nval)
16008 (org-clock-update-mode-line)))
16009 (run-hook-with-args 'org-property-changed-functions key nval)))
16011 (defun org-find-olp (path &optional this-buffer)
16012 "Return a marker pointing to the entry at outline path OLP.
16013 If anything goes wrong, throw an error.
16014 You can wrap this call to catch the error like this:
16016 (condition-case msg
16017 (org-mobile-locate-entry (match-string 4))
16018 (error (nth 1 msg)))
16020 The return value will then be either a string with the error message,
16021 or a marker if everything is OK.
16023 If THIS-BUFFER is set, the outline path does not contain a file,
16024 only headings."
16025 (let* ((file (if this-buffer buffer-file-name (pop path)))
16026 (buffer (if this-buffer (current-buffer) (find-file-noselect file)))
16027 (level 1)
16028 (lmin 1)
16029 (lmax 1)
16030 limit re end found pos heading cnt flevel)
16031 (unless buffer (error "File not found :%s" file))
16032 (with-current-buffer buffer
16033 (save-excursion
16034 (save-restriction
16035 (widen)
16036 (setq limit (point-max))
16037 (goto-char (point-min))
16038 (while (setq heading (pop path))
16039 (setq re (format org-complex-heading-regexp-format
16040 (regexp-quote heading)))
16041 (setq cnt 0 pos (point))
16042 (while (re-search-forward re end t)
16043 (setq level (- (match-end 1) (match-beginning 1)))
16044 (if (and (>= level lmin) (<= level lmax))
16045 (setq found (match-beginning 0) flevel level cnt (1+ cnt))))
16046 (when (= cnt 0) (error "Heading not found on level %d: %s"
16047 lmax heading))
16048 (when (> cnt 1) (error "Heading not unique on level %d: %s"
16049 lmax heading))
16050 (goto-char found)
16051 (setq lmin (1+ flevel) lmax (+ lmin (if org-odd-levels-only 1 0)))
16052 (setq end (save-excursion (org-end-of-subtree t t))))
16053 (when (org-at-heading-p)
16054 (point-marker)))))))
16056 (defun org-find-exact-headline-in-buffer (heading &optional buffer pos-only)
16057 "Find node HEADING in BUFFER.
16058 Return a marker to the heading if it was found, or nil if not.
16059 If POS-ONLY is set, return just the position instead of a marker.
16061 The heading text must match exact, but it may have a TODO keyword,
16062 a priority cookie and tags in the standard locations."
16063 (with-current-buffer (or buffer (current-buffer))
16064 (save-excursion
16065 (save-restriction
16066 (widen)
16067 (goto-char (point-min))
16068 (let (case-fold-search)
16069 (if (re-search-forward
16070 (format org-complex-heading-regexp-format
16071 (regexp-quote heading)) nil t)
16072 (if pos-only
16073 (match-beginning 0)
16074 (move-marker (make-marker) (match-beginning 0)))))))))
16076 (defun org-find-exact-heading-in-directory (heading &optional dir)
16077 "Find Org node headline HEADING in all .org files in directory DIR.
16078 When the target headline is found, return a marker to this location."
16079 (let ((files (directory-files (or dir default-directory)
16080 nil "\\`[^.#].*\\.org\\'"))
16081 file visiting m buffer)
16082 (catch 'found
16083 (while (setq file (pop files))
16084 (message "trying %s" file)
16085 (setq visiting (org-find-base-buffer-visiting file))
16086 (setq buffer (or visiting (find-file-noselect file)))
16087 (setq m (org-find-exact-headline-in-buffer
16088 heading buffer))
16089 (when (and (not m) (not visiting)) (kill-buffer buffer))
16090 (and m (throw 'found m))))))
16092 (defun org-find-entry-with-id (ident)
16093 "Locate the entry that contains the ID property with exact value IDENT.
16094 IDENT can be a string, a symbol or a number, this function will search for
16095 the string representation of it.
16096 Return the position where this entry starts, or nil if there is no such entry."
16097 (interactive "sID: ")
16098 (let ((id (cond
16099 ((stringp ident) ident)
16100 ((symbol-name ident) (symbol-name ident))
16101 ((numberp ident) (number-to-string ident))
16102 (t (error "IDENT %s must be a string, symbol or number" ident))))
16103 (case-fold-search nil))
16104 (save-excursion
16105 (save-restriction
16106 (widen)
16107 (goto-char (point-min))
16108 (when (re-search-forward
16109 (concat "^[ \t]*:ID:[ \t]+" (regexp-quote id) "[ \t]*$")
16110 nil t)
16111 (org-back-to-heading t)
16112 (point))))))
16114 ;;;; Timestamps
16116 (defvar org-last-changed-timestamp nil)
16117 (defvar org-last-inserted-timestamp nil
16118 "The last time stamp inserted with `org-insert-time-stamp'.")
16119 (defvar org-ts-what) ; dynamically scoped parameter
16121 (defun org-time-stamp (arg &optional inactive)
16122 "Prompt for a date/time and insert a time stamp.
16123 If the user specifies a time like HH:MM or if this command is
16124 called with at least one prefix argument, the time stamp contains
16125 the date and the time. Otherwise, only the date is be included.
16127 All parts of a date not specified by the user is filled in from
16128 the current date/time. So if you just press return without
16129 typing anything, the time stamp will represent the current
16130 date/time.
16132 If there is already a timestamp at the cursor, it will be
16133 modified.
16135 With two universal prefix arguments, insert an active timestamp
16136 with the current time without prompting the user.
16138 When called from lisp, the timestamp is inactive if INACTIVE is
16139 non-nil."
16140 (interactive "P")
16141 (let* ((ts nil)
16142 (default-time
16143 ;; Default time is either today, or, when entering a range,
16144 ;; the range start.
16145 (if (or (and (org-at-timestamp-p t) (setq ts (match-string 0)))
16146 (save-excursion
16147 (re-search-backward
16148 (concat org-ts-regexp "--?-?\\=") ; 1-3 minuses
16149 (- (point) 20) t)))
16150 (apply 'encode-time (org-parse-time-string (match-string 1)))
16151 (current-time)))
16152 (default-input (and ts (org-get-compact-tod ts)))
16153 (repeater (save-excursion
16154 (save-match-data
16155 (beginning-of-line)
16156 (when (re-search-forward
16157 "\\([.+-]+[0-9]+[hdwmy] ?\\)+" ;;\\(?:[/ ][-+]?[0-9]+[hdwmy]\\)?\\) ?"
16158 (save-excursion (progn (end-of-line) (point))) t)
16159 (match-string 0)))))
16160 org-time-was-given org-end-time-was-given time)
16161 (cond
16162 ((and (org-at-timestamp-p t)
16163 (memq last-command '(org-time-stamp org-time-stamp-inactive))
16164 (memq this-command '(org-time-stamp org-time-stamp-inactive)))
16165 (insert "--")
16166 (setq time (let ((this-command this-command))
16167 (org-read-date arg 'totime nil nil
16168 default-time default-input inactive)))
16169 (org-insert-time-stamp time (or org-time-was-given arg) inactive))
16170 ((org-at-timestamp-p t)
16171 (setq time (let ((this-command this-command))
16172 (org-read-date arg 'totime nil nil default-time default-input inactive)))
16173 (when (org-at-timestamp-p t) ; just to get the match data
16174 ; (setq inactive (eq (char-after (match-beginning 0)) ?\[))
16175 (replace-match "")
16176 (setq org-last-changed-timestamp
16177 (org-insert-time-stamp
16178 time (or org-time-was-given arg)
16179 inactive nil nil (list org-end-time-was-given)))
16180 (when repeater (goto-char (1- (point))) (insert " " repeater)
16181 (setq org-last-changed-timestamp
16182 (concat (substring org-last-inserted-timestamp 0 -1)
16183 " " repeater ">"))))
16184 (message "Timestamp updated"))
16185 ((equal arg '(16))
16186 (org-insert-time-stamp (current-time) t inactive))
16188 (setq time (let ((this-command this-command))
16189 (org-read-date arg 'totime nil nil default-time default-input inactive)))
16190 (org-insert-time-stamp time (or org-time-was-given arg) inactive
16191 nil nil (list org-end-time-was-given))))))
16193 ;; FIXME: can we use this for something else, like computing time differences?
16194 (defun org-get-compact-tod (s)
16195 (when (string-match "\\(\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)\\(-\\(\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)\\)?" s)
16196 (let* ((t1 (match-string 1 s))
16197 (h1 (string-to-number (match-string 2 s)))
16198 (m1 (string-to-number (match-string 3 s)))
16199 (t2 (and (match-end 4) (match-string 5 s)))
16200 (h2 (and t2 (string-to-number (match-string 6 s))))
16201 (m2 (and t2 (string-to-number (match-string 7 s))))
16202 dh dm)
16203 (if (not t2)
16205 (setq dh (- h2 h1) dm (- m2 m1))
16206 (if (< dm 0) (setq dm (+ dm 60) dh (1- dh)))
16207 (concat t1 "+" (number-to-string dh)
16208 (and (/= 0 dm) (format ":%02d" dm)))))))
16210 (defun org-time-stamp-inactive (&optional arg)
16211 "Insert an inactive time stamp.
16212 An inactive time stamp is enclosed in square brackets instead of angle
16213 brackets. It is inactive in the sense that it does not trigger agenda entries,
16214 does not link to the calendar and cannot be changed with the S-cursor keys.
16215 So these are more for recording a certain time/date."
16216 (interactive "P")
16217 (org-time-stamp arg 'inactive))
16219 (defvar org-date-ovl (make-overlay 1 1))
16220 (overlay-put org-date-ovl 'face 'org-date-selected)
16221 (org-detach-overlay org-date-ovl)
16223 (defvar org-ans1) ; dynamically scoped parameter
16224 (defvar org-ans2) ; dynamically scoped parameter
16226 (defvar org-plain-time-of-day-regexp) ; defined below
16228 (defvar org-overriding-default-time nil) ; dynamically scoped
16229 (defvar org-read-date-overlay nil)
16230 (defvar org-dcst nil) ; dynamically scoped
16231 (defvar org-read-date-history nil)
16232 (defvar org-read-date-final-answer nil)
16233 (defvar org-read-date-analyze-futurep nil)
16234 (defvar org-read-date-analyze-forced-year nil)
16235 (defvar org-read-date-inactive)
16237 (defvar org-read-date-minibuffer-local-map
16238 (let* ((org-replace-disputed-keys nil)
16239 (map (make-sparse-keymap)))
16240 (set-keymap-parent map minibuffer-local-map)
16241 (org-defkey map (kbd ".")
16242 (lambda () (interactive)
16243 ;; Are we at the beginning of the prompt?
16244 (if (looking-back "^[^:]+: ")
16245 (org-eval-in-calendar '(calendar-goto-today))
16246 (insert "."))))
16247 (org-defkey map (kbd "C-.")
16248 (lambda () (interactive)
16249 (org-eval-in-calendar '(calendar-goto-today))))
16250 (org-defkey map [(meta shift left)]
16251 (lambda () (interactive)
16252 (org-eval-in-calendar '(calendar-backward-month 1))))
16253 (org-defkey map [(meta shift right)]
16254 (lambda () (interactive)
16255 (org-eval-in-calendar '(calendar-forward-month 1))))
16256 (org-defkey map [(meta shift up)]
16257 (lambda () (interactive)
16258 (org-eval-in-calendar '(calendar-backward-year 1))))
16259 (org-defkey map [(meta shift down)]
16260 (lambda () (interactive)
16261 (org-eval-in-calendar '(calendar-forward-year 1))))
16262 (org-defkey map [?\e (shift left)]
16263 (lambda () (interactive)
16264 (org-eval-in-calendar '(calendar-backward-month 1))))
16265 (org-defkey map [?\e (shift right)]
16266 (lambda () (interactive)
16267 (org-eval-in-calendar '(calendar-forward-month 1))))
16268 (org-defkey map [?\e (shift up)]
16269 (lambda () (interactive)
16270 (org-eval-in-calendar '(calendar-backward-year 1))))
16271 (org-defkey map [?\e (shift down)]
16272 (lambda () (interactive)
16273 (org-eval-in-calendar '(calendar-forward-year 1))))
16274 (org-defkey map [(shift up)]
16275 (lambda () (interactive)
16276 (org-eval-in-calendar '(calendar-backward-week 1))))
16277 (org-defkey map [(shift down)]
16278 (lambda () (interactive)
16279 (org-eval-in-calendar '(calendar-forward-week 1))))
16280 (org-defkey map [(shift left)]
16281 (lambda () (interactive)
16282 (org-eval-in-calendar '(calendar-backward-day 1))))
16283 (org-defkey map [(shift right)]
16284 (lambda () (interactive)
16285 (org-eval-in-calendar '(calendar-forward-day 1))))
16286 (org-defkey map "!"
16287 (lambda () (interactive)
16288 (org-eval-in-calendar '(diary-view-entries))
16289 (message "")))
16290 (org-defkey map ">"
16291 (lambda () (interactive)
16292 (org-eval-in-calendar '(calendar-scroll-left 1))))
16293 (org-defkey map "<"
16294 (lambda () (interactive)
16295 (org-eval-in-calendar '(calendar-scroll-right 1))))
16296 (org-defkey map "\C-v"
16297 (lambda () (interactive)
16298 (org-eval-in-calendar
16299 '(calendar-scroll-left-three-months 1))))
16300 (org-defkey map "\M-v"
16301 (lambda () (interactive)
16302 (org-eval-in-calendar
16303 '(calendar-scroll-right-three-months 1))))
16304 map)
16305 "Keymap for minibuffer commands when using `org-read-date'.")
16307 (defvar org-def)
16308 (defvar org-defdecode)
16309 (defvar org-with-time)
16311 (defun org-read-date (&optional org-with-time to-time from-string prompt
16312 default-time default-input inactive)
16313 "Read a date, possibly a time, and make things smooth for the user.
16314 The prompt will suggest to enter an ISO date, but you can also enter anything
16315 which will at least partially be understood by `parse-time-string'.
16316 Unrecognized parts of the date will default to the current day, month, year,
16317 hour and minute. If this command is called to replace a timestamp at point,
16318 or to enter the second timestamp of a range, the default time is taken
16319 from the existing stamp. Furthermore, the command prefers the future,
16320 so if you are giving a date where the year is not given, and the day-month
16321 combination is already past in the current year, it will assume you
16322 mean next year. For details, see the manual. A few examples:
16324 3-2-5 --> 2003-02-05
16325 feb 15 --> currentyear-02-15
16326 2/15 --> currentyear-02-15
16327 sep 12 9 --> 2009-09-12
16328 12:45 --> today 12:45
16329 22 sept 0:34 --> currentyear-09-22 0:34
16330 12 --> currentyear-currentmonth-12
16331 Fri --> nearest Friday after today
16332 -Tue --> last Tuesday
16333 etc.
16335 Furthermore you can specify a relative date by giving, as the *first* thing
16336 in the input: a plus/minus sign, a number and a letter [hdwmy] to indicate
16337 change in days weeks, months, years.
16338 With a single plus or minus, the date is relative to today. With a double
16339 plus or minus, it is relative to the date in DEFAULT-TIME. E.g.
16340 +4d --> four days from today
16341 +4 --> same as above
16342 +2w --> two weeks from today
16343 ++5 --> five days from default date
16345 The function understands only English month and weekday abbreviations.
16347 While prompting, a calendar is popped up - you can also select the
16348 date with the mouse (button 1). The calendar shows a period of three
16349 months. To scroll it to other months, use the keys `>' and `<'.
16350 If you don't like the calendar, turn it off with
16351 \(setq org-read-date-popup-calendar nil)
16353 With optional argument TO-TIME, the date will immediately be converted
16354 to an internal time.
16355 With an optional argument ORG-WITH-TIME, the prompt will suggest to
16356 also insert a time. Note that when ORG-WITH-TIME is not set, you can
16357 still enter a time, and this function will inform the calling routine
16358 about this change. The calling routine may then choose to change the
16359 format used to insert the time stamp into the buffer to include the time.
16360 With optional argument FROM-STRING, read from this string instead from
16361 the user. PROMPT can overwrite the default prompt. DEFAULT-TIME is
16362 the time/date that is used for everything that is not specified by the
16363 user."
16364 (require 'parse-time)
16365 (let* ((org-time-stamp-rounding-minutes
16366 (if (equal org-with-time '(16)) '(0 0) org-time-stamp-rounding-minutes))
16367 (org-dcst org-display-custom-times)
16368 (ct (org-current-time))
16369 (org-def (or org-overriding-default-time default-time ct))
16370 (org-defdecode (decode-time org-def))
16371 (dummy (progn
16372 (when (< (nth 2 org-defdecode) org-extend-today-until)
16373 (setcar (nthcdr 2 org-defdecode) -1)
16374 (setcar (nthcdr 1 org-defdecode) 59)
16375 (setq org-def (apply 'encode-time org-defdecode)
16376 org-defdecode (decode-time org-def)))))
16377 (mouse-autoselect-window nil) ; Don't let the mouse jump
16378 (calendar-frame-setup nil)
16379 (calendar-setup nil)
16380 (calendar-move-hook nil)
16381 (calendar-view-diary-initially-flag nil)
16382 (calendar-view-holidays-initially-flag nil)
16383 (timestr (format-time-string
16384 (if org-with-time "%Y-%m-%d %H:%M" "%Y-%m-%d") org-def))
16385 (prompt (concat (if prompt (concat prompt " ") "")
16386 (format "Date+time [%s]: " timestr)))
16387 ans (org-ans0 "") org-ans1 org-ans2 final)
16389 (cond
16390 (from-string (setq ans from-string))
16391 (org-read-date-popup-calendar
16392 (save-excursion
16393 (save-window-excursion
16394 (calendar)
16395 (org-eval-in-calendar '(setq cursor-type nil) t)
16396 (unwind-protect
16397 (progn
16398 (calendar-forward-day (- (time-to-days org-def)
16399 (calendar-absolute-from-gregorian
16400 (calendar-current-date))))
16401 (org-eval-in-calendar nil t)
16402 (let* ((old-map (current-local-map))
16403 (map (copy-keymap calendar-mode-map))
16404 (minibuffer-local-map
16405 (copy-keymap org-read-date-minibuffer-local-map)))
16406 (org-defkey map (kbd "RET") 'org-calendar-select)
16407 (org-defkey map [mouse-1] 'org-calendar-select-mouse)
16408 (org-defkey map [mouse-2] 'org-calendar-select-mouse)
16409 (unwind-protect
16410 (progn
16411 (use-local-map map)
16412 (setq org-read-date-inactive inactive)
16413 (add-hook 'post-command-hook 'org-read-date-display)
16414 (setq org-ans0 (read-string prompt default-input
16415 'org-read-date-history nil))
16416 ;; org-ans0: from prompt
16417 ;; org-ans1: from mouse click
16418 ;; org-ans2: from calendar motion
16419 (setq ans (concat org-ans0 " " (or org-ans1 org-ans2))))
16420 (remove-hook 'post-command-hook 'org-read-date-display)
16421 (use-local-map old-map)
16422 (when org-read-date-overlay
16423 (delete-overlay org-read-date-overlay)
16424 (setq org-read-date-overlay nil)))))
16425 (bury-buffer "*Calendar*")))))
16427 (t ; Naked prompt only
16428 (unwind-protect
16429 (setq ans (read-string prompt default-input
16430 'org-read-date-history timestr))
16431 (when org-read-date-overlay
16432 (delete-overlay org-read-date-overlay)
16433 (setq org-read-date-overlay nil)))))
16435 (setq final (org-read-date-analyze ans org-def org-defdecode))
16437 (when org-read-date-analyze-forced-year
16438 (message "Year was forced into %s"
16439 (if org-read-date-force-compatible-dates
16440 "compatible range (1970-2037)"
16441 "range representable on this machine"))
16442 (ding))
16444 ;; One round trip to get rid of 34th of August and stuff like that....
16445 (setq final (decode-time (apply 'encode-time final)))
16447 (setq org-read-date-final-answer ans)
16449 (if to-time
16450 (apply 'encode-time final)
16451 (if (and (boundp 'org-time-was-given) org-time-was-given)
16452 (format "%04d-%02d-%02d %02d:%02d"
16453 (nth 5 final) (nth 4 final) (nth 3 final)
16454 (nth 2 final) (nth 1 final))
16455 (format "%04d-%02d-%02d" (nth 5 final) (nth 4 final) (nth 3 final))))))
16457 (defun org-read-date-display ()
16458 "Display the current date prompt interpretation in the minibuffer."
16459 (when org-read-date-display-live
16460 (when org-read-date-overlay
16461 (delete-overlay org-read-date-overlay))
16462 (when (minibufferp (current-buffer))
16463 (save-excursion
16464 (end-of-line 1)
16465 (while (not (equal (buffer-substring
16466 (max (point-min) (- (point) 4)) (point))
16467 " "))
16468 (insert " ")))
16469 (let* ((ans (concat (buffer-substring (point-at-bol) (point-max))
16470 " " (or org-ans1 org-ans2)))
16471 (org-end-time-was-given nil)
16472 (f (org-read-date-analyze ans org-def org-defdecode))
16473 (fmts (if org-dcst
16474 org-time-stamp-custom-formats
16475 org-time-stamp-formats))
16476 (fmt (if (or org-with-time
16477 (and (boundp 'org-time-was-given) org-time-was-given))
16478 (cdr fmts)
16479 (car fmts)))
16480 (txt (format-time-string fmt (apply 'encode-time f)))
16481 (txt (if org-read-date-inactive (concat "[" (substring txt 1 -1) "]") txt))
16482 (txt (concat "=> " txt)))
16483 (when (and org-end-time-was-given
16484 (string-match org-plain-time-of-day-regexp txt))
16485 (setq txt (concat (substring txt 0 (match-end 0)) "-"
16486 org-end-time-was-given
16487 (substring txt (match-end 0)))))
16488 (when org-read-date-analyze-futurep
16489 (setq txt (concat txt " (=>F)")))
16490 (setq org-read-date-overlay
16491 (make-overlay (1- (point-at-eol)) (point-at-eol)))
16492 (org-overlay-display org-read-date-overlay txt 'secondary-selection)))))
16494 (defun org-read-date-analyze (ans org-def org-defdecode)
16495 "Analyze the combined answer of the date prompt."
16496 ;; FIXME: cleanup and comment
16497 (let ((nowdecode (decode-time (current-time)))
16498 delta deltan deltaw deltadef year month day
16499 hour minute second wday pm h2 m2 tl wday1
16500 iso-year iso-weekday iso-week iso-year iso-date futurep kill-year)
16501 (setq org-read-date-analyze-futurep nil
16502 org-read-date-analyze-forced-year nil)
16503 (when (string-match "\\`[ \t]*\\.[ \t]*\\'" ans)
16504 (setq ans "+0"))
16506 (when (setq delta (org-read-date-get-relative ans (current-time) org-def))
16507 (setq ans (replace-match "" t t ans)
16508 deltan (car delta)
16509 deltaw (nth 1 delta)
16510 deltadef (nth 2 delta)))
16512 ;; Check if there is an iso week date in there. If yes, store the
16513 ;; info and postpone interpreting it until the rest of the parsing
16514 ;; is done.
16515 (when (string-match "\\<\\(?:\\([0-9]+\\)-\\)?[wW]\\([0-9]\\{1,2\\}\\)\\(?:-\\([0-6]\\)\\)?\\([ \t]\\|$\\)" ans)
16516 (setq iso-year (if (match-end 1)
16517 (org-small-year-to-year
16518 (string-to-number (match-string 1 ans))))
16519 iso-weekday (if (match-end 3)
16520 (string-to-number (match-string 3 ans)))
16521 iso-week (string-to-number (match-string 2 ans)))
16522 (setq ans (replace-match "" t t ans)))
16524 ;; Help matching ISO dates with single digit month or day, like 2006-8-11.
16525 (when (string-match
16526 "^ *\\(\\([0-9]+\\)-\\)?\\([0-1]?[0-9]\\)-\\([0-3]?[0-9]\\)\\([^-0-9]\\|$\\)" ans)
16527 (setq year (if (match-end 2)
16528 (string-to-number (match-string 2 ans))
16529 (progn (setq kill-year t)
16530 (string-to-number (format-time-string "%Y"))))
16531 month (string-to-number (match-string 3 ans))
16532 day (string-to-number (match-string 4 ans)))
16533 (if (< year 100) (setq year (+ 2000 year)))
16534 (setq ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
16535 t nil ans)))
16537 ;; Help matching dotted european dates
16538 (when (string-match
16539 "^ *\\(3[01]\\|0?[1-9]\\|[12][0-9]\\)\\. ?\\(0?[1-9]\\|1[012]\\)\\.\\( ?[1-9][0-9]\\{3\\}\\)?" ans)
16540 (setq year (if (match-end 3) (string-to-number (match-string 3 ans))
16541 (setq kill-year t)
16542 (string-to-number (format-time-string "%Y")))
16543 day (string-to-number (match-string 1 ans))
16544 month (string-to-number (match-string 2 ans))
16545 ans (replace-match (format "%04d-%02d-%02d" year month day)
16546 t nil ans)))
16548 ;; Help matching american dates, like 5/30 or 5/30/7
16549 (when (string-match
16550 "^ *\\(0?[1-9]\\|1[012]\\)/\\(0?[1-9]\\|[12][0-9]\\|3[01]\\)\\(/\\([0-9]+\\)\\)?\\([^/0-9]\\|$\\)" ans)
16551 (setq year (if (match-end 4)
16552 (string-to-number (match-string 4 ans))
16553 (progn (setq kill-year t)
16554 (string-to-number (format-time-string "%Y"))))
16555 month (string-to-number (match-string 1 ans))
16556 day (string-to-number (match-string 2 ans)))
16557 (if (< year 100) (setq year (+ 2000 year)))
16558 (setq ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
16559 t nil ans)))
16560 ;; Help matching am/pm times, because `parse-time-string' does not do that.
16561 ;; If there is a time with am/pm, and *no* time without it, we convert
16562 ;; so that matching will be successful.
16563 (loop for i from 1 to 2 do ; twice, for end time as well
16564 (when (and (not (string-match "\\(\\`\\|[^+]\\)[012]?[0-9]:[0-9][0-9]\\([ \t\n]\\|$\\)" ans))
16565 (string-match "\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\(am\\|AM\\|pm\\|PM\\)\\>" ans))
16566 (setq hour (string-to-number (match-string 1 ans))
16567 minute (if (match-end 3)
16568 (string-to-number (match-string 3 ans))
16570 pm (equal ?p
16571 (string-to-char (downcase (match-string 4 ans)))))
16572 (if (and (= hour 12) (not pm))
16573 (setq hour 0)
16574 (if (and pm (< hour 12)) (setq hour (+ 12 hour))))
16575 (setq ans (replace-match (format "%02d:%02d" hour minute)
16576 t t ans))))
16578 ;; Check if a time range is given as a duration
16579 (when (string-match "\\([012]?[0-9]\\):\\([0-6][0-9]\\)\\+\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?" ans)
16580 (setq hour (string-to-number (match-string 1 ans))
16581 h2 (+ hour (string-to-number (match-string 3 ans)))
16582 minute (string-to-number (match-string 2 ans))
16583 m2 (+ minute (if (match-end 5) (string-to-number
16584 (match-string 5 ans))0)))
16585 (if (>= m2 60) (setq h2 (1+ h2) m2 (- m2 60)))
16586 (setq ans (replace-match (format "%02d:%02d-%02d:%02d" hour minute h2 m2)
16587 t t ans)))
16589 ;; Check if there is a time range
16590 (when (boundp 'org-end-time-was-given)
16591 (setq org-time-was-given nil)
16592 (when (and (string-match org-plain-time-of-day-regexp ans)
16593 (match-end 8))
16594 (setq org-end-time-was-given (match-string 8 ans))
16595 (setq ans (concat (substring ans 0 (match-beginning 7))
16596 (substring ans (match-end 7))))))
16598 (setq tl (parse-time-string ans)
16599 day (or (nth 3 tl) (nth 3 org-defdecode))
16600 month (or (nth 4 tl)
16601 (if (and org-read-date-prefer-future
16602 (nth 3 tl) (< (nth 3 tl) (nth 3 nowdecode)))
16603 (prog1 (1+ (nth 4 nowdecode)) (setq futurep t))
16604 (nth 4 org-defdecode)))
16605 year (or (and (not kill-year) (nth 5 tl))
16606 (if (and org-read-date-prefer-future
16607 (nth 4 tl) (< (nth 4 tl) (nth 4 nowdecode)))
16608 (prog1 (1+ (nth 5 nowdecode)) (setq futurep t))
16609 (nth 5 org-defdecode)))
16610 hour (or (nth 2 tl) (nth 2 org-defdecode))
16611 minute (or (nth 1 tl) (nth 1 org-defdecode))
16612 second (or (nth 0 tl) 0)
16613 wday (nth 6 tl))
16615 (when (and (eq org-read-date-prefer-future 'time)
16616 (not (nth 3 tl)) (not (nth 4 tl)) (not (nth 5 tl))
16617 (equal day (nth 3 nowdecode))
16618 (equal month (nth 4 nowdecode))
16619 (equal year (nth 5 nowdecode))
16620 (nth 2 tl)
16621 (or (< (nth 2 tl) (nth 2 nowdecode))
16622 (and (= (nth 2 tl) (nth 2 nowdecode))
16623 (nth 1 tl)
16624 (< (nth 1 tl) (nth 1 nowdecode)))))
16625 (setq day (1+ day)
16626 futurep t))
16628 ;; Special date definitions below
16629 (cond
16630 (iso-week
16631 ;; There was an iso week
16632 (require 'cal-iso)
16633 (setq futurep nil)
16634 (setq year (or iso-year year)
16635 day (or iso-weekday wday 1)
16636 wday nil ; to make sure that the trigger below does not match
16637 iso-date (calendar-gregorian-from-absolute
16638 (calendar-absolute-from-iso
16639 (list iso-week day year))))
16640 ; FIXME: Should we also push ISO weeks into the future?
16641 ; (when (and org-read-date-prefer-future
16642 ; (not iso-year)
16643 ; (< (calendar-absolute-from-gregorian iso-date)
16644 ; (time-to-days (current-time))))
16645 ; (setq year (1+ year)
16646 ; iso-date (calendar-gregorian-from-absolute
16647 ; (calendar-absolute-from-iso
16648 ; (list iso-week day year)))))
16649 (setq month (car iso-date)
16650 year (nth 2 iso-date)
16651 day (nth 1 iso-date)))
16652 (deltan
16653 (setq futurep nil)
16654 (unless deltadef
16655 (let ((now (decode-time (current-time))))
16656 (setq day (nth 3 now) month (nth 4 now) year (nth 5 now))))
16657 (cond ((member deltaw '("d" "")) (setq day (+ day deltan)))
16658 ((equal deltaw "w") (setq day (+ day (* 7 deltan))))
16659 ((equal deltaw "m") (setq month (+ month deltan)))
16660 ((equal deltaw "y") (setq year (+ year deltan)))))
16661 ((and wday (not (nth 3 tl)))
16662 ;; Weekday was given, but no day, so pick that day in the week
16663 ;; on or after the derived date.
16664 (setq wday1 (nth 6 (decode-time (encode-time 0 0 0 day month year))))
16665 (unless (equal wday wday1)
16666 (setq day (+ day (% (- wday wday1 -7) 7))))))
16667 (if (and (boundp 'org-time-was-given)
16668 (nth 2 tl))
16669 (setq org-time-was-given t))
16670 (if (< year 100) (setq year (+ 2000 year)))
16671 ;; Check of the date is representable
16672 (if org-read-date-force-compatible-dates
16673 (progn
16674 (if (< year 1970)
16675 (setq year 1970 org-read-date-analyze-forced-year t))
16676 (if (> year 2037)
16677 (setq year 2037 org-read-date-analyze-forced-year t)))
16678 (condition-case nil
16679 (ignore (encode-time second minute hour day month year))
16680 (error
16681 (setq year (nth 5 org-defdecode))
16682 (setq org-read-date-analyze-forced-year t))))
16683 (setq org-read-date-analyze-futurep futurep)
16684 (list second minute hour day month year)))
16686 (defvar parse-time-weekdays)
16687 (defun org-read-date-get-relative (s today default)
16688 "Check string S for special relative date string.
16689 TODAY and DEFAULT are internal times, for today and for a default.
16690 Return shift list (N what def-flag)
16691 WHAT is \"d\", \"w\", \"m\", or \"y\" for day, week, month, year.
16692 N is the number of WHATs to shift.
16693 DEF-FLAG is t when a double ++ or -- indicates shift relative to
16694 the DEFAULT date rather than TODAY."
16695 (require 'parse-time)
16696 (when (and
16697 (string-match
16698 (concat
16699 "\\`[ \t]*\\([-+]\\{0,2\\}\\)"
16700 "\\([0-9]+\\)?"
16701 "\\([hdwmy]\\|\\(" (mapconcat 'car parse-time-weekdays "\\|") "\\)\\)?"
16702 "\\([ \t]\\|$\\)") s)
16703 (or (> (match-end 1) (match-beginning 1)) (match-end 4)))
16704 (let* ((dir (if (> (match-end 1) (match-beginning 1))
16705 (string-to-char (substring (match-string 1 s) -1))
16706 ?+))
16707 (rel (and (match-end 1) (= 2 (- (match-end 1) (match-beginning 1)))))
16708 (n (if (match-end 2) (string-to-number (match-string 2 s)) 1))
16709 (what (if (match-end 3) (match-string 3 s) "d"))
16710 (wday1 (cdr (assoc (downcase what) parse-time-weekdays)))
16711 (date (if rel default today))
16712 (wday (nth 6 (decode-time date)))
16713 delta)
16714 (if wday1
16715 (progn
16716 (setq delta (mod (+ 7 (- wday1 wday)) 7))
16717 (if (= delta 0) (setq delta 7))
16718 (if (= dir ?-)
16719 (progn
16720 (setq delta (- delta 7))
16721 (if (= delta 0) (setq delta -7))))
16722 (if (> n 1) (setq delta (+ delta (* (1- n) (if (= dir ?-) -7 7)))))
16723 (list delta "d" rel))
16724 (list (* n (if (= dir ?-) -1 1)) what rel)))))
16726 (defun org-order-calendar-date-args (arg1 arg2 arg3)
16727 "Turn a user-specified date into the internal representation.
16728 The internal representation needed by the calendar is (month day year).
16729 This is a wrapper to handle the brain-dead convention in calendar that
16730 user function argument order change dependent on argument order."
16731 (if (boundp 'calendar-date-style)
16732 (cond
16733 ((eq calendar-date-style 'american)
16734 (list arg1 arg2 arg3))
16735 ((eq calendar-date-style 'european)
16736 (list arg2 arg1 arg3))
16737 ((eq calendar-date-style 'iso)
16738 (list arg2 arg3 arg1)))
16739 (org-no-warnings ;; european-calendar-style is obsolete as of version 23.1
16740 (if (org-bound-and-true-p european-calendar-style)
16741 (list arg2 arg1 arg3)
16742 (list arg1 arg2 arg3)))))
16744 (defun org-eval-in-calendar (form &optional keepdate)
16745 "Eval FORM in the calendar window and return to current window.
16746 When KEEPDATE is non-nil, update `org-ans2' from the cursor date,
16747 otherwise stick to the current value of `org-ans2'."
16748 (let ((sf (selected-frame))
16749 (sw (selected-window)))
16750 (select-window (get-buffer-window "*Calendar*" t))
16751 (eval form)
16752 (when (and (not keepdate) (calendar-cursor-to-date))
16753 (let* ((date (calendar-cursor-to-date))
16754 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
16755 (setq org-ans2 (format-time-string "%Y-%m-%d" time))))
16756 (move-overlay org-date-ovl (1- (point)) (1+ (point)) (current-buffer))
16757 (select-window sw)
16758 (org-select-frame-set-input-focus sf)))
16760 (defun org-calendar-select ()
16761 "Return to `org-read-date' with the date currently selected.
16762 This is used by `org-read-date' in a temporary keymap for the calendar buffer."
16763 (interactive)
16764 (when (calendar-cursor-to-date)
16765 (let* ((date (calendar-cursor-to-date))
16766 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
16767 (setq org-ans1 (format-time-string "%Y-%m-%d" time)))
16768 (if (active-minibuffer-window) (exit-minibuffer))))
16770 (defun org-insert-time-stamp (time &optional with-hm inactive pre post extra)
16771 "Insert a date stamp for the date given by the internal TIME.
16772 WITH-HM means use the stamp format that includes the time of the day.
16773 INACTIVE means use square brackets instead of angular ones, so that the
16774 stamp will not contribute to the agenda.
16775 PRE and POST are optional strings to be inserted before and after the
16776 stamp.
16777 The command returns the inserted time stamp."
16778 (let ((fmt (funcall (if with-hm 'cdr 'car) org-time-stamp-formats))
16779 stamp)
16780 (if inactive (setq fmt (concat "[" (substring fmt 1 -1) "]")))
16781 (insert-before-markers (or pre ""))
16782 (when (listp extra)
16783 (setq extra (car extra))
16784 (if (and (stringp extra)
16785 (string-match "\\([0-9]+\\):\\([0-9]+\\)" extra))
16786 (setq extra (format "-%02d:%02d"
16787 (string-to-number (match-string 1 extra))
16788 (string-to-number (match-string 2 extra))))
16789 (setq extra nil)))
16790 (when extra
16791 (setq fmt (concat (substring fmt 0 -1) extra (substring fmt -1))))
16792 (insert-before-markers (setq stamp (format-time-string fmt time)))
16793 (insert-before-markers (or post ""))
16794 (setq org-last-inserted-timestamp stamp)))
16796 (defun org-toggle-time-stamp-overlays ()
16797 "Toggle the use of custom time stamp formats."
16798 (interactive)
16799 (setq org-display-custom-times (not org-display-custom-times))
16800 (unless org-display-custom-times
16801 (let ((p (point-min)) (bmp (buffer-modified-p)))
16802 (while (setq p (next-single-property-change p 'display))
16803 (if (and (get-text-property p 'display)
16804 (eq (get-text-property p 'face) 'org-date))
16805 (remove-text-properties
16806 p (setq p (next-single-property-change p 'display))
16807 '(display t))))
16808 (set-buffer-modified-p bmp)))
16809 (if (featurep 'xemacs)
16810 (remove-text-properties (point-min) (point-max) '(end-glyph t)))
16811 (org-restart-font-lock)
16812 (setq org-table-may-need-update t)
16813 (if org-display-custom-times
16814 (message "Time stamps are overlaid with custom format")
16815 (message "Time stamp overlays removed")))
16817 (defun org-display-custom-time (beg end)
16818 "Overlay modified time stamp format over timestamp between BEG and END."
16819 (let* ((ts (buffer-substring beg end))
16820 t1 w1 with-hm tf time str w2 (off 0))
16821 (save-match-data
16822 (setq t1 (org-parse-time-string ts t))
16823 (if (string-match "\\(-[0-9]+:[0-9]+\\)?\\( [.+]?\\+[0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)?\\'" ts)
16824 (setq off (- (match-end 0) (match-beginning 0)))))
16825 (setq end (- end off))
16826 (setq w1 (- end beg)
16827 with-hm (and (nth 1 t1) (nth 2 t1))
16828 tf (funcall (if with-hm 'cdr 'car) org-time-stamp-custom-formats)
16829 time (org-fix-decoded-time t1)
16830 str (org-add-props
16831 (format-time-string
16832 (substring tf 1 -1) (apply 'encode-time time))
16833 nil 'mouse-face 'highlight)
16834 w2 (length str))
16835 (if (not (= w2 w1))
16836 (add-text-properties (1+ beg) (+ 2 beg)
16837 (list 'org-dwidth t 'org-dwidth-n (- w1 w2))))
16838 (if (featurep 'xemacs)
16839 (progn
16840 (put-text-property beg end 'invisible t)
16841 (put-text-property beg end 'end-glyph (make-glyph str)))
16842 (put-text-property beg end 'display str))))
16844 (defun org-translate-time (string)
16845 "Translate all timestamps in STRING to custom format.
16846 But do this only if the variable `org-display-custom-times' is set."
16847 (when org-display-custom-times
16848 (save-match-data
16849 (let* ((start 0)
16850 (re org-ts-regexp-both)
16851 t1 with-hm inactive tf time str beg end)
16852 (while (setq start (string-match re string start))
16853 (setq beg (match-beginning 0)
16854 end (match-end 0)
16855 t1 (save-match-data
16856 (org-parse-time-string (substring string beg end) t))
16857 with-hm (and (nth 1 t1) (nth 2 t1))
16858 inactive (equal (substring string beg (1+ beg)) "[")
16859 tf (funcall (if with-hm 'cdr 'car)
16860 org-time-stamp-custom-formats)
16861 time (org-fix-decoded-time t1)
16862 str (format-time-string
16863 (concat
16864 (if inactive "[" "<") (substring tf 1 -1)
16865 (if inactive "]" ">"))
16866 (apply 'encode-time time))
16867 string (replace-match str t t string)
16868 start (+ start (length str)))))))
16869 string)
16871 (defun org-fix-decoded-time (time)
16872 "Set 0 instead of nil for the first 6 elements of time.
16873 Don't touch the rest."
16874 (let ((n 0))
16875 (mapcar (lambda (x) (if (< (setq n (1+ n)) 7) (or x 0) x)) time)))
16877 (define-obsolete-function-alias 'org-days-to-time 'org-time-stamp-to-now "24.4")
16879 (defun org-time-stamp-to-now (timestamp-string &optional seconds)
16880 "Difference between TIMESTAMP-STRING and now in days.
16881 If SECONDS is non-nil, return the difference in seconds."
16882 (let ((fdiff (if seconds 'org-float-time 'time-to-days)))
16883 (- (funcall fdiff (org-time-string-to-time timestamp-string))
16884 (funcall fdiff (current-time)))))
16886 (defun org-deadline-close (timestamp-string &optional ndays)
16887 "Is the time in TIMESTAMP-STRING close to the current date?"
16888 (setq ndays (or ndays (org-get-wdays timestamp-string)))
16889 (and (< (org-time-stamp-to-now timestamp-string) ndays)
16890 (not (org-entry-is-done-p))))
16892 (defun org-get-wdays (ts &optional delay zero-delay)
16893 "Get the deadline lead time appropriate for timestring TS.
16894 When DELAY is non-nil, get the delay time for scheduled items
16895 instead of the deadline lead time. When ZERO-DELAY is non-nil
16896 and `org-scheduled-delay-days' is 0, enforce 0 as the delay,
16897 don't try to find the delay cookie in the scheduled timestamp."
16898 (let ((tv (if delay org-scheduled-delay-days
16899 org-deadline-warning-days)))
16900 (cond
16901 ((or (and delay (< tv 0))
16902 (and delay zero-delay (<= tv 0))
16903 (and (not delay) (<= tv 0)))
16904 ;; Enforce this value no matter what
16905 (- tv))
16906 ((string-match "-\\([0-9]+\\)\\([hdwmy]\\)\\(\\'\\|>\\| \\)" ts)
16907 ;; lead time is specified.
16908 (floor (* (string-to-number (match-string 1 ts))
16909 (cdr (assoc (match-string 2 ts)
16910 '(("d" . 1) ("w" . 7)
16911 ("m" . 30.4) ("y" . 365.25)
16912 ("h" . 0.041667)))))))
16913 ;; go for the default.
16914 (t tv))))
16916 (defun org-calendar-select-mouse (ev)
16917 "Return to `org-read-date' with the date currently selected.
16918 This is used by `org-read-date' in a temporary keymap for the calendar buffer."
16919 (interactive "e")
16920 (mouse-set-point ev)
16921 (when (calendar-cursor-to-date)
16922 (let* ((date (calendar-cursor-to-date))
16923 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
16924 (setq org-ans1 (format-time-string "%Y-%m-%d" time)))
16925 (if (active-minibuffer-window) (exit-minibuffer))))
16927 (defun org-check-deadlines (ndays)
16928 "Check if there are any deadlines due or past due.
16929 A deadline is considered due if it happens within `org-deadline-warning-days'
16930 days from today's date. If the deadline appears in an entry marked DONE,
16931 it is not shown. The prefix arg NDAYS can be used to test that many
16932 days. If the prefix is a raw \\[universal-argument] prefix, all deadlines are shown."
16933 (interactive "P")
16934 (let* ((org-warn-days
16935 (cond
16936 ((equal ndays '(4)) 100000)
16937 (ndays (prefix-numeric-value ndays))
16938 (t (abs org-deadline-warning-days))))
16939 (case-fold-search nil)
16940 (regexp (concat "\\<" org-deadline-string " *<\\([^>]+\\)>"))
16941 (callback
16942 (lambda () (org-deadline-close (match-string 1) org-warn-days))))
16944 (message "%d deadlines past-due or due within %d days"
16945 (org-occur regexp nil callback)
16946 org-warn-days)))
16948 (defsubst org-re-timestamp (type)
16949 "Return a regexp for timestamp TYPE.
16950 Allowed values for TYPE are:
16952 all: all timestamps
16953 active: only active timestamps (<...>)
16954 inactive: only inactive timestamps ([...])
16955 scheduled: only scheduled timestamps
16956 deadline: only deadline timestamps
16957 closed: only closed time-stamps
16959 When TYPE is nil, fall back on returning a regexp that matches
16960 both scheduled and deadline timestamps."
16961 (cond ((eq type 'all) "\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\}\\(?: +[^]+0-9> \n -]+\\)?\\(?: +[0-9]\\{1,2\\}:[0-9]\\{2\\}\\)?\\)")
16962 ((eq type 'active) org-ts-regexp)
16963 ((eq type 'inactive) "\\[\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^ \n>]*?\\)\\]")
16964 ((eq type 'scheduled) (concat "\\<" org-scheduled-string " *<\\([^>]+\\)>"))
16965 ((eq type 'deadline) (concat "\\<" org-deadline-string " *<\\([^>]+\\)>"))
16966 ((eq type 'closed) (concat org-closed-string " \\[\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^ \n>]*?\\)\\]"))
16967 ((eq type 'scheduled-or-deadline)
16968 (concat "\\<\\(?:" org-deadline-string "\\|" org-scheduled-string "\\) *<\\([^>]+\\)>"))))
16970 (defun org-check-before-date (date)
16971 "Check if there are deadlines or scheduled entries before DATE."
16972 (interactive (list (org-read-date)))
16973 (let ((case-fold-search nil)
16974 (regexp (org-re-timestamp org-ts-type))
16975 (callback
16976 (lambda () (time-less-p
16977 (org-time-string-to-time (match-string 1))
16978 (org-time-string-to-time date)))))
16979 (message "%d entries before %s"
16980 (org-occur regexp nil callback) date)))
16982 (defun org-check-after-date (date)
16983 "Check if there are deadlines or scheduled entries after DATE."
16984 (interactive (list (org-read-date)))
16985 (let ((case-fold-search nil)
16986 (regexp (org-re-timestamp org-ts-type))
16987 (callback
16988 (lambda () (not
16989 (time-less-p
16990 (org-time-string-to-time (match-string 1))
16991 (org-time-string-to-time date))))))
16992 (message "%d entries after %s"
16993 (org-occur regexp nil callback) date)))
16995 (defun org-check-dates-range (start-date end-date)
16996 "Check for deadlines/scheduled entries between START-DATE and END-DATE."
16997 (interactive (list (org-read-date nil nil nil "Range starts")
16998 (org-read-date nil nil nil "Range end")))
16999 (let ((case-fold-search nil)
17000 (regexp (org-re-timestamp org-ts-type))
17001 (callback
17002 (lambda ()
17003 (let ((match (match-string 1)))
17004 (and
17005 (not (time-less-p
17006 (org-time-string-to-time match)
17007 (org-time-string-to-time start-date)))
17008 (time-less-p
17009 (org-time-string-to-time match)
17010 (org-time-string-to-time end-date)))))))
17011 (message "%d entries between %s and %s"
17012 (org-occur regexp nil callback) start-date end-date)))
17014 (defun org-evaluate-time-range (&optional to-buffer)
17015 "Evaluate a time range by computing the difference between start and end.
17016 Normally the result is just printed in the echo area, but with prefix arg
17017 TO-BUFFER, the result is inserted just after the date stamp into the buffer.
17018 If the time range is actually in a table, the result is inserted into the
17019 next column.
17020 For time difference computation, a year is assumed to be exactly 365
17021 days in order to avoid rounding problems."
17022 (interactive "P")
17024 (org-clock-update-time-maybe)
17025 (save-excursion
17026 (unless (org-at-date-range-p t)
17027 (goto-char (point-at-bol))
17028 (re-search-forward org-tr-regexp-both (point-at-eol) t))
17029 (if (not (org-at-date-range-p t))
17030 (user-error "Not at a time-stamp range, and none found in current line")))
17031 (let* ((ts1 (match-string 1))
17032 (ts2 (match-string 2))
17033 (havetime (or (> (length ts1) 15) (> (length ts2) 15)))
17034 (match-end (match-end 0))
17035 (time1 (org-time-string-to-time ts1))
17036 (time2 (org-time-string-to-time ts2))
17037 (t1 (org-float-time time1))
17038 (t2 (org-float-time time2))
17039 (diff (abs (- t2 t1)))
17040 (negative (< (- t2 t1) 0))
17041 ;; (ys (floor (* 365 24 60 60)))
17042 (ds (* 24 60 60))
17043 (hs (* 60 60))
17044 (fy "%dy %dd %02d:%02d")
17045 (fy1 "%dy %dd")
17046 (fd "%dd %02d:%02d")
17047 (fd1 "%dd")
17048 (fh "%02d:%02d")
17049 y d h m align)
17050 (if havetime
17051 (setq ; y (floor (/ diff ys)) diff (mod diff ys)
17053 d (floor (/ diff ds)) diff (mod diff ds)
17054 h (floor (/ diff hs)) diff (mod diff hs)
17055 m (floor (/ diff 60)))
17056 (setq ; y (floor (/ diff ys)) diff (mod diff ys)
17058 d (floor (+ (/ diff ds) 0.5))
17059 h 0 m 0))
17060 (if (not to-buffer)
17061 (message "%s" (org-make-tdiff-string y d h m))
17062 (if (org-at-table-p)
17063 (progn
17064 (goto-char match-end)
17065 (setq align t)
17066 (and (looking-at " *|") (goto-char (match-end 0))))
17067 (goto-char match-end))
17068 (if (looking-at
17069 "\\( *-? *[0-9]+y\\)?\\( *[0-9]+d\\)? *[0-9][0-9]:[0-9][0-9]")
17070 (replace-match ""))
17071 (if negative (insert " -"))
17072 (if (> y 0) (insert " " (format (if havetime fy fy1) y d h m))
17073 (if (> d 0) (insert " " (format (if havetime fd fd1) d h m))
17074 (insert " " (format fh h m))))
17075 (if align (org-table-align))
17076 (message "Time difference inserted")))))
17078 (defun org-make-tdiff-string (y d h m)
17079 (let ((fmt "")
17080 (l nil))
17081 (if (> y 0) (setq fmt (concat fmt "%d year" (if (> y 1) "s" "") " ")
17082 l (push y l)))
17083 (if (> d 0) (setq fmt (concat fmt "%d day" (if (> d 1) "s" "") " ")
17084 l (push d l)))
17085 (if (> h 0) (setq fmt (concat fmt "%d hour" (if (> h 1) "s" "") " ")
17086 l (push h l)))
17087 (if (> m 0) (setq fmt (concat fmt "%d minute" (if (> m 1) "s" "") " ")
17088 l (push m l)))
17089 (apply 'format fmt (nreverse l))))
17091 (defun org-time-string-to-time (s &optional buffer pos)
17092 "Convert a timestamp string into internal time."
17093 (condition-case errdata
17094 (apply 'encode-time (org-parse-time-string s))
17095 (error (error "Bad timestamp `%s'%s\nError was: %s"
17096 s (if (not (and buffer pos))
17098 (format " at %d in buffer `%s'" pos buffer))
17099 (cdr errdata)))))
17101 (defun org-time-string-to-seconds (s)
17102 "Convert a timestamp string to a number of seconds."
17103 (org-float-time (org-time-string-to-time s)))
17105 (defun org-time-string-to-absolute (s &optional daynr prefer show-all buffer pos)
17106 "Convert a time stamp to an absolute day number.
17107 If there is a specifier for a cyclic time stamp, get the closest
17108 date to DAYNR.
17109 PREFER and SHOW-ALL are passed through to `org-closest-date'.
17110 The variable `date' is bound by the calendar when this is called."
17111 (cond
17112 ((and daynr (string-match "\\`%%\\((.*)\\)" s))
17113 (if (org-diary-sexp-entry (match-string 1 s) "" date)
17114 daynr
17115 (+ daynr 1000)))
17116 ((and daynr (string-match "\\+[0-9]+[hdwmy]" s))
17117 (org-closest-date s (if (and (boundp 'daynr) (integerp daynr)) daynr
17118 (time-to-days (current-time))) (match-string 0 s)
17119 prefer show-all))
17120 (t (time-to-days
17121 (condition-case errdata
17122 (apply 'encode-time (org-parse-time-string s))
17123 (error (error "Bad timestamp `%s'%s\nError was: %s"
17124 s (if (not (and buffer pos))
17126 (format " at %d in buffer `%s'" pos buffer))
17127 (cdr errdata))))))))
17129 (defun org-days-to-iso-week (days)
17130 "Return the iso week number."
17131 (require 'cal-iso)
17132 (car (calendar-iso-from-absolute days)))
17134 (defun org-small-year-to-year (year)
17135 "Convert 2-digit years into 4-digit years.
17136 38-99 are mapped into 1938-1999. 1-37 are mapped into 2001-2037.
17137 The year 2000 cannot be abbreviated. Any year larger than 99
17138 is returned unchanged."
17139 (if (< year 38)
17140 (setq year (+ 2000 year))
17141 (if (< year 100)
17142 (setq year (+ 1900 year))))
17143 year)
17145 (defun org-time-from-absolute (d)
17146 "Return the time corresponding to date D.
17147 D may be an absolute day number, or a calendar-type list (month day year)."
17148 (if (numberp d) (setq d (calendar-gregorian-from-absolute d)))
17149 (encode-time 0 0 0 (nth 1 d) (car d) (nth 2 d)))
17151 (defun org-calendar-holiday ()
17152 "List of holidays, for Diary display in Org-mode."
17153 (require 'holidays)
17154 (let ((hl (funcall
17155 (if (fboundp 'calendar-check-holidays)
17156 'calendar-check-holidays 'check-calendar-holidays) date)))
17157 (if hl (mapconcat 'identity hl "; "))))
17159 (defun org-diary-sexp-entry (sexp entry date)
17160 "Process a SEXP diary ENTRY for DATE."
17161 (require 'diary-lib)
17162 (let ((result (if calendar-debug-sexp
17163 (let ((stack-trace-on-error t))
17164 (eval (car (read-from-string sexp))))
17165 (condition-case nil
17166 (eval (car (read-from-string sexp)))
17167 (error
17168 (beep)
17169 (message "Bad sexp at line %d in %s: %s"
17170 (org-current-line)
17171 (buffer-file-name) sexp)
17172 (sleep-for 2))))))
17173 (cond ((stringp result) (split-string result "; "))
17174 ((and (consp result)
17175 (not (consp (cdr result)))
17176 (stringp (cdr result))) (cdr result))
17177 ((and (consp result)
17178 (stringp (car result))) result)
17179 (result entry))))
17181 (defun org-diary-to-ical-string (frombuf)
17182 "Get iCalendar entries from diary entries in buffer FROMBUF.
17183 This uses the icalendar.el library."
17184 (let* ((tmpdir (if (featurep 'xemacs)
17185 (temp-directory)
17186 temporary-file-directory))
17187 (tmpfile (make-temp-name
17188 (expand-file-name "orgics" tmpdir)))
17189 buf rtn b e)
17190 (with-current-buffer frombuf
17191 (icalendar-export-region (point-min) (point-max) tmpfile)
17192 (setq buf (find-buffer-visiting tmpfile))
17193 (set-buffer buf)
17194 (goto-char (point-min))
17195 (if (re-search-forward "^BEGIN:VEVENT" nil t)
17196 (setq b (match-beginning 0)))
17197 (goto-char (point-max))
17198 (if (re-search-backward "^END:VEVENT" nil t)
17199 (setq e (match-end 0)))
17200 (setq rtn (if (and b e) (concat (buffer-substring b e) "\n") "")))
17201 (kill-buffer buf)
17202 (delete-file tmpfile)
17203 rtn))
17205 (defun org-closest-date (start current change prefer show-all)
17206 "Find the date closest to CURRENT that is consistent with START and CHANGE.
17207 When PREFER is `past', return a date that is either CURRENT or past.
17208 When PREFER is `future', return a date that is either CURRENT or future.
17209 When SHOW-ALL is nil, only return the current occurrence of a time stamp."
17210 ;; Make the proper lists from the dates
17211 (catch 'exit
17212 (let ((a1 '(("h" . hour)
17213 ("d" . day)
17214 ("w" . week)
17215 ("m" . month)
17216 ("y" . year)))
17217 (shour (nth 2 (org-parse-time-string start)))
17218 dn dw sday cday n1 n2 n0
17219 d m y y1 y2 date1 date2 nmonths nm ny m2)
17221 (setq start (org-date-to-gregorian start)
17222 current (org-date-to-gregorian
17223 (if show-all
17224 current
17225 (time-to-days (current-time))))
17226 sday (calendar-absolute-from-gregorian start)
17227 cday (calendar-absolute-from-gregorian current))
17229 (if (<= cday sday) (throw 'exit sday))
17231 (if (string-match "\\(\\+[0-9]+\\)\\([hdwmy]\\)" change)
17232 (setq dn (string-to-number (match-string 1 change))
17233 dw (cdr (assoc (match-string 2 change) a1)))
17234 (user-error "Invalid change specifier: %s" change))
17235 (if (eq dw 'week) (setq dw 'day dn (* 7 dn)))
17236 (cond
17237 ((eq dw 'hour)
17238 (let ((missing-hours
17239 (mod (+ (- (* 24 (- cday sday)) shour) org-extend-today-until)
17240 dn)))
17241 (setq n1 (if (zerop missing-hours) cday
17242 (- cday (1+ (floor (/ missing-hours 24)))))
17243 n2 (+ cday (floor (/ (- dn missing-hours) 24))))))
17244 ((eq dw 'day)
17245 (setq n1 (+ sday (* dn (floor (/ (- cday sday) dn))))
17246 n2 (+ n1 dn)))
17247 ((eq dw 'year)
17248 (setq d (nth 1 start) m (car start) y1 (nth 2 start) y2 (nth 2 current))
17249 (setq y1 (+ (* (floor (/ (- y2 y1) dn)) dn) y1))
17250 (setq date1 (list m d y1)
17251 n1 (calendar-absolute-from-gregorian date1)
17252 date2 (list m d (+ y1 (* (if (< n1 cday) 1 -1) dn)))
17253 n2 (calendar-absolute-from-gregorian date2)))
17254 ((eq dw 'month)
17255 ;; approx number of month between the two dates
17256 (setq nmonths (floor (/ (- cday sday) 30.436875)))
17257 ;; How often does dn fit in there?
17258 (setq d (nth 1 start) m (car start) y (nth 2 start)
17259 nm (* dn (max 0 (1- (floor (/ nmonths dn)))))
17260 m (+ m nm)
17261 ny (floor (/ m 12))
17262 y (+ y ny)
17263 m (- m (* ny 12)))
17264 (while (> m 12) (setq m (- m 12) y (1+ y)))
17265 (setq n1 (calendar-absolute-from-gregorian (list m d y)))
17266 (setq m2 (+ m dn) y2 y)
17267 (if (> m2 12) (setq y2 (1+ y2) m2 (- m2 12)))
17268 (setq n2 (calendar-absolute-from-gregorian (list m2 d y2)))
17269 (while (<= n2 cday)
17270 (setq n1 n2 m m2 y y2)
17271 (setq m2 (+ m dn) y2 y)
17272 (if (> m2 12) (setq y2 (1+ y2) m2 (- m2 12)))
17273 (setq n2 (calendar-absolute-from-gregorian (list m2 d y2))))))
17274 ;; Make sure n1 is the earlier date
17275 (setq n0 n1 n1 (min n1 n2) n2 (max n0 n2))
17276 (if show-all
17277 (cond
17278 ((eq prefer 'past) (if (= cday n2) n2 n1))
17279 ((eq prefer 'future) (if (= cday n1) n1 n2))
17280 (t (if (> (abs (- cday n1)) (abs (- cday n2))) n2 n1)))
17281 (cond
17282 ((eq prefer 'past) (if (= cday n2) n2 n1))
17283 ((eq prefer 'future) (if (= cday n1) n1 n2))
17284 (t (if (= cday n1) n1 n2)))))))
17286 (defun org-date-to-gregorian (date)
17287 "Turn any specification of DATE into a Gregorian date for the calendar."
17288 (cond ((integerp date) (calendar-gregorian-from-absolute date))
17289 ((and (listp date) (= (length date) 3)) date)
17290 ((stringp date)
17291 (setq date (org-parse-time-string date))
17292 (list (nth 4 date) (nth 3 date) (nth 5 date)))
17293 ((listp date)
17294 (list (nth 4 date) (nth 3 date) (nth 5 date)))))
17296 (defun org-parse-time-string (s &optional nodefault)
17297 "Parse the standard Org-mode time string.
17298 This should be a lot faster than the normal `parse-time-string'.
17299 If time is not given, defaults to 0:00. However, with optional NODEFAULT,
17300 hour and minute fields will be nil if not given."
17301 (cond ((string-match org-ts-regexp0 s)
17302 (list 0
17303 (if (or (match-beginning 8) (not nodefault))
17304 (string-to-number (or (match-string 8 s) "0")))
17305 (if (or (match-beginning 7) (not nodefault))
17306 (string-to-number (or (match-string 7 s) "0")))
17307 (string-to-number (match-string 4 s))
17308 (string-to-number (match-string 3 s))
17309 (string-to-number (match-string 2 s))
17310 nil nil nil))
17311 ((string-match "^<[^>]+>$" s)
17312 (decode-time (seconds-to-time (org-matcher-time s))))
17313 (t (error "Not a standard Org-mode time string: %s" s))))
17315 (defun org-timestamp-up (&optional arg)
17316 "Increase the date item at the cursor by one.
17317 If the cursor is on the year, change the year. If it is on the month,
17318 the day or the time, change that.
17319 With prefix ARG, change by that many units."
17320 (interactive "p")
17321 (org-timestamp-change (prefix-numeric-value arg) nil 'updown))
17323 (defun org-timestamp-down (&optional arg)
17324 "Decrease the date item at the cursor by one.
17325 If the cursor is on the year, change the year. If it is on the month,
17326 the day or the time, change that.
17327 With prefix ARG, change by that many units."
17328 (interactive "p")
17329 (org-timestamp-change (- (prefix-numeric-value arg)) nil 'updown))
17331 (defun org-timestamp-up-day (&optional arg)
17332 "Increase the date in the time stamp by one day.
17333 With prefix ARG, change that many days."
17334 (interactive "p")
17335 (if (and (not (org-at-timestamp-p t))
17336 (org-at-heading-p))
17337 (org-todo 'up)
17338 (org-timestamp-change (prefix-numeric-value arg) 'day 'updown)))
17340 (defun org-timestamp-down-day (&optional arg)
17341 "Decrease the date in the time stamp by one day.
17342 With prefix ARG, change that many days."
17343 (interactive "p")
17344 (if (and (not (org-at-timestamp-p t))
17345 (org-at-heading-p))
17346 (org-todo 'down)
17347 (org-timestamp-change (- (prefix-numeric-value arg)) 'day) 'updown))
17349 (defun org-at-timestamp-p (&optional inactive-ok)
17350 "Determine if the cursor is in or at a timestamp."
17351 (interactive)
17352 (let* ((tsr (if inactive-ok org-ts-regexp3 org-ts-regexp2))
17353 (pos (point))
17354 (ans (or (looking-at tsr)
17355 (save-excursion
17356 (skip-chars-backward "^[<\n\r\t")
17357 (if (> (point) (point-min)) (backward-char 1))
17358 (and (looking-at tsr)
17359 (> (- (match-end 0) pos) -1))))))
17360 (and ans
17361 (boundp 'org-ts-what)
17362 (setq org-ts-what
17363 (cond
17364 ((= pos (match-beginning 0)) 'bracket)
17365 ;; Point is considered to be "on the bracket" whether
17366 ;; it's really on it or right after it.
17367 ((= pos (1- (match-end 0))) 'bracket)
17368 ((= pos (match-end 0)) 'after)
17369 ((org-pos-in-match-range pos 2) 'year)
17370 ((org-pos-in-match-range pos 3) 'month)
17371 ((org-pos-in-match-range pos 7) 'hour)
17372 ((org-pos-in-match-range pos 8) 'minute)
17373 ((or (org-pos-in-match-range pos 4)
17374 (org-pos-in-match-range pos 5)) 'day)
17375 ((and (> pos (or (match-end 8) (match-end 5)))
17376 (< pos (match-end 0)))
17377 (- pos (or (match-end 8) (match-end 5))))
17378 (t 'day))))
17379 ans))
17381 (defun org-toggle-timestamp-type ()
17382 "Toggle the type (<active> or [inactive]) of a time stamp."
17383 (interactive)
17384 (when (org-at-timestamp-p t)
17385 (let ((beg (match-beginning 0)) (end (match-end 0))
17386 (map '((?\[ . "<") (?\] . ">") (?< . "[") (?> . "]"))))
17387 (save-excursion
17388 (goto-char beg)
17389 (while (re-search-forward "[][<>]" end t)
17390 (replace-match (cdr (assoc (char-after (match-beginning 0)) map))
17391 t t)))
17392 (message "Timestamp is now %sactive"
17393 (if (equal (char-after beg) ?<) "" "in")))))
17395 (defun org-at-clock-log-p nil
17396 "Is the cursor on the clock log line?"
17397 (save-excursion
17398 (move-beginning-of-line 1)
17399 (looking-at "^[ \t]*CLOCK:")))
17401 (defvar org-clock-history) ; defined in org-clock.el
17402 (defvar org-clock-adjust-closest nil) ; defined in org-clock.el
17403 (defun org-timestamp-change (n &optional what updown suppress-tmp-delay)
17404 "Change the date in the time stamp at point.
17405 The date will be changed by N times WHAT. WHAT can be `day', `month',
17406 `year', `minute', `second'. If WHAT is not given, the cursor position
17407 in the timestamp determines what will be changed.
17408 When SUPPRESS-TMP-DELAY is non-nil, suppress delays like \"--2d\"."
17409 (let ((origin (point)) origin-cat
17410 with-hm inactive
17411 (dm (max (nth 1 org-time-stamp-rounding-minutes) 1))
17412 org-ts-what
17413 extra rem
17414 ts time time0 fixnext clrgx)
17415 (if (not (org-at-timestamp-p t))
17416 (user-error "Not at a timestamp"))
17417 (if (and (not what) (eq org-ts-what 'bracket))
17418 (org-toggle-timestamp-type)
17419 ;; Point isn't on brackets. Remember the part of the time-stamp
17420 ;; the point was in. Indeed, size of time-stamps may change,
17421 ;; but point must be kept in the same category nonetheless.
17422 (setq origin-cat org-ts-what)
17423 (if (and (not what) (not (eq org-ts-what 'day))
17424 org-display-custom-times
17425 (get-text-property (point) 'display)
17426 (not (get-text-property (1- (point)) 'display)))
17427 (setq org-ts-what 'day))
17428 (setq org-ts-what (or what org-ts-what)
17429 inactive (= (char-after (match-beginning 0)) ?\[)
17430 ts (match-string 0))
17431 (replace-match "")
17432 (when (string-match
17433 "\\(\\(-[012][0-9]:[0-5][0-9]\\)?\\( +[.+]?-?[-+][0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)*\\)[]>]"
17435 (setq extra (match-string 1 ts))
17436 (if suppress-tmp-delay
17437 (setq extra (replace-regexp-in-string " --[0-9]+[hdwmy]" "" extra))))
17438 (if (string-match "^.\\{10\\}.*?[0-9]+:[0-9][0-9]" ts)
17439 (setq with-hm t))
17440 (setq time0 (org-parse-time-string ts))
17441 (when (and updown
17442 (eq org-ts-what 'minute)
17443 (not current-prefix-arg))
17444 ;; This looks like s-up and s-down. Change by one rounding step.
17445 (setq n (* dm (cond ((> n 0) 1) ((< n 0) -1) (t 0))))
17446 (when (not (= 0 (setq rem (% (nth 1 time0) dm))))
17447 (setcar (cdr time0) (+ (nth 1 time0)
17448 (if (> n 0) (- rem) (- dm rem))))))
17449 (setq time
17450 (encode-time (or (car time0) 0)
17451 (+ (if (eq org-ts-what 'minute) n 0) (nth 1 time0))
17452 (+ (if (eq org-ts-what 'hour) n 0) (nth 2 time0))
17453 (+ (if (eq org-ts-what 'day) n 0) (nth 3 time0))
17454 (+ (if (eq org-ts-what 'month) n 0) (nth 4 time0))
17455 (+ (if (eq org-ts-what 'year) n 0) (nth 5 time0))
17456 (nthcdr 6 time0)))
17457 (when (and (member org-ts-what '(hour minute))
17458 extra
17459 (string-match "-\\([012][0-9]\\):\\([0-5][0-9]\\)" extra))
17460 (setq extra (org-modify-ts-extra
17461 extra
17462 (if (eq org-ts-what 'hour) 2 5)
17463 n dm)))
17464 (when (integerp org-ts-what)
17465 (setq extra (org-modify-ts-extra extra org-ts-what n dm)))
17466 (if (eq what 'calendar)
17467 (let ((cal-date (org-get-date-from-calendar)))
17468 (setcar (nthcdr 4 time0) (nth 0 cal-date)) ; month
17469 (setcar (nthcdr 3 time0) (nth 1 cal-date)) ; day
17470 (setcar (nthcdr 5 time0) (nth 2 cal-date)) ; year
17471 (setcar time0 (or (car time0) 0))
17472 (setcar (nthcdr 1 time0) (or (nth 1 time0) 0))
17473 (setcar (nthcdr 2 time0) (or (nth 2 time0) 0))
17474 (setq time (apply 'encode-time time0))))
17475 ;; Insert the new time-stamp, and ensure point stays in the same
17476 ;; category as before (i.e. not after the last position in that
17477 ;; category).
17478 (let ((pos (point)))
17479 ;; Stay before inserted string. `save-excursion' is of no use.
17480 (setq org-last-changed-timestamp
17481 (org-insert-time-stamp time with-hm inactive nil nil extra))
17482 (goto-char pos))
17483 (save-match-data
17484 (looking-at org-ts-regexp3)
17485 (goto-char (cond
17486 ;; `day' category ends before `hour' if any, or at
17487 ;; the end of the day name.
17488 ((eq origin-cat 'day)
17489 (min (or (match-beginning 7) (1- (match-end 5))) origin))
17490 ((eq origin-cat 'hour) (min (match-end 7) origin))
17491 ((eq origin-cat 'minute) (min (1- (match-end 8)) origin))
17492 ((integerp origin-cat) (min (1- (match-end 0)) origin))
17493 ;; `year' and `month' have both fixed size: point
17494 ;; couldn't have moved into another part.
17495 (t origin))))
17496 ;; Update clock if on a CLOCK line.
17497 (org-clock-update-time-maybe)
17498 ;; Maybe adjust the closest clock in `org-clock-history'
17499 (when org-clock-adjust-closest
17500 (if (not (and (org-at-clock-log-p)
17501 (< 1 (length (delq nil (mapcar 'marker-position
17502 org-clock-history))))))
17503 (message "No clock to adjust")
17504 (cond ((save-excursion ; fix previous clock?
17505 (re-search-backward org-ts-regexp0 nil t)
17506 (org-looking-back (concat org-clock-string " \\[")))
17507 (setq fixnext 1 clrgx (concat org-ts-regexp0 "\\] =>.*$")))
17508 ((save-excursion ; fix next clock?
17509 (re-search-backward org-ts-regexp0 nil t)
17510 (looking-at (concat org-ts-regexp0 "\\] =>")))
17511 (setq fixnext -1 clrgx (concat org-clock-string " \\[" org-ts-regexp0))))
17512 (save-window-excursion
17513 ;; Find closest clock to point, adjust the previous/next one in history
17514 (let* ((p (save-excursion (org-back-to-heading t)))
17515 (cl (mapcar (lambda(c) (abs (- (marker-position c) p))) org-clock-history))
17516 (clfixnth
17517 (+ fixnext (- (length cl) (or (length (member (apply #'min cl) cl)) 100))))
17518 (clfixpos (if (> 0 clfixnth) nil (nth clfixnth org-clock-history))))
17519 (if (not clfixpos)
17520 (message "No clock to adjust")
17521 (save-excursion
17522 (org-goto-marker-or-bmk clfixpos)
17523 (org-show-subtree)
17524 (when (re-search-forward clrgx nil t)
17525 (goto-char (match-beginning 1))
17526 (let (org-clock-adjust-closest)
17527 (org-timestamp-change n org-ts-what updown))
17528 (message "Clock adjusted in %s for heading: %s"
17529 (file-name-nondirectory (buffer-file-name))
17530 (org-get-heading t t)))))))))
17531 ;; Try to recenter the calendar window, if any.
17532 (if (and org-calendar-follow-timestamp-change
17533 (get-buffer-window "*Calendar*" t)
17534 (memq org-ts-what '(day month year)))
17535 (org-recenter-calendar (time-to-days time))))))
17537 (defun org-modify-ts-extra (s pos n dm)
17538 "Change the different parts of the lead-time and repeat fields in timestamp."
17539 (let ((idx '(("d" . 0) ("w" . 1) ("m" . 2) ("y" . 3) ("d" . -1) ("y" . 4)))
17540 ng h m new rem)
17541 (when (string-match "\\(-\\([012][0-9]\\):\\([0-5][0-9]\\)\\)?\\( +\\+\\([0-9]+\\)\\([dmwy]\\)\\)?\\( +-\\([0-9]+\\)\\([dmwy]\\)\\)?" s)
17542 (cond
17543 ((or (org-pos-in-match-range pos 2)
17544 (org-pos-in-match-range pos 3))
17545 (setq m (string-to-number (match-string 3 s))
17546 h (string-to-number (match-string 2 s)))
17547 (if (org-pos-in-match-range pos 2)
17548 (setq h (+ h n))
17549 (setq n (* dm (org-no-warnings (signum n))))
17550 (when (not (= 0 (setq rem (% m dm))))
17551 (setq m (+ m (if (> n 0) (- rem) (- dm rem)))))
17552 (setq m (+ m n)))
17553 (if (< m 0) (setq m (+ m 60) h (1- h)))
17554 (if (> m 59) (setq m (- m 60) h (1+ h)))
17555 (setq h (min 24 (max 0 h)))
17556 (setq ng 1 new (format "-%02d:%02d" h m)))
17557 ((org-pos-in-match-range pos 6)
17558 (setq ng 6 new (car (rassoc (+ n (cdr (assoc (match-string 6 s) idx))) idx))))
17559 ((org-pos-in-match-range pos 5)
17560 (setq ng 5 new (format "%d" (max 1 (+ n (string-to-number (match-string 5 s)))))))
17562 ((org-pos-in-match-range pos 9)
17563 (setq ng 9 new (car (rassoc (+ n (cdr (assoc (match-string 9 s) idx))) idx))))
17564 ((org-pos-in-match-range pos 8)
17565 (setq ng 8 new (format "%d" (max 0 (+ n (string-to-number (match-string 8 s))))))))
17567 (when ng
17568 (setq s (concat
17569 (substring s 0 (match-beginning ng))
17571 (substring s (match-end ng))))))
17574 (defun org-recenter-calendar (date)
17575 "If the calendar is visible, recenter it to DATE."
17576 (let ((cwin (get-buffer-window "*Calendar*" t)))
17577 (when cwin
17578 (let ((calendar-move-hook nil))
17579 (with-selected-window cwin
17580 (calendar-goto-date (if (listp date) date
17581 (calendar-gregorian-from-absolute date))))))))
17583 (defun org-goto-calendar (&optional arg)
17584 "Go to the Emacs calendar at the current date.
17585 If there is a time stamp in the current line, go to that date.
17586 A prefix ARG can be used to force the current date."
17587 (interactive "P")
17588 (let ((tsr org-ts-regexp) diff
17589 (calendar-move-hook nil)
17590 (calendar-view-holidays-initially-flag nil)
17591 (calendar-view-diary-initially-flag nil))
17592 (if (or (org-at-timestamp-p)
17593 (save-excursion
17594 (beginning-of-line 1)
17595 (looking-at (concat ".*" tsr))))
17596 (let ((d1 (time-to-days (current-time)))
17597 (d2 (time-to-days
17598 (org-time-string-to-time (match-string 1)))))
17599 (setq diff (- d2 d1))))
17600 (calendar)
17601 (calendar-goto-today)
17602 (if (and diff (not arg)) (calendar-forward-day diff))))
17604 (defun org-get-date-from-calendar ()
17605 "Return a list (month day year) of date at point in calendar."
17606 (with-current-buffer "*Calendar*"
17607 (save-match-data
17608 (calendar-cursor-to-date))))
17610 (defun org-date-from-calendar ()
17611 "Insert time stamp corresponding to cursor date in *Calendar* buffer.
17612 If there is already a time stamp at the cursor position, update it."
17613 (interactive)
17614 (if (org-at-timestamp-p t)
17615 (org-timestamp-change 0 'calendar)
17616 (let ((cal-date (org-get-date-from-calendar)))
17617 (org-insert-time-stamp
17618 (encode-time 0 0 0 (nth 1 cal-date) (car cal-date) (nth 2 cal-date))))))
17620 (defcustom org-effort-durations
17621 `(("h" . 60)
17622 ("d" . ,(* 60 8))
17623 ("w" . ,(* 60 8 5))
17624 ("m" . ,(* 60 8 5 4))
17625 ("y" . ,(* 60 8 5 40)))
17626 "Conversion factor to minutes for an effort modifier.
17628 Each entry has the form (MODIFIER . MINUTES).
17630 In an effort string, a number followed by MODIFIER is multiplied
17631 by the specified number of MINUTES to obtain an effort in
17632 minutes.
17634 For example, if the value of this variable is ((\"hours\" . 60)), then an
17635 effort string \"2hours\" is equivalent to 120 minutes."
17636 :group 'org-agenda
17637 :version "24.1"
17638 :type '(alist :key-type (string :tag "Modifier")
17639 :value-type (number :tag "Minutes")))
17641 (defun org-minutes-to-clocksum-string (m)
17642 "Format number of minutes as a clocksum string.
17643 The format is determined by `org-time-clocksum-format',
17644 `org-time-clocksum-use-fractional' and
17645 `org-time-clocksum-fractional-format' and
17646 `org-time-clocksum-use-effort-durations'."
17647 (let ((clocksum "")
17648 (m (round m)) ; Don't allow fractions of minutes
17649 h d w mo y fmt n)
17650 (setq h (if org-time-clocksum-use-effort-durations
17651 (cdr (assoc "h" org-effort-durations)) 60)
17652 d (if org-time-clocksum-use-effort-durations
17653 (/ (cdr (assoc "d" org-effort-durations)) h) 24)
17654 w (if org-time-clocksum-use-effort-durations
17655 (/ (cdr (assoc "w" org-effort-durations)) (* d h)) 7)
17656 mo (if org-time-clocksum-use-effort-durations
17657 (/ (cdr (assoc "m" org-effort-durations)) (* d h)) 30)
17658 y (if org-time-clocksum-use-effort-durations
17659 (/ (cdr (assoc "y" org-effort-durations)) (* d h)) 365))
17660 ;; fractional format
17661 (if org-time-clocksum-use-fractional
17662 (cond
17663 ;; single format string
17664 ((stringp org-time-clocksum-fractional-format)
17665 (format org-time-clocksum-fractional-format (/ m (float h))))
17666 ;; choice of fractional formats for different time units
17667 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :years))
17668 (> (/ (truncate m) (* y d h)) 0))
17669 (format fmt (/ m (* y d (float h)))))
17670 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :months))
17671 (> (/ (truncate m) (* mo d h)) 0))
17672 (format fmt (/ m (* mo d (float h)))))
17673 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :weeks))
17674 (> (/ (truncate m) (* w d h)) 0))
17675 (format fmt (/ m (* w d (float h)))))
17676 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :days))
17677 (> (/ (truncate m) (* d h)) 0))
17678 (format fmt (/ m (* d (float h)))))
17679 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :hours))
17680 (> (/ (truncate m) h) 0))
17681 (format fmt (/ m (float h))))
17682 ((setq fmt (plist-get org-time-clocksum-fractional-format :minutes))
17683 (format fmt m))
17684 ;; fall back to smallest time unit with a format
17685 ((setq fmt (plist-get org-time-clocksum-fractional-format :hours))
17686 (format fmt (/ m (float h))))
17687 ((setq fmt (plist-get org-time-clocksum-fractional-format :days))
17688 (format fmt (/ m (* d (float h)))))
17689 ((setq fmt (plist-get org-time-clocksum-fractional-format :weeks))
17690 (format fmt (/ m (* w d (float h)))))
17691 ((setq fmt (plist-get org-time-clocksum-fractional-format :months))
17692 (format fmt (/ m (* mo d (float h)))))
17693 ((setq fmt (plist-get org-time-clocksum-fractional-format :years))
17694 (format fmt (/ m (* y d (float h))))))
17695 ;; standard (non-fractional) format, with single format string
17696 (if (stringp org-time-clocksum-format)
17697 (format org-time-clocksum-format (setq n (/ m h)) (- m (* h n)))
17698 ;; separate formats components
17699 (and (setq fmt (plist-get org-time-clocksum-format :years))
17700 (or (> (setq n (/ (truncate m) (* y d h))) 0)
17701 (plist-get org-time-clocksum-format :require-years))
17702 (setq clocksum (concat clocksum (format fmt n))
17703 m (- m (* n y d h))))
17704 (and (setq fmt (plist-get org-time-clocksum-format :months))
17705 (or (> (setq n (/ (truncate m) (* mo d h))) 0)
17706 (plist-get org-time-clocksum-format :require-months))
17707 (setq clocksum (concat clocksum (format fmt n))
17708 m (- m (* n mo d h))))
17709 (and (setq fmt (plist-get org-time-clocksum-format :weeks))
17710 (or (> (setq n (/ (truncate m) (* w d h))) 0)
17711 (plist-get org-time-clocksum-format :require-weeks))
17712 (setq clocksum (concat clocksum (format fmt n))
17713 m (- m (* n w d h))))
17714 (and (setq fmt (plist-get org-time-clocksum-format :days))
17715 (or (> (setq n (/ (truncate m) (* d h))) 0)
17716 (plist-get org-time-clocksum-format :require-days))
17717 (setq clocksum (concat clocksum (format fmt n))
17718 m (- m (* n d h))))
17719 (and (setq fmt (plist-get org-time-clocksum-format :hours))
17720 (or (> (setq n (/ (truncate m) h)) 0)
17721 (plist-get org-time-clocksum-format :require-hours))
17722 (setq clocksum (concat clocksum (format fmt n))
17723 m (- m (* n h))))
17724 (and (setq fmt (plist-get org-time-clocksum-format :minutes))
17725 (or (> m 0) (plist-get org-time-clocksum-format :require-minutes))
17726 (setq clocksum (concat clocksum (format fmt m))))
17727 ;; return formatted time duration
17728 clocksum))))
17730 (defalias 'org-minutes-to-hh:mm-string 'org-minutes-to-clocksum-string)
17731 (make-obsolete 'org-minutes-to-hh:mm-string 'org-minutes-to-clocksum-string
17732 "Org mode version 8.0")
17734 (defun org-hours-to-clocksum-string (n)
17735 (org-minutes-to-clocksum-string (* n 60)))
17737 (defun org-hh:mm-string-to-minutes (s)
17738 "Convert a string H:MM to a number of minutes.
17739 If the string is just a number, interpret it as minutes.
17740 In fact, the first hh:mm or number in the string will be taken,
17741 there can be extra stuff in the string.
17742 If no number is found, the return value is 0."
17743 (cond
17744 ((integerp s) s)
17745 ((string-match "\\([0-9]+\\):\\([0-9]+\\)" s)
17746 (+ (* (string-to-number (match-string 1 s)) 60)
17747 (string-to-number (match-string 2 s))))
17748 ((string-match "\\([0-9]+\\)" s)
17749 (string-to-number (match-string 1 s)))
17750 (t 0)))
17752 (defcustom org-image-actual-width t
17753 "Should we use the actual width of images when inlining them?
17755 When set to `t', always use the image width.
17757 When set to a number, use imagemagick (when available) to set
17758 the image's width to this value.
17760 When set to a number in a list, try to get the width from any
17761 #+ATTR.* keyword if it matches a width specification like
17763 #+ATTR_HTML: :width 300px
17765 and fall back on that number if none is found.
17767 When set to nil, try to get the width from an #+ATTR.* keyword
17768 and fall back on the original width if none is found.
17770 This requires Emacs >= 24.1, build with imagemagick support."
17771 :group 'org-appearance
17772 :version "24.4"
17773 :package-version '(Org . "8.0")
17774 :type '(choice
17775 (const :tag "Use the image width" t)
17776 (integer :tag "Use a number of pixels")
17777 (list :tag "Use #+ATTR* or a number of pixels" (integer))
17778 (const :tag "Use #+ATTR* or don't resize" nil)))
17780 (defcustom org-agenda-inhibit-startup nil
17781 "Inhibit startup when preparing agenda buffers.
17782 When this variable is `t', the initialization of the Org agenda
17783 buffers is inhibited: e.g. the visibility state is not set, the
17784 tables are not re-aligned, etc."
17785 :type 'boolean
17786 :version "24.3"
17787 :group 'org-agenda)
17789 (defcustom org-agenda-ignore-drawer-properties nil
17790 "Avoid updating text properties when building the agenda.
17791 Properties are used to prepare buffers for effort estimates, appointments,
17792 and subtree-local categories.
17793 If you don't use these in the agenda, you can add them to this list and
17794 agenda building will be a bit faster.
17795 The value is a list, with zero or more of the symbols `effort', `appt',
17796 or `category'."
17797 :type '(set :greedy t
17798 (const effort)
17799 (const appt)
17800 (const category))
17801 :version "24.3"
17802 :group 'org-agenda)
17804 (defun org-duration-string-to-minutes (s &optional output-to-string)
17805 "Convert a duration string S to minutes.
17807 A bare number is interpreted as minutes, modifiers can be set by
17808 customizing `org-effort-durations' (which see).
17810 Entries containing a colon are interpreted as H:MM by
17811 `org-hh:mm-string-to-minutes'."
17812 (let ((result 0)
17813 (re (concat "\\([0-9.]+\\) *\\("
17814 (regexp-opt (mapcar 'car org-effort-durations))
17815 "\\)")))
17816 (while (string-match re s)
17817 (incf result (* (cdr (assoc (match-string 2 s) org-effort-durations))
17818 (string-to-number (match-string 1 s))))
17819 (setq s (replace-match "" nil t s)))
17820 (setq result (floor result))
17821 (incf result (org-hh:mm-string-to-minutes s))
17822 (if output-to-string (number-to-string result) result)))
17824 ;;;; Files
17826 (defun org-save-all-org-buffers ()
17827 "Save all Org-mode buffers without user confirmation."
17828 (interactive)
17829 (message "Saving all Org-mode buffers...")
17830 (save-some-buffers t (lambda () (derived-mode-p 'org-mode)))
17831 (when (featurep 'org-id) (org-id-locations-save))
17832 (message "Saving all Org-mode buffers... done"))
17834 (defun org-revert-all-org-buffers ()
17835 "Revert all Org-mode buffers.
17836 Prompt for confirmation when there are unsaved changes.
17837 Be sure you know what you are doing before letting this function
17838 overwrite your changes.
17840 This function is useful in a setup where one tracks org files
17841 with a version control system, to revert on one machine after pulling
17842 changes from another. I believe the procedure must be like this:
17844 1. M-x org-save-all-org-buffers
17845 2. Pull changes from the other machine, resolve conflicts
17846 3. M-x org-revert-all-org-buffers"
17847 (interactive)
17848 (unless (yes-or-no-p "Revert all Org buffers from their files? ")
17849 (user-error "Abort"))
17850 (save-excursion
17851 (save-window-excursion
17852 (mapc
17853 (lambda (b)
17854 (when (and (with-current-buffer b (derived-mode-p 'org-mode))
17855 (with-current-buffer b buffer-file-name))
17856 (org-pop-to-buffer-same-window b)
17857 (revert-buffer t 'no-confirm)))
17858 (buffer-list))
17859 (when (and (featurep 'org-id) org-id-track-globally)
17860 (org-id-locations-load)))))
17862 ;;;; Agenda files
17864 ;;;###autoload
17865 (defun org-switchb (&optional arg)
17866 "Switch between Org buffers.
17867 With one prefix argument, restrict available buffers to files.
17868 With two prefix arguments, restrict available buffers to agenda files.
17870 Defaults to `iswitchb' for buffer name completion.
17871 Set `org-completion-use-ido' to make it use ido instead."
17872 (interactive "P")
17873 (let ((blist (cond ((equal arg '(4)) (org-buffer-list 'files))
17874 ((equal arg '(16)) (org-buffer-list 'agenda))
17875 (t (org-buffer-list))))
17876 (org-completion-use-iswitchb org-completion-use-iswitchb)
17877 (org-completion-use-ido org-completion-use-ido))
17878 (unless (or org-completion-use-ido org-completion-use-iswitchb)
17879 (setq org-completion-use-iswitchb t))
17880 (org-pop-to-buffer-same-window
17881 (org-icompleting-read "Org buffer: "
17882 (mapcar 'list (mapcar 'buffer-name blist))
17883 nil t))))
17885 ;;; Define some older names previously used for this functionality
17886 ;;;###autoload
17887 (defalias 'org-ido-switchb 'org-switchb)
17888 ;;;###autoload
17889 (defalias 'org-iswitchb 'org-switchb)
17891 (defun org-buffer-list (&optional predicate exclude-tmp)
17892 "Return a list of Org buffers.
17893 PREDICATE can be `export', `files' or `agenda'.
17895 export restrict the list to Export buffers.
17896 files restrict the list to buffers visiting Org files.
17897 agenda restrict the list to buffers visiting agenda files.
17899 If EXCLUDE-TMP is non-nil, ignore temporary buffers."
17900 (let* ((bfn nil)
17901 (agenda-files (and (eq predicate 'agenda)
17902 (mapcar 'file-truename (org-agenda-files t))))
17903 (filter
17904 (cond
17905 ((eq predicate 'files)
17906 (lambda (b) (with-current-buffer b (derived-mode-p 'org-mode))))
17907 ((eq predicate 'export)
17908 (lambda (b) (string-match "\*Org .*Export" (buffer-name b))))
17909 ((eq predicate 'agenda)
17910 (lambda (b)
17911 (with-current-buffer b
17912 (and (derived-mode-p 'org-mode)
17913 (setq bfn (buffer-file-name b))
17914 (member (file-truename bfn) agenda-files)))))
17915 (t (lambda (b) (with-current-buffer b
17916 (or (derived-mode-p 'org-mode)
17917 (string-match "\*Org .*Export"
17918 (buffer-name b)))))))))
17919 (delq nil
17920 (mapcar
17921 (lambda(b)
17922 (if (and (funcall filter b)
17923 (or (not exclude-tmp)
17924 (not (string-match "tmp" (buffer-name b)))))
17926 nil))
17927 (buffer-list)))))
17929 (defun org-agenda-files (&optional unrestricted archives)
17930 "Get the list of agenda files.
17931 Optional UNRESTRICTED means return the full list even if a restriction
17932 is currently in place.
17933 When ARCHIVES is t, include all archive files that are really being
17934 used by the agenda files. If ARCHIVE is `ifmode', do this only if
17935 `org-agenda-archives-mode' is t."
17936 (let ((files
17937 (cond
17938 ((and (not unrestricted) (get 'org-agenda-files 'org-restrict)))
17939 ((stringp org-agenda-files) (org-read-agenda-file-list))
17940 ((listp org-agenda-files) org-agenda-files)
17941 (t (error "Invalid value of `org-agenda-files'")))))
17942 (setq files (apply 'append
17943 (mapcar (lambda (f)
17944 (if (file-directory-p f)
17945 (directory-files
17946 f t org-agenda-file-regexp)
17947 (list f)))
17948 files)))
17949 (when org-agenda-skip-unavailable-files
17950 (setq files (delq nil
17951 (mapcar (function
17952 (lambda (file)
17953 (and (file-readable-p file) file)))
17954 files))))
17955 (when (or (eq archives t)
17956 (and (eq archives 'ifmode) (eq org-agenda-archives-mode t)))
17957 (setq files (org-add-archive-files files)))
17958 files))
17960 (defun org-agenda-file-p (&optional file)
17961 "Return non-nil, if FILE is an agenda file.
17962 If FILE is omitted, use the file associated with the current
17963 buffer."
17964 (member (or file (buffer-file-name))
17965 (org-agenda-files t)))
17967 (defun org-edit-agenda-file-list ()
17968 "Edit the list of agenda files.
17969 Depending on setup, this either uses customize to edit the variable
17970 `org-agenda-files', or it visits the file that is holding the list. In the
17971 latter case, the buffer is set up in a way that saving it automatically kills
17972 the buffer and restores the previous window configuration."
17973 (interactive)
17974 (if (stringp org-agenda-files)
17975 (let ((cw (current-window-configuration)))
17976 (find-file org-agenda-files)
17977 (org-set-local 'org-window-configuration cw)
17978 (org-add-hook 'after-save-hook
17979 (lambda ()
17980 (set-window-configuration
17981 (prog1 org-window-configuration
17982 (kill-buffer (current-buffer))))
17983 (org-install-agenda-files-menu)
17984 (message "New agenda file list installed"))
17985 nil 'local)
17986 (message "%s" (substitute-command-keys
17987 "Edit list and finish with \\[save-buffer]")))
17988 (customize-variable 'org-agenda-files)))
17990 (defun org-store-new-agenda-file-list (list)
17991 "Set new value for the agenda file list and save it correctly."
17992 (if (stringp org-agenda-files)
17993 (let ((fe (org-read-agenda-file-list t)) b u)
17994 (while (setq b (find-buffer-visiting org-agenda-files))
17995 (kill-buffer b))
17996 (with-temp-file org-agenda-files
17997 (insert
17998 (mapconcat
17999 (lambda (f) ;; Keep un-expanded entries.
18000 (if (setq u (assoc f fe))
18001 (cdr u)
18003 list "\n")
18004 "\n")))
18005 (let ((org-mode-hook nil) (org-inhibit-startup t)
18006 (org-insert-mode-line-in-empty-file nil))
18007 (setq org-agenda-files list)
18008 (customize-save-variable 'org-agenda-files org-agenda-files))))
18010 (defun org-read-agenda-file-list (&optional pair-with-expansion)
18011 "Read the list of agenda files from a file.
18012 If PAIR-WITH-EXPANSION is t return pairs with un-expanded
18013 filenames, used by `org-store-new-agenda-file-list' to write back
18014 un-expanded file names."
18015 (when (file-directory-p org-agenda-files)
18016 (error "`org-agenda-files' cannot be a single directory"))
18017 (when (stringp org-agenda-files)
18018 (with-temp-buffer
18019 (insert-file-contents org-agenda-files)
18020 (mapcar
18021 (lambda (f)
18022 (let ((e (expand-file-name (substitute-in-file-name f)
18023 org-directory)))
18024 (if pair-with-expansion
18025 (cons e f)
18026 e)))
18027 (org-split-string (buffer-string) "[ \t\r\n]*?[\r\n][ \t\r\n]*")))))
18029 ;;;###autoload
18030 (defun org-cycle-agenda-files ()
18031 "Cycle through the files in `org-agenda-files'.
18032 If the current buffer visits an agenda file, find the next one in the list.
18033 If the current buffer does not, find the first agenda file."
18034 (interactive)
18035 (let* ((fs (org-agenda-files t))
18036 (files (append fs (list (car fs))))
18037 (tcf (if buffer-file-name (file-truename buffer-file-name)))
18038 file)
18039 (unless files (user-error "No agenda files"))
18040 (catch 'exit
18041 (while (setq file (pop files))
18042 (if (equal (file-truename file) tcf)
18043 (when (car files)
18044 (find-file (car files))
18045 (throw 'exit t))))
18046 (find-file (car fs)))
18047 (if (buffer-base-buffer) (org-pop-to-buffer-same-window (buffer-base-buffer)))))
18049 (defun org-agenda-file-to-front (&optional to-end)
18050 "Move/add the current file to the top of the agenda file list.
18051 If the file is not present in the list, it is added to the front. If it is
18052 present, it is moved there. With optional argument TO-END, add/move to the
18053 end of the list."
18054 (interactive "P")
18055 (let ((org-agenda-skip-unavailable-files nil)
18056 (file-alist (mapcar (lambda (x)
18057 (cons (file-truename x) x))
18058 (org-agenda-files t)))
18059 (ctf (file-truename
18060 (or buffer-file-name
18061 (user-error "Please save the current buffer to a file"))))
18062 x had)
18063 (setq x (assoc ctf file-alist) had x)
18065 (if (not x) (setq x (cons ctf (abbreviate-file-name buffer-file-name))))
18066 (if to-end
18067 (setq file-alist (append (delq x file-alist) (list x)))
18068 (setq file-alist (cons x (delq x file-alist))))
18069 (org-store-new-agenda-file-list (mapcar 'cdr file-alist))
18070 (org-install-agenda-files-menu)
18071 (message "File %s to %s of agenda file list"
18072 (if had "moved" "added") (if to-end "end" "front"))))
18074 (defun org-remove-file (&optional file)
18075 "Remove current file from the list of files in variable `org-agenda-files'.
18076 These are the files which are being checked for agenda entries.
18077 Optional argument FILE means use this file instead of the current."
18078 (interactive)
18079 (let* ((org-agenda-skip-unavailable-files nil)
18080 (file (or file buffer-file-name
18081 (user-error "Current buffer does not visit a file")))
18082 (true-file (file-truename file))
18083 (afile (abbreviate-file-name file))
18084 (files (delq nil (mapcar
18085 (lambda (x)
18086 (if (equal true-file
18087 (file-truename x))
18088 nil x))
18089 (org-agenda-files t)))))
18090 (if (not (= (length files) (length (org-agenda-files t))))
18091 (progn
18092 (org-store-new-agenda-file-list files)
18093 (org-install-agenda-files-menu)
18094 (message "Removed from Org Agenda list: %s" afile))
18095 (message "File was not in list: %s (not removed)" afile))))
18097 (defun org-file-menu-entry (file)
18098 (vector file (list 'find-file file) t))
18100 (defun org-check-agenda-file (file)
18101 "Make sure FILE exists. If not, ask user what to do."
18102 (when (not (file-exists-p file))
18103 (message "Non-existent agenda file %s. [R]emove from list or [A]bort?"
18104 (abbreviate-file-name file))
18105 (let ((r (downcase (read-char-exclusive))))
18106 (cond
18107 ((equal r ?r)
18108 (org-remove-file file)
18109 (throw 'nextfile t))
18110 (t (error "Abort"))))))
18112 (defun org-get-agenda-file-buffer (file)
18113 "Get a buffer visiting FILE. If the buffer needs to be created, add
18114 it to the list of buffers which might be released later."
18115 (let ((buf (org-find-base-buffer-visiting file)))
18116 (if buf
18117 buf ; just return it
18118 ;; Make a new buffer and remember it
18119 (setq buf (find-file-noselect file))
18120 (if buf (push buf org-agenda-new-buffers))
18121 buf)))
18123 (defun org-release-buffers (blist)
18124 "Release all buffers in list, asking the user for confirmation when needed.
18125 When a buffer is unmodified, it is just killed. When modified, it is saved
18126 \(if the user agrees) and then killed."
18127 (let (buf file)
18128 (while (setq buf (pop blist))
18129 (setq file (buffer-file-name buf))
18130 (when (and (buffer-modified-p buf)
18131 file
18132 (y-or-n-p (format "Save file %s? " file)))
18133 (with-current-buffer buf (save-buffer)))
18134 (kill-buffer buf))))
18136 (defun org-agenda-prepare-buffers (files)
18137 "Create buffers for all agenda files, protect archived trees and comments."
18138 (interactive)
18139 (let ((pa '(:org-archived t))
18140 (pc '(:org-comment t))
18141 (pall '(:org-archived t :org-comment t))
18142 (inhibit-read-only t)
18143 (org-inhibit-startup org-agenda-inhibit-startup)
18144 (rea (concat ":" org-archive-tag ":"))
18145 file re pos)
18146 (setq org-tag-alist-for-agenda nil
18147 org-tag-groups-alist-for-agenda nil)
18148 (save-excursion
18149 (save-restriction
18150 (while (setq file (pop files))
18151 (catch 'nextfile
18152 (if (bufferp file)
18153 (set-buffer file)
18154 (org-check-agenda-file file)
18155 (set-buffer (org-get-agenda-file-buffer file)))
18156 (widen)
18157 (org-set-regexps-and-options-for-tags)
18158 (setq pos (point))
18159 (goto-char (point-min))
18160 (let ((case-fold-search t))
18161 (when (search-forward "#+setupfile" nil t)
18162 ;; Don't set all regexps and options systematically as
18163 ;; this is only run for setting agenda tags from setup
18164 ;; file
18165 (org-set-regexps-and-options)))
18166 (or (memq 'category org-agenda-ignore-drawer-properties)
18167 (org-refresh-category-properties))
18168 (or (memq 'effort org-agenda-ignore-drawer-properties)
18169 (org-refresh-properties org-effort-property 'org-effort))
18170 (or (memq 'appt org-agenda-ignore-drawer-properties)
18171 (org-refresh-properties "APPT_WARNTIME" 'org-appt-warntime))
18172 (setq org-todo-keywords-for-agenda
18173 (append org-todo-keywords-for-agenda org-todo-keywords-1))
18174 (setq org-done-keywords-for-agenda
18175 (append org-done-keywords-for-agenda org-done-keywords))
18176 (setq org-todo-keyword-alist-for-agenda
18177 (append org-todo-keyword-alist-for-agenda org-todo-key-alist))
18178 (setq org-drawers-for-agenda
18179 (append org-drawers-for-agenda org-drawers))
18180 (setq org-tag-alist-for-agenda
18181 (org-uniquify
18182 (append org-tag-alist-for-agenda
18183 org-tag-alist
18184 org-tag-persistent-alist)))
18185 (if org-group-tags
18186 (setq org-tag-groups-alist-for-agenda
18187 (org-uniquify-alist
18188 (append org-tag-groups-alist-for-agenda org-tag-groups-alist))))
18189 (org-with-silent-modifications
18190 (save-excursion
18191 (remove-text-properties (point-min) (point-max) pall)
18192 (when org-agenda-skip-archived-trees
18193 (goto-char (point-min))
18194 (while (re-search-forward rea nil t)
18195 (if (org-at-heading-p t)
18196 (add-text-properties (point-at-bol) (org-end-of-subtree t) pa))))
18197 (goto-char (point-min))
18198 (setq re (format org-heading-keyword-regexp-format
18199 org-comment-string))
18200 (while (re-search-forward re nil t)
18201 (add-text-properties
18202 (match-beginning 0) (org-end-of-subtree t) pc))))
18203 (goto-char pos)))))
18204 (setq org-todo-keywords-for-agenda
18205 (org-uniquify org-todo-keywords-for-agenda))
18206 (setq org-todo-keyword-alist-for-agenda
18207 (org-uniquify org-todo-keyword-alist-for-agenda))))
18210 ;;;; CDLaTeX minor mode
18212 (defvar org-cdlatex-mode-map (make-sparse-keymap)
18213 "Keymap for the minor `org-cdlatex-mode'.")
18215 (org-defkey org-cdlatex-mode-map "_" 'org-cdlatex-underscore-caret)
18216 (org-defkey org-cdlatex-mode-map "^" 'org-cdlatex-underscore-caret)
18217 (org-defkey org-cdlatex-mode-map "`" 'cdlatex-math-symbol)
18218 (org-defkey org-cdlatex-mode-map "'" 'org-cdlatex-math-modify)
18219 (org-defkey org-cdlatex-mode-map "\C-c{" 'cdlatex-environment)
18221 (defvar org-cdlatex-texmathp-advice-is-done nil
18222 "Flag remembering if we have applied the advice to texmathp already.")
18224 (define-minor-mode org-cdlatex-mode
18225 "Toggle the minor `org-cdlatex-mode'.
18226 This mode supports entering LaTeX environment and math in LaTeX fragments
18227 in Org-mode.
18228 \\{org-cdlatex-mode-map}"
18229 nil " OCDL" nil
18230 (when org-cdlatex-mode
18231 (require 'cdlatex)
18232 (run-hooks 'cdlatex-mode-hook)
18233 (cdlatex-compute-tables))
18234 (unless org-cdlatex-texmathp-advice-is-done
18235 (setq org-cdlatex-texmathp-advice-is-done t)
18236 (defadvice texmathp (around org-math-always-on activate)
18237 "Always return t in org-mode buffers.
18238 This is because we want to insert math symbols without dollars even outside
18239 the LaTeX math segments. If Orgmode thinks that point is actually inside
18240 an embedded LaTeX fragment, let texmathp do its job.
18241 \\[org-cdlatex-mode-map]"
18242 (interactive)
18243 (let (p)
18244 (cond
18245 ((not (derived-mode-p 'org-mode)) ad-do-it)
18246 ((eq this-command 'cdlatex-math-symbol)
18247 (setq ad-return-value t
18248 texmathp-why '("cdlatex-math-symbol in org-mode" . 0)))
18250 (let ((p (org-inside-LaTeX-fragment-p)))
18251 (if (and p (member (car p) (plist-get org-format-latex-options :matchers)))
18252 (setq ad-return-value t
18253 texmathp-why '("Org-mode embedded math" . 0))
18254 (if p ad-do-it)))))))))
18256 (defun turn-on-org-cdlatex ()
18257 "Unconditionally turn on `org-cdlatex-mode'."
18258 (org-cdlatex-mode 1))
18260 (defun org-try-cdlatex-tab ()
18261 "Check if it makes sense to execute `cdlatex-tab', and do it if yes.
18262 It makes sense to do so if `org-cdlatex-mode' is active and if the cursor is
18263 - inside a LaTeX fragment, or
18264 - after the first word in a line, where an abbreviation expansion could
18265 insert a LaTeX environment."
18266 (when org-cdlatex-mode
18267 (cond
18268 ;; Before any word on the line: No expansion possible.
18269 ((save-excursion (skip-chars-backward " \t") (bolp)) nil)
18270 ;; Just after first word on the line: Expand it. Make sure it
18271 ;; cannot happen on headlines, though.
18272 ((save-excursion
18273 (skip-chars-backward "a-zA-Z0-9*")
18274 (skip-chars-backward " \t")
18275 (and (bolp) (not (org-at-heading-p))))
18276 (cdlatex-tab) t)
18277 ((org-inside-LaTeX-fragment-p) (cdlatex-tab) t))))
18279 (defun org-cdlatex-underscore-caret (&optional arg)
18280 "Execute `cdlatex-sub-superscript' in LaTeX fragments.
18281 Revert to the normal definition outside of these fragments."
18282 (interactive "P")
18283 (if (org-inside-LaTeX-fragment-p)
18284 (call-interactively 'cdlatex-sub-superscript)
18285 (let (org-cdlatex-mode)
18286 (call-interactively (key-binding (vector last-input-event))))))
18288 (defun org-cdlatex-math-modify (&optional arg)
18289 "Execute `cdlatex-math-modify' in LaTeX fragments.
18290 Revert to the normal definition outside of these fragments."
18291 (interactive "P")
18292 (if (org-inside-LaTeX-fragment-p)
18293 (call-interactively 'cdlatex-math-modify)
18294 (let (org-cdlatex-mode)
18295 (call-interactively (key-binding (vector last-input-event))))))
18299 ;;;; LaTeX fragments
18301 (defvar org-latex-regexps
18302 '(("begin" "^[ \t]*\\(\\\\begin{\\([a-zA-Z0-9\\*]+\\)[^\000]+?\\\\end{\\2}\\)" 1 t)
18303 ;; ("$" "\\([ (]\\|^\\)\\(\\(\\([$]\\)\\([^ \r\n,.$].*?\\(\n.*?\\)\\{0,5\\}[^ \r\n,.$]\\)\\4\\)\\)\\([ .,?;:'\")]\\|$\\)" 2 nil)
18304 ;; \000 in the following regex is needed for org-inside-LaTeX-fragment-p
18305 ("$1" "\\([^$]\\|^\\)\\(\\$[^ \r\n,;.$]\\$\\)\\([- .,?;:'\")\000]\\|$\\)" 2 nil)
18306 ("$" "\\([^$]\\|^\\)\\(\\(\\$\\([^ \r\n,;.$][^$\n\r]*?\\(\n[^$\n\r]*?\\)\\{0,2\\}[^ \r\n,.$]\\)\\$\\)\\)\\([- .,?;:'\")\000]\\|$\\)" 2 nil)
18307 ("\\(" "\\\\([^\000]*?\\\\)" 0 nil)
18308 ("\\[" "\\\\\\[[^\000]*?\\\\\\]" 0 nil)
18309 ("$$" "\\$\\$[^\000]*?\\$\\$" 0 nil))
18310 "Regular expressions for matching embedded LaTeX.")
18312 (defun org-inside-LaTeX-fragment-p ()
18313 "Test if point is inside a LaTeX fragment.
18314 I.e. after a \\begin, \\(, \\[, $, or $$, without the corresponding closing
18315 sequence appearing also before point.
18316 Even though the matchers for math are configurable, this function assumes
18317 that \\begin, \\(, \\[, and $$ are always used. Only the single dollar
18318 delimiters are skipped when they have been removed by customization.
18319 The return value is nil, or a cons cell with the delimiter and the
18320 position of this delimiter.
18322 This function does a reasonably good job, but can locally be fooled by
18323 for example currency specifications. For example it will assume being in
18324 inline math after \"$22.34\". The LaTeX fragment formatter will only format
18325 fragments that are properly closed, but during editing, we have to live
18326 with the uncertainty caused by missing closing delimiters. This function
18327 looks only before point, not after."
18328 (catch 'exit
18329 (let ((pos (point))
18330 (dodollar (member "$" (plist-get org-format-latex-options :matchers)))
18331 (lim (progn
18332 (re-search-backward (concat "^\\(" paragraph-start "\\)") nil t)
18333 (point)))
18334 dd-on str (start 0) m re)
18335 (goto-char pos)
18336 (when dodollar
18337 (setq str (concat (buffer-substring lim (point)) "\000 X$.")
18338 re (nth 1 (assoc "$" org-latex-regexps)))
18339 (while (string-match re str start)
18340 (cond
18341 ((= (match-end 0) (length str))
18342 (throw 'exit (cons "$" (+ lim (match-beginning 0) 1))))
18343 ((= (match-end 0) (- (length str) 5))
18344 (throw 'exit nil))
18345 (t (setq start (match-end 0))))))
18346 (when (setq m (re-search-backward "\\(\\\\begin{[^}]*}\\|\\\\(\\|\\\\\\[\\)\\|\\(\\\\end{[^}]*}\\|\\\\)\\|\\\\\\]\\)\\|\\(\\$\\$\\)" lim t))
18347 (goto-char pos)
18348 (and (match-beginning 1) (throw 'exit (cons (match-string 1) m)))
18349 (and (match-beginning 2) (throw 'exit nil))
18350 ;; count $$
18351 (while (re-search-backward "\\$\\$" lim t)
18352 (setq dd-on (not dd-on)))
18353 (goto-char pos)
18354 (if dd-on (cons "$$" m))))))
18356 (defun org-inside-latex-macro-p ()
18357 "Is point inside a LaTeX macro or its arguments?"
18358 (save-match-data
18359 (org-in-regexp
18360 "\\\\[a-zA-Z]+\\*?\\(\\(\\[[^][\n{}]*\\]\\)\\|\\({[^{}\n]*}\\)\\)*")))
18362 (defvar org-latex-fragment-image-overlays nil
18363 "List of overlays carrying the images of latex fragments.")
18364 (make-variable-buffer-local 'org-latex-fragment-image-overlays)
18366 (defun org-remove-latex-fragment-image-overlays ()
18367 "Remove all overlays with LaTeX fragment images in current buffer."
18368 (mapc 'delete-overlay org-latex-fragment-image-overlays)
18369 (setq org-latex-fragment-image-overlays nil))
18371 (defun org-preview-latex-fragment (&optional subtree)
18372 "Preview the LaTeX fragment at point, or all locally or globally.
18373 If the cursor is in a LaTeX fragment, create the image and overlay
18374 it over the source code. If there is no fragment at point, display
18375 all fragments in the current text, from one headline to the next. With
18376 prefix SUBTREE, display all fragments in the current subtree. With a
18377 double prefix arg \\[universal-argument] \\[universal-argument], or when \
18378 the cursor is before the first headline,
18379 display all fragments in the buffer.
18380 The images can be removed again with \\[org-ctrl-c-ctrl-c]."
18381 (interactive "P")
18382 (unless buffer-file-name
18383 (user-error "Can't preview LaTeX fragment in a non-file buffer"))
18384 (when (display-graphic-p)
18385 (org-remove-latex-fragment-image-overlays)
18386 (save-excursion
18387 (save-restriction
18388 (let (beg end at msg)
18389 (cond
18390 ((or (equal subtree '(16))
18391 (not (save-excursion
18392 (re-search-backward org-outline-regexp-bol nil t))))
18393 (setq beg (point-min) end (point-max)
18394 msg "Creating images for buffer...%s"))
18395 ((equal subtree '(4))
18396 (org-back-to-heading)
18397 (setq beg (point) end (org-end-of-subtree t)
18398 msg "Creating images for subtree...%s"))
18400 (if (setq at (org-inside-LaTeX-fragment-p))
18401 (goto-char (max (point-min) (- (cdr at) 2)))
18402 (org-back-to-heading))
18403 (setq beg (point) end (progn (outline-next-heading) (point))
18404 msg (if at "Creating image...%s"
18405 "Creating images for entry...%s"))))
18406 (message msg "")
18407 (narrow-to-region beg end)
18408 (goto-char beg)
18409 (org-format-latex
18410 (concat org-latex-preview-ltxpng-directory (file-name-sans-extension
18411 (file-name-nondirectory
18412 buffer-file-name)))
18413 default-directory 'overlays msg at 'forbuffer
18414 org-latex-create-formula-image-program)
18415 (message msg "done. Use `C-c C-c' to remove images."))))))
18417 (defun org-format-latex (prefix &optional dir overlays msg at
18418 forbuffer processing-type)
18419 "Replace LaTeX fragments with links to an image, and produce images.
18420 Some of the options can be changed using the variable
18421 `org-format-latex-options'."
18422 (if (and overlays (fboundp 'clear-image-cache)) (clear-image-cache))
18423 (let* ((prefixnodir (file-name-nondirectory prefix))
18424 (absprefix (expand-file-name prefix dir))
18425 (todir (file-name-directory absprefix))
18426 (opt org-format-latex-options)
18427 (optnew org-format-latex-options)
18428 (matchers (plist-get opt :matchers))
18429 (re-list org-latex-regexps)
18430 (cnt 0) txt hash link beg end re e checkdir
18431 string
18432 m n block-type block linkfile movefile ov)
18433 ;; Check the different regular expressions
18434 (while (setq e (pop re-list))
18435 (setq m (car e) re (nth 1 e) n (nth 2 e) block-type (nth 3 e)
18436 block (if block-type "\n\n" ""))
18437 (when (member m matchers)
18438 (goto-char (point-min))
18439 (while (re-search-forward re nil t)
18440 (when (and (or (not at) (equal (cdr at) (match-beginning n)))
18441 (or (not overlays)
18442 (not (eq (get-char-property (match-beginning n)
18443 'org-overlay-type)
18444 'org-latex-overlay))))
18445 (cond
18446 ((eq processing-type 'verbatim))
18447 ((eq processing-type 'mathjax)
18448 ;; Prepare for MathJax processing.
18449 (setq string (match-string n))
18450 (when (member m '("$" "$1"))
18451 (save-excursion
18452 (delete-region (match-beginning n) (match-end n))
18453 (goto-char (match-beginning n))
18454 (insert (concat "\\(" (substring string 1 -1) "\\)")))))
18455 ((or (eq processing-type 'dvipng)
18456 (eq processing-type 'imagemagick))
18457 ;; Process to an image.
18458 (setq txt (match-string n)
18459 beg (match-beginning n) end (match-end n)
18460 cnt (1+ cnt))
18461 (let ((face (face-at-point))
18462 (fg (plist-get opt :foreground))
18463 (bg (plist-get opt :background))
18464 ;; Ensure full list is printed.
18465 print-length print-level)
18466 (when forbuffer
18467 ;; Get the colors from the face at point.
18468 (goto-char beg)
18469 (when (eq fg 'auto)
18470 (setq fg (face-attribute face :foreground nil 'default)))
18471 (when (eq bg 'auto)
18472 (setq bg (face-attribute face :background nil 'default)))
18473 (setq optnew (copy-sequence opt))
18474 (plist-put optnew :foreground fg)
18475 (plist-put optnew :background bg))
18476 (setq hash (sha1 (prin1-to-string
18477 (list org-format-latex-header
18478 org-latex-default-packages-alist
18479 org-latex-packages-alist
18480 org-format-latex-options
18481 forbuffer txt fg bg)))
18482 linkfile (format "%s_%s.png" prefix hash)
18483 movefile (format "%s_%s.png" absprefix hash)))
18484 (setq link (concat block "[[file:" linkfile "]]" block))
18485 (if msg (message msg cnt))
18486 (goto-char beg)
18487 (unless checkdir ; Ensure the directory exists.
18488 (setq checkdir t)
18489 (or (file-directory-p todir) (make-directory todir t)))
18490 (unless (file-exists-p movefile)
18491 (org-create-formula-image
18492 txt movefile optnew forbuffer processing-type))
18493 (if overlays
18494 (progn
18495 (mapc (lambda (o)
18496 (if (eq (overlay-get o 'org-overlay-type)
18497 'org-latex-overlay)
18498 (delete-overlay o)))
18499 (overlays-in beg end))
18500 (setq ov (make-overlay beg end))
18501 (overlay-put ov 'org-overlay-type 'org-latex-overlay)
18502 (if (featurep 'xemacs)
18503 (progn
18504 (overlay-put ov 'invisible t)
18505 (overlay-put
18506 ov 'end-glyph
18507 (make-glyph (vector 'png :file movefile))))
18508 (overlay-put
18509 ov 'display
18510 (list 'image :type 'png :file movefile :ascent 'center)))
18511 (push ov org-latex-fragment-image-overlays)
18512 (goto-char end))
18513 (delete-region beg end)
18514 (insert (org-add-props link
18515 (list 'org-latex-src
18516 (replace-regexp-in-string
18517 "\"" "" txt)
18518 'org-latex-src-embed-type
18519 (if block-type 'paragraph 'character))))))
18520 ((eq processing-type 'mathml)
18521 ;; Process to MathML
18522 (unless (save-match-data (org-format-latex-mathml-available-p))
18523 (user-error "LaTeX to MathML converter not configured"))
18524 (setq txt (match-string n)
18525 beg (match-beginning n) end (match-end n)
18526 cnt (1+ cnt))
18527 (if msg (message msg cnt))
18528 (goto-char beg)
18529 (delete-region beg end)
18530 (insert (org-format-latex-as-mathml
18531 txt block-type prefix dir)))
18533 (error "Unknown conversion type %s for LaTeX fragments"
18534 processing-type)))))))))
18536 (defun org-create-math-formula (latex-frag &optional mathml-file)
18537 "Convert LATEX-FRAG to MathML and store it in MATHML-FILE.
18538 Use `org-latex-to-mathml-convert-command'. If the conversion is
18539 sucessful, return the portion between \"<math...> </math>\"
18540 elements otherwise return nil. When MATHML-FILE is specified,
18541 write the results in to that file. When invoked as an
18542 interactive command, prompt for LATEX-FRAG, with initial value
18543 set to the current active region and echo the results for user
18544 inspection."
18545 (interactive (list (let ((frag (when (org-region-active-p)
18546 (buffer-substring-no-properties
18547 (region-beginning) (region-end)))))
18548 (read-string "LaTeX Fragment: " frag nil frag))))
18549 (unless latex-frag (error "Invalid LaTeX fragment"))
18550 (let* ((tmp-in-file (file-relative-name
18551 (make-temp-name (expand-file-name "ltxmathml-in"))))
18552 (ignore (write-region latex-frag nil tmp-in-file))
18553 (tmp-out-file (file-relative-name
18554 (make-temp-name (expand-file-name "ltxmathml-out"))))
18555 (cmd (format-spec
18556 org-latex-to-mathml-convert-command
18557 `((?j . ,(shell-quote-argument
18558 (expand-file-name org-latex-to-mathml-jar-file)))
18559 (?I . ,(shell-quote-argument tmp-in-file))
18560 (?o . ,(shell-quote-argument tmp-out-file)))))
18561 mathml shell-command-output)
18562 (when (org-called-interactively-p 'any)
18563 (unless (org-format-latex-mathml-available-p)
18564 (user-error "LaTeX to MathML converter not configured")))
18565 (message "Running %s" cmd)
18566 (setq shell-command-output (shell-command-to-string cmd))
18567 (setq mathml
18568 (when (file-readable-p tmp-out-file)
18569 (with-current-buffer (find-file-noselect tmp-out-file t)
18570 (goto-char (point-min))
18571 (when (re-search-forward
18572 (concat
18573 (regexp-quote
18574 "<math xmlns=\"http://www.w3.org/1998/Math/MathML\">")
18575 "\\(.\\|\n\\)*"
18576 (regexp-quote "</math>")) nil t)
18577 (prog1 (match-string 0) (kill-buffer))))))
18578 (cond
18579 (mathml
18580 (setq mathml
18581 (concat "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" mathml))
18582 (when mathml-file
18583 (write-region mathml nil mathml-file))
18584 (when (org-called-interactively-p 'any)
18585 (message mathml)))
18586 ((message "LaTeX to MathML conversion failed")
18587 (message shell-command-output)))
18588 (delete-file tmp-in-file)
18589 (when (file-exists-p tmp-out-file)
18590 (delete-file tmp-out-file))
18591 mathml))
18593 (defun org-format-latex-as-mathml (latex-frag latex-frag-type
18594 prefix &optional dir)
18595 "Use `org-create-math-formula' but check local cache first."
18596 (let* ((absprefix (expand-file-name prefix dir))
18597 (print-length nil) (print-level nil)
18598 (formula-id (concat
18599 "formula-"
18600 (sha1
18601 (prin1-to-string
18602 (list latex-frag
18603 org-latex-to-mathml-convert-command)))))
18604 (formula-cache (format "%s-%s.mathml" absprefix formula-id))
18605 (formula-cache-dir (file-name-directory formula-cache)))
18607 (unless (file-directory-p formula-cache-dir)
18608 (make-directory formula-cache-dir t))
18610 (unless (file-exists-p formula-cache)
18611 (org-create-math-formula latex-frag formula-cache))
18613 (if (file-exists-p formula-cache)
18614 ;; Successful conversion. Return the link to MathML file.
18615 (org-add-props
18616 (format "[[file:%s]]" (file-relative-name formula-cache dir))
18617 (list 'org-latex-src (replace-regexp-in-string "\"" "" latex-frag)
18618 'org-latex-src-embed-type (if latex-frag-type
18619 'paragraph 'character)))
18620 ;; Failed conversion. Return the LaTeX fragment verbatim
18621 latex-frag)))
18623 (defun org-create-formula-image (string tofile options buffer &optional type)
18624 "Create an image from LaTeX source using dvipng or convert.
18625 This function calls either `org-create-formula-image-with-dvipng'
18626 or `org-create-formula-image-with-imagemagick' depending on the
18627 value of `org-latex-create-formula-image-program' or on the value
18628 of the optional TYPE variable.
18630 Note: ultimately these two function should be combined as they
18631 share a good deal of logic."
18632 (org-check-external-command
18633 "latex" "needed to convert LaTeX fragments to images")
18634 (funcall
18635 (case (or type org-latex-create-formula-image-program)
18636 ('dvipng
18637 (org-check-external-command
18638 "dvipng" "needed to convert LaTeX fragments to images")
18639 #'org-create-formula-image-with-dvipng)
18640 ('imagemagick
18641 (org-check-external-command
18642 "convert" "you need to install imagemagick")
18643 #'org-create-formula-image-with-imagemagick)
18644 (t (error
18645 "Invalid value of `org-latex-create-formula-image-program'")))
18646 string tofile options buffer))
18648 (declare-function org-export-get-backend "ox" (name))
18649 (declare-function org-export--get-global-options "ox" (&optional backend))
18650 (declare-function org-export--get-inbuffer-options "ox" (&optional backend))
18651 (declare-function org-latex-guess-inputenc "ox-latex" (header))
18652 (declare-function org-latex-guess-babel-language "ox-latex" (header info))
18653 (defun org-create-formula--latex-header ()
18654 "Return LaTeX header appropriate for previewing a LaTeX snippet."
18655 (let ((info (org-combine-plists (org-export--get-global-options
18656 (org-export-get-backend 'latex))
18657 (org-export--get-inbuffer-options
18658 (org-export-get-backend 'latex)))))
18659 (org-latex-guess-babel-language
18660 (org-latex-guess-inputenc
18661 (org-splice-latex-header
18662 org-format-latex-header
18663 org-latex-default-packages-alist
18664 org-latex-packages-alist t
18665 (plist-get info :latex-header)))
18666 info)))
18668 ;; This function borrows from Ganesh Swami's latex2png.el
18669 (defun org-create-formula-image-with-dvipng (string tofile options buffer)
18670 "This calls dvipng."
18671 (require 'ox-latex)
18672 (let* ((tmpdir (if (featurep 'xemacs)
18673 (temp-directory)
18674 temporary-file-directory))
18675 (texfilebase (make-temp-name
18676 (expand-file-name "orgtex" tmpdir)))
18677 (texfile (concat texfilebase ".tex"))
18678 (dvifile (concat texfilebase ".dvi"))
18679 (pngfile (concat texfilebase ".png"))
18680 (fnh (if (featurep 'xemacs)
18681 (font-height (face-font 'default))
18682 (face-attribute 'default :height nil)))
18683 (scale (or (plist-get options (if buffer :scale :html-scale)) 1.0))
18684 (dpi (number-to-string (* scale (floor (* 0.9 (if buffer fnh 140.))))))
18685 (fg (or (plist-get options (if buffer :foreground :html-foreground))
18686 "Black"))
18687 (bg (or (plist-get options (if buffer :background :html-background))
18688 "Transparent")))
18689 (if (eq fg 'default) (setq fg (org-dvipng-color :foreground))
18690 (unless (string= fg "Transparent") (setq fg (org-dvipng-color-format fg))))
18691 (if (eq bg 'default) (setq bg (org-dvipng-color :background))
18692 (unless (string= bg "Transparent") (setq bg (org-dvipng-color-format bg))))
18693 (let ((latex-header (org-create-formula--latex-header)))
18694 (with-temp-file texfile
18695 (insert latex-header)
18696 (insert "\n\\begin{document}\n" string "\n\\end{document}\n")))
18697 (let ((dir default-directory))
18698 (condition-case nil
18699 (progn
18700 (cd tmpdir)
18701 (call-process "latex" nil nil nil texfile))
18702 (error nil))
18703 (cd dir))
18704 (if (not (file-exists-p dvifile))
18705 (progn (message "Failed to create dvi file from %s" texfile) nil)
18706 (condition-case nil
18707 (if (featurep 'xemacs)
18708 (call-process "dvipng" nil nil nil
18709 "-fg" fg "-bg" bg
18710 "-T" "tight"
18711 "-o" pngfile
18712 dvifile)
18713 (call-process "dvipng" nil nil nil
18714 "-fg" fg "-bg" bg
18715 "-D" dpi
18716 ;;"-x" scale "-y" scale
18717 "-T" "tight"
18718 "-o" pngfile
18719 dvifile))
18720 (error nil))
18721 (if (not (file-exists-p pngfile))
18722 (if org-format-latex-signal-error
18723 (error "Failed to create png file from %s" texfile)
18724 (message "Failed to create png file from %s" texfile)
18725 nil)
18726 ;; Use the requested file name and clean up
18727 (copy-file pngfile tofile 'replace)
18728 (loop for e in '(".dvi" ".tex" ".aux" ".log" ".png" ".out") do
18729 (if (file-exists-p (concat texfilebase e))
18730 (delete-file (concat texfilebase e))))
18731 pngfile))))
18733 (declare-function org-latex-compile "ox-latex" (texfile &optional snippet))
18734 (defun org-create-formula-image-with-imagemagick (string tofile options buffer)
18735 "This calls convert, which is included into imagemagick."
18736 (require 'ox-latex)
18737 (let* ((tmpdir (if (featurep 'xemacs)
18738 (temp-directory)
18739 temporary-file-directory))
18740 (texfilebase (make-temp-name
18741 (expand-file-name "orgtex" tmpdir)))
18742 (texfile (concat texfilebase ".tex"))
18743 (pdffile (concat texfilebase ".pdf"))
18744 (pngfile (concat texfilebase ".png"))
18745 (fnh (if (featurep 'xemacs)
18746 (font-height (face-font 'default))
18747 (face-attribute 'default :height nil)))
18748 (scale (or (plist-get options (if buffer :scale :html-scale)) 1.0))
18749 (dpi (number-to-string (* scale (floor (if buffer fnh 120.)))))
18750 (fg (or (plist-get options (if buffer :foreground :html-foreground))
18751 "black"))
18752 (bg (or (plist-get options (if buffer :background :html-background))
18753 "white")))
18754 (if (eq fg 'default) (setq fg (org-latex-color :foreground))
18755 (setq fg (org-latex-color-format fg)))
18756 (if (eq bg 'default) (setq bg (org-latex-color :background))
18757 (setq bg (org-latex-color-format
18758 (if (string= bg "Transparent") "white" bg))))
18759 (let ((latex-header (org-create-formula--latex-header)))
18760 (with-temp-file texfile
18761 (insert latex-header)
18762 (insert "\n\\begin{document}\n"
18763 "\\definecolor{fg}{rgb}{" fg "}\n"
18764 "\\definecolor{bg}{rgb}{" bg "}\n"
18765 "\n\\pagecolor{bg}\n"
18766 "\n{\\color{fg}\n"
18767 string
18768 "\n}\n"
18769 "\n\\end{document}\n")))
18770 (org-latex-compile texfile t)
18771 (if (not (file-exists-p pdffile))
18772 (progn (message "Failed to create pdf file from %s" texfile) nil)
18773 (condition-case nil
18774 (if (featurep 'xemacs)
18775 (call-process "convert" nil nil nil
18776 "-density" "96"
18777 "-trim"
18778 "-antialias"
18779 pdffile
18780 "-quality" "100"
18781 ;; "-sharpen" "0x1.0"
18782 pngfile)
18783 (call-process "convert" nil nil nil
18784 "-density" dpi
18785 "-trim"
18786 "-antialias"
18787 pdffile
18788 "-quality" "100"
18789 ;; "-sharpen" "0x1.0"
18790 pngfile))
18791 (error nil))
18792 (if (not (file-exists-p pngfile))
18793 (if org-format-latex-signal-error
18794 (error "Failed to create png file from %s" texfile)
18795 (message "Failed to create png file from %s" texfile)
18796 nil)
18797 ;; Use the requested file name and clean up
18798 (copy-file pngfile tofile 'replace)
18799 (loop for e in '(".pdf" ".tex" ".aux" ".log" ".png") do
18800 (if (file-exists-p (concat texfilebase e))
18801 (delete-file (concat texfilebase e))))
18802 pngfile))))
18804 (defun org-splice-latex-header (tpl def-pkg pkg snippets-p &optional extra)
18805 "Fill a LaTeX header template TPL.
18806 In the template, the following place holders will be recognized:
18808 [DEFAULT-PACKAGES] \\usepackage statements for DEF-PKG
18809 [NO-DEFAULT-PACKAGES] do not include DEF-PKG
18810 [PACKAGES] \\usepackage statements for PKG
18811 [NO-PACKAGES] do not include PKG
18812 [EXTRA] the string EXTRA
18813 [NO-EXTRA] do not include EXTRA
18815 For backward compatibility, if both the positive and the negative place
18816 holder is missing, the positive one (without the \"NO-\") will be
18817 assumed to be present at the end of the template.
18818 DEF-PKG and PKG are assumed to be alists of options/packagename lists.
18819 EXTRA is a string.
18820 SNIPPETS-P indicates if this is run to create snippet images for HTML."
18821 (let (rpl (end ""))
18822 (if (string-match "^[ \t]*\\[\\(NO-\\)?DEFAULT-PACKAGES\\][ \t]*\n?" tpl)
18823 (setq rpl (if (or (match-end 1) (not def-pkg))
18824 "" (org-latex-packages-to-string def-pkg snippets-p t))
18825 tpl (replace-match rpl t t tpl))
18826 (if def-pkg (setq end (org-latex-packages-to-string def-pkg snippets-p))))
18828 (if (string-match "\\[\\(NO-\\)?PACKAGES\\][ \t]*\n?" tpl)
18829 (setq rpl (if (or (match-end 1) (not pkg))
18830 "" (org-latex-packages-to-string pkg snippets-p t))
18831 tpl (replace-match rpl t t tpl))
18832 (if pkg (setq end
18833 (concat end "\n"
18834 (org-latex-packages-to-string pkg snippets-p)))))
18836 (if (string-match "\\[\\(NO-\\)?EXTRA\\][ \t]*\n?" tpl)
18837 (setq rpl (if (or (match-end 1) (not extra))
18838 "" (concat extra "\n"))
18839 tpl (replace-match rpl t t tpl))
18840 (if (and extra (string-match "\\S-" extra))
18841 (setq end (concat end "\n" extra))))
18843 (if (string-match "\\S-" end)
18844 (concat tpl "\n" end)
18845 tpl)))
18847 (defun org-latex-packages-to-string (pkg &optional snippets-p newline)
18848 "Turn an alist of packages into a string with the \\usepackage macros."
18849 (setq pkg (mapconcat (lambda(p)
18850 (cond
18851 ((stringp p) p)
18852 ((and snippets-p (>= (length p) 3) (not (nth 2 p)))
18853 (format "%% Package %s omitted" (cadr p)))
18854 ((equal "" (car p))
18855 (format "\\usepackage{%s}" (cadr p)))
18857 (format "\\usepackage[%s]{%s}"
18858 (car p) (cadr p)))))
18860 "\n"))
18861 (if newline (concat pkg "\n") pkg))
18863 (defun org-dvipng-color (attr)
18864 "Return a RGB color specification for dvipng."
18865 (apply 'format "rgb %s %s %s"
18866 (mapcar 'org-normalize-color
18867 (if (featurep 'xemacs)
18868 (color-rgb-components
18869 (face-property 'default
18870 (cond ((eq attr :foreground) 'foreground)
18871 ((eq attr :background) 'background))))
18872 (color-values (face-attribute 'default attr nil))))))
18874 (defun org-dvipng-color-format (color-name)
18875 "Convert COLOR-NAME to a RGB color value for dvipng."
18876 (apply 'format "rgb %s %s %s"
18877 (mapcar 'org-normalize-color
18878 (color-values color-name))))
18880 (defun org-latex-color (attr)
18881 "Return a RGB color for the LaTeX color package."
18882 (apply 'format "%s,%s,%s"
18883 (mapcar 'org-normalize-color
18884 (if (featurep 'xemacs)
18885 (color-rgb-components
18886 (face-property 'default
18887 (cond ((eq attr :foreground) 'foreground)
18888 ((eq attr :background) 'background))))
18889 (color-values (face-attribute 'default attr nil))))))
18891 (defun org-latex-color-format (color-name)
18892 "Convert COLOR-NAME to a RGB color value."
18893 (apply 'format "%s,%s,%s"
18894 (mapcar 'org-normalize-color
18895 (color-values color-name))))
18897 (defun org-normalize-color (value)
18898 "Return string to be used as color value for an RGB component."
18899 (format "%g" (/ value 65535.0)))
18903 ;; Image display
18905 (defvar org-inline-image-overlays nil)
18906 (make-variable-buffer-local 'org-inline-image-overlays)
18908 (defun org-toggle-inline-images (&optional include-linked)
18909 "Toggle the display of inline images.
18910 INCLUDE-LINKED is passed to `org-display-inline-images'."
18911 (interactive "P")
18912 (if org-inline-image-overlays
18913 (progn
18914 (org-remove-inline-images)
18915 (message "Inline image display turned off"))
18916 (org-display-inline-images include-linked)
18917 (if (and (org-called-interactively-p)
18918 org-inline-image-overlays)
18919 (message "%d images displayed inline"
18920 (length org-inline-image-overlays))
18921 (message "No images to display inline"))))
18923 (defun org-redisplay-inline-images ()
18924 "Refresh the display of inline images."
18925 (interactive)
18926 (if (not org-inline-image-overlays)
18927 (org-toggle-inline-images)
18928 (org-toggle-inline-images)
18929 (org-toggle-inline-images)))
18931 (defun org-display-inline-images (&optional include-linked refresh beg end)
18932 "Display inline images.
18933 Normally only links without a description part are inlined, because this
18934 is how it will work for export. When INCLUDE-LINKED is set, also links
18935 with a description part will be inlined. This can be nice for a quick
18936 look at those images, but it does not reflect what exported files will look
18937 like.
18938 When REFRESH is set, refresh existing images between BEG and END.
18939 This will create new image displays only if necessary.
18940 BEG and END default to the buffer boundaries."
18941 (interactive "P")
18942 (when (display-graphic-p)
18943 (unless refresh
18944 (org-remove-inline-images)
18945 (if (fboundp 'clear-image-cache) (clear-image-cache)))
18946 (save-excursion
18947 (save-restriction
18948 (widen)
18949 (setq beg (or beg (point-min)) end (or end (point-max)))
18950 (goto-char beg)
18951 (let ((re (concat "\\[\\[\\(\\(file:\\)\\|\\([./~]\\)\\)\\([^]\n]+?"
18952 (substring (org-image-file-name-regexp) 0 -2)
18953 "\\)\\]" (if include-linked "" "\\]")))
18954 (case-fold-search t)
18955 old file ov img type attrwidth width)
18956 (while (re-search-forward re end t)
18957 (setq old (get-char-property-and-overlay (match-beginning 1)
18958 'org-image-overlay)
18959 file (expand-file-name
18960 (concat (or (match-string 3) "") (match-string 4))))
18961 (when (image-type-available-p 'imagemagick)
18962 (setq attrwidth (if (or (listp org-image-actual-width)
18963 (null org-image-actual-width))
18964 (save-excursion
18965 (save-match-data
18966 (when (re-search-backward
18967 "#\\+attr.*:width[ \t]+\\([^ ]+\\)"
18968 (save-excursion
18969 (re-search-backward "^[ \t]*$\\|\\`" nil t)) t)
18970 (string-to-number (match-string 1))))))
18971 width (cond ((eq org-image-actual-width t) nil)
18972 ((null org-image-actual-width) attrwidth)
18973 ((numberp org-image-actual-width)
18974 org-image-actual-width)
18975 ((listp org-image-actual-width)
18976 (or attrwidth (car org-image-actual-width))))
18977 type (if width 'imagemagick)))
18978 (when (file-exists-p file)
18979 (if (and (car-safe old) refresh)
18980 (image-refresh (overlay-get (cdr old) 'display))
18981 (setq img (save-match-data (create-image file type nil :width width)))
18982 (when img
18983 (setq ov (make-overlay (match-beginning 0) (match-end 0)))
18984 (overlay-put ov 'display img)
18985 (overlay-put ov 'face 'default)
18986 (overlay-put ov 'org-image-overlay t)
18987 (overlay-put ov 'modification-hooks
18988 (list 'org-display-inline-remove-overlay))
18989 (push ov org-inline-image-overlays))))))))))
18991 (define-obsolete-function-alias
18992 'org-display-inline-modification-hook 'org-display-inline-remove-overlay "24.3")
18994 (defun org-display-inline-remove-overlay (ov after beg end &optional len)
18995 "Remove inline-display overlay if a corresponding region is modified."
18996 (let ((inhibit-modification-hooks t))
18997 (when (and ov after)
18998 (delete ov org-inline-image-overlays)
18999 (delete-overlay ov))))
19001 (defun org-remove-inline-images ()
19002 "Remove inline display of images."
19003 (interactive)
19004 (mapc 'delete-overlay org-inline-image-overlays)
19005 (setq org-inline-image-overlays nil))
19007 ;;;; Key bindings
19009 ;; Outline functions from `outline-mode-prefix-map'
19010 ;; that can be remapped in Org:
19011 (define-key org-mode-map [remap outline-mark-subtree] 'org-mark-subtree)
19012 (define-key org-mode-map [remap show-subtree] 'org-show-subtree)
19013 (define-key org-mode-map [remap outline-forward-same-level]
19014 'org-forward-heading-same-level)
19015 (define-key org-mode-map [remap outline-backward-same-level]
19016 'org-backward-heading-same-level)
19017 (define-key org-mode-map [remap show-branches]
19018 'org-kill-note-or-show-branches)
19019 (define-key org-mode-map [remap outline-promote] 'org-promote-subtree)
19020 (define-key org-mode-map [remap outline-demote] 'org-demote-subtree)
19021 (define-key org-mode-map [remap outline-insert-heading] 'org-ctrl-c-ret)
19023 ;; Outline functions from `outline-mode-prefix-map' that can not
19024 ;; be remapped in Org:
19026 ;; - the column "key binding" shows whether the Outline function is still
19027 ;; available in Org mode on the same key that it has been bound to in
19028 ;; Outline mode:
19029 ;; - "overridden": key used for a different functionality in Org mode
19030 ;; - else: key still bound to the same Outline function in Org mode
19032 ;; | Outline function | key binding | Org replacement |
19033 ;; |------------------------------------+-------------+-----------------------|
19034 ;; | `outline-next-visible-heading' | `C-c C-n' | still same function |
19035 ;; | `outline-previous-visible-heading' | `C-c C-p' | still same function |
19036 ;; | `outline-up-heading' | `C-c C-u' | still same function |
19037 ;; | `outline-move-subtree-up' | overridden | better: org-shiftup |
19038 ;; | `outline-move-subtree-down' | overridden | better: org-shiftdown |
19039 ;; | `show-entry' | overridden | no replacement |
19040 ;; | `show-children' | `C-c C-i' | visibility cycling |
19041 ;; | `show-branches' | `C-c C-k' | still same function |
19042 ;; | `show-subtree' | overridden | visibility cycling |
19043 ;; | `show-all' | overridden | no replacement |
19044 ;; | `hide-subtree' | overridden | visibility cycling |
19045 ;; | `hide-body' | overridden | no replacement |
19046 ;; | `hide-entry' | overridden | visibility cycling |
19047 ;; | `hide-leaves' | overridden | no replacement |
19048 ;; | `hide-sublevels' | overridden | no replacement |
19049 ;; | `hide-other' | overridden | no replacement |
19051 ;; Make `C-c C-x' a prefix key
19052 (org-defkey org-mode-map "\C-c\C-x" (make-sparse-keymap))
19054 ;; TAB key with modifiers
19055 (org-defkey org-mode-map "\C-i" 'org-cycle)
19056 (org-defkey org-mode-map [(tab)] 'org-cycle)
19057 (org-defkey org-mode-map [(control tab)] 'org-force-cycle-archived)
19058 (org-defkey org-mode-map "\M-\t" 'pcomplete)
19059 ;; The following line is necessary under Suse GNU/Linux
19060 (unless (featurep 'xemacs)
19061 (org-defkey org-mode-map [S-iso-lefttab] 'org-shifttab))
19062 (org-defkey org-mode-map [(shift tab)] 'org-shifttab)
19063 (define-key org-mode-map [backtab] 'org-shifttab)
19065 (org-defkey org-mode-map [(shift return)] 'org-table-copy-down)
19066 (org-defkey org-mode-map [(meta shift return)] 'org-insert-todo-heading)
19067 (org-defkey org-mode-map [(meta return)] 'org-meta-return)
19069 ;; Cursor keys with modifiers
19070 (org-defkey org-mode-map [(meta left)] 'org-metaleft)
19071 (org-defkey org-mode-map [(meta right)] 'org-metaright)
19072 (org-defkey org-mode-map [(meta up)] 'org-metaup)
19073 (org-defkey org-mode-map [(meta down)] 'org-metadown)
19075 (org-defkey org-mode-map [(meta shift left)] 'org-shiftmetaleft)
19076 (org-defkey org-mode-map [(meta shift right)] 'org-shiftmetaright)
19077 (org-defkey org-mode-map [(meta shift up)] 'org-shiftmetaup)
19078 (org-defkey org-mode-map [(meta shift down)] 'org-shiftmetadown)
19080 (org-defkey org-mode-map [(shift up)] 'org-shiftup)
19081 (org-defkey org-mode-map [(shift down)] 'org-shiftdown)
19082 (org-defkey org-mode-map [(shift left)] 'org-shiftleft)
19083 (org-defkey org-mode-map [(shift right)] 'org-shiftright)
19085 (org-defkey org-mode-map [(control shift right)] 'org-shiftcontrolright)
19086 (org-defkey org-mode-map [(control shift left)] 'org-shiftcontrolleft)
19087 (org-defkey org-mode-map [(control shift up)] 'org-shiftcontrolup)
19088 (org-defkey org-mode-map [(control shift down)] 'org-shiftcontroldown)
19090 ;; Babel keys
19091 (define-key org-mode-map org-babel-key-prefix org-babel-map)
19092 (mapc (lambda (pair)
19093 (define-key org-babel-map (car pair) (cdr pair)))
19094 org-babel-key-bindings)
19096 ;;; Extra keys for tty access.
19097 ;; We only set them when really needed because otherwise the
19098 ;; menus don't show the simple keys
19100 (when (or org-use-extra-keys
19101 (featurep 'xemacs) ;; because XEmacs supports multi-device stuff
19102 (not window-system))
19103 (org-defkey org-mode-map "\C-c\C-xc" 'org-table-copy-down)
19104 (org-defkey org-mode-map "\C-c\C-xM" 'org-insert-todo-heading)
19105 (org-defkey org-mode-map "\C-c\C-xm" 'org-meta-return)
19106 (org-defkey org-mode-map [?\e (return)] 'org-meta-return)
19107 (org-defkey org-mode-map [?\e (left)] 'org-metaleft)
19108 (org-defkey org-mode-map "\C-c\C-xl" 'org-metaleft)
19109 (org-defkey org-mode-map [?\e (right)] 'org-metaright)
19110 (org-defkey org-mode-map "\C-c\C-xr" 'org-metaright)
19111 (org-defkey org-mode-map [?\e (up)] 'org-metaup)
19112 (org-defkey org-mode-map "\C-c\C-xu" 'org-metaup)
19113 (org-defkey org-mode-map [?\e (down)] 'org-metadown)
19114 (org-defkey org-mode-map "\C-c\C-xd" 'org-metadown)
19115 (org-defkey org-mode-map "\C-c\C-xL" 'org-shiftmetaleft)
19116 (org-defkey org-mode-map "\C-c\C-xR" 'org-shiftmetaright)
19117 (org-defkey org-mode-map "\C-c\C-xU" 'org-shiftmetaup)
19118 (org-defkey org-mode-map "\C-c\C-xD" 'org-shiftmetadown)
19119 (org-defkey org-mode-map [?\C-c (up)] 'org-shiftup)
19120 (org-defkey org-mode-map [?\C-c (down)] 'org-shiftdown)
19121 (org-defkey org-mode-map [?\C-c (left)] 'org-shiftleft)
19122 (org-defkey org-mode-map [?\C-c (right)] 'org-shiftright)
19123 (org-defkey org-mode-map [?\C-c ?\C-x (right)] 'org-shiftcontrolright)
19124 (org-defkey org-mode-map [?\C-c ?\C-x (left)] 'org-shiftcontrolleft)
19125 (org-defkey org-mode-map [?\e (tab)] 'pcomplete)
19126 (org-defkey org-mode-map [?\e (shift return)] 'org-insert-todo-heading)
19127 (org-defkey org-mode-map [?\e (shift left)] 'org-shiftmetaleft)
19128 (org-defkey org-mode-map [?\e (shift right)] 'org-shiftmetaright)
19129 (org-defkey org-mode-map [?\e (shift up)] 'org-shiftmetaup)
19130 (org-defkey org-mode-map [?\e (shift down)] 'org-shiftmetadown))
19132 ;; All the other keys
19134 (org-defkey org-mode-map "\C-c\C-a" 'show-all) ; in case allout messed up.
19135 (org-defkey org-mode-map "\C-c\C-r" 'org-reveal)
19136 (if (boundp 'narrow-map)
19137 (org-defkey narrow-map "s" 'org-narrow-to-subtree)
19138 (org-defkey org-mode-map "\C-xns" 'org-narrow-to-subtree))
19139 (if (boundp 'narrow-map)
19140 (org-defkey narrow-map "b" 'org-narrow-to-block)
19141 (org-defkey org-mode-map "\C-xnb" 'org-narrow-to-block))
19142 (if (boundp 'narrow-map)
19143 (org-defkey narrow-map "e" 'org-narrow-to-element)
19144 (org-defkey org-mode-map "\C-xne" 'org-narrow-to-element))
19145 (org-defkey org-mode-map "\C-\M-t" 'org-transpose-element)
19146 (org-defkey org-mode-map "\M-}" 'org-forward-element)
19147 (org-defkey org-mode-map "\M-{" 'org-backward-element)
19148 (org-defkey org-mode-map "\C-c\C-^" 'org-up-element)
19149 (org-defkey org-mode-map "\C-c\C-_" 'org-down-element)
19150 (org-defkey org-mode-map "\C-c\C-f" 'org-forward-heading-same-level)
19151 (org-defkey org-mode-map "\C-c\C-b" 'org-backward-heading-same-level)
19152 (org-defkey org-mode-map "\C-c\M-f" 'org-next-block)
19153 (org-defkey org-mode-map "\C-c\M-b" 'org-previous-block)
19154 (org-defkey org-mode-map "\C-c$" 'org-archive-subtree)
19155 (org-defkey org-mode-map "\C-c\C-x\C-s" 'org-advertized-archive-subtree)
19156 (org-defkey org-mode-map "\C-c\C-x\C-a" 'org-archive-subtree-default)
19157 (org-defkey org-mode-map "\C-c\C-xd" 'org-insert-drawer)
19158 (org-defkey org-mode-map "\C-c\C-xa" 'org-toggle-archive-tag)
19159 (org-defkey org-mode-map "\C-c\C-xA" 'org-archive-to-archive-sibling)
19160 (org-defkey org-mode-map "\C-c\C-xb" 'org-tree-to-indirect-buffer)
19161 (org-defkey org-mode-map "\C-c\C-xq" 'org-toggle-tags-groups)
19162 (org-defkey org-mode-map "\C-c\C-j" 'org-goto)
19163 (org-defkey org-mode-map "\C-c\C-t" 'org-todo)
19164 (org-defkey org-mode-map "\C-c\C-q" 'org-set-tags-command)
19165 (org-defkey org-mode-map "\C-c\C-s" 'org-schedule)
19166 (org-defkey org-mode-map "\C-c\C-d" 'org-deadline)
19167 (org-defkey org-mode-map "\C-c;" 'org-toggle-comment)
19168 (org-defkey org-mode-map "\C-c\C-w" 'org-refile)
19169 (org-defkey org-mode-map "\C-c\M-w" 'org-copy)
19170 (org-defkey org-mode-map "\C-c/" 'org-sparse-tree) ; Minor-mode reserved
19171 (org-defkey org-mode-map "\C-c\\" 'org-match-sparse-tree) ; Minor-mode res.
19172 (org-defkey org-mode-map "\C-c\C-m" 'org-ctrl-c-ret)
19173 (org-defkey org-mode-map "\M-\C-m" 'org-insert-heading)
19174 (org-defkey org-mode-map "\C-c\C-xc" 'org-clone-subtree-with-time-shift)
19175 (org-defkey org-mode-map "\C-c\C-xv" 'org-copy-visible)
19176 (org-defkey org-mode-map [(control return)] 'org-insert-heading-respect-content)
19177 (org-defkey org-mode-map [(shift control return)] 'org-insert-todo-heading-respect-content)
19178 (org-defkey org-mode-map "\C-c\C-x\C-n" 'org-next-link)
19179 (org-defkey org-mode-map "\C-c\C-x\C-p" 'org-previous-link)
19180 (org-defkey org-mode-map "\C-c\C-l" 'org-insert-link)
19181 (org-defkey org-mode-map "\C-c\C-\M-l" 'org-insert-all-links)
19182 (org-defkey org-mode-map "\C-c\C-o" 'org-open-at-point)
19183 (org-defkey org-mode-map "\C-c%" 'org-mark-ring-push)
19184 (org-defkey org-mode-map "\C-c&" 'org-mark-ring-goto)
19185 (org-defkey org-mode-map "\C-c\C-z" 'org-add-note) ; Alternative binding
19186 (org-defkey org-mode-map "\C-c." 'org-time-stamp) ; Minor-mode reserved
19187 (org-defkey org-mode-map "\C-c!" 'org-time-stamp-inactive) ; Minor-mode r.
19188 (org-defkey org-mode-map "\C-c," 'org-priority) ; Minor-mode reserved
19189 (org-defkey org-mode-map "\C-c\C-y" 'org-evaluate-time-range)
19190 (org-defkey org-mode-map "\C-c>" 'org-goto-calendar)
19191 (org-defkey org-mode-map "\C-c<" 'org-date-from-calendar)
19192 (org-defkey org-mode-map [(control ?,)] 'org-cycle-agenda-files)
19193 (org-defkey org-mode-map [(control ?\')] 'org-cycle-agenda-files)
19194 (org-defkey org-mode-map "\C-c[" 'org-agenda-file-to-front)
19195 (org-defkey org-mode-map "\C-c]" 'org-remove-file)
19196 (org-defkey org-mode-map "\C-c\C-x<" 'org-agenda-set-restriction-lock)
19197 (org-defkey org-mode-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
19198 (org-defkey org-mode-map "\C-c-" 'org-ctrl-c-minus)
19199 (org-defkey org-mode-map "\C-c*" 'org-ctrl-c-star)
19200 (org-defkey org-mode-map "\C-c^" 'org-sort)
19201 (org-defkey org-mode-map "\C-c\C-c" 'org-ctrl-c-ctrl-c)
19202 (org-defkey org-mode-map "\C-c\C-k" 'org-kill-note-or-show-branches)
19203 (org-defkey org-mode-map "\C-c#" 'org-update-statistics-cookies)
19204 (org-defkey org-mode-map [remap open-line] 'org-open-line)
19205 (org-defkey org-mode-map [remap forward-paragraph] 'org-forward-paragraph)
19206 (org-defkey org-mode-map [remap backward-paragraph] 'org-backward-paragraph)
19207 (org-defkey org-mode-map "\C-m" 'org-return)
19208 (org-defkey org-mode-map "\C-j" 'org-return-indent)
19209 (org-defkey org-mode-map "\C-c?" 'org-table-field-info)
19210 (org-defkey org-mode-map "\C-c " 'org-table-blank-field)
19211 (org-defkey org-mode-map "\C-c+" 'org-table-sum)
19212 (org-defkey org-mode-map "\C-c=" 'org-table-eval-formula)
19213 (org-defkey org-mode-map "\C-c'" 'org-edit-special)
19214 (org-defkey org-mode-map "\C-c`" 'org-table-edit-field)
19215 (org-defkey org-mode-map "\C-c|" 'org-table-create-or-convert-from-region)
19216 (org-defkey org-mode-map [(control ?#)] 'org-table-rotate-recalc-marks)
19217 (org-defkey org-mode-map "\C-c~" 'org-table-create-with-table.el)
19218 (org-defkey org-mode-map "\C-c\C-a" 'org-attach)
19219 (org-defkey org-mode-map "\C-c}" 'org-table-toggle-coordinate-overlays)
19220 (org-defkey org-mode-map "\C-c{" 'org-table-toggle-formula-debugger)
19221 (org-defkey org-mode-map "\C-c\C-e" 'org-export-dispatch)
19222 (org-defkey org-mode-map "\C-c:" 'org-toggle-fixed-width-section)
19223 (org-defkey org-mode-map "\C-c\C-x\C-f" 'org-emphasize)
19224 (org-defkey org-mode-map "\C-c\C-xf" 'org-footnote-action)
19225 (org-defkey org-mode-map "\C-c\C-x\C-mg" 'org-mobile-pull)
19226 (org-defkey org-mode-map "\C-c\C-x\C-mp" 'org-mobile-push)
19227 (org-defkey org-mode-map "\C-c@" 'org-mark-subtree)
19228 (org-defkey org-mode-map "\M-h" 'org-mark-element)
19229 (org-defkey org-mode-map [?\C-c (control ?*)] 'org-list-make-subtree)
19230 ;;(org-defkey org-mode-map [?\C-c (control ?-)] 'org-list-make-list-from-subtree)
19232 (org-defkey org-mode-map "\C-c\C-x\C-w" 'org-cut-special)
19233 (org-defkey org-mode-map "\C-c\C-x\M-w" 'org-copy-special)
19234 (org-defkey org-mode-map "\C-c\C-x\C-y" 'org-paste-special)
19236 (org-defkey org-mode-map "\C-c\C-x\C-t" 'org-toggle-time-stamp-overlays)
19237 (org-defkey org-mode-map "\C-c\C-x\C-i" 'org-clock-in)
19238 (org-defkey org-mode-map "\C-c\C-x\C-x" 'org-clock-in-last)
19239 (org-defkey org-mode-map "\C-c\C-x\C-z" 'org-resolve-clocks)
19240 (org-defkey org-mode-map "\C-c\C-x\C-o" 'org-clock-out)
19241 (org-defkey org-mode-map "\C-c\C-x\C-j" 'org-clock-goto)
19242 (org-defkey org-mode-map "\C-c\C-x\C-q" 'org-clock-cancel)
19243 (org-defkey org-mode-map "\C-c\C-x\C-d" 'org-clock-display)
19244 (org-defkey org-mode-map "\C-c\C-x\C-r" 'org-clock-report)
19245 (org-defkey org-mode-map "\C-c\C-x\C-u" 'org-dblock-update)
19246 (org-defkey org-mode-map "\C-c\C-x\C-l" 'org-preview-latex-fragment)
19247 (org-defkey org-mode-map "\C-c\C-x\C-v" 'org-toggle-inline-images)
19248 (org-defkey org-mode-map "\C-c\C-x\C-\M-v" 'org-redisplay-inline-images)
19249 (org-defkey org-mode-map "\C-c\C-x\\" 'org-toggle-pretty-entities)
19250 (org-defkey org-mode-map "\C-c\C-x\C-b" 'org-toggle-checkbox)
19251 (org-defkey org-mode-map "\C-c\C-xp" 'org-set-property)
19252 (org-defkey org-mode-map "\C-c\C-xP" 'org-set-property-and-value)
19253 (org-defkey org-mode-map "\C-c\C-xe" 'org-set-effort)
19254 (org-defkey org-mode-map "\C-c\C-xE" 'org-inc-effort)
19255 (org-defkey org-mode-map "\C-c\C-xo" 'org-toggle-ordered-property)
19256 (org-defkey org-mode-map "\C-c\C-xi" 'org-insert-columns-dblock)
19257 (org-defkey org-mode-map [(control ?c) (control ?x) ?\;] 'org-timer-set-timer)
19258 (org-defkey org-mode-map [(control ?c) (control ?x) ?\:] 'org-timer-cancel-timer)
19260 (org-defkey org-mode-map "\C-c\C-x." 'org-timer)
19261 (org-defkey org-mode-map "\C-c\C-x-" 'org-timer-item)
19262 (org-defkey org-mode-map "\C-c\C-x0" 'org-timer-start)
19263 (org-defkey org-mode-map "\C-c\C-x_" 'org-timer-stop)
19264 (org-defkey org-mode-map "\C-c\C-x," 'org-timer-pause-or-continue)
19266 (define-key org-mode-map "\C-c\C-x\C-c" 'org-columns)
19268 (define-key org-mode-map "\C-c\C-x!" 'org-reload)
19270 (define-key org-mode-map "\C-c\C-xg" 'org-feed-update-all)
19271 (define-key org-mode-map "\C-c\C-xG" 'org-feed-goto-inbox)
19273 (define-key org-mode-map "\C-c\C-x[" 'org-reftex-citation)
19276 (when (featurep 'xemacs)
19277 (org-defkey org-mode-map 'button3 'popup-mode-menu))
19280 (defconst org-speed-commands-default
19282 ("Outline Navigation")
19283 ("n" . (org-speed-move-safe 'outline-next-visible-heading))
19284 ("p" . (org-speed-move-safe 'outline-previous-visible-heading))
19285 ("f" . (org-speed-move-safe 'org-forward-heading-same-level))
19286 ("b" . (org-speed-move-safe 'org-backward-heading-same-level))
19287 ("F" . org-next-block)
19288 ("B" . org-previous-block)
19289 ("u" . (org-speed-move-safe 'outline-up-heading))
19290 ("j" . org-goto)
19291 ("g" . (org-refile t))
19292 ("Outline Visibility")
19293 ("c" . org-cycle)
19294 ("C" . org-shifttab)
19295 (" " . org-display-outline-path)
19296 ("s" . org-narrow-to-subtree)
19297 ("=" . org-columns)
19298 ("Outline Structure Editing")
19299 ("U" . org-shiftmetaup)
19300 ("D" . org-shiftmetadown)
19301 ("r" . org-metaright)
19302 ("l" . org-metaleft)
19303 ("R" . org-shiftmetaright)
19304 ("L" . org-shiftmetaleft)
19305 ("i" . (progn (forward-char 1) (call-interactively
19306 'org-insert-heading-respect-content)))
19307 ("^" . org-sort)
19308 ("w" . org-refile)
19309 ("a" . org-archive-subtree-default-with-confirmation)
19310 ("@" . org-mark-subtree)
19311 ("#" . org-toggle-comment)
19312 ("Clock Commands")
19313 ("I" . org-clock-in)
19314 ("O" . org-clock-out)
19315 ("Meta Data Editing")
19316 ("t" . org-todo)
19317 ("," . (org-priority))
19318 ("0" . (org-priority ?\ ))
19319 ("1" . (org-priority ?A))
19320 ("2" . (org-priority ?B))
19321 ("3" . (org-priority ?C))
19322 (":" . org-set-tags-command)
19323 ("e" . org-set-effort)
19324 ("E" . org-inc-effort)
19325 ("W" . (lambda(m) (interactive "sMinutes before warning: ")
19326 (org-entry-put (point) "APPT_WARNTIME" m)))
19327 ("Agenda Views etc")
19328 ("v" . org-agenda)
19329 ("/" . org-sparse-tree)
19330 ("Misc")
19331 ("o" . org-open-at-point)
19332 ("?" . org-speed-command-help)
19333 ("<" . (org-agenda-set-restriction-lock 'subtree))
19334 (">" . (org-agenda-remove-restriction-lock))
19336 "The default speed commands.")
19338 (defun org-print-speed-command (e)
19339 (if (> (length (car e)) 1)
19340 (progn
19341 (princ "\n")
19342 (princ (car e))
19343 (princ "\n")
19344 (princ (make-string (length (car e)) ?-))
19345 (princ "\n"))
19346 (princ (car e))
19347 (princ " ")
19348 (if (symbolp (cdr e))
19349 (princ (symbol-name (cdr e)))
19350 (prin1 (cdr e)))
19351 (princ "\n")))
19353 (defun org-speed-command-help ()
19354 "Show the available speed commands."
19355 (interactive)
19356 (if (not org-use-speed-commands)
19357 (user-error "Speed commands are not activated, customize `org-use-speed-commands'")
19358 (with-output-to-temp-buffer "*Help*"
19359 (princ "User-defined Speed commands\n===========================\n")
19360 (mapc 'org-print-speed-command org-speed-commands-user)
19361 (princ "\n")
19362 (princ "Built-in Speed commands\n=======================\n")
19363 (mapc 'org-print-speed-command org-speed-commands-default))
19364 (with-current-buffer "*Help*"
19365 (setq truncate-lines t))))
19367 (defun org-speed-move-safe (cmd)
19368 "Execute CMD, but make sure that the cursor always ends up in a headline.
19369 If not, return to the original position and throw an error."
19370 (interactive)
19371 (let ((pos (point)))
19372 (call-interactively cmd)
19373 (unless (and (bolp) (org-at-heading-p))
19374 (goto-char pos)
19375 (error "Boundary reached while executing %s" cmd))))
19377 (defvar org-self-insert-command-undo-counter 0)
19379 (defvar org-table-auto-blank-field) ; defined in org-table.el
19380 (defvar org-speed-command nil)
19382 (define-obsolete-function-alias
19383 'org-speed-command-default-hook 'org-speed-command-activate "24.3")
19385 (defun org-speed-command-activate (keys)
19386 "Hook for activating single-letter speed commands.
19387 `org-speed-commands-default' specifies a minimal command set.
19388 Use `org-speed-commands-user' for further customization."
19389 (when (or (and (bolp) (looking-at org-outline-regexp))
19390 (and (functionp org-use-speed-commands)
19391 (funcall org-use-speed-commands)))
19392 (cdr (assoc keys (append org-speed-commands-user
19393 org-speed-commands-default)))))
19395 (define-obsolete-function-alias
19396 'org-babel-speed-command-hook 'org-babel-speed-command-activate "24.3")
19398 (defun org-babel-speed-command-activate (keys)
19399 "Hook for activating single-letter code block commands."
19400 (when (and (bolp) (looking-at org-babel-src-block-regexp))
19401 (cdr (assoc keys org-babel-key-bindings))))
19403 (defcustom org-speed-command-hook
19404 '(org-speed-command-default-hook org-babel-speed-command-hook)
19405 "Hook for activating speed commands at strategic locations.
19406 Hook functions are called in sequence until a valid handler is
19407 found.
19409 Each hook takes a single argument, a user-pressed command key
19410 which is also a `self-insert-command' from the global map.
19412 Within the hook, examine the cursor position and the command key
19413 and return nil or a valid handler as appropriate. Handler could
19414 be one of an interactive command, a function, or a form.
19416 Set `org-use-speed-commands' to non-nil value to enable this
19417 hook. The default setting is `org-speed-command-activate'."
19418 :group 'org-structure
19419 :version "24.1"
19420 :type 'hook)
19422 (defun org-self-insert-command (N)
19423 "Like `self-insert-command', use overwrite-mode for whitespace in tables.
19424 If the cursor is in a table looking at whitespace, the whitespace is
19425 overwritten, and the table is not marked as requiring realignment."
19426 (interactive "p")
19427 (org-check-before-invisible-edit 'insert)
19428 (cond
19429 ((and org-use-speed-commands
19430 (setq org-speed-command
19431 (run-hook-with-args-until-success
19432 'org-speed-command-hook (this-command-keys))))
19433 (cond
19434 ((commandp org-speed-command)
19435 (setq this-command org-speed-command)
19436 (call-interactively org-speed-command))
19437 ((functionp org-speed-command)
19438 (funcall org-speed-command))
19439 ((and org-speed-command (listp org-speed-command))
19440 (eval org-speed-command))
19441 (t (let (org-use-speed-commands)
19442 (call-interactively 'org-self-insert-command)))))
19443 ((and
19444 (org-table-p)
19445 (progn
19446 ;; check if we blank the field, and if that triggers align
19447 (and (featurep 'org-table) org-table-auto-blank-field
19448 (member last-command
19449 '(org-cycle org-return org-shifttab org-ctrl-c-ctrl-c yas/expand))
19450 (if (or (equal (char-after) ?\ ) (looking-at "[^|\n]* |"))
19451 ;; got extra space, this field does not determine column width
19452 (let (org-table-may-need-update) (org-table-blank-field))
19453 ;; no extra space, this field may determine column width
19454 (org-table-blank-field)))
19456 (eq N 1)
19457 (looking-at "[^|\n]* |"))
19458 (let (org-table-may-need-update)
19459 (goto-char (1- (match-end 0)))
19460 (backward-delete-char 1)
19461 (goto-char (match-beginning 0))
19462 (self-insert-command N)))
19464 (setq org-table-may-need-update t)
19465 (self-insert-command N)
19466 (org-fix-tags-on-the-fly)
19467 (if org-self-insert-cluster-for-undo
19468 (if (not (eq last-command 'org-self-insert-command))
19469 (setq org-self-insert-command-undo-counter 1)
19470 (if (>= org-self-insert-command-undo-counter 20)
19471 (setq org-self-insert-command-undo-counter 1)
19472 (and (> org-self-insert-command-undo-counter 0)
19473 buffer-undo-list (listp buffer-undo-list)
19474 (not (cadr buffer-undo-list)) ; remove nil entry
19475 (setcdr buffer-undo-list (cddr buffer-undo-list)))
19476 (setq org-self-insert-command-undo-counter
19477 (1+ org-self-insert-command-undo-counter))))))))
19479 (defun org-check-before-invisible-edit (kind)
19480 "Check is editing if kind KIND would be dangerous with invisible text around.
19481 The detailed reaction depends on the user option `org-catch-invisible-edits'."
19482 ;; First, try to get out of here as quickly as possible, to reduce overhead
19483 (if (and org-catch-invisible-edits
19484 (or (not (boundp 'visible-mode)) (not visible-mode))
19485 (or (get-char-property (point) 'invisible)
19486 (get-char-property (max (point-min) (1- (point))) 'invisible)))
19487 ;; OK, we need to take a closer look
19488 (let* ((invisible-at-point (get-char-property (point) 'invisible))
19489 (invisible-before-point (if (bobp) nil (get-char-property
19490 (1- (point)) 'invisible)))
19491 (border-and-ok-direction
19493 ;; Check if we are acting predictably before invisible text
19494 (and invisible-at-point (not invisible-before-point)
19495 (memq kind '(insert delete-backward)))
19496 ;; Check if we are acting predictably after invisible text
19497 ;; This works not well, and I have turned it off. It seems
19498 ;; better to always show and stop after invisible text.
19499 ;; (and (not invisible-at-point) invisible-before-point
19500 ;; (memq kind '(insert delete)))
19502 (when (or (memq invisible-at-point '(outline org-hide-block t))
19503 (memq invisible-before-point '(outline org-hide-block t)))
19504 (if (eq org-catch-invisible-edits 'error)
19505 (user-error "Editing in invisible areas is prohibited, make them visible first"))
19506 (if (and org-custom-properties-overlays
19507 (y-or-n-p "Display invisible properties in this buffer? "))
19508 (org-toggle-custom-properties-visibility)
19509 ;; Make the area visible
19510 (save-excursion
19511 (if invisible-before-point
19512 (goto-char (previous-single-char-property-change
19513 (point) 'invisible)))
19514 (show-subtree))
19515 (cond
19516 ((eq org-catch-invisible-edits 'show)
19517 ;; That's it, we do the edit after showing
19518 (message
19519 "Unfolding invisible region around point before editing")
19520 (sit-for 1))
19521 ((and (eq org-catch-invisible-edits 'smart)
19522 border-and-ok-direction)
19523 (message "Unfolding invisible region around point before editing"))
19525 ;; Don't do the edit, make the user repeat it in full visibility
19526 (user-error "Edit in invisible region aborted, repeat to confirm with text visible"))))))))
19528 (defun org-fix-tags-on-the-fly ()
19529 (when (and (equal (char-after (point-at-bol)) ?*)
19530 (org-at-heading-p))
19531 (org-align-tags-here org-tags-column)))
19533 (defun org-delete-backward-char (N)
19534 "Like `delete-backward-char', insert whitespace at field end in tables.
19535 When deleting backwards, in tables this function will insert whitespace in
19536 front of the next \"|\" separator, to keep the table aligned. The table will
19537 still be marked for re-alignment if the field did fill the entire column,
19538 because, in this case the deletion might narrow the column."
19539 (interactive "p")
19540 (save-match-data
19541 (org-check-before-invisible-edit 'delete-backward)
19542 (if (and (org-table-p)
19543 (eq N 1)
19544 (string-match "|" (buffer-substring (point-at-bol) (point)))
19545 (looking-at ".*?|"))
19546 (let ((pos (point))
19547 (noalign (looking-at "[^|\n\r]* |"))
19548 (c org-table-may-need-update))
19549 (backward-delete-char N)
19550 (if (not overwrite-mode)
19551 (progn
19552 (skip-chars-forward "^|")
19553 (insert " ")
19554 (goto-char (1- pos))))
19555 ;; noalign: if there were two spaces at the end, this field
19556 ;; does not determine the width of the column.
19557 (if noalign (setq org-table-may-need-update c)))
19558 (backward-delete-char N)
19559 (org-fix-tags-on-the-fly))))
19561 (defun org-delete-char (N)
19562 "Like `delete-char', but insert whitespace at field end in tables.
19563 When deleting characters, in tables this function will insert whitespace in
19564 front of the next \"|\" separator, to keep the table aligned. The table will
19565 still be marked for re-alignment if the field did fill the entire column,
19566 because, in this case the deletion might narrow the column."
19567 (interactive "p")
19568 (save-match-data
19569 (org-check-before-invisible-edit 'delete)
19570 (if (and (org-table-p)
19571 (not (bolp))
19572 (not (= (char-after) ?|))
19573 (eq N 1))
19574 (if (looking-at ".*?|")
19575 (let ((pos (point))
19576 (noalign (looking-at "[^|\n\r]* |"))
19577 (c org-table-may-need-update))
19578 (replace-match
19579 (concat (substring (match-string 0) 1 -1) " |") nil t)
19580 (goto-char pos)
19581 ;; noalign: if there were two spaces at the end, this field
19582 ;; does not determine the width of the column.
19583 (if noalign (setq org-table-may-need-update c)))
19584 (delete-char N))
19585 (delete-char N)
19586 (org-fix-tags-on-the-fly))))
19588 ;; Make `delete-selection-mode' work with org-mode and orgtbl-mode
19589 (put 'org-self-insert-command 'delete-selection
19590 (lambda ()
19591 (not (run-hook-with-args-until-success
19592 'self-insert-uses-region-functions))))
19593 (put 'orgtbl-self-insert-command 'delete-selection
19594 (lambda ()
19595 (not (run-hook-with-args-until-success
19596 'self-insert-uses-region-functions))))
19597 (put 'org-delete-char 'delete-selection 'supersede)
19598 (put 'org-delete-backward-char 'delete-selection 'supersede)
19599 (put 'org-yank 'delete-selection 'yank)
19601 ;; Make `flyspell-mode' delay after some commands
19602 (put 'org-self-insert-command 'flyspell-delayed t)
19603 (put 'orgtbl-self-insert-command 'flyspell-delayed t)
19604 (put 'org-delete-char 'flyspell-delayed t)
19605 (put 'org-delete-backward-char 'flyspell-delayed t)
19607 ;; Make pabbrev-mode expand after org-mode commands
19608 (put 'org-self-insert-command 'pabbrev-expand-after-command t)
19609 (put 'orgtbl-self-insert-command 'pabbrev-expand-after-command t)
19611 (defun org-remap (map &rest commands)
19612 "In MAP, remap the functions given in COMMANDS.
19613 COMMANDS is a list of alternating OLDDEF NEWDEF command names."
19614 (let (new old)
19615 (while commands
19616 (setq old (pop commands) new (pop commands))
19617 (if (fboundp 'command-remapping)
19618 (org-defkey map (vector 'remap old) new)
19619 (substitute-key-definition old new map global-map)))))
19621 (defun org-transpose-words ()
19622 "Transpose words for Org.
19623 This uses the `org-mode-transpose-word-syntax-table' syntax
19624 table, which interprets characters in `org-emphasis-alist' as
19625 word constituents."
19626 (interactive)
19627 (with-syntax-table org-mode-transpose-word-syntax-table
19628 (call-interactively 'transpose-words)))
19629 (org-remap org-mode-map 'transpose-words 'org-transpose-words)
19631 (when (eq org-enable-table-editor 'optimized)
19632 ;; If the user wants maximum table support, we need to hijack
19633 ;; some standard editing functions
19634 (org-remap org-mode-map
19635 'self-insert-command 'org-self-insert-command
19636 'delete-char 'org-delete-char
19637 'delete-backward-char 'org-delete-backward-char)
19638 (org-defkey org-mode-map "|" 'org-force-self-insert))
19640 (defvar org-ctrl-c-ctrl-c-hook nil
19641 "Hook for functions attaching themselves to `C-c C-c'.
19643 This can be used to add additional functionality to the C-c C-c
19644 key which executes context-dependent commands. This hook is run
19645 before any other test, while `org-ctrl-c-ctrl-c-final-hook' is
19646 run after the last test.
19648 Each function will be called with no arguments. The function
19649 must check if the context is appropriate for it to act. If yes,
19650 it should do its thing and then return a non-nil value. If the
19651 context is wrong, just do nothing and return nil.")
19653 (defvar org-ctrl-c-ctrl-c-final-hook nil
19654 "Hook for functions attaching themselves to `C-c C-c'.
19656 This can be used to add additional functionality to the C-c C-c
19657 key which executes context-dependent commands. This hook is run
19658 after any other test, while `org-ctrl-c-ctrl-c-hook' is run
19659 before the first test.
19661 Each function will be called with no arguments. The function
19662 must check if the context is appropriate for it to act. If yes,
19663 it should do its thing and then return a non-nil value. If the
19664 context is wrong, just do nothing and return nil.")
19666 (defvar org-tab-first-hook nil
19667 "Hook for functions to attach themselves to TAB.
19668 See `org-ctrl-c-ctrl-c-hook' for more information.
19669 This hook runs as the first action when TAB is pressed, even before
19670 `org-cycle' messes around with the `outline-regexp' to cater for
19671 inline tasks and plain list item folding.
19672 If any function in this hook returns t, any other actions that
19673 would have been caused by TAB (such as table field motion or visibility
19674 cycling) will not occur.")
19676 (defvar org-tab-after-check-for-table-hook nil
19677 "Hook for functions to attach themselves to TAB.
19678 See `org-ctrl-c-ctrl-c-hook' for more information.
19679 This hook runs after it has been established that the cursor is not in a
19680 table, but before checking if the cursor is in a headline or if global cycling
19681 should be done.
19682 If any function in this hook returns t, not other actions like visibility
19683 cycling will be done.")
19685 (defvar org-tab-after-check-for-cycling-hook nil
19686 "Hook for functions to attach themselves to TAB.
19687 See `org-ctrl-c-ctrl-c-hook' for more information.
19688 This hook runs after it has been established that not table field motion and
19689 not visibility should be done because of current context. This is probably
19690 the place where a package like yasnippets can hook in.")
19692 (defvar org-tab-before-tab-emulation-hook nil
19693 "Hook for functions to attach themselves to TAB.
19694 See `org-ctrl-c-ctrl-c-hook' for more information.
19695 This hook runs after every other options for TAB have been exhausted, but
19696 before indentation and \t insertion takes place.")
19698 (defvar org-metaleft-hook nil
19699 "Hook for functions attaching themselves to `M-left'.
19700 See `org-ctrl-c-ctrl-c-hook' for more information.")
19701 (defvar org-metaright-hook nil
19702 "Hook for functions attaching themselves to `M-right'.
19703 See `org-ctrl-c-ctrl-c-hook' for more information.")
19704 (defvar org-metaup-hook nil
19705 "Hook for functions attaching themselves to `M-up'.
19706 See `org-ctrl-c-ctrl-c-hook' for more information.")
19707 (defvar org-metadown-hook nil
19708 "Hook for functions attaching themselves to `M-down'.
19709 See `org-ctrl-c-ctrl-c-hook' for more information.")
19710 (defvar org-shiftmetaleft-hook nil
19711 "Hook for functions attaching themselves to `M-S-left'.
19712 See `org-ctrl-c-ctrl-c-hook' for more information.")
19713 (defvar org-shiftmetaright-hook nil
19714 "Hook for functions attaching themselves to `M-S-right'.
19715 See `org-ctrl-c-ctrl-c-hook' for more information.")
19716 (defvar org-shiftmetaup-hook nil
19717 "Hook for functions attaching themselves to `M-S-up'.
19718 See `org-ctrl-c-ctrl-c-hook' for more information.")
19719 (defvar org-shiftmetadown-hook nil
19720 "Hook for functions attaching themselves to `M-S-down'.
19721 See `org-ctrl-c-ctrl-c-hook' for more information.")
19722 (defvar org-metareturn-hook nil
19723 "Hook for functions attaching themselves to `M-RET'.
19724 See `org-ctrl-c-ctrl-c-hook' for more information.")
19725 (defvar org-shiftup-hook nil
19726 "Hook for functions attaching themselves to `S-up'.
19727 See `org-ctrl-c-ctrl-c-hook' for more information.")
19728 (defvar org-shiftup-final-hook nil
19729 "Hook for functions attaching themselves to `S-up'.
19730 This one runs after all other options except shift-select have been excluded.
19731 See `org-ctrl-c-ctrl-c-hook' for more information.")
19732 (defvar org-shiftdown-hook nil
19733 "Hook for functions attaching themselves to `S-down'.
19734 See `org-ctrl-c-ctrl-c-hook' for more information.")
19735 (defvar org-shiftdown-final-hook nil
19736 "Hook for functions attaching themselves to `S-down'.
19737 This one runs after all other options except shift-select have been excluded.
19738 See `org-ctrl-c-ctrl-c-hook' for more information.")
19739 (defvar org-shiftleft-hook nil
19740 "Hook for functions attaching themselves to `S-left'.
19741 See `org-ctrl-c-ctrl-c-hook' for more information.")
19742 (defvar org-shiftleft-final-hook nil
19743 "Hook for functions attaching themselves to `S-left'.
19744 This one runs after all other options except shift-select have been excluded.
19745 See `org-ctrl-c-ctrl-c-hook' for more information.")
19746 (defvar org-shiftright-hook nil
19747 "Hook for functions attaching themselves to `S-right'.
19748 See `org-ctrl-c-ctrl-c-hook' for more information.")
19749 (defvar org-shiftright-final-hook nil
19750 "Hook for functions attaching themselves to `S-right'.
19751 This one runs after all other options except shift-select have been excluded.
19752 See `org-ctrl-c-ctrl-c-hook' for more information.")
19754 (defun org-modifier-cursor-error ()
19755 "Throw an error, a modified cursor command was applied in wrong context."
19756 (user-error "This command is active in special context like tables, headlines or items"))
19758 (defun org-shiftselect-error ()
19759 "Throw an error because Shift-Cursor command was applied in wrong context."
19760 (if (and (boundp 'shift-select-mode) shift-select-mode)
19761 (user-error "To use shift-selection with Org-mode, customize `org-support-shift-select'")
19762 (user-error "This command works only in special context like headlines or timestamps")))
19764 (defun org-call-for-shift-select (cmd)
19765 (let ((this-command-keys-shift-translated t))
19766 (call-interactively cmd)))
19768 (defun org-shifttab (&optional arg)
19769 "Global visibility cycling or move to previous table field.
19770 Call `org-table-previous-field' within a table.
19771 When ARG is nil, cycle globally through visibility states.
19772 When ARG is a numeric prefix, show contents of this level."
19773 (interactive "P")
19774 (cond
19775 ((org-at-table-p) (call-interactively 'org-table-previous-field))
19776 ((integerp arg)
19777 (let ((arg2 (if org-odd-levels-only (1- (* 2 arg)) arg)))
19778 (message "Content view to level: %d" arg)
19779 (org-content (prefix-numeric-value arg2))
19780 (org-cycle-show-empty-lines t)
19781 (setq org-cycle-global-status 'overview)))
19782 (t (call-interactively 'org-global-cycle))))
19784 (defun org-shiftmetaleft ()
19785 "Promote subtree or delete table column.
19786 Calls `org-promote-subtree', `org-outdent-item-tree', or
19787 `org-table-delete-column', depending on context. See the
19788 individual commands for more information."
19789 (interactive)
19790 (cond
19791 ((run-hook-with-args-until-success 'org-shiftmetaleft-hook))
19792 ((org-at-table-p) (call-interactively 'org-table-delete-column))
19793 ((org-at-heading-p) (call-interactively 'org-promote-subtree))
19794 ((if (not (org-region-active-p)) (org-at-item-p)
19795 (save-excursion (goto-char (region-beginning))
19796 (org-at-item-p)))
19797 (call-interactively 'org-outdent-item-tree))
19798 (t (org-modifier-cursor-error))))
19800 (defun org-shiftmetaright ()
19801 "Demote subtree or insert table column.
19802 Calls `org-demote-subtree', `org-indent-item-tree', or
19803 `org-table-insert-column', depending on context. See the
19804 individual commands for more information."
19805 (interactive)
19806 (cond
19807 ((run-hook-with-args-until-success 'org-shiftmetaright-hook))
19808 ((org-at-table-p) (call-interactively 'org-table-insert-column))
19809 ((org-at-heading-p) (call-interactively 'org-demote-subtree))
19810 ((if (not (org-region-active-p)) (org-at-item-p)
19811 (save-excursion (goto-char (region-beginning))
19812 (org-at-item-p)))
19813 (call-interactively 'org-indent-item-tree))
19814 (t (org-modifier-cursor-error))))
19816 (defun org-shiftmetaup (&optional arg)
19817 "Move subtree up or kill table row.
19818 Calls `org-move-subtree-up' or `org-table-kill-row' or
19819 `org-move-item-up' or `org-timestamp-up', depending on context.
19820 See the individual commands for more information."
19821 (interactive "P")
19822 (cond
19823 ((run-hook-with-args-until-success 'org-shiftmetaup-hook))
19824 ((org-at-table-p) (call-interactively 'org-table-kill-row))
19825 ((org-at-heading-p) (call-interactively 'org-move-subtree-up))
19826 ((org-at-item-p) (call-interactively 'org-move-item-up))
19827 ((org-at-clock-log-p) (let ((org-clock-adjust-closest t))
19828 (call-interactively 'org-timestamp-up)))
19829 (t (call-interactively 'org-drag-line-backward))))
19831 (defun org-shiftmetadown (&optional arg)
19832 "Move subtree down or insert table row.
19833 Calls `org-move-subtree-down' or `org-table-insert-row' or
19834 `org-move-item-down' or `org-timestamp-up', depending on context.
19835 See the individual commands for more information."
19836 (interactive "P")
19837 (cond
19838 ((run-hook-with-args-until-success 'org-shiftmetadown-hook))
19839 ((org-at-table-p) (call-interactively 'org-table-insert-row))
19840 ((org-at-heading-p) (call-interactively 'org-move-subtree-down))
19841 ((org-at-item-p) (call-interactively 'org-move-item-down))
19842 ((org-at-clock-log-p) (let ((org-clock-adjust-closest t))
19843 (call-interactively 'org-timestamp-down)))
19844 (t (call-interactively 'org-drag-line-forward))))
19846 (defsubst org-hidden-tree-error ()
19847 (user-error
19848 "Hidden subtree, open with TAB or use subtree command M-S-<left>/<right>"))
19850 (defun org-metaleft (&optional arg)
19851 "Promote heading or move table column to left.
19852 Calls `org-do-promote' or `org-table-move-column', depending on context.
19853 With no specific context, calls the Emacs default `backward-word'.
19854 See the individual commands for more information."
19855 (interactive "P")
19856 (cond
19857 ((run-hook-with-args-until-success 'org-metaleft-hook))
19858 ((org-at-table-p) (org-call-with-arg 'org-table-move-column 'left))
19859 ((org-with-limited-levels
19860 (or (org-at-heading-p)
19861 (and (org-region-active-p)
19862 (save-excursion
19863 (goto-char (region-beginning))
19864 (org-at-heading-p)))))
19865 (when (org-check-for-hidden 'headlines) (org-hidden-tree-error))
19866 (call-interactively 'org-do-promote))
19867 ;; At an inline task.
19868 ((org-at-heading-p)
19869 (call-interactively 'org-inlinetask-promote))
19870 ((or (org-at-item-p)
19871 (and (org-region-active-p)
19872 (save-excursion
19873 (goto-char (region-beginning))
19874 (org-at-item-p))))
19875 (when (org-check-for-hidden 'items) (org-hidden-tree-error))
19876 (call-interactively 'org-outdent-item))
19877 (t (call-interactively 'backward-word))))
19879 (defun org-metaright (&optional arg)
19880 "Demote a subtree, a list item or move table column to right.
19881 In front of a drawer or a block keyword, indent it correctly.
19882 With no specific context, calls the Emacs default `forward-word'.
19883 See the individual commands for more information."
19884 (interactive "P")
19885 (cond
19886 ((run-hook-with-args-until-success 'org-metaright-hook))
19887 ((org-at-table-p) (call-interactively 'org-table-move-column))
19888 ((org-at-drawer-p) (call-interactively 'org-indent-drawer))
19889 ((org-at-block-p) (call-interactively 'org-indent-block))
19890 ((org-with-limited-levels
19891 (or (org-at-heading-p)
19892 (and (org-region-active-p)
19893 (save-excursion
19894 (goto-char (region-beginning))
19895 (org-at-heading-p)))))
19896 (when (org-check-for-hidden 'headlines) (org-hidden-tree-error))
19897 (call-interactively 'org-do-demote))
19898 ;; At an inline task.
19899 ((org-at-heading-p)
19900 (call-interactively 'org-inlinetask-demote))
19901 ((or (org-at-item-p)
19902 (and (org-region-active-p)
19903 (save-excursion
19904 (goto-char (region-beginning))
19905 (org-at-item-p))))
19906 (when (org-check-for-hidden 'items) (org-hidden-tree-error))
19907 (call-interactively 'org-indent-item))
19908 (t (call-interactively 'forward-word))))
19910 (defun org-check-for-hidden (what)
19911 "Check if there are hidden headlines/items in the current visual line.
19912 WHAT can be either `headlines' or `items'. If the current line is
19913 an outline or item heading and it has a folded subtree below it,
19914 this function returns t, nil otherwise."
19915 (let ((re (cond
19916 ((eq what 'headlines) org-outline-regexp-bol)
19917 ((eq what 'items) (org-item-beginning-re))
19918 (t (error "This should not happen"))))
19919 beg end)
19920 (save-excursion
19921 (catch 'exit
19922 (unless (org-region-active-p)
19923 (setq beg (point-at-bol))
19924 (beginning-of-line 2)
19925 (while (and (not (eobp)) ;; this is like `next-line'
19926 (get-char-property (1- (point)) 'invisible))
19927 (beginning-of-line 2))
19928 (setq end (point))
19929 (goto-char beg)
19930 (goto-char (point-at-eol))
19931 (setq end (max end (point)))
19932 (while (re-search-forward re end t)
19933 (if (get-char-property (match-beginning 0) 'invisible)
19934 (throw 'exit t))))
19935 nil))))
19937 (defun org-metaup (&optional arg)
19938 "Move subtree up or move table row up.
19939 Calls `org-move-subtree-up' or `org-table-move-row' or
19940 `org-move-item-up', depending on context. See the individual commands
19941 for more information."
19942 (interactive "P")
19943 (cond
19944 ((run-hook-with-args-until-success 'org-metaup-hook))
19945 ((org-region-active-p)
19946 (let* ((a (min (region-beginning) (region-end)))
19947 (b (1- (max (region-beginning) (region-end))))
19948 (c (save-excursion (goto-char a)
19949 (move-beginning-of-line 0)))
19950 (d (save-excursion (goto-char a)
19951 (move-end-of-line 0) (point))))
19952 (transpose-regions a b c d)
19953 (goto-char c)))
19954 ((org-at-table-p) (org-call-with-arg 'org-table-move-row 'up))
19955 ((org-at-heading-p) (call-interactively 'org-move-subtree-up))
19956 ((org-at-item-p) (call-interactively 'org-move-item-up))
19957 (t (org-drag-element-backward))))
19959 (defun org-metadown (&optional arg)
19960 "Move subtree down or move table row down.
19961 Calls `org-move-subtree-down' or `org-table-move-row' or
19962 `org-move-item-down', depending on context. See the individual
19963 commands for more information."
19964 (interactive "P")
19965 (cond
19966 ((run-hook-with-args-until-success 'org-metadown-hook))
19967 ((org-region-active-p)
19968 (let* ((a (min (region-beginning) (region-end)))
19969 (b (max (region-beginning) (region-end)))
19970 (c (save-excursion (goto-char b)
19971 (move-beginning-of-line 1)))
19972 (d (save-excursion (goto-char b)
19973 (move-end-of-line 1) (1+ (point)))))
19974 (transpose-regions a b c d)
19975 (goto-char d)))
19976 ((org-at-table-p) (call-interactively 'org-table-move-row))
19977 ((org-at-heading-p) (call-interactively 'org-move-subtree-down))
19978 ((org-at-item-p) (call-interactively 'org-move-item-down))
19979 (t (org-drag-element-forward))))
19981 (defun org-shiftup (&optional arg)
19982 "Increase item in timestamp or increase priority of current headline.
19983 Calls `org-timestamp-up' or `org-priority-up', or `org-previous-item',
19984 depending on context. See the individual commands for more information."
19985 (interactive "P")
19986 (cond
19987 ((run-hook-with-args-until-success 'org-shiftup-hook))
19988 ((and org-support-shift-select (org-region-active-p))
19989 (org-call-for-shift-select 'previous-line))
19990 ((org-at-timestamp-p t)
19991 (call-interactively (if org-edit-timestamp-down-means-later
19992 'org-timestamp-down 'org-timestamp-up)))
19993 ((and (not (eq org-support-shift-select 'always))
19994 org-enable-priority-commands
19995 (org-at-heading-p))
19996 (call-interactively 'org-priority-up))
19997 ((and (not org-support-shift-select) (org-at-item-p))
19998 (call-interactively 'org-previous-item))
19999 ((org-clocktable-try-shift 'up arg))
20000 ((run-hook-with-args-until-success 'org-shiftup-final-hook))
20001 (org-support-shift-select
20002 (org-call-for-shift-select 'previous-line))
20003 (t (org-shiftselect-error))))
20005 (defun org-shiftdown (&optional arg)
20006 "Decrease item in timestamp or decrease priority of current headline.
20007 Calls `org-timestamp-down' or `org-priority-down', or `org-next-item'
20008 depending on context. See the individual commands for more information."
20009 (interactive "P")
20010 (cond
20011 ((run-hook-with-args-until-success 'org-shiftdown-hook))
20012 ((and org-support-shift-select (org-region-active-p))
20013 (org-call-for-shift-select 'next-line))
20014 ((org-at-timestamp-p t)
20015 (call-interactively (if org-edit-timestamp-down-means-later
20016 'org-timestamp-up 'org-timestamp-down)))
20017 ((and (not (eq org-support-shift-select 'always))
20018 org-enable-priority-commands
20019 (org-at-heading-p))
20020 (call-interactively 'org-priority-down))
20021 ((and (not org-support-shift-select) (org-at-item-p))
20022 (call-interactively 'org-next-item))
20023 ((org-clocktable-try-shift 'down arg))
20024 ((run-hook-with-args-until-success 'org-shiftdown-final-hook))
20025 (org-support-shift-select
20026 (org-call-for-shift-select 'next-line))
20027 (t (org-shiftselect-error))))
20029 (defun org-shiftright (&optional arg)
20030 "Cycle the thing at point or in the current line, depending on context.
20031 Depending on context, this does one of the following:
20033 - switch a timestamp at point one day into the future
20034 - on a headline, switch to the next TODO keyword.
20035 - on an item, switch entire list to the next bullet type
20036 - on a property line, switch to the next allowed value
20037 - on a clocktable definition line, move time block into the future"
20038 (interactive "P")
20039 (cond
20040 ((run-hook-with-args-until-success 'org-shiftright-hook))
20041 ((and org-support-shift-select (org-region-active-p))
20042 (org-call-for-shift-select 'forward-char))
20043 ((org-at-timestamp-p t) (call-interactively 'org-timestamp-up-day))
20044 ((and (not (eq org-support-shift-select 'always))
20045 (org-at-heading-p))
20046 (let ((org-inhibit-logging
20047 (not org-treat-S-cursor-todo-selection-as-state-change))
20048 (org-inhibit-blocking
20049 (not org-treat-S-cursor-todo-selection-as-state-change)))
20050 (org-call-with-arg 'org-todo 'right)))
20051 ((or (and org-support-shift-select
20052 (not (eq org-support-shift-select 'always))
20053 (org-at-item-bullet-p))
20054 (and (not org-support-shift-select) (org-at-item-p)))
20055 (org-call-with-arg 'org-cycle-list-bullet nil))
20056 ((and (not (eq org-support-shift-select 'always))
20057 (org-at-property-p))
20058 (call-interactively 'org-property-next-allowed-value))
20059 ((org-clocktable-try-shift 'right arg))
20060 ((run-hook-with-args-until-success 'org-shiftright-final-hook))
20061 (org-support-shift-select
20062 (org-call-for-shift-select 'forward-char))
20063 (t (org-shiftselect-error))))
20065 (defun org-shiftleft (&optional arg)
20066 "Cycle the thing at point or in the current line, depending on context.
20067 Depending on context, this does one of the following:
20069 - switch a timestamp at point one day into the past
20070 - on a headline, switch to the previous TODO keyword.
20071 - on an item, switch entire list to the previous bullet type
20072 - on a property line, switch to the previous allowed value
20073 - on a clocktable definition line, move time block into the past"
20074 (interactive "P")
20075 (cond
20076 ((run-hook-with-args-until-success 'org-shiftleft-hook))
20077 ((and org-support-shift-select (org-region-active-p))
20078 (org-call-for-shift-select 'backward-char))
20079 ((org-at-timestamp-p t) (call-interactively 'org-timestamp-down-day))
20080 ((and (not (eq org-support-shift-select 'always))
20081 (org-at-heading-p))
20082 (let ((org-inhibit-logging
20083 (not org-treat-S-cursor-todo-selection-as-state-change))
20084 (org-inhibit-blocking
20085 (not org-treat-S-cursor-todo-selection-as-state-change)))
20086 (org-call-with-arg 'org-todo 'left)))
20087 ((or (and org-support-shift-select
20088 (not (eq org-support-shift-select 'always))
20089 (org-at-item-bullet-p))
20090 (and (not org-support-shift-select) (org-at-item-p)))
20091 (org-call-with-arg 'org-cycle-list-bullet 'previous))
20092 ((and (not (eq org-support-shift-select 'always))
20093 (org-at-property-p))
20094 (call-interactively 'org-property-previous-allowed-value))
20095 ((org-clocktable-try-shift 'left arg))
20096 ((run-hook-with-args-until-success 'org-shiftleft-final-hook))
20097 (org-support-shift-select
20098 (org-call-for-shift-select 'backward-char))
20099 (t (org-shiftselect-error))))
20101 (defun org-shiftcontrolright ()
20102 "Switch to next TODO set."
20103 (interactive)
20104 (cond
20105 ((and org-support-shift-select (org-region-active-p))
20106 (org-call-for-shift-select 'forward-word))
20107 ((and (not (eq org-support-shift-select 'always))
20108 (org-at-heading-p))
20109 (org-call-with-arg 'org-todo 'nextset))
20110 (org-support-shift-select
20111 (org-call-for-shift-select 'forward-word))
20112 (t (org-shiftselect-error))))
20114 (defun org-shiftcontrolleft ()
20115 "Switch to previous TODO set."
20116 (interactive)
20117 (cond
20118 ((and org-support-shift-select (org-region-active-p))
20119 (org-call-for-shift-select 'backward-word))
20120 ((and (not (eq org-support-shift-select 'always))
20121 (org-at-heading-p))
20122 (org-call-with-arg 'org-todo 'previousset))
20123 (org-support-shift-select
20124 (org-call-for-shift-select 'backward-word))
20125 (t (org-shiftselect-error))))
20127 (defun org-shiftcontrolup (&optional n)
20128 "Change timestamps synchronously up in CLOCK log lines.
20129 Optional argument N tells to change by that many units."
20130 (interactive "P")
20131 (if (and (org-at-clock-log-p) (org-at-timestamp-p t))
20132 (let (org-support-shift-select)
20133 (org-clock-timestamps-up n))
20134 (user-error "Not at a clock log")))
20136 (defun org-shiftcontroldown (&optional n)
20137 "Change timestamps synchronously down in CLOCK log lines.
20138 Optional argument N tells to change by that many units."
20139 (interactive "P")
20140 (if (and (org-at-clock-log-p) (org-at-timestamp-p t))
20141 (let (org-support-shift-select)
20142 (org-clock-timestamps-down n))
20143 (user-error "Not at a clock log")))
20145 (defun org-ctrl-c-ret ()
20146 "Call `org-table-hline-and-move' or `org-insert-heading' dep. on context."
20147 (interactive)
20148 (cond
20149 ((org-at-table-p) (call-interactively 'org-table-hline-and-move))
20150 (t (call-interactively 'org-insert-heading))))
20152 (defun org-find-visible ()
20153 (let ((s (point)))
20154 (while (and (not (= (point-max) (setq s (next-overlay-change s))))
20155 (get-char-property s 'invisible)))
20157 (defun org-find-invisible ()
20158 (let ((s (point)))
20159 (while (and (not (= (point-max) (setq s (next-overlay-change s))))
20160 (not (get-char-property s 'invisible))))
20163 (defun org-copy-visible (beg end)
20164 "Copy the visible parts of the region."
20165 (interactive "r")
20166 (let (snippets s)
20167 (save-excursion
20168 (save-restriction
20169 (narrow-to-region beg end)
20170 (setq s (goto-char (point-min)))
20171 (while (not (= (point) (point-max)))
20172 (goto-char (org-find-invisible))
20173 (push (buffer-substring s (point)) snippets)
20174 (setq s (goto-char (org-find-visible))))))
20175 (kill-new (apply 'concat (nreverse snippets)))))
20177 (defun org-copy-special ()
20178 "Copy region in table or copy current subtree.
20179 Calls `org-table-copy' or `org-copy-subtree', depending on context.
20180 See the individual commands for more information."
20181 (interactive)
20182 (call-interactively
20183 (if (org-at-table-p) 'org-table-copy-region 'org-copy-subtree)))
20185 (defun org-cut-special ()
20186 "Cut region in table or cut current subtree.
20187 Calls `org-table-copy' or `org-cut-subtree', depending on context.
20188 See the individual commands for more information."
20189 (interactive)
20190 (call-interactively
20191 (if (org-at-table-p) 'org-table-cut-region 'org-cut-subtree)))
20193 (defun org-paste-special (arg)
20194 "Paste rectangular region into table, or past subtree relative to level.
20195 Calls `org-table-paste-rectangle' or `org-paste-subtree', depending on context.
20196 See the individual commands for more information."
20197 (interactive "P")
20198 (if (org-at-table-p)
20199 (org-table-paste-rectangle)
20200 (org-paste-subtree arg)))
20202 (defsubst org-in-fixed-width-region-p ()
20203 "Is point in a fixed-width region?"
20204 (save-match-data
20205 (eq 'fixed-width (org-element-type (org-element-at-point)))))
20207 (defun org-edit-special (&optional arg)
20208 "Call a special editor for the element at point.
20209 When at a table, call the formula editor with `org-table-edit-formulas'.
20210 When in a source code block, call `org-edit-src-code'.
20211 When in a fixed-width region, call `org-edit-fixed-width-region'.
20212 When at an #+INCLUDE keyword, visit the included file.
20213 On a link, call `ffap' to visit the link at point.
20214 Otherwise, return a user error."
20215 (interactive "P")
20216 (let ((element (org-element-at-point)))
20217 (assert (not buffer-read-only) nil
20218 "Buffer is read-only: %s" (buffer-name))
20219 (case (org-element-type element)
20220 (src-block
20221 (if (not arg) (org-edit-src-code)
20222 (let* ((info (org-babel-get-src-block-info))
20223 (lang (nth 0 info))
20224 (params (nth 2 info))
20225 (session (cdr (assq :session params))))
20226 (if (not session) (org-edit-src-code)
20227 ;; At a src-block with a session and function called with
20228 ;; an ARG: switch to the buffer related to the inferior
20229 ;; process.
20230 (switch-to-buffer
20231 (funcall (intern (concat "org-babel-prep-session:" lang))
20232 session params))))))
20233 (keyword
20234 (if (member (org-element-property :key element) '("INCLUDE" "SETUPFILE"))
20235 (find-file
20236 (org-remove-double-quotes
20237 (car (org-split-string (org-element-property :value element)))))
20238 (user-error "No special environment to edit here")))
20239 (table
20240 (if (eq (org-element-property :type element) 'table.el)
20241 (org-edit-src-code)
20242 (call-interactively 'org-table-edit-formulas)))
20243 ;; Only Org tables contain `table-row' type elements.
20244 (table-row (call-interactively 'org-table-edit-formulas))
20245 ((example-block export-block) (org-edit-src-code))
20246 (fixed-width (org-edit-fixed-width-region))
20247 (otherwise
20248 ;; No notable element at point. Though, we may be at a link,
20249 ;; which is an object. Thus, scan deeper.
20250 (if (eq (org-element-type (org-element-context element)) 'link)
20251 (call-interactively 'ffap)
20252 (user-error "No special environment to edit here"))))))
20254 (defvar org-table-coordinate-overlays) ; defined in org-table.el
20255 (defun org-ctrl-c-ctrl-c (&optional arg)
20256 "Set tags in headline, or update according to changed information at point.
20258 This command does many different things, depending on context:
20260 - If a function in `org-ctrl-c-ctrl-c-hook' recognizes this location,
20261 this is what we do.
20263 - If the cursor is on a statistics cookie, update it.
20265 - If the cursor is in a headline, prompt for tags and insert them
20266 into the current line, aligned to `org-tags-column'. When called
20267 with prefix arg, realign all tags in the current buffer.
20269 - If the cursor is in one of the special #+KEYWORD lines, this
20270 triggers scanning the buffer for these lines and updating the
20271 information.
20273 - If the cursor is inside a table, realign the table. This command
20274 works even if the automatic table editor has been turned off.
20276 - If the cursor is on a #+TBLFM line, re-apply the formulas to
20277 the entire table.
20279 - If the cursor is at a footnote reference or definition, jump to
20280 the corresponding definition or references, respectively.
20282 - If the cursor is a the beginning of a dynamic block, update it.
20284 - If the current buffer is a capture buffer, close note and file it.
20286 - If the cursor is on a <<<target>>>, update radio targets and
20287 corresponding links in this buffer.
20289 - If the cursor is on a numbered item in a plain list, renumber the
20290 ordered list.
20292 - If the cursor is on a checkbox, toggle it.
20294 - If the cursor is on a code block, evaluate it. The variable
20295 `org-confirm-babel-evaluate' can be used to control prompting
20296 before code block evaluation, by default every code block
20297 evaluation requires confirmation. Code block evaluation can be
20298 inhibited by setting `org-babel-no-eval-on-ctrl-c-ctrl-c'."
20299 (interactive "P")
20300 (cond
20301 ((or (and (boundp 'org-clock-overlays) org-clock-overlays)
20302 org-occur-highlights
20303 org-latex-fragment-image-overlays)
20304 (and (boundp 'org-clock-overlays) (org-clock-remove-overlays))
20305 (org-remove-occur-highlights)
20306 (org-remove-latex-fragment-image-overlays)
20307 (message "Temporary highlights/overlays removed from current buffer"))
20308 ((and (local-variable-p 'org-finish-function (current-buffer))
20309 (fboundp org-finish-function))
20310 (funcall org-finish-function))
20311 ((run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-hook))
20313 (let* ((context (org-element-context)) (type (org-element-type context)))
20314 ;; Test if point is within a blank line.
20315 (if (save-excursion (beginning-of-line) (looking-at "[ \t]*$"))
20316 (or (run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-final-hook)
20317 (user-error "C-c C-c can do nothing useful at this location"))
20318 (case type
20319 ;; When at a link, act according to the parent instead.
20320 (link (setq context (org-element-property :parent context))
20321 (setq type (org-element-type context)))
20322 ;; Unsupported object types: refer to the first supported
20323 ;; element or object containing it.
20324 ((bold code entity export-snippet inline-babel-call inline-src-block
20325 italic latex-fragment line-break macro strike-through subscript
20326 superscript underline verbatim)
20327 (while (and (setq context (org-element-property :parent context))
20328 (not (memq (setq type (org-element-type context))
20329 '(radio-target paragraph verse-block
20330 table-cell)))))))
20331 ;; For convenience: at the first line of a paragraph on the
20332 ;; same line as an item, apply function on that item instead.
20333 (when (eq type 'paragraph)
20334 (let ((parent (org-element-property :parent context)))
20335 (when (and (eq (org-element-type parent) 'item)
20336 (= (point-at-bol) (org-element-property :begin parent)))
20337 (setq context parent type 'item))))
20338 ;; Act according to type of element or object at point.
20339 (case type
20340 (clock (org-clock-update-time-maybe))
20341 (dynamic-block
20342 (save-excursion
20343 (goto-char (org-element-property :post-affiliated context))
20344 (org-update-dblock)))
20345 (footnote-definition
20346 (goto-char (org-element-property :post-affiliated context))
20347 (call-interactively 'org-footnote-action))
20348 (footnote-reference (call-interactively 'org-footnote-action))
20349 ((headline inlinetask)
20350 (save-excursion (goto-char (org-element-property :begin context))
20351 (call-interactively 'org-set-tags)))
20352 (item
20353 ;; At an item: a double C-u set checkbox to "[-]"
20354 ;; unconditionally, whereas a single one will toggle its
20355 ;; presence. Without an universal argument, if the item
20356 ;; has a checkbox, toggle it. Otherwise repair the list.
20357 (let* ((box (org-element-property :checkbox context))
20358 (struct (org-element-property :structure context))
20359 (old-struct (copy-tree struct))
20360 (parents (org-list-parents-alist struct))
20361 (prevs (org-list-prevs-alist struct))
20362 (orderedp (org-not-nil (org-entry-get nil "ORDERED"))))
20363 (org-list-set-checkbox
20364 (org-element-property :begin context) struct
20365 (cond ((equal arg '(16)) "[-]")
20366 ((and (not box) (equal arg '(4))) "[ ]")
20367 ((or (not box) (equal arg '(4))) nil)
20368 ((eq box 'on) "[ ]")
20369 (t "[X]")))
20370 ;; Mimic `org-list-write-struct' but with grabbing
20371 ;; a return value from `org-list-struct-fix-box'.
20372 (org-list-struct-fix-ind struct parents 2)
20373 (org-list-struct-fix-item-end struct)
20374 (org-list-struct-fix-bul struct prevs)
20375 (org-list-struct-fix-ind struct parents)
20376 (let ((block-item
20377 (org-list-struct-fix-box struct parents prevs orderedp)))
20378 (if (and box (equal struct old-struct))
20379 (if (equal arg '(16))
20380 (message "Checkboxes already reset")
20381 (user-error "Cannot toggle this checkbox: %s"
20382 (if (eq box 'on)
20383 "all subitems checked"
20384 "unchecked subitems")))
20385 (org-list-struct-apply-struct struct old-struct)
20386 (org-update-checkbox-count-maybe))
20387 (when block-item
20388 (message "Checkboxes were removed due to empty box at line %d"
20389 (org-current-line block-item))))))
20390 (keyword
20391 (let ((org-inhibit-startup-visibility-stuff t)
20392 (org-startup-align-all-tables nil))
20393 (when (boundp 'org-table-coordinate-overlays)
20394 (mapc 'delete-overlay org-table-coordinate-overlays)
20395 (setq org-table-coordinate-overlays nil))
20396 (org-save-outline-visibility 'use-markers (org-mode-restart)))
20397 (message "Local setup has been refreshed"))
20398 (plain-list
20399 ;; At a plain list, with a double C-u argument, set
20400 ;; checkboxes of each item to "[-]", whereas a single one
20401 ;; will toggle their presence according to the state of the
20402 ;; first item in the list. Without an argument, repair the
20403 ;; list.
20404 (let* ((begin (org-element-property :contents-begin context))
20405 (beginm (move-marker (make-marker) begin))
20406 (struct (org-element-property :structure context))
20407 (old-struct (copy-tree struct))
20408 (first-box (save-excursion
20409 (goto-char begin)
20410 (looking-at org-list-full-item-re)
20411 (match-string-no-properties 3)))
20412 (new-box (cond ((equal arg '(16)) "[-]")
20413 ((equal arg '(4)) (unless first-box "[ ]"))
20414 ((equal first-box "[X]") "[ ]")
20415 (t "[X]"))))
20416 (cond
20417 (arg
20418 (mapc (lambda (pos) (org-list-set-checkbox pos struct new-box))
20419 (org-list-get-all-items
20420 begin struct (org-list-prevs-alist struct))))
20421 ((and first-box (eq (point) begin))
20422 ;; For convenience, when point is at bol on the first
20423 ;; item of the list and no argument is provided, simply
20424 ;; toggle checkbox of that item, if any.
20425 (org-list-set-checkbox begin struct new-box)))
20426 (org-list-write-struct
20427 struct (org-list-parents-alist struct) old-struct)
20428 (org-update-checkbox-count-maybe)
20429 (save-excursion (goto-char beginm) (org-list-send-list 'maybe))))
20430 ((property-drawer node-property)
20431 (call-interactively 'org-property-action))
20432 ((radio-target target)
20433 (call-interactively 'org-update-radio-target-regexp))
20434 (statistics-cookie
20435 (call-interactively 'org-update-statistics-cookies))
20436 ((table table-cell table-row)
20437 ;; At a table, recalculate every field and align it. Also
20438 ;; send the table if necessary. If the table has
20439 ;; a `table.el' type, just give up. At a table row or
20440 ;; cell, maybe recalculate line but always align table.
20441 (if (eq (org-element-property :type context) 'table.el)
20442 (message "Use C-c ' to edit table.el tables")
20443 (let ((org-enable-table-editor t))
20444 (if (or (eq type 'table)
20445 ;; Check if point is at a TBLFM line.
20446 (and (eq type 'table-row)
20447 (= (point) (org-element-property :end context))))
20448 (save-excursion
20449 (if (org-at-TBLFM-p)
20450 (progn (require 'org-table)
20451 (org-table-calc-current-TBLFM))
20452 (goto-char (org-element-property :contents-begin context))
20453 (org-call-with-arg 'org-table-recalculate (or arg t))
20454 (orgtbl-send-table 'maybe)))
20455 (org-table-maybe-eval-formula)
20456 (cond (arg (call-interactively 'org-table-recalculate))
20457 ((org-table-maybe-recalculate-line))
20458 (t (org-table-align)))))))
20459 (timestamp (org-timestamp-change 0 'day))
20460 (otherwise
20461 (or (run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-final-hook)
20462 (user-error
20463 "C-c C-c can do nothing useful at this location")))))))))
20465 (defun org-mode-restart ()
20466 (interactive)
20467 (let ((indent-status (org-bound-and-true-p org-indent-mode)))
20468 (funcall major-mode)
20469 (hack-local-variables)
20470 (when (and indent-status (not (org-bound-and-true-p org-indent-mode)))
20471 (org-indent-mode -1)))
20472 (message "%s restarted" major-mode))
20474 (defun org-kill-note-or-show-branches ()
20475 "If this is a Note buffer, abort storing the note. Else call `show-branches'."
20476 (interactive)
20477 (if (not org-finish-function)
20478 (progn
20479 (hide-subtree)
20480 (call-interactively 'show-branches))
20481 (let ((org-note-abort t))
20482 (funcall org-finish-function))))
20484 (defun org-open-line (n)
20485 "Insert a new row in tables, call `open-line' elsewhere.
20486 If `org-special-ctrl-o' is nil, just call `open-line' everywhere."
20487 (interactive "*p")
20488 (cond
20489 ((not org-special-ctrl-o)
20490 (open-line n))
20491 ((org-at-table-p)
20492 (org-table-insert-row))
20494 (open-line n))))
20496 (defun org-return (&optional indent)
20497 "Goto next table row or insert a newline.
20498 Calls `org-table-next-row' or `newline', depending on context.
20499 See the individual commands for more information."
20500 (interactive)
20501 (let (org-ts-what)
20502 (cond
20503 ((or (bobp) (org-in-src-block-p))
20504 (if indent (newline-and-indent) (newline)))
20505 ((org-at-table-p)
20506 (org-table-justify-field-maybe)
20507 (call-interactively 'org-table-next-row))
20508 ;; when `newline-and-indent' is called within a list, make sure
20509 ;; text moved stays inside the item.
20510 ((and (org-in-item-p) indent)
20511 (if (and (org-at-item-p) (>= (point) (match-end 0)))
20512 (progn
20513 (save-match-data (newline))
20514 (org-indent-line-to (length (match-string 0))))
20515 (let ((ind (org-get-indentation)))
20516 (newline)
20517 (if (org-looking-back org-list-end-re)
20518 (org-indent-line)
20519 (org-indent-line-to ind)))))
20520 ((and org-return-follows-link
20521 (org-at-timestamp-p t)
20522 (not (eq org-ts-what 'after)))
20523 (org-follow-timestamp-link))
20524 ((and org-return-follows-link
20525 (let ((tprop (get-text-property (point) 'face)))
20526 (or (eq tprop 'org-link)
20527 (and (listp tprop) (memq 'org-link tprop)))))
20528 (call-interactively 'org-open-at-point))
20529 ((and (org-at-heading-p)
20530 (looking-at
20531 (org-re "\\([ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)[ \t]*$")))
20532 (org-show-entry)
20533 (end-of-line 1)
20534 (newline))
20535 (t (if indent (newline-and-indent) (newline))))))
20537 (defun org-return-indent ()
20538 "Goto next table row or insert a newline and indent.
20539 Calls `org-table-next-row' or `newline-and-indent', depending on
20540 context. See the individual commands for more information."
20541 (interactive)
20542 (org-return t))
20544 (defun org-ctrl-c-star ()
20545 "Compute table, or change heading status of lines.
20546 Calls `org-table-recalculate' or `org-toggle-heading',
20547 depending on context."
20548 (interactive)
20549 (cond
20550 ((org-at-table-p)
20551 (call-interactively 'org-table-recalculate))
20553 ;; Convert all lines in region to list items
20554 (call-interactively 'org-toggle-heading))))
20556 (defun org-ctrl-c-minus ()
20557 "Insert separator line in table or modify bullet status of line.
20558 Also turns a plain line or a region of lines into list items.
20559 Calls `org-table-insert-hline', `org-toggle-item', or
20560 `org-cycle-list-bullet', depending on context."
20561 (interactive)
20562 (cond
20563 ((org-at-table-p)
20564 (call-interactively 'org-table-insert-hline))
20565 ((org-region-active-p)
20566 (call-interactively 'org-toggle-item))
20567 ((org-in-item-p)
20568 (call-interactively 'org-cycle-list-bullet))
20570 (call-interactively 'org-toggle-item))))
20572 (defun org-toggle-item (arg)
20573 "Convert headings or normal lines to items, items to normal lines.
20574 If there is no active region, only the current line is considered.
20576 If the first non blank line in the region is a headline, convert
20577 all headlines to items, shifting text accordingly.
20579 If it is an item, convert all items to normal lines.
20581 If it is normal text, change region into a list of items.
20582 With a prefix argument ARG, change the region in a single item."
20583 (interactive "P")
20584 (let ((shift-text
20585 (function
20586 ;; Shift text in current section to IND, from point to END.
20587 ;; The function leaves point to END line.
20588 (lambda (ind end)
20589 (let ((min-i 1000) (end (copy-marker end)))
20590 ;; First determine the minimum indentation (MIN-I) of
20591 ;; the text.
20592 (save-excursion
20593 (catch 'exit
20594 (while (< (point) end)
20595 (let ((i (org-get-indentation)))
20596 (cond
20597 ;; Skip blank lines and inline tasks.
20598 ((looking-at "^[ \t]*$"))
20599 ((looking-at org-outline-regexp-bol))
20600 ;; We can't find less than 0 indentation.
20601 ((zerop i) (throw 'exit (setq min-i 0)))
20602 ((< i min-i) (setq min-i i))))
20603 (forward-line))))
20604 ;; Then indent each line so that a line indented to
20605 ;; MIN-I becomes indented to IND. Ignore blank lines
20606 ;; and inline tasks in the process.
20607 (let ((delta (- ind min-i)))
20608 (while (< (point) end)
20609 (unless (or (looking-at "^[ \t]*$")
20610 (looking-at org-outline-regexp-bol))
20611 (org-indent-line-to (+ (org-get-indentation) delta)))
20612 (forward-line)))))))
20613 (skip-blanks
20614 (function
20615 ;; Return beginning of first non-blank line, starting from
20616 ;; line at POS.
20617 (lambda (pos)
20618 (save-excursion
20619 (goto-char pos)
20620 (skip-chars-forward " \r\t\n")
20621 (point-at-bol)))))
20622 beg end)
20623 ;; Determine boundaries of changes.
20624 (if (org-region-active-p)
20625 (setq beg (funcall skip-blanks (region-beginning))
20626 end (copy-marker (region-end)))
20627 (setq beg (funcall skip-blanks (point-at-bol))
20628 end (copy-marker (point-at-eol))))
20629 ;; Depending on the starting line, choose an action on the text
20630 ;; between BEG and END.
20631 (org-with-limited-levels
20632 (save-excursion
20633 (goto-char beg)
20634 (cond
20635 ;; Case 1. Start at an item: de-itemize. Note that it only
20636 ;; happens when a region is active: `org-ctrl-c-minus'
20637 ;; would call `org-cycle-list-bullet' otherwise.
20638 ((org-at-item-p)
20639 (while (< (point) end)
20640 (when (org-at-item-p)
20641 (skip-chars-forward " \t")
20642 (delete-region (point) (match-end 0)))
20643 (forward-line)))
20644 ;; Case 2. Start at an heading: convert to items.
20645 ((org-at-heading-p)
20646 (let* ((bul (org-list-bullet-string "-"))
20647 (bul-len (length bul))
20648 ;; Indentation of the first heading. It should be
20649 ;; relative to the indentation of its parent, if any.
20650 (start-ind (save-excursion
20651 (cond
20652 ((not org-adapt-indentation) 0)
20653 ((not (outline-previous-heading)) 0)
20654 (t (length (match-string 0))))))
20655 ;; Level of first heading. Further headings will be
20656 ;; compared to it to determine hierarchy in the list.
20657 (ref-level (org-reduced-level (org-outline-level))))
20658 (while (< (point) end)
20659 (let* ((level (org-reduced-level (org-outline-level)))
20660 (delta (max 0 (- level ref-level))))
20661 ;; If current headline is less indented than the first
20662 ;; one, set it as reference, in order to preserve
20663 ;; subtrees.
20664 (when (< level ref-level) (setq ref-level level))
20665 (replace-match bul t t)
20666 (org-indent-line-to (+ start-ind (* delta bul-len)))
20667 ;; Ensure all text down to END (or SECTION-END) belongs
20668 ;; to the newly created item.
20669 (let ((section-end (save-excursion
20670 (or (outline-next-heading) (point)))))
20671 (forward-line)
20672 (funcall shift-text
20673 (+ start-ind (* (1+ delta) bul-len))
20674 (min end section-end)))))))
20675 ;; Case 3. Normal line with ARG: make the first line of region
20676 ;; an item, and shift indentation of others lines to
20677 ;; set them as item's body.
20678 (arg (let* ((bul (org-list-bullet-string "-"))
20679 (bul-len (length bul))
20680 (ref-ind (org-get-indentation)))
20681 (skip-chars-forward " \t")
20682 (insert bul)
20683 (forward-line)
20684 (while (< (point) end)
20685 ;; Ensure that lines less indented than first one
20686 ;; still get included in item body.
20687 (funcall shift-text
20688 (+ ref-ind bul-len)
20689 (min end (save-excursion (or (outline-next-heading)
20690 (point)))))
20691 (forward-line))))
20692 ;; Case 4. Normal line without ARG: turn each non-item line
20693 ;; into an item.
20695 (while (< (point) end)
20696 (unless (or (org-at-heading-p) (org-at-item-p))
20697 (if (looking-at "\\([ \t]*\\)\\(\\S-\\)")
20698 (replace-match
20699 (concat "\\1" (org-list-bullet-string "-") "\\2"))))
20700 (forward-line))))))))
20702 (defun org-toggle-heading (&optional nstars)
20703 "Convert headings to normal text, or items or text to headings.
20704 If there is no active region, only convert the current line.
20706 With a \\[universal-argument] prefix, convert the whole list at
20707 point into heading.
20709 In a region:
20711 - If the first non blank line is a headline, remove the stars
20712 from all headlines in the region.
20714 - If it is a normal line, turn each and every normal line (i.e.,
20715 not an heading or an item) in the region into headings. If you
20716 want to convert only the first line of this region, use one
20717 universal prefix argument.
20719 - If it is a plain list item, turn all plain list items into headings.
20721 When converting a line into a heading, the number of stars is chosen
20722 such that the lines become children of the current entry. However,
20723 when a numeric prefix argument is given, its value determines the
20724 number of stars to add."
20725 (interactive "P")
20726 (let ((skip-blanks
20727 (function
20728 ;; Return beginning of first non-blank line, starting from
20729 ;; line at POS.
20730 (lambda (pos)
20731 (save-excursion
20732 (goto-char pos)
20733 (while (org-at-comment-p) (forward-line))
20734 (skip-chars-forward " \r\t\n")
20735 (point-at-bol)))))
20736 beg end toggled)
20737 ;; Determine boundaries of changes. If a universal prefix has
20738 ;; been given, put the list in a region. If region ends at a bol,
20739 ;; do not consider the last line to be in the region.
20741 (when (and current-prefix-arg (org-at-item-p))
20742 (if (listp current-prefix-arg) (setq current-prefix-arg 1))
20743 (org-mark-element))
20745 (if (org-region-active-p)
20746 (setq beg (funcall skip-blanks (region-beginning))
20747 end (copy-marker (save-excursion
20748 (goto-char (region-end))
20749 (if (bolp) (point) (point-at-eol)))))
20750 (setq beg (funcall skip-blanks (point-at-bol))
20751 end (copy-marker (point-at-eol))))
20752 ;; Ensure inline tasks don't count as headings.
20753 (org-with-limited-levels
20754 (save-excursion
20755 (goto-char beg)
20756 (cond
20757 ;; Case 1. Started at an heading: de-star headings.
20758 ((org-at-heading-p)
20759 (while (< (point) end)
20760 (when (org-at-heading-p t)
20761 (looking-at org-outline-regexp) (replace-match "")
20762 (setq toggled t))
20763 (forward-line)))
20764 ;; Case 2. Started at an item: change items into headlines.
20765 ;; One star will be added by `org-list-to-subtree'.
20766 ((org-at-item-p)
20767 (let* ((stars (make-string
20768 ;; subtract the star that will be added again by
20769 ;; `org-list-to-subtree'
20770 (if (numberp nstars) (1- nstars)
20771 (or (org-current-level) 0))
20772 ?*))
20773 (add-stars
20774 (cond (nstars "") ; stars from prefix only
20775 ((equal stars "") "") ; before first heading
20776 (org-odd-levels-only "*") ; inside heading, odd
20777 (t "")))) ; inside heading, oddeven
20778 (while (< (point) end)
20779 (when (org-at-item-p)
20780 ;; Pay attention to cases when region ends before list.
20781 (let* ((struct (org-list-struct))
20782 (list-end (min (org-list-get-bottom-point struct) (1+ end))))
20783 (save-restriction
20784 (narrow-to-region (point) list-end)
20785 (insert
20786 (org-list-to-subtree
20787 (org-list-parse-list t)
20788 '(:istart (concat stars add-stars (funcall get-stars depth))
20789 :icount (concat stars add-stars (funcall get-stars depth)))))))
20790 (setq toggled t))
20791 (forward-line))))
20792 ;; Case 3. Started at normal text: make every line an heading,
20793 ;; skipping headlines and items.
20794 (t (let* ((stars
20795 (make-string
20796 (if (numberp nstars) nstars (or (org-current-level) 0)) ?*))
20797 (add-stars
20798 (cond (nstars "") ; stars from prefix only
20799 ((equal stars "") "*") ; before first heading
20800 (org-odd-levels-only "**") ; inside heading, odd
20801 (t "*"))) ; inside heading, oddeven
20802 (rpl (concat stars add-stars " "))
20803 (lend (if (listp nstars) (save-excursion (end-of-line) (point)))))
20804 (while (< (point) (if (equal nstars '(4)) lend end))
20805 (when (and (not (or (org-at-heading-p) (org-at-item-p) (org-at-comment-p)))
20806 (looking-at "\\([ \t]*\\)\\(\\S-\\)"))
20807 (replace-match (concat rpl (match-string 2))) (setq toggled t))
20808 (forward-line)))))))
20809 (unless toggled (message "Cannot toggle heading from here"))))
20811 (defun org-meta-return (&optional arg)
20812 "Insert a new heading or wrap a region in a table.
20813 Calls `org-insert-heading' or `org-table-wrap-region', depending
20814 on context. See the individual commands for more information."
20815 (interactive "P")
20816 (org-check-before-invisible-edit 'insert)
20817 (or (run-hook-with-args-until-success 'org-metareturn-hook)
20818 (let* ((element (org-element-at-point))
20819 (type (org-element-type element)))
20820 (when (eq type 'table-row)
20821 (setq element (org-element-property :parent element))
20822 (setq type 'table))
20823 (if (and (eq type 'table)
20824 (eq (org-element-property :type element) 'org)
20825 (>= (point) (org-element-property :contents-begin element))
20826 (< (point) (org-element-property :contents-end element)))
20827 (call-interactively 'org-table-wrap-region)
20828 (call-interactively 'org-insert-heading)))))
20830 ;;; Menu entries
20832 (defsubst org-in-subtree-not-table-p ()
20833 "Are we in a subtree and not in a table?"
20834 (and (not (org-before-first-heading-p))
20835 (not (org-at-table-p))))
20837 ;; Define the Org-mode menus
20838 (easy-menu-define org-tbl-menu org-mode-map "Tbl menu"
20839 '("Tbl"
20840 ["Align" org-ctrl-c-ctrl-c :active (org-at-table-p)]
20841 ["Next Field" org-cycle (org-at-table-p)]
20842 ["Previous Field" org-shifttab (org-at-table-p)]
20843 ["Next Row" org-return (org-at-table-p)]
20844 "--"
20845 ["Blank Field" org-table-blank-field (org-at-table-p)]
20846 ["Edit Field" org-table-edit-field (org-at-table-p)]
20847 ["Copy Field from Above" org-table-copy-down (org-at-table-p)]
20848 "--"
20849 ("Column"
20850 ["Move Column Left" org-metaleft (org-at-table-p)]
20851 ["Move Column Right" org-metaright (org-at-table-p)]
20852 ["Delete Column" org-shiftmetaleft (org-at-table-p)]
20853 ["Insert Column" org-shiftmetaright (org-at-table-p)])
20854 ("Row"
20855 ["Move Row Up" org-metaup (org-at-table-p)]
20856 ["Move Row Down" org-metadown (org-at-table-p)]
20857 ["Delete Row" org-shiftmetaup (org-at-table-p)]
20858 ["Insert Row" org-shiftmetadown (org-at-table-p)]
20859 ["Sort lines in region" org-table-sort-lines (org-at-table-p)]
20860 "--"
20861 ["Insert Hline" org-ctrl-c-minus (org-at-table-p)])
20862 ("Rectangle"
20863 ["Copy Rectangle" org-copy-special (org-at-table-p)]
20864 ["Cut Rectangle" org-cut-special (org-at-table-p)]
20865 ["Paste Rectangle" org-paste-special (org-at-table-p)]
20866 ["Fill Rectangle" org-table-wrap-region (org-at-table-p)])
20867 "--"
20868 ("Calculate"
20869 ["Set Column Formula" org-table-eval-formula (org-at-table-p)]
20870 ["Set Field Formula" (org-table-eval-formula '(4)) :active (org-at-table-p) :keys "C-u C-c ="]
20871 ["Edit Formulas" org-edit-special (org-at-table-p)]
20872 "--"
20873 ["Recalculate line" org-table-recalculate (org-at-table-p)]
20874 ["Recalculate all" (lambda () (interactive) (org-table-recalculate '(4))) :active (org-at-table-p) :keys "C-u C-c *"]
20875 ["Iterate all" (lambda () (interactive) (org-table-recalculate '(16))) :active (org-at-table-p) :keys "C-u C-u C-c *"]
20876 "--"
20877 ["Toggle Recalculate Mark" org-table-rotate-recalc-marks (org-at-table-p)]
20878 "--"
20879 ["Sum Column/Rectangle" org-table-sum
20880 (or (org-at-table-p) (org-region-active-p))]
20881 ["Which Column?" org-table-current-column (org-at-table-p)])
20882 ["Debug Formulas"
20883 org-table-toggle-formula-debugger
20884 :style toggle :selected (org-bound-and-true-p org-table-formula-debug)]
20885 ["Show Col/Row Numbers"
20886 org-table-toggle-coordinate-overlays
20887 :style toggle
20888 :selected (org-bound-and-true-p org-table-overlay-coordinates)]
20889 "--"
20890 ["Create" org-table-create (and (not (org-at-table-p))
20891 org-enable-table-editor)]
20892 ["Convert Region" org-table-convert-region (not (org-at-table-p 'any))]
20893 ["Import from File" org-table-import (not (org-at-table-p))]
20894 ["Export to File" org-table-export (org-at-table-p)]
20895 "--"
20896 ["Create/Convert from/to table.el" org-table-create-with-table.el t]))
20898 (easy-menu-define org-org-menu org-mode-map "Org menu"
20899 '("Org"
20900 ("Show/Hide"
20901 ["Cycle Visibility" org-cycle :active (or (bobp) (outline-on-heading-p))]
20902 ["Cycle Global Visibility" org-shifttab :active (not (org-at-table-p))]
20903 ["Sparse Tree..." org-sparse-tree t]
20904 ["Reveal Context" org-reveal t]
20905 ["Show All" show-all t]
20906 "--"
20907 ["Subtree to indirect buffer" org-tree-to-indirect-buffer t])
20908 "--"
20909 ["New Heading" org-insert-heading t]
20910 ("Navigate Headings"
20911 ["Up" outline-up-heading t]
20912 ["Next" outline-next-visible-heading t]
20913 ["Previous" outline-previous-visible-heading t]
20914 ["Next Same Level" outline-forward-same-level t]
20915 ["Previous Same Level" outline-backward-same-level t]
20916 "--"
20917 ["Jump" org-goto t])
20918 ("Edit Structure"
20919 ["Refile Subtree" org-refile (org-in-subtree-not-table-p)]
20920 "--"
20921 ["Move Subtree Up" org-shiftmetaup (org-in-subtree-not-table-p)]
20922 ["Move Subtree Down" org-shiftmetadown (org-in-subtree-not-table-p)]
20923 "--"
20924 ["Copy Subtree" org-copy-special (org-in-subtree-not-table-p)]
20925 ["Cut Subtree" org-cut-special (org-in-subtree-not-table-p)]
20926 ["Paste Subtree" org-paste-special (not (org-at-table-p))]
20927 "--"
20928 ["Clone subtree, shift time" org-clone-subtree-with-time-shift t]
20929 "--"
20930 ["Copy visible text" org-copy-visible t]
20931 "--"
20932 ["Promote Heading" org-metaleft (org-in-subtree-not-table-p)]
20933 ["Promote Subtree" org-shiftmetaleft (org-in-subtree-not-table-p)]
20934 ["Demote Heading" org-metaright (org-in-subtree-not-table-p)]
20935 ["Demote Subtree" org-shiftmetaright (org-in-subtree-not-table-p)]
20936 "--"
20937 ["Sort Region/Children" org-sort t]
20938 "--"
20939 ["Convert to odd levels" org-convert-to-odd-levels t]
20940 ["Convert to odd/even levels" org-convert-to-oddeven-levels t])
20941 ("Editing"
20942 ["Emphasis..." org-emphasize t]
20943 ["Edit Source Example" org-edit-special t]
20944 "--"
20945 ["Footnote new/jump" org-footnote-action t]
20946 ["Footnote extra" (org-footnote-action t) :active t :keys "C-u C-c C-x f"])
20947 ("Archive"
20948 ["Archive (default method)" org-archive-subtree-default (org-in-subtree-not-table-p)]
20949 "--"
20950 ["Move Subtree to Archive file" org-advertized-archive-subtree (org-in-subtree-not-table-p)]
20951 ["Toggle ARCHIVE tag" org-toggle-archive-tag (org-in-subtree-not-table-p)]
20952 ["Move subtree to Archive sibling" org-archive-to-archive-sibling (org-in-subtree-not-table-p)]
20954 "--"
20955 ("Hyperlinks"
20956 ["Store Link (Global)" org-store-link t]
20957 ["Find existing link to here" org-occur-link-in-agenda-files t]
20958 ["Insert Link" org-insert-link t]
20959 ["Follow Link" org-open-at-point t]
20960 "--"
20961 ["Next link" org-next-link t]
20962 ["Previous link" org-previous-link t]
20963 "--"
20964 ["Descriptive Links"
20965 org-toggle-link-display
20966 :style radio
20967 :selected org-descriptive-links
20969 ["Literal Links"
20970 org-toggle-link-display
20971 :style radio
20972 :selected (not org-descriptive-links)])
20973 "--"
20974 ("TODO Lists"
20975 ["TODO/DONE/-" org-todo t]
20976 ("Select keyword"
20977 ["Next keyword" org-shiftright (org-at-heading-p)]
20978 ["Previous keyword" org-shiftleft (org-at-heading-p)]
20979 ["Complete Keyword" pcomplete (assq :todo-keyword (org-context))]
20980 ["Next keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-at-heading-p))]
20981 ["Previous keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-at-heading-p))])
20982 ["Show TODO Tree" org-show-todo-tree :active t :keys "C-c / t"]
20983 ["Global TODO list" org-todo-list :active t :keys "C-c a t"]
20984 "--"
20985 ["Enforce dependencies" (customize-variable 'org-enforce-todo-dependencies)
20986 :selected org-enforce-todo-dependencies :style toggle :active t]
20987 "Settings for tree at point"
20988 ["Do Children sequentially" org-toggle-ordered-property :style radio
20989 :selected (org-entry-get nil "ORDERED")
20990 :active org-enforce-todo-dependencies :keys "C-c C-x o"]
20991 ["Do Children parallel" org-toggle-ordered-property :style radio
20992 :selected (not (org-entry-get nil "ORDERED"))
20993 :active org-enforce-todo-dependencies :keys "C-c C-x o"]
20994 "--"
20995 ["Set Priority" org-priority t]
20996 ["Priority Up" org-shiftup t]
20997 ["Priority Down" org-shiftdown t]
20998 "--"
20999 ["Get news from all feeds" org-feed-update-all t]
21000 ["Go to the inbox of a feed..." org-feed-goto-inbox t]
21001 ["Customize feeds" (customize-variable 'org-feed-alist) t])
21002 ("TAGS and Properties"
21003 ["Set Tags" org-set-tags-command (not (org-before-first-heading-p))]
21004 ["Change tag in region" org-change-tag-in-region (org-region-active-p)]
21005 "--"
21006 ["Set property" org-set-property (not (org-before-first-heading-p))]
21007 ["Column view of properties" org-columns t]
21008 ["Insert Column View DBlock" org-insert-columns-dblock t])
21009 ("Dates and Scheduling"
21010 ["Timestamp" org-time-stamp (not (org-before-first-heading-p))]
21011 ["Timestamp (inactive)" org-time-stamp-inactive (not (org-before-first-heading-p))]
21012 ("Change Date"
21013 ["1 Day Later" org-shiftright (org-at-timestamp-p)]
21014 ["1 Day Earlier" org-shiftleft (org-at-timestamp-p)]
21015 ["1 ... Later" org-shiftup (org-at-timestamp-p)]
21016 ["1 ... Earlier" org-shiftdown (org-at-timestamp-p)])
21017 ["Compute Time Range" org-evaluate-time-range t]
21018 ["Schedule Item" org-schedule (not (org-before-first-heading-p))]
21019 ["Deadline" org-deadline (not (org-before-first-heading-p))]
21020 "--"
21021 ["Custom time format" org-toggle-time-stamp-overlays
21022 :style radio :selected org-display-custom-times]
21023 "--"
21024 ["Goto Calendar" org-goto-calendar t]
21025 ["Date from Calendar" org-date-from-calendar t]
21026 "--"
21027 ["Start/Restart Timer" org-timer-start t]
21028 ["Pause/Continue Timer" org-timer-pause-or-continue t]
21029 ["Stop Timer" org-timer-pause-or-continue :active t :keys "C-u C-c C-x ,"]
21030 ["Insert Timer String" org-timer t]
21031 ["Insert Timer Item" org-timer-item t])
21032 ("Logging work"
21033 ["Clock in" org-clock-in :active t :keys "C-c C-x C-i"]
21034 ["Switch task" (lambda () (interactive) (org-clock-in '(4))) :active t :keys "C-u C-c C-x C-i"]
21035 ["Clock out" org-clock-out t]
21036 ["Clock cancel" org-clock-cancel t]
21037 "--"
21038 ["Mark as default task" org-clock-mark-default-task t]
21039 ["Clock in, mark as default" (lambda () (interactive) (org-clock-in '(16))) :active t :keys "C-u C-u C-c C-x C-i"]
21040 ["Goto running clock" org-clock-goto t]
21041 "--"
21042 ["Display times" org-clock-display t]
21043 ["Create clock table" org-clock-report t]
21044 "--"
21045 ["Record DONE time"
21046 (progn (setq org-log-done (not org-log-done))
21047 (message "Switching to %s will %s record a timestamp"
21048 (car org-done-keywords)
21049 (if org-log-done "automatically" "not")))
21050 :style toggle :selected org-log-done])
21051 "--"
21052 ["Agenda Command..." org-agenda t]
21053 ["Set Restriction Lock" org-agenda-set-restriction-lock t]
21054 ("File List for Agenda")
21055 ("Special views current file"
21056 ["TODO Tree" org-show-todo-tree t]
21057 ["Check Deadlines" org-check-deadlines t]
21058 ["Timeline" org-timeline t]
21059 ["Tags/Property tree" org-match-sparse-tree t])
21060 "--"
21061 ["Export/Publish..." org-export-dispatch t]
21062 ("LaTeX"
21063 ["Org CDLaTeX mode" org-cdlatex-mode :style toggle
21064 :selected org-cdlatex-mode]
21065 ["Insert Environment" cdlatex-environment (fboundp 'cdlatex-environment)]
21066 ["Insert math symbol" cdlatex-math-symbol (fboundp 'cdlatex-math-symbol)]
21067 ["Modify math symbol" org-cdlatex-math-modify
21068 (org-inside-LaTeX-fragment-p)]
21069 ["Insert citation" org-reftex-citation t]
21070 "--"
21071 ["Template for BEAMER" (org-beamer-insert-options-template) t])
21072 "--"
21073 ("MobileOrg"
21074 ["Push Files and Views" org-mobile-push t]
21075 ["Get Captured and Flagged" org-mobile-pull t]
21076 ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "C-c a ?"]
21077 "--"
21078 ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
21079 "--"
21080 ("Documentation"
21081 ["Show Version" org-version t]
21082 ["Info Documentation" org-info t])
21083 ("Customize"
21084 ["Browse Org Group" org-customize t]
21085 "--"
21086 ["Expand This Menu" org-create-customize-menu
21087 (fboundp 'customize-menu-create)])
21088 ["Send bug report" org-submit-bug-report t]
21089 "--"
21090 ("Refresh/Reload"
21091 ["Refresh setup current buffer" org-mode-restart t]
21092 ["Reload Org (after update)" org-reload t]
21093 ["Reload Org uncompiled" (org-reload t) :active t :keys "C-u C-c C-x !"])
21096 (defun org-info (&optional node)
21097 "Read documentation for Org-mode in the info system.
21098 With optional NODE, go directly to that node."
21099 (interactive)
21100 (info (format "(org)%s" (or node ""))))
21102 ;;;###autoload
21103 (defun org-submit-bug-report ()
21104 "Submit a bug report on Org-mode via mail.
21106 Don't hesitate to report any problems or inaccurate documentation.
21108 If you don't have setup sending mail from (X)Emacs, please copy the
21109 output buffer into your mail program, as it gives us important
21110 information about your Org-mode version and configuration."
21111 (interactive)
21112 (require 'reporter)
21113 (org-load-modules-maybe)
21114 (org-require-autoloaded-modules)
21115 (let ((reporter-prompt-for-summary-p "Bug report subject: "))
21116 (reporter-submit-bug-report
21117 "emacs-orgmode@gnu.org"
21118 (org-version nil 'full)
21119 (let (list)
21120 (save-window-excursion
21121 (org-pop-to-buffer-same-window (get-buffer-create "*Warn about privacy*"))
21122 (delete-other-windows)
21123 (erase-buffer)
21124 (insert "You are about to submit a bug report to the Org-mode mailing list.
21126 We would like to add your full Org-mode and Outline configuration to the
21127 bug report. This greatly simplifies the work of the maintainer and
21128 other experts on the mailing list.
21130 HOWEVER, some variables you have customized may contain private
21131 information. The names of customers, colleagues, or friends, might
21132 appear in the form of file names, tags, todo states, or search strings.
21133 If you answer yes to the prompt, you might want to check and remove
21134 such private information before sending the email.")
21135 (add-text-properties (point-min) (point-max) '(face org-warning))
21136 (when (yes-or-no-p "Include your Org-mode configuration ")
21137 (mapatoms
21138 (lambda (v)
21139 (and (boundp v)
21140 (string-match "\\`\\(org-\\|outline-\\)" (symbol-name v))
21141 (or (and (symbol-value v)
21142 (string-match "\\(-hook\\|-function\\)\\'" (symbol-name v)))
21143 (and
21144 (get v 'custom-type) (get v 'standard-value)
21145 (not (equal (symbol-value v) (eval (car (get v 'standard-value)))))))
21146 (push v list)))))
21147 (kill-buffer (get-buffer "*Warn about privacy*"))
21148 list))
21149 nil nil
21150 "Remember to cover the basics, that is, what you expected to happen and
21151 what in fact did happen. You don't know how to make a good report? See
21153 http://orgmode.org/manual/Feedback.html#Feedback
21155 Your bug report will be posted to the Org-mode mailing list.
21156 ------------------------------------------------------------------------")
21157 (save-excursion
21158 (if (re-search-backward "^\\(Subject: \\)Org-mode version \\(.*?\\);[ \t]*\\(.*\\)" nil t)
21159 (replace-match "\\1Bug: \\3 [\\2]")))))
21162 (defun org-install-agenda-files-menu ()
21163 (let ((bl (buffer-list)))
21164 (save-excursion
21165 (while bl
21166 (set-buffer (pop bl))
21167 (if (derived-mode-p 'org-mode) (setq bl nil)))
21168 (when (derived-mode-p 'org-mode)
21169 (easy-menu-change
21170 '("Org") "File List for Agenda"
21171 (append
21172 (list
21173 ["Edit File List" (org-edit-agenda-file-list) t]
21174 ["Add/Move Current File to Front of List" org-agenda-file-to-front t]
21175 ["Remove Current File from List" org-remove-file t]
21176 ["Cycle through agenda files" org-cycle-agenda-files t]
21177 ["Occur in all agenda files" org-occur-in-agenda-files t]
21178 "--")
21179 (mapcar 'org-file-menu-entry (org-agenda-files t))))))))
21181 ;;;; Documentation
21183 (defun org-require-autoloaded-modules ()
21184 (interactive)
21185 (mapc 'require
21186 '(org-agenda org-archive org-attach org-clock org-colview org-id
21187 org-table org-timer)))
21189 ;;;###autoload
21190 (defun org-reload (&optional uncompiled)
21191 "Reload all org lisp files.
21192 With prefix arg UNCOMPILED, load the uncompiled versions."
21193 (interactive "P")
21194 (require 'loadhist)
21195 (let* ((org-dir (org-find-library-dir "org"))
21196 (contrib-dir (or (org-find-library-dir "org-contribdir") org-dir))
21197 (feature-re "^\\(org\\|ob\\|ox\\)\\(-.*\\)?")
21198 (remove-re (mapconcat 'identity
21199 (mapcar (lambda (f) (concat "^" f "$"))
21200 (list (if (featurep 'xemacs)
21201 "org-colview"
21202 "org-colview-xemacs")
21203 "org" "org-loaddefs" "org-version"))
21204 "\\|"))
21205 (feats (delete-dups
21206 (mapcar 'file-name-sans-extension
21207 (mapcar 'file-name-nondirectory
21208 (delq nil
21209 (mapcar 'feature-file
21210 features))))))
21211 (lfeat (append
21212 (sort
21213 (setq feats
21214 (delq nil (mapcar
21215 (lambda (f)
21216 (if (and (string-match feature-re f)
21217 (not (string-match remove-re f)))
21218 f nil))
21219 feats)))
21220 'string-lessp)
21221 (list "org-version" "org")))
21222 (load-suffixes (when (boundp 'load-suffixes) load-suffixes))
21223 (load-suffixes (if uncompiled (reverse load-suffixes) load-suffixes))
21224 load-uncore load-misses)
21225 (setq load-misses
21226 (delq 't
21227 (mapcar (lambda (f)
21228 (or (org-load-noerror-mustsuffix (concat org-dir f))
21229 (and (string= org-dir contrib-dir)
21230 (org-load-noerror-mustsuffix (concat contrib-dir f)))
21231 (and (org-load-noerror-mustsuffix (concat (org-find-library-dir f) f))
21232 (add-to-list 'load-uncore f 'append)
21235 lfeat)))
21236 (if load-uncore
21237 (message "The following feature%s found in load-path, please check if that's correct:\n%s"
21238 (if (> (length load-uncore) 1) "s were" " was") load-uncore))
21239 (if load-misses
21240 (message "Some error occurred while reloading Org feature%s\n%s\nPlease check *Messages*!\n%s"
21241 (if (> (length load-misses) 1) "s" "") load-misses (org-version nil 'full))
21242 (message "Successfully reloaded Org\n%s" (org-version nil 'full)))))
21244 ;;;###autoload
21245 (defun org-customize ()
21246 "Call the customize function with org as argument."
21247 (interactive)
21248 (org-load-modules-maybe)
21249 (org-require-autoloaded-modules)
21250 (customize-browse 'org))
21252 (defun org-create-customize-menu ()
21253 "Create a full customization menu for Org-mode, insert it into the menu."
21254 (interactive)
21255 (org-load-modules-maybe)
21256 (org-require-autoloaded-modules)
21257 (if (fboundp 'customize-menu-create)
21258 (progn
21259 (easy-menu-change
21260 '("Org") "Customize"
21261 `(["Browse Org group" org-customize t]
21262 "--"
21263 ,(customize-menu-create 'org)
21264 ["Set" Custom-set t]
21265 ["Save" Custom-save t]
21266 ["Reset to Current" Custom-reset-current t]
21267 ["Reset to Saved" Custom-reset-saved t]
21268 ["Reset to Standard Settings" Custom-reset-standard t]))
21269 (message "\"Org\"-menu now contains full customization menu"))
21270 (error "Cannot expand menu (outdated version of cus-edit.el)")))
21272 ;;;; Miscellaneous stuff
21274 ;;; Generally useful functions
21276 (defun org-get-at-bol (property)
21277 "Get text property PROPERTY at beginning of line."
21278 (get-text-property (point-at-bol) property))
21280 (defun org-find-text-property-in-string (prop s)
21281 "Return the first non-nil value of property PROP in string S."
21282 (or (get-text-property 0 prop s)
21283 (get-text-property (or (next-single-property-change 0 prop s) 0)
21284 prop s)))
21286 (defun org-display-warning (message) ;; Copied from Emacs-Muse
21287 "Display the given MESSAGE as a warning."
21288 (if (fboundp 'display-warning)
21289 (display-warning 'org message
21290 (if (featurep 'xemacs) 'warning :warning))
21291 (let ((buf (get-buffer-create "*Org warnings*")))
21292 (with-current-buffer buf
21293 (goto-char (point-max))
21294 (insert "Warning (Org): " message)
21295 (unless (bolp)
21296 (newline)))
21297 (display-buffer buf)
21298 (sit-for 0))))
21300 (defun org-eval (form)
21301 "Eval FORM and return result."
21302 (condition-case error
21303 (eval form)
21304 (error (format "%%![Error: %s]" error))))
21306 (defun org-in-clocktable-p ()
21307 "Check if the cursor is in a clocktable."
21308 (let ((pos (point)) start)
21309 (save-excursion
21310 (end-of-line 1)
21311 (and (re-search-backward "^[ \t]*#\\+BEGIN:[ \t]+clocktable" nil t)
21312 (setq start (match-beginning 0))
21313 (re-search-forward "^[ \t]*#\\+END:.*" nil t)
21314 (>= (match-end 0) pos)
21315 start))))
21317 (defun org-in-commented-line ()
21318 "Is point in a line starting with `#'?"
21319 (equal (char-after (point-at-bol)) ?#))
21321 (defun org-in-indented-comment-line ()
21322 "Is point in a line starting with `#' after some white space?"
21323 (save-excursion
21324 (save-match-data
21325 (goto-char (point-at-bol))
21326 (looking-at "[ \t]*#"))))
21328 (defun org-in-verbatim-emphasis ()
21329 (save-match-data
21330 (and (org-in-regexp org-emph-re 2)
21331 (>= (point) (match-beginning 3))
21332 (<= (point) (match-end 4))
21333 (member (match-string 3) '("=" "~")))))
21335 (defun org-goto-marker-or-bmk (marker &optional bookmark)
21336 "Go to MARKER, widen if necessary. When marker is not live, try BOOKMARK."
21337 (if (and marker (marker-buffer marker)
21338 (buffer-live-p (marker-buffer marker)))
21339 (progn
21340 (org-pop-to-buffer-same-window (marker-buffer marker))
21341 (if (or (> marker (point-max)) (< marker (point-min)))
21342 (widen))
21343 (goto-char marker)
21344 (org-show-context 'org-goto))
21345 (if bookmark
21346 (bookmark-jump bookmark)
21347 (error "Cannot find location"))))
21349 (defun org-quote-csv-field (s)
21350 "Quote field for inclusion in CSV material."
21351 (if (string-match "[\",]" s)
21352 (concat "\"" (mapconcat 'identity (split-string s "\"") "\"\"") "\"")
21355 (defun org-force-self-insert (N)
21356 "Needed to enforce self-insert under remapping."
21357 (interactive "p")
21358 (self-insert-command N))
21360 (defun org-string-width (s)
21361 "Compute width of string, ignoring invisible characters.
21362 This ignores character with invisibility property `org-link', and also
21363 characters with property `org-cwidth', because these will become invisible
21364 upon the next fontification round."
21365 (let (b l)
21366 (when (or (eq t buffer-invisibility-spec)
21367 (assq 'org-link buffer-invisibility-spec))
21368 (while (setq b (text-property-any 0 (length s)
21369 'invisible 'org-link s))
21370 (setq s (concat (substring s 0 b)
21371 (substring s (or (next-single-property-change
21372 b 'invisible s) (length s)))))))
21373 (while (setq b (text-property-any 0 (length s) 'org-cwidth t s))
21374 (setq s (concat (substring s 0 b)
21375 (substring s (or (next-single-property-change
21376 b 'org-cwidth s) (length s))))))
21377 (setq l (string-width s) b -1)
21378 (while (setq b (text-property-any (1+ b) (length s) 'org-dwidth t s))
21379 (setq l (- l (get-text-property b 'org-dwidth-n s))))
21382 (defun org-shorten-string (s maxlength)
21383 "Shorten string S so tht it is no longer than MAXLENGTH characters.
21384 If the string is shorter or has length MAXLENGTH, just return the
21385 original string. If it is longer, the functions finds a space in the
21386 string, breaks this string off at that locations and adds three dots
21387 as ellipsis. Including the ellipsis, the string will not be longer
21388 than MAXLENGTH. If finding a good breaking point in the string does
21389 not work, the string is just chopped off in the middle of a word
21390 if necessary."
21391 (if (<= (length s) maxlength)
21393 (let* ((n (max (- maxlength 4) 1))
21394 (re (concat "\\`\\(.\\{1," (int-to-string n) "\\}[^ ]\\)\\([ ]\\|\\'\\)")))
21395 (if (string-match re s)
21396 (concat (match-string 1 s) "...")
21397 (concat (substring s 0 (max (- maxlength 3) 0)) "...")))))
21399 (defun org-get-indentation (&optional line)
21400 "Get the indentation of the current line, interpreting tabs.
21401 When LINE is given, assume it represents a line and compute its indentation."
21402 (if line
21403 (if (string-match "^ *" (org-remove-tabs line))
21404 (match-end 0))
21405 (save-excursion
21406 (beginning-of-line 1)
21407 (skip-chars-forward " \t")
21408 (current-column))))
21410 (defun org-get-string-indentation (s)
21411 "What indentation has S due to SPACE and TAB at the beginning of the string?"
21412 (let ((n -1) (i 0) (w tab-width) c)
21413 (catch 'exit
21414 (while (< (setq n (1+ n)) (length s))
21415 (setq c (aref s n))
21416 (cond ((= c ?\ ) (setq i (1+ i)))
21417 ((= c ?\t) (setq i (* (/ (+ w i) w) w)))
21418 (t (throw 'exit t)))))
21421 (defun org-remove-tabs (s &optional width)
21422 "Replace tabulators in S with spaces.
21423 Assumes that s is a single line, starting in column 0."
21424 (setq width (or width tab-width))
21425 (while (string-match "\t" s)
21426 (setq s (replace-match
21427 (make-string
21428 (- (* width (/ (+ (match-beginning 0) width) width))
21429 (match-beginning 0)) ?\ )
21430 t t s)))
21433 (defun org-fix-indentation (line ind)
21434 "Fix indentation in LINE.
21435 IND is a cons cell with target and minimum indentation.
21436 If the current indentation in LINE is smaller than the minimum,
21437 leave it alone. If it is larger than ind, set it to the target."
21438 (let* ((l (org-remove-tabs line))
21439 (i (org-get-indentation l))
21440 (i1 (car ind)) (i2 (cdr ind)))
21441 (if (>= i i2) (setq l (substring line i2)))
21442 (if (> i1 0)
21443 (concat (make-string i1 ?\ ) l)
21444 l)))
21446 (defun org-remove-indentation (code &optional n)
21447 "Remove the maximum common indentation from the lines in CODE.
21448 N may optionally be the number of spaces to remove."
21449 (with-temp-buffer
21450 (insert code)
21451 (org-do-remove-indentation n)
21452 (buffer-string)))
21454 (defun org-do-remove-indentation (&optional n)
21455 "Remove the maximum common indentation from the buffer."
21456 (untabify (point-min) (point-max))
21457 (let ((min 10000) re)
21458 (if n
21459 (setq min n)
21460 (goto-char (point-min))
21461 (while (re-search-forward "^ *[^ \n]" nil t)
21462 (setq min (min min (1- (- (match-end 0) (match-beginning 0)))))))
21463 (unless (or (= min 0) (= min 10000))
21464 (setq re (format "^ \\{%d\\}" min))
21465 (goto-char (point-min))
21466 (while (re-search-forward re nil t)
21467 (replace-match "")
21468 (end-of-line 1))
21469 min)))
21471 (defun org-fill-template (template alist)
21472 "Find each %key of ALIST in TEMPLATE and replace it."
21473 (let ((case-fold-search nil)
21474 entry key value)
21475 (setq alist (sort (copy-sequence alist)
21476 (lambda (a b) (< (length (car a)) (length (car b))))))
21477 (while (setq entry (pop alist))
21478 (setq template
21479 (replace-regexp-in-string
21480 (concat "%" (regexp-quote (car entry)))
21481 (or (cdr entry) "") template t t)))
21482 template))
21484 (defun org-base-buffer (buffer)
21485 "Return the base buffer of BUFFER, if it has one. Else return the buffer."
21486 (if (not buffer)
21487 buffer
21488 (or (buffer-base-buffer buffer)
21489 buffer)))
21491 (defun org-trim (s)
21492 "Remove whitespace at beginning and end of string."
21493 (if (string-match "\\`[ \t\n\r]+" s) (setq s (replace-match "" t t s)))
21494 (if (string-match "[ \t\n\r]+\\'" s) (setq s (replace-match "" t t s)))
21497 (defun org-wrap (string &optional width lines)
21498 "Wrap string to either a number of lines, or a width in characters.
21499 If WIDTH is non-nil, the string is wrapped to that width, however many lines
21500 that costs. If there is a word longer than WIDTH, the text is actually
21501 wrapped to the length of that word.
21502 IF WIDTH is nil and LINES is non-nil, the string is forced into at most that
21503 many lines, whatever width that takes.
21504 The return value is a list of lines, without newlines at the end."
21505 (let* ((words (org-split-string string "[ \t\n]+"))
21506 (maxword (apply 'max (mapcar 'org-string-width words)))
21507 w ll)
21508 (cond (width
21509 (org-do-wrap words (max maxword width)))
21510 (lines
21511 (setq w maxword)
21512 (setq ll (org-do-wrap words maxword))
21513 (if (<= (length ll) lines)
21515 (setq ll words)
21516 (while (> (length ll) lines)
21517 (setq w (1+ w))
21518 (setq ll (org-do-wrap words w)))
21519 ll))
21520 (t (error "Cannot wrap this")))))
21522 (defun org-do-wrap (words width)
21523 "Create lines of maximum width WIDTH (in characters) from word list WORDS."
21524 (let (lines line)
21525 (while words
21526 (setq line (pop words))
21527 (while (and words (< (+ (length line) (length (car words))) width))
21528 (setq line (concat line " " (pop words))))
21529 (setq lines (push line lines)))
21530 (nreverse lines)))
21532 (defun org-split-string (string &optional separators)
21533 "Splits STRING into substrings at SEPARATORS.
21534 No empty strings are returned if there are matches at the beginning
21535 and end of string."
21536 (let ((rexp (or separators "[ \f\t\n\r\v]+"))
21537 (start 0)
21538 notfirst
21539 (list nil))
21540 (while (and (string-match rexp string
21541 (if (and notfirst
21542 (= start (match-beginning 0))
21543 (< start (length string)))
21544 (1+ start) start))
21545 (< (match-beginning 0) (length string)))
21546 (setq notfirst t)
21547 (or (eq (match-beginning 0) 0)
21548 (and (eq (match-beginning 0) (match-end 0))
21549 (eq (match-beginning 0) start))
21550 (setq list
21551 (cons (substring string start (match-beginning 0))
21552 list)))
21553 (setq start (match-end 0)))
21554 (or (eq start (length string))
21555 (setq list
21556 (cons (substring string start)
21557 list)))
21558 (nreverse list)))
21560 (defun org-quote-vert (s)
21561 "Replace \"|\" with \"\\vert\"."
21562 (while (string-match "|" s)
21563 (setq s (replace-match "\\vert" t t s)))
21566 (defun org-uuidgen-p (s)
21567 "Is S an ID created by UUIDGEN?"
21568 (string-match "\\`[0-9a-f]\\{8\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{12\\}\\'" (downcase s)))
21570 (defun org-in-src-block-p (&optional inside)
21571 "Whether point is in a code source block.
21572 When INSIDE is non-nil, don't consider we are within a src block
21573 when point is at #+BEGIN_SRC or #+END_SRC."
21574 (let ((case-fold-search t) ov)
21575 (or (and (setq ov (overlays-at (point)))
21576 (memq 'org-block-background
21577 (overlay-properties (car ov))))
21578 (and (not inside)
21579 (save-match-data
21580 (save-excursion
21581 (beginning-of-line)
21582 (looking-at ".*#\\+\\(begin\\|end\\)_src")))))))
21584 (defun org-context ()
21585 "Return a list of contexts of the current cursor position.
21586 If several contexts apply, all are returned.
21587 Each context entry is a list with a symbol naming the context, and
21588 two positions indicating start and end of the context. Possible
21589 contexts are:
21591 :headline anywhere in a headline
21592 :headline-stars on the leading stars in a headline
21593 :todo-keyword on a TODO keyword (including DONE) in a headline
21594 :tags on the TAGS in a headline
21595 :priority on the priority cookie in a headline
21596 :item on the first line of a plain list item
21597 :item-bullet on the bullet/number of a plain list item
21598 :checkbox on the checkbox in a plain list item
21599 :table in an org-mode table
21600 :table-special on a special filed in a table
21601 :table-table in a table.el table
21602 :clocktable in a clocktable
21603 :src-block in a source block
21604 :link on a hyperlink
21605 :keyword on a keyword: SCHEDULED, DEADLINE, CLOSE, COMMENT, QUOTE.
21606 :target on a <<target>>
21607 :radio-target on a <<<radio-target>>>
21608 :latex-fragment on a LaTeX fragment
21609 :latex-preview on a LaTeX fragment with overlaid preview image
21611 This function expects the position to be visible because it uses font-lock
21612 faces as a help to recognize the following contexts: :table-special, :link,
21613 and :keyword."
21614 (let* ((f (get-text-property (point) 'face))
21615 (faces (if (listp f) f (list f)))
21616 (case-fold-search t)
21617 (p (point)) clist o)
21618 ;; First the large context
21619 (cond
21620 ((org-at-heading-p t)
21621 (push (list :headline (point-at-bol) (point-at-eol)) clist)
21622 (when (progn
21623 (beginning-of-line 1)
21624 (looking-at org-todo-line-tags-regexp))
21625 (push (org-point-in-group p 1 :headline-stars) clist)
21626 (push (org-point-in-group p 2 :todo-keyword) clist)
21627 (push (org-point-in-group p 4 :tags) clist))
21628 (goto-char p)
21629 (skip-chars-backward "^[\n\r \t") (or (bobp) (backward-char 1))
21630 (if (looking-at "\\[#[A-Z0-9]\\]")
21631 (push (org-point-in-group p 0 :priority) clist)))
21633 ((org-at-item-p)
21634 (push (org-point-in-group p 2 :item-bullet) clist)
21635 (push (list :item (point-at-bol)
21636 (save-excursion (org-end-of-item) (point)))
21637 clist)
21638 (and (org-at-item-checkbox-p)
21639 (push (org-point-in-group p 0 :checkbox) clist)))
21641 ((org-at-table-p)
21642 (push (list :table (org-table-begin) (org-table-end)) clist)
21643 (if (memq 'org-formula faces)
21644 (push (list :table-special
21645 (previous-single-property-change p 'face)
21646 (next-single-property-change p 'face)) clist)))
21647 ((org-at-table-p 'any)
21648 (push (list :table-table) clist)))
21649 (goto-char p)
21651 (let ((case-fold-search t))
21652 ;; New the "medium" contexts: clocktables, source blocks
21653 (cond ((org-in-clocktable-p)
21654 (push (list :clocktable
21655 (and (or (looking-at "#\\+BEGIN: clocktable")
21656 (search-backward "#+BEGIN: clocktable" nil t))
21657 (match-beginning 0))
21658 (and (re-search-forward "#\\+END:?" nil t)
21659 (match-end 0))) clist))
21660 ((org-in-src-block-p)
21661 (push (list :src-block
21662 (and (or (looking-at "#\\+BEGIN_SRC")
21663 (search-backward "#+BEGIN_SRC" nil t))
21664 (match-beginning 0))
21665 (and (search-forward "#+END_SRC" nil t)
21666 (match-beginning 0))) clist))))
21667 (goto-char p)
21669 ;; Now the small context
21670 (cond
21671 ((org-at-timestamp-p)
21672 (push (org-point-in-group p 0 :timestamp) clist))
21673 ((memq 'org-link faces)
21674 (push (list :link
21675 (previous-single-property-change p 'face)
21676 (next-single-property-change p 'face)) clist))
21677 ((memq 'org-special-keyword faces)
21678 (push (list :keyword
21679 (previous-single-property-change p 'face)
21680 (next-single-property-change p 'face)) clist))
21681 ((org-at-target-p)
21682 (push (org-point-in-group p 0 :target) clist)
21683 (goto-char (1- (match-beginning 0)))
21684 (if (looking-at org-radio-target-regexp)
21685 (push (org-point-in-group p 0 :radio-target) clist))
21686 (goto-char p))
21687 ((setq o (car (delq nil
21688 (mapcar
21689 (lambda (x)
21690 (if (memq x org-latex-fragment-image-overlays) x))
21691 (overlays-at (point))))))
21692 (push (list :latex-fragment
21693 (overlay-start o) (overlay-end o)) clist)
21694 (push (list :latex-preview
21695 (overlay-start o) (overlay-end o)) clist))
21696 ((org-inside-LaTeX-fragment-p)
21697 ;; FIXME: positions wrong.
21698 (push (list :latex-fragment (point) (point)) clist)))
21700 (setq clist (nreverse (delq nil clist)))
21701 clist))
21703 ;; FIXME: Compare with at-regexp-p Do we need both?
21704 (defun org-in-regexp (re &optional nlines visually)
21705 "Check if point is inside a match of regexp.
21706 Normally only the current line is checked, but you can include NLINES extra
21707 lines both before and after point into the search.
21708 If VISUALLY is set, require that the cursor is not after the match but
21709 really on, so that the block visually is on the match."
21710 (catch 'exit
21711 (let ((pos (point))
21712 (eol (point-at-eol (+ 1 (or nlines 0))))
21713 (inc (if visually 1 0)))
21714 (save-excursion
21715 (beginning-of-line (- 1 (or nlines 0)))
21716 (while (re-search-forward re eol t)
21717 (if (and (<= (match-beginning 0) pos)
21718 (>= (+ inc (match-end 0)) pos))
21719 (throw 'exit (cons (match-beginning 0) (match-end 0)))))))))
21721 (defun org-at-regexp-p (regexp)
21722 "Is point inside a match of REGEXP in the current line?"
21723 (catch 'exit
21724 (save-excursion
21725 (let ((pos (point)) (end (point-at-eol)))
21726 (beginning-of-line 1)
21727 (while (re-search-forward regexp end t)
21728 (if (and (<= (match-beginning 0) pos)
21729 (>= (match-end 0) pos))
21730 (throw 'exit t)))
21731 nil))))
21733 (defun org-between-regexps-p (start-re end-re &optional lim-up lim-down)
21734 "Non-nil when point is between matches of START-RE and END-RE.
21736 Also return a non-nil value when point is on one of the matches.
21738 Optional arguments LIM-UP and LIM-DOWN bound the search; they are
21739 buffer positions. Default values are the positions of headlines
21740 surrounding the point.
21742 The functions returns a cons cell whose car (resp. cdr) is the
21743 position before START-RE (resp. after END-RE)."
21744 (save-match-data
21745 (let ((pos (point))
21746 (limit-up (or lim-up (save-excursion (outline-previous-heading))))
21747 (limit-down (or lim-down (save-excursion (outline-next-heading))))
21748 beg end)
21749 (save-excursion
21750 ;; Point is on a block when on START-RE or if START-RE can be
21751 ;; found before it...
21752 (and (or (org-at-regexp-p start-re)
21753 (re-search-backward start-re limit-up t))
21754 (setq beg (match-beginning 0))
21755 ;; ... and END-RE after it...
21756 (goto-char (match-end 0))
21757 (re-search-forward end-re limit-down t)
21758 (> (setq end (match-end 0)) pos)
21759 ;; ... without another START-RE in-between.
21760 (goto-char (match-beginning 0))
21761 (not (re-search-backward start-re (1+ beg) t))
21762 ;; Return value.
21763 (cons beg end))))))
21765 (defun org-in-block-p (names)
21766 "Non-nil when point belongs to a block whose name belongs to NAMES.
21768 NAMES is a list of strings containing names of blocks.
21770 Return first block name matched, or nil. Beware that in case of
21771 nested blocks, the returned name may not belong to the closest
21772 block from point."
21773 (save-match-data
21774 (catch 'exit
21775 (let ((case-fold-search t)
21776 (lim-up (save-excursion (outline-previous-heading)))
21777 (lim-down (save-excursion (outline-next-heading))))
21778 (mapc (lambda (name)
21779 (let ((n (regexp-quote name)))
21780 (when (org-between-regexps-p
21781 (concat "^[ \t]*#\\+begin_" n)
21782 (concat "^[ \t]*#\\+end_" n)
21783 lim-up lim-down)
21784 (throw 'exit n))))
21785 names))
21786 nil)))
21788 (defun org-in-drawer-p ()
21789 "Is point within a drawer?"
21790 (save-match-data
21791 (let ((case-fold-search t)
21792 (lim-up (save-excursion (outline-previous-heading)))
21793 (lim-down (save-excursion (outline-next-heading))))
21794 (org-between-regexps-p
21795 (concat "^[ \t]*:" (regexp-opt org-drawers) ":")
21796 "^[ \t]*:end:.*$"
21797 lim-up lim-down))))
21799 (defun org-occur-in-agenda-files (regexp &optional nlines)
21800 "Call `multi-occur' with buffers for all agenda files."
21801 (interactive "sOrg-files matching: \np")
21802 (let* ((files (org-agenda-files))
21803 (tnames (mapcar 'file-truename files))
21804 (extra org-agenda-text-search-extra-files)
21806 (when (eq (car extra) 'agenda-archives)
21807 (setq extra (cdr extra))
21808 (setq files (org-add-archive-files files)))
21809 (while (setq f (pop extra))
21810 (unless (member (file-truename f) tnames)
21811 (add-to-list 'files f 'append)
21812 (add-to-list 'tnames (file-truename f) 'append)))
21813 (multi-occur
21814 (mapcar (lambda (x)
21815 (with-current-buffer
21816 (or (get-file-buffer x) (find-file-noselect x))
21817 (widen)
21818 (current-buffer)))
21819 files)
21820 regexp)))
21822 (if (boundp 'occur-mode-find-occurrence-hook)
21823 ;; Emacs 23
21824 (add-hook 'occur-mode-find-occurrence-hook
21825 (lambda ()
21826 (when (derived-mode-p 'org-mode)
21827 (org-reveal))))
21828 ;; Emacs 22
21829 (defadvice occur-mode-goto-occurrence
21830 (after org-occur-reveal activate)
21831 (and (derived-mode-p 'org-mode) (org-reveal)))
21832 (defadvice occur-mode-goto-occurrence-other-window
21833 (after org-occur-reveal activate)
21834 (and (derived-mode-p 'org-mode) (org-reveal)))
21835 (defadvice occur-mode-display-occurrence
21836 (after org-occur-reveal activate)
21837 (when (derived-mode-p 'org-mode)
21838 (let ((pos (occur-mode-find-occurrence)))
21839 (with-current-buffer (marker-buffer pos)
21840 (save-excursion
21841 (goto-char pos)
21842 (org-reveal)))))))
21844 (defun org-occur-link-in-agenda-files ()
21845 "Create a link and search for it in the agendas.
21846 The link is not stored in `org-stored-links', it is just created
21847 for the search purpose."
21848 (interactive)
21849 (let ((link (condition-case nil
21850 (org-store-link nil)
21851 (error "Unable to create a link to here"))))
21852 (org-occur-in-agenda-files (regexp-quote link))))
21854 (defun org-reverse-string (string)
21855 "Return the reverse of STRING."
21856 (apply 'string (reverse (string-to-list string))))
21858 ;; defsubst org-uniquify must be defined before first use
21860 (defun org-uniquify-alist (alist)
21861 "Merge elements of ALIST with the same key.
21863 For example, in this alist:
21865 \(org-uniquify-alist '((a 1) (b 2) (a 3)))
21866 => '((a 1 3) (b 2))
21868 merge (a 1) and (a 3) into (a 1 3).
21870 The function returns the new ALIST."
21871 (let (rtn)
21872 (mapc
21873 (lambda (e)
21874 (let (n)
21875 (if (not (assoc (car e) rtn))
21876 (push e rtn)
21877 (setq n (cons (car e) (append (cdr (assoc (car e) rtn)) (cdr e))))
21878 (setq rtn (assq-delete-all (car e) rtn))
21879 (push n rtn))))
21880 alist)
21881 rtn))
21883 (defun org-delete-all (elts list)
21884 "Remove all elements in ELTS from LIST."
21885 (while elts
21886 (setq list (delete (pop elts) list)))
21887 list)
21889 (defun org-count (cl-item cl-seq)
21890 "Count the number of occurrences of ITEM in SEQ.
21891 Taken from `count' in cl-seq.el with all keyword arguments removed."
21892 (let ((cl-end (length cl-seq)) (cl-start 0) (cl-count 0) cl-x)
21893 (when (consp cl-seq) (setq cl-seq (nthcdr cl-start cl-seq)))
21894 (while (< cl-start cl-end)
21895 (setq cl-x (if (consp cl-seq) (pop cl-seq) (aref cl-seq cl-start)))
21896 (if (equal cl-item cl-x) (setq cl-count (1+ cl-count)))
21897 (setq cl-start (1+ cl-start)))
21898 cl-count))
21900 (defun org-remove-if (predicate seq)
21901 "Remove everything from SEQ that fulfills PREDICATE."
21902 (let (res e)
21903 (while seq
21904 (setq e (pop seq))
21905 (if (not (funcall predicate e)) (push e res)))
21906 (nreverse res)))
21908 (defun org-remove-if-not (predicate seq)
21909 "Remove everything from SEQ that does not fulfill PREDICATE."
21910 (let (res e)
21911 (while seq
21912 (setq e (pop seq))
21913 (if (funcall predicate e) (push e res)))
21914 (nreverse res)))
21916 (defun org-reduce (cl-func cl-seq &rest cl-keys)
21917 "Reduce two-argument FUNCTION across SEQ.
21918 Taken from `reduce' in cl-seq.el with all keyword arguments but
21919 \":initial-value\" removed."
21920 (let ((cl-accum (cond ((memq :initial-value cl-keys)
21921 (cadr (memq :initial-value cl-keys)))
21922 (cl-seq (pop cl-seq))
21923 (t (funcall cl-func)))))
21924 (while cl-seq
21925 (setq cl-accum (funcall cl-func cl-accum (pop cl-seq))))
21926 cl-accum))
21928 (defun org-every (pred seq)
21929 "Return true if PREDICATE is true of every element of SEQ.
21930 Adapted from `every' in cl.el."
21931 (catch 'org-every
21932 (mapc (lambda (e) (unless (funcall pred e) (throw 'org-every nil))) seq)
21935 (defun org-some (pred seq)
21936 "Return true if PREDICATE is true of any element of SEQ.
21937 Adapted from `some' in cl.el."
21938 (catch 'org-some
21939 (mapc (lambda (e) (when (funcall pred e) (throw 'org-some t))) seq)
21940 nil))
21942 (defun org-back-over-empty-lines ()
21943 "Move backwards over whitespace, to the beginning of the first empty line.
21944 Returns the number of empty lines passed."
21945 (let ((pos (point)))
21946 (if (cdr (assoc 'heading org-blank-before-new-entry))
21947 (skip-chars-backward " \t\n\r")
21948 (unless (eobp)
21949 (forward-line -1)))
21950 (beginning-of-line 2)
21951 (goto-char (min (point) pos))
21952 (count-lines (point) pos)))
21954 (defun org-skip-whitespace ()
21955 (skip-chars-forward " \t\n\r"))
21957 (defun org-point-in-group (point group &optional context)
21958 "Check if POINT is in match-group GROUP.
21959 If CONTEXT is non-nil, return a list with CONTEXT and the boundaries of the
21960 match. If the match group does not exist or point is not inside it,
21961 return nil."
21962 (and (match-beginning group)
21963 (>= point (match-beginning group))
21964 (<= point (match-end group))
21965 (if context
21966 (list context (match-beginning group) (match-end group))
21967 t)))
21969 (defun org-switch-to-buffer-other-window (&rest args)
21970 "Switch to buffer in a second window on the current frame.
21971 In particular, do not allow pop-up frames.
21972 Returns the newly created buffer."
21973 (org-no-popups
21974 (apply 'switch-to-buffer-other-window args)))
21976 (defun org-combine-plists (&rest plists)
21977 "Create a single property list from all plists in PLISTS.
21978 The process starts by copying the first list, and then setting properties
21979 from the other lists. Settings in the last list are the most significant
21980 ones and overrule settings in the other lists."
21981 (let ((rtn (copy-sequence (pop plists)))
21982 p v ls)
21983 (while plists
21984 (setq ls (pop plists))
21985 (while ls
21986 (setq p (pop ls) v (pop ls))
21987 (setq rtn (plist-put rtn p v))))
21988 rtn))
21990 (defun org-replace-escapes (string table)
21991 "Replace %-escapes in STRING with values in TABLE.
21992 TABLE is an association list with keys like \"%a\" and string values.
21993 The sequences in STRING may contain normal field width and padding information,
21994 for example \"%-5s\". Replacements happen in the sequence given by TABLE,
21995 so values can contain further %-escapes if they are define later in TABLE."
21996 (let ((tbl (copy-alist table))
21997 (case-fold-search nil)
21998 (pchg 0)
21999 e re rpl)
22000 (while (setq e (pop tbl))
22001 (setq re (concat "%-?[0-9.]*" (substring (car e) 1)))
22002 (when (and (cdr e) (string-match re (cdr e)))
22003 (let ((sref (substring (cdr e) (match-beginning 0) (match-end 0)))
22004 (safe "SREF"))
22005 (add-text-properties 0 3 (list 'sref sref) safe)
22006 (setcdr e (replace-match safe t t (cdr e)))))
22007 (while (string-match re string)
22008 (setq rpl (format (concat (substring (match-string 0 string) 0 -1) "s")
22009 (cdr e)))
22010 (setq string (replace-match rpl t t string))))
22011 (while (setq pchg (next-property-change pchg string))
22012 (let ((sref (get-text-property pchg 'sref string)))
22013 (when (and sref (string-match "SREF" string pchg))
22014 (setq string (replace-match sref t t string)))))
22015 string))
22017 (defun org-sublist (list start end)
22018 "Return a section of LIST, from START to END.
22019 Counting starts at 1."
22020 (let (rtn (c start))
22021 (setq list (nthcdr (1- start) list))
22022 (while (and list (<= c end))
22023 (push (pop list) rtn)
22024 (setq c (1+ c)))
22025 (nreverse rtn)))
22027 (defun org-find-base-buffer-visiting (file)
22028 "Like `find-buffer-visiting' but always return the base buffer and
22029 not an indirect buffer."
22030 (let ((buf (or (get-file-buffer file)
22031 (find-buffer-visiting file))))
22032 (if buf
22033 (or (buffer-base-buffer buf) buf)
22034 nil)))
22036 (defun org-image-file-name-regexp (&optional extensions)
22037 "Return regexp matching the file names of images.
22038 If EXTENSIONS is given, only match these."
22039 (if (and (not extensions) (fboundp 'image-file-name-regexp))
22040 (image-file-name-regexp)
22041 (let ((image-file-name-extensions
22042 (or extensions
22043 '("png" "jpeg" "jpg" "gif" "tiff" "tif"
22044 "xbm" "xpm" "pbm" "pgm" "ppm"))))
22045 (concat "\\."
22046 (regexp-opt (nconc (mapcar 'upcase
22047 image-file-name-extensions)
22048 image-file-name-extensions)
22050 "\\'"))))
22052 (defun org-file-image-p (file &optional extensions)
22053 "Return non-nil if FILE is an image."
22054 (save-match-data
22055 (string-match (org-image-file-name-regexp extensions) file)))
22057 (defun org-get-cursor-date (&optional with-time)
22058 "Return the date at cursor in as a time.
22059 This works in the calendar and in the agenda, anywhere else it just
22060 returns the current time.
22061 If WITH-TIME is non-nil, returns the time of the event at point (in
22062 the agenda) or the current time of the day."
22063 (let (date day defd tp tm hod mod)
22064 (when with-time
22065 (setq tp (get-text-property (point) 'time))
22066 (when (and tp (string-match "\\([0-9][0-9]\\):\\([0-9][0-9]\\)" tp))
22067 (setq hod (string-to-number (match-string 1 tp))
22068 mod (string-to-number (match-string 2 tp))))
22069 (or tp (setq hod (nth 2 (decode-time (current-time)))
22070 mod (nth 1 (decode-time (current-time))))))
22071 (cond
22072 ((eq major-mode 'calendar-mode)
22073 (setq date (calendar-cursor-to-date)
22074 defd (encode-time 0 (or mod 0) (or hod 0)
22075 (nth 1 date) (nth 0 date) (nth 2 date))))
22076 ((eq major-mode 'org-agenda-mode)
22077 (setq day (get-text-property (point) 'day))
22078 (if day
22079 (setq date (calendar-gregorian-from-absolute day)
22080 defd (encode-time 0 (or mod 0) (or hod 0)
22081 (nth 1 date) (nth 0 date) (nth 2 date))))))
22082 (or defd (current-time))))
22084 (defun org-mark-subtree (&optional up)
22085 "Mark the current subtree.
22086 This puts point at the start of the current subtree, and mark at
22087 the end. If a numeric prefix UP is given, move up into the
22088 hierarchy of headlines by UP levels before marking the subtree."
22089 (interactive "P")
22090 (org-with-limited-levels
22091 (cond ((org-at-heading-p) (beginning-of-line))
22092 ((org-before-first-heading-p) (user-error "Not in a subtree"))
22093 (t (outline-previous-visible-heading 1))))
22094 (when up (while (and (> up 0) (org-up-heading-safe)) (decf up)))
22095 (if (org-called-interactively-p 'any)
22096 (call-interactively 'org-mark-element)
22097 (org-mark-element)))
22100 ;;; Indentation
22102 (defun org-indent-line ()
22103 "Indent line depending on context."
22104 (interactive)
22105 (let* ((pos (point))
22106 (itemp (org-at-item-p))
22107 (case-fold-search t)
22108 (org-drawer-regexp (or org-drawer-regexp "\000"))
22109 (inline-task-p (and (featurep 'org-inlinetask)
22110 (org-inlinetask-in-task-p)))
22111 (inline-re (and inline-task-p
22112 (org-inlinetask-outline-regexp)))
22113 column)
22114 (if (and orgstruct-is-++ (eq pos (point)))
22115 (let ((indent-line-function (cadadr (assoc 'indent-line-function org-fb-vars))))
22116 (indent-according-to-mode))
22117 (beginning-of-line 1)
22118 (cond
22119 ;; Headings
22120 ((looking-at org-outline-regexp) (setq column 0))
22121 ;; Footnote definition
22122 ((looking-at org-footnote-definition-re) (setq column 0))
22123 ;; Literal examples
22124 ((looking-at "[ \t]*:\\( \\|$\\)")
22125 (setq column (org-get-indentation))) ; do nothing
22126 ;; Lists
22127 ((ignore-errors (goto-char (org-in-item-p)))
22128 (setq column (if itemp
22129 (org-get-indentation)
22130 (org-list-item-body-column (point))))
22131 (goto-char pos))
22132 ;; Drawers
22133 ((and (looking-at "[ \t]*:END:")
22134 (save-excursion (re-search-backward org-drawer-regexp nil t)))
22135 (save-excursion
22136 (goto-char (1- (match-beginning 1)))
22137 (setq column (current-column))))
22138 ;; Special blocks
22139 ((and (looking-at "[ \t]*#\\+end_\\([a-z]+\\)")
22140 (save-excursion
22141 (re-search-backward
22142 (concat "^[ \t]*#\\+begin_" (downcase (match-string 1))) nil t)))
22143 (setq column (org-get-indentation (match-string 0))))
22144 ((and (not (looking-at "[ \t]*#\\+begin_"))
22145 (org-between-regexps-p "^[ \t]*#\\+begin_" "[ \t]*#\\+end_"))
22146 (save-excursion
22147 (re-search-backward "^[ \t]*#\\+begin_\\([a-z]+\\)" nil t))
22148 (setq column
22149 (cond ((equal (downcase (match-string 1)) "src")
22150 ;; src blocks: let `org-edit-src-exit' handle them
22151 (org-get-indentation))
22152 ((equal (downcase (match-string 1)) "example")
22153 (max (org-get-indentation)
22154 (org-get-indentation (match-string 0))))
22156 (org-get-indentation (match-string 0))))))
22157 ;; This line has nothing special, look at the previous relevant
22158 ;; line to compute indentation
22160 (beginning-of-line 0)
22161 (while (and (not (bobp))
22162 (not (looking-at org-table-line-regexp))
22163 (not (looking-at org-drawer-regexp))
22164 ;; When point started in an inline task, do not move
22165 ;; above task starting line.
22166 (not (and inline-task-p (looking-at inline-re)))
22167 ;; Skip drawers, blocks, empty lines, verbatim,
22168 ;; comments, tables, footnotes definitions, lists,
22169 ;; inline tasks.
22170 (or (and (looking-at "[ \t]*:END:")
22171 (re-search-backward org-drawer-regexp nil t))
22172 (and (looking-at "[ \t]*#\\+end_")
22173 (re-search-backward "[ \t]*#\\+begin_"nil t))
22174 (looking-at "[ \t]*[\n:#|]")
22175 (looking-at org-footnote-definition-re)
22176 (and (not inline-task-p)
22177 (featurep 'org-inlinetask)
22178 (org-inlinetask-in-task-p)
22179 (or (org-inlinetask-goto-beginning) t))))
22180 (beginning-of-line 0))
22181 (cond
22182 ;; There was a list item above.
22183 ((ignore-errors (goto-char (org-in-item-p)))
22184 (goto-char (org-list-get-top-point (org-list-struct)))
22185 (setq column (org-get-indentation)))
22186 ;; There was an heading above.
22187 ((looking-at "\\*+[ \t]+")
22188 (if (not org-adapt-indentation)
22189 (setq column 0)
22190 (goto-char (match-end 0))
22191 (setq column (current-column))))
22192 ;; A drawer had started and is unfinished
22193 ((looking-at org-drawer-regexp)
22194 (goto-char (1- (match-beginning 1)))
22195 (setq column (current-column)))
22196 ;; Else, nothing noticeable found: get indentation and go on.
22197 (t (setq column (org-get-indentation))))))
22198 ;; Now apply indentation and move cursor accordingly
22199 (goto-char pos)
22200 (if (<= (current-column) (current-indentation))
22201 (org-indent-line-to column)
22202 (save-excursion (org-indent-line-to column)))
22203 ;; Special polishing for properties, see `org-property-format'
22204 (setq column (current-column))
22205 (beginning-of-line 1)
22206 (if (looking-at org-property-re)
22207 (replace-match (concat (match-string 4)
22208 (format org-property-format
22209 (match-string 1) (match-string 3)))
22210 t t))
22211 (org-move-to-column column))))
22213 (defun org-indent-drawer ()
22214 "Indent the drawer at point."
22215 (interactive)
22216 (let ((p (point))
22217 (e (and (save-excursion (re-search-forward ":END:" nil t))
22218 (match-end 0)))
22219 (folded
22220 (save-excursion
22221 (end-of-line)
22222 (when (overlays-at (point))
22223 (member 'invisible (overlay-properties
22224 (car (overlays-at (point)))))))))
22225 (when folded (org-cycle))
22226 (indent-for-tab-command)
22227 (while (and (move-beginning-of-line 2) (< (point) e))
22228 (indent-for-tab-command))
22229 (goto-char p)
22230 (when folded (org-cycle)))
22231 (message "Drawer at point indented"))
22233 (defun org-indent-block ()
22234 "Indent the block at point."
22235 (interactive)
22236 (let ((p (point))
22237 (case-fold-search t)
22238 (e (and (save-excursion (re-search-forward "#\\+end_?\\(?:[a-z]+\\)?" nil t))
22239 (match-end 0)))
22240 (folded
22241 (save-excursion
22242 (end-of-line)
22243 (when (overlays-at (point))
22244 (member 'invisible (overlay-properties
22245 (car (overlays-at (point)))))))))
22246 (when folded (org-cycle))
22247 (indent-for-tab-command)
22248 (while (and (move-beginning-of-line 2) (< (point) e))
22249 (indent-for-tab-command))
22250 (goto-char p)
22251 (when folded (org-cycle)))
22252 (message "Block at point indented"))
22254 (defun org-indent-region (start end)
22255 "Indent region."
22256 (interactive "r")
22257 (save-excursion
22258 (let ((line-end (org-current-line end)))
22259 (goto-char start)
22260 (while (< (org-current-line) line-end)
22261 (cond ((org-in-src-block-p t) (org-src-native-tab-command-maybe))
22262 (t (call-interactively 'org-indent-line)))
22263 (move-beginning-of-line 2)))))
22266 ;;; Filling
22268 ;; We use our own fill-paragraph and auto-fill functions.
22270 ;; `org-fill-paragraph' relies on adaptive filling and context
22271 ;; checking. Appropriate `fill-prefix' is computed with
22272 ;; `org-adaptive-fill-function'.
22274 ;; `org-auto-fill-function' takes care of auto-filling. It calls
22275 ;; `do-auto-fill' only on valid areas with `fill-prefix' shadowed with
22276 ;; `org-adaptive-fill-function' value. Internally,
22277 ;; `org-comment-line-break-function' breaks the line.
22279 ;; `org-setup-filling' installs filling and auto-filling related
22280 ;; variables during `org-mode' initialization.
22282 (defvar org-element-paragraph-separate) ; org-element.el
22283 (defun org-setup-filling ()
22284 (require 'org-element)
22285 ;; Prevent auto-fill from inserting unwanted new items.
22286 (when (boundp 'fill-nobreak-predicate)
22287 (org-set-local
22288 'fill-nobreak-predicate
22289 (org-uniquify
22290 (append fill-nobreak-predicate
22291 '(org-fill-line-break-nobreak-p
22292 org-fill-paragraph-with-timestamp-nobreak-p)))))
22293 (let ((paragraph-ending (substring org-element-paragraph-separate 1)))
22294 (org-set-local 'paragraph-start paragraph-ending)
22295 (org-set-local 'paragraph-separate paragraph-ending))
22296 (org-set-local 'fill-paragraph-function 'org-fill-paragraph)
22297 (org-set-local 'auto-fill-inhibit-regexp nil)
22298 (org-set-local 'adaptive-fill-function 'org-adaptive-fill-function)
22299 (org-set-local 'normal-auto-fill-function 'org-auto-fill-function)
22300 (org-set-local 'comment-line-break-function 'org-comment-line-break-function))
22302 (defun org-fill-line-break-nobreak-p ()
22303 "Non-nil when a new line at point would create an Org line break."
22304 (save-excursion
22305 (skip-chars-backward "[ \t]")
22306 (skip-chars-backward "\\\\")
22307 (looking-at "\\\\\\\\\\($\\|[^\\\\]\\)")))
22309 (defun org-fill-paragraph-with-timestamp-nobreak-p ()
22310 "Non-nil when a new line at point would split a timestamp."
22311 (and (org-at-timestamp-p t)
22312 (not (looking-at org-ts-regexp-both))))
22314 (declare-function message-in-body-p "message" ())
22315 (defvar orgtbl-line-start-regexp) ; From org-table.el
22316 (defun org-adaptive-fill-function ()
22317 "Compute a fill prefix for the current line.
22318 Return fill prefix, as a string, or nil if current line isn't
22319 meant to be filled. For convenience, if `adaptive-fill-regexp'
22320 matches in paragraphs or comments, use it."
22321 (catch 'exit
22322 (when (derived-mode-p 'message-mode)
22323 (save-excursion
22324 (beginning-of-line)
22325 (cond ((or (not (message-in-body-p))
22326 (looking-at orgtbl-line-start-regexp))
22327 (throw 'exit nil))
22328 ((looking-at message-cite-prefix-regexp)
22329 (throw 'exit (match-string-no-properties 0)))
22330 ((looking-at org-outline-regexp)
22331 (throw 'exit (make-string (length (match-string 0)) ? ))))))
22332 (org-with-wide-buffer
22333 (let* ((p (line-beginning-position))
22334 (element (save-excursion
22335 (beginning-of-line)
22336 (or (ignore-errors (org-element-at-point))
22337 (user-error "An element cannot be parsed line %d"
22338 (line-number-at-pos (point))))))
22339 (type (org-element-type element))
22340 (post-affiliated (org-element-property :post-affiliated element)))
22341 (unless (and post-affiliated (< p post-affiliated))
22342 (case type
22343 (comment
22344 (save-excursion
22345 (beginning-of-line)
22346 (looking-at "[ \t]*")
22347 (concat (match-string 0) "# ")))
22348 (footnote-definition "")
22349 ((item plain-list)
22350 (make-string (org-list-item-body-column
22351 (or post-affiliated
22352 (org-element-property :begin element)))
22353 ? ))
22354 (paragraph
22355 ;; Fill prefix is usually the same as the current line,
22356 ;; unless the paragraph is at the beginning of an item.
22357 (let ((parent (org-element-property :parent element)))
22358 (save-excursion
22359 (beginning-of-line)
22360 (cond ((eq (org-element-type parent) 'item)
22361 (make-string (org-list-item-body-column
22362 (org-element-property :begin parent))
22363 ? ))
22364 ((and adaptive-fill-regexp
22365 ;; Locally disable
22366 ;; `adaptive-fill-function' to let
22367 ;; `fill-context-prefix' handle
22368 ;; `adaptive-fill-regexp' variable.
22369 (let (adaptive-fill-function)
22370 (fill-context-prefix
22371 post-affiliated
22372 (org-element-property :end element)))))
22373 ((looking-at "[ \t]+") (match-string 0))
22374 (t "")))))
22375 (comment-block
22376 ;; Only fill contents if P is within block boundaries.
22377 (let* ((cbeg (save-excursion (goto-char post-affiliated)
22378 (forward-line)
22379 (point)))
22380 (cend (save-excursion
22381 (goto-char (org-element-property :end element))
22382 (skip-chars-backward " \r\t\n")
22383 (line-beginning-position))))
22384 (when (and (>= p cbeg) (< p cend))
22385 (if (save-excursion (beginning-of-line) (looking-at "[ \t]+"))
22386 (match-string 0)
22387 ""))))))))))
22389 (declare-function message-goto-body "message" ())
22390 (defvar message-cite-prefix-regexp) ; From message.el
22391 (defun org-fill-paragraph (&optional justify)
22392 "Fill element at point, when applicable.
22394 This function only applies to comment blocks, comments, example
22395 blocks and paragraphs. Also, as a special case, re-align table
22396 when point is at one.
22398 If JUSTIFY is non-nil (interactively, with prefix argument),
22399 justify as well. If `sentence-end-double-space' is non-nil, then
22400 period followed by one space does not end a sentence, so don't
22401 break a line there. The variable `fill-column' controls the
22402 width for filling.
22404 For convenience, when point is at a plain list, an item or
22405 a footnote definition, try to fill the first paragraph within."
22406 (interactive)
22407 (if (and (derived-mode-p 'message-mode)
22408 (or (not (message-in-body-p))
22409 (save-excursion (move-beginning-of-line 1)
22410 (looking-at message-cite-prefix-regexp))))
22411 ;; First ensure filling is correct in message-mode.
22412 (let ((fill-paragraph-function
22413 (cadadr (assoc 'fill-paragraph-function org-fb-vars)))
22414 (fill-prefix (cadadr (assoc 'fill-prefix org-fb-vars)))
22415 (paragraph-start (cadadr (assoc 'paragraph-start org-fb-vars)))
22416 (paragraph-separate
22417 (cadadr (assoc 'paragraph-separate org-fb-vars))))
22418 (fill-paragraph nil))
22419 (with-syntax-table org-mode-transpose-word-syntax-table
22420 ;; Move to end of line in order to get the first paragraph
22421 ;; within a plain list or a footnote definition.
22422 (let ((element (save-excursion
22423 (end-of-line)
22424 (or (ignore-errors (org-element-at-point))
22425 (user-error "An element cannot be parsed line %d"
22426 (line-number-at-pos (point)))))))
22427 ;; First check if point is in a blank line at the beginning of
22428 ;; the buffer. In that case, ignore filling.
22429 (case (org-element-type element)
22430 ;; Use major mode filling function is src blocks.
22431 (src-block (org-babel-do-key-sequence-in-edit-buffer (kbd "M-q")))
22432 ;; Align Org tables, leave table.el tables as-is.
22433 (table-row (org-table-align) t)
22434 (table
22435 (when (eq (org-element-property :type element) 'org)
22436 (save-excursion
22437 (goto-char (org-element-property :post-affiliated element))
22438 (org-table-align)))
22440 (paragraph
22441 ;; Paragraphs may contain `line-break' type objects.
22442 (let ((beg (max (point-min)
22443 (org-element-property :contents-begin element)))
22444 (end (min (point-max)
22445 (org-element-property :contents-end element))))
22446 ;; Do nothing if point is at an affiliated keyword.
22447 (if (< (line-end-position) beg) t
22448 (when (derived-mode-p 'message-mode)
22449 ;; In `message-mode', do not fill following citation
22450 ;; in current paragraph nor text before message body.
22451 (let ((body-start (save-excursion (message-goto-body))))
22452 (when body-start (setq beg (max body-start beg))))
22453 (when (save-excursion
22454 (re-search-forward
22455 (concat "^" message-cite-prefix-regexp) end t))
22456 (setq end (match-beginning 0))))
22457 ;; Fill paragraph, taking line breaks into account.
22458 ;; For that, slice the paragraph using line breaks as
22459 ;; separators, and fill the parts in reverse order to
22460 ;; avoid messing with markers.
22461 (save-excursion
22462 (goto-char end)
22463 (mapc
22464 (lambda (pos)
22465 (fill-region-as-paragraph pos (point) justify)
22466 (goto-char pos))
22467 ;; Find the list of ending positions for line breaks
22468 ;; in the current paragraph. Add paragraph
22469 ;; beginning to include first slice.
22470 (nreverse
22471 (cons beg
22472 (org-element-map
22473 (org-element--parse-objects
22474 beg end nil (org-element-restriction 'paragraph))
22475 'line-break
22476 (lambda (lb) (org-element-property :end lb)))))))
22477 t)))
22478 ;; Contents of `comment-block' type elements should be
22479 ;; filled as plain text, but only if point is within block
22480 ;; markers.
22481 (comment-block
22482 (let* ((case-fold-search t)
22483 (beg (save-excursion
22484 (goto-char (org-element-property :begin element))
22485 (re-search-forward "^[ \t]*#\\+begin_comment" nil t)
22486 (forward-line)
22487 (point)))
22488 (end (save-excursion
22489 (goto-char (org-element-property :end element))
22490 (re-search-backward "^[ \t]*#\\+end_comment" nil t)
22491 (line-beginning-position))))
22492 (if (or (< (point) beg) (> (point) end)) t
22493 (fill-region-as-paragraph
22494 (save-excursion (end-of-line)
22495 (re-search-backward "^[ \t]*$" beg 'move)
22496 (line-beginning-position))
22497 (save-excursion (beginning-of-line)
22498 (re-search-forward "^[ \t]*$" end 'move)
22499 (line-beginning-position))
22500 justify))))
22501 ;; Fill comments.
22502 (comment
22503 (let ((begin (org-element-property :post-affiliated element))
22504 (end (org-element-property :end element)))
22505 (when (and (>= (point) begin) (<= (point) end))
22506 (let ((begin (save-excursion
22507 (end-of-line)
22508 (if (re-search-backward "^[ \t]*#[ \t]*$" begin t)
22509 (progn (forward-line) (point))
22510 begin)))
22511 (end (save-excursion
22512 (end-of-line)
22513 (if (re-search-forward "^[ \t]*#[ \t]*$" end 'move)
22514 (1- (line-beginning-position))
22515 (skip-chars-backward " \r\t\n")
22516 (line-end-position)))))
22517 ;; Do not fill comments when at a blank line.
22518 (when (> end begin)
22519 (let ((fill-prefix
22520 (save-excursion
22521 (beginning-of-line)
22522 (looking-at "[ \t]*#")
22523 (let ((comment-prefix (match-string 0)))
22524 (goto-char (match-end 0))
22525 (if (looking-at adaptive-fill-regexp)
22526 (concat comment-prefix (match-string 0))
22527 (concat comment-prefix " "))))))
22528 (save-excursion
22529 (fill-region-as-paragraph begin end justify))))))
22531 ;; Ignore every other element.
22532 (otherwise t))))))
22534 (defun org-auto-fill-function ()
22535 "Auto-fill function."
22536 ;; Check if auto-filling is meaningful.
22537 (let ((fc (current-fill-column)))
22538 (when (and fc (> (current-column) fc))
22539 (let* ((fill-prefix (org-adaptive-fill-function))
22540 ;; Enforce empty fill prefix, if required. Otherwise, it
22541 ;; will be computed again.
22542 (adaptive-fill-mode (not (equal fill-prefix ""))))
22543 (when fill-prefix (do-auto-fill))))))
22545 (defun org-comment-line-break-function (&optional soft)
22546 "Break line at point and indent, continuing comment if within one.
22547 The inserted newline is marked hard if variable
22548 `use-hard-newlines' is true, unless optional argument SOFT is
22549 non-nil."
22550 (if soft (insert-and-inherit ?\n) (newline 1))
22551 (save-excursion (forward-char -1) (delete-horizontal-space))
22552 (delete-horizontal-space)
22553 (indent-to-left-margin)
22554 (insert-before-markers-and-inherit fill-prefix))
22557 ;;; Comments
22559 ;; Org comments syntax is quite complex. It requires the entire line
22560 ;; to be just a comment. Also, even with the right syntax at the
22561 ;; beginning of line, some some elements (i.e. verse-block or
22562 ;; example-block) don't accept comments. Usual Emacs comment commands
22563 ;; cannot cope with those requirements. Therefore, Org replaces them.
22565 ;; Org still relies on `comment-dwim', but cannot trust
22566 ;; `comment-only-p'. So, `comment-region-function' and
22567 ;; `uncomment-region-function' both point
22568 ;; to`org-comment-or-uncomment-region'. Eventually,
22569 ;; `org-insert-comment' takes care of insertion of comments at the
22570 ;; beginning of line.
22572 ;; `org-setup-comments-handling' install comments related variables
22573 ;; during `org-mode' initialization.
22575 (defun org-setup-comments-handling ()
22576 (interactive)
22577 (org-set-local 'comment-use-syntax nil)
22578 (org-set-local 'comment-start "# ")
22579 (org-set-local 'comment-start-skip "^\\s-*#\\(?: \\|$\\)")
22580 (org-set-local 'comment-insert-comment-function 'org-insert-comment)
22581 (org-set-local 'comment-region-function 'org-comment-or-uncomment-region)
22582 (org-set-local 'uncomment-region-function 'org-comment-or-uncomment-region))
22584 (defun org-insert-comment ()
22585 "Insert an empty comment above current line.
22586 If the line is empty, insert comment at its beginning."
22587 (beginning-of-line)
22588 (if (looking-at "\\s-*$") (replace-match "") (open-line 1))
22589 (org-indent-line)
22590 (insert "# "))
22592 (defvar comment-empty-lines) ; From newcomment.el.
22593 (defun org-comment-or-uncomment-region (beg end &rest ignore)
22594 "Comment or uncomment each non-blank line in the region.
22595 Uncomment each non-blank line between BEG and END if it only
22596 contains commented lines. Otherwise, comment them."
22597 (save-restriction
22598 ;; Restrict region
22599 (narrow-to-region (save-excursion (goto-char beg)
22600 (skip-chars-forward " \r\t\n" end)
22601 (line-beginning-position))
22602 (save-excursion (goto-char end)
22603 (skip-chars-backward " \r\t\n" beg)
22604 (line-end-position)))
22605 (let ((uncommentp
22606 ;; UNCOMMENTP is non-nil when every non blank line between
22607 ;; BEG and END is a comment.
22608 (save-excursion
22609 (goto-char (point-min))
22610 (while (and (not (eobp))
22611 (let ((element (org-element-at-point)))
22612 (and (eq (org-element-type element) 'comment)
22613 (goto-char (min (point-max)
22614 (org-element-property
22615 :end element)))))))
22616 (eobp))))
22617 (if uncommentp
22618 ;; Only blank lines and comments in region: uncomment it.
22619 (save-excursion
22620 (goto-char (point-min))
22621 (while (not (eobp))
22622 (when (looking-at "[ \t]*\\(#\\(?: \\|$\\)\\)")
22623 (replace-match "" nil nil nil 1))
22624 (forward-line)))
22625 ;; Comment each line in region.
22626 (let ((min-indent (point-max)))
22627 ;; First find the minimum indentation across all lines.
22628 (save-excursion
22629 (goto-char (point-min))
22630 (while (and (not (eobp)) (not (zerop min-indent)))
22631 (unless (looking-at "[ \t]*$")
22632 (setq min-indent (min min-indent (current-indentation))))
22633 (forward-line)))
22634 ;; Then loop over all lines.
22635 (save-excursion
22636 (goto-char (point-min))
22637 (while (not (eobp))
22638 (unless (and (not comment-empty-lines) (looking-at "[ \t]*$"))
22639 ;; Don't get fooled by invisible text (e.g. link path)
22640 ;; when moving to column MIN-INDENT.
22641 (let ((buffer-invisibility-spec nil))
22642 (org-move-to-column min-indent t))
22643 (insert comment-start))
22644 (forward-line))))))))
22647 ;;; Planning
22649 ;; This section contains tools to operate on timestamp objects, as
22650 ;; returned by, e.g. `org-element-context'.
22652 (defun org-timestamp-has-time-p (timestamp)
22653 "Non-nil when TIMESTAMP has a time specified."
22654 (org-element-property :hour-start timestamp))
22656 (defun org-timestamp-format (timestamp format &optional end utc)
22657 "Format a TIMESTAMP element into a string.
22659 FORMAT is a format specifier to be passed to
22660 `format-time-string'.
22662 When optional argument END is non-nil, use end of date-range or
22663 time-range, if possible.
22665 When optional argument UTC is non-nil, time will be expressed as
22666 Universal Time."
22667 (format-time-string
22668 format
22669 (apply 'encode-time
22670 (cons 0
22671 (mapcar
22672 (lambda (prop) (or (org-element-property prop timestamp) 0))
22673 (if end '(:minute-end :hour-end :day-end :month-end :year-end)
22674 '(:minute-start :hour-start :day-start :month-start
22675 :year-start)))))
22676 utc))
22678 (defun org-timestamp-split-range (timestamp &optional end)
22679 "Extract a timestamp object from a date or time range.
22681 TIMESTAMP is a timestamp object. END, when non-nil, means extract
22682 the end of the range. Otherwise, extract its start.
22684 Return a new timestamp object sharing the same parent as
22685 TIMESTAMP."
22686 (let ((type (org-element-property :type timestamp)))
22687 (if (memq type '(active inactive diary)) timestamp
22688 (let ((split-ts (list 'timestamp (copy-sequence (nth 1 timestamp)))))
22689 ;; Set new type.
22690 (org-element-put-property
22691 split-ts :type (if (eq type 'active-range) 'active 'inactive))
22692 ;; Copy start properties over end properties if END is
22693 ;; non-nil. Otherwise, copy end properties over `start' ones.
22694 (let ((p-alist '((:minute-start . :minute-end)
22695 (:hour-start . :hour-end)
22696 (:day-start . :day-end)
22697 (:month-start . :month-end)
22698 (:year-start . :year-end))))
22699 (dolist (p-cell p-alist)
22700 (org-element-put-property
22701 split-ts
22702 (funcall (if end 'car 'cdr) p-cell)
22703 (org-element-property
22704 (funcall (if end 'cdr 'car) p-cell) split-ts)))
22705 ;; Eventually refresh `:raw-value'.
22706 (org-element-put-property split-ts :raw-value nil)
22707 (org-element-put-property
22708 split-ts :raw-value (org-element-interpret-data split-ts)))))))
22710 (defun org-timestamp-translate (timestamp &optional boundary)
22711 "Apply `org-translate-time' on a TIMESTAMP object.
22712 When optional argument BOUNDARY is non-nil, it is either the
22713 symbol `start' or `end'. In this case, only translate the
22714 starting or ending part of TIMESTAMP if it is a date or time
22715 range. Otherwise, translate both parts."
22716 (if (and (not boundary)
22717 (memq (org-element-property :type timestamp)
22718 '(active-range inactive-range)))
22719 (concat
22720 (org-translate-time
22721 (org-element-property :raw-value
22722 (org-timestamp-split-range timestamp)))
22723 "--"
22724 (org-translate-time
22725 (org-element-property :raw-value
22726 (org-timestamp-split-range timestamp t))))
22727 (org-translate-time
22728 (org-element-property
22729 :raw-value
22730 (if (not boundary) timestamp
22731 (org-timestamp-split-range timestamp (eq boundary 'end)))))))
22735 ;;; Other stuff.
22737 (defun org-toggle-fixed-width-section (arg)
22738 "Toggle the fixed-width export.
22739 If there is no active region, the QUOTE keyword at the current headline is
22740 inserted or removed. When present, it causes the text between this headline
22741 and the next to be exported as fixed-width text, and unmodified.
22742 If there is an active region, this command adds or removes a colon as the
22743 first character of this line. If the first character of a line is a colon,
22744 this line is also exported in fixed-width font."
22745 (interactive "P")
22746 (let* ((cc 0)
22747 (regionp (org-region-active-p))
22748 (beg (if regionp (region-beginning) (point)))
22749 (end (if regionp (region-end)))
22750 (nlines (or arg (if (and beg end) (count-lines beg end) 1)))
22751 (case-fold-search nil)
22752 (re "[ \t]*\\(:\\(?: \\|$\\)\\)")
22753 off)
22754 (if regionp
22755 (save-excursion
22756 (goto-char beg)
22757 (setq cc (current-column))
22758 (beginning-of-line 1)
22759 (setq off (looking-at re))
22760 (while (> nlines 0)
22761 (setq nlines (1- nlines))
22762 (beginning-of-line 1)
22763 (cond
22764 (arg
22765 (org-move-to-column cc t)
22766 (insert ": \n")
22767 (forward-line -1))
22768 ((and off (looking-at re))
22769 (replace-match "" t t nil 1))
22770 ((not off) (org-move-to-column cc t) (insert ": ")))
22771 (forward-line 1)))
22772 (save-excursion
22773 (org-back-to-heading)
22774 (cond
22775 ((looking-at (format org-heading-keyword-regexp-format
22776 org-quote-string))
22777 (goto-char (match-end 1))
22778 (looking-at (concat " +" org-quote-string))
22779 (replace-match "" t t)
22780 (when (eolp) (insert " ")))
22781 ((looking-at org-outline-regexp)
22782 (goto-char (match-end 0))
22783 (insert org-quote-string " ")))))))
22785 (defun org-reftex-citation ()
22786 "Use reftex-citation to insert a citation into the buffer.
22787 This looks for a line like
22789 #+BIBLIOGRAPHY: foo plain option:-d
22791 and derives from it that foo.bib is the bibliography file relevant
22792 for this document. It then installs the necessary environment for RefTeX
22793 to work in this buffer and calls `reftex-citation' to insert a citation
22794 into the buffer.
22796 Export of such citations to both LaTeX and HTML is handled by the contributed
22797 package ox-bibtex by Taru Karttunen."
22798 (interactive)
22799 (let ((reftex-docstruct-symbol 'rds)
22800 (reftex-cite-format "\\cite{%l}")
22801 rds bib)
22802 (save-excursion
22803 (save-restriction
22804 (widen)
22805 (let ((case-fold-search t)
22806 (re "^#\\+bibliography:[ \t]+\\([^ \t\n]+\\)"))
22807 (if (not (save-excursion
22808 (or (re-search-forward re nil t)
22809 (re-search-backward re nil t))))
22810 (error "No bibliography defined in file")
22811 (setq bib (concat (match-string 1) ".bib")
22812 rds (list (list 'bib bib)))))))
22813 (call-interactively 'reftex-citation)))
22815 ;;;; Functions extending outline functionality
22817 (defun org-beginning-of-line (&optional arg)
22818 "Go to the beginning of the current line. If that is invisible, continue
22819 to a visible line beginning. This makes the function of C-a more intuitive.
22820 If this is a headline, and `org-special-ctrl-a/e' is set, ignore tags on the
22821 first attempt, and only move to after the tags when the cursor is already
22822 beyond the end of the headline."
22823 (interactive "P")
22824 (let ((pos (point))
22825 (special (if (consp org-special-ctrl-a/e)
22826 (car org-special-ctrl-a/e)
22827 org-special-ctrl-a/e))
22828 deactivate-mark refpos)
22829 (if (org-bound-and-true-p visual-line-mode)
22830 (beginning-of-visual-line 1)
22831 (beginning-of-line 1))
22832 (if (and arg (fboundp 'move-beginning-of-line))
22833 (call-interactively 'move-beginning-of-line)
22834 (if (bobp)
22836 (backward-char 1)
22837 (if (org-truely-invisible-p)
22838 (while (and (not (bobp)) (org-truely-invisible-p))
22839 (backward-char 1)
22840 (beginning-of-line 1))
22841 (forward-char 1))))
22842 (when special
22843 (cond
22844 ((and (looking-at org-complex-heading-regexp)
22845 (= (char-after (match-end 1)) ?\ ))
22846 (setq refpos (min (1+ (or (match-end 3) (match-end 2) (match-end 1)))
22847 (point-at-eol)))
22848 (goto-char
22849 (if (eq special t)
22850 (cond ((> pos refpos) refpos)
22851 ((= pos (point)) refpos)
22852 (t (point)))
22853 (cond ((> pos (point)) (point))
22854 ((not (eq last-command this-command)) (point))
22855 (t refpos)))))
22856 ((org-at-item-p)
22857 ;; Being at an item and not looking at an the item means point
22858 ;; was previously moved to beginning of a visual line, which
22859 ;; doesn't contain the item. Therefore, do nothing special,
22860 ;; just stay here.
22861 (when (looking-at org-list-full-item-re)
22862 ;; Set special position at first white space character after
22863 ;; bullet, and check-box, if any.
22864 (let ((after-bullet
22865 (let ((box (match-end 3)))
22866 (if (not box) (match-end 1)
22867 (let ((after (char-after box)))
22868 (if (and after (= after ? )) (1+ box) box))))))
22869 ;; Special case: Move point to special position when
22870 ;; currently after it or at beginning of line.
22871 (if (eq special t)
22872 (when (or (> pos after-bullet) (= (point) pos))
22873 (goto-char after-bullet))
22874 ;; Reversed case: Move point to special position when
22875 ;; point was already at beginning of line and command is
22876 ;; repeated.
22877 (when (and (= (point) pos) (eq last-command this-command))
22878 (goto-char after-bullet))))))))
22879 (org-no-warnings
22880 (and (featurep 'xemacs) (setq zmacs-region-stays t))))
22881 (setq disable-point-adjustment
22882 (or (not (invisible-p (point)))
22883 (not (invisible-p (max (point-min) (1- (point))))))))
22885 (defun org-end-of-line (&optional arg)
22886 "Go to the end of the line.
22887 If this is a headline, and `org-special-ctrl-a/e' is set, ignore
22888 tags on the first attempt, and only move to after the tags when
22889 the cursor is already beyond the end of the headline."
22890 (interactive "P")
22891 (let ((special (if (consp org-special-ctrl-a/e) (cdr org-special-ctrl-a/e)
22892 org-special-ctrl-a/e))
22893 (move-fun (cond ((org-bound-and-true-p visual-line-mode)
22894 'end-of-visual-line)
22895 ((fboundp 'move-end-of-line) 'move-end-of-line)
22896 (t 'end-of-line)))
22897 deactivate-mark)
22898 (if (or (not special) arg) (call-interactively move-fun)
22899 (let* ((element (save-excursion (beginning-of-line)
22900 (org-element-at-point)))
22901 (type (org-element-type element)))
22902 (cond
22903 ((memq type '(headline inlinetask))
22904 (let ((pos (point)))
22905 (beginning-of-line 1)
22906 (if (looking-at (org-re ".*?\\(?:\\([ \t]*\\)\\(:[[:alnum:]_@#%:]+:\\)?[ \t]*\\)?$"))
22907 (if (eq special t)
22908 (if (or (< pos (match-beginning 1)) (= pos (match-end 0)))
22909 (goto-char (match-beginning 1))
22910 (goto-char (match-end 0)))
22911 (if (or (< pos (match-end 0))
22912 (not (eq this-command last-command)))
22913 (goto-char (match-end 0))
22914 (goto-char (match-beginning 1))))
22915 (call-interactively move-fun))))
22916 ((org-element-property :hiddenp element)
22917 ;; If element is hidden, `move-end-of-line' would put point
22918 ;; after it. Use `end-of-line' to stay on current line.
22919 (call-interactively 'end-of-line))
22920 (t (call-interactively move-fun)))))
22921 (org-no-warnings (and (featurep 'xemacs) (setq zmacs-region-stays t))))
22922 (setq disable-point-adjustment
22923 (or (not (invisible-p (point)))
22924 (not (invisible-p (max (point-min) (1- (point))))))))
22926 (define-key org-mode-map "\C-a" 'org-beginning-of-line)
22927 (define-key org-mode-map "\C-e" 'org-end-of-line)
22929 (defun org-backward-sentence (&optional arg)
22930 "Go to beginning of sentence, or beginning of table field.
22931 This will call `backward-sentence' or `org-table-beginning-of-field',
22932 depending on context."
22933 (interactive "P")
22934 (cond
22935 ((org-at-table-p) (call-interactively 'org-table-beginning-of-field))
22936 (t (call-interactively 'backward-sentence))))
22938 (defun org-forward-sentence (&optional arg)
22939 "Go to end of sentence, or end of table field.
22940 This will call `forward-sentence' or `org-table-end-of-field',
22941 depending on context."
22942 (interactive "P")
22943 (cond
22944 ((org-at-table-p) (call-interactively 'org-table-end-of-field))
22945 (t (call-interactively 'forward-sentence))))
22947 (define-key org-mode-map "\M-a" 'org-backward-sentence)
22948 (define-key org-mode-map "\M-e" 'org-forward-sentence)
22950 (defun org-kill-line (&optional arg)
22951 "Kill line, to tags or end of line."
22952 (interactive "P")
22953 (cond
22954 ((or (not org-special-ctrl-k)
22955 (bolp)
22956 (not (org-at-heading-p)))
22957 (if (and (get-char-property (min (point-max) (point-at-eol)) 'invisible)
22958 org-ctrl-k-protect-subtree)
22959 (if (or (eq org-ctrl-k-protect-subtree 'error)
22960 (not (y-or-n-p "Kill hidden subtree along with headline? ")))
22961 (user-error "C-k aborted as it would kill a hidden subtree")))
22962 (call-interactively
22963 (if (org-bound-and-true-p visual-line-mode) 'kill-visual-line 'kill-line)))
22964 ((looking-at (org-re ".*?\\S-\\([ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)[ \t]*$"))
22965 (kill-region (point) (match-beginning 1))
22966 (org-set-tags nil t))
22967 (t (kill-region (point) (point-at-eol)))))
22969 (define-key org-mode-map "\C-k" 'org-kill-line)
22971 (defun org-yank (&optional arg)
22972 "Yank. If the kill is a subtree, treat it specially.
22973 This command will look at the current kill and check if is a single
22974 subtree, or a series of subtrees[1]. If it passes the test, and if the
22975 cursor is at the beginning of a line or after the stars of a currently
22976 empty headline, then the yank is handled specially. How exactly depends
22977 on the value of the following variables, both set by default.
22979 org-yank-folded-subtrees
22980 When set, the subtree(s) will be folded after insertion, but only
22981 if doing so would now swallow text after the yanked text.
22983 org-yank-adjusted-subtrees
22984 When set, the subtree will be promoted or demoted in order to
22985 fit into the local outline tree structure, which means that the level
22986 will be adjusted so that it becomes the smaller one of the two
22987 *visible* surrounding headings.
22989 Any prefix to this command will cause `yank' to be called directly with
22990 no special treatment. In particular, a simple \\[universal-argument] prefix \
22991 will just
22992 plainly yank the text as it is.
22994 \[1] The test checks if the first non-white line is a heading
22995 and if there are no other headings with fewer stars."
22996 (interactive "P")
22997 (org-yank-generic 'yank arg))
22999 (defun org-yank-generic (command arg)
23000 "Perform some yank-like command.
23002 This function implements the behavior described in the `org-yank'
23003 documentation. However, it has been generalized to work for any
23004 interactive command with similar behavior."
23006 ;; pretend to be command COMMAND
23007 (setq this-command command)
23009 (if arg
23010 (call-interactively command)
23012 (let ((subtreep ; is kill a subtree, and the yank position appropriate?
23013 (and (org-kill-is-subtree-p)
23014 (or (bolp)
23015 (and (looking-at "[ \t]*$")
23016 (string-match
23017 "\\`\\*+\\'"
23018 (buffer-substring (point-at-bol) (point)))))))
23019 swallowp)
23020 (cond
23021 ((and subtreep org-yank-folded-subtrees)
23022 (let ((beg (point))
23023 end)
23024 (if (and subtreep org-yank-adjusted-subtrees)
23025 (org-paste-subtree nil nil 'for-yank)
23026 (call-interactively command))
23028 (setq end (point))
23029 (goto-char beg)
23030 (when (and (bolp) subtreep
23031 (not (setq swallowp
23032 (org-yank-folding-would-swallow-text beg end))))
23033 (org-with-limited-levels
23034 (or (looking-at org-outline-regexp)
23035 (re-search-forward org-outline-regexp-bol end t))
23036 (while (and (< (point) end) (looking-at org-outline-regexp))
23037 (hide-subtree)
23038 (org-cycle-show-empty-lines 'folded)
23039 (condition-case nil
23040 (outline-forward-same-level 1)
23041 (error (goto-char end))))))
23042 (when swallowp
23043 (message
23044 "Inserted text not folded because that would swallow text"))
23046 (goto-char end)
23047 (skip-chars-forward " \t\n\r")
23048 (beginning-of-line 1)
23049 (push-mark beg 'nomsg)))
23050 ((and subtreep org-yank-adjusted-subtrees)
23051 (let ((beg (point-at-bol)))
23052 (org-paste-subtree nil nil 'for-yank)
23053 (push-mark beg 'nomsg)))
23055 (call-interactively command))))))
23057 (defun org-yank-folding-would-swallow-text (beg end)
23058 "Would hide-subtree at BEG swallow any text after END?"
23059 (let (level)
23060 (org-with-limited-levels
23061 (save-excursion
23062 (goto-char beg)
23063 (when (or (looking-at org-outline-regexp)
23064 (re-search-forward org-outline-regexp-bol end t))
23065 (setq level (org-outline-level)))
23066 (goto-char end)
23067 (skip-chars-forward " \t\r\n\v\f")
23068 (if (or (eobp)
23069 (and (bolp) (looking-at org-outline-regexp)
23070 (<= (org-outline-level) level)))
23071 nil ; Nothing would be swallowed
23072 t))))) ; something would swallow
23074 (define-key org-mode-map "\C-y" 'org-yank)
23076 (defun org-truely-invisible-p ()
23077 "Check if point is at a character currently not visible.
23078 This version does not only check the character property, but also
23079 `visible-mode'."
23080 ;; Early versions of noutline don't have `outline-invisible-p'.
23081 (if (org-bound-and-true-p visible-mode)
23083 (outline-invisible-p)))
23085 (defun org-invisible-p2 ()
23086 "Check if point is at a character currently not visible."
23087 (save-excursion
23088 (if (and (eolp) (not (bobp))) (backward-char 1))
23089 ;; Early versions of noutline don't have `outline-invisible-p'.
23090 (outline-invisible-p)))
23092 (defun org-back-to-heading (&optional invisible-ok)
23093 "Call `outline-back-to-heading', but provide a better error message."
23094 (condition-case nil
23095 (outline-back-to-heading invisible-ok)
23096 (error (error "Before first headline at position %d in buffer %s"
23097 (point) (current-buffer)))))
23099 (defun org-before-first-heading-p ()
23100 "Before first heading?"
23101 (save-excursion
23102 (end-of-line)
23103 (null (re-search-backward org-outline-regexp-bol nil t))))
23105 (defun org-at-heading-p (&optional ignored)
23106 (outline-on-heading-p t))
23107 ;; Compatibility alias with Org versions < 7.8.03
23108 (defalias 'org-on-heading-p 'org-at-heading-p)
23110 (defun org-at-comment-p nil
23111 "Is cursor in a line starting with a # character?"
23112 (save-excursion
23113 (beginning-of-line)
23114 (looking-at "^#")))
23116 (defun org-at-drawer-p nil
23117 "Is cursor at a drawer keyword?"
23118 (save-excursion
23119 (move-beginning-of-line 1)
23120 (looking-at org-drawer-regexp)))
23122 (defun org-at-block-p nil
23123 "Is cursor at a block keyword?"
23124 (save-excursion
23125 (move-beginning-of-line 1)
23126 (looking-at org-block-regexp)))
23128 (defun org-point-at-end-of-empty-headline ()
23129 "If point is at the end of an empty headline, return t, else nil.
23130 If the heading only contains a TODO keyword, it is still still considered
23131 empty."
23132 (and (looking-at "[ \t]*$")
23133 (when org-todo-line-regexp
23134 (save-excursion
23135 (beginning-of-line 1)
23136 (let ((case-fold-search nil))
23137 (looking-at org-todo-line-regexp)
23138 (string= (match-string 3) ""))))))
23140 (defun org-at-heading-or-item-p ()
23141 (or (org-at-heading-p) (org-at-item-p)))
23143 (defun org-at-target-p ()
23144 (or (org-in-regexp org-radio-target-regexp)
23145 (org-in-regexp org-target-regexp)))
23146 ;; Compatibility alias with Org versions < 7.8.03
23147 (defalias 'org-on-target-p 'org-at-target-p)
23149 (defun org-up-heading-all (arg)
23150 "Move to the heading line of which the present line is a subheading.
23151 This function considers both visible and invisible heading lines.
23152 With argument, move up ARG levels."
23153 (if (fboundp 'outline-up-heading-all)
23154 (outline-up-heading-all arg) ; emacs 21 version of outline.el
23155 (outline-up-heading arg t))) ; emacs 22 version of outline.el
23157 (defun org-up-heading-safe ()
23158 "Move to the heading line of which the present line is a subheading.
23159 This version will not throw an error. It will return the level of the
23160 headline found, or nil if no higher level is found.
23162 Also, this function will be a lot faster than `outline-up-heading',
23163 because it relies on stars being the outline starters. This can really
23164 make a significant difference in outlines with very many siblings."
23165 (let (start-level re)
23166 (org-back-to-heading t)
23167 (setq start-level (funcall outline-level))
23168 (if (equal start-level 1)
23170 (setq re (concat "^\\*\\{1," (number-to-string (1- start-level)) "\\} "))
23171 (if (re-search-backward re nil t)
23172 (funcall outline-level)))))
23174 (defun org-first-sibling-p ()
23175 "Is this heading the first child of its parents?"
23176 (interactive)
23177 (let ((re org-outline-regexp-bol)
23178 level l)
23179 (unless (org-at-heading-p t)
23180 (user-error "Not at a heading"))
23181 (setq level (funcall outline-level))
23182 (save-excursion
23183 (if (not (re-search-backward re nil t))
23185 (setq l (funcall outline-level))
23186 (< l level)))))
23188 (defun org-goto-sibling (&optional previous)
23189 "Goto the next sibling, even if it is invisible.
23190 When PREVIOUS is set, go to the previous sibling instead. Returns t
23191 when a sibling was found. When none is found, return nil and don't
23192 move point."
23193 (let ((fun (if previous 're-search-backward 're-search-forward))
23194 (pos (point))
23195 (re org-outline-regexp-bol)
23196 level l)
23197 (when (condition-case nil (org-back-to-heading t) (error nil))
23198 (setq level (funcall outline-level))
23199 (catch 'exit
23200 (or previous (forward-char 1))
23201 (while (funcall fun re nil t)
23202 (setq l (funcall outline-level))
23203 (when (< l level) (goto-char pos) (throw 'exit nil))
23204 (when (= l level) (goto-char (match-beginning 0)) (throw 'exit t)))
23205 (goto-char pos)
23206 nil))))
23208 (defun org-show-siblings ()
23209 "Show all siblings of the current headline."
23210 (save-excursion
23211 (while (org-goto-sibling) (org-flag-heading nil)))
23212 (save-excursion
23213 (while (org-goto-sibling 'previous)
23214 (org-flag-heading nil))))
23216 (defun org-goto-first-child ()
23217 "Goto the first child, even if it is invisible.
23218 Return t when a child was found. Otherwise don't move point and
23219 return nil."
23220 (let (level (pos (point)) (re org-outline-regexp-bol))
23221 (when (condition-case nil (org-back-to-heading t) (error nil))
23222 (setq level (outline-level))
23223 (forward-char 1)
23224 (if (and (re-search-forward re nil t) (> (outline-level) level))
23225 (progn (goto-char (match-beginning 0)) t)
23226 (goto-char pos) nil))))
23228 (defun org-show-hidden-entry ()
23229 "Show an entry where even the heading is hidden."
23230 (save-excursion
23231 (org-show-entry)))
23233 (defun org-flag-heading (flag &optional entry)
23234 "Flag the current heading. FLAG non-nil means make invisible.
23235 When ENTRY is non-nil, show the entire entry."
23236 (save-excursion
23237 (org-back-to-heading t)
23238 ;; Check if we should show the entire entry
23239 (if entry
23240 (progn
23241 (org-show-entry)
23242 (save-excursion
23243 (and (outline-next-heading)
23244 (org-flag-heading nil))))
23245 (outline-flag-region (max (point-min) (1- (point)))
23246 (save-excursion (outline-end-of-heading) (point))
23247 flag))))
23249 (defun org-get-next-sibling ()
23250 "Move to next heading of the same level, and return point.
23251 If there is no such heading, return nil.
23252 This is like outline-next-sibling, but invisible headings are ok."
23253 (let ((level (funcall outline-level)))
23254 (outline-next-heading)
23255 (while (and (not (eobp)) (> (funcall outline-level) level))
23256 (outline-next-heading))
23257 (if (or (eobp) (< (funcall outline-level) level))
23259 (point))))
23261 (defun org-get-last-sibling ()
23262 "Move to previous heading of the same level, and return point.
23263 If there is no such heading, return nil."
23264 (let ((opoint (point))
23265 (level (funcall outline-level)))
23266 (outline-previous-heading)
23267 (when (and (/= (point) opoint) (outline-on-heading-p t))
23268 (while (and (> (funcall outline-level) level)
23269 (not (bobp)))
23270 (outline-previous-heading))
23271 (if (< (funcall outline-level) level)
23273 (point)))))
23275 (defun org-end-of-subtree (&optional invisible-ok to-heading)
23276 "Goto to the end of a subtree."
23277 ;; This contains an exact copy of the original function, but it uses
23278 ;; `org-back-to-heading', to make it work also in invisible
23279 ;; trees. And is uses an invisible-ok argument.
23280 ;; Under Emacs this is not needed, but the old outline.el needs this fix.
23281 ;; Furthermore, when used inside Org, finding the end of a large subtree
23282 ;; with many children and grandchildren etc, this can be much faster
23283 ;; than the outline version.
23284 (org-back-to-heading invisible-ok)
23285 (let ((first t)
23286 (level (funcall outline-level)))
23287 (if (and (derived-mode-p 'org-mode) (< level 1000))
23288 ;; A true heading (not a plain list item), in Org-mode
23289 ;; This means we can easily find the end by looking
23290 ;; only for the right number of stars. Using a regexp to do
23291 ;; this is so much faster than using a Lisp loop.
23292 (let ((re (concat "^\\*\\{1," (int-to-string level) "\\} ")))
23293 (forward-char 1)
23294 (and (re-search-forward re nil 'move) (beginning-of-line 1)))
23295 ;; something else, do it the slow way
23296 (while (and (not (eobp))
23297 (or first (> (funcall outline-level) level)))
23298 (setq first nil)
23299 (outline-next-heading)))
23300 (unless to-heading
23301 (if (memq (preceding-char) '(?\n ?\^M))
23302 (progn
23303 ;; Go to end of line before heading
23304 (forward-char -1)
23305 (if (memq (preceding-char) '(?\n ?\^M))
23306 ;; leave blank line before heading
23307 (forward-char -1))))))
23308 (point))
23310 (defun org-end-of-meta-data-and-drawers ()
23311 "Jump to the first text after meta data and drawers in the current entry.
23312 This will move over empty lines, lines with planning time stamps,
23313 clocking lines, and drawers."
23314 (org-back-to-heading t)
23315 (let ((end (save-excursion (outline-next-heading) (point)))
23316 (re (concat "\\(" org-drawer-regexp "\\)"
23317 "\\|" "[ \t]*" org-keyword-time-regexp)))
23318 (forward-line 1)
23319 (while (re-search-forward re end t)
23320 (if (not (match-end 1))
23321 ;; empty or planning line
23322 (forward-line 1)
23323 ;; a drawer, find the end
23324 (re-search-forward "^[ \t]*:END:" end 'move)
23325 (forward-line 1)))
23326 (and (re-search-forward "[^\n]" nil t) (backward-char 1))
23327 (point)))
23329 (defun org-forward-heading-same-level (arg &optional invisible-ok)
23330 "Move forward to the ARG'th subheading at same level as this one.
23331 Stop at the first and last subheadings of a superior heading.
23332 Normally this only looks at visible headings, but when INVISIBLE-OK is
23333 non-nil it will also look at invisible ones."
23334 (interactive "p")
23335 (if (not (ignore-errors (org-back-to-heading invisible-ok)))
23336 (if (and arg (< arg 0))
23337 (goto-char (point-min))
23338 (outline-next-heading))
23339 (org-at-heading-p)
23340 (let ((level (- (match-end 0) (match-beginning 0) 1))
23341 (f (if (and arg (< arg 0))
23342 're-search-backward
23343 're-search-forward))
23344 (count (if arg (abs arg) 1))
23345 (result (point)))
23346 (while (and (prog1 (> count 0)
23347 (forward-char (if (and arg (< arg 0)) -1 1)))
23348 (funcall f org-outline-regexp-bol nil 'move))
23349 (let ((l (- (match-end 0) (match-beginning 0) 1)))
23350 (cond ((< l level) (setq count 0))
23351 ((and (= l level)
23352 (or invisible-ok
23353 (progn
23354 (goto-char (line-beginning-position))
23355 (not (outline-invisible-p)))))
23356 (setq count (1- count))
23357 (when (eq l level)
23358 (setq result (point)))))))
23359 (goto-char result))
23360 (beginning-of-line 1)))
23362 (defun org-backward-heading-same-level (arg &optional invisible-ok)
23363 "Move backward to the ARG'th subheading at same level as this one.
23364 Stop at the first and last subheadings of a superior heading."
23365 (interactive "p")
23366 (org-forward-heading-same-level (if arg (- arg) -1) invisible-ok))
23368 (defun org-next-block (arg &optional backward block-regexp)
23369 "Jump to the next block.
23370 With a prefix argument ARG, jump forward ARG many source blocks.
23371 When BACKWARD is non-nil, jump to the previous block.
23372 When BLOCK-REGEXP is non-nil, use this regexp to find blocks."
23373 (interactive "p")
23374 (let ((re (or block-regexp org-block-regexp))
23375 (re-search-fn (or (and backward 're-search-backward)
23376 're-search-forward)))
23377 (if (looking-at re) (forward-char 1))
23378 (condition-case nil
23379 (funcall re-search-fn re nil nil arg)
23380 (error (error "No %s code blocks" (if backward "previous" "further" ))))
23381 (goto-char (match-beginning 0)) (org-show-context)))
23383 (defun org-previous-block (arg &optional block-regexp)
23384 "Jump to the previous block.
23385 With a prefix argument ARG, jump backward ARG many source blocks.
23386 When BLOCK-REGEXP is non-nil, use this regexp to find blocks."
23387 (interactive "p")
23388 (org-next-block arg t block-regexp))
23390 (defun org-forward-paragraph ()
23391 "Move forward to beginning of next paragraph or equivalent.
23393 The function moves point to the beginning of the next visible
23394 structural element, which can be a paragraph, a table, a list
23395 item, etc. It also provides some special moves for convenience:
23397 - On an affiliated keyword, jump to the beginning of the
23398 relative element.
23399 - On an item or a footnote definition, move to the second
23400 element inside, if any.
23401 - On a table or a property drawer, jump after it.
23402 - On a verse or source block, stop after blank lines."
23403 (interactive)
23404 (when (eobp) (user-error "Cannot move further down"))
23405 (let* ((deactivate-mark nil)
23406 (element (org-element-at-point))
23407 (type (org-element-type element))
23408 (post-affiliated (org-element-property :post-affiliated element))
23409 (contents-begin (org-element-property :contents-begin element))
23410 (contents-end (org-element-property :contents-end element))
23411 (end (let ((end (org-element-property :end element)) (parent element))
23412 (while (and (setq parent (org-element-property :parent parent))
23413 (= (org-element-property :contents-end parent) end))
23414 (setq end (org-element-property :end parent)))
23415 end)))
23416 (cond ((not element)
23417 (skip-chars-forward " \r\t\n")
23418 (or (eobp) (beginning-of-line)))
23419 ;; On affiliated keywords, move to element's beginning.
23420 ((and post-affiliated (< (point) post-affiliated))
23421 (goto-char post-affiliated))
23422 ;; At a table row, move to the end of the table. Similarly,
23423 ;; at a node property, move to the end of the property
23424 ;; drawer.
23425 ((memq type '(node-property table-row))
23426 (goto-char (org-element-property
23427 :end (org-element-property :parent element))))
23428 ((memq type '(property-drawer table)) (goto-char end))
23429 ;; Consider blank lines as separators in verse and source
23430 ;; blocks to ease editing.
23431 ((memq type '(src-block verse-block))
23432 (when (eq type 'src-block)
23433 (setq contents-end
23434 (save-excursion (goto-char end)
23435 (skip-chars-backward " \r\t\n")
23436 (line-beginning-position))))
23437 (beginning-of-line)
23438 (when (looking-at "[ \t]*$") (skip-chars-forward " \r\t\n"))
23439 (if (not (re-search-forward "^[ \t]*$" contents-end t))
23440 (goto-char end)
23441 (skip-chars-forward " \r\t\n")
23442 (if (= (point) contents-end) (goto-char end)
23443 (beginning-of-line))))
23444 ;; With no contents, just skip element.
23445 ((not contents-begin) (goto-char end))
23446 ;; If contents are invisible, skip the element altogether.
23447 ((outline-invisible-p (line-end-position))
23448 (case type
23449 (headline
23450 (org-with-limited-levels (outline-next-visible-heading 1)))
23451 ;; At a plain list, make sure we move to the next item
23452 ;; instead of skipping the whole list.
23453 (plain-list (forward-char)
23454 (org-forward-paragraph))
23455 (otherwise (goto-char end))))
23456 ((>= (point) contents-end) (goto-char end))
23457 ((>= (point) contents-begin)
23458 ;; This can only happen on paragraphs and plain lists.
23459 (case type
23460 (paragraph (goto-char end))
23461 ;; At a plain list, try to move to second element in
23462 ;; first item, if possible.
23463 (plain-list (end-of-line)
23464 (org-forward-paragraph))))
23465 ;; When contents start on the middle of a line (e.g. in
23466 ;; items and footnote definitions), try to reach first
23467 ;; element starting after current line.
23468 ((> (line-end-position) contents-begin)
23469 (end-of-line)
23470 (org-forward-paragraph))
23471 (t (goto-char contents-begin)))))
23473 (defun org-backward-paragraph ()
23474 "Move backward to start of previous paragraph or equivalent.
23476 The function moves point to the beginning of the current
23477 structural element, which can be a paragraph, a table, a list
23478 item, etc., or to the beginning of the previous visible one if
23479 point is already there. It also provides some special moves for
23480 convenience:
23482 - On an affiliated keyword, jump to the first one.
23483 - On a table or a property drawer, move to its beginning.
23484 - On a verse or source block, stop before blank lines."
23485 (interactive)
23486 (when (bobp) (user-error "Cannot move further up"))
23487 (let* ((deactivate-mark nil)
23488 (element (org-element-at-point))
23489 (type (org-element-type element))
23490 (contents-begin (org-element-property :contents-begin element))
23491 (contents-end (org-element-property :contents-end element))
23492 (post-affiliated (org-element-property :post-affiliated element))
23493 (begin (org-element-property :begin element)))
23494 (cond
23495 ((not element) (goto-char (point-min)))
23496 ((= (point) begin)
23497 (backward-char)
23498 (org-backward-paragraph))
23499 ((and post-affiliated (<= (point) post-affiliated)) (goto-char begin))
23500 ((memq type '(node-property table-row))
23501 (goto-char (org-element-property
23502 :post-affiliated (org-element-property :parent element))))
23503 ((memq type '(property-drawer table)) (goto-char begin))
23504 ((memq type '(src-block verse-block))
23505 (when (eq type 'src-block)
23506 (setq contents-begin
23507 (save-excursion (goto-char begin) (forward-line) (point))))
23508 (if (= (point) contents-begin) (goto-char post-affiliated)
23509 ;; Inside a verse block, see blank lines as paragraph
23510 ;; separators.
23511 (let ((origin (point)))
23512 (skip-chars-backward " \r\t\n" contents-begin)
23513 (when (re-search-backward "^[ \t]*$" contents-begin 'move)
23514 (skip-chars-forward " \r\t\n" origin)
23515 (if (= (point) origin) (goto-char contents-begin)
23516 (beginning-of-line))))))
23517 ((not contents-begin) (goto-char (or post-affiliated begin)))
23518 ((eq type 'paragraph)
23519 (goto-char contents-begin)
23520 ;; When at first paragraph in an item or a footnote definition,
23521 ;; move directly to beginning of line.
23522 (let ((parent-contents
23523 (org-element-property
23524 :contents-begin (org-element-property :parent element))))
23525 (when (and parent-contents (= parent-contents contents-begin))
23526 (beginning-of-line))))
23527 ;; At the end of a greater element, move to the beginning of the
23528 ;; last element within.
23529 ((>= (point) contents-end)
23530 (goto-char (1- contents-end))
23531 (org-backward-paragraph))
23532 (t (goto-char (or post-affiliated begin))))
23533 ;; Ensure we never leave point invisible.
23534 (when (outline-invisible-p (point)) (beginning-of-visual-line))))
23536 (defun org-forward-element ()
23537 "Move forward by one element.
23538 Move to the next element at the same level, when possible."
23539 (interactive)
23540 (cond ((eobp) (user-error "Cannot move further down"))
23541 ((org-with-limited-levels (org-at-heading-p))
23542 (let ((origin (point)))
23543 (goto-char (org-end-of-subtree nil t))
23544 (unless (org-with-limited-levels (org-at-heading-p))
23545 (goto-char origin)
23546 (user-error "Cannot move further down"))))
23548 (let* ((elem (org-element-at-point))
23549 (end (org-element-property :end elem))
23550 (parent (org-element-property :parent elem)))
23551 (cond ((and parent (= (org-element-property :contents-end parent) end))
23552 (goto-char (org-element-property :end parent)))
23553 ((integer-or-marker-p end) (goto-char end))
23554 (t (message "No element at point")))))))
23556 (defun org-backward-element ()
23557 "Move backward by one element.
23558 Move to the previous element at the same level, when possible."
23559 (interactive)
23560 (cond ((bobp) (user-error "Cannot move further up"))
23561 ((org-with-limited-levels (org-at-heading-p))
23562 ;; At a headline, move to the previous one, if any, or stay
23563 ;; here.
23564 (let ((origin (point)))
23565 (org-with-limited-levels (org-backward-heading-same-level 1))
23566 ;; When current headline has no sibling above, move to its
23567 ;; parent.
23568 (when (= (point) origin)
23569 (or (org-with-limited-levels (org-up-heading-safe))
23570 (progn (goto-char origin)
23571 (user-error "Cannot move further up"))))))
23573 (let* ((trail (org-element-at-point 'keep-trail))
23574 (elem (car trail))
23575 (prev-elem (nth 1 trail))
23576 (beg (org-element-property :begin elem)))
23577 (cond
23578 ;; Move to beginning of current element if point isn't
23579 ;; there already.
23580 ((null beg) (message "No element at point"))
23581 ((/= (point) beg) (goto-char beg))
23582 (prev-elem (goto-char (org-element-property :begin prev-elem)))
23583 ((org-before-first-heading-p) (goto-char (point-min)))
23584 (t (org-back-to-heading)))))))
23586 (defun org-up-element ()
23587 "Move to upper element."
23588 (interactive)
23589 (if (org-with-limited-levels (org-at-heading-p))
23590 (unless (org-up-heading-safe) (user-error "No surrounding element"))
23591 (let* ((elem (org-element-at-point))
23592 (parent (org-element-property :parent elem)))
23593 (if parent (goto-char (org-element-property :begin parent))
23594 (if (org-with-limited-levels (org-before-first-heading-p))
23595 (user-error "No surrounding element")
23596 (org-with-limited-levels (org-back-to-heading)))))))
23598 (defvar org-element-greater-elements)
23599 (defun org-down-element ()
23600 "Move to inner element."
23601 (interactive)
23602 (let ((element (org-element-at-point)))
23603 (cond
23604 ((memq (org-element-type element) '(plain-list table))
23605 (goto-char (org-element-property :contents-begin element))
23606 (forward-char))
23607 ((memq (org-element-type element) org-element-greater-elements)
23608 ;; If contents are hidden, first disclose them.
23609 (when (org-element-property :hiddenp element) (org-cycle))
23610 (goto-char (or (org-element-property :contents-begin element)
23611 (user-error "No content for this element"))))
23612 (t (user-error "No inner element")))))
23614 (defun org-drag-element-backward ()
23615 "Move backward element at point."
23616 (interactive)
23617 (if (org-with-limited-levels (org-at-heading-p)) (org-move-subtree-up)
23618 (let* ((trail (org-element-at-point 'keep-trail))
23619 (elem (car trail))
23620 (prev-elem (nth 1 trail)))
23621 ;; Error out if no previous element or previous element is
23622 ;; a parent of the current one.
23623 (if (or (not prev-elem) (org-element-nested-p elem prev-elem))
23624 (user-error "Cannot drag element backward")
23625 (let ((pos (point)))
23626 (org-element-swap-A-B prev-elem elem)
23627 (goto-char (+ (org-element-property :begin prev-elem)
23628 (- pos (org-element-property :begin elem)))))))))
23630 (defun org-drag-element-forward ()
23631 "Move forward element at point."
23632 (interactive)
23633 (let* ((pos (point))
23634 (elem (org-element-at-point)))
23635 (when (= (point-max) (org-element-property :end elem))
23636 (user-error "Cannot drag element forward"))
23637 (goto-char (org-element-property :end elem))
23638 (let ((next-elem (org-element-at-point)))
23639 (when (or (org-element-nested-p elem next-elem)
23640 (and (eq (org-element-type next-elem) 'headline)
23641 (not (eq (org-element-type elem) 'headline))))
23642 (goto-char pos)
23643 (user-error "Cannot drag element forward"))
23644 ;; Compute new position of point: it's shifted by NEXT-ELEM
23645 ;; body's length (without final blanks) and by the length of
23646 ;; blanks between ELEM and NEXT-ELEM.
23647 (let ((size-next (- (save-excursion
23648 (goto-char (org-element-property :end next-elem))
23649 (skip-chars-backward " \r\t\n")
23650 (forward-line)
23651 ;; Small correction if buffer doesn't end
23652 ;; with a newline character.
23653 (if (and (eolp) (not (bolp))) (1+ (point)) (point)))
23654 (org-element-property :begin next-elem)))
23655 (size-blank (- (org-element-property :end elem)
23656 (save-excursion
23657 (goto-char (org-element-property :end elem))
23658 (skip-chars-backward " \r\t\n")
23659 (forward-line)
23660 (point)))))
23661 (org-element-swap-A-B elem next-elem)
23662 (goto-char (+ pos size-next size-blank))))))
23664 (defun org-drag-line-forward (arg)
23665 "Drag the line at point ARG lines forward."
23666 (interactive "p")
23667 (dotimes (n (abs arg))
23668 (let ((c (current-column)))
23669 (if (< 0 arg)
23670 (progn
23671 (beginning-of-line 2)
23672 (transpose-lines 1)
23673 (beginning-of-line 0))
23674 (transpose-lines 1)
23675 (beginning-of-line -1))
23676 (org-move-to-column c))))
23678 (defun org-drag-line-backward (arg)
23679 "Drag the line at point ARG lines backward."
23680 (interactive "p")
23681 (org-drag-line-forward (- arg)))
23683 (defun org-mark-element ()
23684 "Put point at beginning of this element, mark at end.
23686 Interactively, if this command is repeated or (in Transient Mark
23687 mode) if the mark is active, it marks the next element after the
23688 ones already marked."
23689 (interactive)
23690 (let (deactivate-mark)
23691 (if (and (org-called-interactively-p 'any)
23692 (or (and (eq last-command this-command) (mark t))
23693 (and transient-mark-mode mark-active)))
23694 (set-mark
23695 (save-excursion
23696 (goto-char (mark))
23697 (goto-char (org-element-property :end (org-element-at-point)))))
23698 (let ((element (org-element-at-point)))
23699 (end-of-line)
23700 (push-mark (org-element-property :end element) t t)
23701 (goto-char (org-element-property :begin element))))))
23703 (defun org-narrow-to-element ()
23704 "Narrow buffer to current element."
23705 (interactive)
23706 (let ((elem (org-element-at-point)))
23707 (cond
23708 ((eq (car elem) 'headline)
23709 (narrow-to-region
23710 (org-element-property :begin elem)
23711 (org-element-property :end elem)))
23712 ((memq (car elem) org-element-greater-elements)
23713 (narrow-to-region
23714 (org-element-property :contents-begin elem)
23715 (org-element-property :contents-end elem)))
23717 (narrow-to-region
23718 (org-element-property :begin elem)
23719 (org-element-property :end elem))))))
23721 (defun org-transpose-element ()
23722 "Transpose current and previous elements, keeping blank lines between.
23723 Point is moved after both elements."
23724 (interactive)
23725 (org-skip-whitespace)
23726 (let ((end (org-element-property :end (org-element-at-point))))
23727 (org-drag-element-backward)
23728 (goto-char end)))
23730 (defun org-unindent-buffer ()
23731 "Un-indent the visible part of the buffer.
23732 Relative indentation (between items, inside blocks, etc.) isn't
23733 modified."
23734 (interactive)
23735 (unless (eq major-mode 'org-mode)
23736 (user-error "Cannot un-indent a buffer not in Org mode"))
23737 (let* ((parse-tree (org-element-parse-buffer 'greater-element))
23738 unindent-tree ; For byte-compiler.
23739 (unindent-tree
23740 (function
23741 (lambda (contents)
23742 (mapc
23743 (lambda (element)
23744 (if (memq (org-element-type element) '(headline section))
23745 (funcall unindent-tree (org-element-contents element))
23746 (save-excursion
23747 (save-restriction
23748 (narrow-to-region
23749 (org-element-property :begin element)
23750 (org-element-property :end element))
23751 (org-do-remove-indentation)))))
23752 (reverse contents))))))
23753 (funcall unindent-tree (org-element-contents parse-tree))))
23755 (defun org-show-subtree ()
23756 "Show everything after this heading at deeper levels."
23757 (interactive)
23758 (outline-flag-region
23759 (point)
23760 (save-excursion
23761 (org-end-of-subtree t t))
23762 nil))
23764 (defun org-show-entry ()
23765 "Show the body directly following this heading.
23766 Show the heading too, if it is currently invisible."
23767 (interactive)
23768 (save-excursion
23769 (condition-case nil
23770 (progn
23771 (org-back-to-heading t)
23772 (outline-flag-region
23773 (max (point-min) (1- (point)))
23774 (save-excursion
23775 (if (re-search-forward
23776 (concat "[\r\n]\\(" org-outline-regexp "\\)") nil t)
23777 (match-beginning 1)
23778 (point-max)))
23779 nil)
23780 (org-cycle-hide-drawers 'children))
23781 (error nil))))
23783 (defun org-make-options-regexp (kwds &optional extra)
23784 "Make a regular expression for keyword lines."
23785 (concat
23786 "^#\\+\\("
23787 (mapconcat 'regexp-quote kwds "\\|")
23788 (if extra (concat "\\|" extra))
23789 "\\):[ \t]*\\(.*\\)"))
23791 ;; Make isearch reveal the necessary context
23792 (defun org-isearch-end ()
23793 "Reveal context after isearch exits."
23794 (when isearch-success ; only if search was successful
23795 (if (featurep 'xemacs)
23796 ;; Under XEmacs, the hook is run in the correct place,
23797 ;; we directly show the context.
23798 (org-show-context 'isearch)
23799 ;; In Emacs the hook runs *before* restoring the overlays.
23800 ;; So we have to use a one-time post-command-hook to do this.
23801 ;; (Emacs 22 has a special variable, see function `org-mode')
23802 (unless (and (boundp 'isearch-mode-end-hook-quit)
23803 isearch-mode-end-hook-quit)
23804 ;; Only when the isearch was not quitted.
23805 (org-add-hook 'post-command-hook 'org-isearch-post-command
23806 'append 'local)))))
23808 (defun org-isearch-post-command ()
23809 "Remove self from hook, and show context."
23810 (remove-hook 'post-command-hook 'org-isearch-post-command 'local)
23811 (org-show-context 'isearch))
23814 ;;;; Integration with and fixes for other packages
23816 ;;; Imenu support
23818 (defvar org-imenu-markers nil
23819 "All markers currently used by Imenu.")
23820 (make-variable-buffer-local 'org-imenu-markers)
23822 (defun org-imenu-new-marker (&optional pos)
23823 "Return a new marker for use by Imenu, and remember the marker."
23824 (let ((m (make-marker)))
23825 (move-marker m (or pos (point)))
23826 (push m org-imenu-markers)
23829 (defun org-imenu-get-tree ()
23830 "Produce the index for Imenu."
23831 (mapc (lambda (x) (move-marker x nil)) org-imenu-markers)
23832 (setq org-imenu-markers nil)
23833 (let* ((n org-imenu-depth)
23834 (re (concat "^" (org-get-limited-outline-regexp)))
23835 (subs (make-vector (1+ n) nil))
23836 (last-level 0)
23837 m level head0 head)
23838 (save-excursion
23839 (save-restriction
23840 (widen)
23841 (goto-char (point-max))
23842 (while (re-search-backward re nil t)
23843 (setq level (org-reduced-level (funcall outline-level)))
23844 (when (and (<= level n)
23845 (looking-at org-complex-heading-regexp)
23846 (setq head0 (org-match-string-no-properties 4)))
23847 (setq head (org-link-display-format head0)
23848 m (org-imenu-new-marker))
23849 (org-add-props head nil 'org-imenu-marker m 'org-imenu t)
23850 (if (>= level last-level)
23851 (push (cons head m) (aref subs level))
23852 (push (cons head (aref subs (1+ level))) (aref subs level))
23853 (loop for i from (1+ level) to n do (aset subs i nil)))
23854 (setq last-level level)))))
23855 (aref subs 1)))
23857 (eval-after-load "imenu"
23858 '(progn
23859 (add-hook 'imenu-after-jump-hook
23860 (lambda ()
23861 (if (derived-mode-p 'org-mode)
23862 (org-show-context 'org-goto))))))
23864 (defun org-link-display-format (link)
23865 "Replace a link with its the description.
23866 If there is no description, use the link target."
23867 (save-match-data
23868 (if (string-match org-bracket-link-analytic-regexp link)
23869 (replace-match (if (match-end 5)
23870 (match-string 5 link)
23871 (concat (match-string 1 link)
23872 (match-string 3 link)))
23873 nil t link)
23874 link)))
23876 (defun org-toggle-link-display ()
23877 "Toggle the literal or descriptive display of links."
23878 (interactive)
23879 (if org-descriptive-links
23880 (progn (org-remove-from-invisibility-spec '(org-link))
23881 (org-restart-font-lock)
23882 (setq org-descriptive-links nil))
23883 (progn (add-to-invisibility-spec '(org-link))
23884 (org-restart-font-lock)
23885 (setq org-descriptive-links t))))
23887 ;; Speedbar support
23889 (defvar org-speedbar-restriction-lock-overlay (make-overlay 1 1)
23890 "Overlay marking the agenda restriction line in speedbar.")
23891 (overlay-put org-speedbar-restriction-lock-overlay
23892 'face 'org-agenda-restriction-lock)
23893 (overlay-put org-speedbar-restriction-lock-overlay
23894 'help-echo "Agendas are currently limited to this item.")
23895 (org-detach-overlay org-speedbar-restriction-lock-overlay)
23897 (defun org-speedbar-set-agenda-restriction ()
23898 "Restrict future agenda commands to the location at point in speedbar.
23899 To get rid of the restriction, use \\[org-agenda-remove-restriction-lock]."
23900 (interactive)
23901 (require 'org-agenda)
23902 (let (p m tp np dir txt)
23903 (cond
23904 ((setq p (text-property-any (point-at-bol) (point-at-eol)
23905 'org-imenu t))
23906 (setq m (get-text-property p 'org-imenu-marker))
23907 (with-current-buffer (marker-buffer m)
23908 (goto-char m)
23909 (org-agenda-set-restriction-lock 'subtree)))
23910 ((setq p (text-property-any (point-at-bol) (point-at-eol)
23911 'speedbar-function 'speedbar-find-file))
23912 (setq tp (previous-single-property-change
23913 (1+ p) 'speedbar-function)
23914 np (next-single-property-change
23915 tp 'speedbar-function)
23916 dir (speedbar-line-directory)
23917 txt (buffer-substring-no-properties (or tp (point-min))
23918 (or np (point-max))))
23919 (with-current-buffer (find-file-noselect
23920 (let ((default-directory dir))
23921 (expand-file-name txt)))
23922 (unless (derived-mode-p 'org-mode)
23923 (user-error "Cannot restrict to non-Org-mode file"))
23924 (org-agenda-set-restriction-lock 'file)))
23925 (t (user-error "Don't know how to restrict Org-mode's agenda")))
23926 (move-overlay org-speedbar-restriction-lock-overlay
23927 (point-at-bol) (point-at-eol))
23928 (setq current-prefix-arg nil)
23929 (org-agenda-maybe-redo)))
23931 (defvar speedbar-file-key-map)
23932 (declare-function speedbar-add-supported-extension "speedbar" (extension))
23933 (eval-after-load "speedbar"
23934 '(progn
23935 (speedbar-add-supported-extension ".org")
23936 (define-key speedbar-file-key-map "<" 'org-speedbar-set-agenda-restriction)
23937 (define-key speedbar-file-key-map "\C-c\C-x<" 'org-speedbar-set-agenda-restriction)
23938 (define-key speedbar-file-key-map ">" 'org-agenda-remove-restriction-lock)
23939 (define-key speedbar-file-key-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
23940 (add-hook 'speedbar-visiting-tag-hook
23941 (lambda () (and (derived-mode-p 'org-mode) (org-show-context 'org-goto))))))
23943 ;;; Fixes and Hacks for problems with other packages
23945 ;; Make flyspell not check words in links, to not mess up our keymap
23946 (defvar org-element-affiliated-keywords) ; From org-element.el
23947 (defvar org-element-block-name-alist) ; From org-element.el
23948 (defun org-mode-flyspell-verify ()
23949 "Don't let flyspell put overlays at active buttons, or on
23950 {todo,all-time,additional-option-like}-keywords."
23951 (require 'org-element) ; For `org-element-affiliated-keywords'
23952 (let ((pos (max (1- (point)) (point-min)))
23953 (word (thing-at-point 'word)))
23954 (and (not (get-text-property pos 'keymap))
23955 (not (get-text-property pos 'org-no-flyspell))
23956 (not (member word org-todo-keywords-1))
23957 (not (member word org-all-time-keywords))
23958 (not (member word org-options-keywords))
23959 (not (member word (mapcar 'car org-startup-options)))
23960 (not (member-ignore-case word org-element-affiliated-keywords))
23961 (not (member-ignore-case word (org-get-export-keywords)))
23962 (not (member-ignore-case
23963 word (mapcar 'car org-element-block-name-alist)))
23964 (not (member-ignore-case word '("BEGIN" "END" "ATTR")))
23965 (not (org-in-src-block-p)))))
23967 (defun org-remove-flyspell-overlays-in (beg end)
23968 "Remove flyspell overlays in region."
23969 (and (org-bound-and-true-p flyspell-mode)
23970 (fboundp 'flyspell-delete-region-overlays)
23971 (flyspell-delete-region-overlays beg end))
23972 (add-text-properties beg end '(org-no-flyspell t)))
23974 ;; Make `bookmark-jump' shows the jump location if it was hidden.
23975 (eval-after-load "bookmark"
23976 '(if (boundp 'bookmark-after-jump-hook)
23977 ;; We can use the hook
23978 (add-hook 'bookmark-after-jump-hook 'org-bookmark-jump-unhide)
23979 ;; Hook not available, use advice
23980 (defadvice bookmark-jump (after org-make-visible activate)
23981 "Make the position visible."
23982 (org-bookmark-jump-unhide))))
23984 ;; Make sure saveplace shows the location if it was hidden
23985 (eval-after-load "saveplace"
23986 '(defadvice save-place-find-file-hook (after org-make-visible activate)
23987 "Make the position visible."
23988 (org-bookmark-jump-unhide)))
23990 ;; Make sure ecb shows the location if it was hidden
23991 (eval-after-load "ecb"
23992 '(defadvice ecb-method-clicked (after esf/org-show-context activate)
23993 "Make hierarchy visible when jumping into location from ECB tree buffer."
23994 (if (derived-mode-p 'org-mode)
23995 (org-show-context))))
23997 (defun org-bookmark-jump-unhide ()
23998 "Unhide the current position, to show the bookmark location."
23999 (and (derived-mode-p 'org-mode)
24000 (or (outline-invisible-p)
24001 (save-excursion (goto-char (max (point-min) (1- (point))))
24002 (outline-invisible-p)))
24003 (org-show-context 'bookmark-jump)))
24005 ;; Make session.el ignore our circular variable
24006 (defvar session-globals-exclude)
24007 (eval-after-load "session"
24008 '(add-to-list 'session-globals-exclude 'org-mark-ring))
24010 ;;;; Finish up
24012 (provide 'org)
24014 (run-hooks 'org-load-hook)
24016 ;;; org.el ends here